* [igt-dev] [v9 0/4] DSC Fractional BPP Val Support
@ 2023-09-12 16:22 Swati Sharma
2023-09-12 16:22 ` [igt-dev] [v9 1/4] lib/dsc: fix documentation style Swati Sharma
` (7 more replies)
0 siblings, 8 replies; 10+ messages in thread
From: Swati Sharma @ 2023-09-12 16:22 UTC (permalink / raw)
To: igt-dev
Existing i-g-t is extended to enable validation for dsc
fractional bpp.
This series is split from
https://patchwork.freedesktop.org/series/111342/
v2: addressed review comments from Ankit
v3: addressed review comments from Ankit
v5: fixed if() conditions and documentation (Ankit)
v6: fixed if() condition, tests were getting executed on non-dsc
panels (CI)
v7: rebase
v8: rebase
v9: rebase
Swati Sharma (4):
lib/dsc: fix documentation style
lib/dsc: add helpers for vdsc fractional bpp debugfs entry
tests/intel/kms_dsc: enable validation for vdsc fractional bpp
tests/intel/kms_dsc: add test to validate fractional bpp with input
bpc
lib/igt_dsc.c | 123 ++++++++++++++++++++++++++++++++---
lib/igt_dsc.h | 6 ++
tests/intel/kms_dsc.c | 56 ++++++++++------
tests/intel/kms_dsc_helper.c | 57 ++++++++++++++++
tests/intel/kms_dsc_helper.h | 4 ++
5 files changed, 217 insertions(+), 29 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 10+ messages in thread* [igt-dev] [v9 1/4] lib/dsc: fix documentation style 2023-09-12 16:22 [igt-dev] [v9 0/4] DSC Fractional BPP Val Support Swati Sharma @ 2023-09-12 16:22 ` Swati Sharma 2023-09-13 11:26 ` Modem, Bhanuprakash 2023-09-12 16:22 ` [igt-dev] [v9 2/4] lib/dsc: add helpers for vdsc fractional bpp debugfs entry Swati Sharma ` (6 subsequent siblings) 7 siblings, 1 reply; 10+ messages in thread From: Swati Sharma @ 2023-09-12 16:22 UTC (permalink / raw) To: igt-dev Fix documentation style so that it can be detected by scripts to build IGT reference docs published at https://drm.pages.freedesktop.org/igt-gpu-tools/ Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- lib/igt_dsc.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/igt_dsc.c b/lib/igt_dsc.c index 76a420c10..8cb293890 100644 --- a/lib/igt_dsc.c +++ b/lib/igt_dsc.c @@ -42,7 +42,7 @@ static int write_dsc_debugfs(int drmfd, char *connector_name, const char *file_n return ret; } -/* +/** * igt_is_dsc_supported_by_source: * @drmfd: A drm file descriptor * @@ -63,7 +63,7 @@ bool igt_is_dsc_supported_by_source(int drmfd) return res > 0 ? strstr(buf, "has_dsc: yes") : 0; } -/* +/** * igt_is_dsc_supported_by_sink: * @drmfd: A drm file descriptor * @connector_name: Name of the libdrm connector we're going to use @@ -75,7 +75,7 @@ bool igt_is_dsc_supported_by_sink(int drmfd, char *connector_name) return check_dsc_debugfs(drmfd, connector_name, "DSC_Sink_Support: yes"); } -/* +/** * igt_is_fec_supported: * @drmfd: A drm file descriptor * @connector_name: Name of the libdrm connector we're going to use @@ -87,7 +87,7 @@ bool igt_is_fec_supported(int drmfd, char *connector_name) return check_dsc_debugfs(drmfd, connector_name, "FEC_Sink_Support: yes"); } -/* +/** * igt_is_dsc_enabled: * @drmfd: A drm file descriptor * @connector_name: Name of the libdrm connector we're going to use @@ -99,7 +99,7 @@ bool igt_is_dsc_enabled(int drmfd, char *connector_name) return check_dsc_debugfs(drmfd, connector_name, "DSC_Enabled: yes"); } -/* +/** * igt_is_force_dsc_enabled: * @drmfd: A drm file descriptor * @connector_name: Name of the libdrm connector we're going to use @@ -112,7 +112,7 @@ bool igt_is_force_dsc_enabled(int drmfd, char *connector_name) return check_dsc_debugfs(drmfd, connector_name, "Force_DSC_Enable: yes"); } -/* +/** * igt_force_dsc_enable: * @drmfd: A drm file descriptor * @connector_name: Name of the libdrm connector we're going to use @@ -124,7 +124,7 @@ int igt_force_dsc_enable(int drmfd, char *connector_name) return write_dsc_debugfs(drmfd, connector_name, "i915_dsc_fec_support", "1"); } -/* +/** * igt_force_dsc_enable_bpc: * @drmfd: A drm file descriptor * @connector_name: Name of the libdrm connector we're going to use @@ -141,7 +141,7 @@ int igt_force_dsc_enable_bpc(int drmfd, char *connector_name, int bpc) return write_dsc_debugfs(drmfd, connector_name, "i915_dsc_bpc", buf); } -/* +/** * igt_get_dsc_debugfs_fd: * @drmfd: A drm file descriptor * @connector_name: Name of the libdrm connector we're going to use @@ -157,7 +157,7 @@ int igt_get_dsc_debugfs_fd(int drmfd, char *connector_name) return openat(igt_debugfs_dir(drmfd), file_name, O_WRONLY); } -/* +/** * igt_is_dsc_output_format_supported_by_sink: * @drmfd: A drm file descriptor * @connector_name: Name of the libdrm connector we're going to use @@ -188,7 +188,7 @@ bool igt_is_dsc_output_format_supported_by_sink(int drmfd, char *connector_name, return check_dsc_debugfs(drmfd, connector_name, check_str); } -/* +/** * igt_force_dsc_output_format: * @drmfd: A drm file descriptor * @connector_name: Name of the libdrm connector we're going to use -- 2.25.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [igt-dev] [v9 1/4] lib/dsc: fix documentation style 2023-09-12 16:22 ` [igt-dev] [v9 1/4] lib/dsc: fix documentation style Swati Sharma @ 2023-09-13 11:26 ` Modem, Bhanuprakash 0 siblings, 0 replies; 10+ messages in thread From: Modem, Bhanuprakash @ 2023-09-13 11:26 UTC (permalink / raw) To: Swati Sharma, igt-dev On Tue-12-09-2023 09:52 pm, Swati Sharma wrote: > Fix documentation style so that it can be detected by scripts > to build IGT reference docs published at > https://drm.pages.freedesktop.org/igt-gpu-tools/ > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > --- > lib/igt_dsc.c | 20 ++++++++++---------- > 1 file changed, 10 insertions(+), 10 deletions(-) > > diff --git a/lib/igt_dsc.c b/lib/igt_dsc.c > index 76a420c10..8cb293890 100644 > --- a/lib/igt_dsc.c > +++ b/lib/igt_dsc.c > @@ -42,7 +42,7 @@ static int write_dsc_debugfs(int drmfd, char *connector_name, const char *file_n > return ret; > } > > -/* > +/** > * igt_is_dsc_supported_by_source: > * @drmfd: A drm file descriptor > * > @@ -63,7 +63,7 @@ bool igt_is_dsc_supported_by_source(int drmfd) > return res > 0 ? strstr(buf, "has_dsc: yes") : 0; > } > > -/* > +/** > * igt_is_dsc_supported_by_sink: > * @drmfd: A drm file descriptor > * @connector_name: Name of the libdrm connector we're going to use > @@ -75,7 +75,7 @@ bool igt_is_dsc_supported_by_sink(int drmfd, char *connector_name) > return check_dsc_debugfs(drmfd, connector_name, "DSC_Sink_Support: yes"); > } > > -/* > +/** > * igt_is_fec_supported: > * @drmfd: A drm file descriptor > * @connector_name: Name of the libdrm connector we're going to use > @@ -87,7 +87,7 @@ bool igt_is_fec_supported(int drmfd, char *connector_name) > return check_dsc_debugfs(drmfd, connector_name, "FEC_Sink_Support: yes"); > } > > -/* > +/** > * igt_is_dsc_enabled: > * @drmfd: A drm file descriptor > * @connector_name: Name of the libdrm connector we're going to use > @@ -99,7 +99,7 @@ bool igt_is_dsc_enabled(int drmfd, char *connector_name) > return check_dsc_debugfs(drmfd, connector_name, "DSC_Enabled: yes"); > } > > -/* > +/** > * igt_is_force_dsc_enabled: > * @drmfd: A drm file descriptor > * @connector_name: Name of the libdrm connector we're going to use > @@ -112,7 +112,7 @@ bool igt_is_force_dsc_enabled(int drmfd, char *connector_name) > return check_dsc_debugfs(drmfd, connector_name, "Force_DSC_Enable: yes"); > } > > -/* > +/** > * igt_force_dsc_enable: > * @drmfd: A drm file descriptor > * @connector_name: Name of the libdrm connector we're going to use > @@ -124,7 +124,7 @@ int igt_force_dsc_enable(int drmfd, char *connector_name) > return write_dsc_debugfs(drmfd, connector_name, "i915_dsc_fec_support", "1"); > } > > -/* > +/** > * igt_force_dsc_enable_bpc: > * @drmfd: A drm file descriptor > * @connector_name: Name of the libdrm connector we're going to use > @@ -141,7 +141,7 @@ int igt_force_dsc_enable_bpc(int drmfd, char *connector_name, int bpc) > return write_dsc_debugfs(drmfd, connector_name, "i915_dsc_bpc", buf); > } > > -/* > +/** > * igt_get_dsc_debugfs_fd: > * @drmfd: A drm file descriptor > * @connector_name: Name of the libdrm connector we're going to use > @@ -157,7 +157,7 @@ int igt_get_dsc_debugfs_fd(int drmfd, char *connector_name) > return openat(igt_debugfs_dir(drmfd), file_name, O_WRONLY); > } > > -/* > +/** > * igt_is_dsc_output_format_supported_by_sink: > * @drmfd: A drm file descriptor > * @connector_name: Name of the libdrm connector we're going to use > @@ -188,7 +188,7 @@ bool igt_is_dsc_output_format_supported_by_sink(int drmfd, char *connector_name, > return check_dsc_debugfs(drmfd, connector_name, check_str); > } > > -/* > +/** > * igt_force_dsc_output_format: > * @drmfd: A drm file descriptor > * @connector_name: Name of the libdrm connector we're going to use ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] [v9 2/4] lib/dsc: add helpers for vdsc fractional bpp debugfs entry 2023-09-12 16:22 [igt-dev] [v9 0/4] DSC Fractional BPP Val Support Swati Sharma 2023-09-12 16:22 ` [igt-dev] [v9 1/4] lib/dsc: fix documentation style Swati Sharma @ 2023-09-12 16:22 ` Swati Sharma 2023-09-12 16:22 ` [igt-dev] [v9 3/4] tests/intel/kms_dsc: enable validation for vdsc fractional bpp Swati Sharma ` (5 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Swati Sharma @ 2023-09-12 16:22 UTC (permalink / raw) To: igt-dev Helper functions are added for getting/setting VDSC Fractional BPP debugfs entry. v2: -improved func description (Ankit) -increased buff size (Ankit) -asserted bpp_prec (Ankit) v3: -return 0 on success instead of 1 (Jouni) v4: -rebase v5: -alignment fixes (Ankit) v6: -fix documentation (Bhanu) Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> --- lib/igt_dsc.c | 103 ++++++++++++++++++++++++++++++++++++++++++++++++++ lib/igt_dsc.h | 6 +++ 2 files changed, 109 insertions(+) diff --git a/lib/igt_dsc.c b/lib/igt_dsc.c index 8cb293890..631763b11 100644 --- a/lib/igt_dsc.c +++ b/lib/igt_dsc.c @@ -205,3 +205,106 @@ int igt_force_dsc_output_format(int drmfd, char *connector_name, return write_dsc_debugfs(drmfd, connector_name, "i915_dsc_output_format", buf); } + +/* + * igt_get_dsc_fractional_bpp_supported: + * @drmfd: A drm file descriptor + * @connector_name: Name of the libdrm connector we're going to use + * + * Returns: DSC BPP precision supported by the sink. + * Precision value of + * 16 => 1/16 + * 8 => 1/8 + * 1 => fractional bpp not supported + */ +int igt_get_dsc_fractional_bpp_supported(int drmfd, char *connector_name) +{ + char file_name[128] = {0}; + char buf[512]; + char *start_loc; + int bpp_prec; + + sprintf(file_name, "%s/i915_dsc_fec_support", connector_name); + igt_debugfs_read(drmfd, file_name, buf); + + igt_assert(start_loc = strstr(buf, "DSC_Sink_BPP_Precision: ")); + igt_assert_eq(sscanf(start_loc, "DSC_Sink_BPP_Precision: %d", &bpp_prec), 1); + igt_assert(bpp_prec > 0); + + return bpp_prec; +} + +/* + * igt_is_dsc_fractional_bpp_supported_by_sink: + * @drmfd: A drm file descriptor + * @connector_name: Name of the libdrm connector we're going to use + * + * Returns: True if DSC fractional bpp is supported for the given connector, + * false otherwise. + */ +bool igt_is_dsc_fractional_bpp_supported_by_sink(int drmfd, char *connector_name) +{ + int bpp_prec; + + bpp_prec = igt_get_dsc_fractional_bpp_supported(drmfd, connector_name); + + if (bpp_prec == 1) + return false; + + return true; +} + +static bool check_dsc_fractional_bpp_debugfs(int drmfd, char *connector_name, + const char *check_str) +{ + char file_name[128] = {0}; + char buf[512]; + + sprintf(file_name, "%s/i915_dsc_fractional_bpp", connector_name); + + igt_debugfs_read(drmfd, file_name, buf); + + return strstr(buf, check_str); +} + +/** + * igt_is_force_dsc_fractional_bpp_enabled: + * @drmfd: A drm file descriptor + * @connector_name: Name of the libdrm connector we're going to use + * + * Returns: True if DSC Fractional BPP is force enabled (via debugfs) for the given connector, + * false otherwise. + */ +bool igt_is_force_dsc_fractional_bpp_enabled(int drmfd, char *connector_name) +{ + return check_dsc_fractional_bpp_debugfs(drmfd, connector_name, "Force_DSC_Fractional_BPP_Enable: yes"); +} + +/** + * igt_force_dsc_fractional_bpp_enable: + * @drmfd: A drm file descriptor + * @connector_name: Name of the libdrm connector we're going to use + * + * Returns: 0 on success or negative error code, in case of failure. + */ +int igt_force_dsc_fractional_bpp_enable(int drmfd, char *connector_name) +{ + return write_dsc_debugfs(drmfd, connector_name, "i915_dsc_fractional_bpp", "1"); +} + +/** + * igt_get_dsc_fractional_bpp_debugfs_fd: + * @drmfd: A drm file descriptor + * @connector_name: Name of the libdrm connector we're going to use + * + * Returns: fd of the DSC Fractional BPP debugfs for the given connector, + * else returns -1. + */ +int igt_get_dsc_fractional_bpp_debugfs_fd(int drmfd, char *connector_name) +{ + char file_name[128] = {0}; + + sprintf(file_name, "%s/i915_dsc_fractional_bpp", connector_name); + + return openat(igt_debugfs_dir(drmfd), file_name, O_WRONLY); +} diff --git a/lib/igt_dsc.h b/lib/igt_dsc.h index b58743b5f..7ab0917ec 100644 --- a/lib/igt_dsc.h +++ b/lib/igt_dsc.h @@ -8,6 +8,7 @@ #include "igt_fb.h" #include "igt_kms.h" +#include "igt_core.h" bool igt_is_dsc_supported_by_source(int drmfd); bool igt_is_dsc_supported_by_sink(int drmfd, char *connector_name); @@ -21,5 +22,10 @@ bool igt_is_dsc_output_format_supported_by_sink(int drmfd, char *connector_name, enum dsc_output_format output_format); int igt_force_dsc_output_format(int drmfd, char *connector_name, enum dsc_output_format output_format); +bool igt_is_dsc_fractional_bpp_supported_by_sink(int drmfd, char *connector_name); +int igt_get_dsc_fractional_bpp_supported(int drmfd, char *connector_name); +bool igt_is_force_dsc_fractional_bpp_enabled(int drmfd, char *connector_name); +int igt_force_dsc_fractional_bpp_enable(int drmfd, char *connector_name); +int igt_get_dsc_fractional_bpp_debugfs_fd(int drmfd, char *connector_name); #endif -- 2.25.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [igt-dev] [v9 3/4] tests/intel/kms_dsc: enable validation for vdsc fractional bpp 2023-09-12 16:22 [igt-dev] [v9 0/4] DSC Fractional BPP Val Support Swati Sharma 2023-09-12 16:22 ` [igt-dev] [v9 1/4] lib/dsc: fix documentation style Swati Sharma 2023-09-12 16:22 ` [igt-dev] [v9 2/4] lib/dsc: add helpers for vdsc fractional bpp debugfs entry Swati Sharma @ 2023-09-12 16:22 ` Swati Sharma 2023-09-12 16:22 ` [igt-dev] [v9 4/4] tests/intel/kms_dsc: add test to validate fractional bpp with input bpc Swati Sharma ` (4 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Swati Sharma @ 2023-09-12 16:22 UTC (permalink / raw) To: igt-dev Intel hardware supports fractional bpp from display_ver >= 14. To test fractional bpp, debugfs entry (force_dsc_fractional_bpp) is introduced. From the IGT; we are setting this debugfs entry. However, before setting this debugfs entry, we are checking capability i.e. fractional bpp is supported by platform and sink both. In driver, if force_dsc_fractional_bpp is set then while iterating over output bpp with fractional step size we will continue if output_bpp is computed as integer and allow DSC iff compressed bpp is fractional. v2: -change in igt_describe (Ankit) v3: -rebase v4: -add wrapper for source support of fractional bpp (Ankit) v5: -fix if() condition (Ankit) v6: -rebase v7: -rebase Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> --- tests/intel/kms_dsc.c | 33 +++++++++++++++++++-- tests/intel/kms_dsc_helper.c | 57 ++++++++++++++++++++++++++++++++++++ tests/intel/kms_dsc_helper.h | 4 +++ 3 files changed, 91 insertions(+), 3 deletions(-) diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c index c7dfb509a..43c1dba76 100644 --- a/tests/intel/kms_dsc.c +++ b/tests/intel/kms_dsc.c @@ -1,5 +1,5 @@ /* - * Copyright © 2018 Intel Corporation + * Copyright © 2018-2023 Intel Corporation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -27,6 +27,7 @@ * * Authors: * Manasi Navare <manasi.d.navare@intel.com> + * Swati Sharma <swati2.sharma@intel.com> * */ @@ -54,6 +55,7 @@ * @with-formats: DSC with default parameters and creating fb with diff formats * @with-output-formats: DSC and output format * @with-output-formats-with-bpc: DSC and output format with certain input BPC for the connector + * @fractional-bpp: DSC and fractional bpp with default parameters */ IGT_TEST_DESCRIPTION("Test to validate display stream compression"); @@ -65,6 +67,7 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression"); #define TEST_DSC_BPC (1<<0) #define TEST_DSC_FORMAT (1<<1) #define TEST_DSC_OUTPUT_FORMAT (1<<2) +#define TEST_DSC_FRACTIONAL_BPP (1<<3) /* * Starting from gen11, intel driver supports DSC1.1. For validating @@ -72,7 +75,7 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression"); * If the sink does support DSC, we will validate different * scenarios by forcing dsc. Outline of the tests is as follows: * (i) basic modeset (ii) input bpc (iii) pixel formats - * (iv) output formats + * (iv) output formats (v) fractional bpp * In the basic subtest, we perform modeset with default parameters. * Input bpc and pixel formats subtests, we perform modeset * with different input bpc (12/10/8) and pixel formats (YUV/RGB), @@ -81,9 +84,11 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression"); * However, in the output-format subtest, we verify different * output formats (RGB/YCBCR444/YCBCR420). Also, test is added to * validate output formats with different input bpc (12/10/8). + * Lastly, fractional bpp is tested with default parameters. + * In this, driver will ignore integer compressed bpp value and + * will do modeset with fractional bpp only. */ - typedef struct { int drm_fd; uint32_t devid; @@ -185,6 +190,12 @@ static void update_display(data_t *data, uint32_t test_type) force_dsc_output_format(data->drm_fd, data->output, data->output_format); } + if (test_type & TEST_DSC_FRACTIONAL_BPP) { + igt_debug("DSC fractional bpp is supported on %s\n", data->output->name); + save_force_dsc_fractional_bpp_en(data->drm_fd, data->output); + force_dsc_fractional_bpp_enable(data->drm_fd, data->output); + } + igt_output_set_pipe(output, data->pipe); primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); @@ -244,6 +255,7 @@ static void update_display(data_t *data, uint32_t test_type) enabled ? "ON" : "OFF"); restore_force_dsc_en(); + restore_force_dsc_fractional_bpp_en(); if (test_type & TEST_DSC_BPC) { current_bpc = igt_get_pipe_current_bpc(data->drm_fd, data->pipe); @@ -295,6 +307,11 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc, data->output, data->output_format))) continue; + if ((test_type & TEST_DSC_FRACTIONAL_BPP) && + (!is_dsc_fractional_bpp_supported(data->disp_ver, + data->drm_fd, data->output))) + continue; + if (test_type & TEST_DSC_OUTPUT_FORMAT) snprintf(&name[0][0], LEN, "-%s", kmstest_dsc_output_format_str(data->output_format)); if (test_type & TEST_DSC_FORMAT) @@ -405,6 +422,16 @@ igt_main_args("l", NULL, help_str, opt_handler, &data) } } + igt_describe("Tests fractional compressed bpp functionality if supported " + "by a connector by forcing fractional_bpp on all connectors that support it " + "with default parameter. While finding the optimum compressed bpp, driver will " + "skip over the compressed bpps with integer values. It will go ahead with DSC, " + "iff compressed bpp is fractional, failing in which, it will fail the commit."); + igt_subtest_with_dynamic("dsc-fractional-bpp") + test_dsc(&data, TEST_DSC_FRACTIONAL_BPP, + DEFAULT_BPC, DRM_FORMAT_XRGB8888, + DSC_FORMAT_RGB); + igt_fixture { igt_display_fini(&data.display); drm_close_driver(data.drm_fd); diff --git a/tests/intel/kms_dsc_helper.c b/tests/intel/kms_dsc_helper.c index 44edd5ca9..58057aca3 100644 --- a/tests/intel/kms_dsc_helper.c +++ b/tests/intel/kms_dsc_helper.c @@ -6,7 +6,9 @@ #include "kms_dsc_helper.h" static bool force_dsc_en_orig; +static bool force_dsc_fractional_bpp_en_orig; static int force_dsc_restore_fd = -1; +static int force_dsc_fractional_bpp_restore_fd = -1; void force_dsc_enable(int drmfd, igt_output_t *output) { @@ -51,6 +53,7 @@ void restore_force_dsc_en(void) void kms_dsc_exit_handler(int sig) { restore_force_dsc_en(); + restore_force_dsc_fractional_bpp_en(); } bool is_dsc_supported_by_source(int drmfd) @@ -144,3 +147,57 @@ bool is_dsc_output_format_supported(int drmfd, int disp_ver, igt_output_t *outpu return true; } + +void force_dsc_fractional_bpp_enable(int drmfd, igt_output_t *output) +{ + int ret; + + igt_debug("Forcing DSC Fractional BPP on %s\n", output->name); + ret = igt_force_dsc_fractional_bpp_enable(drmfd, output->name); + igt_assert_f(ret == 0, "forcing dsc fractional bpp debugfs_write failed\n"); +} + +void save_force_dsc_fractional_bpp_en(int drmfd, igt_output_t *output) +{ + force_dsc_fractional_bpp_en_orig = + igt_is_force_dsc_fractional_bpp_enabled(drmfd, output->name); + force_dsc_fractional_bpp_restore_fd = + igt_get_dsc_fractional_bpp_debugfs_fd(drmfd, output->name); + igt_assert(force_dsc_fractional_bpp_restore_fd >= 0); +} + +void restore_force_dsc_fractional_bpp_en(void) +{ + if (force_dsc_fractional_bpp_restore_fd < 0) + return; + + igt_debug("Restoring DSC Fractional BPP enable\n"); + igt_assert(write(force_dsc_fractional_bpp_restore_fd, force_dsc_fractional_bpp_en_orig ? "1" : "0", 1) == 1); + + close(force_dsc_fractional_bpp_restore_fd); + force_dsc_fractional_bpp_restore_fd = -1; +} + +/* DSC fractional bpp is supported on display version 14+ with DSC1.2a */ +static bool is_dsc_fractional_bpp_supported_by_source(int disp_ver) +{ + if (disp_ver < 14) { + igt_debug("DSC fractional bpp not supported on D13 and older platforms\n"); + return false; + } + + return true; +} + +bool is_dsc_fractional_bpp_supported(int disp_ver, int drmfd, igt_output_t *output) +{ + if (!is_dsc_fractional_bpp_supported_by_source(disp_ver)) + return false; + + if (!igt_is_dsc_fractional_bpp_supported_by_sink(drmfd, output->name)) { + igt_debug("DSC fractional bpp not supported on connector %s\n", output->name); + return false; + } + + return true; +} diff --git a/tests/intel/kms_dsc_helper.h b/tests/intel/kms_dsc_helper.h index 28ed56d83..4dbd88fe7 100644 --- a/tests/intel/kms_dsc_helper.h +++ b/tests/intel/kms_dsc_helper.h @@ -34,5 +34,9 @@ void force_dsc_output_format(int drmfd, igt_output_t *output, enum dsc_output_format output_format); bool is_dsc_output_format_supported(int disp_ver, int drmfd, igt_output_t *output, enum dsc_output_format output_format); +void force_dsc_fractional_bpp_enable(int drmfd, igt_output_t *output); +void save_force_dsc_fractional_bpp_en(int drmfd, igt_output_t *output); +void restore_force_dsc_fractional_bpp_en(void); +bool is_dsc_fractional_bpp_supported(int disp_ver, int drmfd, igt_output_t *output); #endif -- 2.25.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [igt-dev] [v9 4/4] tests/intel/kms_dsc: add test to validate fractional bpp with input bpc 2023-09-12 16:22 [igt-dev] [v9 0/4] DSC Fractional BPP Val Support Swati Sharma ` (2 preceding siblings ...) 2023-09-12 16:22 ` [igt-dev] [v9 3/4] tests/intel/kms_dsc: enable validation for vdsc fractional bpp Swati Sharma @ 2023-09-12 16:22 ` Swati Sharma 2023-09-12 17:10 ` [igt-dev] ✗ Fi.CI.BAT: failure for DSC Fractional BPP Val Support (rev11) Patchwork ` (3 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Swati Sharma @ 2023-09-12 16:22 UTC (permalink / raw) To: igt-dev New subtest is added to validate fractional bpp with different input bpc. v2: -rebase v3: -rebase Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> --- tests/intel/kms_dsc.c | 31 +++++++++++-------------------- 1 file changed, 11 insertions(+), 20 deletions(-) diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c index 43c1dba76..86c609f61 100644 --- a/tests/intel/kms_dsc.c +++ b/tests/intel/kms_dsc.c @@ -56,6 +56,7 @@ * @with-output-formats: DSC and output format * @with-output-formats-with-bpc: DSC and output format with certain input BPC for the connector * @fractional-bpp: DSC and fractional bpp with default parameters + * @fractional-bpp-with-bpc: DSC and fractional bpp with certain input BPC for the connector */ IGT_TEST_DESCRIPTION("Test to validate display stream compression"); @@ -69,26 +70,6 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression"); #define TEST_DSC_OUTPUT_FORMAT (1<<2) #define TEST_DSC_FRACTIONAL_BPP (1<<3) -/* - * Starting from gen11, intel driver supports DSC1.1. For validating - * DSC, the first step is to verify if the sink supports DSC. - * If the sink does support DSC, we will validate different - * scenarios by forcing dsc. Outline of the tests is as follows: - * (i) basic modeset (ii) input bpc (iii) pixel formats - * (iv) output formats (v) fractional bpp - * In the basic subtest, we perform modeset with default parameters. - * Input bpc and pixel formats subtests, we perform modeset - * with different input bpc (12/10/8) and pixel formats (YUV/RGB), - * respectively. From MTL+, we can verify DSC YCBCR420 output format. - * The tests are executed with the RGB444 output format by default. - * However, in the output-format subtest, we verify different - * output formats (RGB/YCBCR444/YCBCR420). Also, test is added to - * validate output formats with different input bpc (12/10/8). - * Lastly, fractional bpp is tested with default parameters. - * In this, driver will ignore integer compressed bpp value and - * will do modeset with fractional bpp only. - */ - typedef struct { int drm_fd; uint32_t devid; @@ -432,6 +413,16 @@ igt_main_args("l", NULL, help_str, opt_handler, &data) DEFAULT_BPC, DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB); + igt_describe("Tests fractional compressed bpp functionality if supported " + "by a connector by forcing fractional_bpp on all connectors that support it " + "with certain input BPC for the connector."); + igt_subtest_with_dynamic("dsc-fractional-bpp-with-bpc") { + for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) + test_dsc(&data, TEST_DSC_FRACTIONAL_BPP | TEST_DSC_BPC, + bpc_list[j], DRM_FORMAT_XRGB8888, + DSC_FORMAT_RGB); + } + igt_fixture { igt_display_fini(&data.display); drm_close_driver(data.drm_fd); -- 2.25.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for DSC Fractional BPP Val Support (rev11) 2023-09-12 16:22 [igt-dev] [v9 0/4] DSC Fractional BPP Val Support Swati Sharma ` (3 preceding siblings ...) 2023-09-12 16:22 ` [igt-dev] [v9 4/4] tests/intel/kms_dsc: add test to validate fractional bpp with input bpc Swati Sharma @ 2023-09-12 17:10 ` Patchwork 2023-09-12 17:50 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-09-12 17:10 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3880 bytes --] == Series Details == Series: DSC Fractional BPP Val Support (rev11) URL : https://patchwork.freedesktop.org/series/117493/ State : failure == Summary == CI Bug Log - changes from IGT_7481 -> IGTPW_9776 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9776 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9776, please notify your bug team (lgci.bug.filing@intel.com) 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_9776/index.html Participating hosts (41 -> 36) ------------------------------ Missing (5): bat-dg2-8 bat-dg2-9 fi-snb-2520m fi-hsw-4770 fi-pnv-d510 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9776: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_suspend@basic-s0@smem: - bat-jsl-1: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/bat-jsl-1/igt@gem_exec_suspend@basic-s0@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/bat-jsl-1/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_selftest@live@gt_timelines: - bat-mtlp-8: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/bat-mtlp-8/igt@i915_selftest@live@gt_timelines.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/bat-mtlp-8/igt@i915_selftest@live@gt_timelines.html Known issues ------------ Here are the changes found in IGTPW_9776 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_suspend@basic-s3-without-i915: - bat-jsl-1: [PASS][5] -> [FAIL][6] ([fdo#103375]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/bat-jsl-1/igt@i915_suspend@basic-s3-without-i915.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/bat-jsl-1/igt@i915_suspend@basic-s3-without-i915.html #### Possible fixes #### * igt@kms_chamelium_edid@hdmi-edid-read: - {bat-dg2-13}: [DMESG-WARN][7] ([i915#7952]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][9] ([i915#8668]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7481 -> IGTPW_9776 CI-20190529: 20190529 CI_DRM_13623: eb35627e1c4a3781c161cd04944e403ce6df3e1c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9776: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/index.html IGT_7481: 10897911fefd697969ec5030fdeb8d47d6d6ba43 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_dsc@dsc-fractional-bpp +igt@kms_dsc@dsc-fractional-bpp-with-bpc == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/index.html [-- Attachment #2: Type: text/html, Size: 4621 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for DSC Fractional BPP Val Support (rev11) 2023-09-12 16:22 [igt-dev] [v9 0/4] DSC Fractional BPP Val Support Swati Sharma ` (4 preceding siblings ...) 2023-09-12 17:10 ` [igt-dev] ✗ Fi.CI.BAT: failure for DSC Fractional BPP Val Support (rev11) Patchwork @ 2023-09-12 17:50 ` Patchwork 2023-09-13 11:08 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-09-13 12:30 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-09-12 17:50 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6120 bytes --] == Series Details == Series: DSC Fractional BPP Val Support (rev11) URL : https://patchwork.freedesktop.org/series/117493/ State : success == Summary == CI Bug Log - changes from XEIGT_7481_BAT -> XEIGTPW_9776_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_9776_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - bat-pvc-2: NOTRUN -> [SKIP][1] ([Intel XE#538]) +33 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9776/bat-pvc-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-pvc-2: NOTRUN -> [SKIP][2] ([Intel XE#539]) +6 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9776/bat-pvc-2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_flip@basic-flip-vs-dpms: - bat-pvc-2: NOTRUN -> [SKIP][3] ([Intel XE#541]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9776/bat-pvc-2/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1: - bat-adlp-7: [PASS][4] -> [FAIL][5] ([Intel XE#480]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7481/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9776/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html * igt@kms_force_connector_basic@force-connector-state: - bat-pvc-2: NOTRUN -> [SKIP][6] ([Intel XE#540]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9776/bat-pvc-2/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-pvc-2: NOTRUN -> [SKIP][7] ([Intel XE#537]) +6 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9776/bat-pvc-2/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_prop_blob@basic: - bat-pvc-2: NOTRUN -> [SKIP][8] ([Intel XE#536]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9776/bat-pvc-2/igt@kms_prop_blob@basic.html * igt@kms_psr@primary_page_flip: - bat-pvc-2: NOTRUN -> [SKIP][9] ([Intel XE#535]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9776/bat-pvc-2/igt@kms_psr@primary_page_flip.html * igt@xe_evict@evict-beng-small-external: - bat-pvc-2: NOTRUN -> [FAIL][10] ([Intel XE#389]) +2 other tests fail [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9776/bat-pvc-2/igt@xe_evict@evict-beng-small-external.html * igt@xe_evict@evict-small-cm: - bat-pvc-2: NOTRUN -> [DMESG-FAIL][11] ([Intel XE#482]) +2 other tests dmesg-fail [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9776/bat-pvc-2/igt@xe_evict@evict-small-cm.html * igt@xe_guc_pc@freq_range_idle: - bat-pvc-2: NOTRUN -> [SKIP][12] ([Intel XE#533]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9776/bat-pvc-2/igt@xe_guc_pc@freq_range_idle.html * igt@xe_huc_copy@huc_copy: - bat-pvc-2: NOTRUN -> [SKIP][13] ([Intel XE#255]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9776/bat-pvc-2/igt@xe_huc_copy@huc_copy.html * igt@xe_intel_bb@render: - bat-pvc-2: NOTRUN -> [SKIP][14] ([Intel XE#532]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9776/bat-pvc-2/igt@xe_intel_bb@render.html * igt@xe_live_ktest@migrate: - bat-pvc-2: NOTRUN -> [SKIP][15] ([Intel XE#483]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9776/bat-pvc-2/igt@xe_live_ktest@migrate.html * igt@xe_pm_residency@gt-c6-on-idle: - bat-pvc-2: NOTRUN -> [SKIP][16] ([Intel XE#531]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9776/bat-pvc-2/igt@xe_pm_residency@gt-c6-on-idle.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1: - bat-adlp-7: [FAIL][17] ([Intel XE#480]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7481/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9776/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/389 [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/482 [Intel XE#483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/483 [Intel XE#531]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/531 [Intel XE#532]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/532 [Intel XE#533]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/533 [Intel XE#535]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/535 [Intel XE#536]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/536 [Intel XE#537]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/537 [Intel XE#538]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/538 [Intel XE#539]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/539 [Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540 [Intel XE#541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/541 Build changes ------------- * IGT: IGT_7481 -> IGTPW_9776 IGTPW_9776: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/index.html IGT_7481: 10897911fefd697969ec5030fdeb8d47d6d6ba43 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-368-b2c3b639e43d697c7aabb118f2e27eac926cd771: b2c3b639e43d697c7aabb118f2e27eac926cd771 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9776/index.html [-- Attachment #2: Type: text/html, Size: 7120 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for DSC Fractional BPP Val Support (rev11) 2023-09-12 16:22 [igt-dev] [v9 0/4] DSC Fractional BPP Val Support Swati Sharma ` (5 preceding siblings ...) 2023-09-12 17:50 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork @ 2023-09-13 11:08 ` Patchwork 2023-09-13 12:30 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-09-13 11:08 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3551 bytes --] == Series Details == Series: DSC Fractional BPP Val Support (rev11) URL : https://patchwork.freedesktop.org/series/117493/ State : success == Summary == CI Bug Log - changes from IGT_7481 -> IGTPW_9776 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/index.html Participating hosts (41 -> 36) ------------------------------ Missing (5): bat-dg2-8 bat-dg2-9 fi-snb-2520m fi-hsw-4770 fi-pnv-d510 Known issues ------------ Here are the changes found in IGTPW_9776 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s0@smem: - bat-jsl-1: [PASS][1] -> [INCOMPLETE][2] ([i915#9275]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/bat-jsl-1/igt@gem_exec_suspend@basic-s0@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/bat-jsl-1/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_selftest@live@gt_timelines: - bat-mtlp-8: [PASS][3] -> [INCOMPLETE][4] ([i915#9324]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/bat-mtlp-8/igt@i915_selftest@live@gt_timelines.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/bat-mtlp-8/igt@i915_selftest@live@gt_timelines.html * igt@i915_suspend@basic-s3-without-i915: - bat-jsl-1: [PASS][5] -> [FAIL][6] ([fdo#103375]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/bat-jsl-1/igt@i915_suspend@basic-s3-without-i915.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/bat-jsl-1/igt@i915_suspend@basic-s3-without-i915.html #### Possible fixes #### * igt@kms_chamelium_edid@hdmi-edid-read: - {bat-dg2-13}: [DMESG-WARN][7] ([i915#7952]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][9] ([i915#8668]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 [i915#9324]: https://gitlab.freedesktop.org/drm/intel/issues/9324 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7481 -> IGTPW_9776 CI-20190529: 20190529 CI_DRM_13623: eb35627e1c4a3781c161cd04944e403ce6df3e1c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9776: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/index.html IGT_7481: 10897911fefd697969ec5030fdeb8d47d6d6ba43 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_dsc@dsc-fractional-bpp +igt@kms_dsc@dsc-fractional-bpp-with-bpc == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/index.html [-- Attachment #2: Type: text/html, Size: 4277 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for DSC Fractional BPP Val Support (rev11) 2023-09-12 16:22 [igt-dev] [v9 0/4] DSC Fractional BPP Val Support Swati Sharma ` (6 preceding siblings ...) 2023-09-13 11:08 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork @ 2023-09-13 12:30 ` Patchwork 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-09-13 12:30 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 96575 bytes --] == Series Details == Series: DSC Fractional BPP Val Support (rev11) URL : https://patchwork.freedesktop.org/series/117493/ State : failure == Summary == CI Bug Log - changes from IGT_7481_full -> IGTPW_9776_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9776_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9776_full, please notify your bug team (lgci.bug.filing@intel.com) 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_9776/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9776_full: ### IGT changes ### #### Possible regressions #### * igt@dumb_buffer@create-clear: - shard-mtlp: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-5/igt@dumb_buffer@create-clear.html * igt@gem_exec_parallel@fds@bcs0: - shard-mtlp: [PASS][2] -> [ABORT][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-1/igt@gem_exec_parallel@fds@bcs0.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-5/igt@gem_exec_parallel@fds@bcs0.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][4] -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-glk3/igt@gen9_exec_parse@allowed-single.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-glk8/igt@gen9_exec_parse@allowed-single.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs: - shard-mtlp: [PASS][6] -> [FAIL][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-1/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-5/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs.html * igt@kms_dsc@dsc-fractional-bpp (NEW): - shard-dg2: NOTRUN -> [SKIP][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-6/igt@kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][9] +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][10] +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-14/igt@kms_dsc@dsc-fractional-bpp.html - shard-tglu: NOTRUN -> [SKIP][11] +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-7/igt@kms_dsc@dsc-fractional-bpp.html - shard-mtlp: NOTRUN -> [SKIP][12] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-1/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_universal_plane@cursor-fb-leak-pipe-b: - shard-apl: [PASS][13] -> [FAIL][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-apl1/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-apl4/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html #### Warnings #### * igt@gem_userptr_blits@vma-merge: - shard-apl: [FAIL][15] ([i915#3318]) -> [FAIL][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-apl3/igt@gem_userptr_blits@vma-merge.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-apl2/igt@gem_userptr_blits@vma-merge.html - shard-glk: [FAIL][17] ([i915#3318]) -> [FAIL][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-glk9/igt@gem_userptr_blits@vma-merge.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-glk2/igt@gem_userptr_blits@vma-merge.html New tests --------- New tests have been introduced between IGT_7481_full and IGTPW_9776_full: ### New IGT tests (10) ### * igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_crc@cursor-random-64x21@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-fractional-bpp: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@kms_plane_multiple@tiling-y@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_multiple@tiling-y@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_multiple@tiling-y@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9776_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#8411]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-1/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8411]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-2/igt@api_intel_bb@object-reloc-purge-cache.html - shard-dg1: NOTRUN -> [SKIP][21] ([i915#8411]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-17/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#7701]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-4/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#8414]) +22 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-3/igt@drm_fdinfo@busy-check-all@vecs1.html * igt@drm_fdinfo@busy-idle-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#8414]) +4 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-19/igt@drm_fdinfo@busy-idle-check-all@vcs1.html * igt@drm_fdinfo@most-busy-check-all@vcs0: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#8414]) +14 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-5/igt@drm_fdinfo@most-busy-check-all@vcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][26] -> [FAIL][27] ([i915#7742]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@feature_discovery@chamelium: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#4854]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-12/igt@feature_discovery@chamelium.html * igt@feature_discovery@display-3x: - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#1839]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-2/igt@feature_discovery@display-3x.html * igt@feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#1839]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-10/igt@feature_discovery@display-4x.html * igt@gem_ccs@block-copy-compressed: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#3555]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-3/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][32] -> [INCOMPLETE][33] ([i915#7297]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-11/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-10/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#7697]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-2/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#6335]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#6335]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-7/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_param@set-priority-not-supported: - shard-dg1: NOTRUN -> [SKIP][37] ([fdo#109314]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-15/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: [PASS][38] -> [FAIL][39] ([i915#2410]) +2 other tests fail [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-3/igt@gem_ctx_persistence@engines-hostile@vcs0.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-3/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#8555]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@legacy-engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#1099]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-snb6/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html * igt@gem_eio@hibernate: - shard-dg2: [PASS][42] -> [ABORT][43] ([i915#7975] / [i915#8213]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-11/igt@gem_eio@hibernate.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-7/igt@gem_eio@hibernate.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][44] -> [FAIL][45] ([i915#5784]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg1-19/igt@gem_eio@reset-stress.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-17/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4771]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-5/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@invalid-bonds: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4036]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-6/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#6334]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-3/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fair@basic-pace: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3539]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-3/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][50] -> [FAIL][51] ([i915#2842]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [PASS][52] -> [FAIL][53] ([i915#2842]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fence@concurrent: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4812]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-6/igt@gem_exec_fence@concurrent.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4812]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-10/igt@gem_exec_fence@submit3.html - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4812]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-19/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#3711]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-3/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#3539] / [i915#4852]) +4 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-6/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_reloc@basic-cpu-wc-active: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#3281]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-wc-active.html * igt@gem_exec_reloc@basic-write-cpu-active: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#3281]) +11 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-1/igt@gem_exec_reloc@basic-write-cpu-active.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#3281]) +8 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-1/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@out-order@vecs0: - shard-glk: [PASS][62] -> [DMESG-WARN][63] ([i915#118]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-glk9/igt@gem_exec_schedule@out-order@vecs0.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-glk8/igt@gem_exec_schedule@out-order@vecs0.html * igt@gem_exec_schedule@preempt-hang@vcs0: - shard-mtlp: [PASS][64] -> [ABORT][65] ([i915#9262]) +7 other tests abort [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-2/igt@gem_exec_schedule@preempt-hang@vcs0.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-6/igt@gem_exec_schedule@preempt-hang@vcs0.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4537] / [i915#4812]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-contexts.html - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4537] / [i915#4812]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-3/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][68] ([i915#7975] / [i915#8213]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-2/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4860]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-1/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4860]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-2/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_swapping@massive: - shard-tglu: NOTRUN -> [SKIP][71] ([i915#4613]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-8/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4613]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-2/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][73] -> [TIMEOUT][74] ([i915#5493]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8289]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-8/igt@gem_media_fill@media-fill.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#284]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-3/igt@gem_media_vme.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4083]) +5 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-3/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4077]) +8 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-1/igt@gem_mmap_gtt@big-bo-tiledy.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4077]) +12 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-7/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_gtt@flink-race: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4077]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-14/igt@gem_mmap_gtt@flink-race.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4083]) +6 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-10/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@write-cpu-read-wc: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4083]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-13/igt@gem_mmap_wc@write-cpu-read-wc.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#3282]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4270]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#4270]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-6/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#3282]) +8 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-3/igt@gem_readwrite@beyond-eob.html - shard-dg1: NOTRUN -> [SKIP][87] ([i915#3282]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-18/igt@gem_readwrite@beyond-eob.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#3282]) +4 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-5/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#8428]) +5 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-6/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#4079]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#4079]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-10/igt@gem_set_tiling_vs_gtt.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][92] ([i915#5889]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-3/igt@gem_spin_batch@spin-all-new.html * igt@gem_spin_batch@user-each: - shard-mtlp: NOTRUN -> [DMESG-FAIL][93] ([i915#8962] / [i915#9121]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-4/igt@gem_spin_batch@user-each.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#3297]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-6/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#3297]) +4 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-1/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#4880]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#3297] / [i915#4880]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#3297]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-12/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@readonly-unsync: - shard-tglu: NOTRUN -> [SKIP][99] ([i915#3297]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-5/igt@gem_userptr_blits@readonly-unsync.html * igt@gen3_render_tiledy_blits: - shard-mtlp: NOTRUN -> [SKIP][100] ([fdo#109289]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-8/igt@gen3_render_tiledy_blits.html * igt@gen7_exec_parse@basic-rejected: - shard-dg2: NOTRUN -> [SKIP][101] ([fdo#109289]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-2/igt@gen7_exec_parse@basic-rejected.html * igt@gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#2856]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-6/igt@gen9_exec_parse@allowed-all.html - shard-tglu: NOTRUN -> [SKIP][103] ([i915#2527] / [i915#2856]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-4/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#2856]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-2/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@unaligned-jump: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#2527]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-19/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_hwmon@hwmon-read: - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#7707]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-2/igt@i915_hwmon@hwmon-read.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-mtlp: [PASS][107] -> [FAIL][108] ([i915#8691]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-8/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][109] ([i915#2681]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-dg1: [PASS][110] -> [FAIL][111] ([i915#3591]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#1397]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-3/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [PASS][113] -> [SKIP][114] ([i915#1397]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-2/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#1397]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-mtlp: NOTRUN -> [SKIP][116] ([fdo#109293]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-6/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][117] -> [SKIP][118] ([i915#1397]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rpm@pc8-residency: - shard-dg2: NOTRUN -> [SKIP][119] ([fdo#109506]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-3/igt@i915_pm_rpm@pc8-residency.html * igt@i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#6621]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-1/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#6621]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html - shard-dg1: NOTRUN -> [SKIP][122] ([i915#6621]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-19/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@thresholds@gt1: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#8925]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-8/igt@i915_pm_rps@thresholds@gt1.html * igt@i915_selftest@live@gt_engines: - shard-mtlp: NOTRUN -> [FAIL][124] ([i915#9278] / [i915#9290]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-1/igt@i915_selftest@live@gt_engines.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [PASS][125] -> [DMESG-FAIL][126] ([i915#5334]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-apl2/igt@i915_selftest@live@gt_heartbeat.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-apl2/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_pm: - shard-mtlp: NOTRUN -> [DMESG-FAIL][127] ([i915#9270]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-1/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@requests: - shard-mtlp: NOTRUN -> [ABORT][128] ([i915#9262]) +4 other tests abort [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-1/igt@i915_selftest@live@requests.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][129] ([i915#9311] / [i915#9312]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-2/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@debugfs-reader: - shard-snb: NOTRUN -> [DMESG-WARN][130] ([i915#8841]) +1 other test dmesg-warn [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-snb6/igt@i915_suspend@debugfs-reader.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#4212]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-3/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#8502]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-4-rc_ccs-cc: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#8709]) +11 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-4-rc_ccs-cc.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][134] ([i915#8247]) +3 other tests fail [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-12/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-d-dp-4: - shard-dg2: NOTRUN -> [FAIL][135] ([i915#8247]) +3 other tests fail [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html * igt@kms_async_flips@invalid-async-flip: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#6228]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-6/igt@kms_async_flips@invalid-async-flip.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6229]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-4/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-apl: NOTRUN -> [SKIP][138] ([fdo#109271] / [i915#1769]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-apl6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#1769] / [i915#3555]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][140] ([fdo#111614]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-7/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][141] ([fdo#111615] / [i915#5286]) +2 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html - shard-rkl: NOTRUN -> [SKIP][142] ([i915#5286]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [FAIL][143] ([i915#5138]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#4538] / [i915#5286]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-17/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][145] ([fdo#111614] / [i915#3638]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][146] ([fdo#111614]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-11/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#6187]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [PASS][148] -> [FAIL][149] ([i915#3743]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][150] ([fdo#111615]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-10/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#4538] / [i915#5190]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][152] ([fdo#111615]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-13/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#5190]) +17 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-11/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][154] ([fdo#110723]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][155] ([fdo#111615]) +11 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@pipe-a-bad-aux-stride-4_tiled_mtl_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#5354] / [i915#6095]) +3 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-17/igt@kms_ccs@pipe-a-bad-aux-stride-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#6095]) +28 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-8/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#3689] / [i915#3886] / [i915#5354]) +10 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-1/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html - shard-rkl: NOTRUN -> [SKIP][159] ([i915#3886] / [i915#5354] / [i915#6095]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-1/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html - shard-tglu: NOTRUN -> [SKIP][160] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-3/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#3734] / [i915#5354] / [i915#6095]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-6/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#3886] / [i915#5354] / [i915#6095]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-8/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-14/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][164] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-6/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#3689] / [i915#5354]) +27 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-6/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#3689] / [i915#5354] / [i915#6095]) +4 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-15/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#5354] / [i915#6095]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-1/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html - shard-tglu: NOTRUN -> [SKIP][168] ([i915#3689] / [i915#5354] / [i915#6095]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-8/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#3886] / [i915#6095]) +4 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-1/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_mtl_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#5354] / [i915#6095]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-10/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#5354]) +5 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-4/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#4087]) +3 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#7828]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-13/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-0-50: - shard-mtlp: NOTRUN -> [SKIP][174] ([fdo#111827]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-7/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][175] ([fdo#111827]) +3 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-1/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#7828]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-8/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#7828]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-6/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#7828]) +9 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-1/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#7828]) +10 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-10/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_color@deep-color: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#3555]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-6/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#3299]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-6/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][182] ([i915#7173]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-4.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#7118]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-2/igt@kms_content_protection@srm.html * igt@kms_content_protection@srm@pipe-a-dp-1: - shard-apl: NOTRUN -> [TIMEOUT][184] ([i915#7173]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-apl1/igt@kms_content_protection@srm@pipe-a-dp-1.html * igt@kms_content_protection@type1: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#7116]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-15/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][186] ([fdo#109279] / [i915#3359]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-10/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3359]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#3359]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#8814]) +5 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-mtlp: NOTRUN -> [FAIL][190] ([i915#8248]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][191] ([fdo#109274] / [i915#5354]) +4 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-snb: NOTRUN -> [SKIP][192] ([fdo#109271] / [fdo#111767]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][193] -> [FAIL][194] ([i915#2346]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#4103] / [i915#4213]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#4213]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#8588]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-3/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][198] ([fdo#109271]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-glk3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#3555]) +12 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-3/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#8812]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-7/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#3840]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-10/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#3555] / [i915#3840]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-6/igt@kms_dsc@dsc-with-formats.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg1: NOTRUN -> [SKIP][203] ([fdo#111767] / [fdo#111825]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-12/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-rkl: NOTRUN -> [SKIP][204] ([fdo#111825]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html - shard-tglu: NOTRUN -> [SKIP][205] ([fdo#109274] / [i915#3637]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-10/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][206] ([fdo#111767] / [i915#3637]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html - shard-dg2: NOTRUN -> [SKIP][207] ([fdo#109274] / [fdo#111767]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-10/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#3637]) +8 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-8/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][209] ([fdo#109274]) +6 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-1/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#8381]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-2/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-suspend@b-edp1: - shard-mtlp: NOTRUN -> [FAIL][211] ([fdo#103375]) +4 other tests fail [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-6/igt@kms_flip@flip-vs-suspend@b-edp1.html * igt@kms_flip@flip-vs-suspend@d-dp4: - shard-dg2: NOTRUN -> [FAIL][212] ([fdo#103375]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-11/igt@kms_flip@flip-vs-suspend@d-dp4.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#2672]) +6 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][214] ([i915#2587] / [i915#2672]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#2672] / [i915#3555]) +2 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#2672]) +6 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8810]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#5274]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#8708]) +17 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: - shard-dg2: [PASS][220] -> [FAIL][221] ([i915#6880]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#8708]) +13 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#5354]) +58 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#5439]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#5460]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#3458]) +5 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#8708]) +3 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][228] ([fdo#109280]) +3 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][229] ([fdo#110189]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#3458]) +17 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][231] ([fdo#111825] / [i915#1825]) +7 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#1825]) +32 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][233] ([fdo#111825]) +8 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#3023]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-mtlp: [PASS][235] -> [FAIL][236] ([fdo#103375]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-suspend.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-7/igt@kms_hdr@static-toggle-suspend.html - shard-tglu: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-8/igt@kms_hdr@static-toggle-suspend.html * igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#6403]) +3 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-3/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#4816]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg1: NOTRUN -> [SKIP][241] ([fdo#109289]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-16/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1: - shard-apl: [PASS][242] -> [INCOMPLETE][243] ([i915#180]) +1 other test incomplete [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-apl4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes: - shard-mtlp: [PASS][244] -> [DMESG-WARN][245] ([i915#9262]) +2 other tests dmesg-warn [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#3582]) +7 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-2/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#3546]) +4 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#5176]) +5 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#5176]) +7 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-2/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#5176]) +11 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#5176]) +11 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1: - shard-snb: NOTRUN -> [SKIP][252] ([fdo#109271]) +121 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-snb2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][253] ([i915#5176]) +7 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-10/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#5235]) +23 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#5235]) +7 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#5235]) +19 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-19/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#6524] / [i915#6805]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-10/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#658]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-19/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][259] ([i915#658]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-7/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-apl: NOTRUN -> [SKIP][260] ([fdo#109271] / [i915#658]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-apl3/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#658]) +5 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-11/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][262] ([fdo#111068] / [i915#658]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-12/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@cursor_mmap_gtt: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#1072]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-17/igt@kms_psr@cursor_mmap_gtt.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#1072]) +4 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-2/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_psr@sprite_blt: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#1072]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-2/igt@kms_psr@sprite_blt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#5461] / [i915#658]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#4235]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-3/igt@kms_rotation_crc@primary-rotation-270.html - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#4235]) +2 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-3/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#5289]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#4235] / [i915#5190]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_selftest@drm_format: - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#8661]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-2/igt@kms_selftest@drm_format.html * igt@kms_setmode@clone-exclusive-crtc: - shard-apl: NOTRUN -> [SKIP][272] ([fdo#109271]) +38 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-apl3/igt@kms_setmode@clone-exclusive-crtc.html - shard-tglu: NOTRUN -> [SKIP][273] ([i915#3555]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-8/igt@kms_setmode@clone-exclusive-crtc.html - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8809]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-2/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#8823]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#8623]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-6/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak-pipe-c: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#4070] / [i915#6768]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-2/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html * igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#4070] / [i915#533] / [i915#6768]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-1/igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#2437]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-10/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@global-sseu-config-invalid: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#7387]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-8/igt@perf@global-sseu-config-invalid.html - shard-dg2: NOTRUN -> [SKIP][281] ([i915#7387]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-2/igt@perf@global-sseu-config-invalid.html * igt@perf@polling-small-buf: - shard-mtlp: NOTRUN -> [FAIL][282] ([i915#1722]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-2/igt@perf@polling-small-buf.html * igt@perf@polling@0-rcs0: - shard-mtlp: NOTRUN -> [FAIL][283] ([i915#9259]) +3 other tests fail [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-1/igt@perf@polling@0-rcs0.html * igt@perf@rc6-disable: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#7692]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-6/igt@perf@rc6-disable.html * igt@perf_pmu@semaphore-busy@rcs0: - shard-mtlp: NOTRUN -> [FAIL][285] ([i915#4349]) +11 other tests fail [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-2/igt@perf_pmu@semaphore-busy@rcs0.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][286] ([i915#7331]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#3291] / [i915#3708]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-10/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#3708] / [i915#4077]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-8/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-rkl: NOTRUN -> [SKIP][289] ([fdo#109295] / [i915#3708]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#4818]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-3/igt@tools_test@sysfs_l3_parity.html - shard-tglu: NOTRUN -> [SKIP][291] ([fdo#109307]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-4/igt@tools_test@sysfs_l3_parity.html - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#4818]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-8/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_submit_cl@bad-multisync-out-sync: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#2575]) +14 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-11/igt@v3d/v3d_submit_cl@bad-multisync-out-sync.html * igt@v3d/v3d_submit_cl@bad-perfmon: - shard-rkl: NOTRUN -> [SKIP][294] ([fdo#109315]) +2 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-6/igt@v3d/v3d_submit_cl@bad-perfmon.html * igt@v3d/v3d_submit_csd@bad-bo: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#2575]) +12 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-6/igt@v3d/v3d_submit_csd@bad-bo.html * igt@v3d/v3d_submit_csd@bad-multisync-pad: - shard-dg1: NOTRUN -> [SKIP][296] ([i915#2575]) +4 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-18/igt@v3d/v3d_submit_csd@bad-multisync-pad.html * igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#7711]) +2 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-7/igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done.html - shard-tglu: NOTRUN -> [SKIP][298] ([i915#2575]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-8/igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done.html * igt@vc4/vc4_perfmon@create-single-perfmon: - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#7711]) +10 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-2/igt@vc4/vc4_perfmon@create-single-perfmon.html * igt@vc4/vc4_wait_seqno@bad-seqno-1ns: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#7711]) +8 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-2/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html #### Possible fixes #### * igt@device_reset@unbind-reset-rebind: - shard-dg2: [INCOMPLETE][301] ([i915#1982] / [i915#5507]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-10/igt@device_reset@unbind-reset-rebind.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-3/igt@device_reset@unbind-reset-rebind.html * igt@gem_ctx_persistence@engines-hostile@ccs0: - shard-mtlp: [ABORT][303] ([i915#9262]) -> [PASS][304] [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-3/igt@gem_ctx_persistence@engines-hostile@ccs0.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-3/igt@gem_ctx_persistence@engines-hostile@ccs0.html * igt@gem_exec_endless@dispatch@vecs0: - shard-mtlp: [TIMEOUT][305] ([i915#3778] / [i915#7016]) -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-2/igt@gem_exec_endless@dispatch@vecs0.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-8/igt@gem_exec_endless@dispatch@vecs0.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][307] ([i915#2846]) -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [FAIL][309] ([i915#2842]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu: [ABORT][311] ([i915#7975] / [i915#8213]) -> [PASS][312] [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-5/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_mmap_offset@clear@smem0: - shard-dg1: [FAIL][313] ([i915#7962]) -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg1-14/igt@gem_mmap_offset@clear@smem0.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-19/igt@gem_mmap_offset@clear@smem0.html * igt@gem_spin_batch@user-each: - shard-dg2: [TIMEOUT][315] ([i915#7753]) -> [PASS][316] [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-2/igt@gem_spin_batch@user-each.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-1/igt@gem_spin_batch@user-each.html * igt@gen9_exec_parse@allowed-all: - shard-apl: [ABORT][317] ([i915#5566]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-apl7/igt@gen9_exec_parse@allowed-all.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-apl3/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [INCOMPLETE][319] ([i915#5566]) -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-apl1/igt@gen9_exec_parse@allowed-single.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-apl3/igt@gen9_exec_parse@allowed-single.html * igt@i915_hangman@gt-engine-error@vcs0: - shard-mtlp: [FAIL][321] ([i915#7069]) -> [PASS][322] [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-4/igt@i915_hangman@gt-engine-error@vcs0.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-8/igt@i915_hangman@gt-engine-error@vcs0.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-rkl: [SKIP][323] ([i915#1397]) -> [PASS][324] +1 other test pass [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-1/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][325] ([i915#1397]) -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-11/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_selftest@live@gt_lrc: - shard-tglu: [DMESG-FAIL][327] -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-tglu-2/igt@i915_selftest@live@gt_lrc.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-8/igt@i915_selftest@live@gt_lrc.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][329] ([i915#3743]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][331] ([i915#2346]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html - shard-apl: [FAIL][333] ([i915#2346]) -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: [INCOMPLETE][335] ([i915#7753]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-5/igt@kms_fbcon_fbt@fbc-suspend.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-6/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: [FAIL][337] ([i915#6880]) -> [PASS][338] +1 other test pass [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [SKIP][339] ([i915#433]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-tglu-9/igt@kms_hdmi_inject@inject-audio.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-10/igt@kms_hdmi_inject@inject-audio.html * {igt@kms_pm_dc@dc9-dpms}: - shard-tglu: [SKIP][341] ([i915#4281]) -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-2/igt@kms_pm_dc@dc9-dpms.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [FAIL][343] ([i915#4349]) -> [PASS][344] +2 other tests pass [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg1-18/igt@perf_pmu@semaphore-busy@vcs1.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-15/igt@perf_pmu@semaphore-busy@vcs1.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [INCOMPLETE][345] ([i915#1982] / [i915#4983]) -> [INCOMPLETE][346] ([i915#4983]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg1-19/igt@device_reset@unbind-reset-rebind.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html * igt@feature_discovery@chamelium: - shard-tglu: [SKIP][347] ([fdo#111827]) -> [SKIP][348] ([fdo#111827] / [i915#2065]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-tglu-7/igt@feature_discovery@chamelium.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-tglu-3/igt@feature_discovery@chamelium.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][349] ([i915#7061] / [i915#8617]) -> [DMESG-WARN][350] ([i915#1982] / [i915#7061] / [i915#8617]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_async_flips@crc@pipe-d-edp-1: - shard-mtlp: [FAIL][351] ([i915#8247]) -> [DMESG-FAIL][352] ([i915#8561]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-3/igt@kms_async_flips@crc@pipe-d-edp-1.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-mtlp-2/igt@kms_async_flips@crc@pipe-d-edp-1.html * igt@kms_content_protection@mei_interface: - shard-dg1: [SKIP][353] ([fdo#109300]) -> [SKIP][354] ([i915#7116]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg1-13/igt@kms_content_protection@mei_interface.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-16/igt@kms_content_protection@mei_interface.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][355] ([i915#3955]) -> [SKIP][356] ([fdo#110189] / [i915#3955]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-7/igt@kms_fbcon_fbt@psr.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-2/igt@kms_fbcon_fbt@psr.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][357] ([i915#4070] / [i915#4816]) -> [SKIP][358] ([i915#4816]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@sprite_plane_onoff: - shard-dg1: [SKIP][359] ([i915#1072]) -> [SKIP][360] ([i915#1072] / [i915#4078]) +2 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg1-17/igt@kms_psr@sprite_plane_onoff.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/shard-dg1-12/igt@kms_psr@sprite_plane_onoff.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2065]: https://gitlab.freedesktop.org/drm/intel/issues/2065 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3711]: https://gitlab.freedesktop.org/drm/intel/issues/3711 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5507]: https://gitlab.freedesktop.org/drm/intel/issues/5507 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6403]: https://gitlab.freedesktop.org/drm/intel/issues/6403 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#7016]: https://gitlab.freedesktop.org/drm/intel/issues/7016 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7692]: https://gitlab.freedesktop.org/drm/intel/issues/7692 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7753]: https://gitlab.freedesktop.org/drm/intel/issues/7753 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7962]: https://gitlab.freedesktop.org/drm/intel/issues/7962 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121 [i915#9259]: https://gitlab.freedesktop.org/drm/intel/issues/9259 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9270]: https://gitlab.freedesktop.org/drm/intel/issues/9270 [i915#9278]: https://gitlab.freedesktop.org/drm/intel/issues/9278 [i915#9290]: https://gitlab.freedesktop.org/drm/intel/issues/9290 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9312]: https://gitlab.freedesktop.org/drm/intel/issues/9312 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7481 -> IGTPW_9776 CI-20190529: 20190529 CI_DRM_13623: eb35627e1c4a3781c161cd04944e403ce6df3e1c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9776: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/index.html IGT_7481: 10897911fefd697969ec5030fdeb8d47d6d6ba43 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9776/index.html [-- Attachment #2: Type: text/html, Size: 118082 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2023-09-13 12:30 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-09-12 16:22 [igt-dev] [v9 0/4] DSC Fractional BPP Val Support Swati Sharma 2023-09-12 16:22 ` [igt-dev] [v9 1/4] lib/dsc: fix documentation style Swati Sharma 2023-09-13 11:26 ` Modem, Bhanuprakash 2023-09-12 16:22 ` [igt-dev] [v9 2/4] lib/dsc: add helpers for vdsc fractional bpp debugfs entry Swati Sharma 2023-09-12 16:22 ` [igt-dev] [v9 3/4] tests/intel/kms_dsc: enable validation for vdsc fractional bpp Swati Sharma 2023-09-12 16:22 ` [igt-dev] [v9 4/4] tests/intel/kms_dsc: add test to validate fractional bpp with input bpc Swati Sharma 2023-09-12 17:10 ` [igt-dev] ✗ Fi.CI.BAT: failure for DSC Fractional BPP Val Support (rev11) Patchwork 2023-09-12 17:50 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork 2023-09-13 11:08 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-09-13 12:30 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox