* [PATCH v2 0/2] Check if CSME is available before initializing PXP
@ 2025-09-11 17:50 Daniele Ceraolo Spurio
2025-09-11 17:50 ` [PATCH v2 1/2] mei: me: Add exported function to get the PCI ID list Daniele Ceraolo Spurio
` (3 more replies)
0 siblings, 4 replies; 7+ messages in thread
From: Daniele Ceraolo Spurio @ 2025-09-11 17:50 UTC (permalink / raw)
To: intel-gfx
Cc: Greg Kroah-Hartman, Daniele Ceraolo Spurio, Rodrigo Vivi,
Alexander Usyskin, Alan Previn
To support PXP, i915 needs to interface with CSME, which is done via the
component interface. However, BIOS/Coreboot can hide the CSME device,
which leads to i915 timing out waiting for the component to bind. While
PXP failing to initialize is a supported scenario (and there are several
possible ways for it to happen), the particular case where the CSME is
not available at all is something we can easily detect in the driver
and therefore avoid entirely, which means userspace doesn't need to
handle the error in this case.
Given that mei_me owns the CSME and already has a list of possible PCI
IDs for the device, an exported function has been added to allow the
i915 driver to fetch it to perform the device availability check.
The plan is to merge both patches via the drm-intel tree.
v2: move the pci_dev_present check to i915, so that mei doesn't need to
care about locking. Also clarify why i915 does not require any locking.
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Alexander Usyskin <alexander.usyskin@intel.com>
Cc: Alan Previn <alan.previn.teres.alexis@intel.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Daniele Ceraolo Spurio (2):
mei: me: Add exported function to get the PCI ID list
drm/i915/pxp: Do not support PXP if CSME is not available
drivers/gpu/drm/i915/pxp/intel_pxp.c | 23 +++++++++++++++++++++++
drivers/misc/mei/pci-me.c | 22 ++++++++++++++++++++++
include/linux/mei_me.h | 20 ++++++++++++++++++++
3 files changed, 65 insertions(+)
create mode 100644 include/linux/mei_me.h
--
2.43.0
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v2 1/2] mei: me: Add exported function to get the PCI ID list
2025-09-11 17:50 [PATCH v2 0/2] Check if CSME is available before initializing PXP Daniele Ceraolo Spurio
@ 2025-09-11 17:50 ` Daniele Ceraolo Spurio
2025-09-12 13:44 ` Greg Kroah-Hartman
2025-09-11 17:50 ` [PATCH v2 2/2] drm/i915/pxp: Do not support PXP if CSME is not available Daniele Ceraolo Spurio
` (2 subsequent siblings)
3 siblings, 1 reply; 7+ messages in thread
From: Daniele Ceraolo Spurio @ 2025-09-11 17:50 UTC (permalink / raw)
To: intel-gfx; +Cc: Greg Kroah-Hartman, Daniele Ceraolo Spurio, Alexander Usyskin
The intel GFX drivers (i915/xe) interface with the ME device for some of
their features (e.g. PXP, HDCP) via the component interface. Given that
the ME device can be hidden by BIOS/Coreboot, the GFX drivers need a
way to check if the device is available before attempting to bind the
component, otherwise they'll go ahead and initialize features that will
never work.
The simplest way to check if the device is available is to check the
available devices against the PCI ID list of the mei_me driver. To avoid
duplication, this patch adds an exported function that the GFX driver
can call to obtain the list. Locking around the checks, if required,
is left to the caller.
Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Cc: Alexander Usyskin <alexander.usyskin@intel.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/misc/mei/pci-me.c | 22 ++++++++++++++++++++++
include/linux/mei_me.h | 20 ++++++++++++++++++++
2 files changed, 42 insertions(+)
create mode 100644 include/linux/mei_me.h
diff --git a/drivers/misc/mei/pci-me.c b/drivers/misc/mei/pci-me.c
index 3f9c60b579ae..147e79b4ae1f 100644
--- a/drivers/misc/mei/pci-me.c
+++ b/drivers/misc/mei/pci-me.c
@@ -18,6 +18,7 @@
#include <linux/pm_runtime.h>
#include <linux/mei.h>
+#include <linux/mei_me.h>
#include "mei_dev.h"
#include "client.h"
@@ -133,6 +134,27 @@ static const struct pci_device_id mei_me_pci_tbl[] = {
MODULE_DEVICE_TABLE(pci, mei_me_pci_tbl);
+/**
+ * mei_me_get_device_id_table - get the list of ME pci device IDs
+ *
+ * Other drivers (e.g., i915, xe) interface with the ME device for some of their
+ * features (e.g., PXP, HDCP). However, the ME device can be unplugged via the
+ * pci subsystem or hidden by BIOS/coreboot, so those drivers might want to
+ * check if the device is available before initializing those features. This
+ * function offers a way for those drivers to get the list of ME device IDs,
+ * so they can check if one of them is available before attempting to
+ * interface with it. Locking around the availability check, if required,
+ * is left to the caller.
+ *
+ * Return: An array of struct pci_device_id entries containing the IDs of
+ * the ME devices.
+ */
+const struct pci_device_id *mei_me_get_device_id_table(void)
+{
+ return mei_me_pci_tbl;
+}
+EXPORT_SYMBOL_GPL(mei_me_get_device_id_table);
+
#ifdef CONFIG_PM
static inline void mei_me_set_pm_domain(struct mei_device *dev);
static inline void mei_me_unset_pm_domain(struct mei_device *dev);
diff --git a/include/linux/mei_me.h b/include/linux/mei_me.h
new file mode 100644
index 000000000000..f85867030df8
--- /dev/null
+++ b/include/linux/mei_me.h
@@ -0,0 +1,20 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+/*
+ * Copyright (c) 2025, Intel Corporation. All rights reserved.
+ */
+
+#ifndef _LINUX_MEI_ME_H
+#define _LINUX_MEI_ME_H
+
+#include <linux/types.h>
+
+#if IS_ENABLED(CONFIG_INTEL_MEI_ME)
+const struct pci_device_id *mei_me_get_device_id_table(void);
+#else
+static inline const struct pci_device_id *mei_me_get_device_id_table(void)
+{
+ return NULL;
+}
+#endif
+
+#endif /* _LINUX_MEI_ME_H */
--
2.43.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH v2 2/2] drm/i915/pxp: Do not support PXP if CSME is not available
2025-09-11 17:50 [PATCH v2 0/2] Check if CSME is available before initializing PXP Daniele Ceraolo Spurio
2025-09-11 17:50 ` [PATCH v2 1/2] mei: me: Add exported function to get the PCI ID list Daniele Ceraolo Spurio
@ 2025-09-11 17:50 ` Daniele Ceraolo Spurio
2025-09-11 20:39 ` ✓ i915.CI.BAT: success for Check if CSME is available before initializing PXP (rev2) Patchwork
2025-09-12 12:43 ` ✗ i915.CI.Full: failure " Patchwork
3 siblings, 0 replies; 7+ messages in thread
From: Daniele Ceraolo Spurio @ 2025-09-11 17:50 UTC (permalink / raw)
To: intel-gfx
Cc: Greg Kroah-Hartman, Daniele Ceraolo Spurio, Valentine Burley,
Rodrigo Vivi, Alexander Usyskin, Alan Previn
The PXP flow requires us to communicate with CSME, which we do via a
mei component. Since the mei component binding is async and can take
a bit to complete, we don't wait for it during i915 load. If userspace
queries the state before the async binding is complete, we return an
"init in progress" state, with the expectation that it will eventually
transition to "init complete" if the CSME device is functional.
Mesa CI is flashing a custom coreboot on their Chromebooks that hides
the CSME device, which means that we never transition to the "init
complete" state. While from an interface POV it is not incorrect to not
end up in "init complete" if the CSME is missing, we can mitigate the
impact of this by simply checking if the CSME device is available at
all before attempting to initialize PXP.
v2: rebase on updated mei patch.
Reported-by: Valentine Burley <valentine.burley@collabora.com>
Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14516
Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Alexander Usyskin <alexander.usyskin@intel.com>
Cc: Alan Previn <alan.previn.teres.alexis@intel.com>
---
drivers/gpu/drm/i915/pxp/intel_pxp.c | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/drivers/gpu/drm/i915/pxp/intel_pxp.c b/drivers/gpu/drm/i915/pxp/intel_pxp.c
index c077a1c464cf..29825bff854a 100644
--- a/drivers/gpu/drm/i915/pxp/intel_pxp.c
+++ b/drivers/gpu/drm/i915/pxp/intel_pxp.c
@@ -2,6 +2,7 @@
/*
* Copyright(c) 2020 Intel Corporation.
*/
+#include <linux/mei_me.h>
#include <linux/workqueue.h>
#include "gem/i915_gem_context.h"
@@ -195,6 +196,13 @@ static struct intel_gt *find_gt_for_required_protected_content(struct drm_i915_p
return NULL;
}
+static bool mei_device_available(void)
+{
+ const struct pci_device_id *csme_ids = mei_me_get_device_id_table();
+
+ return csme_ids && pci_dev_present(csme_ids);
+}
+
int intel_pxp_init(struct drm_i915_private *i915)
{
struct intel_gt *gt;
@@ -203,6 +211,21 @@ int intel_pxp_init(struct drm_i915_private *i915)
if (intel_gt_is_wedged(to_gt(i915)))
return -ENOTCONN;
+ /*
+ * iGPUs require CSME to be available to use PXP. Note that the
+ * availability of CSME might change after we check, but we only support
+ * PXP in the case where the CSME device is available from boot and
+ * stays that way. If CSME was not initially available and appears later
+ * we'll just continue without PXP, while if it was available and is
+ * then removed we'll catch it via the component unbind callback and
+ * handle it gracefully. Therefore, we don't require any locking around
+ * the state checking.
+ */
+ if (!IS_DGFX(i915) && !mei_device_available()) {
+ drm_dbg(&i915->drm, "skipping PXP init due to missing ME device\n");
+ return -ENODEV;
+ }
+
/*
* NOTE: Get the ctrl_gt before checking intel_pxp_is_supported since
* we still need it if PXP's backend tee transport is needed.
--
2.43.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ i915.CI.BAT: success for Check if CSME is available before initializing PXP (rev2)
2025-09-11 17:50 [PATCH v2 0/2] Check if CSME is available before initializing PXP Daniele Ceraolo Spurio
2025-09-11 17:50 ` [PATCH v2 1/2] mei: me: Add exported function to get the PCI ID list Daniele Ceraolo Spurio
2025-09-11 17:50 ` [PATCH v2 2/2] drm/i915/pxp: Do not support PXP if CSME is not available Daniele Ceraolo Spurio
@ 2025-09-11 20:39 ` Patchwork
2025-09-12 12:43 ` ✗ i915.CI.Full: failure " Patchwork
3 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-09-11 20:39 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 7339 bytes --]
== Series Details ==
Series: Check if CSME is available before initializing PXP (rev2)
URL : https://patchwork.freedesktop.org/series/151677/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_17178 -> Patchwork_151677v2
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/index.html
Participating hosts (43 -> 41)
------------------------------
Missing (2): fi-snb-2520m bat-adls-6
Known issues
------------
Here are the changes found in Patchwork_151677v2 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- bat-apl-1: [PASS][1] -> [ABORT][2] ([i915#12904]) +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/bat-apl-1/igt@dmabuf@all-tests.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/bat-apl-1/igt@dmabuf@all-tests.html
* igt@dmabuf@all-tests@dma_fence_chain:
- fi-bsw-nick: [PASS][3] -> [ABORT][4] ([i915#12904]) +1 other test abort
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
* igt@i915_module_load@load:
- bat-mtlp-9: [PASS][5] -> [DMESG-WARN][6] ([i915#13494])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/bat-mtlp-9/igt@i915_module_load@load.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/bat-mtlp-9/igt@i915_module_load@load.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/bat-arls-5/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/bat-arls-5/igt@i915_selftest@live@workarounds.html
- bat-dg2-14: [PASS][9] -> [DMESG-FAIL][10] ([i915#12061]) +1 other test dmesg-fail
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/bat-dg2-14/igt@i915_selftest@live@workarounds.html
- bat-mtlp-9: [PASS][11] -> [DMESG-FAIL][12] ([i915#12061]) +1 other test dmesg-fail
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [PASS][13] -> [DMESG-FAIL][14] ([i915#12061]) +1 other test dmesg-fail
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/bat-arls-6/igt@i915_selftest@live@workarounds.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/bat-arls-6/igt@i915_selftest@live@workarounds.html
* igt@kms_hdmi_inject@inject-audio:
- fi-tgl-1115g4: [PASS][15] -> [SKIP][16] ([i915#13030])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- bat-rpls-4: [DMESG-WARN][17] ([i915#13400]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html
* igt@fbdev@info:
- fi-hsw-4770: [SKIP][19] ([i915#1849] / [i915#2582]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/fi-hsw-4770/igt@fbdev@info.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/fi-hsw-4770/igt@fbdev@info.html
* igt@fbdev@nullptr:
- fi-hsw-4770: [SKIP][21] ([i915#2582]) -> [PASS][22] +3 other tests pass
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/fi-hsw-4770/igt@fbdev@nullptr.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/fi-hsw-4770/igt@fbdev@nullptr.html
* igt@gem_softpin@safe-alignment:
- fi-hsw-4770: [FAIL][23] ([i915#14853]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/fi-hsw-4770/igt@gem_softpin@safe-alignment.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/fi-hsw-4770/igt@gem_softpin@safe-alignment.html
* igt@i915_selftest@live:
- bat-mtlp-8: [DMESG-FAIL][25] ([i915#12061]) -> [PASS][26] +1 other test pass
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/bat-mtlp-8/igt@i915_selftest@live.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: [DMESG-FAIL][27] ([i915#12061]) -> [PASS][28] +1 other test pass
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/bat-dg2-9/igt@i915_selftest@live@workarounds.html
#### Warnings ####
* igt@i915_selftest@live:
- bat-atsm-1: [DMESG-FAIL][29] ([i915#12061] / [i915#13929]) -> [DMESG-FAIL][30] ([i915#12061] / [i915#14204])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/bat-atsm-1/igt@i915_selftest@live.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/bat-atsm-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@mman:
- bat-atsm-1: [DMESG-FAIL][31] ([i915#13929]) -> [DMESG-FAIL][32] ([i915#14204])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/bat-atsm-1/igt@i915_selftest@live@mman.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/bat-atsm-1/igt@i915_selftest@live@mman.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#13030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13030
[i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400
[i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494
[i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929
[i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204
[i915#14853]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14853
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
Build changes
-------------
* Linux: CI_DRM_17178 -> Patchwork_151677v2
CI-20190529: 20190529
CI_DRM_17178: a433a14cc397ef049ef273a3d4404d46a20a28cb @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8535: 8535
Patchwork_151677v2: a433a14cc397ef049ef273a3d4404d46a20a28cb @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/index.html
[-- Attachment #2: Type: text/html, Size: 9086 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ i915.CI.Full: failure for Check if CSME is available before initializing PXP (rev2)
2025-09-11 17:50 [PATCH v2 0/2] Check if CSME is available before initializing PXP Daniele Ceraolo Spurio
` (2 preceding siblings ...)
2025-09-11 20:39 ` ✓ i915.CI.BAT: success for Check if CSME is available before initializing PXP (rev2) Patchwork
@ 2025-09-12 12:43 ` Patchwork
3 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-09-12 12:43 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 135837 bytes --]
== Series Details ==
Series: Check if CSME is available before initializing PXP (rev2)
URL : https://patchwork.freedesktop.org/series/151677/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_17178_full -> Patchwork_151677v2_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_151677v2_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_151677v2_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 (12 -> 12)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_151677v2_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
Known issues
------------
Here are the changes found in Patchwork_151677v2_full that come from known issues:
### CI changes ###
#### Possible fixes ####
* boot:
- shard-glk: ([PASS][3], [PASS][4], [PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [FAIL][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16]) ([i915#14938]) -> ([PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-glk9/boot.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-glk9/boot.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-glk9/boot.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-glk8/boot.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-glk8/boot.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-glk6/boot.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-glk6/boot.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-glk6/boot.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-glk5/boot.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-glk5/boot.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-glk3/boot.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-glk3/boot.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-glk1/boot.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-glk1/boot.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk9/boot.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk9/boot.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk8/boot.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk8/boot.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk8/boot.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk6/boot.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk6/boot.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk5/boot.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk5/boot.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk3/boot.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk3/boot.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk3/boot.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk1/boot.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk1/boot.html
### IGT changes ###
#### Issues hit ####
* igt@fbdev@unaligned-read:
- shard-rkl: [PASS][31] -> [SKIP][32] ([i915#14544] / [i915#2582])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-7/igt@fbdev@unaligned-read.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@fbdev@unaligned-read.html
* igt@gem_basic@multigpu-create-close:
- shard-tglu-1: NOTRUN -> [SKIP][33] ([i915#7697])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@gem_basic@multigpu-create-close.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][34] ([i915#7697])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-6/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_ctx_freq@sysfs@gt0:
- shard-dg2: [PASS][35] -> [FAIL][36] ([i915#9561]) +1 other test fail
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg2-3/igt@gem_ctx_freq@sysfs@gt0.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-11/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg2-9: NOTRUN -> [SKIP][37] ([i915#8555]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_eio@kms:
- shard-dg1: [PASS][38] -> [FAIL][39] ([i915#5784])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg1-17/igt@gem_eio@kms.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg1-13/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2-9: NOTRUN -> [SKIP][40] ([i915#4771])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2-9: NOTRUN -> [SKIP][41] ([i915#4036])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#8555])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-4/igt@gem_exec_balancer@noheartbeat.html
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#8555])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg1-15/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel:
- shard-tglu-1: NOTRUN -> [SKIP][44] ([i915#4525])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_big@single:
- shard-tglu: [PASS][45] -> [ABORT][46] ([i915#11713] / [i915#14756])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-tglu-6/igt@gem_exec_big@single.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-6/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][47] ([i915#11965]) +4 other tests fail
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-11/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-11/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_exec_reloc@basic-gtt-active:
- shard-dg2-9: NOTRUN -> [SKIP][49] ([i915#3281]) +5 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@gem_exec_reloc@basic-gtt-active.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-4/igt@gem_exec_reloc@basic-wc-gtt.html
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#3281])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg1-15/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [PASS][52] -> [INCOMPLETE][53] ([i915#13356]) +1 other test incomplete
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg2-9: NOTRUN -> [SKIP][54] ([i915#4860])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4860])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-4/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu: NOTRUN -> [SKIP][56] ([i915#4613] / [i915#7582])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-5/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-random:
- shard-tglu-1: NOTRUN -> [SKIP][57] ([i915#4613])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@parallel-random:
- shard-glk: NOTRUN -> [SKIP][58] ([i915#4613]) +4 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk6/igt@gem_lmem_swapping@parallel-random.html
- shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-6/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_mmap_gtt@flink-race:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4077]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg1-15/igt@gem_mmap_gtt@flink-race.html
* igt@gem_mmap_gtt@hang:
- shard-dg2-9: NOTRUN -> [SKIP][61] ([i915#4077]) +6 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@gem_mmap_gtt@hang.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-dg2-9: NOTRUN -> [SKIP][62] ([i915#4083]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_mmap_wc@set-cache-level:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4083])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-4/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_partial_pwrite_pread@write-snoop:
- shard-dg2-9: NOTRUN -> [SKIP][64] ([i915#3282]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@gem_partial_pwrite_pread@write-snoop.html
* igt@gem_pxp@create-valid-protected-context:
- shard-dg2-9: NOTRUN -> [SKIP][65] ([i915#4270])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@gem_pxp@create-valid-protected-context.html
- shard-rkl: [PASS][66] -> [TIMEOUT][67] ([i915#12964])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@gem_pxp@create-valid-protected-context.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu: NOTRUN -> [SKIP][68] ([i915#13398]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-5/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-rkl: [PASS][69] -> [TIMEOUT][70] ([i915#12917] / [i915#12964]) +2 other tests timeout
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
- shard-dg2-9: NOTRUN -> [SKIP][71] ([i915#5190] / [i915#8428]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#5190] / [i915#8428])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-4/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4079])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-11/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-dg2-9: NOTRUN -> [SKIP][74] ([i915#4079]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4077]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-11/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297] / [i915#4880])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-4/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-dg2-9: NOTRUN -> [SKIP][77] ([i915#3297])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#3297])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-4/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-tglu: NOTRUN -> [SKIP][79] ([i915#3297])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-5/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_workarounds@suspend-resume:
- shard-glk: [PASS][80] -> [INCOMPLETE][81] ([i915#13356] / [i915#14586])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-glk5/igt@gem_workarounds@suspend-resume.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk1/igt@gem_workarounds@suspend-resume.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: [PASS][82] -> [INCOMPLETE][83] ([i915#13356])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-glk3/igt@gem_workarounds@suspend-resume-context.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk8/igt@gem_workarounds@suspend-resume-context.html
* igt@gen3_mixed_blits:
- shard-dg2-9: NOTRUN -> [SKIP][84] +5 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@gen3_mixed_blits.html
* igt@gen9_exec_parse@allowed-all:
- shard-dg2-9: NOTRUN -> [SKIP][85] ([i915#2856])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@bb-secure:
- shard-tglu-1: NOTRUN -> [SKIP][86] ([i915#2527] / [i915#2856])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#2527] / [i915#2856]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-6/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#2856])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-4/igt@gen9_exec_parse@secure-batches.html
* igt@i915_drm_fdinfo@busy:
- shard-dg2-9: NOTRUN -> [SKIP][89] ([i915#14073]) +15 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@i915_drm_fdinfo@busy.html
* igt@i915_drm_fdinfo@virtual-busy:
- shard-dg2-9: NOTRUN -> [SKIP][90] ([i915#14118])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@i915_drm_fdinfo@virtual-busy.html
* igt@i915_module_load@reload-no-display:
- shard-snb: [PASS][91] -> [DMESG-WARN][92] ([i915#14545])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-snb1/igt@i915_module_load@reload-no-display.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-snb5/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2-9: NOTRUN -> [SKIP][93] ([i915#11681] / [i915#6621])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_power@sanity:
- shard-mtlp: [PASS][94] -> [SKIP][95] ([i915#7984])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-mtlp-5/igt@i915_power@sanity.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-mtlp-5/igt@i915_power@sanity.html
* igt@i915_suspend@debugfs-reader:
- shard-glk: NOTRUN -> [INCOMPLETE][96] ([i915#4817])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk5/igt@i915_suspend@debugfs-reader.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu: NOTRUN -> [SKIP][97] ([i915#12454] / [i915#12712])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-dg1: [PASS][98] -> [FAIL][99] ([i915#14888]) +1 other test fail
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg1-18/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg1-19/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-dg2: [PASS][100] -> [FAIL][101] ([i915#14889])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg2-8/igt@kms_async_flips@async-flip-suspend-resume.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-11/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-c-dp-3:
- shard-dg2: NOTRUN -> [FAIL][102] ([i915#14889])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-11/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-dp-3.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#9531])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#9531])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg1-15/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-tglu: NOTRUN -> [SKIP][105] ([i915#9531])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][106] ([i915#5286])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-6/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#5286])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg2-9: NOTRUN -> [SKIP][108] ([i915#4538] / [i915#5190]) +5 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#4538] / [i915#5190]) +3 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#6095]) +9 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][111] ([i915#10307] / [i915#6095]) +29 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#6095]) +30 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][113] +312 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk1/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#10307] / [i915#6095]) +82 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-11/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][115] ([i915#12313])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#12313])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][117] ([i915#12313])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#12805])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][119] ([i915#6095]) +9 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-b-dp-3:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#6095]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-b-dp-3.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#14098] / [i915#6095]) +25 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][122] ([i915#6095]) +19 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#6095]) +154 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg1-13/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling:
- shard-tglu: NOTRUN -> [SKIP][125] ([i915#3742])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-6/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#11151] / [i915#7828]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#11151] / [i915#7828]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-4/igt@kms_chamelium_frames@dp-crc-fast.html
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#11151] / [i915#7828]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg1-15/igt@kms_chamelium_frames@dp-crc-fast.html
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#11151] / [i915#7828]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-5/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-dg2-9: NOTRUN -> [SKIP][130] ([i915#11151] / [i915#7828]) +4 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_color@ctm-green-to-red:
- shard-rkl: [PASS][131] -> [SKIP][132] ([i915#12655] / [i915#14544])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@kms_color@ctm-green-to-red.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_color@ctm-green-to-red.html
* igt@kms_color@deep-color:
- shard-dg2: [PASS][133] -> [SKIP][134] ([i915#12655] / [i915#3555])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg2-11/igt@kms_color@deep-color.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-7/igt@kms_color@deep-color.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-9: NOTRUN -> [SKIP][135] ([i915#3299])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@legacy@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][136] ([i915#7173])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-3.html
* igt@kms_content_protection@type1:
- shard-dg2-9: NOTRUN -> [SKIP][137] ([i915#7118] / [i915#9424])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#13049])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#13049])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][140] -> [FAIL][141] ([i915#13566]) +1 other test fail
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x128:
- shard-rkl: [PASS][142] -> [SKIP][143] ([i915#14544]) +37 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-128x128.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-128x128.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-dg2-9: NOTRUN -> [SKIP][144] ([i915#3555]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][145] ([i915#13566]) +1 other test fail
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][146] ([i915#13566])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][147] ([i915#12358] / [i915#14152] / [i915#7882])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk5/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][148] ([i915#12358] / [i915#14152])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk5/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2-9: NOTRUN -> [SKIP][149] ([i915#13046] / [i915#5354]) +2 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- shard-glk10: NOTRUN -> [SKIP][150] ([i915#11190]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk10/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#13046] / [i915#5354]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#1769] / [i915#3555] / [i915#3804])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#3804])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
- shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#3804])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-dg2-9: NOTRUN -> [SKIP][155] ([i915#13749])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2-9: NOTRUN -> [SKIP][156] ([i915#13707])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#1839])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr2:
- shard-dg2-9: NOTRUN -> [SKIP][158] ([i915#658])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-dg2-9: NOTRUN -> [SKIP][159] ([i915#9934]) +3 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2-9: NOTRUN -> [SKIP][160] ([i915#8381])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#9934]) +2 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-4/igt@kms_flip@2x-flip-vs-panning-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-snb: [PASS][162] -> [TIMEOUT][163] ([i915#14033] / [i915#14350])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
- shard-snb: [PASS][164] -> [TIMEOUT][165] ([i915#14033]) +2 other tests timeout
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-snb5/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#9934]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg1-15/igt@kms_flip@2x-plain-flip-interruptible.html
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#3637] / [i915#9934]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-5/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#3637] / [i915#9934]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1:
- shard-rkl: NOTRUN -> [DMESG-WARN][169] ([i915#12964]) +6 other tests dmesg-warn
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-4/igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3:
- shard-dg1: NOTRUN -> [DMESG-WARN][170] ([i915#4423]) +1 other test dmesg-warn
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg1-12/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3.html
* igt@kms_flip@flip-vs-wf_vblank-interruptible:
- shard-rkl: [PASS][171] -> [SKIP][172] ([i915#14544] / [i915#3637]) +4 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@kms_flip@flip-vs-wf_vblank-interruptible.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_flip@flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-tglu: [PASS][173] -> [FAIL][174] ([i915#14600]) +1 other test fail
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-tglu-7/igt@kms_flip@plain-flip-fb-recreate.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-8/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2-9: NOTRUN -> [SKIP][175] ([i915#2672] / [i915#3555]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2-9: NOTRUN -> [SKIP][176] ([i915#2672]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#2672] / [i915#3555])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][178] ([i915#2587] / [i915#2672])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#2672]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#2672]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-rkl: [PASS][182] -> [SKIP][183] ([i915#14544] / [i915#3555]) +2 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: [PASS][184] -> [SKIP][185] ([i915#14544] / [i915#1849] / [i915#5354]) +7 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render:
- shard-glk: [PASS][186] -> [SKIP][187] +6 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-glk1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][188] ([i915#8708]) +11 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][189] ([i915#10056])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk6/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg2: [PASS][190] -> [FAIL][191] ([i915#6880])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
- shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#5439])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#8708]) +4 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#8708]) +2 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-9: NOTRUN -> [SKIP][195] ([i915#3458]) +8 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt:
- shard-glk10: NOTRUN -> [SKIP][196] +227 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][197] +16 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-dg2-9: NOTRUN -> [SKIP][198] ([i915#5354]) +11 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#10433] / [i915#3458]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#5354]) +9 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html
- shard-dg1: NOTRUN -> [SKIP][201] +4 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#3458]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#8228]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-8/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@invalid-hdr:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#8228])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle:
- shard-dg2-9: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8228])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: [PASS][206] -> [SKIP][207] ([i915#3555] / [i915#8228])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg2-11/igt@kms_hdr@static-toggle-suspend.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-7/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_invalid_mode@bad-hsync-start:
- shard-rkl: [PASS][208] -> [SKIP][209] ([i915#14544] / [i915#3555] / [i915#8826])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@kms_invalid_mode@bad-hsync-start.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_invalid_mode@bad-hsync-start.html
* igt@kms_joiner@basic-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#10656])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2-9: NOTRUN -> [SKIP][211] ([i915#12339])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#12394])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#1839])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12:
- shard-rkl: [PASS][214] -> [SKIP][215] ([i915#11190] / [i915#14544]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][216] ([i915#13409] / [i915#13476])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk8/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-dg2: [PASS][217] -> [ABORT][218] ([i915#8213]) +1 other test abort
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg2-8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-10/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane@plane-panning-top-left:
- shard-rkl: [PASS][219] -> [SKIP][220] ([i915#14544] / [i915#8825]) +2 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@kms_plane@plane-panning-top-left.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_plane@plane-panning-top-left.html
* igt@kms_plane_alpha_blend@alpha-7efc:
- shard-rkl: [PASS][221] -> [SKIP][222] ([i915#14544] / [i915#7294])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@kms_plane_alpha_blend@alpha-7efc.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_plane_alpha_blend@alpha-7efc.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][223] ([i915#10647]) +1 other test fail
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk3/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg1: [PASS][224] -> [DMESG-WARN][225] ([i915#4423]) +1 other test dmesg-warn
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg1-16/igt@kms_plane_lowres@tiling-y.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg1-15/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#14259])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_multiple@tiling-yf:
- shard-tglu: NOTRUN -> [SKIP][227] ([i915#14259])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-6/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@invalid-num-scalers:
- shard-rkl: [PASS][228] -> [SKIP][229] ([i915#14544] / [i915#3555] / [i915#6953] / [i915#8152])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-7/igt@kms_plane_scaling@invalid-num-scalers.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_plane_scaling@invalid-num-scalers.html
* igt@kms_plane_scaling@invalid-parameters:
- shard-rkl: [PASS][230] -> [SKIP][231] ([i915#14544] / [i915#8152])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@kms_plane_scaling@invalid-parameters.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_plane_scaling@invalid-parameters.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#12247]) +4 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#12247]) +4 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg1-15/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling:
- shard-rkl: [PASS][234] -> [SKIP][235] ([i915#14544] / [i915#3555] / [i915#8152])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a:
- shard-rkl: [PASS][236] -> [SKIP][237] ([i915#12247] / [i915#14544]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-b:
- shard-rkl: [PASS][238] -> [SKIP][239] ([i915#12247] / [i915#14544] / [i915#8152]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-b.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-rkl: [PASS][240] -> [SKIP][241] ([i915#12247] / [i915#14544] / [i915#3555] / [i915#6953] / [i915#8152])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#9812])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-9: NOTRUN -> [SKIP][243] ([i915#9685])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#3828])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [PASS][245] -> [SKIP][246] ([i915#9519]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#9519])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg1-15/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@fences-dpms:
- shard-rkl: [PASS][248] -> [SKIP][249] ([i915#14544] / [i915#1849])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@kms_pm_rpm@fences-dpms.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_pm_rpm@fences-dpms.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-tglu-1: NOTRUN -> [SKIP][250] ([i915#9519])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_properties@plane-properties-legacy:
- shard-rkl: [PASS][251] -> [SKIP][252] ([i915#11521] / [i915#14544]) +1 other test skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@kms_properties@plane-properties-legacy.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_properties@plane-properties-legacy.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-snb: NOTRUN -> [SKIP][253] ([i915#11520])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-snb6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#11520])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg1-15/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][255] ([i915#11520]) +6 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk6/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-dg2-9: NOTRUN -> [SKIP][256] ([i915#11520]) +3 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-glk10: NOTRUN -> [SKIP][257] ([i915#11520]) +5 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk10/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#11520]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#11520]) +3 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-4/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
- shard-tglu: NOTRUN -> [SKIP][260] ([i915#11520]) +2 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#9683])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-4/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-tglu: NOTRUN -> [SKIP][262] ([i915#9683])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-5/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-primary-page-flip:
- shard-dg2-9: NOTRUN -> [SKIP][263] ([i915#1072] / [i915#9732]) +9 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_psr@fbc-pr-primary-page-flip.html
* igt@kms_psr@fbc-psr2-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#9732]) +5 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-6/igt@kms_psr@fbc-psr2-no-drrs.html
* igt@kms_psr@pr-basic:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#1072] / [i915#9732]) +4 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-4/igt@kms_psr@pr-basic.html
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#1072] / [i915#9732]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg1-15/igt@kms_psr@pr-basic.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#9732]) +5 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-9: NOTRUN -> [SKIP][268] ([i915#12755])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-9/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#5190])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#3555]) +1 other test skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-11/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_selftest@drm_framebuffer:
- shard-glk: NOTRUN -> [ABORT][271] ([i915#13179]) +1 other test abort
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk8/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic:
- shard-tglu: [PASS][272] -> [FAIL][273] ([i915#5465]) +2 other tests fail
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-tglu-4/igt@kms_setmode@basic.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-8/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-mtlp: [PASS][274] -> [FAIL][275] ([i915#5465]) +2 other tests fail
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-mtlp-8/igt@kms_setmode@basic@pipe-b-edp-1.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-mtlp-4/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#8623])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg1-15/igt@kms_tiled_display@basic-test-pattern.html
- shard-snb: NOTRUN -> [SKIP][277] +6 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-snb6/igt@kms_tiled_display@basic-test-pattern.html
- shard-tglu: NOTRUN -> [SKIP][278] ([i915#8623])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-5/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#8623])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-4/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#3555])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@flip-suspend:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#3555]) +2 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-5/igt@kms_vrr@flip-suspend.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#2436])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-8/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf_pmu@event-wait@rcs0:
- shard-dg2: NOTRUN -> [SKIP][283] +3 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-11/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@interrupts:
- shard-rkl: [PASS][284] -> [FAIL][285] ([i915#14902])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-4/igt@perf_pmu@interrupts.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@perf_pmu@interrupts.html
* igt@perf_pmu@module-unload:
- shard-glk: NOTRUN -> [FAIL][286] ([i915#14433])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk1/igt@perf_pmu@module-unload.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#3708] / [i915#4077])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-4/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@fence-write-hang:
- shard-tglu: NOTRUN -> [SKIP][288] +28 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-6/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-7:
- shard-tglu-1: NOTRUN -> [FAIL][289] ([i915#12910]) +9 other tests fail
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-7.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#9917])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-11/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@syncobj_wait@single-wait-all-for-submit-unsubmitted:
- shard-rkl: [PASS][291] -> [DMESG-WARN][292] ([i915#12964]) +9 other tests dmesg-warn
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-3/igt@syncobj_wait@single-wait-all-for-submit-unsubmitted.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-3/igt@syncobj_wait@single-wait-all-for-submit-unsubmitted.html
#### Possible fixes ####
* igt@fbdev@unaligned-write:
- shard-rkl: [SKIP][293] ([i915#14544] / [i915#2582]) -> [PASS][294]
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@fbdev@unaligned-write.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-4/igt@fbdev@unaligned-write.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][295] ([i915#13356]) -> [PASS][296] +1 other test pass
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg2-5/igt@gem_ccs@suspend-resume.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-8/igt@gem_ccs@suspend-resume.html
* igt@gem_eio@kms:
- shard-rkl: [DMESG-WARN][297] ([i915#13363]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@gem_eio@kms.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-5/igt@gem_eio@kms.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][299] ([i915#5493]) -> [PASS][300] +1 other test pass
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-rkl: [TIMEOUT][301] ([i915#12917] / [i915#12964]) -> [PASS][302] +2 other tests pass
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-7/igt@gem_pxp@protected-raw-src-copy-not-readible.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs:
- shard-rkl: [DMESG-WARN][303] ([i915#12964]) -> [PASS][304] +14 other tests pass
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html
* igt@gem_softpin@noreloc-s3:
- shard-tglu: [ABORT][305] ([i915#14850]) -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-tglu-7/igt@gem_softpin@noreloc-s3.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-tglu-6/igt@gem_softpin@noreloc-s3.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-rkl: [FAIL][307] ([i915#12942]) -> [PASS][308] +1 other test pass
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-accuracy.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rpm@system-suspend:
- shard-dg1: [ABORT][309] ([i915#4423]) -> [PASS][310]
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg1-13/igt@i915_pm_rpm@system-suspend.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg1-15/igt@i915_pm_rpm@system-suspend.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [DMESG-FAIL][311] ([i915#12061]) -> [PASS][312] +1 other test pass
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-mtlp-5/igt@i915_selftest@live@workarounds.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-mtlp-5/igt@i915_selftest@live@workarounds.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-0:
- shard-rkl: [SKIP][313] ([i915#14544]) -> [PASS][314] +45 other tests pass
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-4/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
* igt@kms_color@ctm-0-75:
- shard-rkl: [SKIP][315] ([i915#12655] / [i915#14544]) -> [PASS][316] +1 other test pass
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_color@ctm-0-75.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@kms_color@ctm-0-75.html
* igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1:
- shard-rkl: [FAIL][317] ([i915#13566]) -> [PASS][318]
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-atomic:
- shard-rkl: [SKIP][319] ([i915#11190] / [i915#14544]) -> [PASS][320] +1 other test pass
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-4/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][321] ([i915#2346]) -> [PASS][322]
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-rkl: [SKIP][323] ([i915#14544] / [i915#14561]) -> [PASS][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_fbcon_fbt@fbc-suspend.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-4/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@flip-vs-panning:
- shard-rkl: [SKIP][325] ([i915#14544] / [i915#3637]) -> [PASS][326] +2 other tests pass
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_flip@flip-vs-panning.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@kms_flip@flip-vs-panning.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-rkl: [SKIP][327] ([i915#14544] / [i915#3555]) -> [PASS][328] +2 other tests pass
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-rkl: [SKIP][329] ([i915#14544] / [i915#1849] / [i915#5354]) -> [PASS][330] +7 other tests pass
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-glk: [SKIP][331] -> [PASS][332] +4 other tests pass
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-glk8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-glk3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: [SKIP][333] ([i915#3555] / [i915#8228]) -> [PASS][334]
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg2-3/igt@kms_hdr@static-toggle-dpms.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-11/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_invalid_mode@bad-htotal:
- shard-rkl: [SKIP][335] ([i915#14544] / [i915#3555] / [i915#8826]) -> [PASS][336] +2 other tests pass
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_invalid_mode@bad-htotal.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@kms_invalid_mode@bad-htotal.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: [SKIP][337] ([i915#12388]) -> [PASS][338]
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg2-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_plane_cursor@primary:
- shard-dg1: [DMESG-WARN][339] ([i915#4423]) -> [PASS][340] +3 other tests pass
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg1-17/igt@kms_plane_cursor@primary.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg1-13/igt@kms_plane_cursor@primary.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
- shard-rkl: [SKIP][341] ([i915#14544] / [i915#8152]) -> [PASS][342]
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- shard-rkl: [SKIP][343] ([i915#12247] / [i915#14544] / [i915#6953] / [i915#8152]) -> [PASS][344]
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a:
- shard-rkl: [SKIP][345] ([i915#12247] / [i915#14544]) -> [PASS][346] +3 other tests pass
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
- shard-rkl: [SKIP][347] ([i915#14544] / [i915#6953] / [i915#8152]) -> [PASS][348]
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b:
- shard-rkl: [SKIP][349] ([i915#12247] / [i915#14544] / [i915#8152]) -> [PASS][350] +3 other tests pass
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25:
- shard-rkl: [SKIP][351] ([i915#14544] / [i915#3555] / [i915#6953] / [i915#8152]) -> [PASS][352]
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-rkl: [SKIP][353] ([i915#13441] / [i915#14544]) -> [PASS][354]
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_pm_dc@dc5-dpms-negative.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-4/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_rpm@i2c:
- shard-rkl: [SKIP][355] ([i915#12916] / [i915#14544]) -> [PASS][356]
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_pm_rpm@i2c.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [SKIP][357] ([i915#9519]) -> [PASS][358]
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [SKIP][359] ([i915#9519]) -> [PASS][360]
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2: [INCOMPLETE][361] ([i915#10553]) -> [PASS][362]
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg2-11/igt@kms_pm_rpm@system-suspend-modeset.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-11/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@perf@blocking:
- shard-mtlp: [FAIL][363] ([i915#10538]) -> [PASS][364] +1 other test pass
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-mtlp-1/igt@perf@blocking.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-mtlp-8/igt@perf@blocking.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [FAIL][365] ([i915#4349]) -> [PASS][366] +4 other tests pass
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html
#### Warnings ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: [SKIP][367] ([i915#14544] / [i915#8411]) -> [SKIP][368] ([i915#8411])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@api_intel_bb@object-reloc-keep-cache.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-rkl: [SKIP][369] ([i915#8411]) -> [SKIP][370] ([i915#14544] / [i915#8411])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-7/igt@api_intel_bb@object-reloc-purge-cache.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: [SKIP][371] ([i915#9323]) -> [SKIP][372] ([i915#14544] / [i915#9323])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@gem_ccs@block-multicopy-compressed.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: [SKIP][373] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][374] ([i915#3555] / [i915#9323])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-rkl: [SKIP][375] ([i915#13008]) -> [SKIP][376] ([i915#13008] / [i915#14544])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@gem_ccs@large-ctrl-surf-copy.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-rkl: [SKIP][377] ([i915#14544] / [i915#6335]) -> [SKIP][378] ([i915#6335])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: [SKIP][379] ([i915#14544] / [i915#280]) -> [SKIP][380] ([i915#280]) +1 other test skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-rkl: [SKIP][381] ([i915#14544] / [i915#6334]) -> [SKIP][382] ([i915#6334]) +1 other test skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: [SKIP][383] ([i915#3281]) -> [SKIP][384] ([i915#14544] / [i915#3281]) +6 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@gem_exec_reloc@basic-write-read.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: [SKIP][385] ([i915#14544] / [i915#3281]) -> [SKIP][386] ([i915#3281]) +8 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-active.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: [SKIP][387] ([i915#4613]) -> [SKIP][388] ([i915#14544] / [i915#4613]) +2 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: [SKIP][389] ([i915#14544] / [i915#4613]) -> [SKIP][390] ([i915#4613]) +2 other tests skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-rkl: [SKIP][391] ([i915#3282]) -> [SKIP][392] ([i915#14544] / [i915#3282])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@gem_partial_pwrite_pread@write-display.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: [SKIP][393] ([i915#14544] / [i915#3282]) -> [SKIP][394] ([i915#3282]) +6 other tests skip
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-rkl: [TIMEOUT][395] ([i915#12964]) -> [SKIP][396] ([i915#14544] / [i915#4270])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-7/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_softpin@evict-snoop:
- shard-rkl: [SKIP][397] ([i915#14544]) -> [SKIP][398] +11 other tests skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@gem_softpin@evict-snoop.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@gem_softpin@evict-snoop.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: [SKIP][399] ([i915#3297]) -> [SKIP][400] ([i915#14544] / [i915#3297]) +1 other test skip
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@gem_userptr_blits@coherency-sync.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: [SKIP][401] ([i915#14544] / [i915#3281] / [i915#3297]) -> [SKIP][402] ([i915#3281] / [i915#3297])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@gem_userptr_blits@relocations.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@gem_userptr_blits@relocations.html
* igt@gen9_exec_parse@allowed-all:
- shard-rkl: [SKIP][403] ([i915#2527]) -> [SKIP][404] ([i915#14544] / [i915#2527]) +1 other test skip
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@gen9_exec_parse@allowed-all.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@bb-start-out:
- shard-rkl: [SKIP][405] ([i915#14544] / [i915#2527]) -> [SKIP][406] ([i915#2527]) +2 other tests skip
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@gen9_exec_parse@bb-start-out.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@gen9_exec_parse@bb-start-out.html
* igt@i915_module_load@resize-bar:
- shard-rkl: [SKIP][407] ([i915#6412]) -> [SKIP][408] ([i915#14544] / [i915#6412])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-7/igt@i915_module_load@resize-bar.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: [SKIP][409] ([i915#14544] / [i915#8399]) -> [SKIP][410] ([i915#8399])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-4/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: [SKIP][411] ([i915#8399]) -> [SKIP][412] ([i915#14544] / [i915#8399])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@i915_pm_freq_api@freq-suspend.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: [SKIP][413] ([i915#7707]) -> [SKIP][414] ([i915#14544] / [i915#7707])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@intel_hwmon@hwmon-write.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@intel_hwmon@hwmon-write.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: [SKIP][415] ([i915#14544]) -> [SKIP][416] ([i915#1769] / [i915#3555])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-rkl: [SKIP][417] ([i915#14544]) -> [SKIP][418] ([i915#5286]) +3 other tests skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: [SKIP][419] ([i915#5286]) -> [SKIP][420] ([i915#14544]) +2 other tests skip
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: [SKIP][421] ([i915#3638]) -> [SKIP][422] ([i915#14544]) +1 other test skip
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-90.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: [SKIP][423] ([i915#14544]) -> [SKIP][424] ([i915#3638]) +5 other tests skip
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-rkl: [DMESG-WARN][425] ([i915#12964]) -> [SKIP][426] ([i915#14544])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: [SKIP][427] ([i915#4538]) -> [SKIP][428] ([i915#4423] / [i915#4538])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: [SKIP][429] -> [SKIP][430] ([i915#14544]) +16 other tests skip
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: [SKIP][431] ([i915#14098] / [i915#6095]) -> [SKIP][432] ([i915#14544]) +10 other tests skip
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][433] ([i915#14098] / [i915#6095]) -> [SKIP][434] ([i915#6095]) +2 other tests skip
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][435] ([i915#14544]) -> [SKIP][436] ([i915#12805])
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][437] ([i915#12313]) -> [SKIP][438] ([i915#14544])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-rkl: [SKIP][439] ([i915#14544]) -> [SKIP][440] ([i915#14098] / [i915#6095]) +7 other tests skip
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][441] ([i915#6095]) -> [SKIP][442] ([i915#14098] / [i915#6095]) +10 other tests skip
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: [SKIP][443] ([i915#3742]) -> [SKIP][444] ([i915#14544] / [i915#3742])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-7/igt@kms_cdclk@mode-transition-all-outputs.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-rkl: [SKIP][445] ([i915#11151] / [i915#7828]) -> [SKIP][446] ([i915#11151] / [i915#14544] / [i915#7828]) +5 other tests skip
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@kms_chamelium_frames@hdmi-crc-fast.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-rkl: [SKIP][447] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][448] ([i915#11151] / [i915#7828]) +4 other tests skip
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_color@deep-color:
- shard-rkl: [SKIP][449] ([i915#12655] / [i915#3555]) -> [SKIP][450] ([i915#12655] / [i915#14544] / [i915#3555])
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-7/igt@kms_color@deep-color.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-dg2: [FAIL][451] ([i915#7173]) -> [SKIP][452] ([i915#7118] / [i915#9424])
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg2-11/igt@kms_content_protection@atomic.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-7/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: [SKIP][453] ([i915#14544]) -> [SKIP][454] ([i915#7118] / [i915#9424])
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-4/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-rkl: [SKIP][455] ([i915#9424]) -> [SKIP][456] ([i915#14544])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@kms_content_protection@content-type-change.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@legacy:
- shard-dg2: [SKIP][457] ([i915#7118] / [i915#9424]) -> [FAIL][458] ([i915#7173])
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg2-3/igt@kms_content_protection@legacy.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-11/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: [SKIP][459] ([i915#14544]) -> [SKIP][460] ([i915#9424]) +1 other test skip
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_content_protection@mei-interface.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@kms_content_protection@mei-interface.html
- shard-dg1: [SKIP][461] ([i915#9424]) -> [SKIP][462] ([i915#9433])
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg1-15/igt@kms_content_protection@mei-interface.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg1-12/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-rkl: [SKIP][463] ([i915#7118] / [i915#9424]) -> [SKIP][464] ([i915#14544]) +1 other test skip
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@kms_content_protection@type1.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-rkl: [SKIP][465] ([i915#14544]) -> [SKIP][466] ([i915#3555])
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x10.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: [SKIP][467] ([i915#3555]) -> [SKIP][468] ([i915#14544]) +2 other tests skip
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-rkl: [SKIP][469] ([i915#14544]) -> [SKIP][470] ([i915#13049]) +1 other test skip
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-rkl: [FAIL][471] ([i915#13566]) -> [DMESG-WARN][472] ([i915#12917] / [i915#12964])
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-64x21.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: [SKIP][473] ([i915#11190] / [i915#14544]) -> [SKIP][474] ([i915#4103])
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: [SKIP][475] ([i915#9067]) -> [SKIP][476] ([i915#14544])
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: [SKIP][477] ([i915#9067]) -> [SKIP][478] ([i915#4423] / [i915#9067])
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg1-16/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg1-15/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: [SKIP][479] ([i915#13691]) -> [SKIP][480] ([i915#14544])
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-7/igt@kms_display_modes@extended-mode-basic.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-rkl: [SKIP][481] ([i915#13749]) -> [SKIP][482] ([i915#14544])
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@kms_dp_link_training@non-uhbr-sst.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-rkl: [SKIP][483] ([i915#14544]) -> [SKIP][484] ([i915#13748])
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_dp_link_training@uhbr-mst.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: [SKIP][485] ([i915#13748]) -> [SKIP][486] ([i915#14544])
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@kms_dp_link_training@uhbr-sst.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-with-bpc:
- shard-rkl: [SKIP][487] ([i915#14544]) -> [SKIP][488] ([i915#3555] / [i915#3840])
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_dsc@dsc-with-bpc.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: [SKIP][489] ([i915#3555] / [i915#3840]) -> [SKIP][490] ([i915#14544])
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@kms_dsc@dsc-with-formats.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: [SKIP][491] ([i915#14544]) -> [SKIP][492] ([i915#3840] / [i915#9053])
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: [SKIP][493] ([i915#14544] / [i915#9337]) -> [SKIP][494] ([i915#9337])
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: [SKIP][495] ([i915#658]) -> [SKIP][496] ([i915#14544] / [i915#658])
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@kms_feature_discovery@psr2.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: [SKIP][497] ([i915#14544] / [i915#9934]) -> [SKIP][498] ([i915#9934]) +5 other tests skip
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-4/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-rkl: [SKIP][499] ([i915#9934]) -> [SKIP][500] ([i915#14544] / [i915#9934]) +2 other tests skip
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@kms_flip@2x-flip-vs-modeset.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-dg1: [SKIP][501] ([i915#9934]) -> [SKIP][502] ([i915#4423] / [i915#9934])
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg1-18/igt@kms_flip@2x-nonexisting-fb.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg1-19/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@dpms-off-confusion-interruptible:
- shard-rkl: [SKIP][503] ([i915#14544] / [i915#3637]) -> [DMESG-WARN][504] ([i915#12964])
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_flip@dpms-off-confusion-interruptible.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-4/igt@kms_flip@dpms-off-confusion-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-rkl: [DMESG-WARN][505] ([i915#12964]) -> [SKIP][506] ([i915#14544] / [i915#3637])
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-rkl: [SKIP][507] ([i915#2672] / [i915#3555]) -> [SKIP][508] ([i915#14544] / [i915#3555]) +1 other test skip
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: [SKIP][509] ([i915#14544] / [i915#3555]) -> [SKIP][510] ([i915#2672] / [i915#3555]) +1 other test skip
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-rkl: [SKIP][511] ([i915#14544] / [i915#1849] / [i915#5354]) -> [DMESG-WARN][512] ([i915#12964])
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: [SKIP][513] ([i915#3023]) -> [SKIP][514] ([i915#14544] / [i915#1849] / [i915#5354]) +17 other tests skip
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: [SKIP][515] -> [SKIP][516] ([i915#14544] / [i915#1849] / [i915#5354]) +1 other test skip
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-rkl: [SKIP][517] ([i915#1825]) -> [SKIP][518] ([i915#14544] / [i915#1849] / [i915#5354]) +22 other tests skip
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: [SKIP][519] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][520] ([i915#3023]) +13 other tests skip
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary:
- shard-dg2: [SKIP][521] ([i915#10433] / [i915#3458]) -> [SKIP][522] ([i915#3458]) +1 other test skip
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: [SKIP][523] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][524] ([i915#1825]) +29 other tests skip
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: [SKIP][525] ([i915#3555] / [i915#8228]) -> [SKIP][526] ([i915#14544])
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-7/igt@kms_hdr@static-toggle-suspend.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: [SKIP][527] ([i915#12339]) -> [SKIP][528] ([i915#12339] / [i915#14544])
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@kms_joiner@basic-ultra-joiner.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-rkl: [SKIP][529] ([i915#10656]) -> [SKIP][530] ([i915#10656] / [i915#14544])
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-7/igt@kms_joiner@invalid-modeset-big-joiner.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: [SKIP][531] ([i915#14544]) -> [SKIP][532] ([i915#6301])
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_panel_fitting@legacy.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_cursor@overlay:
- shard-rkl: [SKIP][533] ([i915#14544]) -> [DMESG-WARN][534] ([i915#12964])
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_plane_cursor@overlay.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@kms_plane_cursor@overlay.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-rkl: [SKIP][535] ([i915#14544]) -> [SKIP][536] ([i915#13958])
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: [SKIP][537] ([i915#14544] / [i915#6953] / [i915#8152]) -> [SKIP][538] ([i915#6953])
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: [SKIP][539] ([i915#12247] / [i915#14544]) -> [SKIP][540] ([i915#12247])
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b:
- shard-rkl: [SKIP][541] ([i915#12247] / [i915#14544] / [i915#8152]) -> [SKIP][542] ([i915#12247]) +1 other test skip
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html
* igt@kms_pm_backlight@fade:
- shard-rkl: [SKIP][543] ([i915#5354]) -> [SKIP][544] ([i915#14544] / [i915#5354])
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@kms_pm_backlight@fade.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: [SKIP][545] ([i915#3361]) -> [FAIL][546] ([i915#9295])
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@kms_pm_dc@dc6-dpms.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [DMESG-WARN][547] ([i915#12964]) -> [SKIP][548] ([i915#9519])
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@d3hot:
- shard-rkl: [SKIP][549] ([i915#6524]) -> [SKIP][550] ([i915#14544] / [i915#6524])
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@kms_prime@d3hot.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-rkl: [SKIP][551] ([i915#11520]) -> [SKIP][552] ([i915#11520] / [i915#14544]) +5 other tests skip
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: [SKIP][553] ([i915#11520] / [i915#14544]) -> [SKIP][554] ([i915#11520]) +5 other tests skip
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-rkl: [SKIP][555] ([i915#1072] / [i915#9732]) -> [SKIP][556] ([i915#1072] / [i915#14544] / [i915#9732]) +15 other tests skip
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-7/igt@kms_psr@psr-sprite-plane-move.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-rkl: [SKIP][557] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][558] ([i915#1072] / [i915#9732]) +15 other tests skip
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_psr@psr-sprite-plane-onoff.html
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: [SKIP][559] ([i915#14544]) -> [SKIP][560] ([i915#5289])
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-rkl: [SKIP][561] ([i915#14544] / [i915#3555]) -> [SKIP][562] ([i915#3555])
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@kms_setmode@clone-exclusive-crtc.html
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_writeback@writeback-check-output:
- shard-rkl: [SKIP][563] ([i915#2437]) -> [SKIP][564] ([i915#14544] / [i915#2437])
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@kms_writeback@writeback-check-output.html
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-rkl: [SKIP][565] ([i915#2437] / [i915#9412]) -> [SKIP][566] ([i915#14544] / [i915#2437] / [i915#9412])
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf_pmu@module-unload:
- shard-rkl: [DMESG-FAIL][567] ([i915#12964]) -> [FAIL][568] ([i915#14433])
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@perf_pmu@module-unload.html
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-8/igt@perf_pmu@module-unload.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: [SKIP][569] ([i915#3708]) -> [SKIP][570] ([i915#14544] / [i915#3708])
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-7/igt@prime_vgem@fence-flip-hang.html
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: [SKIP][571] ([i915#9917]) -> [SKIP][572] ([i915#14544] / [i915#9917])
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-7/igt@sriov_basic@bind-unbind-vf.html
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: [SKIP][573] ([i915#14544] / [i915#9917]) -> [SKIP][574] ([i915#9917])
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17178/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/shard-rkl-7/igt@sriov_basic@enable-vfs-autoprobe-off.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
[i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12942]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12942
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13441
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350
[i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14561
[i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14756
[i915#14850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14850
[i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
[i915#14889]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14889
[i915#14902]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14902
[i915#14938]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14938
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152
[i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825
[i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* Linux: CI_DRM_17178 -> Patchwork_151677v2
CI-20190529: 20190529
CI_DRM_17178: a433a14cc397ef049ef273a3d4404d46a20a28cb @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8535: 8535
Patchwork_151677v2: a433a14cc397ef049ef273a3d4404d46a20a28cb @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v2/index.html
[-- Attachment #2: Type: text/html, Size: 182333 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v2 1/2] mei: me: Add exported function to get the PCI ID list
2025-09-11 17:50 ` [PATCH v2 1/2] mei: me: Add exported function to get the PCI ID list Daniele Ceraolo Spurio
@ 2025-09-12 13:44 ` Greg Kroah-Hartman
2025-09-12 14:55 ` Daniele Ceraolo Spurio
0 siblings, 1 reply; 7+ messages in thread
From: Greg Kroah-Hartman @ 2025-09-12 13:44 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-gfx, Alexander Usyskin
On Thu, Sep 11, 2025 at 10:50:23AM -0700, Daniele Ceraolo Spurio wrote:
> The intel GFX drivers (i915/xe) interface with the ME device for some of
> their features (e.g. PXP, HDCP) via the component interface. Given that
> the ME device can be hidden by BIOS/Coreboot, the GFX drivers need a
> way to check if the device is available before attempting to bind the
> component, otherwise they'll go ahead and initialize features that will
> never work.
> The simplest way to check if the device is available is to check the
> available devices against the PCI ID list of the mei_me driver. To avoid
> duplication, this patch adds an exported function that the GFX driver
> can call to obtain the list. Locking around the checks, if required,
> is left to the caller.
>
> Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
> Cc: Alexander Usyskin <alexander.usyskin@intel.com>
> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> ---
> drivers/misc/mei/pci-me.c | 22 ++++++++++++++++++++++
> include/linux/mei_me.h | 20 ++++++++++++++++++++
> 2 files changed, 42 insertions(+)
> create mode 100644 include/linux/mei_me.h
>
> diff --git a/drivers/misc/mei/pci-me.c b/drivers/misc/mei/pci-me.c
> index 3f9c60b579ae..147e79b4ae1f 100644
> --- a/drivers/misc/mei/pci-me.c
> +++ b/drivers/misc/mei/pci-me.c
> @@ -18,6 +18,7 @@
> #include <linux/pm_runtime.h>
>
> #include <linux/mei.h>
> +#include <linux/mei_me.h>
>
> #include "mei_dev.h"
> #include "client.h"
> @@ -133,6 +134,27 @@ static const struct pci_device_id mei_me_pci_tbl[] = {
>
> MODULE_DEVICE_TABLE(pci, mei_me_pci_tbl);
>
> +/**
> + * mei_me_get_device_id_table - get the list of ME pci device IDs
> + *
> + * Other drivers (e.g., i915, xe) interface with the ME device for some of their
> + * features (e.g., PXP, HDCP). However, the ME device can be unplugged via the
> + * pci subsystem or hidden by BIOS/coreboot, so those drivers might want to
> + * check if the device is available before initializing those features. This
> + * function offers a way for those drivers to get the list of ME device IDs,
> + * so they can check if one of them is available before attempting to
> + * interface with it. Locking around the availability check, if required,
> + * is left to the caller.
> + *
> + * Return: An array of struct pci_device_id entries containing the IDs of
> + * the ME devices.
> + */
> +const struct pci_device_id *mei_me_get_device_id_table(void)
> +{
> + return mei_me_pci_tbl;
> +}
> +EXPORT_SYMBOL_GPL(mei_me_get_device_id_table);
Why not just do:
EXPORT_SYMBOL_GPL(mei_me_pci_tbl);
instead?
Much simpler :)
thanks,
greg k-h
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v2 1/2] mei: me: Add exported function to get the PCI ID list
2025-09-12 13:44 ` Greg Kroah-Hartman
@ 2025-09-12 14:55 ` Daniele Ceraolo Spurio
0 siblings, 0 replies; 7+ messages in thread
From: Daniele Ceraolo Spurio @ 2025-09-12 14:55 UTC (permalink / raw)
To: Greg Kroah-Hartman; +Cc: intel-gfx, Alexander Usyskin
On 9/12/2025 6:44 AM, Greg Kroah-Hartman wrote:
> On Thu, Sep 11, 2025 at 10:50:23AM -0700, Daniele Ceraolo Spurio wrote:
>> The intel GFX drivers (i915/xe) interface with the ME device for some of
>> their features (e.g. PXP, HDCP) via the component interface. Given that
>> the ME device can be hidden by BIOS/Coreboot, the GFX drivers need a
>> way to check if the device is available before attempting to bind the
>> component, otherwise they'll go ahead and initialize features that will
>> never work.
>> The simplest way to check if the device is available is to check the
>> available devices against the PCI ID list of the mei_me driver. To avoid
>> duplication, this patch adds an exported function that the GFX driver
>> can call to obtain the list. Locking around the checks, if required,
>> is left to the caller.
>>
>> Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
>> Cc: Alexander Usyskin <alexander.usyskin@intel.com>
>> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
>> ---
>> drivers/misc/mei/pci-me.c | 22 ++++++++++++++++++++++
>> include/linux/mei_me.h | 20 ++++++++++++++++++++
>> 2 files changed, 42 insertions(+)
>> create mode 100644 include/linux/mei_me.h
>>
>> diff --git a/drivers/misc/mei/pci-me.c b/drivers/misc/mei/pci-me.c
>> index 3f9c60b579ae..147e79b4ae1f 100644
>> --- a/drivers/misc/mei/pci-me.c
>> +++ b/drivers/misc/mei/pci-me.c
>> @@ -18,6 +18,7 @@
>> #include <linux/pm_runtime.h>
>>
>> #include <linux/mei.h>
>> +#include <linux/mei_me.h>
>>
>> #include "mei_dev.h"
>> #include "client.h"
>> @@ -133,6 +134,27 @@ static const struct pci_device_id mei_me_pci_tbl[] = {
>>
>> MODULE_DEVICE_TABLE(pci, mei_me_pci_tbl);
>>
>> +/**
>> + * mei_me_get_device_id_table - get the list of ME pci device IDs
>> + *
>> + * Other drivers (e.g., i915, xe) interface with the ME device for some of their
>> + * features (e.g., PXP, HDCP). However, the ME device can be unplugged via the
>> + * pci subsystem or hidden by BIOS/coreboot, so those drivers might want to
>> + * check if the device is available before initializing those features. This
>> + * function offers a way for those drivers to get the list of ME device IDs,
>> + * so they can check if one of them is available before attempting to
>> + * interface with it. Locking around the availability check, if required,
>> + * is left to the caller.
>> + *
>> + * Return: An array of struct pci_device_id entries containing the IDs of
>> + * the ME devices.
>> + */
>> +const struct pci_device_id *mei_me_get_device_id_table(void)
>> +{
>> + return mei_me_pci_tbl;
>> +}
>> +EXPORT_SYMBOL_GPL(mei_me_get_device_id_table);
> Why not just do:
>
> EXPORT_SYMBOL_GPL(mei_me_pci_tbl);
>
> instead?
>
> Much simpler :)
Good point! :P
I'll update.
Thanks,
Daniele
>
> thanks,
>
> greg k-h
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-09-12 14:55 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-11 17:50 [PATCH v2 0/2] Check if CSME is available before initializing PXP Daniele Ceraolo Spurio
2025-09-11 17:50 ` [PATCH v2 1/2] mei: me: Add exported function to get the PCI ID list Daniele Ceraolo Spurio
2025-09-12 13:44 ` Greg Kroah-Hartman
2025-09-12 14:55 ` Daniele Ceraolo Spurio
2025-09-11 17:50 ` [PATCH v2 2/2] drm/i915/pxp: Do not support PXP if CSME is not available Daniele Ceraolo Spurio
2025-09-11 20:39 ` ✓ i915.CI.BAT: success for Check if CSME is available before initializing PXP (rev2) Patchwork
2025-09-12 12:43 ` ✗ i915.CI.Full: failure " Patchwork
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.