Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/xe/bmg: Add PCI IDs
@ 2024-06-03 14:54 Balasubramani Vivekanandan
  2024-06-03 16:08 ` Gustavo Sousa
                   ` (9 more replies)
  0 siblings, 10 replies; 14+ messages in thread
From: Balasubramani Vivekanandan @ 2024-06-03 14:54 UTC (permalink / raw)
  To: intel-xe
  Cc: gregory.f.germano, Vitasta Wattal, Matt Roper,
	Balasubramani Vivekanandan

From: Matt Roper <matthew.d.roper@intel.com>

Add the initial set of device IDs for Battlemage.

Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Balasubramani Vivekanandan <balasubramani.vivekanandan@intel.com>
---
 drivers/gpu/drm/xe/xe_pci.c   | 3 ++-
 include/drm/intel/xe_pciids.h | 7 +++++++
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
index 5655222aa4e1..ebff5ea79b1d 100644
--- a/drivers/gpu/drm/xe/xe_pci.c
+++ b/drivers/gpu/drm/xe/xe_pci.c
@@ -340,7 +340,7 @@ static const struct xe_device_desc lnl_desc = {
 	.require_force_probe = true,
 };
 
-static const struct xe_device_desc bmg_desc __maybe_unused = {
+static const struct xe_device_desc bmg_desc = {
 	DGFX_FEATURES,
 	PLATFORM(BATTLEMAGE),
 	.has_display = true,
@@ -391,6 +391,7 @@ static const struct pci_device_id pciidlist[] = {
 	XE_PVC_IDS(INTEL_VGA_DEVICE, &pvc_desc),
 	XE_MTL_IDS(INTEL_VGA_DEVICE, &mtl_desc),
 	XE_LNL_IDS(INTEL_VGA_DEVICE, &lnl_desc),
+	XE_BMG_IDS(INTEL_VGA_DEVICE, &bmg_desc),
 	{ }
 };
 MODULE_DEVICE_TABLE(pci, pciidlist);
diff --git a/include/drm/intel/xe_pciids.h b/include/drm/intel/xe_pciids.h
index c7fc288dacee..73d972a8aca1 100644
--- a/include/drm/intel/xe_pciids.h
+++ b/include/drm/intel/xe_pciids.h
@@ -208,4 +208,11 @@
 	MACRO__(0x64A0, ## __VA_ARGS__), \
 	MACRO__(0x64B0, ## __VA_ARGS__)
 
+#define XE_BMG_IDS(MACRO__, ...) \
+	MACRO__(0xE202, ## __VA_ARGS__), \
+	MACRO__(0xE20B, ## __VA_ARGS__), \
+	MACRO__(0xE20C, ## __VA_ARGS__), \
+	MACRO__(0xE20D, ## __VA_ARGS__), \
+	MACRO__(0xE212, ## __VA_ARGS__)
+
 #endif
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* Re: [PATCH] drm/xe/bmg: Add PCI IDs
  2024-06-03 14:54 [PATCH] drm/xe/bmg: Add PCI IDs Balasubramani Vivekanandan
@ 2024-06-03 16:08 ` Gustavo Sousa
  2024-06-04  8:03 ` Jani Nikula
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 14+ messages in thread
From: Gustavo Sousa @ 2024-06-03 16:08 UTC (permalink / raw)
  To: Balasubramani Vivekanandan, intel-xe
  Cc: gregory.f.germano, Vitasta Wattal, Matt Roper,
	Balasubramani Vivekanandan

Quoting Balasubramani Vivekanandan (2024-06-03 11:54:30-03:00)
>From: Matt Roper <matthew.d.roper@intel.com>
>
>Add the initial set of device IDs for Battlemage.
>
>Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
>Signed-off-by: Balasubramani Vivekanandan <balasubramani.vivekanandan@intel.com>

Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com>

>---
> drivers/gpu/drm/xe/xe_pci.c   | 3 ++-
> include/drm/intel/xe_pciids.h | 7 +++++++
> 2 files changed, 9 insertions(+), 1 deletion(-)
>
>diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
>index 5655222aa4e1..ebff5ea79b1d 100644
>--- a/drivers/gpu/drm/xe/xe_pci.c
>+++ b/drivers/gpu/drm/xe/xe_pci.c
>@@ -340,7 +340,7 @@ static const struct xe_device_desc lnl_desc = {
>         .require_force_probe = true,
> };
> 
>-static const struct xe_device_desc bmg_desc __maybe_unused = {
>+static const struct xe_device_desc bmg_desc = {
>         DGFX_FEATURES,
>         PLATFORM(BATTLEMAGE),
>         .has_display = true,
>@@ -391,6 +391,7 @@ static const struct pci_device_id pciidlist[] = {
>         XE_PVC_IDS(INTEL_VGA_DEVICE, &pvc_desc),
>         XE_MTL_IDS(INTEL_VGA_DEVICE, &mtl_desc),
>         XE_LNL_IDS(INTEL_VGA_DEVICE, &lnl_desc),
>+        XE_BMG_IDS(INTEL_VGA_DEVICE, &bmg_desc),
>         { }
> };
> MODULE_DEVICE_TABLE(pci, pciidlist);
>diff --git a/include/drm/intel/xe_pciids.h b/include/drm/intel/xe_pciids.h
>index c7fc288dacee..73d972a8aca1 100644
>--- a/include/drm/intel/xe_pciids.h
>+++ b/include/drm/intel/xe_pciids.h
>@@ -208,4 +208,11 @@
>         MACRO__(0x64A0, ## __VA_ARGS__), \
>         MACRO__(0x64B0, ## __VA_ARGS__)
> 
>+#define XE_BMG_IDS(MACRO__, ...) \
>+        MACRO__(0xE202, ## __VA_ARGS__), \
>+        MACRO__(0xE20B, ## __VA_ARGS__), \
>+        MACRO__(0xE20C, ## __VA_ARGS__), \
>+        MACRO__(0xE20D, ## __VA_ARGS__), \
>+        MACRO__(0xE212, ## __VA_ARGS__)
>+
> #endif
>-- 
>2.25.1
>

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH] drm/xe/bmg: Add PCI IDs
  2024-06-03 14:54 [PATCH] drm/xe/bmg: Add PCI IDs Balasubramani Vivekanandan
  2024-06-03 16:08 ` Gustavo Sousa
@ 2024-06-04  8:03 ` Jani Nikula
  2024-06-04 21:21   ` Lucas De Marchi
  2024-06-04 18:35 ` ✓ CI.Patch_applied: success for " Patchwork
                   ` (7 subsequent siblings)
  9 siblings, 1 reply; 14+ messages in thread
From: Jani Nikula @ 2024-06-04  8:03 UTC (permalink / raw)
  To: Balasubramani Vivekanandan, intel-xe
  Cc: gregory.f.germano, Vitasta Wattal, Matt Roper,
	Balasubramani Vivekanandan

On Mon, 03 Jun 2024, Balasubramani Vivekanandan <balasubramani.vivekanandan@intel.com> wrote:
> From: Matt Roper <matthew.d.roper@intel.com>
>
> Add the initial set of device IDs for Battlemage.
>
> Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
> Signed-off-by: Balasubramani Vivekanandan <balasubramani.vivekanandan@intel.com>

Please note that since commit 54836ee194f9 ("drm/i915/display: change
display probe to identify GMD ID based platforms") you'll also need to
add the PCI IDs to i915_pciids.h and add the platform desc in
i915/display/intel_display_device.c for display probe.

BR,
Jani.

> ---
>  drivers/gpu/drm/xe/xe_pci.c   | 3 ++-
>  include/drm/intel/xe_pciids.h | 7 +++++++
>  2 files changed, 9 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
> index 5655222aa4e1..ebff5ea79b1d 100644
> --- a/drivers/gpu/drm/xe/xe_pci.c
> +++ b/drivers/gpu/drm/xe/xe_pci.c
> @@ -340,7 +340,7 @@ static const struct xe_device_desc lnl_desc = {
>  	.require_force_probe = true,
>  };
>  
> -static const struct xe_device_desc bmg_desc __maybe_unused = {
> +static const struct xe_device_desc bmg_desc = {
>  	DGFX_FEATURES,
>  	PLATFORM(BATTLEMAGE),
>  	.has_display = true,
> @@ -391,6 +391,7 @@ static const struct pci_device_id pciidlist[] = {
>  	XE_PVC_IDS(INTEL_VGA_DEVICE, &pvc_desc),
>  	XE_MTL_IDS(INTEL_VGA_DEVICE, &mtl_desc),
>  	XE_LNL_IDS(INTEL_VGA_DEVICE, &lnl_desc),
> +	XE_BMG_IDS(INTEL_VGA_DEVICE, &bmg_desc),
>  	{ }
>  };
>  MODULE_DEVICE_TABLE(pci, pciidlist);
> diff --git a/include/drm/intel/xe_pciids.h b/include/drm/intel/xe_pciids.h
> index c7fc288dacee..73d972a8aca1 100644
> --- a/include/drm/intel/xe_pciids.h
> +++ b/include/drm/intel/xe_pciids.h
> @@ -208,4 +208,11 @@
>  	MACRO__(0x64A0, ## __VA_ARGS__), \
>  	MACRO__(0x64B0, ## __VA_ARGS__)
>  
> +#define XE_BMG_IDS(MACRO__, ...) \
> +	MACRO__(0xE202, ## __VA_ARGS__), \
> +	MACRO__(0xE20B, ## __VA_ARGS__), \
> +	MACRO__(0xE20C, ## __VA_ARGS__), \
> +	MACRO__(0xE20D, ## __VA_ARGS__), \
> +	MACRO__(0xE212, ## __VA_ARGS__)
> +
>  #endif

-- 
Jani Nikula, Intel

^ permalink raw reply	[flat|nested] 14+ messages in thread

* ✓ CI.Patch_applied: success for drm/xe/bmg: Add PCI IDs
  2024-06-03 14:54 [PATCH] drm/xe/bmg: Add PCI IDs Balasubramani Vivekanandan
  2024-06-03 16:08 ` Gustavo Sousa
  2024-06-04  8:03 ` Jani Nikula
@ 2024-06-04 18:35 ` Patchwork
  2024-06-04 18:36 ` ✗ CI.checkpatch: warning " Patchwork
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-06-04 18:35 UTC (permalink / raw)
  To: Balasubramani Vivekanandan; +Cc: intel-xe

== Series Details ==

Series: drm/xe/bmg: Add PCI IDs
URL   : https://patchwork.freedesktop.org/series/134387/
State : success

== Summary ==

=== Applying kernel patches on branch 'drm-tip' with base: ===
Base commit: 77588a3e3e58 drm-tip: 2024y-06m-04d-16h-44m-06s UTC integration manifest
=== git am output follows ===
Applying: drm/xe/bmg: Add PCI IDs



^ permalink raw reply	[flat|nested] 14+ messages in thread

* ✗ CI.checkpatch: warning for drm/xe/bmg: Add PCI IDs
  2024-06-03 14:54 [PATCH] drm/xe/bmg: Add PCI IDs Balasubramani Vivekanandan
                   ` (2 preceding siblings ...)
  2024-06-04 18:35 ` ✓ CI.Patch_applied: success for " Patchwork
@ 2024-06-04 18:36 ` Patchwork
  2024-06-04 18:36 ` ✓ CI.KUnit: success " Patchwork
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-06-04 18:36 UTC (permalink / raw)
  To: Balasubramani Vivekanandan; +Cc: intel-xe

== Series Details ==

Series: drm/xe/bmg: Add PCI IDs
URL   : https://patchwork.freedesktop.org/series/134387/
State : warning

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
51ce9f6cd981d42d7467409d7dbc559a450abc1e
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit e60233b879c434ccee2d0e462c34c5a219839d57
Author: Matt Roper <matthew.d.roper@intel.com>
Date:   Mon Jun 3 20:24:30 2024 +0530

    drm/xe/bmg: Add PCI IDs
    
    Add the initial set of device IDs for Battlemage.
    
    Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
    Signed-off-by: Balasubramani Vivekanandan <balasubramani.vivekanandan@intel.com>
    Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com>
+ /mt/dim checkpatch 77588a3e3e58917a9b1d992aeef6f02a6b85ded5 drm-intel
e60233b879c4 drm/xe/bmg: Add PCI IDs
-:41: ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#41: FILE: include/drm/intel/xe_pciids.h:211:
+#define XE_BMG_IDS(MACRO__, ...) \
+	MACRO__(0xE202, ## __VA_ARGS__), \
+	MACRO__(0xE20B, ## __VA_ARGS__), \
+	MACRO__(0xE20C, ## __VA_ARGS__), \
+	MACRO__(0xE20D, ## __VA_ARGS__), \
+	MACRO__(0xE212, ## __VA_ARGS__)

-:41: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'MACRO__' - possible side-effects?
#41: FILE: include/drm/intel/xe_pciids.h:211:
+#define XE_BMG_IDS(MACRO__, ...) \
+	MACRO__(0xE202, ## __VA_ARGS__), \
+	MACRO__(0xE20B, ## __VA_ARGS__), \
+	MACRO__(0xE20C, ## __VA_ARGS__), \
+	MACRO__(0xE20D, ## __VA_ARGS__), \
+	MACRO__(0xE212, ## __VA_ARGS__)

total: 1 errors, 0 warnings, 1 checks, 26 lines checked



^ permalink raw reply	[flat|nested] 14+ messages in thread

* ✓ CI.KUnit: success for drm/xe/bmg: Add PCI IDs
  2024-06-03 14:54 [PATCH] drm/xe/bmg: Add PCI IDs Balasubramani Vivekanandan
                   ` (3 preceding siblings ...)
  2024-06-04 18:36 ` ✗ CI.checkpatch: warning " Patchwork
@ 2024-06-04 18:36 ` Patchwork
  2024-06-04 18:48 ` ✓ CI.Build: " Patchwork
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-06-04 18:36 UTC (permalink / raw)
  To: Balasubramani Vivekanandan; +Cc: intel-xe

== Series Details ==

Series: drm/xe/bmg: Add PCI IDs
URL   : https://patchwork.freedesktop.org/series/134387/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[18:36:03] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:36:08] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make ARCH=um O=.kunit --jobs=48
../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes]
  156 | u64 ioread64_lo_hi(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~
../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes]
  163 | u64 ioread64_hi_lo(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~
../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes]
  170 | u64 ioread64be_lo_hi(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~~~
../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes]
  178 | u64 ioread64be_hi_lo(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~~~
../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes]
  264 | void iowrite64_lo_hi(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~
../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes]
  272 | void iowrite64_hi_lo(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~
../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes]
  280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~~~
../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes]
  288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~~~

[18:36:33] Starting KUnit Kernel (1/1)...
[18:36:33] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:36:33] =================== guc_dbm (7 subtests) ===================
[18:36:33] [PASSED] test_empty
[18:36:33] [PASSED] test_default
[18:36:33] ======================== test_size  ========================
[18:36:33] [PASSED] 4
[18:36:33] [PASSED] 8
[18:36:33] [PASSED] 32
[18:36:33] [PASSED] 256
[18:36:33] ==================== [PASSED] test_size ====================
[18:36:33] ======================= test_reuse  ========================
[18:36:33] [PASSED] 4
[18:36:33] [PASSED] 8
[18:36:33] [PASSED] 32
[18:36:33] [PASSED] 256
[18:36:33] =================== [PASSED] test_reuse ====================
[18:36:33] =================== test_range_overlap  ====================
[18:36:33] [PASSED] 4
[18:36:33] [PASSED] 8
[18:36:33] [PASSED] 32
[18:36:33] [PASSED] 256
[18:36:33] =============== [PASSED] test_range_overlap ================
[18:36:33] =================== test_range_compact  ====================
[18:36:33] [PASSED] 4
[18:36:33] [PASSED] 8
[18:36:33] [PASSED] 32
[18:36:33] [PASSED] 256
[18:36:33] =============== [PASSED] test_range_compact ================
[18:36:33] ==================== test_range_spare  =====================
[18:36:33] [PASSED] 4
[18:36:33] [PASSED] 8
[18:36:33] [PASSED] 32
[18:36:33] [PASSED] 256
[18:36:33] ================ [PASSED] test_range_spare =================
[18:36:33] ===================== [PASSED] guc_dbm =====================
[18:36:33] =================== guc_idm (6 subtests) ===================
[18:36:33] [PASSED] bad_init
[18:36:33] [PASSED] no_init
[18:36:33] [PASSED] init_fini
[18:36:33] [PASSED] check_used
[18:36:33] [PASSED] check_quota
[18:36:33] [PASSED] check_all
[18:36:33] ===================== [PASSED] guc_idm =====================
[18:36:33] ================== no_relay (3 subtests) ===================
[18:36:33] [PASSED] xe_drops_guc2pf_if_not_ready
[18:36:33] [PASSED] xe_drops_guc2vf_if_not_ready
[18:36:33] [PASSED] xe_rejects_send_if_not_ready
[18:36:33] ==================== [PASSED] no_relay =====================
[18:36:33] ================== pf_relay (14 subtests) ==================
[18:36:33] [PASSED] pf_rejects_guc2pf_too_short
[18:36:33] [PASSED] pf_rejects_guc2pf_too_long
[18:36:33] [PASSED] pf_rejects_guc2pf_no_payload
[18:36:33] [PASSED] pf_fails_no_payload
[18:36:33] [PASSED] pf_fails_bad_origin
[18:36:33] [PASSED] pf_fails_bad_type
[18:36:33] [PASSED] pf_txn_reports_error
[18:36:33] [PASSED] pf_txn_sends_pf2guc
[18:36:33] [PASSED] pf_sends_pf2guc
[18:36:33] [SKIPPED] pf_loopback_nop
[18:36:33] [SKIPPED] pf_loopback_echo
[18:36:33] [SKIPPED] pf_loopback_fail
[18:36:33] [SKIPPED] pf_loopback_busy
[18:36:33] [SKIPPED] pf_loopback_retry
[18:36:33] ==================== [PASSED] pf_relay =====================
[18:36:33] ================== vf_relay (3 subtests) ===================
[18:36:33] [PASSED] vf_rejects_guc2vf_too_short
[18:36:33] [PASSED] vf_rejects_guc2vf_too_long
[18:36:33] [PASSED] vf_rejects_guc2vf_no_payload
[18:36:33] ==================== [PASSED] vf_relay =====================
[18:36:33] ================= pf_service (11 subtests) =================
[18:36:33] [PASSED] pf_negotiate_any
[18:36:33] [PASSED] pf_negotiate_base_match
[18:36:33] [PASSED] pf_negotiate_base_newer
[18:36:33] [PASSED] pf_negotiate_base_next
[18:36:33] [SKIPPED] pf_negotiate_base_older
[18:36:33] [PASSED] pf_negotiate_base_prev
[18:36:33] [PASSED] pf_negotiate_latest_match
[18:36:33] [PASSED] pf_negotiate_latest_newer
[18:36:33] [PASSED] pf_negotiate_latest_next
[18:36:33] [SKIPPED] pf_negotiate_latest_older
[18:36:33] [SKIPPED] pf_negotiate_latest_prev
[18:36:33] =================== [PASSED] pf_service ====================
[18:36:33] ===================== lmtt (1 subtest) =====================
[18:36:33] ======================== test_ops  =========================
[18:36:33] [PASSED] 2-level
[18:36:33] [PASSED] multi-level
[18:36:33] ==================== [PASSED] test_ops =====================
[18:36:33] ====================== [PASSED] lmtt =======================
[18:36:33] ==================== xe_bo (2 subtests) ====================
[18:36:33] [SKIPPED] xe_ccs_migrate_kunit
[18:36:33] [SKIPPED] xe_bo_evict_kunit
[18:36:33] ===================== [SKIPPED] xe_bo ======================
[18:36:33] ================== xe_dma_buf (1 subtest) ==================
[18:36:33] [SKIPPED] xe_dma_buf_kunit
[18:36:33] =================== [SKIPPED] xe_dma_buf ===================
[18:36:33] ================== xe_migrate (1 subtest) ==================
[18:36:33] [SKIPPED] xe_migrate_sanity_kunit
[18:36:33] =================== [SKIPPED] xe_migrate ===================
[18:36:33] =================== xe_mocs (2 subtests) ===================
[18:36:33] [SKIPPED] xe_live_mocs_kernel_kunit
[18:36:33] [SKIPPED] xe_live_mocs_reset_kunit
[18:36:33] ==================== [SKIPPED] xe_mocs =====================
[18:36:33] ==================== args (11 subtests) ====================
[18:36:33] [PASSED] count_args_test
[18:36:33] [PASSED] call_args_example
[18:36:33] [PASSED] call_args_test
[18:36:33] [PASSED] drop_first_arg_example
[18:36:33] [PASSED] drop_first_arg_test
[18:36:33] [PASSED] first_arg_example
[18:36:33] [PASSED] first_arg_test
[18:36:33] [PASSED] last_arg_example
[18:36:33] [PASSED] last_arg_test
[18:36:33] [PASSED] pick_arg_example
[18:36:33] [PASSED] sep_comma_example
[18:36:33] ====================== [PASSED] args =======================
[18:36:33] =================== xe_pci (2 subtests) ====================
[18:36:33] [PASSED] xe_gmdid_graphics_ip
[18:36:33] [PASSED] xe_gmdid_media_ip
[18:36:33] ===================== [PASSED] xe_pci ======================
[18:36:33] ==================== xe_rtp (1 subtest) ====================
[18:36:33] ================== xe_rtp_process_tests  ===================
[18:36:33] [PASSED] coalesce-same-reg
[18:36:33] [PASSED] no-match-no-add
[18:36:33] [PASSED] no-match-no-add-multiple-rules
[18:36:33] [PASSED] two-regs-two-entries
[18:36:33] [PASSED] clr-one-set-other
[18:36:33] [PASSED] set-field
[18:36:33] [PASSED] conflict-duplicate
[18:36:33] [PASSED] conflict-not-disjoint
[18:36:33] [PASSED] conflict-reg-type
[18:36:33] ============== [PASSED] xe_rtp_process_tests ===============
stty: 'standard input': Inappropriate ioctl for device
[18:36:33] ===================== [PASSED] xe_rtp ======================
[18:36:33] ==================== xe_wa (1 subtest) =====================
[18:36:33] ======================== xe_wa_gt  =========================
[18:36:33] [PASSED] TIGERLAKE (B0)
[18:36:33] [PASSED] DG1 (A0)
[18:36:33] [PASSED] DG1 (B0)
[18:36:33] [PASSED] ALDERLAKE_S (A0)
[18:36:33] [PASSED] ALDERLAKE_S (B0)
[18:36:33] [PASSED] ALDERLAKE_S (C0)
[18:36:33] [PASSED] ALDERLAKE_S (D0)
[18:36:33] [PASSED] ALDERLAKE_P (A0)
[18:36:33] [PASSED] ALDERLAKE_P (B0)
[18:36:33] [PASSED] ALDERLAKE_P (C0)
[18:36:33] [PASSED] ALDERLAKE_S_RPLS (D0)
[18:36:33] [PASSED] ALDERLAKE_P_RPLU (E0)
[18:36:33] [PASSED] DG2_G10 (C0)
[18:36:33] [PASSED] DG2_G11 (B1)
[18:36:33] [PASSED] DG2_G12 (A1)
[18:36:33] [PASSED] METEORLAKE (g:A0, m:A0)
[18:36:33] [PASSED] METEORLAKE (g:A0, m:A0)
[18:36:33] [PASSED] METEORLAKE (g:A0, m:A0)
[18:36:33] [PASSED] LUNARLAKE (g:A0, m:A0)
[18:36:33] [PASSED] LUNARLAKE (g:B0, m:A0)
[18:36:33] ==================== [PASSED] xe_wa_gt =====================
[18:36:33] ====================== [PASSED] xe_wa ======================
[18:36:33] ============================================================
[18:36:33] Testing complete. Ran 109 tests: passed: 95, skipped: 14
[18:36:33] Elapsed time: 29.924s total, 4.296s configuring, 25.358s building, 0.223s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[18:36:33] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:36:35] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make ARCH=um O=.kunit --jobs=48
../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes]
  156 | u64 ioread64_lo_hi(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~
../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes]
  163 | u64 ioread64_hi_lo(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~
../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes]
  170 | u64 ioread64be_lo_hi(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~~~
../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes]
  178 | u64 ioread64be_hi_lo(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~~~
../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes]
  264 | void iowrite64_lo_hi(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~
../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes]
  272 | void iowrite64_hi_lo(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~
../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes]
  280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~~~
../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes]
  288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~~~

[18:36:56] Starting KUnit Kernel (1/1)...
[18:36:56] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:36:56] ============ drm_test_pick_cmdline (2 subtests) ============
[18:36:56] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[18:36:56] =============== drm_test_pick_cmdline_named  ===============
[18:36:56] [PASSED] NTSC
[18:36:56] [PASSED] NTSC-J
[18:36:56] [PASSED] PAL
[18:36:56] [PASSED] PAL-M
[18:36:56] =========== [PASSED] drm_test_pick_cmdline_named ===========
[18:36:56] ============== [PASSED] drm_test_pick_cmdline ==============
[18:36:56] ================== drm_buddy (7 subtests) ==================
[18:36:56] [PASSED] drm_test_buddy_alloc_limit
[18:36:56] [PASSED] drm_test_buddy_alloc_optimistic
[18:36:56] [PASSED] drm_test_buddy_alloc_pessimistic
[18:36:56] [PASSED] drm_test_buddy_alloc_pathological
[18:36:56] [PASSED] drm_test_buddy_alloc_contiguous
[18:36:56] [PASSED] drm_test_buddy_alloc_clear
[18:36:56] [PASSED] drm_test_buddy_alloc_range_bias
[18:36:56] ==================== [PASSED] drm_buddy ====================
[18:36:56] ============= drm_cmdline_parser (40 subtests) =============
[18:36:56] [PASSED] drm_test_cmdline_force_d_only
[18:36:57] [PASSED] drm_test_cmdline_force_D_only_dvi
[18:36:57] [PASSED] drm_test_cmdline_force_D_only_hdmi
[18:36:57] [PASSED] drm_test_cmdline_force_D_only_not_digital
[18:36:57] [PASSED] drm_test_cmdline_force_e_only
[18:36:57] [PASSED] drm_test_cmdline_res
[18:36:57] [PASSED] drm_test_cmdline_res_vesa
[18:36:57] [PASSED] drm_test_cmdline_res_vesa_rblank
[18:36:57] [PASSED] drm_test_cmdline_res_rblank
[18:36:57] [PASSED] drm_test_cmdline_res_bpp
[18:36:57] [PASSED] drm_test_cmdline_res_refresh
[18:36:57] [PASSED] drm_test_cmdline_res_bpp_refresh
[18:36:57] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[18:36:57] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[18:36:57] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[18:36:57] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[18:36:57] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[18:36:57] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[18:36:57] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[18:36:57] [PASSED] drm_test_cmdline_res_margins_force_on
[18:36:57] [PASSED] drm_test_cmdline_res_vesa_margins
[18:36:57] [PASSED] drm_test_cmdline_name
[18:36:57] [PASSED] drm_test_cmdline_name_bpp
[18:36:57] [PASSED] drm_test_cmdline_name_option
[18:36:57] [PASSED] drm_test_cmdline_name_bpp_option
[18:36:57] [PASSED] drm_test_cmdline_rotate_0
[18:36:57] [PASSED] drm_test_cmdline_rotate_90
[18:36:57] [PASSED] drm_test_cmdline_rotate_180
[18:36:57] [PASSED] drm_test_cmdline_rotate_270
[18:36:57] [PASSED] drm_test_cmdline_hmirror
[18:36:57] [PASSED] drm_test_cmdline_vmirror
[18:36:57] [PASSED] drm_test_cmdline_margin_options
[18:36:57] [PASSED] drm_test_cmdline_multiple_options
[18:36:57] [PASSED] drm_test_cmdline_bpp_extra_and_option
[18:36:57] [PASSED] drm_test_cmdline_extra_and_option
[18:36:57] [PASSED] drm_test_cmdline_freestanding_options
[18:36:57] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[18:36:57] [PASSED] drm_test_cmdline_panel_orientation
[18:36:57] ================ drm_test_cmdline_invalid  =================
[18:36:57] [PASSED] margin_only
[18:36:57] [PASSED] interlace_only
[18:36:57] [PASSED] res_missing_x
[18:36:57] [PASSED] res_missing_y
[18:36:57] [PASSED] res_bad_y
[18:36:57] [PASSED] res_missing_y_bpp
[18:36:57] [PASSED] res_bad_bpp
[18:36:57] [PASSED] res_bad_refresh
[18:36:57] [PASSED] res_bpp_refresh_force_on_off
[18:36:57] [PASSED] res_invalid_mode
[18:36:57] [PASSED] res_bpp_wrong_place_mode
[18:36:57] [PASSED] name_bpp_refresh
[18:36:57] [PASSED] name_refresh
[18:36:57] [PASSED] name_refresh_wrong_mode
[18:36:57] [PASSED] name_refresh_invalid_mode
[18:36:57] [PASSED] rotate_multiple
[18:36:57] [PASSED] rotate_invalid_val
[18:36:57] [PASSED] rotate_truncated
[18:36:57] [PASSED] invalid_option
[18:36:57] [PASSED] invalid_tv_option
[18:36:57] [PASSED] truncated_tv_option
[18:36:57] ============ [PASSED] drm_test_cmdline_invalid =============
[18:36:57] =============== drm_test_cmdline_tv_options  ===============
[18:36:57] [PASSED] NTSC
[18:36:57] [PASSED] NTSC_443
[18:36:57] [PASSED] NTSC_J
[18:36:57] [PASSED] PAL
[18:36:57] [PASSED] PAL_M
[18:36:57] [PASSED] PAL_N
[18:36:57] [PASSED] SECAM
[18:36:57] =========== [PASSED] drm_test_cmdline_tv_options ===========
[18:36:57] =============== [PASSED] drm_cmdline_parser ================
[18:36:57] ========== drmm_connector_hdmi_init (19 subtests) ==========
[18:36:57] [PASSED] drm_test_connector_hdmi_init_valid
[18:36:57] [PASSED] drm_test_connector_hdmi_init_bpc_8
[18:36:57] [PASSED] drm_test_connector_hdmi_init_bpc_10
[18:36:57] [PASSED] drm_test_connector_hdmi_init_bpc_12
[18:36:57] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[18:36:57] [PASSED] drm_test_connector_hdmi_init_bpc_null
[18:36:57] [PASSED] drm_test_connector_hdmi_init_formats_empty
[18:36:57] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[18:36:57] [PASSED] drm_test_connector_hdmi_init_null_ddc
[18:36:57] [PASSED] drm_test_connector_hdmi_init_null_product
[18:36:57] [PASSED] drm_test_connector_hdmi_init_null_vendor
[18:36:57] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[18:36:57] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[18:36:57] [PASSED] drm_test_connector_hdmi_init_product_valid
[18:36:57] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[18:36:57] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[18:36:57] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[18:36:57] ========= drm_test_connector_hdmi_init_type_valid  =========
[18:36:57] [PASSED] HDMI-A
[18:36:57] [PASSED] HDMI-B
[18:36:57] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[18:36:57] ======== drm_test_connector_hdmi_init_type_invalid  ========
[18:36:57] [PASSED] Unknown
[18:36:57] [PASSED] VGA
[18:36:57] [PASSED] DVI-I
[18:36:57] [PASSED] DVI-D
[18:36:57] [PASSED] DVI-A
[18:36:57] [PASSED] Composite
[18:36:57] [PASSED] SVIDEO
[18:36:57] [PASSED] LVDS
[18:36:57] [PASSED] Component
[18:36:57] [PASSED] DIN
[18:36:57] [PASSED] DP
[18:36:57] [PASSED] TV
[18:36:57] [PASSED] eDP
[18:36:57] [PASSED] Virtual
[18:36:57] [PASSED] DSI
[18:36:57] [PASSED] DPI
[18:36:57] [PASSED] Writeback
[18:36:57] [PASSED] SPI
[18:36:57] [PASSED] USB
[18:36:57] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[18:36:57] ============ [PASSED] drmm_connector_hdmi_init =============
[18:36:57] ============= drmm_connector_init (3 subtests) =============
[18:36:57] [PASSED] drm_test_drmm_connector_init
[18:36:57] [PASSED] drm_test_drmm_connector_init_null_ddc
[18:36:57] ========= drm_test_drmm_connector_init_type_valid  =========
[18:36:57] [PASSED] Unknown
[18:36:57] [PASSED] VGA
[18:36:57] [PASSED] DVI-I
[18:36:57] [PASSED] DVI-D
[18:36:57] [PASSED] DVI-A
[18:36:57] [PASSED] Composite
[18:36:57] [PASSED] SVIDEO
[18:36:57] [PASSED] LVDS
[18:36:57] [PASSED] Component
[18:36:57] [PASSED] DIN
[18:36:57] [PASSED] DP
[18:36:57] [PASSED] HDMI-A
[18:36:57] [PASSED] HDMI-B
[18:36:57] [PASSED] TV
[18:36:57] [PASSED] eDP
[18:36:57] [PASSED] Virtual
[18:36:57] [PASSED] DSI
[18:36:57] [PASSED] DPI
[18:36:57] [PASSED] Writeback
[18:36:57] [PASSED] SPI
[18:36:57] [PASSED] USB
[18:36:57] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[18:36:57] =============== [PASSED] drmm_connector_init ===============
[18:36:57] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[18:36:57] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[18:36:57] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[18:36:57] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[18:36:57] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[18:36:57] ========== drm_test_get_tv_mode_from_name_valid  ===========
[18:36:57] [PASSED] NTSC
[18:36:57] [PASSED] NTSC-443
[18:36:57] [PASSED] NTSC-J
[18:36:57] [PASSED] PAL
[18:36:57] [PASSED] PAL-M
[18:36:57] [PASSED] PAL-N
[18:36:57] [PASSED] SECAM
[18:36:57] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[18:36:57] [PASSED] drm_test_get_tv_mode_from_name_truncated
[18:36:57] ============ [PASSED] drm_get_tv_mode_from_name ============
[18:36:57] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[18:36:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[18:36:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[18:36:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[18:36:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[18:36:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[18:36:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[18:36:57] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[18:36:57] [PASSED] VIC 96
[18:36:57] [PASSED] VIC 97
[18:36:57] [PASSED] VIC 101
[18:36:57] [PASSED] VIC 102
[18:36:57] [PASSED] VIC 106
[18:36:57] [PASSED] VIC 107
[18:36:57] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[18:36:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[18:36:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[18:36:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[18:36:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[18:36:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[18:36:57] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[18:36:57] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[18:36:57] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[18:36:57] [PASSED] Automatic
[18:36:57] [PASSED] Full
[18:36:57] [PASSED] Limited 16:235
[18:36:57] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[18:36:57] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[18:36:57] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[18:36:57] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[18:36:57] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[18:36:57] [PASSED] RGB
[18:36:57] [PASSED] YUV 4:2:0
[18:36:57] [PASSED] YUV 4:2:2
[18:36:57] [PASSED] YUV 4:4:4
[18:36:57] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[18:36:57] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[18:36:57] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[18:36:57] ============= drm_damage_helper (21 subtests) ==============
[18:36:57] [PASSED] drm_test_damage_iter_no_damage
[18:36:57] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[18:36:57] [PASSED] drm_test_damage_iter_no_damage_src_moved
[18:36:57] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[18:36:57] [PASSED] drm_test_damage_iter_no_damage_not_visible
[18:36:57] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[18:36:57] [PASSED] drm_test_damage_iter_no_damage_no_fb
[18:36:57] [PASSED] drm_test_damage_iter_simple_damage
[18:36:57] [PASSED] drm_test_damage_iter_single_damage
[18:36:57] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[18:36:57] [PASSED] drm_test_damage_iter_single_damage_outside_src
[18:36:57] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[18:36:57] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[18:36:57] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[18:36:57] [PASSED] drm_test_damage_iter_single_damage_src_moved
[18:36:57] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[18:36:57] [PASSED] drm_test_damage_iter_damage
[18:36:57] [PASSED] drm_test_damage_iter_damage_one_intersect
[18:36:57] [PASSED] drm_test_damage_iter_damage_one_outside
[18:36:57] [PASSED] drm_test_damage_iter_damage_src_moved
[18:36:57] [PASSED] drm_test_damage_iter_damage_not_visible
[18:36:57] ================ [PASSED] drm_damage_helper ================
[18:36:57] ============== drm_dp_mst_helper (3 subtests) ==============
[18:36:57] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[18:36:57] [PASSED] Clock 154000 BPP 30 DSC disabled
[18:36:57] [PASSED] Clock 234000 BPP 30 DSC disabled
[18:36:57] [PASSED] Clock 297000 BPP 24 DSC disabled
[18:36:57] [PASSED] Clock 332880 BPP 24 DSC enabled
[18:36:57] [PASSED] Clock 324540 BPP 24 DSC enabled
[18:36:57] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[18:36:57] ============== drm_test_dp_mst_calc_pbn_div  ===============
[18:36:57] [PASSED] Link rate 2000000 lane count 4
[18:36:57] [PASSED] Link rate 2000000 lane count 2
[18:36:57] [PASSED] Link rate 2000000 lane count 1
[18:36:57] [PASSED] Link rate 1350000 lane count 4
[18:36:57] [PASSED] Link rate 1350000 lane count 2
[18:36:57] [PASSED] Link rate 1350000 lane count 1
[18:36:57] [PASSED] Link rate 1000000 lane count 4
[18:36:57] [PASSED] Link rate 1000000 lane count 2
[18:36:57] [PASSED] Link rate 1000000 lane count 1
[18:36:57] [PASSED] Link rate 810000 lane count 4
[18:36:57] [PASSED] Link rate 810000 lane count 2
[18:36:57] [PASSED] Link rate 810000 lane count 1
[18:36:57] [PASSED] Link rate 540000 lane count 4
[18:36:57] [PASSED] Link rate 540000 lane count 2
[18:36:57] [PASSED] Link rate 540000 lane count 1
[18:36:57] [PASSED] Link rate 270000 lane count 4
[18:36:57] [PASSED] Link rate 270000 lane count 2
[18:36:57] [PASSED] Link rate 270000 lane count 1
[18:36:57] [PASSED] Link rate 162000 lane count 4
[18:36:57] [PASSED] Link rate 162000 lane count 2
[18:36:57] [PASSED] Link rate 162000 lane count 1
[18:36:57] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[18:36:57] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[18:36:57] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[18:36:57] [PASSED] DP_POWER_UP_PHY with port number
[18:36:57] [PASSED] DP_POWER_DOWN_PHY with port number
[18:36:57] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[18:36:57] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[18:36:57] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[18:36:57] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[18:36:57] [PASSED] DP_QUERY_PAYLOAD with port number
[18:36:57] [PASSED] DP_QUERY_PAYLOAD with VCPI
[18:36:57] [PASSED] DP_REMOTE_DPCD_READ with port number
[18:36:57] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[18:36:57] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[18:36:57] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[18:36:57] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[18:36:57] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[18:36:57] [PASSED] DP_REMOTE_I2C_READ with port number
[18:36:57] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[18:36:57] [PASSED] DP_REMOTE_I2C_READ with transactions array
[18:36:57] [PASSED] DP_REMOTE_I2C_WRITE with port number
[18:36:57] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[18:36:57] [PASSED] DP_REMOTE_I2C_WRITE with data array
[18:36:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[18:36:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[18:36:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[18:36:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[18:36:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[18:36:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[18:36:57] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[18:36:57] ================ [PASSED] drm_dp_mst_helper ================
[18:36:57] ================== drm_exec (7 subtests) ===================
[18:36:57] [PASSED] sanitycheck
[18:36:57] [PASSED] test_lock
[18:36:57] [PASSED] test_lock_unlock
[18:36:57] [PASSED] test_duplicates
[18:36:57] [PASSED] test_prepare
[18:36:57] [PASSED] test_prepare_array
[18:36:57] [PASSED] test_multiple_loops
[18:36:57] ==================== [PASSED] drm_exec =====================
[18:36:57] =========== drm_format_helper_test (17 subtests) ===========
[18:36:57] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[18:36:57] [PASSED] single_pixel_source_buffer
[18:36:57] [PASSED] single_pixel_clip_rectangle
[18:36:57] [PASSED] well_known_colors
[18:36:57] [PASSED] destination_pitch
[18:36:57] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[18:36:57] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[18:36:57] [PASSED] single_pixel_source_buffer
[18:36:57] [PASSED] single_pixel_clip_rectangle
[18:36:57] [PASSED] well_known_colors
[18:36:57] [PASSED] destination_pitch
[18:36:57] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[18:36:57] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[18:36:57] [PASSED] single_pixel_source_buffer
[18:36:57] [PASSED] single_pixel_clip_rectangle
[18:36:57] [PASSED] well_known_colors
[18:36:57] [PASSED] destination_pitch
[18:36:57] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[18:36:57] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[18:36:57] [PASSED] single_pixel_source_buffer
[18:36:57] [PASSED] single_pixel_clip_rectangle
[18:36:57] [PASSED] well_known_colors
[18:36:57] [PASSED] destination_pitch
[18:36:57] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[18:36:57] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[18:36:57] [PASSED] single_pixel_source_buffer
[18:36:57] [PASSED] single_pixel_clip_rectangle
[18:36:57] [PASSED] well_known_colors
[18:36:57] [PASSED] destination_pitch
[18:36:57] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[18:36:57] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[18:36:57] [PASSED] single_pixel_source_buffer
[18:36:57] [PASSED] single_pixel_clip_rectangle
[18:36:57] [PASSED] well_known_colors
[18:36:57] [PASSED] destination_pitch
[18:36:57] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[18:36:57] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[18:36:57] [PASSED] single_pixel_source_buffer
[18:36:57] [PASSED] single_pixel_clip_rectangle
[18:36:57] [PASSED] well_known_colors
[18:36:57] [PASSED] destination_pitch
[18:36:57] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[18:36:57] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[18:36:57] [PASSED] single_pixel_source_buffer
[18:36:57] [PASSED] single_pixel_clip_rectangle
[18:36:57] [PASSED] well_known_colors
[18:36:57] [PASSED] destination_pitch
[18:36:57] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[18:36:57] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[18:36:57] [PASSED] single_pixel_source_buffer
[18:36:57] [PASSED] single_pixel_clip_rectangle
[18:36:57] [PASSED] well_known_colors
[18:36:57] [PASSED] destination_pitch
[18:36:57] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[18:36:57] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[18:36:57] [PASSED] single_pixel_source_buffer
[18:36:57] [PASSED] single_pixel_clip_rectangle
[18:36:57] [PASSED] well_known_colors
[18:36:57] [PASSED] destination_pitch
[18:36:57] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[18:36:57] ============== drm_test_fb_xrgb8888_to_mono  ===============
[18:36:57] [PASSED] single_pixel_source_buffer
[18:36:57] [PASSED] single_pixel_clip_rectangle
[18:36:57] [PASSED] well_known_colors
[18:36:57] [PASSED] destination_pitch
[18:36:57] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[18:36:57] ==================== drm_test_fb_swab  =====================
[18:36:57] [PASSED] single_pixel_source_buffer
[18:36:57] [PASSED] single_pixel_clip_rectangle
[18:36:57] [PASSED] well_known_colors
[18:36:57] [PASSED] destination_pitch
[18:36:57] ================ [PASSED] drm_test_fb_swab =================
[18:36:57] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[18:36:57] [PASSED] single_pixel_source_buffer
[18:36:57] [PASSED] single_pixel_clip_rectangle
[18:36:57] [PASSED] well_known_colors
[18:36:57] [PASSED] destination_pitch
[18:36:57] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[18:36:57] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[18:36:57] [PASSED] single_pixel_source_buffer
[18:36:57] [PASSED] single_pixel_clip_rectangle
[18:36:57] [PASSED] well_known_colors
[18:36:57] [PASSED] destination_pitch
[18:36:57] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[18:36:57] ================= drm_test_fb_clip_offset  =================
[18:36:57] [PASSED] pass through
[18:36:57] [PASSED] horizontal offset
[18:36:57] [PASSED] vertical offset
[18:36:57] [PASSED] horizontal and vertical offset
[18:36:57] [PASSED] horizontal offset (custom pitch)
[18:36:57] [PASSED] vertical offset (custom pitch)
[18:36:57] [PASSED] horizontal and vertical offset (custom pitch)
[18:36:57] ============= [PASSED] drm_test_fb_clip_offset =============
[18:36:57] ============== drm_test_fb_build_fourcc_list  ==============
[18:36:57] [PASSED] no native formats
[18:36:57] [PASSED] XRGB8888 as native format
[18:36:57] [PASSED] remove duplicates
[18:36:57] [PASSED] convert alpha formats
[18:36:57] [PASSED] random formats
[18:36:57] ========== [PASSED] drm_test_fb_build_fourcc_list ==========
[18:36:57] =================== drm_test_fb_memcpy  ====================
[18:36:57] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[18:36:57] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[18:36:57] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[18:36:57] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[18:36:57] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[18:36:57] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[18:36:57] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[18:36:57] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[18:36:57] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[18:36:57] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[18:36:57] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[18:36:57] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[18:36:57] =============== [PASSED] drm_test_fb_memcpy ================
[18:36:57] ============= [PASSED] drm_format_helper_test ==============
[18:36:57] ================= drm_format (18 subtests) =================
[18:36:57] [PASSED] drm_test_format_block_width_invalid
[18:36:57] [PASSED] drm_test_format_block_width_one_plane
[18:36:57] [PASSED] drm_test_format_block_width_two_plane
[18:36:57] [PASSED] drm_test_format_block_width_three_plane
[18:36:57] [PASSED] drm_test_format_block_width_tiled
[18:36:57] [PASSED] drm_test_format_block_height_invalid
[18:36:57] [PASSED] drm_test_format_block_height_one_plane
[18:36:57] [PASSED] drm_test_format_block_height_two_plane
[18:36:57] [PASSED] drm_test_format_block_height_three_plane
[18:36:57] [PASSED] drm_test_format_block_height_tiled
[18:36:57] [PASSED] drm_test_format_min_pitch_invalid
[18:36:57] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[18:36:57] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[18:36:57] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[18:36:57] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[18:36:57] [PASSED] drm_test_format_min_pitch_two_plane
[18:36:57] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[18:36:57] [PASSED] drm_test_format_min_pitch_tiled
[18:36:57] =================== [PASSED] drm_format ====================
[18:36:57] =============== drm_framebuffer (1 subtest) ================
[18:36:57] =============== drm_test_framebuffer_create  ===============
[18:36:57] [PASSED] ABGR8888 normal sizes
[18:36:57] [PASSED] ABGR8888 max sizes
[18:36:57] [PASSED] ABGR8888 pitch greater than min required
[18:36:57] [PASSED] ABGR8888 pitch less than min required
[18:36:57] [PASSED] ABGR8888 Invalid width
[18:36:57] [PASSED] ABGR8888 Invalid buffer handle
[18:36:57] [PASSED] No pixel format
[18:36:57] [PASSED] ABGR8888 Width 0
[18:36:57] [PASSED] ABGR8888 Height 0
[18:36:57] [PASSED] ABGR8888 Out of bound height * pitch combination
[18:36:57] [PASSED] ABGR8888 Large buffer offset
[18:36:57] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[18:36:57] [PASSED] ABGR8888 Valid buffer modifier
[18:36:57] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[18:36:57] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[18:36:57] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[18:36:57] [PASSED] NV12 Normal sizes
[18:36:57] [PASSED] NV12 Max sizes
[18:36:57] [PASSED] NV12 Invalid pitch
[18:36:57] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[18:36:57] [PASSED] NV12 different  modifier per-plane
[18:36:57] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[18:36:57] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[18:36:57] [PASSED] NV12 Modifier for inexistent plane
[18:36:57] [PASSED] NV12 Handle for inexistent plane
[18:36:57] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[18:36:57] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[18:36:57] [PASSED] YVU420 Normal sizes
[18:36:57] [PASSED] YVU420 Max sizes
[18:36:57] [PASSED] YVU420 Invalid pitch
[18:36:57] [PASSED] YVU420 Different pitches
[18:36:57] [PASSED] YVU420 Different buffer offsets/pitches
[18:36:57] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[18:36:57] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[18:36:57] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[18:36:57] [PASSED] YVU420 Valid modifier
[18:36:57] [PASSED] YVU420 Different modifiers per plane
[18:36:57] [PASSED] YVU420 Modifier for inexistent plane
[18:36:57] [PASSED] X0L2 Normal sizes
[18:36:57] [PASSED] X0L2 Max sizes
[18:36:57] [PASSED] X0L2 Invalid pitch
[18:36:57] [PASSED] X0L2 Pitch greater than minimum required
[18:36:57] [PASSED] X0L2 Handle for inexistent plane
[18:36:57] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[18:36:57] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[18:36:57] [PASSED] X0L2 Valid modifier
[18:36:57] [PASSED] X0L2 Modifier for inexistent plane
[18:36:57] =========== [PASSED] drm_test_framebuffer_create ===========
[18:36:57] ================= [PASSED] drm_framebuffer =================
[18:36:57] ================ drm_gem_shmem (8 subtests) ================
[18:36:57] [PASSED] drm_gem_shmem_test_obj_create
[18:36:57] [PASSED] drm_gem_shmem_test_obj_create_private
[18:36:57] [PASSED] drm_gem_shmem_test_pin_pages
[18:36:57] [PASSED] drm_gem_shmem_test_vmap
[18:36:57] [PASSED] drm_gem_shmem_test_get_pages_sgt
[18:36:57] [PASSED] drm_gem_shmem_test_get_sg_table
[18:36:57] [PASSED] drm_gem_shmem_test_madvise
[18:36:57] [PASSED] drm_gem_shmem_test_purge
[18:36:57] ================== [PASSED] drm_gem_shmem ==================
[18:36:57] === drm_atomic_helper_connector_hdmi_check (22 subtests) ===
[18:36:57] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[18:36:57] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[18:36:57] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[18:36:57] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[18:36:57] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[18:36:57] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[18:36:57] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[18:36:57] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[18:36:57] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[18:36:57] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback
[18:36:57] [PASSED] drm_test_check_max_tmds_rate_format_fallback
[18:36:57] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[18:36:57] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[18:36:57] [PASSED] drm_test_check_output_bpc_dvi
[18:36:57] [PASSED] drm_test_check_output_bpc_format_vic_1
[18:36:57] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[18:36:57] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[18:36:57] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[18:36:57] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[18:36:57] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[18:36:57] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[18:36:57] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[18:36:57] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[18:36:57] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[18:36:57] [PASSED] drm_test_check_broadcast_rgb_value
[18:36:57] [PASSED] drm_test_check_bpc_8_value
[18:36:57] [PASSED] drm_test_check_bpc_10_value
[18:36:57] [PASSED] drm_test_check_bpc_12_value
[18:36:57] [PASSED] drm_test_check_format_value
[18:36:57] [PASSED] drm_test_check_tmds_char_value
[18:36:57] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[18:36:57] ================= drm_managed (2 subtests) =================
[18:36:57] [PASSED] drm_test_managed_release_action
[18:36:57] [PASSED] drm_test_managed_run_action
[18:36:57] =================== [PASSED] drm_managed ===================
[18:36:57] =================== drm_mm (6 subtests) ====================
[18:36:57] [PASSED] drm_test_mm_init
[18:36:57] [PASSED] drm_test_mm_debug
[18:36:57] [PASSED] drm_test_mm_align32
[18:36:57] [PASSED] drm_test_mm_align64
[18:36:57] [PASSED] drm_test_mm_lowest
[18:36:57] [PASSED] drm_test_mm_highest
[18:36:57] ===================== [PASSED] drm_mm ======================
[18:36:57] ============= drm_modes_analog_tv (4 subtests) =============
[18:36:57] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[18:36:57] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[18:36:57] [PASSED] drm_test_modes_analog_tv_pal_576i
[18:36:57] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[18:36:57] =============== [PASSED] drm_modes_analog_tv ===============
[18:36:57] ============== drm_plane_helper (2 subtests) ===============
[18:36:57] =============== drm_test_check_plane_state  ================
[18:36:57] [PASSED] clipping_simple
[18:36:57] [PASSED] clipping_rotate_reflect
[18:36:57] [PASSED] positioning_simple
[18:36:57] [PASSED] upscaling
[18:36:57] [PASSED] downscaling
[18:36:57] [PASSED] rounding1
[18:36:57] [PASSED] rounding2
[18:36:57] [PASSED] rounding3
[18:36:57] [PASSED] rounding4
[18:36:57] =========== [PASSED] drm_test_check_plane_state ============
[18:36:57] =========== drm_test_check_invalid_plane_state  ============
[18:36:57] [PASSED] positioning_invalid
[18:36:57] [PASSED] upscaling_invalid
[18:36:57] [PASSED] downscaling_invalid
[18:36:57] ======= [PASSED] drm_test_check_invalid_plane_state ========
[18:36:57] ================ [PASSED] drm_plane_helper =================
stty: 'standard input': Inappropriate ioctl for device
[18:36:57] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[18:36:57] ====== drm_test_connector_helper_tv_get_modes_check  =======
[18:36:57] [PASSED] None
[18:36:57] [PASSED] PAL
[18:36:57] [PASSED] NTSC
[18:36:57] [PASSED] Both, NTSC Default
[18:36:57] [PASSED] Both, PAL Default
[18:36:57] [PASSED] Both, NTSC Default, with PAL on command-line
[18:36:57] [PASSED] Both, PAL Default, with NTSC on command-line
[18:36:57] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[18:36:57] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[18:36:57] ================== drm_rect (9 subtests) ===================
[18:36:57] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[18:36:57] [PASSED] drm_test_rect_clip_scaled_not_clipped
[18:36:57] [PASSED] drm_test_rect_clip_scaled_clipped
[18:36:57] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[18:36:57] ================= drm_test_rect_intersect  =================
[18:36:57] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[18:36:57] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[18:36:57] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[18:36:57] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[18:36:57] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[18:36:57] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[18:36:57] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[18:36:57] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[18:36:57] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[18:36:57] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[18:36:57] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[18:36:57] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[18:36:57] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[18:36:57] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[18:36:57] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[18:36:57] ============= [PASSED] drm_test_rect_intersect =============
[18:36:57] ================ drm_test_rect_calc_hscale  ================
[18:36:57] [PASSED] normal use
[18:36:57] [PASSED] out of max range
[18:36:57] [PASSED] out of min range
[18:36:57] [PASSED] zero dst
[18:36:57] [PASSED] negative src
[18:36:57] [PASSED] negative dst
[18:36:57] ============ [PASSED] drm_test_rect_calc_hscale ============
[18:36:57] ================ drm_test_rect_calc_vscale  ================
[18:36:57] [PASSED] normal use
[18:36:57] [PASSED] out of max range
[18:36:57] [PASSED] out of min range
[18:36:57] [PASSED] zero dst
[18:36:57] [PASSED] negative src
[18:36:57] [PASSED] negative dst
[18:36:57] ============ [PASSED] drm_test_rect_calc_vscale ============
[18:36:57] ================== drm_test_rect_rotate  ===================
[18:36:57] [PASSED] reflect-x
[18:36:57] [PASSED] reflect-y
[18:36:57] [PASSED] rotate-0
[18:36:57] [PASSED] rotate-90
[18:36:57] [PASSED] rotate-180
[18:36:57] [PASSED] rotate-270
[18:36:57] ============== [PASSED] drm_test_rect_rotate ===============
[18:36:57] ================ drm_test_rect_rotate_inv  =================
[18:36:57] [PASSED] reflect-x
[18:36:57] [PASSED] reflect-y
[18:36:57] [PASSED] rotate-0
[18:36:57] [PASSED] rotate-90
[18:36:57] [PASSED] rotate-180
[18:36:57] [PASSED] rotate-270
[18:36:57] ============ [PASSED] drm_test_rect_rotate_inv =============
[18:36:57] ==================== [PASSED] drm_rect =====================
[18:36:57] ============================================================
[18:36:57] Testing complete. Ran 511 tests: passed: 511
[18:36:57] Elapsed time: 23.228s total, 1.691s configuring, 21.367s building, 0.154s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 14+ messages in thread

* ✓ CI.Build: success for drm/xe/bmg: Add PCI IDs
  2024-06-03 14:54 [PATCH] drm/xe/bmg: Add PCI IDs Balasubramani Vivekanandan
                   ` (4 preceding siblings ...)
  2024-06-04 18:36 ` ✓ CI.KUnit: success " Patchwork
@ 2024-06-04 18:48 ` Patchwork
  2024-06-04 18:48 ` ✗ CI.Hooks: failure " Patchwork
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-06-04 18:48 UTC (permalink / raw)
  To: Balasubramani Vivekanandan; +Cc: intel-xe

== Series Details ==

Series: drm/xe/bmg: Add PCI IDs
URL   : https://patchwork.freedesktop.org/series/134387/
State : success

== Summary ==

lib/modules/6.10.0-rc2-xe/kernel/sound/core/seq/
lib/modules/6.10.0-rc2-xe/kernel/sound/core/seq/snd-seq.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/core/snd-seq-device.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/core/snd-hwdep.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/core/snd.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/core/snd-pcm.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/core/snd-compress.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/core/snd-timer.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soundcore.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/atom/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/atom/sst/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/atom/sst/snd-intel-sst-acpi.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/atom/sst/snd-intel-sst-core.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/common/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/common/snd-soc-acpi-intel-match.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/amd/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/amd/snd-acp-config.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-tgl.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda-mlink.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-cnl.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-lnl.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda-common.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda-generic.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-mtl.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/amd/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/amd/snd-sof-amd-renoir.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/amd/snd-sof-amd-acp.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/snd-sof-utils.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/snd-sof-pci.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/snd-sof.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/snd-sof-probes.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/xtensa/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/xtensa/snd-sof-xtensa-dsp.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/snd-soc-core.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/snd-soc-acpi.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/codecs/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/codecs/snd-soc-hdac-hda.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/hda/
lib/modules/6.10.0-rc2-xe/kernel/sound/hda/snd-intel-sdw-acpi.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/hda/ext/
lib/modules/6.10.0-rc2-xe/kernel/sound/hda/ext/snd-hda-ext-core.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/hda/snd-intel-dspcfg.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/hda/snd-hda-core.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/kernel/
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/kernel/msr.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/kernel/cpuid.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/sha512-ssse3.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/crct10dif-pclmul.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/ghash-clmulni-intel.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/sha1-ssse3.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/crc32-pclmul.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/sha256-ssse3.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/aesni-intel.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/polyval-clmulni.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/events/
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/events/intel/
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/events/intel/intel-cstate.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/events/rapl.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/kvm/
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/kvm/kvm.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/kvm/kvm-intel.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/
lib/modules/6.10.0-rc2-xe/kernel/crypto/crypto_simd.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/cmac.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/ccm.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/cryptd.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/polyval-generic.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/async_tx/
lib/modules/6.10.0-rc2-xe/kernel/crypto/async_tx/async_xor.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/async_tx/async_tx.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/async_tx/async_memcpy.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/async_tx/async_pq.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/async_tx/async_raid6_recov.ko
lib/modules/6.10.0-rc2-xe/build
lib/modules/6.10.0-rc2-xe/modules.alias.bin
lib/modules/6.10.0-rc2-xe/modules.builtin
lib/modules/6.10.0-rc2-xe/modules.softdep
lib/modules/6.10.0-rc2-xe/modules.alias
lib/modules/6.10.0-rc2-xe/modules.order
lib/modules/6.10.0-rc2-xe/modules.symbols
lib/modules/6.10.0-rc2-xe/modules.dep.bin
+ mv kernel-nodebug.tar.gz ..
+ cd ..
+ rm -rf archive
++ date +%s
^[[0Ksection_end:1717526897:package_x86_64_nodebug
^[[0K
+ echo -e '\e[0Ksection_end:1717526897:package_x86_64_nodebug\r\e[0K'
+ sync
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 14+ messages in thread

* ✗ CI.Hooks: failure for drm/xe/bmg: Add PCI IDs
  2024-06-03 14:54 [PATCH] drm/xe/bmg: Add PCI IDs Balasubramani Vivekanandan
                   ` (5 preceding siblings ...)
  2024-06-04 18:48 ` ✓ CI.Build: " Patchwork
@ 2024-06-04 18:48 ` Patchwork
  2024-06-04 18:50 ` ✓ CI.checksparse: success " Patchwork
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-06-04 18:48 UTC (permalink / raw)
  To: Balasubramani Vivekanandan; +Cc: intel-xe

== Series Details ==

Series: drm/xe/bmg: Add PCI IDs
URL   : https://patchwork.freedesktop.org/series/134387/
State : failure

== Summary ==

run-parts: executing /workspace/ci/hooks/00-showenv
+ export
+ grep -Ei '(^|\W)CI_'
declare -x CI_KERNEL_BUILD_DIR="/workspace/kernel/build64-default"
declare -x CI_KERNEL_SRC_DIR="/workspace/kernel"
declare -x CI_TOOLS_SRC_DIR="/workspace/ci"
declare -x CI_WORKSPACE_DIR="/workspace"
run-parts: executing /workspace/ci/hooks/10-build-W1
+ SRC_DIR=/workspace/kernel
+ RESTORE_DISPLAY_CONFIG=0
+ '[' -n /workspace/kernel/build64-default ']'
+ BUILD_DIR=/workspace/kernel/build64-default
+ cd /workspace/kernel
++ nproc
+ make -j48 O=/workspace/kernel/build64-default modules_prepare
make[1]: Entering directory '/workspace/kernel/build64-default'
  GEN     Makefile
  UPD     include/generated/compile.h
  UPD     include/config/kernel.release
mkdir -p /workspace/kernel/build64-default/tools/objtool && make O=/workspace/kernel/build64-default subdir=tools/objtool --no-print-directory -C objtool 
  UPD     include/generated/utsrelease.h
  HOSTCC  /workspace/kernel/build64-default/tools/objtool/fixdep.o
  CALL    ../scripts/checksyscalls.sh
  HOSTLD  /workspace/kernel/build64-default/tools/objtool/fixdep-in.o
  LINK    /workspace/kernel/build64-default/tools/objtool/fixdep
  INSTALL libsubcmd_headers
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/exec-cmd.o
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/help.o
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/pager.o
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/parse-options.o
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/run-command.o
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/sigchain.o
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/subcmd-config.o
  LD      /workspace/kernel/build64-default/tools/objtool/libsubcmd/libsubcmd-in.o
  AR      /workspace/kernel/build64-default/tools/objtool/libsubcmd/libsubcmd.a
  CC      /workspace/kernel/build64-default/tools/objtool/weak.o
  CC      /workspace/kernel/build64-default/tools/objtool/check.o
  CC      /workspace/kernel/build64-default/tools/objtool/special.o
  CC      /workspace/kernel/build64-default/tools/objtool/builtin-check.o
  CC      /workspace/kernel/build64-default/tools/objtool/elf.o
  CC      /workspace/kernel/build64-default/tools/objtool/objtool.o
  CC      /workspace/kernel/build64-default/tools/objtool/orc_gen.o
  CC      /workspace/kernel/build64-default/tools/objtool/orc_dump.o
  CC      /workspace/kernel/build64-default/tools/objtool/libstring.o
  CC      /workspace/kernel/build64-default/tools/objtool/libctype.o
  CC      /workspace/kernel/build64-default/tools/objtool/str_error_r.o
  CC      /workspace/kernel/build64-default/tools/objtool/librbtree.o
  CC      /workspace/kernel/build64-default/tools/objtool/arch/x86/special.o
  CC      /workspace/kernel/build64-default/tools/objtool/arch/x86/decode.o
  CC      /workspace/kernel/build64-default/tools/objtool/arch/x86/orc.o
  LD      /workspace/kernel/build64-default/tools/objtool/arch/x86/objtool-in.o
  LD      /workspace/kernel/build64-default/tools/objtool/objtool-in.o
  LINK    /workspace/kernel/build64-default/tools/objtool/objtool
make[1]: Leaving directory '/workspace/kernel/build64-default'
++ nproc
+ make -j48 O=/workspace/kernel/build64-default M=drivers/gpu/drm/xe W=1
make[1]: Entering directory '/workspace/kernel/build64-default'
../scripts/Makefile.build:41: drivers/gpu/drm/xe/Makefile: No such file or directory
make[3]: *** No rule to make target 'drivers/gpu/drm/xe/Makefile'.  Stop.
make[2]: *** [/workspace/kernel/Makefile:1934: drivers/gpu/drm/xe] Error 2
make[1]: Leaving directory '/workspace/kernel/build64-default'
make[1]: *** [/workspace/kernel/Makefile:240: __sub-make] Error 2
make: *** [Makefile:240: __sub-make] Error 2
run-parts: /workspace/ci/hooks/10-build-W1 exited with return code 2



^ permalink raw reply	[flat|nested] 14+ messages in thread

* ✓ CI.checksparse: success for drm/xe/bmg: Add PCI IDs
  2024-06-03 14:54 [PATCH] drm/xe/bmg: Add PCI IDs Balasubramani Vivekanandan
                   ` (6 preceding siblings ...)
  2024-06-04 18:48 ` ✗ CI.Hooks: failure " Patchwork
@ 2024-06-04 18:50 ` Patchwork
  2024-06-04 19:33 ` ✓ CI.BAT: " Patchwork
  2024-06-05  0:26 ` ✗ CI.FULL: failure " Patchwork
  9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-06-04 18:50 UTC (permalink / raw)
  To: Balasubramani Vivekanandan; +Cc: intel-xe

== Series Details ==

Series: drm/xe/bmg: Add PCI IDs
URL   : https://patchwork.freedesktop.org/series/134387/
State : success

== Summary ==

+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast 77588a3e3e58917a9b1d992aeef6f02a6b85ded5
Sparse version: 0.6.1 (Ubuntu: 0.6.1-2build1)
Fast mode used, each commit won't be checked separately.
Okay!

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 14+ messages in thread

* ✓ CI.BAT: success for drm/xe/bmg: Add PCI IDs
  2024-06-03 14:54 [PATCH] drm/xe/bmg: Add PCI IDs Balasubramani Vivekanandan
                   ` (7 preceding siblings ...)
  2024-06-04 18:50 ` ✓ CI.checksparse: success " Patchwork
@ 2024-06-04 19:33 ` Patchwork
  2024-06-05  0:26 ` ✗ CI.FULL: failure " Patchwork
  9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-06-04 19:33 UTC (permalink / raw)
  To: Balasubramani Vivekanandan; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 929 bytes --]

== Series Details ==

Series: drm/xe/bmg: Add PCI IDs
URL   : https://patchwork.freedesktop.org/series/134387/
State : success

== Summary ==

CI Bug Log - changes from xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5_BAT -> xe-pw-134387v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (5 -> 4)
------------------------------

  Missing    (1): bat-adlp-7 


Changes
-------

  No changes found


Build changes
-------------

  * Linux: xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5 -> xe-pw-134387v1

  IGT_7877: 23b8b8a0168e1b5141e29346be1f83fdbed31037 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5: 77588a3e3e58917a9b1d992aeef6f02a6b85ded5
  xe-pw-134387v1: 134387v1

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/index.html

[-- Attachment #2: Type: text/html, Size: 1477 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH] drm/xe/bmg: Add PCI IDs
  2024-06-04  8:03 ` Jani Nikula
@ 2024-06-04 21:21   ` Lucas De Marchi
  2024-06-05  7:43     ` Jani Nikula
  0 siblings, 1 reply; 14+ messages in thread
From: Lucas De Marchi @ 2024-06-04 21:21 UTC (permalink / raw)
  To: Jani Nikula
  Cc: Balasubramani Vivekanandan, intel-xe, gregory.f.germano,
	Vitasta Wattal, Matt Roper

On Tue, Jun 04, 2024 at 11:03:51AM GMT, Jani Nikula wrote:
>On Mon, 03 Jun 2024, Balasubramani Vivekanandan <balasubramani.vivekanandan@intel.com> wrote:
>> From: Matt Roper <matthew.d.roper@intel.com>
>>
>> Add the initial set of device IDs for Battlemage.
>>
>> Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
>> Signed-off-by: Balasubramani Vivekanandan <balasubramani.vivekanandan@intel.com>
>
>Please note that since commit 54836ee194f9 ("drm/i915/display: change
>display probe to identify GMD ID based platforms") you'll also need to
>add the PCI IDs to i915_pciids.h and add the platform desc in
>i915/display/intel_display_device.c for display probe.

that was not the plan when we started xe_pciids.h. Now that display side
will use pci id to find a static desc, I think there's no point in
keeping the headers separate. Should we unify them?

Lucas De Marchi

^ permalink raw reply	[flat|nested] 14+ messages in thread

* ✗ CI.FULL: failure for drm/xe/bmg: Add PCI IDs
  2024-06-03 14:54 [PATCH] drm/xe/bmg: Add PCI IDs Balasubramani Vivekanandan
                   ` (8 preceding siblings ...)
  2024-06-04 19:33 ` ✓ CI.BAT: " Patchwork
@ 2024-06-05  0:26 ` Patchwork
  2024-06-12 16:57   ` Matt Roper
  9 siblings, 1 reply; 14+ messages in thread
From: Patchwork @ 2024-06-05  0:26 UTC (permalink / raw)
  To: Balasubramani Vivekanandan; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 76699 bytes --]

== Series Details ==

Series: drm/xe/bmg: Add PCI IDs
URL   : https://patchwork.freedesktop.org/series/134387/
State : failure

== Summary ==

CI Bug Log - changes from xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5_full -> xe-pw-134387v1_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-134387v1_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-134387v1_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 (3 -> 3)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in xe-pw-134387v1_full:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][1] +6 other tests dmesg-fail
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [FAIL][2]
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-1.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [ABORT][3]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-1.html

  * igt@xe_gt_freq@freq_fixed_exec:
    - shard-dg2-set2:     [PASS][4] -> [FAIL][5]
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_gt_freq@freq_fixed_exec.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@xe_gt_freq@freq_fixed_exec.html

  
#### Warnings ####

  * igt@kms_flip@flip-vs-suspend:
    - shard-adlp:         [INCOMPLETE][6] ([Intel XE#1195] / [Intel XE#927]) -> [DMESG-FAIL][7] +1 other test dmesg-fail
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-9/igt@kms_flip@flip-vs-suspend.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
    - shard-adlp:         [INCOMPLETE][8] ([Intel XE#1195]) -> [DMESG-FAIL][9] +1 other test dmesg-fail
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html

  * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1:
    - shard-adlp:         [FAIL][10] -> [DMESG-FAIL][11]
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-2/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1.html

  * igt@xe_pm@s3-basic-exec:
    - shard-adlp:         [INCOMPLETE][12] ([Intel XE#1044] / [Intel XE#1195] / [Intel XE#1358]) -> [DMESG-FAIL][13]
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-9/igt@xe_pm@s3-basic-exec.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@xe_pm@s3-basic-exec.html

  * igt@xe_pm@s4-mocs:
    - shard-dg2-set2:     [DMESG-WARN][14] ([Intel XE#1214]) -> [DMESG-WARN][15] +1 other test dmesg-warn
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@xe_pm@s4-mocs.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@xe_pm@s4-mocs.html

  
#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@kms_big_fb@4-tiled-addfb-size-overflow:
    - {shard-lnl}:        NOTRUN -> [INCOMPLETE][16]
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-6/igt@kms_big_fb@4-tiled-addfb-size-overflow.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1:
    - {shard-lnl}:        NOTRUN -> [DMESG-FAIL][17] +1 other test dmesg-fail
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-3/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - {shard-lnl}:        NOTRUN -> [FAIL][18] +1 other test fail
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-7/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_flip@flip-vs-suspend:
    - {shard-lnl}:        [FAIL][19] ([Intel XE#1901]) -> [DMESG-FAIL][20] +1 other test dmesg-fail
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-2/igt@kms_flip@flip-vs-suspend.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-3/igt@kms_flip@flip-vs-suspend.html

  * igt@xe_ccs@block-multicopy-compressed:
    - {shard-lnl}:        [PASS][21] -> [INCOMPLETE][22]
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-4/igt@xe_ccs@block-multicopy-compressed.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-8/igt@xe_ccs@block-multicopy-compressed.html

  * igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system:
    - {shard-lnl}:        [FAIL][23] -> [DMESG-FAIL][24] +3 other tests dmesg-fail
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-3/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-3/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system.html

  * igt@xe_ccs@suspend-resume@xmajor-compressed-compfmt0-system-system:
    - {shard-lnl}:        [DMESG-FAIL][25] -> [FAIL][26]
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-3/igt@xe_ccs@suspend-resume@xmajor-compressed-compfmt0-system-system.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-3/igt@xe_ccs@suspend-resume@xmajor-compressed-compfmt0-system-system.html

  
Known issues
------------

  Here are the changes found in xe-pw-134387v1_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-dg2-set2:     NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#623])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-433/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-y:
    - shard-adlp:         [PASS][28] -> [DMESG-WARN][29] ([Intel XE#1033] / [Intel XE#1214])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-y.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-y.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-180:
    - shard-adlp:         NOTRUN -> [SKIP][30] ([Intel XE#1124] / [Intel XE#1201]) +10 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-addfb:
    - shard-adlp:         NOTRUN -> [SKIP][31] ([Intel XE#1201] / [Intel XE#619])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-1/igt@kms_big_fb@4-tiled-addfb.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][32] ([Intel XE#1201] / [Intel XE#316]) +1 other test skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-433/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-90:
    - shard-adlp:         NOTRUN -> [SKIP][33] ([Intel XE#1201] / [Intel XE#316]) +3 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-1/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-adlp:         NOTRUN -> [FAIL][34] ([Intel XE#1874]) +1 other test fail
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][35] ([Intel XE#324]) +1 other test dmesg-fail
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][36] ([Intel XE#1124] / [Intel XE#1201]) +5 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_bw@linear-tiling-3-displays-1920x1080p:
    - shard-adlp:         NOTRUN -> [SKIP][37] ([Intel XE#1201] / [Intel XE#367])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-4-displays-1920x1080p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][38] ([Intel XE#1201] / [Intel XE#367])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][39] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +13 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-8/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][40] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +13 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][41] ([Intel XE#1201] / [Intel XE#787]) +48 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][42] ([Intel XE#1201] / [Intel XE#787]) +20 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][43] ([Intel XE#1201] / [Intel XE#1252])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][44] ([Intel XE#1201] / [Intel XE#1252])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-8/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html

  * igt@kms_chamelium_color@ctm-0-75:
    - shard-dg2-set2:     NOTRUN -> [SKIP][45] ([Intel XE#1201] / [Intel XE#306])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@kms_chamelium_color@ctm-0-75.html
    - shard-adlp:         NOTRUN -> [SKIP][46] ([Intel XE#1201] / [Intel XE#306])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@kms_chamelium_color@ctm-0-75.html

  * igt@kms_chamelium_hpd@dp-hpd-after-suspend:
    - shard-adlp:         NOTRUN -> [SKIP][47] ([Intel XE#1201] / [Intel XE#373]) +6 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html

  * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
    - shard-dg2-set2:     NOTRUN -> [SKIP][48] ([Intel XE#1201] / [Intel XE#373]) +4 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html

  * igt@kms_content_protection@content-type-change:
    - shard-adlp:         NOTRUN -> [SKIP][49] ([Intel XE#1201] / [Intel XE#455]) +9 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][50] ([Intel XE#1201] / [Intel XE#307])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-dg2-set2:     NOTRUN -> [SKIP][51] ([Intel XE#1201] / [Intel XE#308])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][52] ([Intel XE#282])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-hdmi-a-6.html

  * igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][53] ([Intel XE#1214] / [Intel XE#282]) +3 other tests dmesg-warn
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html

  * igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions:
    - shard-dg2-set2:     [PASS][54] -> [DMESG-WARN][55] ([Intel XE#1214] / [Intel XE#282]) +6 other tests dmesg-warn
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-464/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-464/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
    - shard-adlp:         NOTRUN -> [SKIP][56] ([Intel XE#1201] / [Intel XE#309]) +3 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-dg2-set2:     NOTRUN -> [SKIP][57] ([Intel XE#1201] / [Intel XE#323])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
    - shard-adlp:         NOTRUN -> [SKIP][58] ([Intel XE#1201] / [Intel XE#323])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_fbcon_fbt@psr:
    - shard-adlp:         NOTRUN -> [SKIP][59] ([Intel XE#1201] / [Intel XE#776])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_fbcon_fbt@psr.html

  * igt@kms_feature_discovery@display-2x:
    - shard-adlp:         NOTRUN -> [SKIP][60] ([Intel XE#1201] / [Intel XE#702])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_feature_discovery@display-2x.html

  * igt@kms_flip@2x-blocking-wf_vblank:
    - shard-adlp:         NOTRUN -> [SKIP][61] ([Intel XE#1201] / [Intel XE#310]) +3 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_flip@2x-blocking-wf_vblank.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-x:
    - shard-adlp:         [PASS][62] -> [FAIL][63] ([Intel XE#1874]) +1 other test fail
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-x.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-x.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt:
    - shard-adlp:         NOTRUN -> [SKIP][64] ([Intel XE#1201] / [Intel XE#651]) +9 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][65] ([Intel XE#651])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][66] ([Intel XE#1201] / [Intel XE#651]) +16 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
    - shard-adlp:         NOTRUN -> [FAIL][67] ([Intel XE#1861])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
    - shard-adlp:         NOTRUN -> [SKIP][68] ([Intel XE#1201] / [Intel XE#653]) +10 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][69] ([Intel XE#1201] / [Intel XE#653]) +12 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt:
    - shard-adlp:         NOTRUN -> [SKIP][70] ([Intel XE#1201] / [Intel XE#656]) +32 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][71] ([Intel XE#653])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html

  * igt@kms_getfb@getfb2-accept-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][72] ([Intel XE#1201] / [Intel XE#1339])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_getfb@getfb2-accept-ccs.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-adlp:         NOTRUN -> [SKIP][73] ([Intel XE#1201] / [Intel XE#417])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_pm_backlight@fade:
    - shard-dg2-set2:     NOTRUN -> [SKIP][74] ([Intel XE#1201] / [Intel XE#870])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-adlp:         NOTRUN -> [SKIP][75] ([Intel XE#1201] / [Intel XE#1211])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-adlp:         NOTRUN -> [SKIP][76] ([Intel XE#1201]) +2 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@kms_psr2_sf@cursor-plane-update-sf.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-adlp:         NOTRUN -> [SKIP][77] ([Intel XE#1122] / [Intel XE#1201])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr@fbc-psr2-primary-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][78] ([Intel XE#1201] / [Intel XE#929]) +10 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-436/igt@kms_psr@fbc-psr2-primary-blt.html

  * igt@kms_psr@psr-cursor-blt:
    - shard-adlp:         NOTRUN -> [SKIP][79] ([Intel XE#1201] / [Intel XE#929]) +10 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-8/igt@kms_psr@psr-cursor-blt.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-dg2-set2:     NOTRUN -> [SKIP][80] ([Intel XE#1201] / [Intel XE#327])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-433/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-adlp:         NOTRUN -> [SKIP][81] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

  * igt@kms_vrr@flipline:
    - shard-dg2-set2:     NOTRUN -> [SKIP][82] ([Intel XE#1201] / [Intel XE#455]) +10 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@kms_vrr@flipline.html

  * igt@kms_writeback@writeback-check-output-xrgb2101010:
    - shard-dg2-set2:     NOTRUN -> [SKIP][83] ([Intel XE#1201] / [Intel XE#756])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-433/igt@kms_writeback@writeback-check-output-xrgb2101010.html
    - shard-adlp:         NOTRUN -> [SKIP][84] ([Intel XE#1201] / [Intel XE#756])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html

  * igt@xe_ccs@block-multicopy-inplace:
    - shard-adlp:         NOTRUN -> [SKIP][85] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#488])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@xe_ccs@block-multicopy-inplace.html

  * igt@xe_compute@ccs-mode-basic:
    - shard-adlp:         NOTRUN -> [SKIP][86] ([Intel XE#1201] / [Intel XE#1447])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-8/igt@xe_compute@ccs-mode-basic.html

  * igt@xe_copy_basic@mem-set-linear-0x369:
    - shard-dg2-set2:     NOTRUN -> [SKIP][87] ([Intel XE#1126] / [Intel XE#1201])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0x369.html

  * igt@xe_evict@evict-beng-mixed-threads-large:
    - shard-dg2-set2:     [PASS][88] -> [TIMEOUT][89] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@xe_evict@evict-beng-mixed-threads-large.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-466/igt@xe_evict@evict-beng-mixed-threads-large.html

  * igt@xe_evict@evict-beng-small-cm:
    - shard-adlp:         NOTRUN -> [SKIP][90] ([Intel XE#1201] / [Intel XE#261] / [Intel XE#688]) +2 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@xe_evict@evict-beng-small-cm.html

  * igt@xe_evict@evict-large-multi-vm-cm:
    - shard-dg2-set2:     NOTRUN -> [FAIL][91] ([Intel XE#1600])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@xe_evict@evict-large-multi-vm-cm.html

  * igt@xe_evict@evict-mixed-many-threads-large:
    - shard-adlp:         NOTRUN -> [SKIP][92] ([Intel XE#1201] / [Intel XE#261]) +3 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-8/igt@xe_evict@evict-mixed-many-threads-large.html

  * igt@xe_evict@evict-threads-large:
    - shard-dg2-set2:     [PASS][93] -> [TIMEOUT][94] ([Intel XE#1473] / [Intel XE#392])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-464/igt@xe_evict@evict-threads-large.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-464/igt@xe_evict@evict-threads-large.html

  * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
    - shard-adlp:         NOTRUN -> [SKIP][95] ([Intel XE#1201] / [Intel XE#688])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
    - shard-adlp:         NOTRUN -> [SKIP][96] ([Intel XE#1201] / [Intel XE#1392]) +3 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-prefetch:
    - shard-adlp:         NOTRUN -> [SKIP][97] ([Intel XE#1201] / [Intel XE#288]) +18 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-prefetch.html

  * igt@xe_exec_fault_mode@many-userptr-rebind-prefetch:
    - shard-dg2-set2:     NOTRUN -> [SKIP][98] ([Intel XE#288])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@xe_exec_fault_mode@many-userptr-rebind-prefetch.html

  * igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][99] ([Intel XE#1201] / [Intel XE#288]) +12 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html

  * igt@xe_exec_threads@threads-bal-mixed-shared-vm-basic:
    - shard-dg2-set2:     [PASS][100] -> [INCOMPLETE][101] ([Intel XE#1169] / [Intel XE#1195] / [Intel XE#1356])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-466/igt@xe_exec_threads@threads-bal-mixed-shared-vm-basic.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-434/igt@xe_exec_threads@threads-bal-mixed-shared-vm-basic.html

  * igt@xe_mmap@vram:
    - shard-adlp:         NOTRUN -> [SKIP][102] ([Intel XE#1008] / [Intel XE#1201])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@xe_mmap@vram.html

  * igt@xe_pat@pat-index-xelpg:
    - shard-dg2-set2:     NOTRUN -> [SKIP][103] ([Intel XE#1201] / [Intel XE#979])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_pm@s2idle-basic-exec:
    - shard-adlp:         NOTRUN -> [FAIL][104] ([Intel XE#1924]) +1 other test fail
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@xe_pm@s2idle-basic-exec.html

  * igt@xe_pm@s3-basic-exec:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][105] ([Intel XE#1162] / [Intel XE#1214]) +4 other tests dmesg-warn
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@xe_pm@s3-basic-exec.html

  * igt@xe_pm@s4-basic-exec:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][106] ([Intel XE#1195] / [Intel XE#1358])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-436/igt@xe_pm@s4-basic-exec.html

  * igt@xe_pm@s4-d3cold-basic-exec:
    - shard-dg2-set2:     NOTRUN -> [SKIP][107] ([Intel XE#1201] / [Intel XE#366])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-433/igt@xe_pm@s4-d3cold-basic-exec.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-adlp:         NOTRUN -> [SKIP][108] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@xe_query@multigpu-query-invalid-cs-cycles.html

  
#### Possible fixes ####

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - {shard-lnl}:        [FAIL][109] ([Intel XE#1659]) -> [PASS][110]
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
    - shard-dg2-set2:     [DMESG-WARN][111] ([Intel XE#282]) -> [PASS][112]
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
    - shard-dg2-set2:     [DMESG-WARN][113] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][114] +3 other tests pass
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-linear-to-x:
    - {shard-lnl}:        [FAIL][115] ([Intel XE#1491]) -> [PASS][116] +1 other test pass
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-2/igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-linear-to-x.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-7/igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-linear-to-x.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y:
    - shard-adlp:         [FAIL][117] ([Intel XE#1874]) -> [PASS][118]
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y.html

  * igt@kms_plane@plane-panning-bottom-right:
    - shard-dg2-set2:     [INCOMPLETE][119] ([Intel XE#1035] / [Intel XE#1195]) -> [PASS][120]
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-436/igt@kms_plane@plane-panning-bottom-right.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-436/igt@kms_plane@plane-panning-bottom-right.html

  * igt@kms_plane@plane-panning-bottom-right@pipe-a:
    - shard-dg2-set2:     [INCOMPLETE][121] ([Intel XE#1195]) -> [PASS][122]
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-436/igt@kms_plane@plane-panning-bottom-right@pipe-a.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-436/igt@kms_plane@plane-panning-bottom-right@pipe-a.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [FAIL][123] ([Intel XE#361]) -> [PASS][124]
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html

  * igt@kms_vblank@accuracy-idle:
    - {shard-lnl}:        [FAIL][125] ([Intel XE#1523]) -> [PASS][126] +1 other test pass
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-2/igt@kms_vblank@accuracy-idle.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-7/igt@kms_vblank@accuracy-idle.html

  * igt@xe_evict@evict-beng-threads-large:
    - shard-dg2-set2:     [TIMEOUT][127] ([Intel XE#1473]) -> [PASS][128]
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-436/igt@xe_evict@evict-beng-threads-large.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-436/igt@xe_evict@evict-beng-threads-large.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race:
    - {shard-lnl}:        [ABORT][129] ([Intel XE#1761]) -> [PASS][130]
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-6/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html

  * igt@xe_exec_threads@threads-hang-userptr:
    - {shard-lnl}:        [FAIL][131] ([Intel XE#1256]) -> [PASS][132]
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-8/igt@xe_exec_threads@threads-hang-userptr.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-6/igt@xe_exec_threads@threads-hang-userptr.html

  * igt@xe_gt_freq@freq_reset_multiple:
    - {shard-lnl}:        [DMESG-WARN][133] ([Intel XE#1620]) -> [PASS][134]
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-7/igt@xe_gt_freq@freq_reset_multiple.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-4/igt@xe_gt_freq@freq_reset_multiple.html

  * igt@xe_pm@s4-d3hot-basic-exec:
    - shard-adlp:         [INCOMPLETE][135] ([Intel XE#1195] / [Intel XE#1358]) -> [PASS][136] +1 other test pass
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-1/igt@xe_pm@s4-d3hot-basic-exec.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-1/igt@xe_pm@s4-d3hot-basic-exec.html

  * igt@xe_pm@s4-vm-bind-userptr:
    - {shard-lnl}:        [ABORT][137] ([Intel XE#1794]) -> [PASS][138]
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-7/igt@xe_pm@s4-vm-bind-userptr.html
    - shard-adlp:         [DMESG-WARN][139] ([Intel XE#1214]) -> [PASS][140]
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-2/igt@xe_pm@s4-vm-bind-userptr.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@xe_pm@s4-vm-bind-userptr.html

  
#### Warnings ####

  * igt@core_setmaster@master-drop-set-user:
    - shard-dg2-set2:     [DMESG-WARN][141] ([Intel XE#1162] / [Intel XE#1214]) -> [DMESG-WARN][142] ([Intel XE#1162])
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@core_setmaster@master-drop-set-user.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@core_setmaster@master-drop-set-user.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs:
    - shard-dg2-set2:     [SKIP][143] ([Intel XE#1201] / [Intel XE#801]) -> [SKIP][144] ([Intel XE#801]) +23 other tests skip
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html

  * igt@kms_async_flips@invalid-async-flip:
    - shard-dg2-set2:     [SKIP][145] ([Intel XE#873]) -> [SKIP][146] ([Intel XE#1201] / [Intel XE#873])
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_async_flips@invalid-async-flip.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_big_fb@linear-8bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][147] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][148] ([Intel XE#316]) +2 other tests skip
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@kms_big_fb@linear-8bpp-rotate-270.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_big_fb@linear-8bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][149] ([Intel XE#316]) -> [SKIP][150] ([Intel XE#1201] / [Intel XE#316]) +2 other tests skip
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-434/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-adlp:         [DMESG-FAIL][151] ([Intel XE#324]) -> [FAIL][152] ([Intel XE#1231])
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-dg2-set2:     [SKIP][153] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][154] ([Intel XE#1124]) +4 other tests skip
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][155] ([Intel XE#1124]) -> [SKIP][156] ([Intel XE#1124] / [Intel XE#1201]) +8 other tests skip
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html

  * igt@kms_big_joiner@basic:
    - shard-dg2-set2:     [SKIP][157] ([Intel XE#1201] / [Intel XE#346]) -> [SKIP][158] ([Intel XE#346])
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@kms_big_joiner@basic.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_big_joiner@basic.html

  * igt@kms_bw@linear-tiling-2-displays-2160x1440p:
    - shard-dg2-set2:     [SKIP][159] ([Intel XE#367]) -> [SKIP][160] ([Intel XE#1201] / [Intel XE#367]) +2 other tests skip
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][161] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][162] ([Intel XE#787]) +48 other tests skip
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-dp-4:
    - shard-dg2-set2:     [SKIP][163] ([Intel XE#787]) -> [SKIP][164] ([Intel XE#1201] / [Intel XE#787]) +55 other tests skip
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-dp-4.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-dp-4.html

  * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
    - shard-dg2-set2:     [SKIP][165] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][166] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4:
    - shard-dg2-set2:     [SKIP][167] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][168] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +15 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html

  * igt@kms_cdclk@mode-transition@pipe-c-dp-4:
    - shard-dg2-set2:     [SKIP][169] ([Intel XE#314]) -> [SKIP][170] ([Intel XE#1201] / [Intel XE#314]) +3 other tests skip
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html

  * igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
    - shard-dg2-set2:     [SKIP][171] ([Intel XE#1152] / [Intel XE#1201]) -> [SKIP][172] ([Intel XE#1152]) +3 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html

  * igt@kms_chamelium_color@ctm-negative:
    - shard-dg2-set2:     [SKIP][173] ([Intel XE#306]) -> [SKIP][174] ([Intel XE#1201] / [Intel XE#306])
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_chamelium_color@ctm-negative.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_edid@hdmi-edid-read:
    - shard-dg2-set2:     [SKIP][175] ([Intel XE#373]) -> [SKIP][176] ([Intel XE#1201] / [Intel XE#373]) +5 other tests skip
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_chamelium_edid@hdmi-edid-read.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-434/igt@kms_chamelium_edid@hdmi-edid-read.html

  * igt@kms_chamelium_frames@dp-crc-multiple:
    - shard-dg2-set2:     [SKIP][177] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][178] ([Intel XE#373]) +3 other tests skip
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@kms_chamelium_frames@dp-crc-multiple.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_chamelium_frames@dp-crc-multiple.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-dg2-set2:     [SKIP][179] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][180] ([Intel XE#308])
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@kms_cursor_crc@cursor-offscreen-512x512.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-256x256@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [DMESG-WARN][181] ([Intel XE#282]) -> [DMESG-WARN][182] ([Intel XE#1214] / [Intel XE#282]) +6 other tests dmesg-warn
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-256x256@pipe-a-hdmi-a-6.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-256x256@pipe-a-hdmi-a-6.html

  * igt@kms_cursor_edge_walk@256x256-top-bottom:
    - shard-dg2-set2:     [INCOMPLETE][183] ([Intel XE#1195]) -> [DMESG-WARN][184] ([Intel XE#282]) +1 other test dmesg-warn
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@kms_cursor_edge_walk@256x256-top-bottom.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_cursor_edge_walk@256x256-top-bottom.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
    - shard-dg2-set2:     [DMESG-WARN][185] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [DMESG-WARN][186] ([Intel XE#282] / [Intel XE#910])
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html

  * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4:
    - shard-dg2-set2:     [SKIP][187] ([Intel XE#455] / [Intel XE#929]) -> [SKIP][188] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#929])
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4.html

  * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][189] ([Intel XE#1927]) -> [SKIP][190] ([Intel XE#1201] / [Intel XE#1927])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6.html

  * igt@kms_display_modes@mst-extended-mode-negative:
    - shard-dg2-set2:     [SKIP][191] ([Intel XE#307]) -> [SKIP][192] ([Intel XE#1201] / [Intel XE#307])
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_display_modes@mst-extended-mode-negative.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_display_modes@mst-extended-mode-negative.html

  * igt@kms_fbcon_fbt@psr:
    - shard-dg2-set2:     [SKIP][193] ([Intel XE#776]) -> [SKIP][194] ([Intel XE#1201] / [Intel XE#776]) +1 other test skip
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_fbcon_fbt@psr.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-434/igt@kms_fbcon_fbt@psr.html

  * igt@kms_feature_discovery@display-3x:
    - shard-dg2-set2:     [SKIP][195] ([Intel XE#703]) -> [SKIP][196] ([Intel XE#1201] / [Intel XE#703])
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_feature_discovery@display-3x.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-dg2-set2:     [SKIP][197] ([Intel XE#1137] / [Intel XE#1201]) -> [SKIP][198] ([Intel XE#1137])
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@kms_feature_discovery@dp-mst.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-adlp:         [DMESG-FAIL][199] -> [INCOMPLETE][200] ([Intel XE#1195] / [Intel XE#927])
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-9/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
    - shard-adlp:         [DMESG-FAIL][201] -> [INCOMPLETE][202] ([Intel XE#1195])
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
    - shard-dg2-set2:     [SKIP][203] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][204] ([Intel XE#455]) +4 other tests skip
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-dg2-set2:     [SKIP][205] ([Intel XE#455]) -> [SKIP][206] ([Intel XE#1201] / [Intel XE#455]) +11 other tests skip
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
    - shard-dg2-set2:     [SKIP][207] ([Intel XE#651]) -> [SKIP][208] ([Intel XE#1201] / [Intel XE#651]) +21 other tests skip
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-y:
    - shard-dg2-set2:     [SKIP][209] ([Intel XE#658]) -> [SKIP][210] ([Intel XE#1201] / [Intel XE#658])
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary:
    - shard-dg2-set2:     [SKIP][211] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][212] ([Intel XE#651]) +13 other tests skip
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render:
    - shard-dg2-set2:     [SKIP][213] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][214] ([Intel XE#653]) +13 other tests skip
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt:
    - shard-dg2-set2:     [SKIP][215] ([Intel XE#653]) -> [SKIP][216] ([Intel XE#1201] / [Intel XE#653]) +21 other tests skip
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-dg2-set2:     [SKIP][217] ([Intel XE#417]) -> [SKIP][218] ([Intel XE#1201] / [Intel XE#417])
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_hdmi_inject@inject-audio.html
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-434/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-dg2-set2:     [SKIP][219] ([Intel XE#1201] / [Intel XE#356]) -> [SKIP][220] ([Intel XE#356])
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - shard-adlp:         [INCOMPLETE][221] ([Intel XE#1195]) -> [ABORT][222] ([Intel XE#1608])
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-1/igt@kms_pipe_crc_basic@suspend-read-crc.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_pipe_crc_basic@suspend-read-crc.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
    - shard-dg2-set2:     [SKIP][223] ([Intel XE#455] / [Intel XE#498]) -> [SKIP][224] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +1 other test skip
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][225] ([Intel XE#498]) -> [SKIP][226] ([Intel XE#1201] / [Intel XE#498]) +2 other tests skip
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-dg2-set2:     [SKIP][227] ([Intel XE#870]) -> [SKIP][228] ([Intel XE#1201] / [Intel XE#870])
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_pm_backlight@fade-with-suspend.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-dg2-set2:     [SKIP][229] ([Intel XE#1129]) -> [SKIP][230] ([Intel XE#1129] / [Intel XE#1201])
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_pm_dc@dc5-psr.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-dg2-set2:     [SKIP][231] ([Intel XE#1129] / [Intel XE#1201]) -> [SKIP][232] ([Intel XE#1129])
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@kms_pm_dc@dc6-psr.html
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
    - shard-dg2-set2:     [SKIP][233] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][234] ([Intel XE#929]) +7 other tests skip
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-dg2-set2:     [SKIP][235] ([Intel XE#1122] / [Intel XE#1201]) -> [SKIP][236] ([Intel XE#1122])
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@kms_psr2_su@frontbuffer-xrgb8888.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr@fbc-psr2-suspend:
    - shard-dg2-set2:     [SKIP][237] ([Intel XE#929]) -> [SKIP][238] ([Intel XE#1201] / [Intel XE#929]) +14 other tests skip
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_psr@fbc-psr2-suspend.html
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-434/igt@kms_psr@fbc-psr2-suspend.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-dg2-set2:     [SKIP][239] ([Intel XE#1149] / [Intel XE#1201]) -> [SKIP][240] ([Intel XE#1149])
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-dg2-set2:     [SKIP][241] ([Intel XE#1127]) -> [SKIP][242] ([Intel XE#1127] / [Intel XE#1201])
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-dg2-set2:     [SKIP][243] ([Intel XE#327]) -> [SKIP][244] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-dg2-set2:     [SKIP][245] ([Intel XE#756]) -> [SKIP][246] ([Intel XE#1201] / [Intel XE#756])
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_writeback@writeback-invalid-parameters.html
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@sriov_basic@enable-vfs-autoprobe-on:
    - shard-dg2-set2:     [SKIP][247] ([Intel XE#1091] / [Intel XE#1201]) -> [SKIP][248] ([Intel XE#1091])
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@sriov_basic@enable-vfs-autoprobe-on.html
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@sriov_basic@enable-vfs-autoprobe-on.html

  * igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
    - shard-dg2-set2:     [SKIP][249] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][250] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html

  * igt@xe_copy_basic@mem-set-linear-0x3fff:
    - shard-dg2-set2:     [SKIP][251] ([Intel XE#1126] / [Intel XE#1201]) -> [SKIP][252] ([Intel XE#1126])
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0x3fff.html
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x3fff.html

  * igt@xe_create@multigpu-create-massive-size:
    - shard-dg2-set2:     [SKIP][253] ([Intel XE#944]) -> [SKIP][254] ([Intel XE#1201] / [Intel XE#944]) +2 other tests skip
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_create@multigpu-create-massive-size.html
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@xe_create@multigpu-create-massive-size.html

  * igt@xe_exec_fault_mode@many-execqueues-rebind-prefetch:
    - shard-dg2-set2:     [SKIP][255] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][256] ([Intel XE#288]) +11 other tests skip
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-rebind-prefetch.html
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-rebind-prefetch.html

  * igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm:
    - shard-dg2-set2:     [SKIP][257] ([Intel XE#288]) -> [SKIP][258] ([Intel XE#1201] / [Intel XE#288]) +18 other tests skip
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html

  * igt@xe_exec_threads@threads-hang-fd-basic:
    - shard-dg2-set2:     [DMESG-WARN][259] ([Intel XE#358]) -> [DMESG-WARN][260] ([Intel XE#1214] / [Intel XE#358])
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_exec_threads@threads-hang-fd-basic.html
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@xe_exec_threads@threads-hang-fd-basic.html

  * igt@xe_media_fill@media-fill:
    - shard-dg2-set2:     [SKIP][261] ([Intel XE#1201] / [Intel XE#560]) -> [SKIP][262] ([Intel XE#560])
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@xe_media_fill@media-fill.html
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@xe_media_fill@media-fill.html

  * igt@xe_module_load@force-load:
    - shard-dg2-set2:     [SKIP][263] ([Intel XE#378]) -> [SKIP][264] ([Intel XE#1201] / [Intel XE#378])
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_module_load@force-load.html
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@xe_module_load@force-load.html

  * igt@xe_pm@s2idle-multiple-execs:
    - shard-adlp:         [DMESG-FAIL][265] -> [INCOMPLETE][266] ([Intel XE#1195] / [Intel XE#1358] / [Intel XE#927])
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-4/igt@xe_pm@s2idle-multiple-execs.html
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-1/igt@xe_pm@s2idle-multiple-execs.html

  * igt@xe_pm@s3-vm-bind-prefetch:
    - shard-dg2-set2:     [DMESG-WARN][267] ([Intel XE#1162] / [Intel XE#1551]) -> [DMESG-WARN][268] ([Intel XE#1162] / [Intel XE#1214] / [Intel XE#1551])
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_pm@s3-vm-bind-prefetch.html
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@xe_pm@s3-vm-bind-prefetch.html

  * igt@xe_pm@s4-vm-bind-unbind-all:
    - shard-adlp:         [DMESG-WARN][269] ([Intel XE#1214]) -> [INCOMPLETE][270] ([Intel XE#1195])
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-6/igt@xe_pm@s4-vm-bind-unbind-all.html
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-9/igt@xe_pm@s4-vm-bind-unbind-all.html

  * igt@xe_pm_residency@gt-c6-freeze:
    - shard-dg2-set2:     [DMESG-WARN][271] -> [DMESG-WARN][272] ([Intel XE#1214])
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_pm_residency@gt-c6-freeze.html
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@xe_pm_residency@gt-c6-freeze.html

  * igt@xe_query@multigpu-query-hwconfig:
    - shard-dg2-set2:     [SKIP][273] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][274] ([Intel XE#944])
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@xe_query@multigpu-query-hwconfig.html
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@xe_query@multigpu-query-hwconfig.html

  * igt@xe_wedged@wedged-at-any-timeout:
    - shard-adlp:         [DMESG-WARN][275] ([Intel XE#1214] / [Intel XE#1330] / [Intel XE#1760]) -> [DMESG-WARN][276] ([Intel XE#1214] / [Intel XE#1760])
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-4/igt@xe_wedged@wedged-at-any-timeout.html
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-1/igt@xe_wedged@wedged-at-any-timeout.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008
  [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
  [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
  [Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041
  [Intel XE#1044]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1044
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
  [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
  [Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149
  [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
  [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
  [Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169
  [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
  [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
  [Intel XE#1211]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1211
  [Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214
  [Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231
  [Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
  [Intel XE#1256]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1256
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330
  [Intel XE#1339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1339
  [Intel XE#1356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1356
  [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#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
  [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#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
  [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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1446
  [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
  [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
  [Intel XE#1491]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1491
  [Intel XE#1523]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1523
  [Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
  [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
  [Intel XE#1608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1608
  [Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620
  [Intel XE#1638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1638
  [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
  [Intel XE#1761]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1761
  [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
  [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
  [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
  [Intel XE#1901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1901
  [Intel XE#1924]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1924
  [Intel XE#1927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1927
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
  [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
  [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
  [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
  [Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358
  [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
  [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#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
  [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
  [Intel XE#417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/417
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
  [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
  [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#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
  [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
  [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
  [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#801]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/801
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
  [Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910
  [Intel XE#927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/927
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979


Build changes
-------------

  * Linux: xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5 -> xe-pw-134387v1

  IGT_7877: 23b8b8a0168e1b5141e29346be1f83fdbed31037 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5: 77588a3e3e58917a9b1d992aeef6f02a6b85ded5
  xe-pw-134387v1: 134387v1

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/index.html

[-- Attachment #2: Type: text/html, Size: 99750 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH] drm/xe/bmg: Add PCI IDs
  2024-06-04 21:21   ` Lucas De Marchi
@ 2024-06-05  7:43     ` Jani Nikula
  0 siblings, 0 replies; 14+ messages in thread
From: Jani Nikula @ 2024-06-05  7:43 UTC (permalink / raw)
  To: Lucas De Marchi
  Cc: Balasubramani Vivekanandan, intel-xe, gregory.f.germano,
	Vitasta Wattal, Matt Roper

On Tue, 04 Jun 2024, Lucas De Marchi <lucas.demarchi@intel.com> wrote:
> On Tue, Jun 04, 2024 at 11:03:51AM GMT, Jani Nikula wrote:
>>On Mon, 03 Jun 2024, Balasubramani Vivekanandan <balasubramani.vivekanandan@intel.com> wrote:
>>> From: Matt Roper <matthew.d.roper@intel.com>
>>>
>>> Add the initial set of device IDs for Battlemage.
>>>
>>> Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
>>> Signed-off-by: Balasubramani Vivekanandan <balasubramani.vivekanandan@intel.com>
>>
>>Please note that since commit 54836ee194f9 ("drm/i915/display: change
>>display probe to identify GMD ID based platforms") you'll also need to
>>add the PCI IDs to i915_pciids.h and add the platform desc in
>>i915/display/intel_display_device.c for display probe.
>
> that was not the plan when we started xe_pciids.h. Now that display side
> will use pci id to find a static desc, I think there's no point in
> keeping the headers separate. Should we unify them?

Plans changed... and I agree we should unify. Though I don't think
there's any rush. The hard part was done when I switched i915 to the
same type of macros as xe uses. But do we want to have a single
include/drm/intel/pciids.h or split by some criteria?

BR,
Jani.


-- 
Jani Nikula, Intel

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: ✗ CI.FULL: failure for drm/xe/bmg: Add PCI IDs
  2024-06-05  0:26 ` ✗ CI.FULL: failure " Patchwork
@ 2024-06-12 16:57   ` Matt Roper
  0 siblings, 0 replies; 14+ messages in thread
From: Matt Roper @ 2024-06-12 16:57 UTC (permalink / raw)
  To: intel-xe; +Cc: Balasubramani Vivekanandan

On Wed, Jun 05, 2024 at 12:26:11AM -0000, Patchwork wrote:
> == Series Details ==
> 
> Series: drm/xe/bmg: Add PCI IDs
> URL   : https://patchwork.freedesktop.org/series/134387/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5_full -> xe-pw-134387v1_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with xe-pw-134387v1_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in xe-pw-134387v1_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 (3 -> 3)
> ------------------------------
> 
>   No changes in participating hosts
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in xe-pw-134387v1_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
>     - shard-adlp:         NOTRUN -> [DMESG-FAIL][1] +6 other tests dmesg-fail
>    [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
> 
>   * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-1:
>     - shard-adlp:         NOTRUN -> [FAIL][2]
>    [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-1.html
> 
>   * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-1:
>     - shard-adlp:         NOTRUN -> [ABORT][3]
>    [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-1.html
> 
>   * igt@xe_gt_freq@freq_fixed_exec:
>     - shard-dg2-set2:     [PASS][4] -> [FAIL][5]
>    [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_gt_freq@freq_fixed_exec.html
>    [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@xe_gt_freq@freq_fixed_exec.html

None of these are related to the new BMG PCI IDs.

Applied to drm-xe-next.  Thanks for the review.


Matt

> 
>   
> #### Warnings ####
> 
>   * igt@kms_flip@flip-vs-suspend:
>     - shard-adlp:         [INCOMPLETE][6] ([Intel XE#1195] / [Intel XE#927]) -> [DMESG-FAIL][7] +1 other test dmesg-fail
>    [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-9/igt@kms_flip@flip-vs-suspend.html
>    [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@kms_flip@flip-vs-suspend.html
> 
>   * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
>     - shard-adlp:         [INCOMPLETE][8] ([Intel XE#1195]) -> [DMESG-FAIL][9] +1 other test dmesg-fail
>    [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
>    [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
> 
>   * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1:
>     - shard-adlp:         [FAIL][10] -> [DMESG-FAIL][11]
>    [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-2/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1.html
>    [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1.html
> 
>   * igt@xe_pm@s3-basic-exec:
>     - shard-adlp:         [INCOMPLETE][12] ([Intel XE#1044] / [Intel XE#1195] / [Intel XE#1358]) -> [DMESG-FAIL][13]
>    [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-9/igt@xe_pm@s3-basic-exec.html
>    [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@xe_pm@s3-basic-exec.html
> 
>   * igt@xe_pm@s4-mocs:
>     - shard-dg2-set2:     [DMESG-WARN][14] ([Intel XE#1214]) -> [DMESG-WARN][15] +1 other test dmesg-warn
>    [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@xe_pm@s4-mocs.html
>    [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@xe_pm@s4-mocs.html
> 
>   
> #### Suppressed ####
> 
>   The following results come from untrusted machines, tests, or statuses.
>   They do not affect the overall result.
> 
>   * igt@kms_big_fb@4-tiled-addfb-size-overflow:
>     - {shard-lnl}:        NOTRUN -> [INCOMPLETE][16]
>    [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-6/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
> 
>   * igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1:
>     - {shard-lnl}:        NOTRUN -> [DMESG-FAIL][17] +1 other test dmesg-fail
>    [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-3/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html
> 
>   * igt@kms_fbcon_fbt@psr-suspend:
>     - {shard-lnl}:        NOTRUN -> [FAIL][18] +1 other test fail
>    [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-7/igt@kms_fbcon_fbt@psr-suspend.html
> 
>   * igt@kms_flip@flip-vs-suspend:
>     - {shard-lnl}:        [FAIL][19] ([Intel XE#1901]) -> [DMESG-FAIL][20] +1 other test dmesg-fail
>    [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-2/igt@kms_flip@flip-vs-suspend.html
>    [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-3/igt@kms_flip@flip-vs-suspend.html
> 
>   * igt@xe_ccs@block-multicopy-compressed:
>     - {shard-lnl}:        [PASS][21] -> [INCOMPLETE][22]
>    [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-4/igt@xe_ccs@block-multicopy-compressed.html
>    [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-8/igt@xe_ccs@block-multicopy-compressed.html
> 
>   * igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system:
>     - {shard-lnl}:        [FAIL][23] -> [DMESG-FAIL][24] +3 other tests dmesg-fail
>    [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-3/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system.html
>    [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-3/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system.html
> 
>   * igt@xe_ccs@suspend-resume@xmajor-compressed-compfmt0-system-system:
>     - {shard-lnl}:        [DMESG-FAIL][25] -> [FAIL][26]
>    [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-3/igt@xe_ccs@suspend-resume@xmajor-compressed-compfmt0-system-system.html
>    [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-3/igt@xe_ccs@suspend-resume@xmajor-compressed-compfmt0-system-system.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in xe-pw-134387v1_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#623])
>    [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-433/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
> 
>   * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-y:
>     - shard-adlp:         [PASS][28] -> [DMESG-WARN][29] ([Intel XE#1033] / [Intel XE#1214])
>    [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-y.html
>    [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-y.html
> 
>   * igt@kms_big_fb@4-tiled-8bpp-rotate-180:
>     - shard-adlp:         NOTRUN -> [SKIP][30] ([Intel XE#1124] / [Intel XE#1201]) +10 other tests skip
>    [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
> 
>   * igt@kms_big_fb@4-tiled-addfb:
>     - shard-adlp:         NOTRUN -> [SKIP][31] ([Intel XE#1201] / [Intel XE#619])
>    [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-1/igt@kms_big_fb@4-tiled-addfb.html
> 
>   * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][32] ([Intel XE#1201] / [Intel XE#316]) +1 other test skip
>    [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-433/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
> 
>   * igt@kms_big_fb@x-tiled-64bpp-rotate-90:
>     - shard-adlp:         NOTRUN -> [SKIP][33] ([Intel XE#1201] / [Intel XE#316]) +3 other tests skip
>    [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-1/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
> 
>   * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>     - shard-adlp:         NOTRUN -> [FAIL][34] ([Intel XE#1874]) +1 other test fail
>    [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
> 
>   * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
>     - shard-adlp:         NOTRUN -> [DMESG-FAIL][35] ([Intel XE#324]) +1 other test dmesg-fail
>    [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
> 
>   * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][36] ([Intel XE#1124] / [Intel XE#1201]) +5 other tests skip
>    [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
> 
>   * igt@kms_bw@linear-tiling-3-displays-1920x1080p:
>     - shard-adlp:         NOTRUN -> [SKIP][37] ([Intel XE#1201] / [Intel XE#367])
>    [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
> 
>   * igt@kms_bw@linear-tiling-4-displays-1920x1080p:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][38] ([Intel XE#1201] / [Intel XE#367])
>    [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
> 
>   * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
>     - shard-adlp:         NOTRUN -> [SKIP][39] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +13 other tests skip
>    [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-8/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
> 
>   * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][40] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +13 other tests skip
>    [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
> 
>   * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][41] ([Intel XE#1201] / [Intel XE#787]) +48 other tests skip
>    [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4.html
> 
>   * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1:
>     - shard-adlp:         NOTRUN -> [SKIP][42] ([Intel XE#1201] / [Intel XE#787]) +20 other tests skip
>    [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1.html
> 
>   * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][43] ([Intel XE#1201] / [Intel XE#1252])
>    [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
> 
>   * igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs:
>     - shard-adlp:         NOTRUN -> [SKIP][44] ([Intel XE#1201] / [Intel XE#1252])
>    [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-8/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
> 
>   * igt@kms_chamelium_color@ctm-0-75:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][45] ([Intel XE#1201] / [Intel XE#306])
>    [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@kms_chamelium_color@ctm-0-75.html
>     - shard-adlp:         NOTRUN -> [SKIP][46] ([Intel XE#1201] / [Intel XE#306])
>    [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@kms_chamelium_color@ctm-0-75.html
> 
>   * igt@kms_chamelium_hpd@dp-hpd-after-suspend:
>     - shard-adlp:         NOTRUN -> [SKIP][47] ([Intel XE#1201] / [Intel XE#373]) +6 other tests skip
>    [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
> 
>   * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][48] ([Intel XE#1201] / [Intel XE#373]) +4 other tests skip
>    [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
> 
>   * igt@kms_content_protection@content-type-change:
>     - shard-adlp:         NOTRUN -> [SKIP][49] ([Intel XE#1201] / [Intel XE#455]) +9 other tests skip
>    [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@kms_content_protection@content-type-change.html
> 
>   * igt@kms_content_protection@dp-mst-lic-type-0:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][50] ([Intel XE#1201] / [Intel XE#307])
>    [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@kms_content_protection@dp-mst-lic-type-0.html
> 
>   * igt@kms_cursor_crc@cursor-sliding-512x512:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][51] ([Intel XE#1201] / [Intel XE#308])
>    [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-512x512.html
> 
>   * igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-hdmi-a-6:
>     - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][52] ([Intel XE#282])
>    [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-hdmi-a-6.html
> 
>   * igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
>     - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][53] ([Intel XE#1214] / [Intel XE#282]) +3 other tests dmesg-warn
>    [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
> 
>   * igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions:
>     - shard-dg2-set2:     [PASS][54] -> [DMESG-WARN][55] ([Intel XE#1214] / [Intel XE#282]) +6 other tests dmesg-warn
>    [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-464/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html
>    [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-464/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
>     - shard-adlp:         NOTRUN -> [SKIP][56] ([Intel XE#1201] / [Intel XE#309]) +3 other tests skip
>    [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
> 
>   * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][57] ([Intel XE#1201] / [Intel XE#323])
>    [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
>     - shard-adlp:         NOTRUN -> [SKIP][58] ([Intel XE#1201] / [Intel XE#323])
>    [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
> 
>   * igt@kms_fbcon_fbt@psr:
>     - shard-adlp:         NOTRUN -> [SKIP][59] ([Intel XE#1201] / [Intel XE#776])
>    [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_fbcon_fbt@psr.html
> 
>   * igt@kms_feature_discovery@display-2x:
>     - shard-adlp:         NOTRUN -> [SKIP][60] ([Intel XE#1201] / [Intel XE#702])
>    [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_feature_discovery@display-2x.html
> 
>   * igt@kms_flip@2x-blocking-wf_vblank:
>     - shard-adlp:         NOTRUN -> [SKIP][61] ([Intel XE#1201] / [Intel XE#310]) +3 other tests skip
>    [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_flip@2x-blocking-wf_vblank.html
> 
>   * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-x:
>     - shard-adlp:         [PASS][62] -> [FAIL][63] ([Intel XE#1874]) +1 other test fail
>    [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-x.html
>    [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-x.html
> 
>   * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt:
>     - shard-adlp:         NOTRUN -> [SKIP][64] ([Intel XE#1201] / [Intel XE#651]) +9 other tests skip
>    [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html
>     - shard-dg2-set2:     NOTRUN -> [SKIP][65] ([Intel XE#651])
>    [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][66] ([Intel XE#1201] / [Intel XE#651]) +16 other tests skip
>    [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
>     - shard-adlp:         NOTRUN -> [FAIL][67] ([Intel XE#1861])
>    [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
>     - shard-adlp:         NOTRUN -> [SKIP][68] ([Intel XE#1201] / [Intel XE#653]) +10 other tests skip
>    [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][69] ([Intel XE#1201] / [Intel XE#653]) +12 other tests skip
>    [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt:
>     - shard-adlp:         NOTRUN -> [SKIP][70] ([Intel XE#1201] / [Intel XE#656]) +32 other tests skip
>    [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html
>     - shard-dg2-set2:     NOTRUN -> [SKIP][71] ([Intel XE#653])
>    [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html
> 
>   * igt@kms_getfb@getfb2-accept-ccs:
>     - shard-adlp:         NOTRUN -> [SKIP][72] ([Intel XE#1201] / [Intel XE#1339])
>    [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_getfb@getfb2-accept-ccs.html
> 
>   * igt@kms_hdmi_inject@inject-audio:
>     - shard-adlp:         NOTRUN -> [SKIP][73] ([Intel XE#1201] / [Intel XE#417])
>    [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_hdmi_inject@inject-audio.html
> 
>   * igt@kms_pm_backlight@fade:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][74] ([Intel XE#1201] / [Intel XE#870])
>    [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@kms_pm_backlight@fade.html
> 
>   * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
>     - shard-adlp:         NOTRUN -> [SKIP][75] ([Intel XE#1201] / [Intel XE#1211])
>    [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
> 
>   * igt@kms_psr2_sf@cursor-plane-update-sf:
>     - shard-adlp:         NOTRUN -> [SKIP][76] ([Intel XE#1201]) +2 other tests skip
>    [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@kms_psr2_sf@cursor-plane-update-sf.html
> 
>   * igt@kms_psr2_su@frontbuffer-xrgb8888:
>     - shard-adlp:         NOTRUN -> [SKIP][77] ([Intel XE#1122] / [Intel XE#1201])
>    [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
> 
>   * igt@kms_psr@fbc-psr2-primary-blt:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][78] ([Intel XE#1201] / [Intel XE#929]) +10 other tests skip
>    [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-436/igt@kms_psr@fbc-psr2-primary-blt.html
> 
>   * igt@kms_psr@psr-cursor-blt:
>     - shard-adlp:         NOTRUN -> [SKIP][79] ([Intel XE#1201] / [Intel XE#929]) +10 other tests skip
>    [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-8/igt@kms_psr@psr-cursor-blt.html
> 
>   * igt@kms_rotation_crc@bad-pixel-format:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][80] ([Intel XE#1201] / [Intel XE#327])
>    [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-433/igt@kms_rotation_crc@bad-pixel-format.html
> 
>   * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
>     - shard-adlp:         NOTRUN -> [SKIP][81] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
>    [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
> 
>   * igt@kms_vrr@flipline:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][82] ([Intel XE#1201] / [Intel XE#455]) +10 other tests skip
>    [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@kms_vrr@flipline.html
> 
>   * igt@kms_writeback@writeback-check-output-xrgb2101010:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][83] ([Intel XE#1201] / [Intel XE#756])
>    [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-433/igt@kms_writeback@writeback-check-output-xrgb2101010.html
>     - shard-adlp:         NOTRUN -> [SKIP][84] ([Intel XE#1201] / [Intel XE#756])
>    [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html
> 
>   * igt@xe_ccs@block-multicopy-inplace:
>     - shard-adlp:         NOTRUN -> [SKIP][85] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#488])
>    [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@xe_ccs@block-multicopy-inplace.html
> 
>   * igt@xe_compute@ccs-mode-basic:
>     - shard-adlp:         NOTRUN -> [SKIP][86] ([Intel XE#1201] / [Intel XE#1447])
>    [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-8/igt@xe_compute@ccs-mode-basic.html
> 
>   * igt@xe_copy_basic@mem-set-linear-0x369:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][87] ([Intel XE#1126] / [Intel XE#1201])
>    [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0x369.html
> 
>   * igt@xe_evict@evict-beng-mixed-threads-large:
>     - shard-dg2-set2:     [PASS][88] -> [TIMEOUT][89] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392])
>    [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@xe_evict@evict-beng-mixed-threads-large.html
>    [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-466/igt@xe_evict@evict-beng-mixed-threads-large.html
> 
>   * igt@xe_evict@evict-beng-small-cm:
>     - shard-adlp:         NOTRUN -> [SKIP][90] ([Intel XE#1201] / [Intel XE#261] / [Intel XE#688]) +2 other tests skip
>    [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@xe_evict@evict-beng-small-cm.html
> 
>   * igt@xe_evict@evict-large-multi-vm-cm:
>     - shard-dg2-set2:     NOTRUN -> [FAIL][91] ([Intel XE#1600])
>    [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@xe_evict@evict-large-multi-vm-cm.html
> 
>   * igt@xe_evict@evict-mixed-many-threads-large:
>     - shard-adlp:         NOTRUN -> [SKIP][92] ([Intel XE#1201] / [Intel XE#261]) +3 other tests skip
>    [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-8/igt@xe_evict@evict-mixed-many-threads-large.html
> 
>   * igt@xe_evict@evict-threads-large:
>     - shard-dg2-set2:     [PASS][93] -> [TIMEOUT][94] ([Intel XE#1473] / [Intel XE#392])
>    [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-464/igt@xe_evict@evict-threads-large.html
>    [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-464/igt@xe_evict@evict-threads-large.html
> 
>   * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
>     - shard-adlp:         NOTRUN -> [SKIP][95] ([Intel XE#1201] / [Intel XE#688])
>    [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
> 
>   * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
>     - shard-adlp:         NOTRUN -> [SKIP][96] ([Intel XE#1201] / [Intel XE#1392]) +3 other tests skip
>    [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
> 
>   * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-prefetch:
>     - shard-adlp:         NOTRUN -> [SKIP][97] ([Intel XE#1201] / [Intel XE#288]) +18 other tests skip
>    [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-prefetch.html
> 
>   * igt@xe_exec_fault_mode@many-userptr-rebind-prefetch:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][98] ([Intel XE#288])
>    [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@xe_exec_fault_mode@many-userptr-rebind-prefetch.html
> 
>   * igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][99] ([Intel XE#1201] / [Intel XE#288]) +12 other tests skip
>    [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
> 
>   * igt@xe_exec_threads@threads-bal-mixed-shared-vm-basic:
>     - shard-dg2-set2:     [PASS][100] -> [INCOMPLETE][101] ([Intel XE#1169] / [Intel XE#1195] / [Intel XE#1356])
>    [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-466/igt@xe_exec_threads@threads-bal-mixed-shared-vm-basic.html
>    [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-434/igt@xe_exec_threads@threads-bal-mixed-shared-vm-basic.html
> 
>   * igt@xe_mmap@vram:
>     - shard-adlp:         NOTRUN -> [SKIP][102] ([Intel XE#1008] / [Intel XE#1201])
>    [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@xe_mmap@vram.html
> 
>   * igt@xe_pat@pat-index-xelpg:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][103] ([Intel XE#1201] / [Intel XE#979])
>    [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@xe_pat@pat-index-xelpg.html
> 
>   * igt@xe_pm@s2idle-basic-exec:
>     - shard-adlp:         NOTRUN -> [FAIL][104] ([Intel XE#1924]) +1 other test fail
>    [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@xe_pm@s2idle-basic-exec.html
> 
>   * igt@xe_pm@s3-basic-exec:
>     - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][105] ([Intel XE#1162] / [Intel XE#1214]) +4 other tests dmesg-warn
>    [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-463/igt@xe_pm@s3-basic-exec.html
> 
>   * igt@xe_pm@s4-basic-exec:
>     - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][106] ([Intel XE#1195] / [Intel XE#1358])
>    [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-436/igt@xe_pm@s4-basic-exec.html
> 
>   * igt@xe_pm@s4-d3cold-basic-exec:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][107] ([Intel XE#1201] / [Intel XE#366])
>    [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-433/igt@xe_pm@s4-d3cold-basic-exec.html
> 
>   * igt@xe_query@multigpu-query-invalid-cs-cycles:
>     - shard-adlp:         NOTRUN -> [SKIP][108] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip
>    [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@xe_query@multigpu-query-invalid-cs-cycles.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>     - {shard-lnl}:        [FAIL][109] ([Intel XE#1659]) -> [PASS][110]
>    [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
>    [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
> 
>   * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
>     - shard-dg2-set2:     [DMESG-WARN][111] ([Intel XE#282]) -> [PASS][112]
>    [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
>    [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
>     - shard-dg2-set2:     [DMESG-WARN][113] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][114] +3 other tests pass
>    [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
>    [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
> 
>   * igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-linear-to-x:
>     - {shard-lnl}:        [FAIL][115] ([Intel XE#1491]) -> [PASS][116] +1 other test pass
>    [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-2/igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-linear-to-x.html
>    [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-7/igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-linear-to-x.html
> 
>   * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y:
>     - shard-adlp:         [FAIL][117] ([Intel XE#1874]) -> [PASS][118]
>    [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y.html
>    [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y.html
> 
>   * igt@kms_plane@plane-panning-bottom-right:
>     - shard-dg2-set2:     [INCOMPLETE][119] ([Intel XE#1035] / [Intel XE#1195]) -> [PASS][120]
>    [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-436/igt@kms_plane@plane-panning-bottom-right.html
>    [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-436/igt@kms_plane@plane-panning-bottom-right.html
> 
>   * igt@kms_plane@plane-panning-bottom-right@pipe-a:
>     - shard-dg2-set2:     [INCOMPLETE][121] ([Intel XE#1195]) -> [PASS][122]
>    [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-436/igt@kms_plane@plane-panning-bottom-right@pipe-a.html
>    [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-436/igt@kms_plane@plane-panning-bottom-right@pipe-a.html
> 
>   * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
>     - shard-dg2-set2:     [FAIL][123] ([Intel XE#361]) -> [PASS][124]
>    [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
>    [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
> 
>   * igt@kms_vblank@accuracy-idle:
>     - {shard-lnl}:        [FAIL][125] ([Intel XE#1523]) -> [PASS][126] +1 other test pass
>    [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-2/igt@kms_vblank@accuracy-idle.html
>    [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-7/igt@kms_vblank@accuracy-idle.html
> 
>   * igt@xe_evict@evict-beng-threads-large:
>     - shard-dg2-set2:     [TIMEOUT][127] ([Intel XE#1473]) -> [PASS][128]
>    [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-436/igt@xe_evict@evict-beng-threads-large.html
>    [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-436/igt@xe_evict@evict-beng-threads-large.html
> 
>   * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race:
>     - {shard-lnl}:        [ABORT][129] ([Intel XE#1761]) -> [PASS][130]
>    [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-6/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html
>    [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html
> 
>   * igt@xe_exec_threads@threads-hang-userptr:
>     - {shard-lnl}:        [FAIL][131] ([Intel XE#1256]) -> [PASS][132]
>    [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-8/igt@xe_exec_threads@threads-hang-userptr.html
>    [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-6/igt@xe_exec_threads@threads-hang-userptr.html
> 
>   * igt@xe_gt_freq@freq_reset_multiple:
>     - {shard-lnl}:        [DMESG-WARN][133] ([Intel XE#1620]) -> [PASS][134]
>    [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-7/igt@xe_gt_freq@freq_reset_multiple.html
>    [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-4/igt@xe_gt_freq@freq_reset_multiple.html
> 
>   * igt@xe_pm@s4-d3hot-basic-exec:
>     - shard-adlp:         [INCOMPLETE][135] ([Intel XE#1195] / [Intel XE#1358]) -> [PASS][136] +1 other test pass
>    [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-1/igt@xe_pm@s4-d3hot-basic-exec.html
>    [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-1/igt@xe_pm@s4-d3hot-basic-exec.html
> 
>   * igt@xe_pm@s4-vm-bind-userptr:
>     - {shard-lnl}:        [ABORT][137] ([Intel XE#1794]) -> [PASS][138]
>    [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
>    [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-lnl-7/igt@xe_pm@s4-vm-bind-userptr.html
>     - shard-adlp:         [DMESG-WARN][139] ([Intel XE#1214]) -> [PASS][140]
>    [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-2/igt@xe_pm@s4-vm-bind-userptr.html
>    [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-4/igt@xe_pm@s4-vm-bind-userptr.html
> 
>   
> #### Warnings ####
> 
>   * igt@core_setmaster@master-drop-set-user:
>     - shard-dg2-set2:     [DMESG-WARN][141] ([Intel XE#1162] / [Intel XE#1214]) -> [DMESG-WARN][142] ([Intel XE#1162])
>    [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@core_setmaster@master-drop-set-user.html
>    [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@core_setmaster@master-drop-set-user.html
> 
>   * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs:
>     - shard-dg2-set2:     [SKIP][143] ([Intel XE#1201] / [Intel XE#801]) -> [SKIP][144] ([Intel XE#801]) +23 other tests skip
>    [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html
>    [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html
> 
>   * igt@kms_async_flips@invalid-async-flip:
>     - shard-dg2-set2:     [SKIP][145] ([Intel XE#873]) -> [SKIP][146] ([Intel XE#1201] / [Intel XE#873])
>    [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_async_flips@invalid-async-flip.html
>    [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_async_flips@invalid-async-flip.html
> 
>   * igt@kms_big_fb@linear-8bpp-rotate-270:
>     - shard-dg2-set2:     [SKIP][147] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][148] ([Intel XE#316]) +2 other tests skip
>    [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@kms_big_fb@linear-8bpp-rotate-270.html
>    [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_big_fb@linear-8bpp-rotate-270.html
> 
>   * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
>     - shard-dg2-set2:     [SKIP][149] ([Intel XE#316]) -> [SKIP][150] ([Intel XE#1201] / [Intel XE#316]) +2 other tests skip
>    [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
>    [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-434/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
> 
>   * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
>     - shard-adlp:         [DMESG-FAIL][151] ([Intel XE#324]) -> [FAIL][152] ([Intel XE#1231])
>    [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
>    [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
> 
>   * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>     - shard-dg2-set2:     [SKIP][153] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][154] ([Intel XE#1124]) +4 other tests skip
>    [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
>    [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
> 
>   * igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
>     - shard-dg2-set2:     [SKIP][155] ([Intel XE#1124]) -> [SKIP][156] ([Intel XE#1124] / [Intel XE#1201]) +8 other tests skip
>    [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
>    [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
> 
>   * igt@kms_big_joiner@basic:
>     - shard-dg2-set2:     [SKIP][157] ([Intel XE#1201] / [Intel XE#346]) -> [SKIP][158] ([Intel XE#346])
>    [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@kms_big_joiner@basic.html
>    [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_big_joiner@basic.html
> 
>   * igt@kms_bw@linear-tiling-2-displays-2160x1440p:
>     - shard-dg2-set2:     [SKIP][159] ([Intel XE#367]) -> [SKIP][160] ([Intel XE#1201] / [Intel XE#367]) +2 other tests skip
>    [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
>    [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
> 
>   * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
>     - shard-dg2-set2:     [SKIP][161] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][162] ([Intel XE#787]) +48 other tests skip
>    [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
>    [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
> 
>   * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-dp-4:
>     - shard-dg2-set2:     [SKIP][163] ([Intel XE#787]) -> [SKIP][164] ([Intel XE#1201] / [Intel XE#787]) +55 other tests skip
>    [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-dp-4.html
>    [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-dp-4.html
> 
>   * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
>     - shard-dg2-set2:     [SKIP][165] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][166] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip
>    [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
>    [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
> 
>   * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4:
>     - shard-dg2-set2:     [SKIP][167] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][168] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +15 other tests skip
>    [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html
>    [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html
> 
>   * igt@kms_cdclk@mode-transition@pipe-c-dp-4:
>     - shard-dg2-set2:     [SKIP][169] ([Intel XE#314]) -> [SKIP][170] ([Intel XE#1201] / [Intel XE#314]) +3 other tests skip
>    [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html
>    [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html
> 
>   * igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
>     - shard-dg2-set2:     [SKIP][171] ([Intel XE#1152] / [Intel XE#1201]) -> [SKIP][172] ([Intel XE#1152]) +3 other tests skip
>    [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
>    [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
> 
>   * igt@kms_chamelium_color@ctm-negative:
>     - shard-dg2-set2:     [SKIP][173] ([Intel XE#306]) -> [SKIP][174] ([Intel XE#1201] / [Intel XE#306])
>    [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_chamelium_color@ctm-negative.html
>    [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_chamelium_color@ctm-negative.html
> 
>   * igt@kms_chamelium_edid@hdmi-edid-read:
>     - shard-dg2-set2:     [SKIP][175] ([Intel XE#373]) -> [SKIP][176] ([Intel XE#1201] / [Intel XE#373]) +5 other tests skip
>    [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_chamelium_edid@hdmi-edid-read.html
>    [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-434/igt@kms_chamelium_edid@hdmi-edid-read.html
> 
>   * igt@kms_chamelium_frames@dp-crc-multiple:
>     - shard-dg2-set2:     [SKIP][177] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][178] ([Intel XE#373]) +3 other tests skip
>    [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@kms_chamelium_frames@dp-crc-multiple.html
>    [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_chamelium_frames@dp-crc-multiple.html
> 
>   * igt@kms_cursor_crc@cursor-offscreen-512x512:
>     - shard-dg2-set2:     [SKIP][179] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][180] ([Intel XE#308])
>    [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@kms_cursor_crc@cursor-offscreen-512x512.html
>    [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x512.html
> 
>   * igt@kms_cursor_crc@cursor-rapid-movement-256x256@pipe-a-hdmi-a-6:
>     - shard-dg2-set2:     [DMESG-WARN][181] ([Intel XE#282]) -> [DMESG-WARN][182] ([Intel XE#1214] / [Intel XE#282]) +6 other tests dmesg-warn
>    [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-256x256@pipe-a-hdmi-a-6.html
>    [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-256x256@pipe-a-hdmi-a-6.html
> 
>   * igt@kms_cursor_edge_walk@256x256-top-bottom:
>     - shard-dg2-set2:     [INCOMPLETE][183] ([Intel XE#1195]) -> [DMESG-WARN][184] ([Intel XE#282]) +1 other test dmesg-warn
>    [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@kms_cursor_edge_walk@256x256-top-bottom.html
>    [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_cursor_edge_walk@256x256-top-bottom.html
> 
>   * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
>     - shard-dg2-set2:     [DMESG-WARN][185] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [DMESG-WARN][186] ([Intel XE#282] / [Intel XE#910])
>    [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
>    [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
> 
>   * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4:
>     - shard-dg2-set2:     [SKIP][187] ([Intel XE#455] / [Intel XE#929]) -> [SKIP][188] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#929])
>    [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4.html
>    [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4.html
> 
>   * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6:
>     - shard-dg2-set2:     [SKIP][189] ([Intel XE#1927]) -> [SKIP][190] ([Intel XE#1201] / [Intel XE#1927])
>    [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6.html
>    [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6.html
> 
>   * igt@kms_display_modes@mst-extended-mode-negative:
>     - shard-dg2-set2:     [SKIP][191] ([Intel XE#307]) -> [SKIP][192] ([Intel XE#1201] / [Intel XE#307])
>    [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_display_modes@mst-extended-mode-negative.html
>    [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_display_modes@mst-extended-mode-negative.html
> 
>   * igt@kms_fbcon_fbt@psr:
>     - shard-dg2-set2:     [SKIP][193] ([Intel XE#776]) -> [SKIP][194] ([Intel XE#1201] / [Intel XE#776]) +1 other test skip
>    [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_fbcon_fbt@psr.html
>    [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-434/igt@kms_fbcon_fbt@psr.html
> 
>   * igt@kms_feature_discovery@display-3x:
>     - shard-dg2-set2:     [SKIP][195] ([Intel XE#703]) -> [SKIP][196] ([Intel XE#1201] / [Intel XE#703])
>    [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_feature_discovery@display-3x.html
>    [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_feature_discovery@display-3x.html
> 
>   * igt@kms_feature_discovery@dp-mst:
>     - shard-dg2-set2:     [SKIP][197] ([Intel XE#1137] / [Intel XE#1201]) -> [SKIP][198] ([Intel XE#1137])
>    [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@kms_feature_discovery@dp-mst.html
>    [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_feature_discovery@dp-mst.html
> 
>   * igt@kms_flip@flip-vs-suspend-interruptible:
>     - shard-adlp:         [DMESG-FAIL][199] -> [INCOMPLETE][200] ([Intel XE#1195] / [Intel XE#927])
>    [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible.html
>    [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-9/igt@kms_flip@flip-vs-suspend-interruptible.html
> 
>   * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
>     - shard-adlp:         [DMESG-FAIL][201] -> [INCOMPLETE][202] ([Intel XE#1195])
>    [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
>    [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
>     - shard-dg2-set2:     [SKIP][203] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][204] ([Intel XE#455]) +4 other tests skip
>    [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
>    [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
>     - shard-dg2-set2:     [SKIP][205] ([Intel XE#455]) -> [SKIP][206] ([Intel XE#1201] / [Intel XE#455]) +11 other tests skip
>    [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
>    [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
> 
>   * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
>     - shard-dg2-set2:     [SKIP][207] ([Intel XE#651]) -> [SKIP][208] ([Intel XE#1201] / [Intel XE#651]) +21 other tests skip
>    [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
>    [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-tiling-y:
>     - shard-dg2-set2:     [SKIP][209] ([Intel XE#658]) -> [SKIP][210] ([Intel XE#1201] / [Intel XE#658])
>    [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
>    [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
> 
>   * igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary:
>     - shard-dg2-set2:     [SKIP][211] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][212] ([Intel XE#651]) +13 other tests skip
>    [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html
>    [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render:
>     - shard-dg2-set2:     [SKIP][213] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][214] ([Intel XE#653]) +13 other tests skip
>    [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
>    [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt:
>     - shard-dg2-set2:     [SKIP][215] ([Intel XE#653]) -> [SKIP][216] ([Intel XE#1201] / [Intel XE#653]) +21 other tests skip
>    [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html
>    [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html
> 
>   * igt@kms_hdmi_inject@inject-audio:
>     - shard-dg2-set2:     [SKIP][217] ([Intel XE#417]) -> [SKIP][218] ([Intel XE#1201] / [Intel XE#417])
>    [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_hdmi_inject@inject-audio.html
>    [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-434/igt@kms_hdmi_inject@inject-audio.html
> 
>   * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
>     - shard-dg2-set2:     [SKIP][219] ([Intel XE#1201] / [Intel XE#356]) -> [SKIP][220] ([Intel XE#356])
>    [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
>    [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
> 
>   * igt@kms_pipe_crc_basic@suspend-read-crc:
>     - shard-adlp:         [INCOMPLETE][221] ([Intel XE#1195]) -> [ABORT][222] ([Intel XE#1608])
>    [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-1/igt@kms_pipe_crc_basic@suspend-read-crc.html
>    [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-2/igt@kms_pipe_crc_basic@suspend-read-crc.html
> 
>   * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
>     - shard-dg2-set2:     [SKIP][223] ([Intel XE#455] / [Intel XE#498]) -> [SKIP][224] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +1 other test skip
>    [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
>    [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
> 
>   * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6:
>     - shard-dg2-set2:     [SKIP][225] ([Intel XE#498]) -> [SKIP][226] ([Intel XE#1201] / [Intel XE#498]) +2 other tests skip
>    [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6.html
>    [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6.html
> 
>   * igt@kms_pm_backlight@fade-with-suspend:
>     - shard-dg2-set2:     [SKIP][227] ([Intel XE#870]) -> [SKIP][228] ([Intel XE#1201] / [Intel XE#870])
>    [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_pm_backlight@fade-with-suspend.html
>    [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_pm_backlight@fade-with-suspend.html
> 
>   * igt@kms_pm_dc@dc5-psr:
>     - shard-dg2-set2:     [SKIP][229] ([Intel XE#1129]) -> [SKIP][230] ([Intel XE#1129] / [Intel XE#1201])
>    [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_pm_dc@dc5-psr.html
>    [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_pm_dc@dc5-psr.html
> 
>   * igt@kms_pm_dc@dc6-psr:
>     - shard-dg2-set2:     [SKIP][231] ([Intel XE#1129] / [Intel XE#1201]) -> [SKIP][232] ([Intel XE#1129])
>    [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@kms_pm_dc@dc6-psr.html
>    [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_pm_dc@dc6-psr.html
> 
>   * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
>     - shard-dg2-set2:     [SKIP][233] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][234] ([Intel XE#929]) +7 other tests skip
>    [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
>    [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
> 
>   * igt@kms_psr2_su@frontbuffer-xrgb8888:
>     - shard-dg2-set2:     [SKIP][235] ([Intel XE#1122] / [Intel XE#1201]) -> [SKIP][236] ([Intel XE#1122])
>    [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@kms_psr2_su@frontbuffer-xrgb8888.html
>    [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_psr2_su@frontbuffer-xrgb8888.html
> 
>   * igt@kms_psr@fbc-psr2-suspend:
>     - shard-dg2-set2:     [SKIP][237] ([Intel XE#929]) -> [SKIP][238] ([Intel XE#1201] / [Intel XE#929]) +14 other tests skip
>    [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_psr@fbc-psr2-suspend.html
>    [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-434/igt@kms_psr@fbc-psr2-suspend.html
> 
>   * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
>     - shard-dg2-set2:     [SKIP][239] ([Intel XE#1149] / [Intel XE#1201]) -> [SKIP][240] ([Intel XE#1149])
>    [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
>    [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
> 
>   * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
>     - shard-dg2-set2:     [SKIP][241] ([Intel XE#1127]) -> [SKIP][242] ([Intel XE#1127] / [Intel XE#1201])
>    [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
>    [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
> 
>   * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
>     - shard-dg2-set2:     [SKIP][243] ([Intel XE#327]) -> [SKIP][244] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
>    [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
>    [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
> 
>   * igt@kms_writeback@writeback-invalid-parameters:
>     - shard-dg2-set2:     [SKIP][245] ([Intel XE#756]) -> [SKIP][246] ([Intel XE#1201] / [Intel XE#756])
>    [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@kms_writeback@writeback-invalid-parameters.html
>    [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@kms_writeback@writeback-invalid-parameters.html
> 
>   * igt@sriov_basic@enable-vfs-autoprobe-on:
>     - shard-dg2-set2:     [SKIP][247] ([Intel XE#1091] / [Intel XE#1201]) -> [SKIP][248] ([Intel XE#1091])
>    [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@sriov_basic@enable-vfs-autoprobe-on.html
>    [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@sriov_basic@enable-vfs-autoprobe-on.html
> 
>   * igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
>     - shard-dg2-set2:     [SKIP][249] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][250] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip
>    [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
>    [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
> 
>   * igt@xe_copy_basic@mem-set-linear-0x3fff:
>     - shard-dg2-set2:     [SKIP][251] ([Intel XE#1126] / [Intel XE#1201]) -> [SKIP][252] ([Intel XE#1126])
>    [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0x3fff.html
>    [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x3fff.html
> 
>   * igt@xe_create@multigpu-create-massive-size:
>     - shard-dg2-set2:     [SKIP][253] ([Intel XE#944]) -> [SKIP][254] ([Intel XE#1201] / [Intel XE#944]) +2 other tests skip
>    [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_create@multigpu-create-massive-size.html
>    [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@xe_create@multigpu-create-massive-size.html
> 
>   * igt@xe_exec_fault_mode@many-execqueues-rebind-prefetch:
>     - shard-dg2-set2:     [SKIP][255] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][256] ([Intel XE#288]) +11 other tests skip
>    [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-rebind-prefetch.html
>    [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-rebind-prefetch.html
> 
>   * igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm:
>     - shard-dg2-set2:     [SKIP][257] ([Intel XE#288]) -> [SKIP][258] ([Intel XE#1201] / [Intel XE#288]) +18 other tests skip
>    [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html
>    [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html
> 
>   * igt@xe_exec_threads@threads-hang-fd-basic:
>     - shard-dg2-set2:     [DMESG-WARN][259] ([Intel XE#358]) -> [DMESG-WARN][260] ([Intel XE#1214] / [Intel XE#358])
>    [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_exec_threads@threads-hang-fd-basic.html
>    [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@xe_exec_threads@threads-hang-fd-basic.html
> 
>   * igt@xe_media_fill@media-fill:
>     - shard-dg2-set2:     [SKIP][261] ([Intel XE#1201] / [Intel XE#560]) -> [SKIP][262] ([Intel XE#560])
>    [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-434/igt@xe_media_fill@media-fill.html
>    [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@xe_media_fill@media-fill.html
> 
>   * igt@xe_module_load@force-load:
>     - shard-dg2-set2:     [SKIP][263] ([Intel XE#378]) -> [SKIP][264] ([Intel XE#1201] / [Intel XE#378])
>    [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_module_load@force-load.html
>    [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@xe_module_load@force-load.html
> 
>   * igt@xe_pm@s2idle-multiple-execs:
>     - shard-adlp:         [DMESG-FAIL][265] -> [INCOMPLETE][266] ([Intel XE#1195] / [Intel XE#1358] / [Intel XE#927])
>    [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-4/igt@xe_pm@s2idle-multiple-execs.html
>    [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-1/igt@xe_pm@s2idle-multiple-execs.html
> 
>   * igt@xe_pm@s3-vm-bind-prefetch:
>     - shard-dg2-set2:     [DMESG-WARN][267] ([Intel XE#1162] / [Intel XE#1551]) -> [DMESG-WARN][268] ([Intel XE#1162] / [Intel XE#1214] / [Intel XE#1551])
>    [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_pm@s3-vm-bind-prefetch.html
>    [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@xe_pm@s3-vm-bind-prefetch.html
> 
>   * igt@xe_pm@s4-vm-bind-unbind-all:
>     - shard-adlp:         [DMESG-WARN][269] ([Intel XE#1214]) -> [INCOMPLETE][270] ([Intel XE#1195])
>    [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-6/igt@xe_pm@s4-vm-bind-unbind-all.html
>    [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-9/igt@xe_pm@s4-vm-bind-unbind-all.html
> 
>   * igt@xe_pm_residency@gt-c6-freeze:
>     - shard-dg2-set2:     [DMESG-WARN][271] -> [DMESG-WARN][272] ([Intel XE#1214])
>    [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-432/igt@xe_pm_residency@gt-c6-freeze.html
>    [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-435/igt@xe_pm_residency@gt-c6-freeze.html
> 
>   * igt@xe_query@multigpu-query-hwconfig:
>     - shard-dg2-set2:     [SKIP][273] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][274] ([Intel XE#944])
>    [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-dg2-435/igt@xe_query@multigpu-query-hwconfig.html
>    [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-dg2-432/igt@xe_query@multigpu-query-hwconfig.html
> 
>   * igt@xe_wedged@wedged-at-any-timeout:
>     - shard-adlp:         [DMESG-WARN][275] ([Intel XE#1214] / [Intel XE#1330] / [Intel XE#1760]) -> [DMESG-WARN][276] ([Intel XE#1214] / [Intel XE#1760])
>    [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5/shard-adlp-4/igt@xe_wedged@wedged-at-any-timeout.html
>    [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/shard-adlp-1/igt@xe_wedged@wedged-at-any-timeout.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008
>   [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
>   [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
>   [Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041
>   [Intel XE#1044]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1044
>   [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
>   [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
>   [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
>   [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
>   [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
>   [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
>   [Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
>   [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
>   [Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149
>   [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
>   [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
>   [Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169
>   [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
>   [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
>   [Intel XE#1211]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1211
>   [Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214
>   [Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231
>   [Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
>   [Intel XE#1256]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1256
>   [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
>   [Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330
>   [Intel XE#1339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1339
>   [Intel XE#1356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1356
>   [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#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
>   [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#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
>   [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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
>   [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
>   [Intel XE#1446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1446
>   [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
>   [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
>   [Intel XE#1491]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1491
>   [Intel XE#1523]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1523
>   [Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
>   [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
>   [Intel XE#1608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1608
>   [Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620
>   [Intel XE#1638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1638
>   [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
>   [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
>   [Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
>   [Intel XE#1761]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1761
>   [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
>   [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
>   [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
>   [Intel XE#1901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1901
>   [Intel XE#1924]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1924
>   [Intel XE#1927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1927
>   [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
>   [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
>   [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
>   [Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
>   [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
>   [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
>   [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
>   [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
>   [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
>   [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
>   [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
>   [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
>   [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
>   [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
>   [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
>   [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
>   [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
>   [Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358
>   [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
>   [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#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
>   [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
>   [Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
>   [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
>   [Intel XE#417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/417
>   [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
>   [Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
>   [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
>   [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#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
>   [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
>   [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
>   [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
>   [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
>   [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
>   [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
>   [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
>   [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
>   [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
>   [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
>   [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
>   [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
>   [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
>   [Intel XE#801]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/801
>   [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
>   [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
>   [Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910
>   [Intel XE#927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/927
>   [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
>   [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
>   [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
> 
> 
> Build changes
> -------------
> 
>   * Linux: xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5 -> xe-pw-134387v1
> 
>   IGT_7877: 23b8b8a0168e1b5141e29346be1f83fdbed31037 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>   xe-1398-77588a3e3e58917a9b1d992aeef6f02a6b85ded5: 77588a3e3e58917a9b1d992aeef6f02a6b85ded5
>   xe-pw-134387v1: 134387v1
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134387v1/index.html

-- 
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2024-06-12 16:58 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-03 14:54 [PATCH] drm/xe/bmg: Add PCI IDs Balasubramani Vivekanandan
2024-06-03 16:08 ` Gustavo Sousa
2024-06-04  8:03 ` Jani Nikula
2024-06-04 21:21   ` Lucas De Marchi
2024-06-05  7:43     ` Jani Nikula
2024-06-04 18:35 ` ✓ CI.Patch_applied: success for " Patchwork
2024-06-04 18:36 ` ✗ CI.checkpatch: warning " Patchwork
2024-06-04 18:36 ` ✓ CI.KUnit: success " Patchwork
2024-06-04 18:48 ` ✓ CI.Build: " Patchwork
2024-06-04 18:48 ` ✗ CI.Hooks: failure " Patchwork
2024-06-04 18:50 ` ✓ CI.checksparse: success " Patchwork
2024-06-04 19:33 ` ✓ CI.BAT: " Patchwork
2024-06-05  0:26 ` ✗ CI.FULL: failure " Patchwork
2024-06-12 16:57   ` Matt Roper

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox