* [PATCH i-g-t v3 01/11] lib/i915/fbc: extract intel_fbc_get_fbc_status()
2026-04-16 9:25 [PATCH i-g-t v3 00/11] updates to fbc tests Vinod Govindapillai
@ 2026-04-16 9:25 ` Vinod Govindapillai
2026-04-30 2:56 ` Reddy Guddati, Santhosh
2026-04-16 9:25 ` [PATCH i-g-t v3 02/11] tests/intel/kms_frontbuffer_tracking: use intel_fbc_get_fbc_status() Vinod Govindapillai
` (13 subsequent siblings)
14 siblings, 1 reply; 28+ messages in thread
From: Vinod Govindapillai @ 2026-04-16 9:25 UTC (permalink / raw)
To: igt-dev
Cc: vinod.govindapillai, santhosh.reddy.guddati, swati2.sharma,
jani.nikula
Code to read the FBC status from the debugfs is being duplicated
in many places. Extract intel_fbc_get_fbc_status() to be used as
the single source to read the current FBC status.
Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
---
lib/i915/intel_fbc.c | 55 ++++++++++++++++++++++++++++++++++++--------
lib/i915/intel_fbc.h | 3 +++
2 files changed, 48 insertions(+), 10 deletions(-)
diff --git a/lib/i915/intel_fbc.c b/lib/i915/intel_fbc.c
index b8c714d43..47f0e2fc1 100644
--- a/lib/i915/intel_fbc.c
+++ b/lib/i915/intel_fbc.c
@@ -22,6 +22,47 @@ void intel_fbc_disable(igt_display_t *display)
igt_set_module_param_int(display->drm_fd, "enable_fbc", 0);
}
+/**
+ * intel_fbc_get_fbc_status_crtc_index
+ * @device: fd of the device
+ * @crtc: crtc index
+ * @fbc_status: Buffer to fill the current fbc status
+ * @buf_size: Size of the buffer to be filled
+ *
+ * Read the debugfs entry for current fbc status of a crtc
+ *
+ * Returns:
+ * None
+ */
+void intel_fbc_get_fbc_status_crtc_index(int device, int crtc_index,
+ char *fbc_status, int buf_size)
+{
+ int dir;
+
+ dir = igt_debugfs_crtc_dir(device, crtc_index);
+ igt_require_fd(dir);
+ igt_debugfs_simple_read(dir, "i915_fbc_status", fbc_status, buf_size);
+ close(dir);
+}
+
+/**
+ * intel_fbc_get_fbc_status
+ * @crtc: CRTC
+ * @fbc_status: Buffer to fill the current fbc status
+ * @buf_size: Size of the buffer to be filled
+ *
+ * Read the debugfs entry for current fbc status of a crtc
+ *
+ * Returns:
+ * None
+ */
+void intel_fbc_get_fbc_status(igt_crtc_t *crtc, char *fbc_status, int buf_size)
+{
+ intel_fbc_get_fbc_status_crtc_index(crtc->display->drm_fd,
+ crtc->crtc_index, fbc_status,
+ buf_size);
+}
+
/**
* intel_fbc_supported:
* @crtc: CRTC
@@ -34,12 +75,9 @@ void intel_fbc_disable(igt_display_t *display)
bool intel_fbc_supported(igt_crtc_t *crtc)
{
char buf[FBC_STATUS_BUF_LEN];
- int dir;
- dir = igt_crtc_debugfs_dir(crtc);
- igt_require_fd(dir);
- igt_debugfs_simple_read(dir, "i915_fbc_status", buf, sizeof(buf));
- close(dir);
+ intel_fbc_get_fbc_status(crtc, buf, sizeof(buf));
+
if (*buf == '\0')
return false;
@@ -51,12 +89,9 @@ static bool _intel_fbc_is_enabled(igt_crtc_t *crtc, int log_level, char *last_fb
{
char buf[FBC_STATUS_BUF_LEN];
bool print = true;
- int dir;
- dir = igt_crtc_debugfs_dir(crtc);
- igt_require_fd(dir);
- igt_debugfs_simple_read(dir, "i915_fbc_status", buf, sizeof(buf));
- close(dir);
+ intel_fbc_get_fbc_status(crtc, buf, sizeof(buf));
+
if (log_level != IGT_LOG_DEBUG)
last_fbc_buf[0] = '\0';
else if (strcmp(last_fbc_buf, buf))
diff --git a/lib/i915/intel_fbc.h b/lib/i915/intel_fbc.h
index 8e2662824..f8a506f23 100644
--- a/lib/i915/intel_fbc.h
+++ b/lib/i915/intel_fbc.h
@@ -17,5 +17,8 @@ bool intel_fbc_wait_until_enabled(igt_crtc_t *crtc);
bool intel_fbc_is_enabled(igt_crtc_t *crtc, int log_level);
bool intel_fbc_plane_size_supported(igt_display_t *display, uint32_t width, uint32_t height);
bool intel_fbc_supported_for_psr_mode(igt_display_t *display, enum psr_mode mode);
+void intel_fbc_get_fbc_status_crtc_index(int device, int crtc_index,
+ char *fbc_status, int buf_size);
+void intel_fbc_get_fbc_status(igt_crtc_t *crtc, char *fbc_status, int buf_size);
#endif
--
2.43.0
^ permalink raw reply related [flat|nested] 28+ messages in thread* Re: [PATCH i-g-t v3 01/11] lib/i915/fbc: extract intel_fbc_get_fbc_status()
2026-04-16 9:25 ` [PATCH i-g-t v3 01/11] lib/i915/fbc: extract intel_fbc_get_fbc_status() Vinod Govindapillai
@ 2026-04-30 2:56 ` Reddy Guddati, Santhosh
0 siblings, 0 replies; 28+ messages in thread
From: Reddy Guddati, Santhosh @ 2026-04-30 2:56 UTC (permalink / raw)
To: Vinod Govindapillai, igt-dev; +Cc: swati2.sharma, jani.nikula
Hi Vinod,
On 16-04-2026 14:55, Vinod Govindapillai wrote:
> Code to read the FBC status from the debugfs is being duplicated
> in many places. Extract intel_fbc_get_fbc_status() to be used as
> the single source to read the current FBC status.
>
> Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
> ---
> lib/i915/intel_fbc.c | 55 ++++++++++++++++++++++++++++++++++++--------
> lib/i915/intel_fbc.h | 3 +++
> 2 files changed, 48 insertions(+), 10 deletions(-)
>
> diff --git a/lib/i915/intel_fbc.c b/lib/i915/intel_fbc.c
> index b8c714d43..47f0e2fc1 100644
> --- a/lib/i915/intel_fbc.c
> +++ b/lib/i915/intel_fbc.c
> @@ -22,6 +22,47 @@ void intel_fbc_disable(igt_display_t *display)
> igt_set_module_param_int(display->drm_fd, "enable_fbc", 0);
> }
>
> +/**
> + * intel_fbc_get_fbc_status_crtc_index
> + * @device: fd of the device
> + * @crtc: crtc index
> + * @fbc_status: Buffer to fill the current fbc status
> + * @buf_size: Size of the buffer to be filled
> + *
> + * Read the debugfs entry for current fbc status of a crtc
> + *
> + * Returns:
> + * None
> + */
> +void intel_fbc_get_fbc_status_crtc_index(int device, int crtc_index,
> + char *fbc_status, int buf_size)
The function name has redundant "fbc". Please consider renaming to
intel_get_fbc_status_crtc_index?> +{
> + int dir;
> +
> + dir = igt_debugfs_crtc_dir(device, crtc_index);
> + igt_require_fd(dir);
> + igt_debugfs_simple_read(dir, "i915_fbc_status", fbc_status, buf_size);
> + close(dir);
> +}
> +
> +/**
> + * intel_fbc_get_fbc_status
> + * @crtc: CRTC
> + * @fbc_status: Buffer to fill the current fbc status
> + * @buf_size: Size of the buffer to be filled
> + *
> + * Read the debugfs entry for current fbc status of a crtc
> + *
> + * Returns:
> + * None
> + */
> +void intel_fbc_get_fbc_status(igt_crtc_t *crtc, char *fbc_status, int buf_size)
> +{
> + intel_fbc_get_fbc_status_crtc_index(crtc->display->drm_fd,
> + crtc->crtc_index, fbc_status,
> + buf_size);
> +}
> +
> /**
> * intel_fbc_supported:
> * @crtc: CRTC
> @@ -34,12 +75,9 @@ void intel_fbc_disable(igt_display_t *display)
> bool intel_fbc_supported(igt_crtc_t *crtc)
> {
> char buf[FBC_STATUS_BUF_LEN];
> - int dir;
>
> - dir = igt_crtc_debugfs_dir(crtc);
> - igt_require_fd(dir);
> - igt_debugfs_simple_read(dir, "i915_fbc_status", buf, sizeof(buf));
> - close(dir);
> + intel_fbc_get_fbc_status(crtc, buf, sizeof(buf));
> +
> if (*buf == '\0')
> return false;
>
> @@ -51,12 +89,9 @@ static bool _intel_fbc_is_enabled(igt_crtc_t *crtc, int log_level, char *last_fb
> {
> char buf[FBC_STATUS_BUF_LEN];
> bool print = true;
> - int dir;
>
> - dir = igt_crtc_debugfs_dir(crtc);
> - igt_require_fd(dir);
> - igt_debugfs_simple_read(dir, "i915_fbc_status", buf, sizeof(buf));
> - close(dir);
> + intel_fbc_get_fbc_status(crtc, buf, sizeof(buf));
> +
> if (log_level != IGT_LOG_DEBUG)
> last_fbc_buf[0] = '\0';
> else if (strcmp(last_fbc_buf, buf))
> diff --git a/lib/i915/intel_fbc.h b/lib/i915/intel_fbc.h
> index 8e2662824..f8a506f23 100644
> --- a/lib/i915/intel_fbc.h
> +++ b/lib/i915/intel_fbc.h
> @@ -17,5 +17,8 @@ bool intel_fbc_wait_until_enabled(igt_crtc_t *crtc);
> bool intel_fbc_is_enabled(igt_crtc_t *crtc, int log_level);
> bool intel_fbc_plane_size_supported(igt_display_t *display, uint32_t width, uint32_t height);
> bool intel_fbc_supported_for_psr_mode(igt_display_t *display, enum psr_mode mode);
> +void intel_fbc_get_fbc_status_crtc_index(int device, int crtc_index,
> + char *fbc_status, int buf_size);
> +void intel_fbc_get_fbc_status(igt_crtc_t *crtc, char *fbc_status, int buf_size);
>
> #endif
^ permalink raw reply [flat|nested] 28+ messages in thread
* [PATCH i-g-t v3 02/11] tests/intel/kms_frontbuffer_tracking: use intel_fbc_get_fbc_status()
2026-04-16 9:25 [PATCH i-g-t v3 00/11] updates to fbc tests Vinod Govindapillai
2026-04-16 9:25 ` [PATCH i-g-t v3 01/11] lib/i915/fbc: extract intel_fbc_get_fbc_status() Vinod Govindapillai
@ 2026-04-16 9:25 ` Vinod Govindapillai
2026-04-30 3:18 ` Reddy Guddati, Santhosh
2026-04-16 9:25 ` [PATCH i-g-t v3 03/11] tests/intel/kms_frontbuffer_tracking: update the outdated fbc status reasons Vinod Govindapillai
` (12 subsequent siblings)
14 siblings, 1 reply; 28+ messages in thread
From: Vinod Govindapillai @ 2026-04-16 9:25 UTC (permalink / raw)
To: igt-dev
Cc: vinod.govindapillai, santhosh.reddy.guddati, swati2.sharma,
jani.nikula
Use the common intel_fbc_get_fbc_status() to get the fbc status
Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
---
tests/intel/kms_frontbuffer_tracking.c | 54 ++++++++++++++------------
1 file changed, 30 insertions(+), 24 deletions(-)
diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c
index c16f63199..b01959d2c 100644
--- a/tests/intel/kms_frontbuffer_tracking.c
+++ b/tests/intel/kms_frontbuffer_tracking.c
@@ -1570,13 +1570,13 @@ static void drrs_print_status(void)
static struct timespec fbc_get_last_action(void)
{
struct timespec ret = { 0, 0 };
- char buf[128];
+ char fbc_status[128];
char *action;
ssize_t n_read;
+ intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
- debugfs_read_crtc("i915_fbc_status", buf);
- action = strstr(buf, "\nLast action:");
+ action = strstr(fbc_status, "\nLast action:");
igt_assert(action);
n_read = sscanf(action, "Last action: %ld.%ld",
@@ -1620,12 +1620,12 @@ static void fbc_update_last_action(void)
static void fbc_setup_last_action(void)
{
ssize_t n_read;
- char buf[128];
+ char fbc_status[128];
char *action;
+ intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
- debugfs_read_crtc("i915_fbc_status", buf);
- action = strstr(buf, "\nLast action:");
+ action = strstr(fbc_status, "\nLast action:");
if (!action) {
igt_info("FBC last action not supported\n");
return;
@@ -1640,10 +1640,11 @@ static void fbc_setup_last_action(void)
static bool fbc_is_compressing(void)
{
- char buf[128];
+ char fbc_status[128];
- debugfs_read_crtc("i915_fbc_status", buf);
- return strstr(buf, "\nCompressing: yes\n") != NULL;
+ intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
+
+ return strstr(fbc_status, "\nCompressing: yes\n");
}
static bool fbc_wait_for_compression(void)
@@ -1653,45 +1654,50 @@ static bool fbc_wait_for_compression(void)
static bool fbc_not_enough_stolen(void)
{
- char buf[128];
+ char fbc_status[128];
+
+ intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
- debugfs_read_crtc("i915_fbc_status", buf);
- return strstr(buf, "FBC disabled: not enough stolen memory\n");
+ return strstr(fbc_status, "FBC disabled: not enough stolen memory\n");
}
static bool fbc_stride_not_supported(void)
{
- char buf[128];
+ char fbc_status[128];
+
+ intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
- debugfs_read_crtc("i915_fbc_status", buf);
- return strstr(buf, "FBC disabled: framebuffer stride not supported\n");
+ return strstr(fbc_status, "FBC disabled: framebuffer stride not supported\n");
}
static bool fbc_mode_too_large(void)
{
- char buf[128];
+ char fbc_status[128];
- debugfs_read_crtc("i915_fbc_status", buf);
- return strstr(buf, "FBC disabled: mode too large for compression\n");
+ intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
+
+ return strstr(fbc_status, "FBC disabled: mode too large for compression\n");
}
static bool fbc_psr_not_possible(void)
{
- char buf[128];
+ char fbc_status[128];
+
+ intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
- debugfs_read_crtc("i915_fbc_status", buf);
- return strstr(buf, "FBC disabled: PSR1 enabled (Wa_14016291713)");
+ return strstr(fbc_status, "FBC disabled: PSR1 enabled (Wa_14016291713)");
}
static bool fbc_enable_per_plane(int plane_index, igt_crtc_t *crtc)
{
- char buf[PATH_MAX];
+ char fbc_status[PATH_MAX];
char buf_plane[128];
sprintf(buf_plane, "%d%s", plane_index, igt_crtc_name(crtc));
- debugfs_read_crtc("i915_fbc_status", buf);
- return strstr(strstr(buf, "*"), buf_plane);
+ intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
+
+ return strstr(strstr(fbc_status, "*"), buf_plane);
}
static bool drrs_wait_until_rr_switch_to_low(void)
--
2.43.0
^ permalink raw reply related [flat|nested] 28+ messages in thread* Re: [PATCH i-g-t v3 02/11] tests/intel/kms_frontbuffer_tracking: use intel_fbc_get_fbc_status()
2026-04-16 9:25 ` [PATCH i-g-t v3 02/11] tests/intel/kms_frontbuffer_tracking: use intel_fbc_get_fbc_status() Vinod Govindapillai
@ 2026-04-30 3:18 ` Reddy Guddati, Santhosh
0 siblings, 0 replies; 28+ messages in thread
From: Reddy Guddati, Santhosh @ 2026-04-30 3:18 UTC (permalink / raw)
To: Vinod Govindapillai, igt-dev; +Cc: swati2.sharma, jani.nikula
On 16-04-2026 14:55, Vinod Govindapillai wrote:
> Use the common intel_fbc_get_fbc_status() to get the fbc status
>
> Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
> ---
> tests/intel/kms_frontbuffer_tracking.c | 54 ++++++++++++++------------
> 1 file changed, 30 insertions(+), 24 deletions(-)
>
> diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c
> index c16f63199..b01959d2c 100644
> --- a/tests/intel/kms_frontbuffer_tracking.c
> +++ b/tests/intel/kms_frontbuffer_tracking.c
> @@ -1570,13 +1570,13 @@ static void drrs_print_status(void)
> static struct timespec fbc_get_last_action(void)
> {
> struct timespec ret = { 0, 0 };
> - char buf[128];
> + char fbc_status[128];
> char *action;
> ssize_t n_read;
>
> + intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
>
> - debugfs_read_crtc("i915_fbc_status", buf);
> - action = strstr(buf, "\nLast action:");
> + action = strstr(fbc_status, "\nLast action:");
> igt_assert(action);
>
> n_read = sscanf(action, "Last action: %ld.%ld",
> @@ -1620,12 +1620,12 @@ static void fbc_update_last_action(void)
> static void fbc_setup_last_action(void)
> {
> ssize_t n_read;
> - char buf[128];
> + char fbc_status[128];
> char *action;
>
> + intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
>
> - debugfs_read_crtc("i915_fbc_status", buf);
> - action = strstr(buf, "\nLast action:");
> + action = strstr(fbc_status, "\nLast action:");
> if (!action) {
> igt_info("FBC last action not supported\n");
> return;
> @@ -1640,10 +1640,11 @@ static void fbc_setup_last_action(void)
>
> static bool fbc_is_compressing(void)
> {
> - char buf[128];
> + char fbc_status[128];
>
> - debugfs_read_crtc("i915_fbc_status", buf);
> - return strstr(buf, "\nCompressing: yes\n") != NULL;
> + intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
> +
> + return strstr(fbc_status, "\nCompressing: yes\n");
> }
>
> static bool fbc_wait_for_compression(void)
> @@ -1653,45 +1654,50 @@ static bool fbc_wait_for_compression(void)
>
> static bool fbc_not_enough_stolen(void)
> {
> - char buf[128];
> + char fbc_status[128];
> +
> + intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
>
> - debugfs_read_crtc("i915_fbc_status", buf);
> - return strstr(buf, "FBC disabled: not enough stolen memory\n");
> + return strstr(fbc_status, "FBC disabled: not enough stolen memory\n");
> }
>
> static bool fbc_stride_not_supported(void)
The next commit deletes all this code and replace all this with
intel_fbc_found_skip_reason(). Imho, we should squash this commit.> {
> - char buf[128];
> + char fbc_status[128];
> +
> + intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
>
> - debugfs_read_crtc("i915_fbc_status", buf);
> - return strstr(buf, "FBC disabled: framebuffer stride not supported\n");
> + return strstr(fbc_status, "FBC disabled: framebuffer stride not supported\n");
> }
>
> static bool fbc_mode_too_large(void)
> {
> - char buf[128];
> + char fbc_status[128];
>
> - debugfs_read_crtc("i915_fbc_status", buf);
> - return strstr(buf, "FBC disabled: mode too large for compression\n");
> + intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
> +
> + return strstr(fbc_status, "FBC disabled: mode too large for compression\n");
> }
>
> static bool fbc_psr_not_possible(void)
> {
> - char buf[128];
> + char fbc_status[128];
> +
> + intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
>
> - debugfs_read_crtc("i915_fbc_status", buf);
> - return strstr(buf, "FBC disabled: PSR1 enabled (Wa_14016291713)");
> + return strstr(fbc_status, "FBC disabled: PSR1 enabled (Wa_14016291713)");
> }
>
> static bool fbc_enable_per_plane(int plane_index, igt_crtc_t *crtc)
> {
> - char buf[PATH_MAX];
> + char fbc_status[PATH_MAX];
> char buf_plane[128];
>
> sprintf(buf_plane, "%d%s", plane_index, igt_crtc_name(crtc));
>
> - debugfs_read_crtc("i915_fbc_status", buf);
> - return strstr(strstr(buf, "*"), buf_plane);
> + intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
> +
> + return strstr(strstr(fbc_status, "*"), buf_plane);
> }
>
> static bool drrs_wait_until_rr_switch_to_low(void)
^ permalink raw reply [flat|nested] 28+ messages in thread
* [PATCH i-g-t v3 03/11] tests/intel/kms_frontbuffer_tracking: update the outdated fbc status reasons
2026-04-16 9:25 [PATCH i-g-t v3 00/11] updates to fbc tests Vinod Govindapillai
2026-04-16 9:25 ` [PATCH i-g-t v3 01/11] lib/i915/fbc: extract intel_fbc_get_fbc_status() Vinod Govindapillai
2026-04-16 9:25 ` [PATCH i-g-t v3 02/11] tests/intel/kms_frontbuffer_tracking: use intel_fbc_get_fbc_status() Vinod Govindapillai
@ 2026-04-16 9:25 ` Vinod Govindapillai
2026-04-30 3:37 ` Reddy Guddati, Santhosh
2026-04-16 9:25 ` [PATCH i-g-t v3 04/11] tests/intel/kms_frontbuffer_tracking: consolidate fbc tests skip checks Vinod Govindapillai
` (11 subsequent siblings)
14 siblings, 1 reply; 28+ messages in thread
From: Vinod Govindapillai @ 2026-04-16 9:25 UTC (permalink / raw)
To: igt-dev
Cc: vinod.govindapillai, santhosh.reddy.guddati, swati2.sharma,
jani.nikula
Replace the fbc status check for "mode too large for compression" wchich
is no longer being set by the driver with "plane size too big" and
"surface size too big" fbc status checks.
Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
---
tests/intel/kms_frontbuffer_tracking.c | 18 ++++++++++++++----
1 file changed, 14 insertions(+), 4 deletions(-)
diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c
index b01959d2c..5bdfbd105 100644
--- a/tests/intel/kms_frontbuffer_tracking.c
+++ b/tests/intel/kms_frontbuffer_tracking.c
@@ -1667,16 +1667,25 @@ static bool fbc_stride_not_supported(void)
intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
- return strstr(fbc_status, "FBC disabled: framebuffer stride not supported\n");
+ return strstr(fbc_status, "FBC disabled: stride not supported\n");
}
-static bool fbc_mode_too_large(void)
+static bool fbc_plane_size_too_big(void)
{
char fbc_status[128];
intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
- return strstr(fbc_status, "FBC disabled: mode too large for compression\n");
+ return strstr(fbc_status, "FBC disabled: plane size too big\n");
+}
+
+static bool fbc_surface_size_too_big(void)
+{
+ char fbc_status[128];
+
+ intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
+
+ return strstr(fbc_status, "FBC disabled: surface size too big\n");
}
static bool fbc_psr_not_possible(void)
@@ -2362,7 +2371,8 @@ static void do_status_assertions(int flags)
if (flags & ASSERT_FBC_ENABLED) {
igt_require(!fbc_not_enough_stolen());
igt_require(!fbc_stride_not_supported());
- igt_require(!fbc_mode_too_large());
+ igt_require(!fbc_plane_size_too_big());
+ igt_require(!fbc_surface_size_too_big());
igt_require(!fbc_psr_not_possible());
if (!intel_fbc_wait_until_enabled(prim_mode_params.crtc)) {
igt_assert_f(intel_fbc_is_enabled(prim_mode_params.crtc, IGT_LOG_WARN),
--
2.43.0
^ permalink raw reply related [flat|nested] 28+ messages in thread* Re: [PATCH i-g-t v3 03/11] tests/intel/kms_frontbuffer_tracking: update the outdated fbc status reasons
2026-04-16 9:25 ` [PATCH i-g-t v3 03/11] tests/intel/kms_frontbuffer_tracking: update the outdated fbc status reasons Vinod Govindapillai
@ 2026-04-30 3:37 ` Reddy Guddati, Santhosh
2026-04-30 7:05 ` Govindapillai, Vinod
0 siblings, 1 reply; 28+ messages in thread
From: Reddy Guddati, Santhosh @ 2026-04-30 3:37 UTC (permalink / raw)
To: Vinod Govindapillai, igt-dev; +Cc: swati2.sharma, jani.nikula
On 16-04-2026 14:55, Vinod Govindapillai wrote:
> Replace the fbc status check for "mode too large for compression" wchich
> is no longer being set by the driver with "plane size too big" and
> "surface size too big" fbc status checks.
>
> Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
> ---
> tests/intel/kms_frontbuffer_tracking.c | 18 ++++++++++++++----
> 1 file changed, 14 insertions(+), 4 deletions(-)
>
> diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c
> index b01959d2c..5bdfbd105 100644
> --- a/tests/intel/kms_frontbuffer_tracking.c
> +++ b/tests/intel/kms_frontbuffer_tracking.c
> @@ -1667,16 +1667,25 @@ static bool fbc_stride_not_supported(void)
>
> intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
>
> - return strstr(fbc_status, "FBC disabled: framebuffer stride not supported\n");
> + return strstr(fbc_status, "FBC disabled: stride not supported\n");
> }
>
> -static bool fbc_mode_too_large(void)
> +static bool fbc_plane_size_too_big(void)
> {
> char fbc_status[128];
>
> intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
>
> - return strstr(fbc_status, "FBC disabled: mode too large for compression\n");
> + return strstr(fbc_status, "FBC disabled: plane size too big\n");
> +}
> +
> +static bool fbc_surface_size_too_big(void)
Same here, The next commit deletes all this code and replace all this
with intel_fbc_found_skip_reason(). Imho, we should squash this commit.
> +{
> + char fbc_status[128];
> +
> + intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
> +
> + return strstr(fbc_status, "FBC disabled: surface size too big\n");
> }
>
> static bool fbc_psr_not_possible(void)
> @@ -2362,7 +2371,8 @@ static void do_status_assertions(int flags)
> if (flags & ASSERT_FBC_ENABLED) {
> igt_require(!fbc_not_enough_stolen());
> igt_require(!fbc_stride_not_supported());
> - igt_require(!fbc_mode_too_large());
> + igt_require(!fbc_plane_size_too_big());
> + igt_require(!fbc_surface_size_too_big());
> igt_require(!fbc_psr_not_possible());
> if (!intel_fbc_wait_until_enabled(prim_mode_params.crtc)) {
> igt_assert_f(intel_fbc_is_enabled(prim_mode_params.crtc, IGT_LOG_WARN),
^ permalink raw reply [flat|nested] 28+ messages in thread* Re: [PATCH i-g-t v3 03/11] tests/intel/kms_frontbuffer_tracking: update the outdated fbc status reasons
2026-04-30 3:37 ` Reddy Guddati, Santhosh
@ 2026-04-30 7:05 ` Govindapillai, Vinod
2026-04-30 8:30 ` Jani Nikula
0 siblings, 1 reply; 28+ messages in thread
From: Govindapillai, Vinod @ 2026-04-30 7:05 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org, Reddy Guddati, Santhosh
Cc: Nikula, Jani, Sharma, Swati2
On Thu, 2026-04-30 at 09:07 +0530, Reddy Guddati, Santhosh wrote:
>
>
> On 16-04-2026 14:55, Vinod Govindapillai wrote:
> > Replace the fbc status check for "mode too large for compression"
> > wchich
> > is no longer being set by the driver with "plane size too big" and
> > "surface size too big" fbc status checks.
> >
> > Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
> > ---
> > tests/intel/kms_frontbuffer_tracking.c | 18 ++++++++++++++----
> > 1 file changed, 14 insertions(+), 4 deletions(-)
> >
> > diff --git a/tests/intel/kms_frontbuffer_tracking.c
> > b/tests/intel/kms_frontbuffer_tracking.c
> > index b01959d2c..5bdfbd105 100644
> > --- a/tests/intel/kms_frontbuffer_tracking.c
> > +++ b/tests/intel/kms_frontbuffer_tracking.c
> > @@ -1667,16 +1667,25 @@ static bool fbc_stride_not_supported(void)
> >
> > intel_fbc_get_fbc_status(prim_mode_params.crtc,
> > fbc_status, sizeof(fbc_status));
> >
> > - return strstr(fbc_status, "FBC disabled: framebuffer
> > stride not supported\n");
> > + return strstr(fbc_status, "FBC disabled: stride not
> > supported\n");
> > }
> >
> > -static bool fbc_mode_too_large(void)
> > +static bool fbc_plane_size_too_big(void)
> > {
> > char fbc_status[128];
> >
> > intel_fbc_get_fbc_status(prim_mode_params.crtc,
> > fbc_status, sizeof(fbc_status));
> >
> > - return strstr(fbc_status, "FBC disabled: mode too large
> > for compression\n");
> > + return strstr(fbc_status, "FBC disabled: plane size too
> > big\n");
> > +}
> > +
> > +static bool fbc_surface_size_too_big(void)
>
> Same here, The next commit deletes all this code and replace all this
> with intel_fbc_found_skip_reason(). Imho, we should squash this
> commit.
These are basically separate changes - one patch one logical change. In
that way it would be easier to track/debug - bisect etc. Well.. this is
how I have seen how Ville/Jani have been approaching the changes in the
driver.. so following that approach.
BR
Vinod
^ permalink raw reply [flat|nested] 28+ messages in thread* Re: [PATCH i-g-t v3 03/11] tests/intel/kms_frontbuffer_tracking: update the outdated fbc status reasons
2026-04-30 7:05 ` Govindapillai, Vinod
@ 2026-04-30 8:30 ` Jani Nikula
0 siblings, 0 replies; 28+ messages in thread
From: Jani Nikula @ 2026-04-30 8:30 UTC (permalink / raw)
To: Govindapillai, Vinod, igt-dev@lists.freedesktop.org,
Reddy Guddati, Santhosh
Cc: Sharma, Swati2
On Thu, 30 Apr 2026, "Govindapillai, Vinod" <vinod.govindapillai@intel.com> wrote:
> On Thu, 2026-04-30 at 09:07 +0530, Reddy Guddati, Santhosh wrote:
>>
>>
>> On 16-04-2026 14:55, Vinod Govindapillai wrote:
>> > Replace the fbc status check for "mode too large for compression"
>> > wchich
>> > is no longer being set by the driver with "plane size too big" and
>> > "surface size too big" fbc status checks.
>> >
>> > Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
>> > ---
>> > tests/intel/kms_frontbuffer_tracking.c | 18 ++++++++++++++----
>> > 1 file changed, 14 insertions(+), 4 deletions(-)
>> >
>> > diff --git a/tests/intel/kms_frontbuffer_tracking.c
>> > b/tests/intel/kms_frontbuffer_tracking.c
>> > index b01959d2c..5bdfbd105 100644
>> > --- a/tests/intel/kms_frontbuffer_tracking.c
>> > +++ b/tests/intel/kms_frontbuffer_tracking.c
>> > @@ -1667,16 +1667,25 @@ static bool fbc_stride_not_supported(void)
>> >
>> > intel_fbc_get_fbc_status(prim_mode_params.crtc,
>> > fbc_status, sizeof(fbc_status));
>> >
>> > - return strstr(fbc_status, "FBC disabled: framebuffer
>> > stride not supported\n");
>> > + return strstr(fbc_status, "FBC disabled: stride not
>> > supported\n");
>> > }
>> >
>> > -static bool fbc_mode_too_large(void)
>> > +static bool fbc_plane_size_too_big(void)
>> > {
>> > char fbc_status[128];
>> >
>> > intel_fbc_get_fbc_status(prim_mode_params.crtc,
>> > fbc_status, sizeof(fbc_status));
>> >
>> > - return strstr(fbc_status, "FBC disabled: mode too large
>> > for compression\n");
>> > + return strstr(fbc_status, "FBC disabled: plane size too
>> > big\n");
>> > +}
>> > +
>> > +static bool fbc_surface_size_too_big(void)
>>
>> Same here, The next commit deletes all this code and replace all this
>> with intel_fbc_found_skip_reason(). Imho, we should squash this
>> commit.
>
> These are basically separate changes - one patch one logical change. In
> that way it would be easier to track/debug - bisect etc. Well.. this is
> how I have seen how Ville/Jani have been approaching the changes in the
> driver.. so following that approach.
IMO always err on the side of small incremental changes. It's easier to
review, easier to find errors when bisecting, and (if needed) easier to
squash afterwards.
BR,
Jani.
>
> BR
> Vinod
>
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 28+ messages in thread
* [PATCH i-g-t v3 04/11] tests/intel/kms_frontbuffer_tracking: consolidate fbc tests skip checks
2026-04-16 9:25 [PATCH i-g-t v3 00/11] updates to fbc tests Vinod Govindapillai
` (2 preceding siblings ...)
2026-04-16 9:25 ` [PATCH i-g-t v3 03/11] tests/intel/kms_frontbuffer_tracking: update the outdated fbc status reasons Vinod Govindapillai
@ 2026-04-16 9:25 ` Vinod Govindapillai
2026-04-30 4:35 ` Reddy Guddati, Santhosh
2026-04-16 9:25 ` [PATCH i-g-t v3 05/11] tests/intel/kms_frontbuffer_tracking: use a bigger buffer for fbc status Vinod Govindapillai
` (10 subsequent siblings)
14 siblings, 1 reply; 28+ messages in thread
From: Vinod Govindapillai @ 2026-04-16 9:25 UTC (permalink / raw)
To: igt-dev
Cc: vinod.govindapillai, santhosh.reddy.guddati, swati2.sharma,
jani.nikula
While looking for "no fbc reasons" and decide whether to skip any specific
fbc related test, read the debugfs fbc status only once and look for any
skip reasons. Move this as a library function so that other FBC specific
tests could use the same library and all the skips reasons can be
maintained in a single place.
Suggested-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
---
lib/i915/intel_fbc.c | 37 +++++++++++++++
lib/i915/intel_fbc.h | 1 +
tests/intel/kms_frontbuffer_tracking.c | 63 ++++----------------------
3 files changed, 47 insertions(+), 54 deletions(-)
diff --git a/lib/i915/intel_fbc.c b/lib/i915/intel_fbc.c
index 47f0e2fc1..e2fbe3680 100644
--- a/lib/i915/intel_fbc.c
+++ b/lib/i915/intel_fbc.c
@@ -63,6 +63,43 @@ void intel_fbc_get_fbc_status(igt_crtc_t *crtc, char *fbc_status, int buf_size)
buf_size);
}
+/**
+ * intel_fbc_found_skip_reason
+ * @device: fd of the device
+ * @crtc_index: crtc index
+ *
+ * Read the debugfs entry for current fbc status of a crtc and check for any reasons
+ * why FBC cannot be enabled. This helps in skipping FBC test cases where FBC cannot
+ * be enabled. These no fbc reasons are defined by the driver.
+ *
+ * Returns:
+ * True if there is a reason that FBC cannot be enabled otherwise false.
+ */
+bool intel_fbc_found_skip_reason(int device, int crtc_index)
+{
+ const char *const no_fbc_reasons[] = {
+ "FBC disabled: not enough stolen memory",
+ "FBC disabled: stride not supported",
+ "FBC disabled: plane size too big",
+ "FBC disabled: surface size too big",
+ "FBC disabled: PSR1 enabled (Wa_14016291713)"
+ };
+ bool found_reason = false;
+ char fbc_status[FBC_STATUS_BUF_LEN];
+ int i;
+
+ intel_fbc_get_fbc_status_crtc_index(device, crtc_index, fbc_status,
+ sizeof(fbc_status));
+
+ if (strstr(fbc_status, "FBC Enabled\n"))
+ return false;
+
+ for (i = 0; !found_reason && i < ARRAY_SIZE(no_fbc_reasons); i++)
+ found_reason = strstr(fbc_status, no_fbc_reasons[i]);
+
+ return found_reason;
+}
+
/**
* intel_fbc_supported:
* @crtc: CRTC
diff --git a/lib/i915/intel_fbc.h b/lib/i915/intel_fbc.h
index f8a506f23..e4b9e5529 100644
--- a/lib/i915/intel_fbc.h
+++ b/lib/i915/intel_fbc.h
@@ -20,5 +20,6 @@ bool intel_fbc_supported_for_psr_mode(igt_display_t *display, enum psr_mode mode
void intel_fbc_get_fbc_status_crtc_index(int device, int crtc_index,
char *fbc_status, int buf_size);
void intel_fbc_get_fbc_status(igt_crtc_t *crtc, char *fbc_status, int buf_size);
+bool intel_fbc_found_skip_reason(int device, int crtc_index);
#endif
diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c
index 5bdfbd105..4fa185e76 100644
--- a/tests/intel/kms_frontbuffer_tracking.c
+++ b/tests/intel/kms_frontbuffer_tracking.c
@@ -1652,51 +1652,6 @@ static bool fbc_wait_for_compression(void)
return igt_wait(fbc_is_compressing(), 2000, 1);
}
-static bool fbc_not_enough_stolen(void)
-{
- char fbc_status[128];
-
- intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
-
- return strstr(fbc_status, "FBC disabled: not enough stolen memory\n");
-}
-
-static bool fbc_stride_not_supported(void)
-{
- char fbc_status[128];
-
- intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
-
- return strstr(fbc_status, "FBC disabled: stride not supported\n");
-}
-
-static bool fbc_plane_size_too_big(void)
-{
- char fbc_status[128];
-
- intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
-
- return strstr(fbc_status, "FBC disabled: plane size too big\n");
-}
-
-static bool fbc_surface_size_too_big(void)
-{
- char fbc_status[128];
-
- intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
-
- return strstr(fbc_status, "FBC disabled: surface size too big\n");
-}
-
-static bool fbc_psr_not_possible(void)
-{
- char fbc_status[128];
-
- intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
-
- return strstr(fbc_status, "FBC disabled: PSR1 enabled (Wa_14016291713)");
-}
-
static bool fbc_enable_per_plane(int plane_index, igt_crtc_t *crtc)
{
char fbc_status[PATH_MAX];
@@ -2345,6 +2300,8 @@ static void do_crc_assertions(int flags)
static void do_status_assertions(int flags)
{
+ igt_crtc_t *crtc = prim_mode_params.crtc;
+
if (!opt.check_status) {
/* Make sure we settle before continuing. */
sleep(1);
@@ -2362,27 +2319,25 @@ static void do_status_assertions(int flags)
igt_assert_f(false, "DRRS LOW\n");
}
} else if (flags & ASSERT_DRRS_INACTIVE) {
- if (!intel_is_drrs_inactive(prim_mode_params.crtc)) {
+ if (!intel_is_drrs_inactive(crtc)) {
drrs_print_status();
igt_assert_f(false, "DRRS INACTIVE\n");
}
}
if (flags & ASSERT_FBC_ENABLED) {
- igt_require(!fbc_not_enough_stolen());
- igt_require(!fbc_stride_not_supported());
- igt_require(!fbc_plane_size_too_big());
- igt_require(!fbc_surface_size_too_big());
- igt_require(!fbc_psr_not_possible());
- if (!intel_fbc_wait_until_enabled(prim_mode_params.crtc)) {
- igt_assert_f(intel_fbc_is_enabled(prim_mode_params.crtc, IGT_LOG_WARN),
+ igt_require(!intel_fbc_found_skip_reason(crtc->display->drm_fd,
+ crtc->crtc_index));
+
+ if (!intel_fbc_wait_until_enabled(crtc)) {
+ igt_assert_f(intel_fbc_is_enabled(crtc, IGT_LOG_WARN),
"FBC disabled\n");
}
if (opt.fbc_check_compression)
igt_assert(fbc_wait_for_compression());
} else if (flags & ASSERT_FBC_DISABLED) {
- igt_assert(!intel_fbc_wait_until_enabled(prim_mode_params.crtc));
+ igt_assert(!intel_fbc_wait_until_enabled(crtc));
}
if (flags & ASSERT_PSR_ENABLED) {
--
2.43.0
^ permalink raw reply related [flat|nested] 28+ messages in thread* Re: [PATCH i-g-t v3 04/11] tests/intel/kms_frontbuffer_tracking: consolidate fbc tests skip checks
2026-04-16 9:25 ` [PATCH i-g-t v3 04/11] tests/intel/kms_frontbuffer_tracking: consolidate fbc tests skip checks Vinod Govindapillai
@ 2026-04-30 4:35 ` Reddy Guddati, Santhosh
2026-04-30 7:12 ` Govindapillai, Vinod
0 siblings, 1 reply; 28+ messages in thread
From: Reddy Guddati, Santhosh @ 2026-04-30 4:35 UTC (permalink / raw)
To: Vinod Govindapillai, igt-dev; +Cc: swati2.sharma, jani.nikula
Hi Vinod,
On 16-04-2026 14:55, Vinod Govindapillai wrote:
> While looking for "no fbc reasons" and decide whether to skip any specific
> fbc related test, read the debugfs fbc status only once and look for any
> skip reasons. Move this as a library function so that other FBC specific
> tests could use the same library and all the skips reasons can be
> maintained in a single place.
>
> Suggested-by: Jani Nikula <jani.nikula@intel.com>
> Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
> ---
> lib/i915/intel_fbc.c | 37 +++++++++++++++
> lib/i915/intel_fbc.h | 1 +
> tests/intel/kms_frontbuffer_tracking.c | 63 ++++----------------------
> 3 files changed, 47 insertions(+), 54 deletions(-)
>
> diff --git a/lib/i915/intel_fbc.c b/lib/i915/intel_fbc.c
> index 47f0e2fc1..e2fbe3680 100644
> --- a/lib/i915/intel_fbc.c
> +++ b/lib/i915/intel_fbc.c
> @@ -63,6 +63,43 @@ void intel_fbc_get_fbc_status(igt_crtc_t *crtc, char *fbc_status, int buf_size)
> buf_size);
> }
>
> +/**
> + * intel_fbc_found_skip_reason
> + * @device: fd of the device
> + * @crtc_index: crtc index
> + *
> + * Read the debugfs entry for current fbc status of a crtc and check for any reasons
> + * why FBC cannot be enabled. This helps in skipping FBC test cases where FBC cannot
> + * be enabled. These no fbc reasons are defined by the driver.
> + *
> + * Returns:
> + * True if there is a reason that FBC cannot be enabled otherwise false.
> + */
> +bool intel_fbc_found_skip_reason(int device, int crtc_index)
> +{
> + const char *const no_fbc_reasons[] = {
> + "FBC disabled: not enough stolen memory",
> + "FBC disabled: stride not supported",
> + "FBC disabled: plane size too big",
> + "FBC disabled: surface size too big",
> + "FBC disabled: PSR1 enabled (Wa_14016291713)"
> + };
> + bool found_reason = false;
> + char fbc_status[FBC_STATUS_BUF_LEN];
> + int i;
> +
> + intel_fbc_get_fbc_status_crtc_index(device, crtc_index, fbc_status,
> + sizeof(fbc_status));
> +
> + if (strstr(fbc_status, "FBC Enabled\n"))
This should be "FBC enabled" as debugfs reports it as "enabled".
> + return false;
> +
> + for (i = 0; !found_reason && i < ARRAY_SIZE(no_fbc_reasons); i++)
> + found_reason = strstr(fbc_status, no_fbc_reasons[i]);
> +
> + return found_reason;
> +}
> +
> /**
> * intel_fbc_supported:
> * @crtc: CRTC
> diff --git a/lib/i915/intel_fbc.h b/lib/i915/intel_fbc.h
> index f8a506f23..e4b9e5529 100644
> --- a/lib/i915/intel_fbc.h
> +++ b/lib/i915/intel_fbc.h
> @@ -20,5 +20,6 @@ bool intel_fbc_supported_for_psr_mode(igt_display_t *display, enum psr_mode mode
> void intel_fbc_get_fbc_status_crtc_index(int device, int crtc_index,
> char *fbc_status, int buf_size);
> void intel_fbc_get_fbc_status(igt_crtc_t *crtc, char *fbc_status, int buf_size);
> +bool intel_fbc_found_skip_reason(int device, int crtc_index);
>
> #endif
> diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c
> index 5bdfbd105..4fa185e76 100644
> --- a/tests/intel/kms_frontbuffer_tracking.c
> +++ b/tests/intel/kms_frontbuffer_tracking.c
> @@ -1652,51 +1652,6 @@ static bool fbc_wait_for_compression(void)
> return igt_wait(fbc_is_compressing(), 2000, 1);
> }
>
> -static bool fbc_not_enough_stolen(void)
> -{
> - char fbc_status[128];
> -
> - intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
> -
> - return strstr(fbc_status, "FBC disabled: not enough stolen memory\n");
> -}
> -
> -static bool fbc_stride_not_supported(void)
> -{
> - char fbc_status[128];
> -
> - intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
> -
> - return strstr(fbc_status, "FBC disabled: stride not supported\n");
> -}
> -
> -static bool fbc_plane_size_too_big(void)
> -{
> - char fbc_status[128];
> -
> - intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
> -
> - return strstr(fbc_status, "FBC disabled: plane size too big\n");
> -}
> -
> -static bool fbc_surface_size_too_big(void)
> -{
> - char fbc_status[128];
> -
> - intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
> -
> - return strstr(fbc_status, "FBC disabled: surface size too big\n");
> -}
> -
> -static bool fbc_psr_not_possible(void)
> -{
> - char fbc_status[128];
> -
> - intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
> -
> - return strstr(fbc_status, "FBC disabled: PSR1 enabled (Wa_14016291713)");
> -}
> -
> static bool fbc_enable_per_plane(int plane_index, igt_crtc_t *crtc)
> {
> char fbc_status[PATH_MAX];
> @@ -2345,6 +2300,8 @@ static void do_crc_assertions(int flags)
>
> static void do_status_assertions(int flags)
> {
> + igt_crtc_t *crtc = prim_mode_params.crtc;
> +
> if (!opt.check_status) {
> /* Make sure we settle before continuing. */
> sleep(1);
> @@ -2362,27 +2319,25 @@ static void do_status_assertions(int flags)
> igt_assert_f(false, "DRRS LOW\n");
> }
> } else if (flags & ASSERT_DRRS_INACTIVE) {
> - if (!intel_is_drrs_inactive(prim_mode_params.crtc)) {
> + if (!intel_is_drrs_inactive(crtc)) {
> drrs_print_status();
> igt_assert_f(false, "DRRS INACTIVE\n");
> }
> }
>
> if (flags & ASSERT_FBC_ENABLED) {
> - igt_require(!fbc_not_enough_stolen());
> - igt_require(!fbc_stride_not_supported());
> - igt_require(!fbc_plane_size_too_big());
> - igt_require(!fbc_surface_size_too_big());
> - igt_require(!fbc_psr_not_possible());
> - if (!intel_fbc_wait_until_enabled(prim_mode_params.crtc)) {
> - igt_assert_f(intel_fbc_is_enabled(prim_mode_params.crtc, IGT_LOG_WARN),
> + igt_require(!intel_fbc_found_skip_reason(crtc->display->drm_fd,
> + crtc->crtc_index));
> +
> + if (!intel_fbc_wait_until_enabled(crtc)) {
> + igt_assert_f(intel_fbc_is_enabled(crtc, IGT_LOG_WARN),
> "FBC disabled\n");
> }
>
> if (opt.fbc_check_compression)
> igt_assert(fbc_wait_for_compression());
> } else if (flags & ASSERT_FBC_DISABLED) {
> - igt_assert(!intel_fbc_wait_until_enabled(prim_mode_params.crtc));
> + igt_assert(!intel_fbc_wait_until_enabled(crtc));
> }
>
> if (flags & ASSERT_PSR_ENABLED) {
^ permalink raw reply [flat|nested] 28+ messages in thread* Re: [PATCH i-g-t v3 04/11] tests/intel/kms_frontbuffer_tracking: consolidate fbc tests skip checks
2026-04-30 4:35 ` Reddy Guddati, Santhosh
@ 2026-04-30 7:12 ` Govindapillai, Vinod
0 siblings, 0 replies; 28+ messages in thread
From: Govindapillai, Vinod @ 2026-04-30 7:12 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org, Reddy Guddati, Santhosh
Cc: Nikula, Jani, Sharma, Swati2
On Thu, 2026-04-30 at 10:05 +0530, Reddy Guddati, Santhosh wrote:
> Hi Vinod,
>
> On 16-04-2026 14:55, Vinod Govindapillai wrote:
> > While looking for "no fbc reasons" and decide whether to skip any
> > specific
> > fbc related test, read the debugfs fbc status only once and look
> > for any
> > skip reasons. Move this as a library function so that other FBC
> > specific
> > tests could use the same library and all the skips reasons can be
> > maintained in a single place.
> >
> > Suggested-by: Jani Nikula <jani.nikula@intel.com>
> > Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
> > ---
> > lib/i915/intel_fbc.c | 37 +++++++++++++++
> > lib/i915/intel_fbc.h | 1 +
> > tests/intel/kms_frontbuffer_tracking.c | 63 ++++-----------------
> > -----
> > 3 files changed, 47 insertions(+), 54 deletions(-)
> >
> > diff --git a/lib/i915/intel_fbc.c b/lib/i915/intel_fbc.c
> > index 47f0e2fc1..e2fbe3680 100644
> > --- a/lib/i915/intel_fbc.c
> > +++ b/lib/i915/intel_fbc.c
> > @@ -63,6 +63,43 @@ void intel_fbc_get_fbc_status(igt_crtc_t *crtc,
> > char *fbc_status, int buf_size)
> > buf_size);
> > }
> >
> > +/**
> > + * intel_fbc_found_skip_reason
> > + * @device: fd of the device
> > + * @crtc_index: crtc index
> > + *
> > + * Read the debugfs entry for current fbc status of a crtc and
> > check for any reasons
> > + * why FBC cannot be enabled. This helps in skipping FBC test
> > cases where FBC cannot
> > + * be enabled. These no fbc reasons are defined by the driver.
> > + *
> > + * Returns:
> > + * True if there is a reason that FBC cannot be enabled otherwise
> > false.
> > + */
> > +bool intel_fbc_found_skip_reason(int device, int crtc_index)
> > +{
> > + const char *const no_fbc_reasons[] = {
> > + "FBC disabled: not enough stolen memory",
> > + "FBC disabled: stride not supported",
> > + "FBC disabled: plane size too big",
> > + "FBC disabled: surface size too big",
> > + "FBC disabled: PSR1 enabled (Wa_14016291713)"
> > + };
> > + bool found_reason = false;
> > + char fbc_status[FBC_STATUS_BUF_LEN];
> > + int i;
> > +
> > + intel_fbc_get_fbc_status_crtc_index(device, crtc_index,
> > fbc_status,
> > + sizeof(fbc_status));
> > +
> > + if (strstr(fbc_status, "FBC Enabled\n"))
>
> This should be "FBC enabled" as debugfs reports it as "enabled".
>
>
Thanks for pointing this and other such issues in other patches.
Will fix that.
BR
Vinod
^ permalink raw reply [flat|nested] 28+ messages in thread
* [PATCH i-g-t v3 05/11] tests/intel/kms_frontbuffer_tracking: use a bigger buffer for fbc status
2026-04-16 9:25 [PATCH i-g-t v3 00/11] updates to fbc tests Vinod Govindapillai
` (3 preceding siblings ...)
2026-04-16 9:25 ` [PATCH i-g-t v3 04/11] tests/intel/kms_frontbuffer_tracking: consolidate fbc tests skip checks Vinod Govindapillai
@ 2026-04-16 9:25 ` Vinod Govindapillai
2026-04-30 3:45 ` Reddy Guddati, Santhosh
2026-04-16 9:25 ` [PATCH i-g-t v3 06/11] tests/intel/kms_fbcon_fbt: " Vinod Govindapillai
` (9 subsequent siblings)
14 siblings, 1 reply; 28+ messages in thread
From: Vinod Govindapillai @ 2026-04-16 9:25 UTC (permalink / raw)
To: igt-dev
Cc: vinod.govindapillai, santhosh.reddy.guddati, swati2.sharma,
jani.nikula
As the FBC status now include plane specific FBC status as well, we
need a bigger buffer to capture the complete FBC status. Define the
buffer length in a single place and use it across places where the
test need to assess the FBC status
Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
---
lib/i915/intel_fbc.c | 2 --
lib/i915/intel_fbc.h | 2 ++
tests/intel/kms_frontbuffer_tracking.c | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/lib/i915/intel_fbc.c b/lib/i915/intel_fbc.c
index e2fbe3680..fde9ef03b 100644
--- a/lib/i915/intel_fbc.c
+++ b/lib/i915/intel_fbc.c
@@ -10,8 +10,6 @@
#include "intel_fbc.h"
-#define FBC_STATUS_BUF_LEN 128
-
void intel_fbc_enable(igt_display_t *display)
{
igt_set_module_param_int(display->drm_fd, "enable_fbc", 1);
diff --git a/lib/i915/intel_fbc.h b/lib/i915/intel_fbc.h
index e4b9e5529..f83818aff 100644
--- a/lib/i915/intel_fbc.h
+++ b/lib/i915/intel_fbc.h
@@ -8,6 +8,8 @@
#include "igt.h"
+#define FBC_STATUS_BUF_LEN 512
+
enum psr_mode;
void intel_fbc_enable(igt_display_t *display);
diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c
index 4fa185e76..fd3b75b02 100644
--- a/tests/intel/kms_frontbuffer_tracking.c
+++ b/tests/intel/kms_frontbuffer_tracking.c
@@ -1570,7 +1570,7 @@ static void drrs_print_status(void)
static struct timespec fbc_get_last_action(void)
{
struct timespec ret = { 0, 0 };
- char fbc_status[128];
+ char fbc_status[FBC_STATUS_BUF_LEN];
char *action;
ssize_t n_read;
@@ -1620,7 +1620,7 @@ static void fbc_update_last_action(void)
static void fbc_setup_last_action(void)
{
ssize_t n_read;
- char fbc_status[128];
+ char fbc_status[FBC_STATUS_BUF_LEN];
char *action;
intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
@@ -1640,7 +1640,7 @@ static void fbc_setup_last_action(void)
static bool fbc_is_compressing(void)
{
- char fbc_status[128];
+ char fbc_status[FBC_STATUS_BUF_LEN];
intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
--
2.43.0
^ permalink raw reply related [flat|nested] 28+ messages in thread* Re: [PATCH i-g-t v3 05/11] tests/intel/kms_frontbuffer_tracking: use a bigger buffer for fbc status
2026-04-16 9:25 ` [PATCH i-g-t v3 05/11] tests/intel/kms_frontbuffer_tracking: use a bigger buffer for fbc status Vinod Govindapillai
@ 2026-04-30 3:45 ` Reddy Guddati, Santhosh
0 siblings, 0 replies; 28+ messages in thread
From: Reddy Guddati, Santhosh @ 2026-04-30 3:45 UTC (permalink / raw)
To: Vinod Govindapillai, igt-dev; +Cc: swati2.sharma, jani.nikula
LGTM
Reviewed-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
On 16-04-2026 14:55, Vinod Govindapillai wrote:
> As the FBC status now include plane specific FBC status as well, we
> need a bigger buffer to capture the complete FBC status. Define the
> buffer length in a single place and use it across places where the
> test need to assess the FBC status
>
> Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
> ---
> lib/i915/intel_fbc.c | 2 --
> lib/i915/intel_fbc.h | 2 ++
> tests/intel/kms_frontbuffer_tracking.c | 6 +++---
> 3 files changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/lib/i915/intel_fbc.c b/lib/i915/intel_fbc.c
> index e2fbe3680..fde9ef03b 100644
> --- a/lib/i915/intel_fbc.c
> +++ b/lib/i915/intel_fbc.c
> @@ -10,8 +10,6 @@
>
> #include "intel_fbc.h"
>
> -#define FBC_STATUS_BUF_LEN 128
> -
> void intel_fbc_enable(igt_display_t *display)
> {
> igt_set_module_param_int(display->drm_fd, "enable_fbc", 1);
> diff --git a/lib/i915/intel_fbc.h b/lib/i915/intel_fbc.h
> index e4b9e5529..f83818aff 100644
> --- a/lib/i915/intel_fbc.h
> +++ b/lib/i915/intel_fbc.h
> @@ -8,6 +8,8 @@
>
> #include "igt.h"
>
> +#define FBC_STATUS_BUF_LEN 512
> +
> enum psr_mode;
>
> void intel_fbc_enable(igt_display_t *display);
> diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c
> index 4fa185e76..fd3b75b02 100644
> --- a/tests/intel/kms_frontbuffer_tracking.c
> +++ b/tests/intel/kms_frontbuffer_tracking.c
> @@ -1570,7 +1570,7 @@ static void drrs_print_status(void)
> static struct timespec fbc_get_last_action(void)
> {
> struct timespec ret = { 0, 0 };
> - char fbc_status[128];
> + char fbc_status[FBC_STATUS_BUF_LEN];
> char *action;
> ssize_t n_read;
>
> @@ -1620,7 +1620,7 @@ static void fbc_update_last_action(void)
> static void fbc_setup_last_action(void)
> {
> ssize_t n_read;
> - char fbc_status[128];
> + char fbc_status[FBC_STATUS_BUF_LEN];
> char *action;
>
> intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
> @@ -1640,7 +1640,7 @@ static void fbc_setup_last_action(void)
>
> static bool fbc_is_compressing(void)
> {
> - char fbc_status[128];
> + char fbc_status[FBC_STATUS_BUF_LEN];
>
> intel_fbc_get_fbc_status(prim_mode_params.crtc, fbc_status, sizeof(fbc_status));
>
^ permalink raw reply [flat|nested] 28+ messages in thread
* [PATCH i-g-t v3 06/11] tests/intel/kms_fbcon_fbt: use a bigger buffer for fbc status
2026-04-16 9:25 [PATCH i-g-t v3 00/11] updates to fbc tests Vinod Govindapillai
` (4 preceding siblings ...)
2026-04-16 9:25 ` [PATCH i-g-t v3 05/11] tests/intel/kms_frontbuffer_tracking: use a bigger buffer for fbc status Vinod Govindapillai
@ 2026-04-16 9:25 ` Vinod Govindapillai
2026-04-30 3:46 ` Reddy Guddati, Santhosh
2026-04-16 9:25 ` [PATCH i-g-t v3 07/11] tests/intel/kms_fbcon_fbt: update the outdated fbc skip reasons Vinod Govindapillai
` (8 subsequent siblings)
14 siblings, 1 reply; 28+ messages in thread
From: Vinod Govindapillai @ 2026-04-16 9:25 UTC (permalink / raw)
To: igt-dev
Cc: vinod.govindapillai, santhosh.reddy.guddati, swati2.sharma,
jani.nikula
As the FBC status now include plane specific FBC status as well, we
need a bigger buffer to capture the complete FBC status. Use the
already defined buffer length to assess the FBC status
Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
---
tests/intel/kms_fbcon_fbt.c | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/tests/intel/kms_fbcon_fbt.c b/tests/intel/kms_fbcon_fbt.c
index e44be15f6..b36582011 100644
--- a/tests/intel/kms_fbcon_fbt.c
+++ b/tests/intel/kms_fbcon_fbt.c
@@ -33,6 +33,7 @@
* Mega feature: General Display Features
*/
+#include "i915/intel_fbc.h"
#include "igt.h"
#include "igt_device.h"
#include "igt_psr.h"
@@ -81,7 +82,7 @@ static void wait_user(const char *msg)
static bool fbc_supported_on_chipset(int device, int debugfs_fd)
{
- char buf[128];
+ char buf[FBC_STATUS_BUF_LEN];
int ret;
ret = igt_debugfs_simple_read(debugfs_fd, "i915_fbc_status",
@@ -100,7 +101,7 @@ static bool connector_can_fbc(drmModeConnectorPtr connector)
static void fbc_print_status(int debugfs_fd)
{
- static char buf[128];
+ static char buf[FBC_STATUS_BUF_LEN];
igt_debugfs_simple_read(debugfs_fd, "i915_fbc_status", buf,
sizeof(buf));
@@ -109,7 +110,7 @@ static void fbc_print_status(int debugfs_fd)
static bool fbc_check_status(int debugfs_fd, bool enabled)
{
- char buf[128];
+ char buf[FBC_STATUS_BUF_LEN];
igt_debugfs_simple_read(debugfs_fd, "i915_fbc_status", buf,
sizeof(buf));
@@ -310,7 +311,7 @@ static void fbc_skips_on_fbcon(int debugfs_fd)
"plane height + offset is non-modulo of 4"
};
bool skip = false;
- char buf[128];
+ char buf[FBC_STATUS_BUF_LEN];
int i;
igt_debugfs_simple_read(debugfs_fd, "i915_fbc_status", buf, sizeof(buf));
--
2.43.0
^ permalink raw reply related [flat|nested] 28+ messages in thread* Re: [PATCH i-g-t v3 06/11] tests/intel/kms_fbcon_fbt: use a bigger buffer for fbc status
2026-04-16 9:25 ` [PATCH i-g-t v3 06/11] tests/intel/kms_fbcon_fbt: " Vinod Govindapillai
@ 2026-04-30 3:46 ` Reddy Guddati, Santhosh
0 siblings, 0 replies; 28+ messages in thread
From: Reddy Guddati, Santhosh @ 2026-04-30 3:46 UTC (permalink / raw)
To: Vinod Govindapillai, igt-dev; +Cc: swati2.sharma, jani.nikula
LGTM
Reviewed-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
On 16-04-2026 14:55, Vinod Govindapillai wrote:
> As the FBC status now include plane specific FBC status as well, we
> need a bigger buffer to capture the complete FBC status. Use the
> already defined buffer length to assess the FBC status
>
> Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
> ---
> tests/intel/kms_fbcon_fbt.c | 9 +++++----
> 1 file changed, 5 insertions(+), 4 deletions(-)
>
> diff --git a/tests/intel/kms_fbcon_fbt.c b/tests/intel/kms_fbcon_fbt.c
> index e44be15f6..b36582011 100644
> --- a/tests/intel/kms_fbcon_fbt.c
> +++ b/tests/intel/kms_fbcon_fbt.c
> @@ -33,6 +33,7 @@
> * Mega feature: General Display Features
> */
>
> +#include "i915/intel_fbc.h"
> #include "igt.h"
> #include "igt_device.h"
> #include "igt_psr.h"
> @@ -81,7 +82,7 @@ static void wait_user(const char *msg)
>
> static bool fbc_supported_on_chipset(int device, int debugfs_fd)
> {
> - char buf[128];
> + char buf[FBC_STATUS_BUF_LEN];
> int ret;
>
> ret = igt_debugfs_simple_read(debugfs_fd, "i915_fbc_status",
> @@ -100,7 +101,7 @@ static bool connector_can_fbc(drmModeConnectorPtr connector)
>
> static void fbc_print_status(int debugfs_fd)
> {
> - static char buf[128];
> + static char buf[FBC_STATUS_BUF_LEN];
>
> igt_debugfs_simple_read(debugfs_fd, "i915_fbc_status", buf,
> sizeof(buf));
> @@ -109,7 +110,7 @@ static void fbc_print_status(int debugfs_fd)
>
> static bool fbc_check_status(int debugfs_fd, bool enabled)
> {
> - char buf[128];
> + char buf[FBC_STATUS_BUF_LEN];
>
> igt_debugfs_simple_read(debugfs_fd, "i915_fbc_status", buf,
> sizeof(buf));
> @@ -310,7 +311,7 @@ static void fbc_skips_on_fbcon(int debugfs_fd)
> "plane height + offset is non-modulo of 4"
> };
> bool skip = false;
> - char buf[128];
> + char buf[FBC_STATUS_BUF_LEN];
> int i;
>
> igt_debugfs_simple_read(debugfs_fd, "i915_fbc_status", buf, sizeof(buf));
^ permalink raw reply [flat|nested] 28+ messages in thread
* [PATCH i-g-t v3 07/11] tests/intel/kms_fbcon_fbt: update the outdated fbc skip reasons
2026-04-16 9:25 [PATCH i-g-t v3 00/11] updates to fbc tests Vinod Govindapillai
` (5 preceding siblings ...)
2026-04-16 9:25 ` [PATCH i-g-t v3 06/11] tests/intel/kms_fbcon_fbt: " Vinod Govindapillai
@ 2026-04-16 9:25 ` Vinod Govindapillai
2026-04-30 3:56 ` Reddy Guddati, Santhosh
2026-04-16 9:25 ` [PATCH i-g-t v3 08/11] tests/intel/kms_fbcon_fbt: refactor the code to get the right fbc status Vinod Govindapillai
` (7 subsequent siblings)
14 siblings, 1 reply; 28+ messages in thread
From: Vinod Govindapillai @ 2026-04-16 9:25 UTC (permalink / raw)
To: igt-dev
Cc: vinod.govindapillai, santhosh.reddy.guddati, swati2.sharma,
jani.nikula
No fbc reasons have been updated in the driver. Use the same
"no fbc reason" being set in the debugfs by the driver.
Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
---
tests/intel/kms_fbcon_fbt.c | 22 ++++++++++------------
1 file changed, 10 insertions(+), 12 deletions(-)
diff --git a/tests/intel/kms_fbcon_fbt.c b/tests/intel/kms_fbcon_fbt.c
index b36582011..78c6cc4b2 100644
--- a/tests/intel/kms_fbcon_fbt.c
+++ b/tests/intel/kms_fbcon_fbt.c
@@ -297,18 +297,16 @@ static inline void psr_debugfs_enable(int device, int debugfs_fd)
static void fbc_skips_on_fbcon(int debugfs_fd)
{
const char *reasons[] = {
- "incompatible mode",
- "mode too large for compression",
- "framebuffer not tiled or fenced",
- "pixel format is invalid",
- "rotation unsupported",
- "tiling unsupported",
- "framebuffer stride not supported",
- "per-pixel alpha blending is incompatible with FBC",
- "pixel rate is too big",
- "CFB requirements changed",
- "plane Y offset is misaligned",
- "plane height + offset is non-modulo of 4"
+ "pixel format not supported",
+ "tiling not supported",
+ "rotation not supported",
+ "stride not supported",
+ "per-pixel alpha not supported",
+ "plane size too big",
+ "surface size too big",
+ "plane start Y offset misaligned",
+ "plane end Y offset misaligned",
+ "pixel rate too high"
};
bool skip = false;
char buf[FBC_STATUS_BUF_LEN];
--
2.43.0
^ permalink raw reply related [flat|nested] 28+ messages in thread* Re: [PATCH i-g-t v3 07/11] tests/intel/kms_fbcon_fbt: update the outdated fbc skip reasons
2026-04-16 9:25 ` [PATCH i-g-t v3 07/11] tests/intel/kms_fbcon_fbt: update the outdated fbc skip reasons Vinod Govindapillai
@ 2026-04-30 3:56 ` Reddy Guddati, Santhosh
2026-04-30 7:11 ` Govindapillai, Vinod
0 siblings, 1 reply; 28+ messages in thread
From: Reddy Guddati, Santhosh @ 2026-04-30 3:56 UTC (permalink / raw)
To: Vinod Govindapillai, igt-dev; +Cc: swati2.sharma, jani.nikula
Hi Vinod,
On 16-04-2026 14:55, Vinod Govindapillai wrote:
> No fbc reasons have been updated in the driver. Use the same
> "no fbc reason" being set in the debugfs by the driver.
>
> Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
> ---
> tests/intel/kms_fbcon_fbt.c | 22 ++++++++++------------
> 1 file changed, 10 insertions(+), 12 deletions(-)
>
> diff --git a/tests/intel/kms_fbcon_fbt.c b/tests/intel/kms_fbcon_fbt.c
> index b36582011..78c6cc4b2 100644
> --- a/tests/intel/kms_fbcon_fbt.c
> +++ b/tests/intel/kms_fbcon_fbt.c
> @@ -297,18 +297,16 @@ static inline void psr_debugfs_enable(int device, int debugfs_fd)
> static void fbc_skips_on_fbcon(int debugfs_fd)
> {
> const char *reasons[] = {
> - "incompatible mode",
> - "mode too large for compression",
> - "framebuffer not tiled or fenced",
> - "pixel format is invalid",
> - "rotation unsupported",
> - "tiling unsupported",
> - "framebuffer stride not supported",
> - "per-pixel alpha blending is incompatible with FBC",
> - "pixel rate is too big",
> - "CFB requirements changed",
> - "plane Y offset is misaligned",
> - "plane height + offset is non-modulo of 4"
> + "pixel format not supported",
> + "tiling not supported",
> + "rotation not supported",
> + "stride not supported",
> + "per-pixel alpha not supported",
> + "plane size too big",
> + "surface size too big",
> + "plane start Y offset misaligned",
> + "plane end Y offset misaligned",
> + "pixel rate too high"
There are other no fbc reasons being set by the driver for ex:
VGPU active, plane not visible etc. Shouldn't we consider them as well
here along with this?
Thanks,
Santhosh
> };
> bool skip = false;
> char buf[FBC_STATUS_BUF_LEN];
^ permalink raw reply [flat|nested] 28+ messages in thread* Re: [PATCH i-g-t v3 07/11] tests/intel/kms_fbcon_fbt: update the outdated fbc skip reasons
2026-04-30 3:56 ` Reddy Guddati, Santhosh
@ 2026-04-30 7:11 ` Govindapillai, Vinod
0 siblings, 0 replies; 28+ messages in thread
From: Govindapillai, Vinod @ 2026-04-30 7:11 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org, Reddy Guddati, Santhosh
Cc: Nikula, Jani, Sharma, Swati2
On Thu, 2026-04-30 at 09:26 +0530, Reddy Guddati, Santhosh wrote:
> Hi Vinod,
>
> On 16-04-2026 14:55, Vinod Govindapillai wrote:
> > No fbc reasons have been updated in the driver. Use the same
> > "no fbc reason" being set in the debugfs by the driver.
> >
> > Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
> > ---
> > tests/intel/kms_fbcon_fbt.c | 22 ++++++++++------------
> > 1 file changed, 10 insertions(+), 12 deletions(-)
> >
> > diff --git a/tests/intel/kms_fbcon_fbt.c
> > b/tests/intel/kms_fbcon_fbt.c
> > index b36582011..78c6cc4b2 100644
> > --- a/tests/intel/kms_fbcon_fbt.c
> > +++ b/tests/intel/kms_fbcon_fbt.c
> > @@ -297,18 +297,16 @@ static inline void psr_debugfs_enable(int
> > device, int debugfs_fd)
> > static void fbc_skips_on_fbcon(int debugfs_fd)
> > {
> > const char *reasons[] = {
> > - "incompatible mode",
> > - "mode too large for compression",
> > - "framebuffer not tiled or fenced",
> > - "pixel format is invalid",
> > - "rotation unsupported",
> > - "tiling unsupported",
> > - "framebuffer stride not supported",
> > - "per-pixel alpha blending is incompatible with
> > FBC",
> > - "pixel rate is too big",
> > - "CFB requirements changed",
> > - "plane Y offset is misaligned",
> > - "plane height + offset is non-modulo of 4"
> > + "pixel format not supported",
> > + "tiling not supported",
> > + "rotation not supported",
> > + "stride not supported",
> > + "per-pixel alpha not supported",
> > + "plane size too big",
> > + "surface size too big",
> > + "plane start Y offset misaligned",
> > + "plane end Y offset misaligned",
> > + "pixel rate too high"
>
> There are other no fbc reasons being set by the driver for ex:
> VGPU active, plane not visible etc. Shouldn't we consider them as
> well
> here along with this?
>
> Thanks,
> Santhosh
Basically my thinking was that these reasons defined in the current IGT
have been uses as skip reasons. Current tests skips based on these and
otherwise treat it as a failure. So in my opinion in case if we have to
treat any other skip reason as a failure, it is better to analyze first
if the reason for the failure is genuine and add it to the list. For
example fbc not enabled because plane not visible is might be an issue
with driver or a specific test sequence etc which we should catch as a
failure and fix.
BR
Vinod
^ permalink raw reply [flat|nested] 28+ messages in thread
* [PATCH i-g-t v3 08/11] tests/intel/kms_fbcon_fbt: refactor the code to get the right fbc status
2026-04-16 9:25 [PATCH i-g-t v3 00/11] updates to fbc tests Vinod Govindapillai
` (6 preceding siblings ...)
2026-04-16 9:25 ` [PATCH i-g-t v3 07/11] tests/intel/kms_fbcon_fbt: update the outdated fbc skip reasons Vinod Govindapillai
@ 2026-04-16 9:25 ` Vinod Govindapillai
2026-04-16 9:25 ` [PATCH i-g-t v3 09/11] tests/intel/kms_fbcon_fbt: find and store the crtc index Vinod Govindapillai
` (6 subsequent siblings)
14 siblings, 0 replies; 28+ messages in thread
From: Vinod Govindapillai @ 2026-04-16 9:25 UTC (permalink / raw)
To: igt-dev
Cc: vinod.govindapillai, santhosh.reddy.guddati, swati2.sharma,
jani.nikula
As FBC can be enabled in multiple pipes, to check the fbc status of a pipe,
we need to read the FBC status from the corresponding crtc debugfs entry.
As a step towards that, update all the feature virtual function definitions
so that we can access all the relevant parameters needed for reading the
crtc debugfs entry.
Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
---
tests/intel/kms_fbcon_fbt.c | 102 ++++++++++++++++++------------------
1 file changed, 52 insertions(+), 50 deletions(-)
diff --git a/tests/intel/kms_fbcon_fbt.c b/tests/intel/kms_fbcon_fbt.c
index 78c6cc4b2..5863c9e68 100644
--- a/tests/intel/kms_fbcon_fbt.c
+++ b/tests/intel/kms_fbcon_fbt.c
@@ -80,12 +80,12 @@ static void wait_user(const char *msg)
igt_debug_wait_for_keypress("fbt");
}
-static bool fbc_supported_on_chipset(int device, int debugfs_fd)
+static bool fbc_supported_on_chipset(struct drm_info *drm)
{
char buf[FBC_STATUS_BUF_LEN];
int ret;
- ret = igt_debugfs_simple_read(debugfs_fd, "i915_fbc_status",
+ ret = igt_debugfs_simple_read(drm->debugfs_fd, "i915_fbc_status",
buf, sizeof(buf));
if (ret < 0)
return false;
@@ -99,20 +99,20 @@ static bool connector_can_fbc(drmModeConnectorPtr connector)
return true;
}
-static void fbc_print_status(int debugfs_fd)
+static void fbc_print_status(struct drm_info *drm)
{
static char buf[FBC_STATUS_BUF_LEN];
- igt_debugfs_simple_read(debugfs_fd, "i915_fbc_status", buf,
+ igt_debugfs_simple_read(drm->debugfs_fd, "i915_fbc_status", buf,
sizeof(buf));
igt_debug("FBC status: %s\n", buf);
}
-static bool fbc_check_status(int debugfs_fd, bool enabled)
+static bool fbc_check_status(struct drm_info *drm, bool enabled)
{
char buf[FBC_STATUS_BUF_LEN];
- igt_debugfs_simple_read(debugfs_fd, "i915_fbc_status", buf,
+ igt_debugfs_simple_read(drm->debugfs_fd, "i915_fbc_status", buf,
sizeof(buf));
if (enabled)
return strstr(buf, "FBC enabled\n");
@@ -120,25 +120,27 @@ static bool fbc_check_status(int debugfs_fd, bool enabled)
return strstr(buf, "FBC disabled");
}
-static bool fbc_wait_until_enabled(int debugfs_fd)
+static bool fbc_wait_until_enabled(struct drm_info *drm)
{
- bool r = igt_wait(fbc_check_status(debugfs_fd, true), 5000, 1);
- fbc_print_status(debugfs_fd);
+ bool r = igt_wait(fbc_check_status(drm, true), 5000, 1);
+
+ fbc_print_status(drm);
return r;
}
-static bool fbc_is_disabled(int debugfs_fd)
+static bool fbc_is_disabled(struct drm_info *drm)
{
- bool r = fbc_check_status(debugfs_fd, false);
+ bool r = fbc_check_status(drm, false);
- fbc_print_status(debugfs_fd);
+ fbc_print_status(drm);
return r;
}
-static bool fbc_wait_until_disabled(int debugfs_fd)
+static bool fbc_wait_until_disabled(struct drm_info *drm)
{
- bool r = igt_wait(fbc_check_status(debugfs_fd, false), 5000, 1);
- fbc_print_status(debugfs_fd);
+ bool r = igt_wait(fbc_check_status(drm, false), 5000, 1);
+
+ fbc_print_status(drm);
return r;
}
@@ -181,7 +183,7 @@ static bool fbc_wait_until_update(struct drm_info *drm)
* relies on a tiled and fenceable framebuffer to track modifications.
*/
if (intel_gen(intel_get_drm_devid(drm->fd)) >= 9) {
- if (!fbc_wait_until_enabled(drm->debugfs_fd))
+ if (!fbc_wait_until_enabled(drm))
return false;
/*
* Skip cursor blinking check when running in simulation mode.
@@ -193,7 +195,7 @@ static bool fbc_wait_until_update(struct drm_info *drm)
return fbc_check_cursor_blinking(drm);
} else {
- return fbc_wait_until_disabled(drm->debugfs_fd);
+ return fbc_wait_until_disabled(drm);
}
}
@@ -242,34 +244,34 @@ static bool connector_can_psr(drmModeConnectorPtr connector)
return (connector->connector_type == DRM_MODE_CONNECTOR_eDP);
}
-static void psr_print_status(int debugfs_fd)
+static void psr_print_status(struct drm_info *drm)
{
static char buf[PSR_STATUS_MAX_LEN];
- igt_debugfs_simple_read(debugfs_fd, "i915_edp_psr_status", buf,
+ igt_debugfs_simple_read(drm->debugfs_fd, "i915_edp_psr_status", buf,
sizeof(buf));
igt_debug("PSR status: %s\n", buf);
}
-static bool psr_wait_until_enabled(int debugfs_fd)
+static bool psr_wait_until_enabled(struct drm_info *drm)
{
- bool r = psr_wait_entry(debugfs_fd, PSR_MODE_1, NULL);
+ bool r = psr_wait_entry(drm->debugfs_fd, PSR_MODE_1, NULL);
- psr_print_status(debugfs_fd);
+ psr_print_status(drm);
return r;
}
-static bool psr_is_disabled(int debugfs_fd)
+static bool psr_is_disabled(struct drm_info *drm)
{
- bool r = psr_disabled_check(debugfs_fd);
+ bool r = psr_disabled_check(drm->debugfs_fd);
- psr_print_status(debugfs_fd);
+ psr_print_status(drm);
return r;
}
-static bool psr_supported_on_chipset(int device, int debugfs_fd)
+static bool psr_supported_on_chipset(struct drm_info *drm)
{
- return psr_sink_support(device, debugfs_fd, PSR_MODE_1, NULL);
+ return psr_sink_support(drm->fd, drm->debugfs_fd, PSR_MODE_1, NULL);
}
static bool psr_wait_until_update(struct drm_info *drm)
@@ -277,24 +279,24 @@ static bool psr_wait_until_update(struct drm_info *drm)
return psr_long_wait_update(drm->debugfs_fd, PSR_MODE_1, NULL);
}
-static void disable_features(int device, int debugfs_fd)
+static void disable_features(struct drm_info *drm)
{
- igt_set_module_param_int(device, "enable_fbc", 0);
- if (psr_sink_support(device, debugfs_fd, PSR_MODE_1, NULL))
- psr_disable(device, debugfs_fd, NULL);
+ igt_set_module_param_int(drm->fd, "enable_fbc", 0);
+ if (psr_sink_support(drm->fd, drm->debugfs_fd, PSR_MODE_1, NULL))
+ psr_disable(drm->fd, drm->debugfs_fd, NULL);
}
-static inline void fbc_modparam_enable(int device, int debugfs_fd)
+static inline void fbc_modparam_enable(struct drm_info *drm)
{
- igt_set_module_param_int(device, "enable_fbc", 1);
+ igt_set_module_param_int(drm->fd, "enable_fbc", 1);
}
-static inline void psr_debugfs_enable(int device, int debugfs_fd)
+static inline void psr_debugfs_enable(struct drm_info *drm)
{
- psr_enable(device, debugfs_fd, PSR_MODE_1, NULL);
+ psr_enable(drm->fd, drm->debugfs_fd, PSR_MODE_1, NULL);
}
-static void fbc_skips_on_fbcon(int debugfs_fd)
+static void fbc_skips_on_fbcon(struct drm_info *drm)
{
const char *reasons[] = {
"pixel format not supported",
@@ -312,7 +314,7 @@ static void fbc_skips_on_fbcon(int debugfs_fd)
char buf[FBC_STATUS_BUF_LEN];
int i;
- igt_debugfs_simple_read(debugfs_fd, "i915_fbc_status", buf, sizeof(buf));
+ igt_debugfs_simple_read(drm->debugfs_fd, "i915_fbc_status", buf, sizeof(buf));
if (strstr(buf, "FBC enabled\n"))
return;
@@ -322,7 +324,7 @@ static void fbc_skips_on_fbcon(int debugfs_fd)
igt_skip_on_f(skip, "fbcon modeset is not compatible with FBC\n");
}
-static void psr_skips_on_fbcon(int debugfs_fd)
+static void psr_skips_on_fbcon(struct drm_info *drm)
{
/*
* Unless fbcon enables interlaced mode all other PSR restrictions
@@ -334,14 +336,14 @@ static void psr_skips_on_fbcon(int debugfs_fd)
}
struct feature {
- bool (*supported_on_chipset)(int device, int debugfs_fd);
- bool (*wait_until_enabled)(int debugfs_fd);
- bool (*is_disabled)(int debugfs_fd);
+ bool (*supported_on_chipset)(struct drm_info *drm);
+ bool (*wait_until_enabled)(struct drm_info *drm);
+ bool (*is_disabled)(struct drm_info *drm);
bool (*wait_until_update)(struct drm_info *drm);
bool (*connector_possible_fn)(drmModeConnectorPtr connector);
- void (*enable)(int device, int debugfs_fd);
+ void (*enable)(struct drm_info *drm);
/* skip test if feature can't be enabled due fbcon modeset */
- void (*skips_on_fbcon)(int debugfs_fd);
+ void (*skips_on_fbcon)(struct drm_info *drm);
} fbc = {
.supported_on_chipset = fbc_supported_on_chipset,
.wait_until_enabled = fbc_wait_until_enabled,
@@ -372,24 +374,24 @@ static void subtest(struct drm_info *drm, struct feature *feature, bool suspend)
{
kmstest_set_vt_graphics_mode();
- igt_require(feature->supported_on_chipset(drm->fd, drm->debugfs_fd));
+ igt_require(feature->supported_on_chipset(drm));
- disable_features(drm->fd, drm->debugfs_fd);
- feature->enable(drm->fd, drm->debugfs_fd);
+ disable_features(drm);
+ feature->enable(drm);
kmstest_unset_all_crtcs(drm->fd, drm->res);
wait_user("Modes unset.");
- igt_assert(feature->is_disabled(drm->debugfs_fd));
+ igt_assert(feature->is_disabled(drm));
set_mode_for_one_screen(drm, feature->connector_possible_fn);
wait_user("Screen set.");
- igt_assert(feature->wait_until_enabled(drm->debugfs_fd));
+ igt_assert(feature->wait_until_enabled(drm));
if (suspend) {
igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
SUSPEND_TEST_NONE);
sleep(5);
- igt_assert(feature->wait_until_enabled(drm->debugfs_fd));
+ igt_assert(feature->wait_until_enabled(drm));
}
restore_fbcon(drm);
@@ -398,7 +400,7 @@ static void subtest(struct drm_info *drm, struct feature *feature, bool suspend)
sleep(3);
wait_user("Back to fbcon.");
- feature->skips_on_fbcon(drm->debugfs_fd);
+ feature->skips_on_fbcon(drm);
igt_assert(feature->wait_until_update(drm));
if (suspend) {
--
2.43.0
^ permalink raw reply related [flat|nested] 28+ messages in thread* [PATCH i-g-t v3 09/11] tests/intel/kms_fbcon_fbt: find and store the crtc index
2026-04-16 9:25 [PATCH i-g-t v3 00/11] updates to fbc tests Vinod Govindapillai
` (7 preceding siblings ...)
2026-04-16 9:25 ` [PATCH i-g-t v3 08/11] tests/intel/kms_fbcon_fbt: refactor the code to get the right fbc status Vinod Govindapillai
@ 2026-04-16 9:25 ` Vinod Govindapillai
2026-04-16 9:25 ` [PATCH i-g-t v3 10/11] tests/intel/kms_fbcon_fbt: find the correct fbc status of a pipe Vinod Govindapillai
` (5 subsequent siblings)
14 siblings, 0 replies; 28+ messages in thread
From: Vinod Govindapillai @ 2026-04-16 9:25 UTC (permalink / raw)
To: igt-dev
Cc: vinod.govindapillai, santhosh.reddy.guddati, swati2.sharma,
jani.nikula
As we need to find the fbc status from crtc debugfs entry, find
and keep the crtc index from the crtc_id and use it wherever
required.
Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
---
tests/intel/kms_fbcon_fbt.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/intel/kms_fbcon_fbt.c b/tests/intel/kms_fbcon_fbt.c
index 5863c9e68..96136f8ff 100644
--- a/tests/intel/kms_fbcon_fbt.c
+++ b/tests/intel/kms_fbcon_fbt.c
@@ -68,7 +68,7 @@ IGT_TEST_DESCRIPTION("Test the relationship between fbcon and the frontbuffer "
#define MAX_CONNECTORS 32
struct drm_info {
- int fd, debugfs_fd, crtc_id, devid;
+ int fd, debugfs_fd, crtc_id, crtc_index, devid;
struct igt_fb fb;
drmModeResPtr res;
drmModeConnectorPtr connectors[MAX_CONNECTORS];
@@ -149,10 +149,9 @@ static bool fbc_check_cursor_blinking(struct drm_info *drm)
igt_pipe_crc_t *pipe_crc;
igt_crc_t crc[2];
bool ret;
- int i, crtc_index;
+ int i;
- crtc_index = kmstest_get_crtc_index_from_id(drm->fd, drm->crtc_id);
- pipe_crc = igt_pipe_crc_new(drm->fd, crtc_index, IGT_PIPE_CRC_SOURCE_AUTO);
+ pipe_crc = igt_pipe_crc_new(drm->fd, drm->crtc_index, IGT_PIPE_CRC_SOURCE_AUTO);
igt_pipe_crc_start(pipe_crc);
igt_pipe_crc_drain(pipe_crc);
@@ -222,6 +221,7 @@ static void set_mode_for_one_screen(struct drm_info *drm,
"No connector available\n");
drm->crtc_id = kmstest_find_crtc_for_connector(drm->fd, drm->res, c, 0);
+ drm->crtc_index = kmstest_get_crtc_index_from_id(drm->fd, drm->crtc_id);
buffer_id = igt_create_fb(drm->fd, mode->hdisplay, mode->vdisplay,
DRM_FORMAT_XRGB8888,
--
2.43.0
^ permalink raw reply related [flat|nested] 28+ messages in thread* [PATCH i-g-t v3 10/11] tests/intel/kms_fbcon_fbt: find the correct fbc status of a pipe
2026-04-16 9:25 [PATCH i-g-t v3 00/11] updates to fbc tests Vinod Govindapillai
` (8 preceding siblings ...)
2026-04-16 9:25 ` [PATCH i-g-t v3 09/11] tests/intel/kms_fbcon_fbt: find and store the crtc index Vinod Govindapillai
@ 2026-04-16 9:25 ` Vinod Govindapillai
2026-04-16 9:25 ` [PATCH i-g-t v3 11/11] tests/intel/kms_fbcon_fbt: use common routine to skip tests on fbc status Vinod Govindapillai
` (4 subsequent siblings)
14 siblings, 0 replies; 28+ messages in thread
From: Vinod Govindapillai @ 2026-04-16 9:25 UTC (permalink / raw)
To: igt-dev
Cc: vinod.govindapillai, santhosh.reddy.guddati, swati2.sharma,
jani.nikula
Use the right function for access the fbc status from crtc debugfs
entry.
Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
---
tests/intel/kms_fbcon_fbt.c | 17 ++++++++---------
1 file changed, 8 insertions(+), 9 deletions(-)
diff --git a/tests/intel/kms_fbcon_fbt.c b/tests/intel/kms_fbcon_fbt.c
index 96136f8ff..f738e243f 100644
--- a/tests/intel/kms_fbcon_fbt.c
+++ b/tests/intel/kms_fbcon_fbt.c
@@ -83,12 +83,9 @@ static void wait_user(const char *msg)
static bool fbc_supported_on_chipset(struct drm_info *drm)
{
char buf[FBC_STATUS_BUF_LEN];
- int ret;
- ret = igt_debugfs_simple_read(drm->debugfs_fd, "i915_fbc_status",
- buf, sizeof(buf));
- if (ret < 0)
- return false;
+ intel_fbc_get_fbc_status_crtc_index(drm->fd, drm->crtc_index, buf,
+ sizeof(buf));
return !strstr(buf, "FBC unsupported on this chipset\n") &&
!strstr(buf, "stolen memory not initialised\n");
@@ -103,8 +100,9 @@ static void fbc_print_status(struct drm_info *drm)
{
static char buf[FBC_STATUS_BUF_LEN];
- igt_debugfs_simple_read(drm->debugfs_fd, "i915_fbc_status", buf,
- sizeof(buf));
+ intel_fbc_get_fbc_status_crtc_index(drm->fd, drm->crtc_index, buf,
+ sizeof(buf));
+
igt_debug("FBC status: %s\n", buf);
}
@@ -112,8 +110,9 @@ static bool fbc_check_status(struct drm_info *drm, bool enabled)
{
char buf[FBC_STATUS_BUF_LEN];
- igt_debugfs_simple_read(drm->debugfs_fd, "i915_fbc_status", buf,
- sizeof(buf));
+ intel_fbc_get_fbc_status_crtc_index(drm->fd, drm->crtc_index, buf,
+ sizeof(buf));
+
if (enabled)
return strstr(buf, "FBC enabled\n");
else
--
2.43.0
^ permalink raw reply related [flat|nested] 28+ messages in thread* [PATCH i-g-t v3 11/11] tests/intel/kms_fbcon_fbt: use common routine to skip tests on fbc status
2026-04-16 9:25 [PATCH i-g-t v3 00/11] updates to fbc tests Vinod Govindapillai
` (9 preceding siblings ...)
2026-04-16 9:25 ` [PATCH i-g-t v3 10/11] tests/intel/kms_fbcon_fbt: find the correct fbc status of a pipe Vinod Govindapillai
@ 2026-04-16 9:25 ` Vinod Govindapillai
2026-04-30 4:06 ` Reddy Guddati, Santhosh
2026-04-16 16:24 ` ✓ i915.CI.BAT: success for updates to fbc tests (rev3) Patchwork
` (3 subsequent siblings)
14 siblings, 1 reply; 28+ messages in thread
From: Vinod Govindapillai @ 2026-04-16 9:25 UTC (permalink / raw)
To: igt-dev
Cc: vinod.govindapillai, santhosh.reddy.guddati, swati2.sharma,
jani.nikula
Use the common intel_fbc_found_skip_reason() defined as part of the fbc
library functions to check and assess the fbc skip reasons. The "no fbc
reasons" are appended based on the reasons defined in the kms_fbcon_fbt
tests.
Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
---
lib/i915/intel_fbc.c | 7 +++++++
tests/intel/kms_fbcon_fbt.c | 26 ++------------------------
2 files changed, 9 insertions(+), 24 deletions(-)
diff --git a/lib/i915/intel_fbc.c b/lib/i915/intel_fbc.c
index fde9ef03b..30584925f 100644
--- a/lib/i915/intel_fbc.c
+++ b/lib/i915/intel_fbc.c
@@ -77,10 +77,17 @@ bool intel_fbc_found_skip_reason(int device, int crtc_index)
{
const char *const no_fbc_reasons[] = {
"FBC disabled: not enough stolen memory",
+ "FBC disabled: pixel format not supported",
+ "FBC disabled: tiling not supported",
+ "FBC disabled: rotation not supported",
"FBC disabled: stride not supported",
+ "FBC disabled: per-pixel alpha not supported",
"FBC disabled: plane size too big",
"FBC disabled: surface size too big",
"FBC disabled: PSR1 enabled (Wa_14016291713)"
+ "FBC disabled: plane start Y offset misaligned",
+ "FBC disabled: plane end Y offset misaligned",
+ "FBC disabled: pixel rate too high"
};
bool found_reason = false;
char fbc_status[FBC_STATUS_BUF_LEN];
diff --git a/tests/intel/kms_fbcon_fbt.c b/tests/intel/kms_fbcon_fbt.c
index f738e243f..470027a84 100644
--- a/tests/intel/kms_fbcon_fbt.c
+++ b/tests/intel/kms_fbcon_fbt.c
@@ -297,30 +297,8 @@ static inline void psr_debugfs_enable(struct drm_info *drm)
static void fbc_skips_on_fbcon(struct drm_info *drm)
{
- const char *reasons[] = {
- "pixel format not supported",
- "tiling not supported",
- "rotation not supported",
- "stride not supported",
- "per-pixel alpha not supported",
- "plane size too big",
- "surface size too big",
- "plane start Y offset misaligned",
- "plane end Y offset misaligned",
- "pixel rate too high"
- };
- bool skip = false;
- char buf[FBC_STATUS_BUF_LEN];
- int i;
-
- igt_debugfs_simple_read(drm->debugfs_fd, "i915_fbc_status", buf, sizeof(buf));
- if (strstr(buf, "FBC enabled\n"))
- return;
-
- for (i = 0; skip == false && i < ARRAY_SIZE(reasons); i++)
- skip = strstr(buf, reasons[i]);
-
- igt_skip_on_f(skip, "fbcon modeset is not compatible with FBC\n");
+ igt_skip_on_f(intel_fbc_found_skip_reason(drm->fd, drm->crtc_index),
+ "fbcon modeset is not compatible with FBC\n");
}
static void psr_skips_on_fbcon(struct drm_info *drm)
--
2.43.0
^ permalink raw reply related [flat|nested] 28+ messages in thread* Re: [PATCH i-g-t v3 11/11] tests/intel/kms_fbcon_fbt: use common routine to skip tests on fbc status
2026-04-16 9:25 ` [PATCH i-g-t v3 11/11] tests/intel/kms_fbcon_fbt: use common routine to skip tests on fbc status Vinod Govindapillai
@ 2026-04-30 4:06 ` Reddy Guddati, Santhosh
0 siblings, 0 replies; 28+ messages in thread
From: Reddy Guddati, Santhosh @ 2026-04-30 4:06 UTC (permalink / raw)
To: Vinod Govindapillai, igt-dev; +Cc: swati2.sharma, jani.nikula
On 16-04-2026 14:55, Vinod Govindapillai wrote:
> Use the common intel_fbc_found_skip_reason() defined as part of the fbc
> library functions to check and assess the fbc skip reasons. The "no fbc
> reasons" are appended based on the reasons defined in the kms_fbcon_fbt
> tests.
>
> Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
> ---
> lib/i915/intel_fbc.c | 7 +++++++
> tests/intel/kms_fbcon_fbt.c | 26 ++------------------------
> 2 files changed, 9 insertions(+), 24 deletions(-)
>
> diff --git a/lib/i915/intel_fbc.c b/lib/i915/intel_fbc.c
> index fde9ef03b..30584925f 100644
> --- a/lib/i915/intel_fbc.c
> +++ b/lib/i915/intel_fbc.c
> @@ -77,10 +77,17 @@ bool intel_fbc_found_skip_reason(int device, int crtc_index)
> {
> const char *const no_fbc_reasons[] = {
> "FBC disabled: not enough stolen memory",
> + "FBC disabled: pixel format not supported",
> + "FBC disabled: tiling not supported",
> + "FBC disabled: rotation not supported",
> "FBC disabled: stride not supported",
> + "FBC disabled: per-pixel alpha not supported",
> "FBC disabled: plane size too big",
> "FBC disabled: surface size too big",
> "FBC disabled: PSR1 enabled (Wa_14016291713)"
missing ',' here.
> + "FBC disabled: plane start Y offset misaligned",
> + "FBC disabled: plane end Y offset misaligned",
> + "FBC disabled: pixel rate too high"
> };
> bool found_reason = false;
> char fbc_status[FBC_STATUS_BUF_LEN];
> diff --git a/tests/intel/kms_fbcon_fbt.c b/tests/intel/kms_fbcon_fbt.c
> index f738e243f..470027a84 100644
> --- a/tests/intel/kms_fbcon_fbt.c
> +++ b/tests/intel/kms_fbcon_fbt.c
> @@ -297,30 +297,8 @@ static inline void psr_debugfs_enable(struct drm_info *drm)
>
> static void fbc_skips_on_fbcon(struct drm_info *drm)
> {
> - const char *reasons[] = {
> - "pixel format not supported",
> - "tiling not supported",
> - "rotation not supported",
> - "stride not supported",
> - "per-pixel alpha not supported",
> - "plane size too big",
> - "surface size too big",
> - "plane start Y offset misaligned",
> - "plane end Y offset misaligned",
> - "pixel rate too high"
> - };
> - bool skip = false;
> - char buf[FBC_STATUS_BUF_LEN];
> - int i;
> -
> - igt_debugfs_simple_read(drm->debugfs_fd, "i915_fbc_status", buf, sizeof(buf));
> - if (strstr(buf, "FBC enabled\n"))
> - return;
> -
> - for (i = 0; skip == false && i < ARRAY_SIZE(reasons); i++)
> - skip = strstr(buf, reasons[i]);
> -
> - igt_skip_on_f(skip, "fbcon modeset is not compatible with FBC\n");
> + igt_skip_on_f(intel_fbc_found_skip_reason(drm->fd, drm->crtc_index),
> + "fbcon modeset is not compatible with FBC\n");
> }
>
> static void psr_skips_on_fbcon(struct drm_info *drm)
^ permalink raw reply [flat|nested] 28+ messages in thread
* ✓ i915.CI.BAT: success for updates to fbc tests (rev3)
2026-04-16 9:25 [PATCH i-g-t v3 00/11] updates to fbc tests Vinod Govindapillai
` (10 preceding siblings ...)
2026-04-16 9:25 ` [PATCH i-g-t v3 11/11] tests/intel/kms_fbcon_fbt: use common routine to skip tests on fbc status Vinod Govindapillai
@ 2026-04-16 16:24 ` Patchwork
2026-04-16 16:24 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
14 siblings, 0 replies; 28+ messages in thread
From: Patchwork @ 2026-04-16 16:24 UTC (permalink / raw)
To: Vinod Govindapillai; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3324 bytes --]
== Series Details ==
Series: updates to fbc tests (rev3)
URL : https://patchwork.freedesktop.org/series/163896/
State : success
== Summary ==
CI Bug Log - changes from IGT_8862 -> IGTPW_14998
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/index.html
Participating hosts (41 -> 39)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_14998 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- bat-arlh-3: NOTRUN -> [SKIP][1] ([i915#15931])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/bat-arlh-3/igt@dmabuf@all-tests.html
* igt@i915_selftest@live:
- bat-dg2-8: [PASS][2] -> [DMESG-FAIL][3] ([i915#12061]) +1 other test dmesg-fail
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/bat-dg2-8/igt@i915_selftest@live.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/bat-dg2-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@client:
- fi-kbl-7567u: [PASS][4] -> [DMESG-WARN][5] ([i915#13735]) +13 other tests dmesg-warn
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/fi-kbl-7567u/igt@i915_selftest@live@client.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/fi-kbl-7567u/igt@i915_selftest@live@client.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-arlh-3: [INCOMPLETE][6] ([i915#15622]) -> [PASS][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/bat-arlh-3/igt@i915_selftest@live.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/bat-arlh-3/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_pm:
- bat-arlh-3: [INCOMPLETE][8] -> [PASS][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/bat-arlh-3/igt@i915_selftest@live@gt_pm.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/bat-arlh-3/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-14: [DMESG-FAIL][10] ([i915#12061]) -> [PASS][11] +1 other test pass
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
[i915#15622]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15622
[i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8862 -> IGTPW_14998
CI-20190529: 20190529
CI_DRM_18342: 207a25698a481a39132b52060d7bb294384876ac @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14998: 23690c63cc0728d897084f491141a9863ad07ad7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8862: 9b95600c4ae2cb683a8a19ad2a7c006263811a8f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/index.html
[-- Attachment #2: Type: text/html, Size: 4142 bytes --]
^ permalink raw reply [flat|nested] 28+ messages in thread* ✓ Xe.CI.BAT: success for updates to fbc tests (rev3)
2026-04-16 9:25 [PATCH i-g-t v3 00/11] updates to fbc tests Vinod Govindapillai
` (11 preceding siblings ...)
2026-04-16 16:24 ` ✓ i915.CI.BAT: success for updates to fbc tests (rev3) Patchwork
@ 2026-04-16 16:24 ` Patchwork
2026-04-16 18:08 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-17 4:43 ` ✗ i915.CI.Full: " Patchwork
14 siblings, 0 replies; 28+ messages in thread
From: Patchwork @ 2026-04-16 16:24 UTC (permalink / raw)
To: Vinod Govindapillai; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1143 bytes --]
== Series Details ==
Series: updates to fbc tests (rev3)
URL : https://patchwork.freedesktop.org/series/163896/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8862_BAT -> XEIGTPW_14998_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8862 -> IGTPW_14998
* Linux: xe-4912-7f72587254d9c0142ac57eb050acd8f817585623 -> xe-4913-207a25698a481a39132b52060d7bb294384876ac
IGTPW_14998: 23690c63cc0728d897084f491141a9863ad07ad7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8862: 9b95600c4ae2cb683a8a19ad2a7c006263811a8f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4912-7f72587254d9c0142ac57eb050acd8f817585623: 7f72587254d9c0142ac57eb050acd8f817585623
xe-4913-207a25698a481a39132b52060d7bb294384876ac: 207a25698a481a39132b52060d7bb294384876ac
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/index.html
[-- Attachment #2: Type: text/html, Size: 1702 bytes --]
^ permalink raw reply [flat|nested] 28+ messages in thread* ✗ Xe.CI.FULL: failure for updates to fbc tests (rev3)
2026-04-16 9:25 [PATCH i-g-t v3 00/11] updates to fbc tests Vinod Govindapillai
` (12 preceding siblings ...)
2026-04-16 16:24 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-16 18:08 ` Patchwork
2026-04-17 4:43 ` ✗ i915.CI.Full: " Patchwork
14 siblings, 0 replies; 28+ messages in thread
From: Patchwork @ 2026-04-16 18:08 UTC (permalink / raw)
To: Vinod Govindapillai; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 40774 bytes --]
== Series Details ==
Series: updates to fbc tests (rev3)
URL : https://patchwork.freedesktop.org/series/163896/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8862_FULL -> XEIGTPW_14998_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14998_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14998_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_14998_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic:
- shard-bmg: [PASS][1] -> [FAIL][2] +3 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-9/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-3/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [TIMEOUT][3] +1 other test timeout
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-3/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_cursor_legacy@forked-move:
- shard-bmg: [PASS][4] -> [ABORT][5] +1 other test abort
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-8/igt@kms_cursor_legacy@forked-move.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-2/igt@kms_cursor_legacy@forked-move.html
* igt@kms_cursor_legacy@forked-move@all-pipes:
- shard-bmg: [PASS][6] -> [INCOMPLETE][7]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-8/igt@kms_cursor_legacy@forked-move@all-pipes.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-2/igt@kms_cursor_legacy@forked-move@all-pipes.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][8] +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-9/igt@kms_fbcon_fbt@psr-suspend.html
Known issues
------------
Here are the changes found in XEIGTPW_14998_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2370])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#7059] / [Intel XE#7085])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-7/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2327]) +6 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +9 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#607] / [Intel XE#7361])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#7621])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-5/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#7679])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#367] / [Intel XE#7354]) +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-10/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2652]) +17 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][18] -> [INCOMPLETE][19] ([Intel XE#7084]) +1 other test incomplete
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#3432]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2887]) +16 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2724] / [Intel XE#7449])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-9/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2325] / [Intel XE#7358]) +4 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-3/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2252]) +8 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-4/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][25] ([Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-8/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][26] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +5 other tests fail
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-10/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@type1:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7642])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-4/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-bmg: NOTRUN -> [FAIL][28] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-1/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2321] / [Intel XE#7355]) +4 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2320]) +5 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-1/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2286] / [Intel XE#6035]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#1508])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#4210] / [Intel XE#7467])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#4354] / [Intel XE#7386])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-3/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2244])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [PASS][36] -> [FAIL][37] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [PASS][38] -> [FAIL][39] ([Intel XE#301]) +1 other test fail
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#7179])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#7178] / [Intel XE#7351]) +4 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#4141]) +19 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2311]) +34 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#7061] / [Intel XE#7356]) +7 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2350] / [Intel XE#7503])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-9/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2313]) +34 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#6901])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-1/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#6911] / [Intel XE#7378]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-4/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#6911] / [Intel XE#7466])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-9/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2486])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-8/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#7283]) +5 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#7130]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-10/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2393])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-9/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#7376] / [Intel XE#870])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-4/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2499])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-7/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#1489]) +8 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2387] / [Intel XE#7429])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-10/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2234] / [Intel XE#2850]) +19 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-9/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#1406] / [Intel XE#2414])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-9/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2330] / [Intel XE#5813])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2413])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#1435])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_sharpness_filter@filter-formats:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#6503]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-10/igt@kms_sharpness_filter@filter-formats.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2450] / [Intel XE#5857])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-10/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-basic:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#1499]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-6/igt@kms_vrr@flip-basic.html
* igt@xe_compute@ccs-mode-basic:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#6599]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-7/igt@xe_compute@ccs-mode-basic.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-3/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eudebug@basic-exec-queues-enable:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#7636]) +13 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-1/igt@xe_eudebug@basic-exec-queues-enable.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][72] -> [INCOMPLETE][73] ([Intel XE#6321])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-threads-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#7140]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-6/igt@xe_evict@evict-threads-small-multi-queue.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2322] / [Intel XE#7372]) +8 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-9/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#7136]) +14 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-10/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#6874]) +38 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-9/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html
* igt@xe_exec_system_allocator@many-64k-malloc-busy-nomemset:
- shard-bmg: [PASS][78] -> [ABORT][79] ([Intel XE#6652])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-4/igt@xe_exec_system_allocator@many-64k-malloc-busy-nomemset.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-2/igt@xe_exec_system_allocator@many-64k-malloc-busy-nomemset.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#7138]) +12 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind.html
* igt@xe_multigpu_svm@mgpu-atomic-op-basic:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#6964]) +6 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-4/igt@xe_multigpu_svm@mgpu-atomic-op-basic.html
* igt@xe_pat@pat-index-xehpc:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#1420] / [Intel XE#7590])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-9/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@d3cold-basic:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2284] / [Intel XE#7370])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-9/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3hot-i2c:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-7/igt@xe_pm@d3hot-i2c.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-bmg: NOTRUN -> [FAIL][85] ([Intel XE#5937])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-5/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_pxp@regular-src-to-pxp-dest-rendercopy:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-6/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html
* igt@xe_query@multigpu-query-invalid-query:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#944]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-10/igt@xe_query@multigpu-query-invalid-query.html
#### Possible fixes ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [FAIL][88] ([Intel XE#7445]) -> [PASS][89]
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-1/igt@intel_hwmon@hwmon-write.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-3/igt@intel_hwmon@hwmon-write.html
* igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
- shard-bmg: [SKIP][90] ([Intel XE#7621]) -> [PASS][91]
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-3/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-9/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][92] ([Intel XE#7571]) -> [PASS][93]
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@b-dp2:
- shard-bmg: [ABORT][94] ([Intel XE#5545] / [Intel XE#6652]) -> [PASS][95] +1 other test pass
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-dp2.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-10/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-dp2.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [SKIP][96] ([Intel XE#7308]) -> [PASS][97]
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-8/igt@kms_hdmi_inject@inject-audio.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-9/igt@kms_hdmi_inject@inject-audio.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: [FAIL][98] ([Intel XE#6569]) -> [PASS][99]
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-2/igt@xe_sriov_flr@flr-vf1-clear.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html
#### Warnings ####
* igt@xe_module_load@load:
- shard-bmg: ([PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [DMESG-WARN][117], [DMESG-WARN][118], [PASS][119], [SKIP][120], [PASS][121], [DMESG-WARN][122], [PASS][123], [DMESG-WARN][124], [DMESG-WARN][125]) ([Intel XE#2457] / [Intel XE#7405] / [Intel XE#7725]) -> ([PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [DMESG-WARN][137], [DMESG-WARN][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]) ([Intel XE#7725])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-2/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-1/igt@xe_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-8/igt@xe_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-7/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-3/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-8/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-1/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-2/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-8/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-5/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-2/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-5/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-4/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-4/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-7/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-9/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-9/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-6/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-6/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-10/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-10/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-3/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-6/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-10/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-6/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-6/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-5/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-8/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-7/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-9/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-8/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-8/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-7/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-9/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-3/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-3/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-6/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-6/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-6/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-9/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-5/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-10/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-10/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-4/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-1/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-10/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-4/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-2/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-2/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-1/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/shard-bmg-1/igt@xe_module_load@load.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[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#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[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#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[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#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#5857]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5857
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[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#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[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#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319
[Intel XE#7328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7328
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386
[Intel XE#7400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7400
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
[Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
[Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
[Intel XE#7467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7467
[Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7621]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7725
[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_8862 -> IGTPW_14998
* Linux: xe-4912-7f72587254d9c0142ac57eb050acd8f817585623 -> xe-4913-207a25698a481a39132b52060d7bb294384876ac
IGTPW_14998: 23690c63cc0728d897084f491141a9863ad07ad7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8862: 9b95600c4ae2cb683a8a19ad2a7c006263811a8f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4912-7f72587254d9c0142ac57eb050acd8f817585623: 7f72587254d9c0142ac57eb050acd8f817585623
xe-4913-207a25698a481a39132b52060d7bb294384876ac: 207a25698a481a39132b52060d7bb294384876ac
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14998/index.html
[-- Attachment #2: Type: text/html, Size: 43955 bytes --]
^ permalink raw reply [flat|nested] 28+ messages in thread* ✗ i915.CI.Full: failure for updates to fbc tests (rev3)
2026-04-16 9:25 [PATCH i-g-t v3 00/11] updates to fbc tests Vinod Govindapillai
` (13 preceding siblings ...)
2026-04-16 18:08 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-04-17 4:43 ` Patchwork
14 siblings, 0 replies; 28+ messages in thread
From: Patchwork @ 2026-04-17 4:43 UTC (permalink / raw)
To: Vinod Govindapillai; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 140460 bytes --]
== Series Details ==
Series: updates to fbc tests (rev3)
URL : https://patchwork.freedesktop.org/series/163896/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8862_full -> IGTPW_14998_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14998_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14998_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_14998/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_14998_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-mtlp-7/igt@gem_mmap_offset@clear-via-pagefault.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-8/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-2/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-18/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2: NOTRUN -> [SKIP][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-8/igt@kms_fbcon_fbt@psr-suspend.html
#### Warnings ####
* igt@kms_fbcon_fbt@psr:
- shard-dg2: [SKIP][6] ([i915#3469]) -> [SKIP][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg2-7/igt@kms_fbcon_fbt@psr.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-5/igt@kms_fbcon_fbt@psr.html
- shard-dg1: [SKIP][8] ([i915#3469]) -> [SKIP][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg1-14/igt@kms_fbcon_fbt@psr.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-12/igt@kms_fbcon_fbt@psr.html
- shard-tglu: [SKIP][10] ([i915#3469]) -> [SKIP][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-tglu-4/igt@kms_fbcon_fbt@psr.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-10/igt@kms_fbcon_fbt@psr.html
New tests
---------
New tests have been introduced between IGT_8862_full and IGTPW_14998_full:
### New IGT tests (17) ###
* igt@i915_drm_fdinfo@busy-check-all@vecs1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@i915_drm_fdinfo@busy-hang@vecs1:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@i915_drm_fdinfo@busy-idle@vecs1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@i915_drm_fdinfo@busy@vecs1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@i915_drm_fdinfo@idle@vecs1:
- Statuses : 1 pass(s)
- Exec time: [0.50] s
* igt@i915_drm_fdinfo@isolation@vecs1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@i915_drm_fdinfo@memory-info-active@lmem0:
- Statuses : 2 pass(s)
- Exec time: [3.35, 4.04] s
* igt@i915_drm_fdinfo@memory-info-idle@lmem0:
- Statuses : 2 pass(s)
- Exec time: [0.06, 0.08] s
* igt@i915_drm_fdinfo@memory-info-purgeable@lmem0:
- Statuses : 2 pass(s)
- Exec time: [3.97, 4.00] s
* igt@i915_drm_fdinfo@memory-info-resident@lmem0:
- Statuses : 2 pass(s)
- Exec time: [3.42, 3.56] s
* igt@i915_drm_fdinfo@memory-info-shared@lmem0:
- Statuses : 2 pass(s)
- Exec time: [0.08] s
* igt@i915_drm_fdinfo@most-busy-check-all@vecs1:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@i915_drm_fdinfo@most-busy-idle-check-all@vecs1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_multiple@2x-tiling-x@pipe-a-hdmi-a-1-pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.83] s
* igt@kms_plane_multiple@2x-tiling-x@pipe-a-vga-1-pipe-b-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.66] s
* igt@kms_plane_multiple@2x-tiling-x@pipe-b-hdmi-a-1-pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.81] s
* igt@kms_plane_multiple@2x-tiling-x@pipe-b-vga-1-pipe-a-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.67] s
Known issues
------------
Here are the changes found in IGTPW_14998_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-tglu: NOTRUN -> [SKIP][12] ([i915#6230])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-5/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#8411]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-3/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-tglu-1: NOTRUN -> [SKIP][14] ([i915#11078])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-1/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#11078])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-2/igt@device_reset@unbind-cold-reset-rebind.html
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#11078])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-12/igt@device_reset@unbind-cold-reset-rebind.html
- shard-tglu: NOTRUN -> [SKIP][17] ([i915#11078])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-10/igt@device_reset@unbind-cold-reset-rebind.html
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#11078])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-4/igt@device_reset@unbind-cold-reset-rebind.html
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#11078])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-5/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_buddy@drm_buddy:
- shard-rkl: NOTRUN -> [SKIP][20] ([i915#15678])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-5/igt@drm_buddy@drm_buddy.html
* igt@fbdev@pan:
- shard-snb: [PASS][21] -> [FAIL][22] ([i915#15792])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-snb6/igt@fbdev@pan.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-snb7/igt@fbdev@pan.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#9323])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-8/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#9323])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-5/igt@gem_ccs@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#9323])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-18/igt@gem_ccs@suspend-resume.html
- shard-tglu: NOTRUN -> [SKIP][26] ([i915#9323])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-2/igt@gem_ccs@suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#9323])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-6/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-tglu: NOTRUN -> [SKIP][28] ([i915#7697])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-8/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu-1: NOTRUN -> [SKIP][29] ([i915#6335])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-snb: [PASS][30] -> [ABORT][31] ([i915#15840]) +1 other test abort
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-snb5/igt@gem_ctx_isolation@preservation-s3@rcs0.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-snb4/igt@gem_ctx_isolation@preservation-s3@rcs0.html
- shard-glk: [PASS][32] -> [INCOMPLETE][33] ([i915#13356])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-glk2/igt@gem_ctx_isolation@preservation-s3@rcs0.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk5/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_isolation@preservation-s3@vcs0:
- shard-rkl: [PASS][34] -> [INCOMPLETE][35] ([i915#13356]) +1 other test incomplete
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-5/igt@gem_ctx_isolation@preservation-s3@vcs0.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3@vcs0.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#8555]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#8555]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-hostile.html
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#8555]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-6/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_eio@in-flight-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][39] ([i915#13390])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk10/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#4036])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-8/igt@gem_exec_balancer@invalid-bonds.html
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#4036])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-13/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-tglu-1: NOTRUN -> [SKIP][42] ([i915#4525])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-1/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#6344])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-3/igt@gem_exec_capture@capture-recoverable.html
- shard-tglu: NOTRUN -> [SKIP][44] ([i915#6344])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-9/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) +4 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-7/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#3539])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-4/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_flush@basic-wb-rw-default:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-14/igt@gem_exec_flush@basic-wb-rw-default.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +10 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-4/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3281]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-7/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-wc-read:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#3281]) +4 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-14/igt@gem_exec_reloc@basic-wc-read.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#3281]) +10 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-7/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4537] / [i915#4812])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-chain.html
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-chain.html
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4812])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-19/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#7276])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#4860])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-16/igt@gem_fence_thrash@bo-write-verify-none.html
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4860])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-1/igt@gem_fence_thrash@bo-write-verify-none.html
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4860])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_lmem_swapping@massive-random:
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#4613]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-5/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][60] ([i915#4613]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk1/igt@gem_lmem_swapping@random-engines.html
* igt@gem_mmap_gtt@basic-write-read:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4077]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-4/igt@gem_mmap_gtt@basic-write-read.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4077]) +12 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-1/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#4077]) +5 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-15/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_wc@write-read-distinct:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4083]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-6/igt@gem_mmap_wc@write-read-distinct.html
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4083]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-19/igt@gem_mmap_wc@write-read-distinct.html
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4083])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-5/igt@gem_mmap_wc@write-read-distinct.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#3282]) +4 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-5/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_pread@display:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#14544] / [i915#3282])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@gem_pread@display.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#3282]) +5 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-3/igt@gem_pread@snoop.html
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#3282]) +4 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-18/igt@gem_pread@snoop.html
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3282]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-7/igt@gem_pread@snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk: NOTRUN -> [WARN][72] ([i915#14702] / [i915#2658])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk4/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-valid-protected-context:
- shard-rkl: [PASS][73] -> [SKIP][74] ([i915#4270])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-3/igt@gem_pxp@create-valid-protected-context.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-3/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#4270])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4270]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-8/igt@gem_pxp@reject-modify-context-protection-off-3.html
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4270]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-13/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#8428]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-1/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html
* igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#5190] / [i915#8428]) +8 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-6/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#4079])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#4079])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-14/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4079])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_softpin@noreloc-s3:
- shard-rkl: [PASS][83] -> [INCOMPLETE][84] ([i915#13809])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-2/igt@gem_softpin@noreloc-s3.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@gem_softpin@noreloc-s3.html
- shard-glk11: NOTRUN -> [INCOMPLETE][85] ([i915#13809])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk11/igt@gem_softpin@noreloc-s3.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#3297]) +4 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-1/igt@gem_userptr_blits@coherency-unsync.html
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#3297]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-5/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#3297] / [i915#4880])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-7/igt@gem_userptr_blits@unsync-overlap.html
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-14/igt@gem_userptr_blits@unsync-overlap.html
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3297])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-5/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen7_exec_parse@load-register-reg:
- shard-mtlp: NOTRUN -> [SKIP][92] +6 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-5/igt@gen7_exec_parse@load-register-reg.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#2527] / [i915#2856]) +3 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-8/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu-1: NOTRUN -> [SKIP][94] ([i915#2527] / [i915#2856])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-1/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#2527])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-17/igt@gen9_exec_parse@bb-secure.html
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#2856])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-1/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#2856]) +3 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-4/igt@gen9_exec_parse@shadow-peek.html
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#2527]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-1/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_drm_fdinfo@busy-idle-check-all@vcs0:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#11527]) +7 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-6/igt@i915_drm_fdinfo@busy-idle-check-all@vcs0.html
* igt@i915_drm_fdinfo@virtual-busy-idle:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#14118])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-5/igt@i915_drm_fdinfo@virtual-busy-idle.html
* igt@i915_module_load@resize-bar:
- shard-dg2: [PASS][101] -> [DMESG-WARN][102] ([i915#14545])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg2-5/igt@i915_module_load@resize-bar.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-6/igt@i915_module_load@resize-bar.html
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#6412])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-7/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-dg2: NOTRUN -> [FAIL][104] ([i915#12964]) +1 other test fail
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-4/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: NOTRUN -> [INCOMPLETE][105] ([i915#13356] / [i915#15172])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk1/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@basic-api:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#11681] / [i915#6621])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-6/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#11681])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-8/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#7984])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-8/igt@i915_power@sanity.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu: NOTRUN -> [SKIP][109] ([i915#5723])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-8/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu-1: NOTRUN -> [INCOMPLETE][110] ([i915#4817] / [i915#7443])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-1/igt@i915_suspend@basic-s3-without-i915.html
- shard-glk: [PASS][111] -> [INCOMPLETE][112] ([i915#4817])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-glk1/igt@i915_suspend@basic-s3-without-i915.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk8/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@fence-restore-untiled:
- shard-rkl: [PASS][113] -> [INCOMPLETE][114] ([i915#4817])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-7/igt@i915_suspend@fence-restore-untiled.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-4/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_3d@basic:
- shard-mtlp: [PASS][115] -> [SKIP][116] ([i915#15726])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-mtlp-7/igt@kms_3d@basic.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-1/igt@kms_3d@basic.html
* igt@kms_addfb_basic@bad-pitch-63:
- shard-dg1: [PASS][117] -> [DMESG-WARN][118] ([i915#4391] / [i915#4423])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg1-18/igt@kms_addfb_basic@bad-pitch-63.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-12/igt@kms_addfb_basic@bad-pitch-63.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#4212]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-1/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#4212])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-18/igt@kms_addfb_basic@tile-pitch-mismatch.html
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#4212])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-6/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_atomic@plane-primary-legacy:
- shard-dg1: [PASS][122] -> [DMESG-WARN][123] ([i915#4423]) +2 other tests dmesg-warn
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg1-19/igt@kms_atomic@plane-primary-legacy.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-12/igt@kms_atomic@plane-primary-legacy.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#9531])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-dg2: NOTRUN -> [FAIL][125] ([i915#5956]) +1 other test fail
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#1769] / [i915#3555])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#1769] / [i915#3555])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#1769] / [i915#3555])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#1769] / [i915#3555])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-snb: NOTRUN -> [SKIP][130] ([i915#1769])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-snb6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-tglu: NOTRUN -> [SKIP][131] ([i915#1769] / [i915#3555])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-9/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][132] ([i915#1769])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#5286])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#5286]) +6 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-2/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#4538] / [i915#5286]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#5286]) +6 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [PASS][137] -> [FAIL][138] ([i915#15733] / [i915#5138])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#3638]) +6 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-4/igt@kms_big_fb@linear-64bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#3638]) +3 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-13/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#3828]) +2 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#3828])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][143] +14 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-3/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#14544] / [i915#3638])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#4538] / [i915#5190]) +9 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#5190])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-1/igt@kms_big_fb@yf-tiled-addfb.html
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#6187])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-7/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg1: NOTRUN -> [SKIP][148] +24 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-18/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#4538]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#6095]) +172 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#6095]) +9 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-1/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#10307] / [i915#10434] / [i915#6095]) +6 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#14098] / [i915#6095]) +42 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#6095]) +63 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#6095]) +49 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-3/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#12313]) +2 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#6095]) +64 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#12313]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][159] ([i915#15582]) +1 other test incomplete
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][160] ([i915#14694] / [i915#15582]) +1 other test incomplete
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#12313]) +3 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#10307] / [i915#6095]) +110 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#14544] / [i915#6095]) +7 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][165] +410 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk9/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#6095]) +19 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-5/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-b-edp-1.html
* igt@kms_cdclk@mode-transition:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#3742])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-19/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#13781]) +4 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-tglu: NOTRUN -> [SKIP][169] ([i915#11151] / [i915#7828]) +4 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-9/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#11151] / [i915#7828]) +8 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-5/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#11151] / [i915#7828]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#11151] / [i915#14544] / [i915#7828])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#11151] / [i915#7828]) +7 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-7/igt@kms_chamelium_hpd@dp-hpd-storm.html
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#11151] / [i915#7828]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-14/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_color@deep-color:
- shard-rkl: [PASS][175] -> [SKIP][176] ([i915#12655] / [i915#3555])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_color@deep-color.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-8/igt@kms_color@deep-color.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#15330] / [i915#3116])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#15330]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#15330])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-14/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#15330])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#15330])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-5/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#15330]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-1/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
- shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#15330])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#15865])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-7/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][185] ([i915#15865]) +2 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-3/igt@kms_content_protection@suspend-resume.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#15865])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-3/igt@kms_content_protection@type1.html
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#15865])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-15/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#13049] / [i915#3359])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#13049])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-18/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#13049])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#13049]) +3 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#13049]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-4/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#3555]) +4 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#3555]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#3555]) +3 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#13049]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][197] -> [FAIL][198] ([i915#13566]) +1 other test fail
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#8814])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-3/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-rkl: [PASS][200] -> [FAIL][201] ([i915#13566]) +1 other test fail
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-64x21.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][202] ([i915#13566]) +1 other test fail
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
- shard-tglu: NOTRUN -> [FAIL][203] ([i915#13566]) +5 other tests fail
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk11: NOTRUN -> [INCOMPLETE][204] ([i915#12358] / [i915#14152] / [i915#7882])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk11/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk11: NOTRUN -> [INCOMPLETE][205] ([i915#12358] / [i915#14152])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk11/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][206] +24 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-tglu: NOTRUN -> [SKIP][207] ([i915#4103])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#4103])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#4103])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
- shard-rkl: [PASS][210] -> [FAIL][211] ([i915#15564])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-3/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-8/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#13046] / [i915#5354]) +6 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-tglu-1: NOTRUN -> [SKIP][213] +16 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-1/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#14544] / [i915#4103])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#9723])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#3804])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#13749])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-5/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#13748])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-8/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#13707])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#13707])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#13707])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-12/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#13707])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-10/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#13707])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#8812])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-5/igt@kms_draw_crc@draw-method-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#8812])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-12/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#3840]) +2 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-4/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#3840]) +1 other test skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-6/igt@kms_dsc@dsc-with-output-formats.html
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#3840])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-16/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-snb: [PASS][229] -> [SKIP][230] +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-snb1/igt@kms_fbcon_fbt@fbc-suspend.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-snb7/igt@kms_fbcon_fbt@fbc-suspend.html
- shard-rkl: [PASS][231] -> [INCOMPLETE][232] ([i915#9878])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-2/igt@kms_fbcon_fbt@fbc-suspend.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#14544]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#1839])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-4/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#1839])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-7/igt@kms_feature_discovery@display-3x.html
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#1839])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-8/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][237] ([i915#3637] / [i915#9934]) +8 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-3/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#14544] / [i915#9934])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#9934]) +6 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-4/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][240] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk5/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][241] ([i915#12314] / [i915#12745])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk5/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#9934]) +3 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-3/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#8381])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-7/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-tglu: [PASS][244] -> [ABORT][245] ([i915#15840]) +1 other test abort
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-tglu-9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#15643] / [i915#5190])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#15643]) +3 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#15643]) +3 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#15643]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#15643])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][252] ([i915#15643])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#15104]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#15104])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#5354]) +29 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#8708]) +16 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#5439])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][258] +88 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
- shard-tglu: NOTRUN -> [SKIP][259] ([i915#15102]) +20 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#15104]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#14544] / [i915#15102] / [i915#3023])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt:
- shard-glk10: NOTRUN -> [SKIP][262] +186 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#14544] / [i915#1825]) +2 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#1825]) +9 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-tglu: NOTRUN -> [SKIP][265] +51 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#8708]) +8 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#15102]) +2 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#15102]) +4 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#15102])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#14544] / [i915#15102])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#15102] / [i915#3023]) +22 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#15102] / [i915#3458]) +16 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#15102] / [i915#3458]) +3 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#1825]) +36 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#15102]) +6 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_hdr@bpc-switch:
- shard-tglu: NOTRUN -> [SKIP][276] ([i915#3555] / [i915#8228])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-4/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [ABORT][277] ([i915#15132])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-10/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-3.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#12713])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-5/igt@kms_hdr@brightness-with-hdr.html
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#12713])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-7/igt@kms_hdr@brightness-with-hdr.html
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#12713])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#12713])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-14/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu: NOTRUN -> [SKIP][282] ([i915#12713])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-6/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-dg1: NOTRUN -> [SKIP][283] ([i915#3555] / [i915#8228])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-17/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle:
- shard-rkl: [PASS][284] -> [SKIP][285] ([i915#3555] / [i915#8228])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_hdr@static-toggle.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-5/igt@kms_hdr@static-toggle.html
- shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8228])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-1/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8228]) +2 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-6/igt@kms_hdr@static-toggle-suspend.html
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8228]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-7/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#15459]) +1 other test skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#15458])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][291] ([i915#15638] / [i915#15722])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-9/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu: NOTRUN -> [SKIP][292] ([i915#15815])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#6301])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-8/igt@kms_panel_fitting@legacy.html
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#14544] / [i915#6301])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_panel_fitting@legacy.html
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#6301])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-18/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#14544] / [i915#14712])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-tglu: NOTRUN -> [SKIP][297] ([i915#15709]) +3 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
- shard-mtlp: NOTRUN -> [SKIP][298] ([i915#15709]) +3 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-dg1: NOTRUN -> [SKIP][299] ([i915#15709]) +4 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-18/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][300] ([i915#15709]) +5 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-1/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7:
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#15608]) +1 other test skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-10/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#15709]) +10 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][303] ([i915#12178])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk4/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][304] ([i915#7862]) +1 other test fail
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk4/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#13958])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-3/igt@kms_plane_multiple@2x-tiling-y.html
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#13958]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-4:
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#14259])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-8/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#13046] / [i915#5354] / [i915#9423])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#15329]) +4 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][310] ([i915#15329]) +4 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-10/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][311] ([i915#5354])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2: NOTRUN -> [SKIP][312] ([i915#12343])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-7/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#12343])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-8/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#12343])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-17/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-tglu: NOTRUN -> [SKIP][315] ([i915#12343])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-7/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#9685]) +1 other test skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-6/igt@kms_pm_dc@dc6-psr.html
- shard-rkl: NOTRUN -> [SKIP][317] ([i915#9685])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-8/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: NOTRUN -> [SKIP][318] ([i915#15739])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#9340])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-3/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg2: NOTRUN -> [SKIP][320] ([i915#8430])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-7/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: [PASS][321] -> [SKIP][322] ([i915#15073]) +2 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [PASS][323] -> [SKIP][324] ([i915#15073])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][325] ([i915#6524])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-10/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][326] ([i915#6524] / [i915#6805])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-3/igt@kms_prime@basic-modeset-hybrid.html
- shard-dg1: NOTRUN -> [SKIP][327] ([i915#6524])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-15/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2: NOTRUN -> [SKIP][328] ([i915#11520]) +6 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][329] ([i915#11520]) +7 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-10/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-tglu-1: NOTRUN -> [SKIP][330] ([i915#11520]) +1 other test skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][331] ([i915#9808]) +1 other test skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#11520] / [i915#14544])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
- shard-snb: NOTRUN -> [SKIP][333] ([i915#11520]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-snb7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
- shard-mtlp: NOTRUN -> [SKIP][334] ([i915#12316]) +3 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][335] ([i915#11520]) +2 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-17/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-glk10: NOTRUN -> [SKIP][336] ([i915#11520]) +4 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk10/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-glk: NOTRUN -> [SKIP][337] ([i915#11520]) +11 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
- shard-glk11: NOTRUN -> [SKIP][338] ([i915#11520])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk11/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][339] ([i915#11520]) +6 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: NOTRUN -> [SKIP][340] ([i915#9683]) +1 other test skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-5/igt@kms_psr2_su@page_flip-nv12.html
- shard-tglu-1: NOTRUN -> [SKIP][341] ([i915#9683])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][342] ([i915#9683])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-7/igt@kms_psr2_su@page_flip-p010.html
- shard-dg1: NOTRUN -> [SKIP][343] ([i915#9683])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-17/igt@kms_psr2_su@page_flip-p010.html
- shard-tglu: NOTRUN -> [SKIP][344] ([i915#9683])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-10/igt@kms_psr2_su@page_flip-p010.html
- shard-mtlp: NOTRUN -> [SKIP][345] ([i915#4348])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-1/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-tglu: NOTRUN -> [SKIP][346] ([i915#9732]) +17 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-4/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@fbc-psr-primary-blt:
- shard-dg2: NOTRUN -> [SKIP][347] ([i915#1072] / [i915#9732]) +20 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-6/igt@kms_psr@fbc-psr-primary-blt.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-mtlp: NOTRUN -> [SKIP][348] ([i915#9688]) +4 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-4/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-basic:
- shard-dg1: NOTRUN -> [SKIP][349] ([i915#1072] / [i915#9732]) +8 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-18/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-tglu-1: NOTRUN -> [SKIP][350] ([i915#9732]) +6 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-1/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][351] ([i915#1072] / [i915#9732]) +21 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-7/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_psr@psr2-suspend:
- shard-rkl: NOTRUN -> [SKIP][352] ([i915#1072] / [i915#14544] / [i915#9732])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_psr@psr2-suspend.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg1: NOTRUN -> [SKIP][353] ([i915#9685])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-18/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: NOTRUN -> [SKIP][354] ([i915#4235])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-10/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk: NOTRUN -> [INCOMPLETE][355] ([i915#15492])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk6/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][356] ([i915#12755] / [i915#15867]) +4 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-8/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][357] ([i915#12755] / [i915#15867] / [i915#5190])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][358] ([i915#5289])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][359] ([i915#3555]) +2 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-10/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-rkl: NOTRUN -> [SKIP][360] ([i915#3555]) +4 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-7/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][361] ([i915#12276]) +1 other test incomplete
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk3/igt@kms_vblank@ts-continuation-suspend.html
- shard-rkl: [PASS][362] -> [INCOMPLETE][363] ([i915#12276])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-2/igt@kms_vblank@ts-continuation-suspend.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][364] ([i915#12276])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html
* igt@kms_vrr@flip-basic:
- shard-rkl: NOTRUN -> [SKIP][365] ([i915#14544] / [i915#15243] / [i915#3555])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-dpms:
- shard-dg2: NOTRUN -> [SKIP][366] ([i915#15243] / [i915#3555]) +1 other test skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-6/igt@kms_vrr@flip-dpms.html
- shard-rkl: NOTRUN -> [SKIP][367] ([i915#15243] / [i915#3555])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-7/igt@kms_vrr@flip-dpms.html
- shard-mtlp: NOTRUN -> [SKIP][368] ([i915#3555] / [i915#8808])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-5/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@max-min:
- shard-dg2: NOTRUN -> [SKIP][369] ([i915#9906])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-6/igt@kms_vrr@max-min.html
- shard-rkl: NOTRUN -> [SKIP][370] ([i915#9906])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-3/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-tglu: NOTRUN -> [SKIP][371] ([i915#9906])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-3/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@perf@gen12-oa-tlb-invalidate:
- shard-glk11: NOTRUN -> [SKIP][372] +12 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk11/igt@perf@gen12-oa-tlb-invalidate.html
* igt@perf@global-sseu-config:
- shard-dg2: NOTRUN -> [SKIP][373] ([i915#7387])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-7/igt@perf@global-sseu-config.html
* igt@perf_pmu@busy-double-start@bcs0:
- shard-mtlp: [PASS][374] -> [FAIL][375] ([i915#4349])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-mtlp-5/igt@perf_pmu@busy-double-start@bcs0.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html
* igt@perf_pmu@module-unload:
- shard-glk: NOTRUN -> [ABORT][376] ([i915#15778])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk1/igt@perf_pmu@module-unload.html
- shard-rkl: NOTRUN -> [ABORT][377] ([i915#15778])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-7/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: NOTRUN -> [SKIP][378] ([i915#8516])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-5/igt@perf_pmu@rc6-all-gts.html
- shard-tglu-1: NOTRUN -> [SKIP][379] ([i915#8516])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html
* igt@prime_mmap@test_aperture_limit:
- shard-dg2: NOTRUN -> [SKIP][380] ([i915#14121]) +1 other test skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-5/igt@prime_mmap@test_aperture_limit.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][381] ([i915#3291] / [i915#3708]) +1 other test skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-1/igt@prime_vgem@basic-fence-read.html
- shard-rkl: NOTRUN -> [SKIP][382] ([i915#3291] / [i915#3708])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-5/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][383] ([i915#3708] / [i915#4077]) +1 other test skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-1/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][384] ([i915#14544] / [i915#3291] / [i915#3708])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][385] ([i915#3708])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-8/igt@prime_vgem@fence-read-hang.html
- shard-dg1: NOTRUN -> [SKIP][386] ([i915#3708]) +1 other test skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-14/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@bind-unbind-vf@vf-4:
- shard-tglu: NOTRUN -> [FAIL][387] ([i915#12910]) +9 other tests fail
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-10/igt@sriov_basic@bind-unbind-vf@vf-4.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg2: NOTRUN -> [SKIP][388] ([i915#9917])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-8/igt@sriov_basic@enable-vfs-bind-unbind-each.html
- shard-rkl: NOTRUN -> [SKIP][389] ([i915#14544] / [i915#9917])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html
#### Possible fixes ####
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [INCOMPLETE][390] ([i915#13356]) -> [PASS][391] +1 other test pass
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html
* igt@i915_module_load@reload-no-display:
- shard-dg1: [DMESG-WARN][392] ([i915#13029] / [i915#14545]) -> [PASS][393]
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg1-17/igt@i915_module_load@reload-no-display.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-12/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: [WARN][394] ([i915#13790] / [i915#2681]) -> [PASS][395] +1 other test pass
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-fence.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rpm@system-suspend:
- shard-rkl: [INCOMPLETE][396] ([i915#13356]) -> [PASS][397]
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@i915_pm_rpm@system-suspend.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-2/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rpm@system-suspend-devices:
- shard-rkl: [ABORT][398] ([i915#15060]) -> [PASS][399]
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-1/igt@i915_pm_rpm@system-suspend-devices.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-5/igt@i915_pm_rpm@system-suspend-devices.html
* igt@i915_power@sanity:
- shard-mtlp: [SKIP][400] ([i915#7984]) -> [PASS][401]
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-mtlp-4/igt@i915_power@sanity.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-2/igt@i915_power@sanity.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-rkl: [INCOMPLETE][402] ([i915#4817]) -> [PASS][403]
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-4/igt@i915_suspend@fence-restore-tiled2untiled.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-8/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: [INCOMPLETE][404] ([i915#15582]) -> [PASS][405] +1 other test pass
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [FAIL][406] ([i915#13566]) -> [PASS][407] +3 other tests pass
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-rkl: [FAIL][408] ([i915#13566]) -> [PASS][409]
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-8/igt@kms_cursor_crc@cursor-random-64x21.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-4/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2:
- shard-rkl: [INCOMPLETE][410] ([i915#6113]) -> [PASS][411] +1 other test pass
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-7/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-mtlp: [SKIP][412] ([i915#15672]) -> [PASS][413]
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-mtlp-1/igt@kms_force_connector_basic@force-connector-state.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-3/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite:
- shard-dg2: [FAIL][414] ([i915#15389] / [i915#6880]) -> [PASS][415]
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-rkl: [INCOMPLETE][416] ([i915#12756] / [i915#13476]) -> [PASS][417]
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-3/igt@kms_pipe_crc_basic@suspend-read-crc.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-5/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_stress@stress-xrgb8888-xtiled:
- shard-glk: [DMESG-WARN][418] ([i915#118]) -> [PASS][419]
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-glk3/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk6/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html
* igt@kms_plane_scaling@invalid-num-scalers@pipe-a-hdmi-a-4-invalid-num-scalers:
- shard-dg1: [DMESG-WARN][420] ([i915#4423]) -> [PASS][421] +2 other tests pass
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg1-18/igt@kms_plane_scaling@invalid-num-scalers@pipe-a-hdmi-a-4-invalid-num-scalers.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-19/igt@kms_plane_scaling@invalid-num-scalers@pipe-a-hdmi-a-4-invalid-num-scalers.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: [SKIP][422] ([i915#15073]) -> [PASS][423]
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg1-17/igt@kms_pm_rpm@dpms-lpsp.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-15/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [SKIP][424] ([i915#15073]) -> [PASS][425] +1 other test pass
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2: [INCOMPLETE][426] ([i915#14419]) -> [PASS][427]
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg2-4/igt@kms_pm_rpm@system-suspend-idle.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-4/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-rkl: [INCOMPLETE][428] ([i915#14419]) -> [PASS][429]
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-4/igt@kms_pm_rpm@system-suspend-modeset.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-5/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@perf_pmu@rc6-suspend:
- shard-glk: [INCOMPLETE][430] ([i915#13356]) -> [PASS][431]
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-glk3/igt@perf_pmu@rc6-suspend.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk4/igt@perf_pmu@rc6-suspend.html
- shard-rkl: [INCOMPLETE][432] ([i915#13520]) -> [PASS][433]
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@perf_pmu@rc6-suspend.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-4/igt@perf_pmu@rc6-suspend.html
#### Warnings ####
* igt@gem_ccs@block-copy-compressed:
- shard-rkl: [SKIP][434] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][435] ([i915#3555] / [i915#9323])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-7/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: [SKIP][436] ([i915#14544] / [i915#9323]) -> [SKIP][437] ([i915#9323])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-rkl: [SKIP][438] ([i915#6335]) -> [SKIP][439] ([i915#14544] / [i915#6335])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-3/igt@gem_create@create-ext-cpu-access-big.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: [SKIP][440] ([i915#14544] / [i915#6335]) -> [SKIP][441] ([i915#6335])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-5/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-rkl: [SKIP][442] ([i915#14544] / [i915#4525]) -> [SKIP][443] ([i915#4525])
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-in-fence.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-2/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-rkl: [SKIP][444] ([i915#6334]) -> [SKIP][445] ([i915#14544] / [i915#6334]) +1 other test skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-5/igt@gem_exec_capture@capture-invisible@smem0.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: [SKIP][446] ([i915#14544] / [i915#3281]) -> [SKIP][447] ([i915#3281]) +4 other tests skip
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-rkl: [SKIP][448] ([i915#14544] / [i915#4613]) -> [SKIP][449] ([i915#4613])
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@gem_lmem_swapping@heavy-multi.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-2/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-rkl: [SKIP][450] ([i915#4613]) -> [SKIP][451] ([i915#14544] / [i915#4613])
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-8/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- 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/IGT_8862/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-rkl: [SKIP][454] ([i915#8411]) -> [SKIP][455] ([i915#14544] / [i915#8411])
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_tiled_pread_basic@basic:
- shard-rkl: [SKIP][456] ([i915#14544] / [i915#15656]) -> [SKIP][457] ([i915#15656])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@gem_tiled_pread_basic@basic.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-2/igt@gem_tiled_pread_basic@basic.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: [SKIP][458] ([i915#14544] / [i915#3297]) -> [SKIP][459] ([i915#3297]) +2 other tests skip
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-7/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gen3_render_mixed_blits:
- shard-rkl: [SKIP][460] ([i915#14544]) -> [SKIP][461]
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@gen3_render_mixed_blits.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-7/igt@gen3_render_mixed_blits.html
* igt@gen9_exec_parse@bb-start-far:
- shard-rkl: [SKIP][462] ([i915#14544] / [i915#2527]) -> [SKIP][463] ([i915#2527])
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@gen9_exec_parse@bb-start-far.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-5/igt@gen9_exec_parse@bb-start-far.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-rkl: [SKIP][464] ([i915#14544] / [i915#5286]) -> [SKIP][465] ([i915#5286])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-rkl: [SKIP][466] ([i915#5286]) -> [SKIP][467] ([i915#14544] / [i915#5286])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-4/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: [SKIP][468] ([i915#14544] / [i915#3828]) -> [SKIP][469] ([i915#3828])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][470] ([i915#14544] / [i915#6095]) -> [SKIP][471] ([i915#6095]) +4 other tests skip
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-7/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][472] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][473] ([i915#14098] / [i915#6095]) +5 other tests skip
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-7/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
- shard-rkl: [SKIP][474] ([i915#14098] / [i915#6095]) -> [SKIP][475] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-5/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-rkl: [SKIP][476] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][477] ([i915#11151] / [i915#7828]) +2 other tests skip
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_chamelium_edid@hdmi-mode-timings.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-8/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: [SKIP][478] ([i915#11151] / [i915#7828]) -> [SKIP][479] ([i915#11151] / [i915#14544] / [i915#7828])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-fast.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic:
- shard-dg2: [FAIL][480] ([i915#7173]) -> [SKIP][481] ([i915#15865])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg2-10/igt@kms_content_protection@atomic.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-5/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: [SKIP][482] ([i915#15865]) -> [SKIP][483] ([i915#14544] / [i915#15865]) +1 other test skip
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-4/igt@kms_content_protection@atomic-dpms.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-rkl: [SKIP][484] ([i915#14544] / [i915#15330]) -> [SKIP][485] ([i915#15330])
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-8/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@srm:
- shard-rkl: [SKIP][486] ([i915#14544] / [i915#15865]) -> [SKIP][487] ([i915#15865])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_content_protection@srm.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-8/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: [SKIP][488] ([i915#13049] / [i915#14544]) -> [SKIP][489] ([i915#13049]) +1 other test skip
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [FAIL][490] ([i915#15768]) -> [FAIL][491] ([i915#15804])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: [SKIP][492] ([i915#13691] / [i915#14544]) -> [SKIP][493] ([i915#13691])
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-2/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: [SKIP][494] ([i915#14544] / [i915#3840]) -> [SKIP][495] ([i915#3840])
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: [SKIP][496] ([i915#14544] / [i915#9934]) -> [SKIP][497] ([i915#9934])
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_flip@2x-plain-flip-interruptible.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-5/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-rkl: [SKIP][498] ([i915#9934]) -> [SKIP][499] ([i915#14544] / [i915#9934])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-2/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-rkl: [SKIP][500] ([i915#14544] / [i915#15643]) -> [SKIP][501] ([i915#15643])
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render:
- shard-rkl: [SKIP][502] ([i915#1825]) -> [SKIP][503] ([i915#14544] / [i915#1825]) +3 other tests skip
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][504] ([i915#14544] / [i915#15102]) -> [SKIP][505] ([i915#15102])
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt:
- shard-dg1: [SKIP][506] ([i915#15102] / [i915#3458]) -> [SKIP][507] ([i915#15102] / [i915#3458] / [i915#4423])
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: [SKIP][508] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][509] ([i915#15102] / [i915#3023]) +2 other tests skip
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-rkl: [SKIP][510] ([i915#14544] / [i915#1825]) -> [SKIP][511] ([i915#1825]) +8 other tests skip
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite:
- shard-rkl: [SKIP][512] ([i915#15102] / [i915#3023]) -> [SKIP][513] ([i915#14544] / [i915#15102] / [i915#3023])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][514] ([i915#15102] / [i915#3458]) -> [SKIP][515] ([i915#10433] / [i915#15102] / [i915#3458]) +3 other tests skip
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][516] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][517] ([i915#15102] / [i915#3458]) +1 other test skip
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: [SKIP][518] ([i915#3555] / [i915#8228]) -> [ABORT][519] ([i915#15132])
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg2-5/igt@kms_hdr@bpc-switch-suspend.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-10/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: [SKIP][520] ([i915#14544] / [i915#15458]) -> [SKIP][521] ([i915#15458])
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-8/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-rkl: [SKIP][522] ([i915#13688]) -> [SKIP][523] ([i915#13688] / [i915#14544])
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-5/igt@kms_joiner@basic-max-non-joiner.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
- shard-rkl: [SKIP][524] ([i915#15709]) -> [SKIP][525] ([i915#14544] / [i915#15709])
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-rkl: [SKIP][526] ([i915#14544] / [i915#15329]) -> [SKIP][527] ([i915#15329]) +3 other tests skip
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-rkl: [SKIP][528] ([i915#15329]) -> [SKIP][529] ([i915#14544] / [i915#15329]) +6 other tests skip
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: [SKIP][530] ([i915#15329] / [i915#3555]) -> [SKIP][531] ([i915#14544] / [i915#15329] / [i915#3555])
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: [SKIP][532] ([i915#14544] / [i915#9685]) -> [SKIP][533] ([i915#9685])
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-4/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@pc8-residency:
- shard-rkl: [SKIP][534] -> [SKIP][535] ([i915#14544]) +2 other tests skip
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-5/igt@kms_pm_rpm@pc8-residency.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-rkl: [SKIP][536] ([i915#11520] / [i915#14544]) -> [SKIP][537] ([i915#11520])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-1/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg1: [SKIP][538] ([i915#11520]) -> [SKIP][539] ([i915#11520] / [i915#4423])
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg1-15/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-16/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-psr-dpms:
- shard-rkl: [SKIP][540] ([i915#1072] / [i915#9732]) -> [SKIP][541] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-2/igt@kms_psr@fbc-psr-dpms.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_psr@fbc-psr-dpms.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-rkl: [SKIP][542] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][543] ([i915#1072] / [i915#9732]) +7 other tests skip
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-blt.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-8/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-rkl: [SKIP][544] ([i915#9685]) -> [SKIP][545] ([i915#14544] / [i915#9685])
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-rkl: [SKIP][546] ([i915#14544] / [i915#3555]) -> [SKIP][547] ([i915#3555])
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_setmode@clone-exclusive-crtc.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-5/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-rkl: [SKIP][548] ([i915#8623]) -> [SKIP][549] ([i915#14544] / [i915#8623])
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html
* igt@perf_pmu@module-unload:
- shard-dg2: [ABORT][550] ([i915#13029] / [i915#15778]) -> [ABORT][551] ([i915#15778])
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg2-3/igt@perf_pmu@module-unload.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg2-6/igt@perf_pmu@module-unload.html
- shard-dg1: [ABORT][552] ([i915#13029] / [i915#15778]) -> [ABORT][553] ([i915#15778])
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg1-18/igt@perf_pmu@module-unload.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-dg1-16/igt@perf_pmu@module-unload.html
- shard-tglu: [INCOMPLETE][554] ([i915#13520]) -> [ABORT][555] ([i915#15778])
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-tglu-9/igt@perf_pmu@module-unload.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-tglu-6/igt@perf_pmu@module-unload.html
- shard-mtlp: [INCOMPLETE][556] ([i915#13520]) -> [ABORT][557] ([i915#15778])
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-mtlp-2/igt@perf_pmu@module-unload.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-mtlp-5/igt@perf_pmu@module-unload.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: [SKIP][558] ([i915#14544] / [i915#3708]) -> [SKIP][559] ([i915#3708])
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-2/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-rkl: [SKIP][560] ([i915#14544] / [i915#9917]) -> [SKIP][561] ([i915#9917])
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/shard-rkl-2/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[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#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[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#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[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#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
[i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#15060]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15060
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15564]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15564
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
[i915#15726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15726
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15768]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15768
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15792
[i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
[i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
[i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[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#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[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#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[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#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[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#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[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#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#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_8862 -> IGTPW_14998
CI-20190529: 20190529
CI_DRM_18342: 207a25698a481a39132b52060d7bb294384876ac @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14998: 23690c63cc0728d897084f491141a9863ad07ad7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8862: 9b95600c4ae2cb683a8a19ad2a7c006263811a8f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14998/index.html
[-- Attachment #2: Type: text/html, Size: 186263 bytes --]
^ permalink raw reply [flat|nested] 28+ messages in thread