* [igt-dev] [PATCH i-g-t v4 0/3] check dsc hardware capability
@ 2023-06-14 16:54 Swati Sharma
2023-06-14 16:54 ` [igt-dev] [PATCH i-g-t 1/3] tests: s/igt_is_dsc_supported/igt_is_dsc_supported_by_sink Swati Sharma
` (8 more replies)
0 siblings, 9 replies; 12+ messages in thread
From: Swati Sharma @ 2023-06-14 16:54 UTC (permalink / raw)
To: igt-dev
Instead of assuming dsc is supported gen11+, lets use has_dsc
flag in i915_capability to check h/w support.
Swati Sharma (3):
tests: s/igt_is_dsc_supported/igt_is_dsc_supported_by_sink
tests: s/check_dsc_on_connector/is_dsc_supported_by_sink
tests: add igt_is_dsc_supported_by_source()
lib/igt_dsc.c | 28 +++++++++++++++++++++++++---
lib/igt_dsc.h | 3 ++-
tests/i915/kms_dsc.c | 4 ++--
tests/i915/kms_dsc_helper.c | 14 ++++++++++++--
tests/i915/kms_dsc_helper.h | 3 ++-
tests/i915/kms_psr2_sf.c | 2 +-
tests/kms_invalid_mode.c | 5 +++--
7 files changed, 47 insertions(+), 12 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] [PATCH i-g-t 1/3] tests: s/igt_is_dsc_supported/igt_is_dsc_supported_by_sink
2023-06-14 16:54 [igt-dev] [PATCH i-g-t v4 0/3] check dsc hardware capability Swati Sharma
@ 2023-06-14 16:54 ` Swati Sharma
2023-06-14 16:54 ` [igt-dev] [PATCH i-g-t 2/3] tests: s/check_dsc_on_connector/is_dsc_supported_by_sink Swati Sharma
` (7 subsequent siblings)
8 siblings, 0 replies; 12+ messages in thread
From: Swati Sharma @ 2023-06-14 16:54 UTC (permalink / raw)
To: igt-dev
Rename helper.
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
lib/igt_dsc.c | 6 +++---
lib/igt_dsc.h | 2 +-
tests/i915/kms_dsc_helper.c | 2 +-
tests/kms_invalid_mode.c | 2 +-
4 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/lib/igt_dsc.c b/lib/igt_dsc.c
index 9e1ab9b1..6cbd8bae 100644
--- a/lib/igt_dsc.c
+++ b/lib/igt_dsc.c
@@ -42,13 +42,13 @@ static int write_dsc_debugfs(int drmfd, char *connector_name, const char *file_n
}
/*
- * igt_is_dsc_supported:
+ * igt_is_dsc_supported_by_sink:
* @drmfd: A drm file descriptor
* @connector_name: Name of the libdrm connector we're going to use
*
- * Returns: True if DSC is supported for the given connector, false otherwise.
+ * Returns: True if DSC is supported for the given connector/sink, false otherwise.
*/
-bool igt_is_dsc_supported(int drmfd, char *connector_name)
+bool igt_is_dsc_supported_by_sink(int drmfd, char *connector_name)
{
return check_dsc_debugfs(drmfd, connector_name, "DSC_Sink_Support: yes");
}
diff --git a/lib/igt_dsc.h b/lib/igt_dsc.h
index 9608aad4..241fc0ac 100644
--- a/lib/igt_dsc.h
+++ b/lib/igt_dsc.h
@@ -9,7 +9,7 @@
#include "igt_fb.h"
#include "igt_kms.h"
-bool igt_is_dsc_supported(int drmfd, char *connector_name);
+bool igt_is_dsc_supported_by_sink(int drmfd, char *connector_name);
bool igt_is_fec_supported(int drmfd, char *connector_name);
bool igt_is_dsc_enabled(int drmfd, char *connector_name);
bool igt_is_force_dsc_enabled(int drmfd, char *connector_name);
diff --git a/tests/i915/kms_dsc_helper.c b/tests/i915/kms_dsc_helper.c
index 02d1a484..1adf920b 100644
--- a/tests/i915/kms_dsc_helper.c
+++ b/tests/i915/kms_dsc_helper.c
@@ -55,7 +55,7 @@ void kms_dsc_exit_handler(int sig)
bool check_dsc_on_connector(int drmfd, igt_output_t *output)
{
- if (!igt_is_dsc_supported(drmfd, output->name)) {
+ if (!igt_is_dsc_supported_by_sink(drmfd, output->name)) {
igt_debug("DSC not supported on connector %s\n",
output->name);
return false;
diff --git a/tests/kms_invalid_mode.c b/tests/kms_invalid_mode.c
index ec048305..63da3a1c 100644
--- a/tests/kms_invalid_mode.c
+++ b/tests/kms_invalid_mode.c
@@ -61,7 +61,7 @@ can_bigjoiner(data_t *data)
igt_debug("Platform supports uncompressed bigjoiner\n");
return true;
} else if (intel_display_ver(devid) >= 11) {
- return igt_is_dsc_supported(data->drm_fd, data->output->name);
+ return igt_is_dsc_supported_by_sink(data->drm_fd, data->output->name);
}
return false;
--
2.25.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [igt-dev] [PATCH i-g-t 2/3] tests: s/check_dsc_on_connector/is_dsc_supported_by_sink
2023-06-14 16:54 [igt-dev] [PATCH i-g-t v4 0/3] check dsc hardware capability Swati Sharma
2023-06-14 16:54 ` [igt-dev] [PATCH i-g-t 1/3] tests: s/igt_is_dsc_supported/igt_is_dsc_supported_by_sink Swati Sharma
@ 2023-06-14 16:54 ` Swati Sharma
2023-06-14 16:54 ` [igt-dev] [PATCH i-g-t v4 3/3] tests: add igt_is_dsc_supported_by_source() Swati Sharma
` (6 subsequent siblings)
8 siblings, 0 replies; 12+ messages in thread
From: Swati Sharma @ 2023-06-14 16:54 UTC (permalink / raw)
To: igt-dev
Rename function.
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
tests/i915/kms_dsc.c | 2 +-
tests/i915/kms_dsc_helper.c | 2 +-
tests/i915/kms_dsc_helper.h | 2 +-
tests/i915/kms_psr2_sf.c | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
index 3b0ce0d2..5b4abd6a 100644
--- a/tests/i915/kms_dsc.c
+++ b/tests/i915/kms_dsc.c
@@ -228,7 +228,7 @@ static void test_dsc(data_t *data, enum dsc_test_type test_type, int bpc,
data->output = output;
data->pipe = pipe;
- if (!check_dsc_on_connector(data->drm_fd, data->output))
+ if (!is_dsc_supported_by_sink(data->drm_fd, data->output))
continue;
if (!is_dsc_output_format_supported(data->drm_fd, data->disp_ver,
diff --git a/tests/i915/kms_dsc_helper.c b/tests/i915/kms_dsc_helper.c
index 1adf920b..c90d833d 100644
--- a/tests/i915/kms_dsc_helper.c
+++ b/tests/i915/kms_dsc_helper.c
@@ -53,7 +53,7 @@ void kms_dsc_exit_handler(int sig)
restore_force_dsc_en();
}
-bool check_dsc_on_connector(int drmfd, igt_output_t *output)
+bool is_dsc_supported_by_sink(int drmfd, igt_output_t *output)
{
if (!igt_is_dsc_supported_by_sink(drmfd, output->name)) {
igt_debug("DSC not supported on connector %s\n",
diff --git a/tests/i915/kms_dsc_helper.h b/tests/i915/kms_dsc_helper.h
index 198f5afa..f66191c7 100644
--- a/tests/i915/kms_dsc_helper.h
+++ b/tests/i915/kms_dsc_helper.h
@@ -26,7 +26,7 @@ void force_dsc_enable_bpc(int drmfd, igt_output_t *output, int input_bpc);
void save_force_dsc_en(int drmfd, igt_output_t *output);
void restore_force_dsc_en(void);
void kms_dsc_exit_handler(int sig);
-bool check_dsc_on_connector(int drmfd, igt_output_t *output);
+bool is_dsc_supported_by_sink(int drmfd, igt_output_t *output);
bool check_gen11_dp_constraint(int drmfd, igt_output_t *output, enum pipe pipe);
bool check_gen11_bpc_constraint(int drmfd, igt_output_t *output, int input_bpc);
void force_dsc_output_format(int drmfd, igt_output_t *output,
diff --git a/tests/i915/kms_psr2_sf.c b/tests/i915/kms_psr2_sf.c
index 4cf98644..ffc41f98 100644
--- a/tests/i915/kms_psr2_sf.c
+++ b/tests/i915/kms_psr2_sf.c
@@ -934,7 +934,7 @@ igt_main
pipes[n_pipes] = data.pipe;
outputs[n_pipes] = data.output;
- if (check_dsc_on_connector(data.drm_fd, data.output))
+ if (is_dsc_supported_by_sink(data.drm_fd, data.output))
coexist_features[n_pipes] |= FEATURE_DSC;
n_pipes++;
--
2.25.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [igt-dev] [PATCH i-g-t v4 3/3] tests: add igt_is_dsc_supported_by_source()
2023-06-14 16:54 [igt-dev] [PATCH i-g-t v4 0/3] check dsc hardware capability Swati Sharma
2023-06-14 16:54 ` [igt-dev] [PATCH i-g-t 1/3] tests: s/igt_is_dsc_supported/igt_is_dsc_supported_by_sink Swati Sharma
2023-06-14 16:54 ` [igt-dev] [PATCH i-g-t 2/3] tests: s/check_dsc_on_connector/is_dsc_supported_by_sink Swati Sharma
@ 2023-06-14 16:54 ` Swati Sharma
2023-06-16 9:32 ` Kamil Konieczny
2023-06-14 17:54 ` [igt-dev] ✗ Fi.CI.BAT: failure for check dsc hardware capability (rev3) Patchwork
` (5 subsequent siblings)
8 siblings, 1 reply; 12+ messages in thread
From: Swati Sharma @ 2023-06-14 16:54 UTC (permalink / raw)
To: igt-dev
Instead of assuming dsc is supported on gen11+ platforms,
lets use has_dsc flag in i915_capability to check hardware
support.
v2: -moved changes to lib (Ankit)
v3: -keep includes in alphabetical order (Kamil)
-don't use igt_require() in lib (Kamil)
-improve return statement (Kamil)
v4: -add debug print (Kamil)
Cc: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
lib/igt_dsc.c | 22 ++++++++++++++++++++++
lib/igt_dsc.h | 1 +
tests/i915/kms_dsc.c | 2 +-
tests/i915/kms_dsc_helper.c | 10 ++++++++++
tests/i915/kms_dsc_helper.h | 1 +
tests/kms_invalid_mode.c | 3 ++-
6 files changed, 37 insertions(+), 2 deletions(-)
diff --git a/lib/igt_dsc.c b/lib/igt_dsc.c
index 6cbd8bae..76a420c1 100644
--- a/lib/igt_dsc.c
+++ b/lib/igt_dsc.c
@@ -6,6 +6,7 @@
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
+#include "igt_core.h"
#include "igt_dsc.h"
#include "igt_sysfs.h"
@@ -41,6 +42,27 @@ 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
+ *
+ * Returns: True if DSC is supported by source, false otherwise.
+ */
+bool igt_is_dsc_supported_by_source(int drmfd)
+{
+ char buf[4096];
+ int dir, res;
+
+ dir = igt_debugfs_dir(drmfd);
+ igt_assert(dir >= 0);
+
+ res = igt_debugfs_simple_read(dir, "i915_capabilities",
+ buf, sizeof(buf));
+ close(dir);
+
+ return res > 0 ? strstr(buf, "has_dsc: yes") : 0;
+}
+
/*
* igt_is_dsc_supported_by_sink:
* @drmfd: A drm file descriptor
diff --git a/lib/igt_dsc.h b/lib/igt_dsc.h
index 241fc0ac..b58743b5 100644
--- a/lib/igt_dsc.h
+++ b/lib/igt_dsc.h
@@ -9,6 +9,7 @@
#include "igt_fb.h"
#include "igt_kms.h"
+bool igt_is_dsc_supported_by_source(int drmfd);
bool igt_is_dsc_supported_by_sink(int drmfd, char *connector_name);
bool igt_is_fec_supported(int drmfd, char *connector_name);
bool igt_is_dsc_enabled(int drmfd, char *connector_name);
diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
index 5b4abd6a..c0707806 100644
--- a/tests/i915/kms_dsc.c
+++ b/tests/i915/kms_dsc.c
@@ -287,7 +287,7 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
igt_install_exit_handler(kms_dsc_exit_handler);
igt_display_require(&data.display, data.drm_fd);
igt_display_require_output(&data.display);
- igt_require(data.disp_ver >= 11);
+ igt_require(is_dsc_supported_by_source(data.drm_fd));
}
igt_describe("Tests basic display stream compression functionality if supported "
diff --git a/tests/i915/kms_dsc_helper.c b/tests/i915/kms_dsc_helper.c
index c90d833d..61f76dde 100644
--- a/tests/i915/kms_dsc_helper.c
+++ b/tests/i915/kms_dsc_helper.c
@@ -53,6 +53,16 @@ void kms_dsc_exit_handler(int sig)
restore_force_dsc_en();
}
+bool is_dsc_supported_by_source(int drmfd)
+{
+ if (!igt_is_dsc_supported_by_source(drmfd)) {
+ igt_debug("DSC not supported by source\n");
+ return false;
+ }
+
+ return true;
+}
+
bool is_dsc_supported_by_sink(int drmfd, igt_output_t *output)
{
if (!igt_is_dsc_supported_by_sink(drmfd, output->name)) {
diff --git a/tests/i915/kms_dsc_helper.h b/tests/i915/kms_dsc_helper.h
index f66191c7..2109bd76 100644
--- a/tests/i915/kms_dsc_helper.h
+++ b/tests/i915/kms_dsc_helper.h
@@ -27,6 +27,7 @@ void save_force_dsc_en(int drmfd, igt_output_t *output);
void restore_force_dsc_en(void);
void kms_dsc_exit_handler(int sig);
bool is_dsc_supported_by_sink(int drmfd, igt_output_t *output);
+bool is_dsc_supported_by_source(int drmfd);
bool check_gen11_dp_constraint(int drmfd, igt_output_t *output, enum pipe pipe);
bool check_gen11_bpc_constraint(int drmfd, igt_output_t *output, int input_bpc);
void force_dsc_output_format(int drmfd, igt_output_t *output,
diff --git a/tests/kms_invalid_mode.c b/tests/kms_invalid_mode.c
index 63da3a1c..2bb9912f 100644
--- a/tests/kms_invalid_mode.c
+++ b/tests/kms_invalid_mode.c
@@ -60,7 +60,8 @@ can_bigjoiner(data_t *data)
if (intel_display_ver(devid) > 12) {
igt_debug("Platform supports uncompressed bigjoiner\n");
return true;
- } else if (intel_display_ver(devid) >= 11) {
+ } else if (igt_is_dsc_supported_by_source(data->drm_fd)) {
+ igt_debug("Platform supports compressed bigjoiner\n");
return igt_is_dsc_supported_by_sink(data->drm_fd, data->output->name);
}
--
2.25.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for check dsc hardware capability (rev3)
2023-06-14 16:54 [igt-dev] [PATCH i-g-t v4 0/3] check dsc hardware capability Swati Sharma
` (2 preceding siblings ...)
2023-06-14 16:54 ` [igt-dev] [PATCH i-g-t v4 3/3] tests: add igt_is_dsc_supported_by_source() Swati Sharma
@ 2023-06-14 17:54 ` Patchwork
2023-06-15 16:15 ` [igt-dev] ✗ GitLab.Pipeline: warning for check dsc hardware capability (rev4) Patchwork
` (4 subsequent siblings)
8 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2023-06-14 17:54 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 8224 bytes --]
== Series Details ==
Series: check dsc hardware capability (rev3)
URL : https://patchwork.freedesktop.org/series/118570/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13270 -> IGTPW_9169
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9169 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9169, please notify your bug team 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_9169/index.html
Participating hosts (43 -> 41)
------------------------------
Missing (2): fi-snb-2520m bat-adlp-6
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9169:
### IGT changes ###
#### Possible regressions ####
* igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-1:
- fi-kbl-7567u: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13270/fi-kbl-7567u/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-1.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9169/fi-kbl-7567u/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-1.html
Known issues
------------
Here are the changes found in IGTPW_9169 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_auth@basic-auth:
- bat-adlp-11: NOTRUN -> [ABORT][3] ([i915#8011])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9169/bat-adlp-11/igt@core_auth@basic-auth.html
* igt@i915_selftest@live@gt_heartbeat:
- fi-apl-guc: [PASS][4] -> [DMESG-FAIL][5] ([i915#5334])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13270/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9169/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
* igt@i915_selftest@live@gt_mocs:
- bat-mtlp-8: [PASS][6] -> [DMESG-FAIL][7] ([i915#7059])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13270/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9169/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@reset:
- bat-rpls-2: [PASS][8] -> [ABORT][9] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#7981] / [i915#8347])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13270/bat-rpls-2/igt@i915_selftest@live@reset.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9169/bat-rpls-2/igt@i915_selftest@live@reset.html
* igt@i915_selftest@live@slpc:
- bat-mtlp-8: [PASS][10] -> [DMESG-WARN][11] ([i915#6367])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13270/bat-mtlp-8/igt@i915_selftest@live@slpc.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9169/bat-mtlp-8/igt@i915_selftest@live@slpc.html
- bat-rpls-1: NOTRUN -> [DMESG-WARN][12] ([i915#6367])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9169/bat-rpls-1/igt@i915_selftest@live@slpc.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-rpls-1: NOTRUN -> [ABORT][13] ([i915#6687] / [i915#7978])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9169/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- bat-dg2-11: NOTRUN -> [SKIP][14] ([i915#7828])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9169/bat-dg2-11/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-1:
- bat-dg2-8: [PASS][15] -> [FAIL][16] ([i915#7932])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13270/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-1.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9169/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-1.html
#### Possible fixes ####
* igt@i915_selftest@live@gt_heartbeat:
- fi-kbl-soraka: [DMESG-FAIL][17] ([i915#5334] / [i915#7872]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13270/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9169/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html
* igt@i915_selftest@live@gt_mocs:
- bat-mtlp-6: [DMESG-FAIL][19] ([i915#7059]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13270/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9169/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@gt_pm:
- bat-rpls-2: [DMESG-FAIL][21] ([i915#4258] / [i915#7913]) -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13270/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9169/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@hangcheck:
- bat-rpls-1: [ABORT][23] ([i915#7677]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13270/bat-rpls-1/igt@i915_selftest@live@hangcheck.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9169/bat-rpls-1/igt@i915_selftest@live@hangcheck.html
- bat-dg2-11: [ABORT][25] ([i915#7913] / [i915#7979]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13270/bat-dg2-11/igt@i915_selftest@live@hangcheck.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9169/bat-dg2-11/igt@i915_selftest@live@hangcheck.html
* igt@i915_selftest@live@slpc:
- bat-mtlp-6: [DMESG-WARN][27] ([i915#6367]) -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13270/bat-mtlp-6/igt@i915_selftest@live@slpc.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9169/bat-mtlp-6/igt@i915_selftest@live@slpc.html
#### Warnings ####
* igt@i915_module_load@load:
- bat-adlp-11: [ABORT][29] ([i915#4423]) -> [DMESG-WARN][30] ([i915#2867] / [i915#4423])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13270/bat-adlp-11/igt@i915_module_load@load.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9169/bat-adlp-11/igt@i915_module_load@load.html
[i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867
[i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687
[i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7677]: https://gitlab.freedesktop.org/drm/intel/issues/7677
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932
[i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
[i915#7979]: https://gitlab.freedesktop.org/drm/intel/issues/7979
[i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981
[i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011
[i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7329 -> IGTPW_9169
CI-20190529: 20190529
CI_DRM_13270: a8b181a60198ccf04a1ad1c34f46be4c2a5e64b7 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9169: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9169/index.html
IGT_7329: d58b208c72b91a5d9cb7877363242a181a012182 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9169/index.html
[-- Attachment #2: Type: text/html, Size: 9686 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✗ GitLab.Pipeline: warning for check dsc hardware capability (rev4)
2023-06-14 16:54 [igt-dev] [PATCH i-g-t v4 0/3] check dsc hardware capability Swati Sharma
` (3 preceding siblings ...)
2023-06-14 17:54 ` [igt-dev] ✗ Fi.CI.BAT: failure for check dsc hardware capability (rev3) Patchwork
@ 2023-06-15 16:15 ` Patchwork
2023-06-15 16:41 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
` (3 subsequent siblings)
8 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2023-06-15 16:15 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
== Series Details ==
Series: check dsc hardware capability (rev4)
URL : https://patchwork.freedesktop.org/series/118570/
State : warning
== Summary ==
Pipeline status: FAILED.
see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/910157 for the overview.
build:tests-debian-meson-mips has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/43843707):
Running with gitlab-runner 16.0.2 (85586bd1)
on fdo-equinix-m3l-22 YyH_tCiK, system ID: r_a0v3jgyTbvyU
section_start:1686845341:prepare_executor
Preparing the "docker" executor
Using Docker executor with image registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-mips:commit-70c77800942c3ec9cb52806856151f828d4b043c ...
Authenticating with credentials from job payload (GitLab Registry)
Pulling docker image registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-mips:commit-70c77800942c3ec9cb52806856151f828d4b043c ...
WARNING: Failed to pull image with policy "if-not-present": initializing source docker://registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-mips:commit-70c77800942c3ec9cb52806856151f828d4b043c: reading manifest commit-70c77800942c3ec9cb52806856151f828d4b043c in harbor.freedesktop.org/cache/gfx-ci/igt-ci-tags/build-debian-mips: unknown: artifact cache/gfx-ci/igt-ci-tags/build-debian-mips:commit-70c77800942c3ec9cb52806856151f828d4b043c not found (manager.go:237:4s)
section_end:1686845346:prepare_executor
ERROR: Job failed: failed to pull image "registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-mips:commit-70c77800942c3ec9cb52806856151f828d4b043c" with specified policies [if-not-present]: initializing source docker://registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-mips:commit-70c77800942c3ec9cb52806856151f828d4b043c: reading manifest commit-70c77800942c3ec9cb52806856151f828d4b043c in harbor.freedesktop.org/cache/gfx-ci/igt-ci-tags/build-debian-mips: unknown: artifact cache/gfx-ci/igt-ci-tags/build-debian-mips:commit-70c77800942c3ec9cb52806856151f828d4b043c not found (manager.go:237:4s)
== Logs ==
For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/910157
^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for check dsc hardware capability (rev4)
2023-06-14 16:54 [igt-dev] [PATCH i-g-t v4 0/3] check dsc hardware capability Swati Sharma
` (4 preceding siblings ...)
2023-06-15 16:15 ` [igt-dev] ✗ GitLab.Pipeline: warning for check dsc hardware capability (rev4) Patchwork
@ 2023-06-15 16:41 ` Patchwork
2023-06-15 17:44 ` [igt-dev] ✓ Fi.CI.BAT: success for check dsc hardware capability (rev5) Patchwork
` (2 subsequent siblings)
8 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2023-06-15 16:41 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5140 bytes --]
== Series Details ==
Series: check dsc hardware capability (rev4)
URL : https://patchwork.freedesktop.org/series/118570/
State : success
== Summary ==
CI Bug Log - changes from IGT_7332 -> IGTPW_9184
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/index.html
Participating hosts (42 -> 41)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_9184 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-adlp-11: NOTRUN -> [SKIP][1] ([i915#7456])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/bat-adlp-11/igt@debugfs_test@basic-hwmon.html
* igt@gem_tiled_pread_basic:
- bat-adlp-11: NOTRUN -> [SKIP][2] ([i915#3282])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/bat-adlp-11/igt@gem_tiled_pread_basic.html
* igt@i915_selftest@live@gt_pm:
- bat-rpls-2: [PASS][3] -> [DMESG-FAIL][4] ([i915#4258] / [i915#7913])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@slpc:
- bat-rpls-2: [PASS][5] -> [DMESG-WARN][6] ([i915#6367])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/bat-rpls-2/igt@i915_selftest@live@slpc.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/bat-rpls-2/igt@i915_selftest@live@slpc.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- bat-adlp-11: NOTRUN -> [SKIP][7] ([i915#7828]) +7 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/bat-adlp-11/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- bat-dg2-11: NOTRUN -> [SKIP][8] ([i915#7828])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/bat-dg2-11/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adlp-11: NOTRUN -> [SKIP][9] ([i915#4103]) +1 similar issue
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/bat-adlp-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-adlp-11: NOTRUN -> [SKIP][10] ([i915#4093]) +3 similar issues
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/bat-adlp-11/igt@kms_force_connector_basic@prune-stale-modes.html
#### Possible fixes ####
* igt@i915_module_load@load:
- bat-adlp-11: [ABORT][11] ([i915#4423]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/bat-adlp-11/igt@i915_module_load@load.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/bat-adlp-11/igt@i915_module_load@load.html
* igt@i915_selftest@live@gt_mocs:
- bat-rpls-2: [DMESG-FAIL][13] ([i915#7059]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/bat-rpls-2/igt@i915_selftest@live@gt_mocs.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/bat-rpls-2/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@hangcheck:
- bat-dg2-11: [ABORT][15] ([i915#7913] / [i915#7979]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/bat-dg2-11/igt@i915_selftest@live@hangcheck.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/bat-dg2-11/igt@i915_selftest@live@hangcheck.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#4093]: https://gitlab.freedesktop.org/drm/intel/issues/4093
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258
[i915#4309]: https://gitlab.freedesktop.org/drm/intel/issues/4309
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7979]: https://gitlab.freedesktop.org/drm/intel/issues/7979
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7332 -> IGTPW_9184
CI-20190529: 20190529
CI_DRM_13274: 134d180cacae82fadbc5ee32f86014cc290f5e0c @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9184: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/index.html
IGT_7332: 2a25a6109e8af4b0a69a717cc8710dcafed4bb4c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/index.html
[-- Attachment #2: Type: text/html, Size: 6083 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for check dsc hardware capability (rev5)
2023-06-14 16:54 [igt-dev] [PATCH i-g-t v4 0/3] check dsc hardware capability Swati Sharma
` (5 preceding siblings ...)
2023-06-15 16:41 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-06-15 17:44 ` Patchwork
2023-06-15 20:31 ` [igt-dev] ✓ Fi.CI.IGT: success for check dsc hardware capability (rev4) Patchwork
2023-06-15 22:19 ` [igt-dev] ✓ Fi.CI.IGT: success for check dsc hardware capability (rev5) Patchwork
8 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2023-06-15 17:44 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4234 bytes --]
== Series Details ==
Series: check dsc hardware capability (rev5)
URL : https://patchwork.freedesktop.org/series/118570/
State : success
== Summary ==
CI Bug Log - changes from IGT_7332 -> IGTPW_9187
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/index.html
Participating hosts (42 -> 41)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_9187 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@gt_mocs:
- bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#7059])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@gt_pm:
- bat-rpls-2: [PASS][3] -> [DMESG-FAIL][4] ([i915#4258] / [i915#7913])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@requests:
- bat-mtlp-8: [PASS][5] -> [DMESG-FAIL][6] ([i915#7269])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/bat-mtlp-8/igt@i915_selftest@live@requests.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/bat-mtlp-8/igt@i915_selftest@live@requests.html
* igt@i915_selftest@live@slpc:
- bat-rpls-2: [PASS][7] -> [DMESG-WARN][8] ([i915#6367])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/bat-rpls-2/igt@i915_selftest@live@slpc.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/bat-rpls-2/igt@i915_selftest@live@slpc.html
- bat-mtlp-8: [PASS][9] -> [DMESG-WARN][10] ([i915#6367])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/bat-mtlp-8/igt@i915_selftest@live@slpc.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/bat-mtlp-8/igt@i915_selftest@live@slpc.html
* igt@kms_pipe_crc_basic@nonblocking-crc:
- bat-dg2-11: NOTRUN -> [SKIP][11] ([i915#1845] / [i915#5354])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc.html
#### Possible fixes ####
* igt@i915_selftest@live@gt_mocs:
- bat-rpls-2: [DMESG-FAIL][12] ([i915#7059]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/bat-rpls-2/igt@i915_selftest@live@gt_mocs.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/bat-rpls-2/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [DMESG-FAIL][14] ([i915#6763]) -> [PASS][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763
[i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[i915#7269]: https://gitlab.freedesktop.org/drm/intel/issues/7269
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7332 -> IGTPW_9187
CI-20190529: 20190529
CI_DRM_13274: 134d180cacae82fadbc5ee32f86014cc290f5e0c @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9187: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/index.html
IGT_7332: 2a25a6109e8af4b0a69a717cc8710dcafed4bb4c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
-igt@xe_uevent@fake_reset_uevent_listener
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/index.html
[-- Attachment #2: Type: text/html, Size: 5145 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for check dsc hardware capability (rev4)
2023-06-14 16:54 [igt-dev] [PATCH i-g-t v4 0/3] check dsc hardware capability Swati Sharma
` (6 preceding siblings ...)
2023-06-15 17:44 ` [igt-dev] ✓ Fi.CI.BAT: success for check dsc hardware capability (rev5) Patchwork
@ 2023-06-15 20:31 ` Patchwork
2023-06-15 22:19 ` [igt-dev] ✓ Fi.CI.IGT: success for check dsc hardware capability (rev5) Patchwork
8 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2023-06-15 20:31 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 32096 bytes --]
== Series Details ==
Series: check dsc hardware capability (rev4)
URL : https://patchwork.freedesktop.org/series/118570/
State : success
== Summary ==
CI Bug Log - changes from IGT_7332_full -> IGTPW_9184_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/index.html
Participating hosts (7 -> 7)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9184_full:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@drm_mm@drm_mm_test}:
- shard-rkl: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-6/igt@drm_mm@drm_mm_test.html
Known issues
------------
Here are the changes found in IGTPW_9184_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@feature_discovery@display-2x:
- shard-tglu: NOTRUN -> [SKIP][2] ([i915#1839])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-5/igt@feature_discovery@display-2x.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][3] ([i915#280])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-6/igt@gem_ctx_sseu@engines.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][4] ([i915#4525])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-7/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][5] -> [FAIL][6] ([i915#2846])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-3/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none@bcs0:
- shard-rkl: [PASS][7] -> [FAIL][8] ([i915#2842]) +3 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-6/igt@gem_exec_fair@basic-none@bcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-apl: [PASS][9] -> [FAIL][10] ([i915#2842])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-apl6/igt@gem_exec_fair@basic-pace-share@rcs0.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-apl2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: NOTRUN -> [FAIL][11] ([i915#2842])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#3281]) +4 similar issues
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-4/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-glk: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#4613])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-glk3/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][14] ([i915#4613])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-random:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#4613])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-3/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_pread@exhaustion:
- shard-tglu: NOTRUN -> [WARN][16] ([i915#2658])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-9/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#3282]) +2 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-2/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#4270])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-7/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_softpin@evict-prime@all:
- shard-tglu: [PASS][19] -> [ABORT][20] ([i915#8355])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-tglu-7/igt@gem_softpin@evict-prime@all.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-4/igt@gem_softpin@evict-prime@all.html
* igt@gem_userptr_blits@access-control:
- shard-tglu: NOTRUN -> [SKIP][21] ([i915#3297])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-7/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#3297])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-7/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gen3_render_linear_blits:
- shard-tglu: NOTRUN -> [SKIP][23] ([fdo#109289])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-7/igt@gen3_render_linear_blits.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#2527])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html
* igt@i915_pm_backlight@fade-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][25] ([i915#7561])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-8/igt@i915_pm_backlight@fade-with-dpms.html
* igt@i915_pm_dc@dc9-dpms:
- shard-tglu: [PASS][26] -> [SKIP][27] ([i915#4281])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-8/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress:
- shard-tglu: NOTRUN -> [SKIP][28] ([fdo#111644] / [i915#1397])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-8/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
* igt@i915_query@hwconfig_table:
- shard-apl: NOTRUN -> [SKIP][29] ([fdo#109271]) +20 similar issues
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-apl2/igt@i915_query@hwconfig_table.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][30] ([fdo#111615] / [i915#5286])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][31] ([fdo#111614])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-7/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][32] ([fdo#111615])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-9/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_big_joiner@invalid-modeset:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#2705])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-3/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs:
- shard-glk: NOTRUN -> [SKIP][34] ([fdo#109271] / [i915#3886]) +2 similar issues
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-glk7/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#3734] / [i915#5354] / [i915#6095])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-4/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs:
- shard-tglu: NOTRUN -> [SKIP][36] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-3/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][37] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-6/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#5354] / [i915#6095]) +2 similar issues
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-6/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][39] ([i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-3/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#5354]) +4 similar issues
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-2/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs:
- shard-tglu: NOTRUN -> [SKIP][41] ([i915#5354] / [i915#6095]) +4 similar issues
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-2/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#3742])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-1/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-tglu: NOTRUN -> [SKIP][43] ([fdo#111827])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-6/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@gamma:
- shard-rkl: NOTRUN -> [SKIP][44] ([fdo#111827])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-6/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-tglu: NOTRUN -> [SKIP][45] ([i915#7828])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-5/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#7828])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-1/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@legacy:
- shard-tglu: NOTRUN -> [SKIP][47] ([i915#4579] / [i915#6944] / [i915#7116] / [i915#7118])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-3/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@uevent:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#4579] / [i915#7118])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-1/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][49] ([i915#3359])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#3555] / [i915#4579]) +1 similar issue
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-3/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][51] ([fdo#111825]) +5 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#4103]) +1 similar issue
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-apl: [PASS][53] -> [FAIL][54] ([i915#2346])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#3804] / [i915#4579])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [FAIL][56] ([i915#4767])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-glk9/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: NOTRUN -> [SKIP][57] ([fdo#110189] / [i915#3955])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][58] ([fdo#109274] / [i915#3637] / [i915#3966])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-7/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-tglu: NOTRUN -> [SKIP][59] ([fdo#109274] / [i915#3637])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-9/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-snb: NOTRUN -> [SKIP][60] ([fdo#109271]) +17 similar issues
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-snb7/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-suspend@b-dp1:
- shard-apl: [PASS][61] -> [ABORT][62] ([i915#180])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-apl6/igt@kms_flip@flip-vs-suspend@b-dp1.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-apl7/igt@kms_flip@flip-vs-suspend@b-dp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-glk: NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#4579])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-glk7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#2672] / [i915#4579])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][65] ([fdo#111825] / [i915#1825]) +7 similar issues
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#3023]) +5 similar issues
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][67] ([fdo#110189]) +4 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff:
- shard-tglu: NOTRUN -> [SKIP][68] ([fdo#109280]) +9 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_plane@pixel-format-source-clamping@pipe-a-planes:
- shard-glk: [PASS][69] -> [DMESG-FAIL][70] ([i915#118])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-glk6/igt@kms_plane@pixel-format-source-clamping@pipe-a-planes.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-glk2/igt@kms_plane@pixel-format-source-clamping@pipe-a-planes.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][71] ([i915#8292])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-b-hdmi-a-1:
- shard-snb: NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#4579]) +11 similar issues
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-snb1/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-dp-1:
- shard-apl: NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#4579])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-apl2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-dp-1.html
* igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#4579] / [i915#5176]) +1 similar issue
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#5176]) +1 similar issue
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#5235]) +2 similar issues
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#4579] / [i915#5235]) +2 similar issues
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
- shard-tglu: NOTRUN -> [SKIP][78] ([i915#658])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-8/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
- shard-glk: NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#658])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-glk1/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-apl: NOTRUN -> [SKIP][80] ([fdo#109271] / [i915#658])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-apl6/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
* igt@kms_psr@psr2_suspend:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#1072])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-4/igt@kms_psr@psr2_suspend.html
* igt@kms_setmode@basic@pipe-a-vga-1:
- shard-snb: NOTRUN -> [FAIL][82] ([i915#5465]) +1 similar issue
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-snb5/igt@kms_setmode@basic@pipe-a-vga-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#3555] / [i915#4098] / [i915#4579])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-6/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_vblank@pipe-d-query-idle-hang:
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#4070] / [i915#533] / [i915#6768]) +1 similar issue
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-4/igt@kms_vblank@pipe-d-query-idle-hang.html
* igt@kms_vblank@pipe-d-wait-busy-hang:
- shard-glk: NOTRUN -> [SKIP][85] ([fdo#109271]) +35 similar issues
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-glk3/igt@kms_vblank@pipe-d-wait-busy-hang.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#8516])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-4/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][87] ([fdo#109295] / [i915#3708])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-3/igt@prime_vgem@fence-flip-hang.html
* igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync:
- shard-tglu: NOTRUN -> [SKIP][88] ([fdo#109315] / [i915#2575]) +1 similar issue
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-10/igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync.html
* igt@v3d/v3d_submit_cl@single-in-sync:
- shard-rkl: NOTRUN -> [SKIP][89] ([fdo#109315]) +1 similar issue
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-2/igt@v3d/v3d_submit_cl@single-in-sync.html
* igt@vc4/vc4_label_bo@set-bad-name:
- shard-tglu: NOTRUN -> [SKIP][90] ([i915#2575]) +1 similar issue
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-10/igt@vc4/vc4_label_bo@set-bad-name.html
* igt@vc4/vc4_wait_bo@bad-bo:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#7711])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-4/igt@vc4/vc4_wait_bo@bad-bo.html
#### Possible fixes ####
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [FAIL][92] ([i915#6268]) -> [PASS][93]
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-rkl-3/igt@gem_ctx_exec@basic-nohangcheck.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [FAIL][94] ([i915#2842]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-rkl-6/igt@gem_exec_fair@basic-pace@rcs0.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-2/igt@gem_exec_fair@basic-pace@rcs0.html
- shard-glk: [FAIL][96] ([i915#2842]) -> [PASS][97] +1 similar issue
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-glk5/igt@gem_exec_fair@basic-pace@rcs0.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-glk2/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: [ABORT][98] ([i915#5566]) -> [PASS][99]
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-glk5/igt@gen9_exec_parse@allowed-single.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-glk7/igt@gen9_exec_parse@allowed-single.html
* igt@i915_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: [SKIP][100] ([i915#1397]) -> [PASS][101] +1 similar issue
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-rkl-2/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][102] ([i915#2346]) -> [PASS][103]
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
#### Warnings ####
* igt@i915_pm_rc6_residency@rc6-idle@vcs0:
- shard-tglu: [FAIL][104] ([i915#2681] / [i915#3591]) -> [WARN][105] ([i915#2681])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][106] ([i915#4070] / [i915#4816]) -> [SKIP][107] ([i915#4816])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[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#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[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#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[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#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[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#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[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#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347
[i915#8355]: https://gitlab.freedesktop.org/drm/intel/issues/8355
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7332 -> IGTPW_9184
CI-20190529: 20190529
CI_DRM_13274: 134d180cacae82fadbc5ee32f86014cc290f5e0c @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9184: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/index.html
IGT_7332: 2a25a6109e8af4b0a69a717cc8710dcafed4bb4c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9184/index.html
[-- Attachment #2: Type: text/html, Size: 38136 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for check dsc hardware capability (rev5)
2023-06-14 16:54 [igt-dev] [PATCH i-g-t v4 0/3] check dsc hardware capability Swati Sharma
` (7 preceding siblings ...)
2023-06-15 20:31 ` [igt-dev] ✓ Fi.CI.IGT: success for check dsc hardware capability (rev4) Patchwork
@ 2023-06-15 22:19 ` Patchwork
8 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2023-06-15 22:19 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 35039 bytes --]
== Series Details ==
Series: check dsc hardware capability (rev5)
URL : https://patchwork.freedesktop.org/series/118570/
State : success
== Summary ==
CI Bug Log - changes from IGT_7332_full -> IGTPW_9187_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/index.html
Participating hosts (7 -> 7)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9187_full:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@drm_mm@drm_mm_test}:
- shard-rkl: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-3/igt@drm_mm@drm_mm_test.html
New tests
---------
New tests have been introduced between IGT_7332_full and IGTPW_9187_full:
### New IGT tests (1) ###
* igt@gem_ccs:
- Statuses :
- Exec time: [None] s
Known issues
------------
Here are the changes found in IGTPW_9187_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@feature_discovery@display-2x:
- shard-tglu: NOTRUN -> [SKIP][2] ([i915#1839])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-9/igt@feature_discovery@display-2x.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][3] -> [FAIL][4] ([i915#6268])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#280])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-3/igt@gem_ctx_sseu@engines.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#4525])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-2/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_fair@basic-flow@rcs0:
- shard-tglu: [PASS][7] -> [FAIL][8] ([i915#2842]) +1 similar issue
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-tglu-7/igt@gem_exec_fair@basic-flow@rcs0.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-6/igt@gem_exec_fair@basic-flow@rcs0.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-rkl: [PASS][9] -> [FAIL][10] ([i915#2842]) +1 similar issue
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-rkl-4/igt@gem_exec_fair@basic-none@vcs0.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-1/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: NOTRUN -> [FAIL][11] ([i915#2842])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#3281]) +4 similar issues
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-7/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-glk: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#4613])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-glk2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@parallel-random:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#4613])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-3/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_pread@exhaustion:
- shard-tglu: NOTRUN -> [WARN][15] ([i915#2658])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-10/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#3282]) +2 similar issues
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-3/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#4270])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-1/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_userptr_blits@access-control:
- shard-tglu: NOTRUN -> [SKIP][18] ([i915#3297])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-8/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#3297])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-1/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gen3_render_linear_blits:
- shard-tglu: NOTRUN -> [SKIP][20] ([fdo#109289])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-5/igt@gen3_render_linear_blits.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#2527])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-2/igt@gen9_exec_parse@bb-oversize.html
* igt@i915_pm_backlight@fade-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][22] ([i915#7561])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-2/igt@i915_pm_backlight@fade-with-dpms.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress:
- shard-tglu: NOTRUN -> [SKIP][23] ([fdo#111644] / [i915#1397])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [PASS][24] -> [SKIP][25] ([i915#1397]) +1 similar issue
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-rkl-6/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@i915_pm_rps@reset:
- shard-snb: [PASS][26] -> [INCOMPLETE][27] ([i915#7790])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-snb6/igt@i915_pm_rps@reset.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-snb4/igt@i915_pm_rps@reset.html
* igt@i915_query@hwconfig_table:
- shard-apl: NOTRUN -> [SKIP][28] ([fdo#109271]) +20 similar issues
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-apl4/igt@i915_query@hwconfig_table.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][29] ([fdo#111615] / [i915#5286])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][30] ([fdo#111614])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-8/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][31] ([fdo#111615])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_big_joiner@invalid-modeset:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#2705])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-6/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs:
- shard-glk: NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#3886]) +2 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-glk7/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#3734] / [i915#5354] / [i915#6095])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-1/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs:
- shard-tglu: NOTRUN -> [SKIP][35] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-5/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][36] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-8/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][37] ([i915#3689] / [i915#5354] / [i915#6095])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-10/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#5354] / [i915#6095]) +2 similar issues
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-1/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#5354]) +4 similar issues
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-2/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs:
- shard-tglu: NOTRUN -> [SKIP][40] ([i915#5354] / [i915#6095]) +3 similar issues
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-2/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#3742])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-1/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-tglu: NOTRUN -> [SKIP][42] ([fdo#111827])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-8/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@gamma:
- shard-rkl: NOTRUN -> [SKIP][43] ([fdo#111827])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-2/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-tglu: NOTRUN -> [SKIP][44] ([i915#7828]) +1 similar issue
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-2/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#7828])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@legacy:
- shard-tglu: NOTRUN -> [SKIP][46] ([i915#4579] / [i915#6944] / [i915#7116] / [i915#7118])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-9/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@uevent:
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#4579] / [i915#7118])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-4/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][48] ([i915#3359])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#3555] / [i915#4579]) +1 similar issue
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-2/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][50] ([fdo#111825]) +5 similar issues
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#4103]) +1 similar issue
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-apl: [PASS][52] -> [FAIL][53] ([i915#2346])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [PASS][54] -> [FAIL][55] ([i915#2346])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [FAIL][56] ([i915#4767])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-glk3/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][57] ([fdo#109274] / [i915#3637] / [i915#3966])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-5/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-tglu: NOTRUN -> [SKIP][58] ([fdo#109274] / [i915#3637])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-glk: NOTRUN -> [SKIP][59] ([fdo#109271] / [i915#4579])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-glk2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#2672] / [i915#4579])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][61] ([fdo#111825] / [i915#1825]) +7 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#3023]) +5 similar issues
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][63] ([fdo#110189]) +4 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff:
- shard-tglu: NOTRUN -> [SKIP][64] ([fdo#109280]) +8 similar issues
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][65] ([i915#3555] / [i915#4579])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-8/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][66] ([i915#8292])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#4579] / [i915#5176]) +3 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-vga-1:
- shard-snb: NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#4579]) +7 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-snb6/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-vga-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-dp-1:
- shard-apl: NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#4579])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-apl7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-dp-1.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#5176]) +3 similar issues
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-1:
- shard-snb: NOTRUN -> [SKIP][71] ([fdo#109271]) +12 similar issues
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-snb1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#5235]) +1 similar issue
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#4579] / [i915#5235]) +1 similar issue
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#658])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-10/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
- shard-glk: NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#658])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-glk8/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-apl: NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#658])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-apl6/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
* igt@kms_psr@psr2_suspend:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#1072])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-7/igt@kms_psr@psr2_suspend.html
* igt@kms_setmode@basic@pipe-a-vga-1:
- shard-snb: NOTRUN -> [FAIL][78] ([i915#5465]) +1 similar issue
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-snb5/igt@kms_setmode@basic@pipe-a-vga-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#3555] / [i915#4098] / [i915#4579])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-2/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_vblank@pipe-c-accuracy-idle:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#4070] / [i915#6768])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-2/igt@kms_vblank@pipe-c-accuracy-idle.html
* igt@kms_vblank@pipe-d-query-idle-hang:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#4070] / [i915#533] / [i915#6768]) +1 similar issue
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-1/igt@kms_vblank@pipe-d-query-idle-hang.html
* igt@kms_vblank@pipe-d-wait-busy-hang:
- shard-glk: NOTRUN -> [SKIP][82] ([fdo#109271]) +35 similar issues
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-glk4/igt@kms_vblank@pipe-d-wait-busy-hang.html
* igt@perf_pmu@module-unload:
- shard-snb: [PASS][83] -> [ABORT][84] ([i915#4528])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-snb5/igt@perf_pmu@module-unload.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-snb6/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#8516])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-7/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][86] ([fdo#109295] / [i915#3708])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-2/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-read-hang:
- shard-tglu: NOTRUN -> [SKIP][87] ([fdo#109295])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-9/igt@prime_vgem@fence-read-hang.html
* igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync:
- shard-tglu: NOTRUN -> [SKIP][88] ([fdo#109315] / [i915#2575]) +2 similar issues
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-10/igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync.html
* igt@v3d/v3d_submit_cl@single-in-sync:
- shard-rkl: NOTRUN -> [SKIP][89] ([fdo#109315]) +1 similar issue
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-2/igt@v3d/v3d_submit_cl@single-in-sync.html
* igt@vc4/vc4_label_bo@set-bad-name:
- shard-tglu: NOTRUN -> [SKIP][90] ([i915#2575]) +1 similar issue
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-9/igt@vc4/vc4_label_bo@set-bad-name.html
* igt@vc4/vc4_wait_bo@bad-bo:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#7711])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-3/igt@vc4/vc4_wait_bo@bad-bo.html
#### Possible fixes ####
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [FAIL][92] ([i915#6268]) -> [PASS][93]
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-rkl-3/igt@gem_ctx_exec@basic-nohangcheck.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_eio@kms:
- {shard-dg1}: [FAIL][94] ([i915#5784]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-dg1-18/igt@gem_eio@kms.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-dg1-14/igt@gem_eio@kms.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][96] ([i915#2842]) -> [PASS][97] +2 similar issues
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [FAIL][98] ([i915#2842]) -> [PASS][99] +1 similar issue
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-rkl-6/igt@gem_exec_fair@basic-pace@rcs0.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: [ABORT][100] ([i915#5566]) -> [PASS][101]
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-glk5/igt@gen9_exec_parse@allowed-single.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-glk2/igt@gen9_exec_parse@allowed-single.html
* igt@i915_pm_rpm@dpms-mode-unset-lpsp:
- {shard-dg1}: [SKIP][102] ([i915#1397]) -> [PASS][103]
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-dg1-15/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
* igt@i915_selftest@live@gt_heartbeat:
- shard-apl: [DMESG-FAIL][104] ([i915#5334]) -> [PASS][105]
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-apl6/igt@i915_selftest@live@gt_heartbeat.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-apl2/igt@i915_selftest@live@gt_heartbeat.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][106] ([i915#2346]) -> [PASS][107]
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][108] ([i915#8292]) -> [PASS][109]
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-tglu-8/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
#### Warnings ####
* igt@i915_pm_rc6_residency@rc6-idle@bcs0:
- shard-tglu: [WARN][110] ([i915#2681]) -> [FAIL][111] ([i915#2681] / [i915#3591])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@vcs0:
- shard-tglu: [FAIL][112] ([i915#2681] / [i915#3591]) -> [WARN][113] ([i915#2681])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
* igt@kms_content_protection@mei_interface:
- shard-rkl: [SKIP][114] ([i915#4579] / [i915#7118]) -> [SKIP][115] ([fdo#109300])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-rkl-7/igt@kms_content_protection@mei_interface.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-rkl-4/igt@kms_content_protection@mei_interface.html
- shard-apl: [SKIP][116] ([fdo#109271] / [i915#4579]) -> [SKIP][117] ([fdo#109271])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-apl4/igt@kms_content_protection@mei_interface.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-apl1/igt@kms_content_protection@mei_interface.html
- shard-snb: [SKIP][118] ([fdo#109271] / [i915#4579]) -> [SKIP][119] ([fdo#109271])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-snb4/igt@kms_content_protection@mei_interface.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-snb2/igt@kms_content_protection@mei_interface.html
- shard-tglu: [SKIP][120] ([i915#4579] / [i915#6944] / [i915#7116] / [i915#7118]) -> [SKIP][121] ([fdo#109300])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-tglu-6/igt@kms_content_protection@mei_interface.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-tglu-7/igt@kms_content_protection@mei_interface.html
- shard-glk: [SKIP][122] ([fdo#109271] / [i915#4579]) -> [SKIP][123] ([fdo#109271])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7332/shard-glk5/igt@kms_content_protection@mei_interface.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/shard-glk7/igt@kms_content_protection@mei_interface.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[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#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[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#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[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#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[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#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
[i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[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#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011
[i915#8174]: https://gitlab.freedesktop.org/drm/intel/issues/8174
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7332 -> IGTPW_9187
CI-20190529: 20190529
CI_DRM_13274: 134d180cacae82fadbc5ee32f86014cc290f5e0c @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9187: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/index.html
IGT_7332: 2a25a6109e8af4b0a69a717cc8710dcafed4bb4c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9187/index.html
[-- Attachment #2: Type: text/html, Size: 42750 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v4 3/3] tests: add igt_is_dsc_supported_by_source()
2023-06-14 16:54 ` [igt-dev] [PATCH i-g-t v4 3/3] tests: add igt_is_dsc_supported_by_source() Swati Sharma
@ 2023-06-16 9:32 ` Kamil Konieczny
2023-06-16 13:58 ` Sharma, Swati2
0 siblings, 1 reply; 12+ messages in thread
From: Kamil Konieczny @ 2023-06-16 9:32 UTC (permalink / raw)
To: igt-dev
Hi Swati,
one small question, see below.
On 2023-06-14 at 22:24:31 +0530, Swati Sharma wrote:
> Instead of assuming dsc is supported on gen11+ platforms,
> lets use has_dsc flag in i915_capability to check hardware
> support.
>
> v2: -moved changes to lib (Ankit)
> v3: -keep includes in alphabetical order (Kamil)
> -don't use igt_require() in lib (Kamil)
> -improve return statement (Kamil)
> v4: -add debug print (Kamil)
>
> Cc: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> ---
> lib/igt_dsc.c | 22 ++++++++++++++++++++++
> lib/igt_dsc.h | 1 +
> tests/i915/kms_dsc.c | 2 +-
> tests/i915/kms_dsc_helper.c | 10 ++++++++++
> tests/i915/kms_dsc_helper.h | 1 +
> tests/kms_invalid_mode.c | 3 ++-
> 6 files changed, 37 insertions(+), 2 deletions(-)
>
> diff --git a/lib/igt_dsc.c b/lib/igt_dsc.c
> index 6cbd8bae..76a420c1 100644
> --- a/lib/igt_dsc.c
> +++ b/lib/igt_dsc.c
> @@ -6,6 +6,7 @@
> #include <unistd.h>
> #include <fcntl.h>
> #include <string.h>
> +#include "igt_core.h"
> #include "igt_dsc.h"
> #include "igt_sysfs.h"
>
> @@ -41,6 +42,27 @@ 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
> + *
> + * Returns: True if DSC is supported by source, false otherwise.
> + */
> +bool igt_is_dsc_supported_by_source(int drmfd)
> +{
> + char buf[4096];
> + int dir, res;
> +
> + dir = igt_debugfs_dir(drmfd);
> + igt_assert(dir >= 0);
> +
> + res = igt_debugfs_simple_read(dir, "i915_capabilities",
> + buf, sizeof(buf));
> + close(dir);
> +
> + return res > 0 ? strstr(buf, "has_dsc: yes") : 0;
> +}
> +
> /*
> * igt_is_dsc_supported_by_sink:
> * @drmfd: A drm file descriptor
> diff --git a/lib/igt_dsc.h b/lib/igt_dsc.h
> index 241fc0ac..b58743b5 100644
> --- a/lib/igt_dsc.h
> +++ b/lib/igt_dsc.h
> @@ -9,6 +9,7 @@
> #include "igt_fb.h"
> #include "igt_kms.h"
>
> +bool igt_is_dsc_supported_by_source(int drmfd);
> bool igt_is_dsc_supported_by_sink(int drmfd, char *connector_name);
> bool igt_is_fec_supported(int drmfd, char *connector_name);
> bool igt_is_dsc_enabled(int drmfd, char *connector_name);
> diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
> index 5b4abd6a..c0707806 100644
> --- a/tests/i915/kms_dsc.c
> +++ b/tests/i915/kms_dsc.c
> @@ -287,7 +287,7 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
> igt_install_exit_handler(kms_dsc_exit_handler);
> igt_display_require(&data.display, data.drm_fd);
> igt_display_require_output(&data.display);
> - igt_require(data.disp_ver >= 11);
> + igt_require(is_dsc_supported_by_source(data.drm_fd));
> }
>
> igt_describe("Tests basic display stream compression functionality if supported "
> diff --git a/tests/i915/kms_dsc_helper.c b/tests/i915/kms_dsc_helper.c
> index c90d833d..61f76dde 100644
> --- a/tests/i915/kms_dsc_helper.c
> +++ b/tests/i915/kms_dsc_helper.c
> @@ -53,6 +53,16 @@ void kms_dsc_exit_handler(int sig)
> restore_force_dsc_en();
> }
>
> +bool is_dsc_supported_by_source(int drmfd)
> +{
> + if (!igt_is_dsc_supported_by_source(drmfd)) {
> + igt_debug("DSC not supported by source\n");
> + return false;
> + }
> +
> + return true;
> +}
> +
> bool is_dsc_supported_by_sink(int drmfd, igt_output_t *output)
> {
> if (!igt_is_dsc_supported_by_sink(drmfd, output->name)) {
> diff --git a/tests/i915/kms_dsc_helper.h b/tests/i915/kms_dsc_helper.h
> index f66191c7..2109bd76 100644
> --- a/tests/i915/kms_dsc_helper.h
> +++ b/tests/i915/kms_dsc_helper.h
> @@ -27,6 +27,7 @@ void save_force_dsc_en(int drmfd, igt_output_t *output);
> void restore_force_dsc_en(void);
> void kms_dsc_exit_handler(int sig);
> bool is_dsc_supported_by_sink(int drmfd, igt_output_t *output);
> +bool is_dsc_supported_by_source(int drmfd);
> bool check_gen11_dp_constraint(int drmfd, igt_output_t *output, enum pipe pipe);
> bool check_gen11_bpc_constraint(int drmfd, igt_output_t *output, int input_bpc);
> void force_dsc_output_format(int drmfd, igt_output_t *output,
> diff --git a/tests/kms_invalid_mode.c b/tests/kms_invalid_mode.c
> index 63da3a1c..2bb9912f 100644
> --- a/tests/kms_invalid_mode.c
> +++ b/tests/kms_invalid_mode.c
> @@ -60,7 +60,8 @@ can_bigjoiner(data_t *data)
> if (intel_display_ver(devid) > 12) {
> igt_debug("Platform supports uncompressed bigjoiner\n");
You do not check sink here.
> return true;
> - } else if (intel_display_ver(devid) >= 11) {
> + } else if (igt_is_dsc_supported_by_source(data->drm_fd)) {
> + igt_debug("Platform supports compressed bigjoiner\n");
-------------------------- ^
> return igt_is_dsc_supported_by_sink(data->drm_fd, data->output->name);
---------------------- ^
Here you printed it supported bigjoiner, yet function may return
false depending on sink ?
Regards,
Kamil
> }
>
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v4 3/3] tests: add igt_is_dsc_supported_by_source()
2023-06-16 9:32 ` Kamil Konieczny
@ 2023-06-16 13:58 ` Sharma, Swati2
0 siblings, 0 replies; 12+ messages in thread
From: Sharma, Swati2 @ 2023-06-16 13:58 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev, Ankit Nautiyal
On 16-Jun-23 3:02 PM, Kamil Konieczny wrote:
> Hi Swati,
>
> one small question, see below.
>
> On 2023-06-14 at 22:24:31 +0530, Swati Sharma wrote:
>> Instead of assuming dsc is supported on gen11+ platforms,
>> lets use has_dsc flag in i915_capability to check hardware
>> support.
>>
>> v2: -moved changes to lib (Ankit)
>> v3: -keep includes in alphabetical order (Kamil)
>> -don't use igt_require() in lib (Kamil)
>> -improve return statement (Kamil)
>> v4: -add debug print (Kamil)
>>
>> Cc: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
>> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
>> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
>> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
>> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
>> ---
>> lib/igt_dsc.c | 22 ++++++++++++++++++++++
>> lib/igt_dsc.h | 1 +
>> tests/i915/kms_dsc.c | 2 +-
>> tests/i915/kms_dsc_helper.c | 10 ++++++++++
>> tests/i915/kms_dsc_helper.h | 1 +
>> tests/kms_invalid_mode.c | 3 ++-
>> 6 files changed, 37 insertions(+), 2 deletions(-)
>>
>> diff --git a/lib/igt_dsc.c b/lib/igt_dsc.c
>> index 6cbd8bae..76a420c1 100644
>> --- a/lib/igt_dsc.c
>> +++ b/lib/igt_dsc.c
>> @@ -6,6 +6,7 @@
>> #include <unistd.h>
>> #include <fcntl.h>
>> #include <string.h>
>> +#include "igt_core.h"
>> #include "igt_dsc.h"
>> #include "igt_sysfs.h"
>>
>> @@ -41,6 +42,27 @@ 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
>> + *
>> + * Returns: True if DSC is supported by source, false otherwise.
>> + */
>> +bool igt_is_dsc_supported_by_source(int drmfd)
>> +{
>> + char buf[4096];
>> + int dir, res;
>> +
>> + dir = igt_debugfs_dir(drmfd);
>> + igt_assert(dir >= 0);
>> +
>> + res = igt_debugfs_simple_read(dir, "i915_capabilities",
>> + buf, sizeof(buf));
>> + close(dir);
>> +
>> + return res > 0 ? strstr(buf, "has_dsc: yes") : 0;
>> +}
>> +
>> /*
>> * igt_is_dsc_supported_by_sink:
>> * @drmfd: A drm file descriptor
>> diff --git a/lib/igt_dsc.h b/lib/igt_dsc.h
>> index 241fc0ac..b58743b5 100644
>> --- a/lib/igt_dsc.h
>> +++ b/lib/igt_dsc.h
>> @@ -9,6 +9,7 @@
>> #include "igt_fb.h"
>> #include "igt_kms.h"
>>
>> +bool igt_is_dsc_supported_by_source(int drmfd);
>> bool igt_is_dsc_supported_by_sink(int drmfd, char *connector_name);
>> bool igt_is_fec_supported(int drmfd, char *connector_name);
>> bool igt_is_dsc_enabled(int drmfd, char *connector_name);
>> diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
>> index 5b4abd6a..c0707806 100644
>> --- a/tests/i915/kms_dsc.c
>> +++ b/tests/i915/kms_dsc.c
>> @@ -287,7 +287,7 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
>> igt_install_exit_handler(kms_dsc_exit_handler);
>> igt_display_require(&data.display, data.drm_fd);
>> igt_display_require_output(&data.display);
>> - igt_require(data.disp_ver >= 11);
>> + igt_require(is_dsc_supported_by_source(data.drm_fd));
>> }
>>
>> igt_describe("Tests basic display stream compression functionality if supported "
>> diff --git a/tests/i915/kms_dsc_helper.c b/tests/i915/kms_dsc_helper.c
>> index c90d833d..61f76dde 100644
>> --- a/tests/i915/kms_dsc_helper.c
>> +++ b/tests/i915/kms_dsc_helper.c
>> @@ -53,6 +53,16 @@ void kms_dsc_exit_handler(int sig)
>> restore_force_dsc_en();
>> }
>>
>> +bool is_dsc_supported_by_source(int drmfd)
>> +{
>> + if (!igt_is_dsc_supported_by_source(drmfd)) {
>> + igt_debug("DSC not supported by source\n");
>> + return false;
>> + }
>> +
>> + return true;
>> +}
>> +
>> bool is_dsc_supported_by_sink(int drmfd, igt_output_t *output)
>> {
>> if (!igt_is_dsc_supported_by_sink(drmfd, output->name)) {
>> diff --git a/tests/i915/kms_dsc_helper.h b/tests/i915/kms_dsc_helper.h
>> index f66191c7..2109bd76 100644
>> --- a/tests/i915/kms_dsc_helper.h
>> +++ b/tests/i915/kms_dsc_helper.h
>> @@ -27,6 +27,7 @@ void save_force_dsc_en(int drmfd, igt_output_t *output);
>> void restore_force_dsc_en(void);
>> void kms_dsc_exit_handler(int sig);
>> bool is_dsc_supported_by_sink(int drmfd, igt_output_t *output);
>> +bool is_dsc_supported_by_source(int drmfd);
>> bool check_gen11_dp_constraint(int drmfd, igt_output_t *output, enum pipe pipe);
>> bool check_gen11_bpc_constraint(int drmfd, igt_output_t *output, int input_bpc);
>> void force_dsc_output_format(int drmfd, igt_output_t *output,
>> diff --git a/tests/kms_invalid_mode.c b/tests/kms_invalid_mode.c
>> index 63da3a1c..2bb9912f 100644
>> --- a/tests/kms_invalid_mode.c
>> +++ b/tests/kms_invalid_mode.c
>> @@ -60,7 +60,8 @@ can_bigjoiner(data_t *data)
>> if (intel_display_ver(devid) > 12) {
>> igt_debug("Platform supports uncompressed bigjoiner\n");
>
> You do not check sink here.
Since its uncompressed BJ, it won't require DSC engine. Therefore,
no need to check if dsc is supported by sink or not.
>
>> return true;
>> - } else if (intel_display_ver(devid) >= 11) {
>> + } else if (igt_is_dsc_supported_by_source(data->drm_fd)) {
>> + igt_debug("Platform supports compressed bigjoiner\n");
> -------------------------- ^
>> return igt_is_dsc_supported_by_sink(data->drm_fd, data->output->name);
> ---------------------- ^
> Here you printed it supported bigjoiner, yet function may return
> false depending on sink ?
Else condition will be "compressed" BJ support. Now, DSC engine will
come into picture and we need to check if sink also supports DSC or not.
Support of BJ (i) compressed (ii) uncompressed depends on platform.
If compressed, check sink's dsc support. In case of uncompressed not
required.
Also, I m thinking to return back to v3 version, and if required add
separate patch for this igt_debug.
>
> Regards,
> Kamil
>
>> }
>>
>> --
>> 2.25.1
>>
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2023-06-16 13:58 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-14 16:54 [igt-dev] [PATCH i-g-t v4 0/3] check dsc hardware capability Swati Sharma
2023-06-14 16:54 ` [igt-dev] [PATCH i-g-t 1/3] tests: s/igt_is_dsc_supported/igt_is_dsc_supported_by_sink Swati Sharma
2023-06-14 16:54 ` [igt-dev] [PATCH i-g-t 2/3] tests: s/check_dsc_on_connector/is_dsc_supported_by_sink Swati Sharma
2023-06-14 16:54 ` [igt-dev] [PATCH i-g-t v4 3/3] tests: add igt_is_dsc_supported_by_source() Swati Sharma
2023-06-16 9:32 ` Kamil Konieczny
2023-06-16 13:58 ` Sharma, Swati2
2023-06-14 17:54 ` [igt-dev] ✗ Fi.CI.BAT: failure for check dsc hardware capability (rev3) Patchwork
2023-06-15 16:15 ` [igt-dev] ✗ GitLab.Pipeline: warning for check dsc hardware capability (rev4) Patchwork
2023-06-15 16:41 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-06-15 17:44 ` [igt-dev] ✓ Fi.CI.BAT: success for check dsc hardware capability (rev5) Patchwork
2023-06-15 20:31 ` [igt-dev] ✓ Fi.CI.IGT: success for check dsc hardware capability (rev4) Patchwork
2023-06-15 22:19 ` [igt-dev] ✓ Fi.CI.IGT: success for check dsc hardware capability (rev5) Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox