* [PATCH i-g-t v1] tools/intel_hdcp: Introduce intel_hdcp tool
@ 2024-12-04 9:56 Santhosh Reddy Guddati
2024-12-04 10:43 ` Jani Nikula
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Santhosh Reddy Guddati @ 2024-12-04 9:56 UTC (permalink / raw)
To: igt-dev
Cc: suraj.kandpal, ankit.k.nautiyal, mohammed.thasleem,
Santhosh Reddy Guddati
Add a new HDCP tool for self-testing and easy deployment
to client machines. This tool helps diagnose issues,
determining whether the problem lies in the driver or user space.
The current changes include tool skeleton and get hdcp info
on the connected outputs.
Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
---
tools/intel_hdcp.c | 203 +++++++++++++++++++++++++++++++++++++++++++++
tools/meson.build | 1 +
2 files changed, 204 insertions(+)
create mode 100644 tools/intel_hdcp.c
diff --git a/tools/intel_hdcp.c b/tools/intel_hdcp.c
new file mode 100644
index 000000000..8c0258092
--- /dev/null
+++ b/tools/intel_hdcp.c
@@ -0,0 +1,203 @@
+/*
+ * Copyright © 2024 Intel Corporation
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ * DEALINGS IN THE SOFTWARE.
+ *
+ * This tool designed to mimic an HDCP video player, capable of performing
+ * self-tests and easily deployable to client machines. This tool helps identify
+ * whether issues are rooted in the driver or user space.
+ *
+ */
+
+#include <stdio.h>
+#include "igt.h"
+#include <fcntl.h>
+
+#define MAX_HDCP_BUF_LEN 5000
+
+typedef struct data {
+ int fd;
+ igt_display_t display;
+ struct igt_fb red, green;
+ int height, width;
+} data_t;
+
+
+/* TODO: Implement the actual HDCP enabling logic here
+ * Steps:
+ * 1. Open the appropriate debugfs file for the connector.
+ * 2. Enable HDCP on the output using connector properties
+ * IGT_CONNECTOR_CONTENT_PROTECTION and IGT_CONNECTOR_HDCP_CONTENT_TYPE.
+ * 3. Check the status to ensure HDCP is enabled.
+ */
+static void enable_hdcp(void)
+{
+ igt_debug("TODO: Enable HDCP\n");
+}
+
+/* TODO: Implement the actual HDCP disabling logic here */
+static void disable_hdcp(void)
+{
+ igt_debug("TODO: Disable HDCP\n");
+}
+
+static bool sink_hdcp2_capable(data_t *data, igt_output_t *output)
+{
+ char buf[MAX_HDCP_BUF_LEN];
+ int fd;
+
+ fd = igt_debugfs_connector_dir(data->fd, output->name, O_RDONLY);
+ if (fd < 0)
+ return false;
+
+ if (is_intel_device(data->fd))
+ igt_debugfs_simple_read(fd, "i915_hdcp_sink_capability", buf, sizeof(buf));
+ else
+ igt_debugfs_simple_read(fd, "hdcp_sink_capability", buf, sizeof(buf));
+
+ close(fd);
+
+ igt_debug("Sink capability: %s\n", buf);
+ return strstr(buf, "HDCP2.2");
+}
+
+static bool sink_hdcp_capable(data_t *data, igt_output_t *output)
+{
+ char buf[MAX_HDCP_BUF_LEN];
+ int fd;
+
+ fd = igt_debugfs_connector_dir(data->fd, output->name, O_RDONLY);
+ if (fd < 0)
+ return false;
+
+ if (is_intel_device(data->fd))
+ igt_debugfs_simple_read(fd, "i915_hdcp_sink_capability", buf, sizeof(buf));
+ else
+ igt_debugfs_simple_read(fd, "hdcp_sink_capability", buf, sizeof(buf));
+
+ close(fd);
+
+ igt_debug("Sink capability: %s\n", buf);
+ return strstr(buf, "HDCP1.4");
+}
+
+static const char *get_hdcp_version(igt_output_t *output, data_t *data)
+{
+ if (sink_hdcp2_capable(data, output))
+ return "HDCP 2.2";
+ else if (sink_hdcp_capable(data, output))
+ return "HDCP 1.4";
+ else
+ return "No HDCP support";
+}
+
+static void get_hdcp_info(data_t *data)
+{
+ igt_output_t *output;
+ igt_display_t *display = &data->display;
+
+ igt_info("\nHDCP Sink Information\n");
+ for_each_connected_output(display, output) {
+ igt_info("Output: %s\tHDCP Supported Version: %s\n",
+ igt_output_name(output), get_hdcp_version(output, data));
+ }
+}
+
+static void print_usage(void)
+{
+ igt_info("Usage: intel_hdcp [OPTIONS]\n");
+ igt_info("Options:\n");
+ igt_info("-i, --info Get HDCP Information\n");
+ igt_info("-e, --enable Enable HDCP on the output\n");
+ igt_info("-d, --disable Disable HDCP on the specific output\n");
+ igt_info("-h, --help Display this help message\n");
+}
+
+static void create_frame_buffers(int fd, data_t *data)
+{
+ igt_output_t *output;
+ drmModeModeInfo *mode;
+ uint16_t width, height;
+ igt_display_t *display = &data->display;
+
+ for_each_connected_output(display, output) {
+ mode = igt_output_get_mode(output);
+ igt_assert(mode);
+
+ width = mode->hdisplay;
+ height = mode->vdisplay;
+ }
+
+ data->width = width;
+ data->height = height;
+
+ igt_create_color_fb(data->fd, width, height,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1.f, 0.f, 0.f, &data->red);
+ igt_create_color_fb(data->fd, width, height,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0.f, 1.f, 0.f, &data->green);
+}
+
+static void hdcp_init(data_t *data)
+{
+ data->fd = drm_open_driver_master(DRIVER_ANY);
+ if (data->fd < 0) {
+ fprintf(stderr, "Failed to open DRM driver\n");
+ exit(EXIT_FAILURE);
+ }
+ igt_display_require(&data->display, data->fd);
+ igt_display_require_output(&data->display);
+ create_frame_buffers(data->fd, data);
+}
+
+int main(int argc, char **argv)
+{
+ data_t data;
+ int option;
+ static const char optstr[] = "hied";
+ struct option long_opts[] = {
+ {"help", no_argument, NULL, 'h'},
+ {"info", no_argument, NULL, 'i'},
+ {"enable", no_argument, NULL, 'e'},
+ {"disable", no_argument, NULL, 'd'},
+ {NULL, 0, NULL, 0 }
+ };
+
+ hdcp_init(&data);
+
+ while ((option = getopt_long(argc, argv, optstr, long_opts, NULL)) != -1) {
+ switch (option) {
+ case 'i':
+ get_hdcp_info(&data);
+ break;
+ case 'e':
+ enable_hdcp();
+ break;
+ case 'd':
+ disable_hdcp();
+ break;
+ case 'h':
+ default:
+ print_usage();
+ break;
+ }
+ }
+}
diff --git a/tools/meson.build b/tools/meson.build
index 48c9a4b50..8e24005eb 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -27,6 +27,7 @@ tools_progs = [
'intel_gpu_time',
'intel_gtt',
'intel_guc_logger',
+ 'intel_hdcp',
'intel_infoframes',
'intel_lid',
'intel_opregion_decode',
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v1] tools/intel_hdcp: Introduce intel_hdcp tool
2024-12-04 9:56 [PATCH i-g-t v1] tools/intel_hdcp: Introduce intel_hdcp tool Santhosh Reddy Guddati
@ 2024-12-04 10:43 ` Jani Nikula
2024-12-04 19:54 ` ✗ i915.CI.Full: failure for " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 8+ messages in thread
From: Jani Nikula @ 2024-12-04 10:43 UTC (permalink / raw)
To: Santhosh Reddy Guddati, igt-dev
Cc: suraj.kandpal, ankit.k.nautiyal, mohammed.thasleem,
Santhosh Reddy Guddati
On Wed, 04 Dec 2024, Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> wrote:
> Add a new HDCP tool for self-testing and easy deployment
> to client machines. This tool helps diagnose issues,
> determining whether the problem lies in the driver or user space.
>
> The current changes include tool skeleton and get hdcp info
> on the connected outputs.
>
> Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
> ---
> tools/intel_hdcp.c | 203 +++++++++++++++++++++++++++++++++++++++++++++
> tools/meson.build | 1 +
> 2 files changed, 204 insertions(+)
> create mode 100644 tools/intel_hdcp.c
>
> diff --git a/tools/intel_hdcp.c b/tools/intel_hdcp.c
> new file mode 100644
> index 000000000..8c0258092
> --- /dev/null
> +++ b/tools/intel_hdcp.c
> @@ -0,0 +1,203 @@
> +/*
> + * Copyright © 2024 Intel Corporation
> + *
> + * Permission is hereby granted, free of charge, to any person obtaining a
> + * copy of this software and associated documentation files (the "Software"),
> + * to deal in the Software without restriction, including without limitation
> + * the rights to use, copy, modify, merge, publish, distribute, sublicense,
> + * and/or sell copies of the Software, and to permit persons to whom the
> + * Software is furnished to do so, subject to the following conditions:
> + *
> + * The above copyright notice and this permission notice (including the next
> + * paragraph) shall be included in all copies or substantial portions of the
> + * Software.
> + *
> + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
> + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
> + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
> + * DEALINGS IN THE SOFTWARE.
Drive-by comment, please use SPDX.
BR,
Jani.
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.Full: failure for tools/intel_hdcp: Introduce intel_hdcp tool
2024-12-04 9:56 [PATCH i-g-t v1] tools/intel_hdcp: Introduce intel_hdcp tool Santhosh Reddy Guddati
2024-12-04 10:43 ` Jani Nikula
@ 2024-12-04 19:54 ` Patchwork
2024-12-04 21:43 ` ✗ Xe.CI.Full: " Patchwork
2024-12-06 17:18 ` [PATCH i-g-t v1] " Kamil Konieczny
3 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-12-04 19:54 UTC (permalink / raw)
To: Santhosh Reddy Guddati; +Cc: igt-dev
== Series Details ==
Series: tools/intel_hdcp: Introduce intel_hdcp tool
URL : https://patchwork.freedesktop.org/series/142099/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15788_full -> IGTPW_12242_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12242_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12242_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/index.html
Participating hosts (10 -> 9)
------------------------------
Missing (1): shard-dg2-set2
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12242_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-snb: NOTRUN -> [ABORT][1] +4 other tests abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-snb4/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-glk: NOTRUN -> [INCOMPLETE][2] +2 other tests incomplete
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-glk1/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_softpin@softpin:
- shard-dg1: NOTRUN -> [ABORT][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-17/igt@gem_softpin@softpin.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-mtlp: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-6/igt@kms_async_flips@invalid-async-flip-atomic.html
- shard-dg2: NOTRUN -> [SKIP][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-6/igt@kms_async_flips@invalid-async-flip-atomic.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@gem_exec_suspend@basic-s3@lmem0:
- {shard-dg2-9}: NOTRUN -> [INCOMPLETE][6] +1 other test incomplete
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-9/igt@gem_exec_suspend@basic-s3@lmem0.html
New tests
---------
New tests have been introduced between CI_DRM_15788_full and IGTPW_12242_full:
### New IGT tests (11) ###
* igt@kms_async_flips@invalid-async-flip-atomic@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.31] s
* igt@kms_async_flips@invalid-async-flip-atomic@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.41] s
* igt@kms_async_flips@invalid-async-flip-atomic@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.31] s
* igt@kms_async_flips@invalid-async-flip-atomic@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.11] s
* igt@kms_async_flips@invalid-async-flip-atomic@pipe-c-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.30] s
* igt@kms_async_flips@invalid-async-flip-atomic@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.11] s
* igt@kms_async_flips@invalid-async-flip-atomic@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.11] s
* igt@kms_async_flips@test-time-stamp-atomic@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.25] s
* igt@kms_async_flips@test-time-stamp-atomic@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.26] s
* igt@kms_async_flips@test-time-stamp-atomic@pipe-c-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.25] s
* igt@kms_async_flips@test-time-stamp-atomic@pipe-d-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.77] s
Known issues
------------
Here are the changes found in IGTPW_12242_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#8411])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-14/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8411])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-2/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#8411])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-5/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@drm_fdinfo@busy-idle-check-all@vcs0:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +8 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-5/igt@drm_fdinfo@busy-idle-check-all@vcs0.html
* igt@drm_fdinfo@virtual-busy:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-7/igt@drm_fdinfo@virtual-busy.html
* igt@gem_caching@read-writes:
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#4873])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-3/igt@gem_caching@read-writes.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-1/igt@gem_ccs@block-multicopy-compressed.html
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-14/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#13008])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-4/igt@gem_ccs@large-ctrl-surf-copy.html
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#13008])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-18/igt@gem_ccs@large-ctrl-surf-copy.html
- shard-tglu: NOTRUN -> [SKIP][18] ([i915#13008])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-4/igt@gem_ccs@large-ctrl-surf-copy.html
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#13008])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-3/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ctx_persistence@engines-queued:
- shard-snb: NOTRUN -> [SKIP][20] ([i915#1099]) +7 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-snb7/igt@gem_ctx_persistence@engines-queued.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#8555])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-stop.html
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#8555])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-3/igt@gem_ctx_persistence@heartbeat-stop.html
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#8555])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-5/igt@gem_ctx_sseu@mmap-args.html
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-1/igt@gem_ctx_sseu@mmap-args.html
- shard-tglu: NOTRUN -> [SKIP][26] ([i915#280])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-2/igt@gem_ctx_sseu@mmap-args.html
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#280])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-7/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@reset-stress:
- shard-snb: NOTRUN -> [FAIL][28] ([i915#8898])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-snb1/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-chain:
- shard-rkl: NOTRUN -> [ABORT][29] ([i915#13218]) +26 other tests abort
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-1/igt@gem_exec_balancer@bonded-chain.html
* igt@gem_exec_balancer@busy:
- shard-tglu: NOTRUN -> [ABORT][30] ([i915#13218]) +25 other tests abort
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-3/igt@gem_exec_balancer@busy.html
* igt@gem_exec_balancer@full-late:
- shard-tglu-1: NOTRUN -> [ABORT][31] ([i915#13218]) +1 other test abort
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-1/igt@gem_exec_balancer@full-late.html
* igt@gem_exec_balancer@invalid-balancer:
- shard-mtlp: NOTRUN -> [ABORT][32] ([i915#13218]) +30 other tests abort
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-8/igt@gem_exec_balancer@invalid-balancer.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#4525]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-7/igt@gem_exec_balancer@parallel.html
- shard-tglu: NOTRUN -> [SKIP][34] ([i915#4525]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-5/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#4812])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-7/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-2/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-12/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_params@secure-non-root:
- shard-dg2: NOTRUN -> [SKIP][38] +10 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-7/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#3281]) +6 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-write-gtt-active:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#3281]) +7 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-13/igt@gem_exec_reloc@basic-write-gtt-active.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3281]) +7 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-4/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#3281]) +14 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-4/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@thriceslice:
- shard-snb: NOTRUN -> [SKIP][43] +438 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-snb7/igt@gem_exec_schedule@thriceslice.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-snb: NOTRUN -> [ABORT][44] ([i915#13242]) +3 other tests abort
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-snb4/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#4860]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4860]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-6/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#4860])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-18/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_swapping@heavy-random:
- shard-tglu: NOTRUN -> [SKIP][48] ([i915#4613]) +4 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-7/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][49] ([i915#4613])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#4565]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#4613]) +5 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#12193]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][53] ([i915#4613]) +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-glk3/igt@gem_lmem_swapping@random-engines.html
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4613]) +4 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-4/igt@gem_lmem_swapping@random-engines.html
* igt@gem_media_vme:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#284])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-3/igt@gem_media_vme.html
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#284])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-7/igt@gem_media_vme.html
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#284])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-1/igt@gem_media_vme.html
- shard-tglu-1: NOTRUN -> [SKIP][58] ([i915#284])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-1/igt@gem_media_vme.html
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#284])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-17/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic-small-copy:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4077]) +6 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-18/igt@gem_mmap_gtt@basic-small-copy.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4077]) +10 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_gtt@fault-concurrent-x:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4077]) +10 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-4/igt@gem_mmap_gtt@fault-concurrent-x.html
* igt@gem_mmap_wc@bad-object:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4083]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-6/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@bad-offset:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4083]) +4 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-3/igt@gem_mmap_wc@bad-offset.html
* igt@gem_mmap_wc@read-write-distinct:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4083]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-13/igt@gem_mmap_wc@read-write-distinct.html
* igt@gem_pread@bench:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#3282]) +9 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-3/igt@gem_pread@bench.html
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#3282]) +4 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-12/igt@gem_pread@bench.html
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#3282]) +5 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-4/igt@gem_pread@bench.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#3282]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-11/igt@gem_pread@snoop.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-tglu: NOTRUN -> [SKIP][70] ([i915#13033])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-5/igt@gem_pxp@hw-rejects-pxp-context.html
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#13033])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-2/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-rkl: NOTRUN -> [TIMEOUT][72] ([i915#12917] / [i915#12964]) +3 other tests timeout
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-2/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#5190] / [i915#8428]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-7/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#8428]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-3/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4079]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#8411]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4079])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-13/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_tiled_pread_pwrite:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4079])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-6/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@access-control:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3297]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-3/igt@gem_userptr_blits@access-control.html
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-3/igt@gem_userptr_blits@access-control.html
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#3297])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-18/igt@gem_userptr_blits@access-control.html
- shard-tglu: NOTRUN -> [SKIP][82] ([i915#3297])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-4/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#3297]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-3/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297] / [i915#4880])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#3297] / [i915#4880])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gen3_render_tiledy_blits:
- shard-mtlp: NOTRUN -> [SKIP][86] +20 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-6/igt@gen3_render_tiledy_blits.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#2856]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-4/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#2527]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-12/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@secure-batches:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#2527]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-2/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-tglu: NOTRUN -> [SKIP][90] ([i915#2527] / [i915#2856]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-5/igt@gen9_exec_parse@unaligned-jump.html
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#2856]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-2/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_fb_tiling:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#4881]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-5/igt@i915_fb_tiling.html
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#4881])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-4/igt@i915_fb_tiling.html
* igt@i915_module_load@reload-no-display:
- shard-snb: NOTRUN -> [ABORT][94] ([i915#11703])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-snb1/igt@i915_module_load@reload-no-display.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#7091])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-3/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#8436])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-3/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-tglu: NOTRUN -> [SKIP][97] ([i915#8399])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-3/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-rkl: NOTRUN -> [SKIP][98] +22 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-5/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-glk: NOTRUN -> [ABORT][99] ([i915#13218]) +19 other tests abort
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-glk3/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][100] ([i915#12797])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-glk9/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#11681])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-4/igt@i915_pm_rps@thresholds-park.html
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#11681])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-13/igt@i915_pm_rps@thresholds-park.html
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#11681]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-5/igt@i915_pm_rps@thresholds-park.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#7984])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-2/igt@i915_power@sanity.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6188])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-4/igt@i915_query@query-topology-coherent-slice-mask.html
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#6188])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-3/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_selftest@mock:
- shard-snb: NOTRUN -> [DMESG-WARN][107] ([i915#9311]) +1 other test dmesg-warn
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-snb4/igt@i915_selftest@mock.html
- shard-glk: NOTRUN -> [DMESG-WARN][108] ([i915#9311]) +1 other test dmesg-warn
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-glk1/igt@i915_selftest@mock.html
- shard-mtlp: NOTRUN -> [DMESG-WARN][109] ([i915#9311]) +1 other test dmesg-warn
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-3/igt@i915_selftest@mock.html
* igt@i915_selftest@mock@memory_region:
- shard-dg2: NOTRUN -> [DMESG-WARN][110] ([i915#9311]) +1 other test dmesg-warn
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-7/igt@i915_selftest@mock@memory_region.html
- shard-rkl: NOTRUN -> [DMESG-WARN][111] ([i915#9311]) +1 other test dmesg-warn
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-1/igt@i915_selftest@mock@memory_region.html
- shard-tglu-1: NOTRUN -> [DMESG-WARN][112] ([i915#9311]) +1 other test dmesg-warn
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-1/igt@i915_selftest@mock@memory_region.html
- shard-dg1: NOTRUN -> [DMESG-WARN][113] ([i915#9311]) +1 other test dmesg-warn
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-17/igt@i915_selftest@mock@memory_region.html
* igt@i915_selftest@perf:
- shard-rkl: NOTRUN -> [DMESG-WARN][114] ([i915#12964]) +5 other tests dmesg-warn
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-5/igt@i915_selftest@perf.html
- shard-tglu: NOTRUN -> [ABORT][115] ([i915#13010]) +1 other test abort
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-5/igt@i915_selftest@perf.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][116] ([i915#4817])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-glk8/igt@i915_suspend@forcewake.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#7707])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-1/igt@intel_hwmon@hwmon-read.html
- shard-tglu: NOTRUN -> [SKIP][118] ([i915#7707])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-7/igt@intel_hwmon@hwmon-read.html
- shard-mtlp: NOTRUN -> [SKIP][119] ([i915#7707])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-2/igt@intel_hwmon@hwmon-read.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#8709]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#8709]) +7 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5286]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-12/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#5286]) +7 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-5/igt@kms_big_fb@4-tiled-addfb.html
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#5286])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb.html
- shard-tglu: NOTRUN -> [SKIP][125] ([i915#5286]) +4 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-4/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#3638]) +3 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-2/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#3638]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-17/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#5190]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5190]) +7 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#6187]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#4538]) +4 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][132] +13 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#10307] / [i915#10434] / [i915#6095])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#6095]) +9 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-1/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#12313]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#12313]) +2 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#12313]) +2 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#12313]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][139] ([i915#12313])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#10307] / [i915#6095]) +52 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-5/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#6095]) +55 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#12805])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#12805])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#12805])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#12805])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#6095]) +44 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#6095]) +49 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#6095]) +9 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#6095]) +59 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-13/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][150] +238 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-glk2/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#7828]) +8 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-3/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#7828]) +7 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-7/igt@kms_chamelium_frames@hdmi-crc-multiple.html
- shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#7828])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#7828]) +12 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd.html
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#7828]) +7 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#7828]) +7 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-8/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#3116] / [i915#3299])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-5/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3299])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#3299])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#3116]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-1/igt@kms_content_protection@dp-mst-type-0.html
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#3299])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-14/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#7118] / [i915#9424])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-5/igt@kms_content_protection@uevent.html
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#7118] / [i915#9424])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-2/igt@kms_content_protection@uevent.html
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#7116] / [i915#9424])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-13/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-tglu: NOTRUN -> [SKIP][165] ([i915#3555]) +3 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-5/igt@kms_cursor_crc@cursor-random-32x10.html
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#8814])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-2/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#13049])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#13049])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#13049])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#13049])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-5/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#13049])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-6/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#8814]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-tglu: NOTRUN -> [SKIP][173] +59 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-9/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#9809]) +5 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-snb: NOTRUN -> [FAIL][175] ([i915#12170])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-snb1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-snb: NOTRUN -> [FAIL][176] ([i915#11968])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-snb1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#3555]) +2 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-2/igt@kms_display_modes@extended-mode-basic.html
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#3555]) +3 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-7/igt@kms_display_modes@extended-mode-basic.html
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#8827])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-2/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#3804])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#3555])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-12/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#1769] / [i915#3555] / [i915#3804])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#3804])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#3804])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#3840])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-7/igt@kms_dsc@dsc-with-formats.html
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#3840])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-6/igt@kms_dsc@dsc-with-formats.html
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#3840])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-10/igt@kms_dsc@dsc-with-formats.html
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#3840])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-4/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#3955])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-2/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-2x:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#1839]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-2/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#1839])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-6/igt@kms_feature_discovery@display-3x.html
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#1839]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-3/igt@kms_feature_discovery@display-3x.html
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#1839])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-12/igt@kms_feature_discovery@display-3x.html
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#1839]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-7/igt@kms_feature_discovery@display-3x.html
* igt@kms_fence_pin_leak:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#4881]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-18/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#3637]) +7 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-4/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#9934]) +10 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-10/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#3637]) +8 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#9934]) +11 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-1/igt@kms_flip@2x-plain-flip.html
- shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#3637]) +2 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-1/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#9934]) +9 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-13/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@blocking-wf_vblank:
- shard-rkl: [PASS][202] -> [FAIL][203] ([i915#11989] / [i915#12840])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-rkl-2/igt@kms_flip@blocking-wf_vblank.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-4/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank@b-hdmi-a1:
- shard-rkl: [PASS][204] -> [FAIL][205] ([i915#11989]) +4 other tests fail
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-rkl-2/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-4/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html
* igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1:
- shard-tglu: [PASS][206] -> [FAIL][207] ([i915#11989]) +3 other tests fail
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-tglu-9/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-2/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#2672] / [i915#3555] / [i915#8813]) +5 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#2672] / [i915#8813]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#2672] / [i915#3555])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#2672])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#2672] / [i915#3555])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#2672] / [i915#3555])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][214] ([i915#2587] / [i915#2672])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
- shard-tglu: NOTRUN -> [SKIP][215] ([i915#2587] / [i915#2672])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8810] / [i915#8813])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8810])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#2672] / [i915#3555] / [i915#5190])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#2672])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#2672] / [i915#3555]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#5274])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#5274])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-7/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#1825]) +19 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#8708]) +9 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#8708]) +8 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#5354]) +26 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#9766])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#10433] / [i915#3458]) +1 other test skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#3458]) +9 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#3458]) +9 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt:
- shard-dg1: NOTRUN -> [SKIP][231] +28 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#1825]) +42 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#3023]) +24 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#8708]) +8 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_hdr@static-toggle-dpms:
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#3555] / [i915#8228])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-3/igt@kms_hdr@static-toggle-dpms.html
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8228])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-4/igt@kms_hdr@static-toggle-dpms.html
- shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-1/igt@kms_hdr@static-toggle-dpms.html
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-13/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_invalid_mode@clock-too-high:
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#6403] / [i915#8826])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-2/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#9457]) +3 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-2/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#10656])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-2/igt@kms_joiner@basic-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#10656])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-12/igt@kms_joiner@basic-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][243] ([i915#10656])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-9/igt@kms_joiner@basic-big-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#10656])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-5/igt@kms_joiner@basic-big-joiner.html
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#10656])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-4/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#12339]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-5/igt@kms_joiner@basic-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#12339])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-18/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#12339]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#12339]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#12339]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-10/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_plane_cursor@viewport:
- shard-rkl: [PASS][251] -> [DMESG-WARN][252] ([i915#12917] / [i915#12964])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-rkl-4/igt@kms_plane_cursor@viewport.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-7/igt@kms_plane_cursor@viewport.html
* igt@kms_plane_cursor@viewport@pipe-b-hdmi-a-1-size-64:
- shard-rkl: [PASS][253] -> [DMESG-WARN][254] ([i915#12964]) +2 other tests dmesg-warn
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-rkl-4/igt@kms_plane_cursor@viewport@pipe-b-hdmi-a-1-size-64.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-7/igt@kms_plane_cursor@viewport@pipe-b-hdmi-a-1-size-64.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8821])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-4/igt@kms_plane_lowres@tiling-y.html
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#8821])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-6/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#5354] / [i915#9423])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#12247]) +7 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][259] ([i915#12247]) +9 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#12247] / [i915#9423])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#12247]) +9 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#12247]) +7 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#12247]) +8 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#12247] / [i915#6953] / [i915#9423])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#12247] / [i915#6953])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#12247] / [i915#6953])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-13/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-tglu: NOTRUN -> [SKIP][267] ([i915#9812])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-2/igt@kms_pm_backlight@fade-with-suspend.html
- shard-mtlp: NOTRUN -> [ABORT][268] ([i915#10159] / [i915#13218]) +1 other test abort
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-5/igt@kms_pm_backlight@fade-with-suspend.html
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#5354])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-7/igt@kms_pm_backlight@fade-with-suspend.html
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#5354])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-13/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#3828])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-6/igt@kms_pm_dc@dc5-retention-flops.html
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#3828])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-10/igt@kms_pm_dc@dc5-retention-flops.html
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#3828])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-7/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#3828]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#6524])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-1/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#11520]) +7 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#11520]) +3 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#9808]) +2 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][279] ([i915#11520]) +5 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-5/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
- shard-glk: NOTRUN -> [SKIP][280] ([i915#11520]) +6 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-glk4/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#12316]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-2/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-snb: NOTRUN -> [SKIP][282] ([i915#11520]) +13 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-snb2/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg1: NOTRUN -> [SKIP][283] ([i915#11520]) +3 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-13/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#9683])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][285] ([i915#9732]) +3 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-1/igt@kms_psr@fbc-pr-cursor-mmap-cpu.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#1072] / [i915#9732]) +11 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-12/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][287] ([i915#9688]) +18 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-7/igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1.html
* igt@kms_psr@fbc-psr-primary-blt:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#1072] / [i915#9732]) +16 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-2/igt@kms_psr@fbc-psr-primary-blt.html
* igt@kms_psr@fbc-psr-sprite-plane-move:
- shard-tglu: NOTRUN -> [SKIP][289] ([i915#9732]) +13 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-3/igt@kms_psr@fbc-psr-sprite-plane-move.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#1072] / [i915#9732]) +19 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-2/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#9685]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#9685]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-17/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#9685])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-9/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#9685]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#5289])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
- shard-dg1: NOTRUN -> [SKIP][296] ([i915#5289])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-14/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
- shard-tglu: NOTRUN -> [SKIP][297] ([i915#5289])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][298] ([i915#12276]) +1 other test incomplete
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-glk5/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@negative-basic:
- shard-rkl: NOTRUN -> [SKIP][299] ([i915#3555] / [i915#9906])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-7/igt@kms_vrr@negative-basic.html
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#3555] / [i915#9906])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-5/igt@kms_vrr@negative-basic.html
* igt@perf_pmu@busy-accuracy-2@rcs0:
- shard-dg2: NOTRUN -> [ABORT][301] ([i915#13218]) +24 other tests abort
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-7/igt@perf_pmu@busy-accuracy-2@rcs0.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-snb: NOTRUN -> [ABORT][302] ([i915#13218]) +11 other tests abort
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-snb1/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@busy-hang:
- shard-dg1: NOTRUN -> [ABORT][303] ([i915#13218]) +25 other tests abort
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-17/igt@perf_pmu@busy-hang.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#3708] / [i915#4077])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-7/igt@prime_vgem@coherency-gtt.html
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#3708])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-1/igt@prime_vgem@coherency-gtt.html
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#3708] / [i915#4077])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-17/igt@prime_vgem@coherency-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][307] ([i915#3708] / [i915#4077])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-3/igt@prime_vgem@coherency-gtt.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#9917]) +1 other test skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-1/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@bind-unbind-vf@vf-4:
- shard-tglu: NOTRUN -> [FAIL][309] ([i915#12910]) +18 other tests fail
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-tglu-7/igt@sriov_basic@bind-unbind-vf@vf-4.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg1: NOTRUN -> [SKIP][310] ([i915#9917]) +1 other test skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg1-18/igt@sriov_basic@enable-vfs-bind-unbind-each.html
- shard-dg2: NOTRUN -> [SKIP][311] ([i915#9917])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-4:
- shard-mtlp: NOTRUN -> [FAIL][312] ([i915#12910]) +18 other tests fail
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-mtlp-4/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-4.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][313] ([i915#12392]) -> [PASS][314]
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_ctx_persistence@many-contexts:
- shard-rkl: [DMESG-WARN][315] ([i915#12964]) -> [PASS][316] +5 other tests pass
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-rkl-2/igt@gem_ctx_persistence@many-contexts.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-rkl-2/igt@gem_ctx_persistence@many-contexts.html
* igt@i915_module_load@load:
- shard-dg2: ([PASS][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330], [PASS][331], [PASS][332], [PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337], [FAIL][338]) ([i915#13138]) -> ([PASS][339], [PASS][340], [PASS][341], [PASS][342], [PASS][343], [PASS][344], [PASS][345], [PASS][346], [PASS][347], [PASS][348], [PASS][349], [PASS][350], [PASS][351], [PASS][352], [PASS][353], [PASS][354], [PASS][355], [PASS][356], [PASS][357], [PASS][358], [PASS][359], [PASS][360], [PASS][361])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-3/igt@i915_module_load@load.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-3/igt@i915_module_load@load.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-5/igt@i915_module_load@load.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-1/igt@i915_module_load@load.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-8/igt@i915_module_load@load.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-2/igt@i915_module_load@load.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-4/igt@i915_module_load@load.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-10/igt@i915_module_load@load.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-8/igt@i915_module_load@load.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-4/igt@i915_module_load@load.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-2/igt@i915_module_load@load.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-5/igt@i915_module_load@load.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-7/igt@i915_module_load@load.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-6/igt@i915_module_load@load.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-1/igt@i915_module_load@load.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-2/igt@i915_module_load@load.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-8/igt@i915_module_load@load.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-10/igt@i915_module_load@load.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-5/igt@i915_module_load@load.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-6/igt@i915_module_load@load.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-11/igt@i915_module_load@load.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-dg2-11/igt@i915_module_load@load.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-8/igt@i915_module_load@load.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-11/igt@i915_module_load@load.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-8/igt@i915_module_load@load.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-1/igt@i915_module_load@load.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-7/igt@i915_module_load@load.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-7/igt@i915_module_load@load.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-11/igt@i915_module_load@load.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-6/igt@i915_module_load@load.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-1/igt@i915_module_load@load.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-6/igt@i915_module_load@load.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-6/igt@i915_module_load@load.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-10/igt@i915_module_load@load.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-2/igt@i915_module_load@load.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-5/igt@i915_module_load@load.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-5/igt@i915_module_load@load.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-2/igt@i915_module_load@load.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-5/igt@i915_module_load@load.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-10/igt@i915_module_load@load.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-4/igt@i915_module_load@load.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-3/igt@i915_module_load@load.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-4/igt@i915_module_load@load.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-4/igt@i915_module_load@load.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-dg2-3/igt@i915_module_load@load.html
#### Warnings ####
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: [INCOMPLETE][362] ([i915#12745] / [i915#1982] / [i915#4839]) -> [INCOMPLETE][363] ([i915#12745] / [i915#4839])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-glk1/igt@kms_flip@2x-flip-vs-suspend.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-glk3/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
- shard-glk: [INCOMPLETE][364] ([i915#1982] / [i915#4839]) -> [INCOMPLETE][365] ([i915#4839])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15788/shard-glk1/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/shard-glk3/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10159
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11703]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703
[i915#11968]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11968
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[i915#12170]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12170
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12797]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12797
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12840
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13010]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13010
[i915#13033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13033
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13138
[i915#13218]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13218
[i915#13242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13242
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188
[i915#6403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6403
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7091]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7091
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8436
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826
[i915#8827]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8827
[i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9457]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9457
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8138 -> IGTPW_12242
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_15788: 62d365d6c3078d7e4f34dd65735f6fcd7b53a856 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12242: 12242
IGT_8138: 8138
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12242/index.html
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.Full: failure for tools/intel_hdcp: Introduce intel_hdcp tool
2024-12-04 9:56 [PATCH i-g-t v1] tools/intel_hdcp: Introduce intel_hdcp tool Santhosh Reddy Guddati
2024-12-04 10:43 ` Jani Nikula
2024-12-04 19:54 ` ✗ i915.CI.Full: failure for " Patchwork
@ 2024-12-04 21:43 ` Patchwork
2024-12-06 17:18 ` [PATCH i-g-t v1] " Kamil Konieczny
3 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-12-04 21:43 UTC (permalink / raw)
To: Santhosh Reddy Guddati; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 77292 bytes --]
== Series Details ==
Series: tools/intel_hdcp: Introduce intel_hdcp tool
URL : https://patchwork.freedesktop.org/series/142099/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8138_full -> XEIGTPW_12242_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12242_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12242_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12242_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic:
- shard-lnl: NOTRUN -> [FAIL][3] +3 other tests fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-dp-2:
- shard-bmg: [PASS][4] -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-dp-2.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-dp-2.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [ABORT][6] +12 other tests abort
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
- shard-bmg: NOTRUN -> [DMESG-WARN][7]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
#### Warnings ####
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-bmg: [SKIP][8] ([Intel XE#2763]) -> [INCOMPLETE][9] +1 other test incomplete
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@xe_module_load@load:
- shard-dg2-set2: ([FAIL][10], [FAIL][11], [FAIL][12], [FAIL][13], [FAIL][14], [FAIL][15], [FAIL][16], [FAIL][17], [FAIL][18], [FAIL][19], [FAIL][20], [FAIL][21], [FAIL][22], [FAIL][23], [FAIL][24], [FAIL][25], [FAIL][26], [FAIL][27], [FAIL][28], [FAIL][29], [FAIL][30], [FAIL][31], [FAIL][32], [FAIL][33], [FAIL][34]) ([Intel XE#3691]) -> ([FAIL][35], [FAIL][36], [FAIL][37], [FAIL][38], [FAIL][39], [FAIL][40], [FAIL][41], [FAIL][42], [FAIL][43], [FAIL][44], [FAIL][45], [FAIL][46], [FAIL][47], [FAIL][48], [FAIL][49], [FAIL][50], [FAIL][51], [FAIL][52], [FAIL][53], [FAIL][54], [FAIL][55], [FAIL][56], [FAIL][57], [FAIL][58], [FAIL][59])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-434/igt@xe_module_load@load.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-434/igt@xe_module_load@load.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-434/igt@xe_module_load@load.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-436/igt@xe_module_load@load.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-434/igt@xe_module_load@load.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-434/igt@xe_module_load@load.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-434/igt@xe_module_load@load.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-435/igt@xe_module_load@load.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-435/igt@xe_module_load@load.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-435/igt@xe_module_load@load.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-435/igt@xe_module_load@load.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-435/igt@xe_module_load@load.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-435/igt@xe_module_load@load.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-466/igt@xe_module_load@load.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-466/igt@xe_module_load@load.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-466/igt@xe_module_load@load.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-466/igt@xe_module_load@load.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-466/igt@xe_module_load@load.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-dg2-466/igt@xe_module_load@load.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-466/igt@xe_module_load@load.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-466/igt@xe_module_load@load.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-466/igt@xe_module_load@load.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-466/igt@xe_module_load@load.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-466/igt@xe_module_load@load.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-466/igt@xe_module_load@load.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-435/igt@xe_module_load@load.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-435/igt@xe_module_load@load.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-435/igt@xe_module_load@load.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-435/igt@xe_module_load@load.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-435/igt@xe_module_load@load.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-435/igt@xe_module_load@load.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-435/igt@xe_module_load@load.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-436/igt@xe_module_load@load.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-436/igt@xe_module_load@load.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-436/igt@xe_module_load@load.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-436/igt@xe_module_load@load.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-436/igt@xe_module_load@load.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-436/igt@xe_module_load@load.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-434/igt@xe_module_load@load.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-434/igt@xe_module_load@load.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-434/igt@xe_module_load@load.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-434/igt@xe_module_load@load.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-434/igt@xe_module_load@load.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-dg2-434/igt@xe_module_load@load.html
New tests
---------
New tests have been introduced between XEIGT_8138_full and XEIGTPW_12242_full:
### New IGT tests (12) ###
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-edp-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.19] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-edp-1-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.91] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-edp-1-linear:
- Statuses : 1 fail(s)
- Exec time: [2.26] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.22] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-edp-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.21] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-edp-1-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.86] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-edp-1-linear:
- Statuses : 1 fail(s)
- Exec time: [2.27] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.22] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-edp-1-4:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-edp-1-4-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.81] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-edp-1-linear:
- Statuses : 1 fail(s)
- Exec time: [2.19] s
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.20] s
Known issues
------------
Here are the changes found in XEIGTPW_12242_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unplug-rescan:
- shard-bmg: [PASS][60] -> [DMESG-WARN][61] ([Intel XE#3468]) +20 other tests dmesg-warn
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@core_hotunplug@unplug-rescan.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-4/igt@core_hotunplug@unplug-rescan.html
* igt@intel_hwmon@hwmon-read:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1125])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@intel_hwmon@hwmon-read.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-bmg: [PASS][63] -> [INCOMPLETE][64] ([Intel XE#2613])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-lnl: [PASS][65] -> [FAIL][66] ([Intel XE#1426]) +1 other test fail
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1407]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [DMESG-FAIL][68] ([Intel XE#3468] / [Intel XE#877])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-5/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2327]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-3/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#1124]) +6 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-8/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#607])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2328])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1477])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1428])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#610])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1124]) +5 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#2191])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-8/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-3/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1512]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-8/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#367]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-8/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#367])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-5/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2652] / [Intel XE#787]) +17 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#3432])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#3432])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#2887]) +10 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [DMESG-WARN][86] ([Intel XE#3468]) +20 other tests dmesg-warn
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-c-dp-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2887]) +16 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_color@ctm-max:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2325]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-8/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_color@degamma:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#306])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-8/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#373]) +9 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-8/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2252]) +10 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-3/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][92] ([Intel XE#1178]) +3 other tests fail
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-2/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@srm:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#3278])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-7/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2320]) +8 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1424]) +5 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#2321]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-7/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2321]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#309]) +6 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2286]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [DMESG-WARN][100] ([Intel XE#877]) +1 other test dmesg-warn
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-bmg: [PASS][101] -> [DMESG-FAIL][102] ([Intel XE#3468]) +7 other tests dmesg-fail
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#323])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2244])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-8/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [FAIL][105] ([Intel XE#1695])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-3/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@display-4x:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1138])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-8/igt@kms_feature_discovery@display-4x.html
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#1138])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-1/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: NOTRUN -> [FAIL][108] ([Intel XE#2882])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][109] ([Intel XE#3321])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][110] ([Intel XE#3640]) +1 other test fail
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#1421]) +6 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-8/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#1401]) +2 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1397]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2293]) +5 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [FAIL][118] ([Intel XE#2333]) +20 other tests fail
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2311]) +44 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#651]) +17 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2313]) +29 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-bmg: NOTRUN -> [INCOMPLETE][122] ([Intel XE#1727] / [Intel XE#2050] / [Intel XE#3468])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [INCOMPLETE][123] ([Intel XE#1727] / [Intel XE#3468])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#656]) +41 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1503])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-4/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2934])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#2934])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#356])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format-source-clamping:
- shard-bmg: [PASS][129] -> [INCOMPLETE][130] ([Intel XE#1035] / [Intel XE#2566])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_plane@pixel-format-source-clamping.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-3/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0:
- shard-bmg: [PASS][131] -> [INCOMPLETE][132] ([Intel XE#1035])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-3/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2393])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-8/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#2763]) +19 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2763]) +9 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#736])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-8/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2391])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][138] -> [FAIL][139] ([Intel XE#718])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2505])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-5/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2499])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-4/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@drm-resources-equal:
- shard-bmg: [PASS][142] -> [DMESG-WARN][143] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests dmesg-warn
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_pm_rpm@drm-resources-equal.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-8/igt@kms_pm_rpm@drm-resources-equal.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#1439] / [Intel XE#3141])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-bmg: [PASS][145] -> [INCOMPLETE][146] ([Intel XE#1727] / [Intel XE#2864] / [Intel XE#3468])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-5/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#2893]) +3 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#1489]) +8 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-3/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#1128])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr-cursor-render@edp-1:
- shard-lnl: [PASS][150] -> [FAIL][151] ([Intel XE#2808]) +1 other test fail
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-8/igt@kms_psr@fbc-psr-cursor-render@edp-1.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@kms_psr@fbc-psr-cursor-render@edp-1.html
* igt@kms_psr@pr-dpms:
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#1406]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-8/igt@kms_psr@pr-dpms.html
* igt@kms_psr@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#2234] / [Intel XE#2850]) +12 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-3/igt@kms_psr@psr-suspend.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2414])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#3414]) +3 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-5/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-x-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [DMESG-FAIL][156] ([Intel XE#3468])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-5/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#1127]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2330])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#3414])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#2413])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-8/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#1435])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tv_load_detect@load-detect:
- shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#330])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-5/igt@kms_tv_load_detect@load-detect.html
- shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#2450])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-1/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@cmrr:
- shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#2168])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-4/igt@kms_vrr@cmrr.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#1499]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-8/igt@kms_vrr@flip-suspend.html
* igt@kms_writeback@writeback-fb-id:
- shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#756])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-5/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#756]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-5/igt@kms_writeback@writeback-invalid-parameters.html
* igt@xe_eudebug@basic-vm-bind:
- shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#2905]) +8 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-8/igt@xe_eudebug@basic-vm-bind.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram:
- shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#2905]) +7 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-5/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-bmg: NOTRUN -> [FAIL][170] ([Intel XE#2364])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-1/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-bmg: NOTRUN -> [TIMEOUT][171] ([Intel XE#1473])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
- shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#688]) +11 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][173] ([Intel XE#2322]) +12 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][174] ([Intel XE#1392]) +10 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early:
- shard-bmg: [PASS][175] -> [DMESG-WARN][176] ([Intel XE#3467] / [Intel XE#3468])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][177] ([Intel XE#2833])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-8/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_media_fill@media-fill:
- shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#560])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@xe_media_fill@media-fill.html
* igt@xe_module_load@force-load:
- shard-lnl: NOTRUN -> [SKIP][179] ([Intel XE#378])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@xe_module_load@force-load.html
- shard-bmg: NOTRUN -> [SKIP][180] ([Intel XE#2457])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-2/igt@xe_module_load@force-load.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [PASS][181] -> [DMESG-WARN][182] ([Intel XE#3467])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_module_load@reload-no-display.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-2/igt@xe_module_load@reload-no-display.html
* igt@xe_oa@invalid-oa-format-id:
- shard-bmg: [PASS][183] -> [DMESG-WARN][184] ([Intel XE#1727]) +1 other test dmesg-warn
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_oa@invalid-oa-format-id.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-8/igt@xe_oa@invalid-oa-format-id.html
* igt@xe_pat@pat-index-xehpc:
- shard-lnl: NOTRUN -> [SKIP][185] ([Intel XE#1420] / [Intel XE#2838])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-4/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][186] ([Intel XE#2236])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-5/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-basic:
- shard-lnl: NOTRUN -> [SKIP][187] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-8/igt@xe_pm@d3cold-basic.html
- shard-bmg: NOTRUN -> [SKIP][188] ([Intel XE#2284]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-4/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-mocs:
- shard-lnl: NOTRUN -> [SKIP][189] ([Intel XE#2284])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-8/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-lnl: NOTRUN -> [ABORT][190] ([Intel XE#1358] / [Intel XE#1616])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-5/igt@xe_pm@s2idle-d3hot-basic-exec.html
* igt@xe_pm@s2idle-exec-after:
- shard-lnl: NOTRUN -> [ABORT][191] ([Intel XE#1358])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-4/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s2idle-mocs:
- shard-bmg: NOTRUN -> [ABORT][192] ([Intel XE#3673])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-4/igt@xe_pm@s2idle-mocs.html
* igt@xe_pm@s3-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][193] ([Intel XE#584]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s4-basic-exec:
- shard-bmg: NOTRUN -> [DMESG-WARN][194] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-8/igt@xe_pm@s4-basic-exec.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-lnl: NOTRUN -> [SKIP][195] ([Intel XE#579])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-7/igt@xe_pm@vram-d3cold-threshold.html
- shard-bmg: NOTRUN -> [SKIP][196] ([Intel XE#579])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-5/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_query@multigpu-query-gt-list:
- shard-lnl: NOTRUN -> [SKIP][197] ([Intel XE#944]) +2 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-7/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][198] ([Intel XE#944]) +4 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-8/igt@xe_query@multigpu-query-invalid-cs-cycles.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-transition-fencing:
- shard-bmg: [DMESG-WARN][199] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][200]
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-8/igt@kms_atomic_transition@plane-all-transition-fencing.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-4/igt@kms_atomic_transition@plane-all-transition-fencing.html
* igt@kms_big_fb@linear-8bpp-rotate-180:
- shard-bmg: [DMESG-FAIL][201] ([Intel XE#3468]) -> [PASS][202] +21 other tests pass
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_big_fb@linear-8bpp-rotate-180.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-5/igt@kms_big_fb@linear-8bpp-rotate-180.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-bmg: [DMESG-FAIL][203] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][204]
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_draw_crc@draw-method-blt@rgb565-4tiled:
- shard-bmg: [INCOMPLETE][205] ([Intel XE#3468]) -> [PASS][206] +1 other test pass
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_draw_crc@draw-method-blt@rgb565-4tiled.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-2/igt@kms_draw_crc@draw-method-blt@rgb565-4tiled.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-bmg: [ABORT][207] ([Intel XE#3468]) -> [PASS][208] +1 other test pass
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3:
- shard-bmg: [DMESG-FAIL][209] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][210] +3 other tests pass
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3.html
* igt@kms_flip@modeset-vs-vblank-race-interruptible:
- shard-bmg: [DMESG-WARN][211] -> [PASS][212] +3 other tests pass
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-4/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3:
- shard-bmg: [DMESG-WARN][213] ([Intel XE#3468]) -> [PASS][214] +118 other tests pass
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-4/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
* igt@kms_flip@plain-flip-ts-check@a-edp1:
- shard-lnl: [FAIL][215] ([Intel XE#886]) -> [PASS][216] +1 other test pass
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-4/igt@kms_flip@plain-flip-ts-check@a-edp1.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-5/igt@kms_flip@plain-flip-ts-check@a-edp1.html
* igt@kms_flip@wf_vblank-ts-check@b-dp2:
- shard-bmg: [INCOMPLETE][217] -> [PASS][218]
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_flip@wf_vblank-ts-check@b-dp2.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-1/igt@kms_flip@wf_vblank-ts-check@b-dp2.html
* igt@kms_flip_tiling@flip-change-tiling:
- shard-bmg: [INCOMPLETE][219] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][220]
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_flip_tiling@flip-change-tiling.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-1/igt@kms_flip_tiling@flip-change-tiling.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4:
- shard-bmg: [DMESG-FAIL][221] ([Intel XE#2705]) -> [PASS][222] +2 other tests pass
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-1/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-x:
- shard-bmg: [DMESG-FAIL][223] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) -> [PASS][224]
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-x.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-1/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-x.html
* igt@kms_plane_lowres@tiling-none@pipe-c-hdmi-a-3:
- shard-bmg: [INCOMPLETE][225] ([Intel XE#3452]) -> [PASS][226]
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_plane_lowres@tiling-none@pipe-c-hdmi-a-3.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-1/igt@kms_plane_lowres@tiling-none@pipe-c-hdmi-a-3.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [FAIL][227] ([Intel XE#1430]) -> [PASS][228]
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-bmg: [DMESG-WARN][229] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][230] +2 other tests pass
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@kms_pm_dc@dc9-dpms.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-5/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@legacy-planes@plane-59:
- shard-lnl: [DMESG-WARN][231] ([Intel XE#3184]) -> [PASS][232] +1 other test pass
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-8/igt@kms_pm_rpm@legacy-planes@plane-59.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-4/igt@kms_pm_rpm@legacy-planes@plane-59.html
* igt@xe_exec_reset@cm-close-execqueues-close-fd:
- shard-lnl: [FAIL][233] ([Intel XE#1081]) -> [PASS][234]
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-7/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
- shard-bmg: [FAIL][235] ([Intel XE#1081]) -> [PASS][236]
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-2/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-bmg: [DMESG-WARN][237] ([Intel XE#1727]) -> [PASS][238] +2 other tests pass
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
- shard-bmg: [DMESG-WARN][239] ([Intel XE#3343]) -> [PASS][240]
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
- shard-lnl: [DMESG-WARN][241] -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-8/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
- shard-bmg: [DMESG-WARN][243] ([Intel XE#3467]) -> [PASS][244]
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- shard-bmg: [DMESG-WARN][245] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][246] +3 other tests pass
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
* igt@xe_live_ktest@xe_mocs:
- shard-bmg: [SKIP][247] ([Intel XE#1192]) -> [PASS][248]
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@xe_live_ktest@xe_mocs.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-2/igt@xe_live_ktest@xe_mocs.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [SKIP][274]) ([Intel XE#378]) -> ([PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299])
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-5/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-3/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-5/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-5/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-4/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-4/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-4/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-4/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-8/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-8/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-8/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-5/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-5/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-7/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-3/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-3/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-3/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-3/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-3/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-7/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-4/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-7/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-7/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-7/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-8/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-4/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-7/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-7/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-7/igt@xe_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-7/igt@xe_module_load@load.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-7/igt@xe_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-5/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-5/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-5/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-5/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-5/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-4/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-4/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-4/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-4/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-4/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-8/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-8/igt@xe_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-8/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-8/igt@xe_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-8/igt@xe_module_load@load.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-3/igt@xe_module_load@load.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [FAIL][300] ([Intel XE#958]) -> [PASS][301]
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-lnl-4/igt@xe_pm_residency@toggle-gt-c6.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html
#### Warnings ####
* igt@kms_color@deep-color:
- shard-bmg: [DMESG-WARN][302] ([Intel XE#3468] / [Intel XE#877]) -> [DMESG-WARN][303] ([Intel XE#1727] / [Intel XE#3468])
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_color@deep-color.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-8/igt@kms_color@deep-color.html
* igt@kms_color@deep-color@pipe-a-dp-2-degamma:
- shard-bmg: [DMESG-WARN][304] ([Intel XE#3468] / [Intel XE#877]) -> [DMESG-WARN][305] ([Intel XE#3468])
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_color@deep-color@pipe-a-dp-2-degamma.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-8/igt@kms_color@deep-color@pipe-a-dp-2-degamma.html
* igt@kms_color@deep-color@pipe-a-dp-2-gamma:
- shard-bmg: [DMESG-WARN][306] ([Intel XE#3468]) -> [DMESG-WARN][307] ([Intel XE#1727] / [Intel XE#3468])
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_color@deep-color@pipe-a-dp-2-gamma.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-8/igt@kms_color@deep-color@pipe-a-dp-2-gamma.html
* igt@kms_content_protection@uevent:
- shard-bmg: [DMESG-FAIL][308] ([Intel XE#3468]) -> [FAIL][309] ([Intel XE#1188]) +1 other test fail
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_content_protection@uevent.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-8/igt@kms_content_protection@uevent.html
* igt@kms_flip@plain-flip-fb-recreate@a-dp2:
- shard-bmg: [DMESG-FAIL][310] ([Intel XE#3468]) -> [FAIL][311] ([Intel XE#2882]) +1 other test fail
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_flip@plain-flip-fb-recreate@a-dp2.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-1/igt@kms_flip@plain-flip-fb-recreate@a-dp2.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-bmg: [INCOMPLETE][312] ([Intel XE#2635]) -> [FAIL][313] ([Intel XE#2882])
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_flip@wf_vblank-ts-check.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-1/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
- shard-bmg: [FAIL][314] ([Intel XE#2333]) -> [DMESG-FAIL][315] ([Intel XE#3468]) +2 other tests dmesg-fail
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
- shard-bmg: [INCOMPLETE][316] ([Intel XE#1727] / [Intel XE#2050]) -> [FAIL][317] ([Intel XE#2333])
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [DMESG-FAIL][318] ([Intel XE#3468]) -> [FAIL][319] ([Intel XE#2333]) +9 other tests fail
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_plane_lowres@tiling-none:
- shard-bmg: [INCOMPLETE][320] ([Intel XE#3452]) -> [DMESG-WARN][321] ([Intel XE#3468])
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-3/igt@kms_plane_lowres@tiling-none.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-1/igt@kms_plane_lowres@tiling-none.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
- shard-bmg: [DMESG-WARN][322] ([Intel XE#3343] / [Intel XE#3468]) -> [DMESG-WARN][323] ([Intel XE#3343])
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
- shard-bmg: [DMESG-WARN][324] ([Intel XE#3467]) -> [DMESG-WARN][325] ([Intel XE#3467] / [Intel XE#3468])
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
* igt@xe_pm@s2idle-exec-after:
- shard-bmg: [ABORT][326] ([Intel XE#3468] / [Intel XE#3673]) -> [ABORT][327] ([Intel XE#3673])
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-5/igt@xe_pm@s2idle-exec-after.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-1/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s2idle-multiple-execs:
- shard-bmg: [ABORT][328] ([Intel XE#1616] / [Intel XE#3468]) -> [ABORT][329] ([Intel XE#1616])
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-1/igt@xe_pm@s2idle-multiple-execs.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-3/igt@xe_pm@s2idle-multiple-execs.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-bmg: [ABORT][330] ([Intel XE#1616]) -> [ABORT][331] ([Intel XE#1616] / [Intel XE#3468])
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-prefetch.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-5/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_wedged@basic-wedged:
- shard-bmg: [DMESG-WARN][332] ([Intel XE#2919]) -> [DMESG-WARN][333] ([Intel XE#2919] / [Intel XE#3468])
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-2/igt@xe_wedged@basic-wedged.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-1/igt@xe_wedged@basic-wedged.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-bmg: [DMESG-WARN][334] ([Intel XE#3468]) -> [DMESG-WARN][335] ([Intel XE#3467] / [Intel XE#3468])
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8138/shard-bmg-4/igt@xe_wedged@wedged-mode-toggle.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/shard-bmg-4/igt@xe_wedged@wedged-mode-toggle.html
[Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
[Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613
[Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2808]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2808
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3452]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3452
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3640]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3640
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3673]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673
[Intel XE#3691]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3691
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
Build changes
-------------
* IGT: IGT_8138 -> IGTPW_12242
* Linux: xe-2318-c8df5caf278df4f9ca0aba627047c5ee4318fc0d -> xe-2320-62d365d6c3078d7e4f34dd65735f6fcd7b53a856
IGTPW_12242: 12242
IGT_8138: 8138
xe-2318-c8df5caf278df4f9ca0aba627047c5ee4318fc0d: c8df5caf278df4f9ca0aba627047c5ee4318fc0d
xe-2320-62d365d6c3078d7e4f34dd65735f6fcd7b53a856: 62d365d6c3078d7e4f34dd65735f6fcd7b53a856
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12242/index.html
[-- Attachment #2: Type: text/html, Size: 90092 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v1] tools/intel_hdcp: Introduce intel_hdcp tool
2024-12-04 9:56 [PATCH i-g-t v1] tools/intel_hdcp: Introduce intel_hdcp tool Santhosh Reddy Guddati
` (2 preceding siblings ...)
2024-12-04 21:43 ` ✗ Xe.CI.Full: " Patchwork
@ 2024-12-06 17:18 ` Kamil Konieczny
2024-12-24 8:31 ` Reddy Guddati, Santhosh
3 siblings, 1 reply; 8+ messages in thread
From: Kamil Konieczny @ 2024-12-06 17:18 UTC (permalink / raw)
To: Santhosh Reddy Guddati
Cc: igt-dev, suraj.kandpal, ankit.k.nautiyal, mohammed.thasleem
Hi Santhosh,
On 2024-12-04 at 15:26:54 +0530, Santhosh Reddy Guddati wrote:
> Add a new HDCP tool for self-testing and easy deployment
> to client machines. This tool helps diagnose issues,
> determining whether the problem lies in the driver or user space.
>
> The current changes include tool skeleton and get hdcp info
> on the connected outputs.
>
> Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
> ---
> tools/intel_hdcp.c | 203 +++++++++++++++++++++++++++++++++++++++++++++
> tools/meson.build | 1 +
> 2 files changed, 204 insertions(+)
> create mode 100644 tools/intel_hdcp.c
>
> diff --git a/tools/intel_hdcp.c b/tools/intel_hdcp.c
> new file mode 100644
> index 000000000..8c0258092
> --- /dev/null
> +++ b/tools/intel_hdcp.c
> @@ -0,0 +1,203 @@
> +/*
> + * Copyright © 2024 Intel Corporation
> + *
> + * Permission is hereby granted, free of charge, to any person obtaining a
Use SPDX, see other recent C files.
> + * copy of this software and associated documentation files (the "Software"),
> + * to deal in the Software without restriction, including without limitation
> + * the rights to use, copy, modify, merge, publish, distribute, sublicense,
> + * and/or sell copies of the Software, and to permit persons to whom the
> + * Software is furnished to do so, subject to the following conditions:
> + *
> + * The above copyright notice and this permission notice (including the next
> + * paragraph) shall be included in all copies or substantial portions of the
> + * Software.
> + *
> + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
> + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
> + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
> + * DEALINGS IN THE SOFTWARE.
> + *
> + * This tool designed to mimic an HDCP video player, capable of performing
> + * self-tests and easily deployable to client machines. This tool helps identify
> + * whether issues are rooted in the driver or user space.
> + *
> + */
> +
> +#include <stdio.h>
> +#include "igt.h"
> +#include <fcntl.h>
Sort alphabetically, first system headers, then igt so:
#include <fcntl.h>
#include <stdio.h>
#include "igt.h"
Btw are you sure to include igt.h here?
> +
> +#define MAX_HDCP_BUF_LEN 5000
> +
> +typedef struct data {
> + int fd;
> + igt_display_t display;
> + struct igt_fb red, green;
> + int height, width;
> +} data_t;
> +
> +
> +/* TODO: Implement the actual HDCP enabling logic here
> + * Steps:
> + * 1. Open the appropriate debugfs file for the connector.
> + * 2. Enable HDCP on the output using connector properties
> + * IGT_CONNECTOR_CONTENT_PROTECTION and IGT_CONNECTOR_HDCP_CONTENT_TYPE.
> + * 3. Check the status to ensure HDCP is enabled.
> + */
> +static void enable_hdcp(void)
> +{
> + igt_debug("TODO: Enable HDCP\n");
Tools is not a test, so maybe just fprintf(stderr, ...)
> +}
> +
> +/* TODO: Implement the actual HDCP disabling logic here */
> +static void disable_hdcp(void)
> +{
> + igt_debug("TODO: Disable HDCP\n");
Same here.
> +}
> +
> +static bool sink_hdcp2_capable(data_t *data, igt_output_t *output)
> +{
> + char buf[MAX_HDCP_BUF_LEN];
> + int fd;
> +
> + fd = igt_debugfs_connector_dir(data->fd, output->name, O_RDONLY);
You are using igt lib function here, make sure it will not assert.
> + if (fd < 0)
> + return false;
> +
> + if (is_intel_device(data->fd))
> + igt_debugfs_simple_read(fd, "i915_hdcp_sink_capability", buf, sizeof(buf));
Same here, using igt lib function intended for tests
can bring an assert, it is no expected in a tool.
> + else
> + igt_debugfs_simple_read(fd, "hdcp_sink_capability", buf, sizeof(buf));
Same here.
> +
> + close(fd);
> +
> + igt_debug("Sink capability: %s\n", buf);
> + return strstr(buf, "HDCP2.2");
> +}
> +
> +static bool sink_hdcp_capable(data_t *data, igt_output_t *output)
> +{
> + char buf[MAX_HDCP_BUF_LEN];
> + int fd;
> +
> + fd = igt_debugfs_connector_dir(data->fd, output->name, O_RDONLY);
Same here.
> + if (fd < 0)
> + return false;
> +
> + if (is_intel_device(data->fd))
> + igt_debugfs_simple_read(fd, "i915_hdcp_sink_capability", buf, sizeof(buf));
Same here.
> + else
> + igt_debugfs_simple_read(fd, "hdcp_sink_capability", buf, sizeof(buf));
Same here.
> +
> + close(fd);
> +
> + igt_debug("Sink capability: %s\n", buf);
> + return strstr(buf, "HDCP1.4");
> +}
> +
> +static const char *get_hdcp_version(igt_output_t *output, data_t *data)
> +{
> + if (sink_hdcp2_capable(data, output))
> + return "HDCP 2.2";
> + else if (sink_hdcp_capable(data, output))
> + return "HDCP 1.4";
> + else
> + return "No HDCP support";
> +}
> +
> +static void get_hdcp_info(data_t *data)
> +{
> + igt_output_t *output;
> + igt_display_t *display = &data->display;
> +
> + igt_info("\nHDCP Sink Information\n");
> + for_each_connected_output(display, output) {
> + igt_info("Output: %s\tHDCP Supported Version: %s\n",
> + igt_output_name(output), get_hdcp_version(output, data));
> + }
> +}
> +
> +static void print_usage(void)
> +{
> + igt_info("Usage: intel_hdcp [OPTIONS]\n");
Same here, imho better just printf() here.
> + igt_info("Options:\n");
> + igt_info("-i, --info Get HDCP Information\n");
> + igt_info("-e, --enable Enable HDCP on the output\n");
> + igt_info("-d, --disable Disable HDCP on the specific output\n");
> + igt_info("-h, --help Display this help message\n");
> +}
> +
> +static void create_frame_buffers(int fd, data_t *data)
> +{
> + igt_output_t *output;
> + drmModeModeInfo *mode;
> + uint16_t width, height;
> + igt_display_t *display = &data->display;
> +
> + for_each_connected_output(display, output) {
> + mode = igt_output_get_mode(output);
> + igt_assert(mode);
> +
> + width = mode->hdisplay;
> + height = mode->vdisplay;
> + }
> +
> + data->width = width;
> + data->height = height;
> +
> + igt_create_color_fb(data->fd, width, height,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 1.f, 0.f, 0.f, &data->red);
> + igt_create_color_fb(data->fd, width, height,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 0.f, 1.f, 0.f, &data->green);
> +}
> +
> +static void hdcp_init(data_t *data)
> +{
> + data->fd = drm_open_driver_master(DRIVER_ANY);
Imho you should do an open yourself.
> + if (data->fd < 0) {
> + fprintf(stderr, "Failed to open DRM driver\n");
> + exit(EXIT_FAILURE);
> + }
> + igt_display_require(&data->display, data->fd);
You are not in test, you cannot 'require' a display in a tool,
imho you should inform user that no displays were found and
just exit, no igt SKIPs.
Regards,
Kamil
> + igt_display_require_output(&data->display);
> + create_frame_buffers(data->fd, data);
> +}
> +
> +int main(int argc, char **argv)
> +{
> + data_t data;
> + int option;
> + static const char optstr[] = "hied";
> + struct option long_opts[] = {
> + {"help", no_argument, NULL, 'h'},
> + {"info", no_argument, NULL, 'i'},
> + {"enable", no_argument, NULL, 'e'},
> + {"disable", no_argument, NULL, 'd'},
> + {NULL, 0, NULL, 0 }
> + };
> +
> + hdcp_init(&data);
> +
> + while ((option = getopt_long(argc, argv, optstr, long_opts, NULL)) != -1) {
> + switch (option) {
> + case 'i':
> + get_hdcp_info(&data);
> + break;
> + case 'e':
> + enable_hdcp();
> + break;
> + case 'd':
> + disable_hdcp();
> + break;
> + case 'h':
> + default:
> + print_usage();
> + break;
> + }
> + }
> +}
> diff --git a/tools/meson.build b/tools/meson.build
> index 48c9a4b50..8e24005eb 100644
> --- a/tools/meson.build
> +++ b/tools/meson.build
> @@ -27,6 +27,7 @@ tools_progs = [
> 'intel_gpu_time',
> 'intel_gtt',
> 'intel_guc_logger',
> + 'intel_hdcp',
> 'intel_infoframes',
> 'intel_lid',
> 'intel_opregion_decode',
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v1] tools/intel_hdcp: Introduce intel_hdcp tool
2024-12-06 17:18 ` [PATCH i-g-t v1] " Kamil Konieczny
@ 2024-12-24 8:31 ` Reddy Guddati, Santhosh
2025-02-11 13:27 ` Reddy Guddati, Santhosh
0 siblings, 1 reply; 8+ messages in thread
From: Reddy Guddati, Santhosh @ 2024-12-24 8:31 UTC (permalink / raw)
To: Kamil Konieczny
Cc: igt-dev@lists.freedesktop.org, Kandpal, Suraj, Nautiyal, Ankit K,
Thasleem, Mohammed
[-- Attachment #1: Type: text/plain, Size: 10210 bytes --]
Hi Kamil,
________________________________
From: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Sent: Friday, December 6, 2024 10:48 PM
To: Reddy Guddati, Santhosh <santhosh.reddy.guddati@intel.com>
Cc: igt-dev@lists.freedesktop.org <igt-dev@lists.freedesktop.org>; Kandpal, Suraj <suraj.kandpal@intel.com>; Nautiyal, Ankit K <ankit.k.nautiyal@intel.com>; Thasleem, Mohammed <mohammed.thasleem@intel.com>
Subject: Re: [PATCH i-g-t v1] tools/intel_hdcp: Introduce intel_hdcp tool
Hi Santhosh,
On 2024-12-04 at 15:26:54 +0530, Santhosh Reddy Guddati wrote:
> Add a new HDCP tool for self-testing and easy deployment
> to client machines. This tool helps diagnose issues,
> determining whether the problem lies in the driver or user space.
>
> The current changes include tool skeleton and get hdcp info
> on the connected outputs.
>
> Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
> ---
> tools/intel_hdcp.c | 203 +++++++++++++++++++++++++++++++++++++++++++++
> tools/meson.build | 1 +
> 2 files changed, 204 insertions(+)
> create mode 100644 tools/intel_hdcp.c
>
> diff --git a/tools/intel_hdcp.c b/tools/intel_hdcp.c
> new file mode 100644
> index 000000000..8c0258092
> --- /dev/null
> +++ b/tools/intel_hdcp.c
> @@ -0,0 +1,203 @@
> +/*
> + * Copyright © 2024 Intel Corporation
> + *
> + * Permission is hereby granted, free of charge, to any person obtaining a
Use SPDX, see other recent C files.
> + * copy of this software and associated documentation files (the "Software"),
> + * to deal in the Software without restriction, including without limitation
> + * the rights to use, copy, modify, merge, publish, distribute, sublicense,
> + * and/or sell copies of the Software, and to permit persons to whom the
> + * Software is furnished to do so, subject to the following conditions:
> + *
> + * The above copyright notice and this permission notice (including the next
> + * paragraph) shall be included in all copies or substantial portions of the
> + * Software.
> + *
> + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
> + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
> + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
> + * DEALINGS IN THE SOFTWARE.
> + *
> + * This tool designed to mimic an HDCP video player, capable of performing
> + * self-tests and easily deployable to client machines. This tool helps identify
> + * whether issues are rooted in the driver or user space.
> + *
> + */
> +
> +#include <stdio.h>
> +#include "igt.h"
> +#include <fcntl.h>
Sort alphabetically, first system headers, then igt so:
#include <fcntl.h>
#include <stdio.h>
#include "igt.h"
Btw are you sure to include igt.h here?
We need this to use the igt defintions here to stay consistent with the other tools in the igt_gpu_tools repository, We are using the igt_* functions in the existing tools like
Igt_dp_compliance, igt_reg etc.
Please let me know your thoughts or if my understanding is incorrect.
> +
> +#define MAX_HDCP_BUF_LEN 5000
> +
> +typedef struct data {
> + int fd;
> + igt_display_t display;
> + struct igt_fb red, green;
> + int height, width;
> +} data_t;
> +
> +
> +/* TODO: Implement the actual HDCP enabling logic here
> + * Steps:
> + * 1. Open the appropriate debugfs file for the connector.
> + * 2. Enable HDCP on the output using connector properties
> + * IGT_CONNECTOR_CONTENT_PROTECTION and IGT_CONNECTOR_HDCP_CONTENT_TYPE.
> + * 3. Check the status to ensure HDCP is enabled.
> + */
> +static void enable_hdcp(void)
> +{
> + igt_debug("TODO: Enable HDCP\n");
Tools is not a test, so maybe just fprintf(stderr, ...)
> +}
> +
> +/* TODO: Implement the actual HDCP disabling logic here */
> +static void disable_hdcp(void)
> +{
> + igt_debug("TODO: Disable HDCP\n");
Same here.
> +}
> +
> +static bool sink_hdcp2_capable(data_t *data, igt_output_t *output)
> +{
> + char buf[MAX_HDCP_BUF_LEN];
> + int fd;
> +
> + fd = igt_debugfs_connector_dir(data->fd, output->name, O_RDONLY);
You are using igt lib function here, make sure it will not assert.
> + if (fd < 0)
> + return false;
> +
> + if (is_intel_device(data->fd))
> + igt_debugfs_simple_read(fd, "i915_hdcp_sink_capability", buf, sizeof(buf));
Same here, using igt lib function intended for tests
can bring an assert, it is no expected in a tool.
> + else
> + igt_debugfs_simple_read(fd, "hdcp_sink_capability", buf, sizeof(buf));
Same here.
> +
> + close(fd);
> +
> + igt_debug("Sink capability: %s\n", buf);
> + return strstr(buf, "HDCP2.2");
> +}
> +
> +static bool sink_hdcp_capable(data_t *data, igt_output_t *output)
> +{
> + char buf[MAX_HDCP_BUF_LEN];
> + int fd;
> +
> + fd = igt_debugfs_connector_dir(data->fd, output->name, O_RDONLY);
Same here.
> + if (fd < 0)
> + return false;
> +
> + if (is_intel_device(data->fd))
> + igt_debugfs_simple_read(fd, "i915_hdcp_sink_capability", buf, sizeof(buf));
Same here.
> + else
> + igt_debugfs_simple_read(fd, "hdcp_sink_capability", buf, sizeof(buf));
Same here.
> +
> + close(fd);
> +
> + igt_debug("Sink capability: %s\n", buf);
> + return strstr(buf, "HDCP1.4");
> +}
> +
> +static const char *get_hdcp_version(igt_output_t *output, data_t *data)
> +{
> + if (sink_hdcp2_capable(data, output))
> + return "HDCP 2.2";
> + else if (sink_hdcp_capable(data, output))
> + return "HDCP 1.4";
> + else
> + return "No HDCP support";
> +}
> +
> +static void get_hdcp_info(data_t *data)
> +{
> + igt_output_t *output;
> + igt_display_t *display = &data->display;
> +
> + igt_info("\nHDCP Sink Information\n");
> + for_each_connected_output(display, output) {
> + igt_info("Output: %s\tHDCP Supported Version: %s\n",
> + igt_output_name(output), get_hdcp_version(output, data));
> + }
> +}
> +
> +static void print_usage(void)
> +{
> + igt_info("Usage: intel_hdcp [OPTIONS]\n");
Same here, imho better just printf() here.
> + igt_info("Options:\n");
> + igt_info("-i, --info Get HDCP Information\n");
> + igt_info("-e, --enable Enable HDCP on the output\n");
> + igt_info("-d, --disable Disable HDCP on the specific output\n");
> + igt_info("-h, --help Display this help message\n");
> +}
> +
> +static void create_frame_buffers(int fd, data_t *data)
> +{
> + igt_output_t *output;
> + drmModeModeInfo *mode;
> + uint16_t width, height;
> + igt_display_t *display = &data->display;
> +
> + for_each_connected_output(display, output) {
> + mode = igt_output_get_mode(output);
> + igt_assert(mode);
> +
> + width = mode->hdisplay;
> + height = mode->vdisplay;
> + }
> +
> + data->width = width;
> + data->height = height;
> +
> + igt_create_color_fb(data->fd, width, height,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 1.f, 0.f, 0.f, &data->red);
> + igt_create_color_fb(data->fd, width, height,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 0.f, 1.f, 0.f, &data->green);
> +}
> +
> +static void hdcp_init(data_t *data)
> +{
> + data->fd = drm_open_driver_master(DRIVER_ANY);
Imho you should do an open yourself.
> + if (data->fd < 0) {
> + fprintf(stderr, "Failed to open DRM driver\n");
> + exit(EXIT_FAILURE);
> + }
> + igt_display_require(&data->display, data->fd);
You are not in test, you cannot 'require' a display in a tool,
imho you should inform user that no displays were found and
just exit, no igt SKIPs.
We need this to use the igt defintions here to stay consistent with the other tools in the igt_gpu_tools repository, We are using the igt_* functions in the existing tools like
Igt_dp_compliance, igt_reg etc.
Regards,
Kamil
> + igt_display_require_output(&data->display);
> + create_frame_buffers(data->fd, data);
> +}
> +
> +int main(int argc, char **argv)
> +{
> + data_t data;
> + int option;
> + static const char optstr[] = "hied";
> + struct option long_opts[] = {
> + {"help", no_argument, NULL, 'h'},
> + {"info", no_argument, NULL, 'i'},
> + {"enable", no_argument, NULL, 'e'},
> + {"disable", no_argument, NULL, 'd'},
> + {NULL, 0, NULL, 0 }
> + };
> +
> + hdcp_init(&data);
> +
> + while ((option = getopt_long(argc, argv, optstr, long_opts, NULL)) != -1) {
> + switch (option) {
> + case 'i':
> + get_hdcp_info(&data);
> + break;
> + case 'e':
> + enable_hdcp();
> + break;
> + case 'd':
> + disable_hdcp();
> + break;
> + case 'h':
> + default:
> + print_usage();
> + break;
> + }
> + }
> +}
> diff --git a/tools/meson.build b/tools/meson.build
> index 48c9a4b50..8e24005eb 100644
> --- a/tools/meson.build
> +++ b/tools/meson.build
> @@ -27,6 +27,7 @@ tools_progs = [
> 'intel_gpu_time',
> 'intel_gtt',
> 'intel_guc_logger',
> + 'intel_hdcp',
> 'intel_infoframes',
> 'intel_lid',
> 'intel_opregion_decode',
> --
> 2.34.1
>
[-- Attachment #2: Type: text/html, Size: 19681 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v1] tools/intel_hdcp: Introduce intel_hdcp tool
2024-12-24 8:31 ` Reddy Guddati, Santhosh
@ 2025-02-11 13:27 ` Reddy Guddati, Santhosh
2025-02-14 14:42 ` Kamil Konieczny
0 siblings, 1 reply; 8+ messages in thread
From: Reddy Guddati, Santhosh @ 2025-02-11 13:27 UTC (permalink / raw)
To: Kamil Konieczny
Cc: igt-dev@lists.freedesktop.org, Kandpal, Suraj, Nautiyal, Ankit K,
Thasleem, Mohammed
On 24-12-2024 14:01, Reddy Guddati, Santhosh wrote:
> Hi Kamil,
>
> ------------------------------------------------------------------------
> *From:* Kamil Konieczny <kamil.konieczny@linux.intel.com>
> *Sent:* Friday, December 6, 2024 10:48 PM
> *To:* Reddy Guddati, Santhosh <santhosh.reddy.guddati@intel.com>
> *Cc:* igt-dev@lists.freedesktop.org <igt-dev@lists.freedesktop.org>;
> Kandpal, Suraj <suraj.kandpal@intel.com>; Nautiyal, Ankit K
> <ankit.k.nautiyal@intel.com>; Thasleem, Mohammed
> <mohammed.thasleem@intel.com>
> *Subject:* Re: [PATCH i-g-t v1] tools/intel_hdcp: Introduce intel_hdcp tool
> Hi Santhosh,
> On 2024-12-04 at 15:26:54 +0530, Santhosh Reddy Guddati wrote:
> > Add a new HDCP tool for self-testing and easy deployment
> > to client machines. This tool helps diagnose issues,
> > determining whether the problem lies in the driver or user space.
> >
> > The current changes include tool skeleton and get hdcp info
> > on the connected outputs.
> >
> > Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
> > ---
> > tools/intel_hdcp.c | 203 +++++++++++++++++++++++++++++++++++++++++++++
> > tools/meson.build | 1 +
> > 2 files changed, 204 insertions(+)
> > create mode 100644 tools/intel_hdcp.c
> >
> > diff --git a/tools/intel_hdcp.c b/tools/intel_hdcp.c
> > new file mode 100644
> > index 000000000..8c0258092
> > --- /dev/null
> > +++ b/tools/intel_hdcp.c
> > @@ -0,0 +1,203 @@
> > +/*
> > + * Copyright © 2024 Intel Corporation
> > + *
> > + * Permission is hereby granted, free of charge, to any person
> obtaining a
>
> Use SPDX, see other recent C files.
>
> > + * copy of this software and associated documentation files (the
> "Software"),
> > + * to deal in the Software without restriction, including without
> limitation
> > + * the rights to use, copy, modify, merge, publish, distribute,
> sublicense,
> > + * and/or sell copies of the Software, and to permit persons to whom the
> > + * Software is furnished to do so, subject to the following conditions:
> > + *
> > + * The above copyright notice and this permission notice (including
> the next
> > + * paragraph) shall be included in all copies or substantial
> portions of the
> > + * Software.
> > + *
> > + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
> EXPRESS OR
> > + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
> MERCHANTABILITY,
> > + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
> EVENT SHALL
> > + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES
> OR OTHER
> > + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
> ARISING
> > + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
> > + * DEALINGS IN THE SOFTWARE.
> > + *
> > + * This tool designed to mimic an HDCP video player, capable of
> performing
> > + * self-tests and easily deployable to client machines. This tool
> helps identify
> > + * whether issues are rooted in the driver or user space.
> > + *
> > + */
> > +
> > +#include <stdio.h>
> > +#include "igt.h"
> > +#include <fcntl.h>
>
> Sort alphabetically, first system headers, then igt so:
>
> #include <fcntl.h>
> #include <stdio.h>
>
> #include "igt.h"
>
> Btw are you sure to include igt.h here?
>
> We need this to use the igt defintions here to stay consistent with the
> other tools in the igt_gpu_tools repository, We are using the igt_*
> functions in the existing tools like
> Igt_dp_compliance, igt_reg etc.
>
> Please let me know your thoughts or if my understanding is incorrect.
> > +
> > +#define MAX_HDCP_BUF_LEN 5000
> > +
> > +typedef struct data {
> > + int fd;
> > + igt_display_t display;
> > + struct igt_fb red, green;
> > + int height, width;
> > +} data_t;
> > +
> > +
> > +/* TODO: Implement the actual HDCP enabling logic here
> > + * Steps:
> > + * 1. Open the appropriate debugfs file for the connector.
> > + * 2. Enable HDCP on the output using connector properties
> > + * IGT_CONNECTOR_CONTENT_PROTECTION and
> IGT_CONNECTOR_HDCP_CONTENT_TYPE.
> > + * 3. Check the status to ensure HDCP is enabled.
> > + */
> > +static void enable_hdcp(void)
> > +{
> > + igt_debug("TODO: Enable HDCP\n");
>
> Tools is not a test, so maybe just fprintf(stderr, ...)
>
> > +}
> > +
> > +/* TODO: Implement the actual HDCP disabling logic here */
> > +static void disable_hdcp(void)
> > +{
> > + igt_debug("TODO: Disable HDCP\n");
>
> Same here.
>
> > +}
> > +
> > +static bool sink_hdcp2_capable(data_t *data, igt_output_t *output)
> > +{
> > + char buf[MAX_HDCP_BUF_LEN];
> > + int fd;
> > +
> > + fd = igt_debugfs_connector_dir(data->fd, output->name, O_RDONLY);
>
> You are using igt lib function here, make sure it will not assert.
>
> > + if (fd < 0)
> > + return false;
> > +
> > + if (is_intel_device(data->fd))
> > + igt_debugfs_simple_read(fd,
> "i915_hdcp_sink_capability", buf, sizeof(buf));
>
> Same here, using igt lib function intended for tests
> can bring an assert, it is no expected in a tool.
>
>
>
> > + else
> > + igt_debugfs_simple_read(fd, "hdcp_sink_capability",
> buf, sizeof(buf));
>
> Same here.
>
> > +
> > + close(fd);
> > +
> > + igt_debug("Sink capability: %s\n", buf);
> > + return strstr(buf, "HDCP2.2");
> > +}
> > +
> > +static bool sink_hdcp_capable(data_t *data, igt_output_t *output)
> > +{
> > + char buf[MAX_HDCP_BUF_LEN];
> > + int fd;
> > +
> > + fd = igt_debugfs_connector_dir(data->fd, output->name, O_RDONLY);
>
> Same here.
>
> > + if (fd < 0)
> > + return false;
> > +
> > + if (is_intel_device(data->fd))
> > + igt_debugfs_simple_read(fd,
> "i915_hdcp_sink_capability", buf, sizeof(buf));
>
> Same here.
>
> > + else
> > + igt_debugfs_simple_read(fd, "hdcp_sink_capability",
> buf, sizeof(buf));
>
> Same here.
>
> > +
> > + close(fd);
> > +
> > + igt_debug("Sink capability: %s\n", buf);
> > + return strstr(buf, "HDCP1.4");
> > +}
> > +
> > +static const char *get_hdcp_version(igt_output_t *output, data_t *data)
> > +{
> > + if (sink_hdcp2_capable(data, output))
> > + return "HDCP 2.2";
> > + else if (sink_hdcp_capable(data, output))
> > + return "HDCP 1.4";
> > + else
> > + return "No HDCP support";
> > +}
> > +
> > +static void get_hdcp_info(data_t *data)
> > +{
> > + igt_output_t *output;
> > + igt_display_t *display = &data->display;
> > +
> > + igt_info("\nHDCP Sink Information\n");
> > + for_each_connected_output(display, output) {
> > + igt_info("Output: %s\tHDCP Supported Version: %s\n",
> > + igt_output_name(output),
> get_hdcp_version(output, data));
> > + }
> > +}
> > +
> > +static void print_usage(void)
> > +{
> > + igt_info("Usage: intel_hdcp [OPTIONS]\n");
>
> Same here, imho better just printf() here.
> > + igt_info("Options:\n");
> > + igt_info("-i, --info Get HDCP Information\n");
> > + igt_info("-e, --enable Enable HDCP on the output\n");
> > + igt_info("-d, --disable Disable HDCP on the specific
> output\n");
> > + igt_info("-h, --help Display this help message\n");
> > +}
> > +
> > +static void create_frame_buffers(int fd, data_t *data)
> > +{
> > + igt_output_t *output;
> > + drmModeModeInfo *mode;
> > + uint16_t width, height;
> > + igt_display_t *display = &data->display;
> > +
> > + for_each_connected_output(display, output) {
> > + mode = igt_output_get_mode(output);
> > + igt_assert(mode);
> > +
> > + width = mode->hdisplay;
> > + height = mode->vdisplay;
> > + }
> > +
> > + data->width = width;
> > + data->height = height;
> > +
> > + igt_create_color_fb(data->fd, width, height,
> > + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> > + 1.f, 0.f, 0.f, &data->red);
> > + igt_create_color_fb(data->fd, width, height,
> > + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> > + 0.f, 1.f, 0.f, &data->green);
> > +}
> > +
> > +static void hdcp_init(data_t *data)
> > +{
> > + data->fd = drm_open_driver_master(DRIVER_ANY);
>
> Imho you should do an open yourself.
>
> > + if (data->fd < 0) {
> > + fprintf(stderr, "Failed to open DRM driver\n");
> > + exit(EXIT_FAILURE);
> > + }
> > + igt_display_require(&data->display, data->fd);
>
> You are not in test, you cannot 'require' a display in a tool,
> imho you should inform user that no displays were found and
> just exit, no igt SKIPs.
>
> We need this to use the igt defintions here to stay consistent with the
> other tools in the igt_gpu_tools repository, We are using the igt_*
> functions in the existing tools like
> Igt_dp_compliance, igt_reg etc.
>
>
> Regards,
> Kamil
>
> > + igt_display_require_output(&data->display);
> > + create_frame_buffers(data->fd, data);
> > +}
> > +
> > +int main(int argc, char **argv)
> > +{
> > + data_t data;
> > + int option;
> > + static const char optstr[] = "hied";
> > + struct option long_opts[] = {
> > + {"help", no_argument, NULL, 'h'},
> > + {"info", no_argument, NULL, 'i'},
> > + {"enable", no_argument, NULL, 'e'},
> > + {"disable", no_argument, NULL, 'd'},
> > + {NULL, 0, NULL, 0 }
> > + };
> > +
> > + hdcp_init(&data);
> > +
> > + while ((option = getopt_long(argc, argv, optstr, long_opts,
> NULL)) != -1) {
> > + switch (option) {
> > + case 'i':
> > + get_hdcp_info(&data);
> > + break;
> > + case 'e':
> > + enable_hdcp();
> > + break;
> > + case 'd':
> > + disable_hdcp();
> > + break;
> > + case 'h':
> > + default:
> > + print_usage();
> > + break;
> > + }
> > + }
> > +}
> > diff --git a/tools/meson.build b/tools/meson.build
> > index 48c9a4b50..8e24005eb 100644
> > --- a/tools/meson.build
> > +++ b/tools/meson.build
> > @@ -27,6 +27,7 @@ tools_progs = [
> > 'intel_gpu_time',
> > 'intel_gtt',
> > 'intel_guc_logger',
> > + 'intel_hdcp',
> > 'intel_infoframes',
> > 'intel_lid',
> > 'intel_opregion_decode',
> > --
> > 2.34.1
> >
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v1] tools/intel_hdcp: Introduce intel_hdcp tool
2025-02-11 13:27 ` Reddy Guddati, Santhosh
@ 2025-02-14 14:42 ` Kamil Konieczny
0 siblings, 0 replies; 8+ messages in thread
From: Kamil Konieczny @ 2025-02-14 14:42 UTC (permalink / raw)
To: Reddy Guddati, Santhosh
Cc: igt-dev@lists.freedesktop.org, Kandpal, Suraj, Nautiyal, Ankit K,
Thasleem, Mohammed, Zbigniew Kempczyński,
Katarzyna Piecielska, Karthik B S, Juha-Pekka Heikkila,
Ashutosh Dixit
Hi Reddy,
On 2025-02-11 at 18:57:57 +0530, Reddy Guddati, Santhosh wrote:
>
>
> On 24-12-2024 14:01, Reddy Guddati, Santhosh wrote:
> > Hi Kamil,
> >
> > > Add a new HDCP tool for self-testing and easy deployment
> > > to client machines. This tool helps diagnose issues,
> > > determining whether the problem lies in the driver or user space.
> > >
> > > The current changes include tool skeleton and get hdcp info
> > > on the connected outputs.
> > >
> > > Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
> > > ---
> > > tools/intel_hdcp.c | 203 +++++++++++++++++++++++++++++++++++++++++++++
> > > tools/meson.build | 1 +
> > > 2 files changed, 204 insertions(+)
> > > create mode 100644 tools/intel_hdcp.c
[...]
> > > +
> > > +static void hdcp_init(data_t *data)
> > > +{
> > > + data->fd = drm_open_driver_master(DRIVER_ANY);
> >
> > Imho you should do an open yourself.
One more thing, do not load any display driver in a tool.
We do that in tests when using drm_open_driver*() functions
but tool should expect driver is already loaded.
> >
> > > + if (data->fd < 0) {
> > > + fprintf(stderr, "Failed to open DRM driver\n");
> > > + exit(EXIT_FAILURE);
> > > + }
> > > + igt_display_require(&data->display, data->fd);
> >
> > You are not in test, you cannot 'require' a display in a tool,
> > imho you should inform user that no displays were found and
> > just exit, no igt SKIPs.
> >
> We need this to use the igt defintions here to stay consistent with the
> other tools in the igt_gpu_tools repository, We are using the igt_*
> functions in the existing tools like
> Igt_dp_compliance, igt_reg etc.
[...]
imho you should use here __igt_has_display() function, and this
function should strive to _not_ use any of igt_assert nor igt_require nor
igt_info nor igt_warn, should be safe to be called outside of igt tests,
for example safe for tool useage here.
In a tool you should _not_ call SKIP, rather tell user that you
didn't find any display, just use printf(....)
I am adding Katarzyna and Zbigniew and few igt maintainers to Cc
as we are thinking about lib/* useage in tools/ and runner/
Please also add a man page for a new tool, for example see
man/intel_reg.rst
Regards,
Kamil
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-02-14 14:43 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-04 9:56 [PATCH i-g-t v1] tools/intel_hdcp: Introduce intel_hdcp tool Santhosh Reddy Guddati
2024-12-04 10:43 ` Jani Nikula
2024-12-04 19:54 ` ✗ i915.CI.Full: failure for " Patchwork
2024-12-04 21:43 ` ✗ Xe.CI.Full: " Patchwork
2024-12-06 17:18 ` [PATCH i-g-t v1] " Kamil Konieczny
2024-12-24 8:31 ` Reddy Guddati, Santhosh
2025-02-11 13:27 ` Reddy Guddati, Santhosh
2025-02-14 14:42 ` Kamil Konieczny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox