* [PATCH v3 0/2] Check if CSME is available before initializing PXP
@ 2025-11-14 20:14 Daniele Ceraolo Spurio
2025-11-14 20:14 ` [PATCH v3 1/2] mei: me: Export the PCI ID list Daniele Ceraolo Spurio
` (2 more replies)
0 siblings, 3 replies; 11+ messages in thread
From: Daniele Ceraolo Spurio @ 2025-11-14 20:14 UTC (permalink / raw)
To: intel-gfx
Cc: gregkh, 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, we can export that and use it in the i915 driver
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.
v3: export the pci_id list directly from the mei driver instead of using
a wrapper function.
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: Export the PCI ID list
drm/i915/pxp: Do not support PXP if CSME is not available
drivers/gpu/drm/i915/pxp/intel_pxp.c | 25 +++++++++++++++++++++++++
drivers/misc/mei/pci-me.c | 12 +++++++++++-
include/linux/mei_me.h | 15 +++++++++++++++
3 files changed, 51 insertions(+), 1 deletion(-)
create mode 100644 include/linux/mei_me.h
--
2.43.0
^ permalink raw reply [flat|nested] 11+ messages in thread* [PATCH v3 1/2] mei: me: Export the PCI ID list 2025-11-14 20:14 [PATCH v3 0/2] Check if CSME is available before initializing PXP Daniele Ceraolo Spurio @ 2025-11-14 20:14 ` Daniele Ceraolo Spurio 2025-11-25 10:26 ` Jani Nikula 2025-11-14 20:14 ` [PATCH v3 2/2] drm/i915/pxp: Do not support PXP if CSME is not available Daniele Ceraolo Spurio 2025-11-15 13:13 ` ✗ i915.CI.Full: failure for Check if CSME is available before initializing PXP (rev3) Patchwork 2 siblings, 1 reply; 11+ messages in thread From: Daniele Ceraolo Spurio @ 2025-11-14 20:14 UTC (permalink / raw) To: intel-gfx; +Cc: gregkh, 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 ME device is available is to check the available devices against the PCI ID list of the mei_me driver. To avoid duplication, this patch exports the list, so that it can be used directly from the GFX drivers. 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 | 12 +++++++++++- include/linux/mei_me.h | 15 +++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) 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 b017ff29dbd1..632756f9da66 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" @@ -25,7 +26,7 @@ #include "hw-me.h" /* mei_pci_tbl - PCI Device ID Table */ -static const struct pci_device_id mei_me_pci_tbl[] = { +const struct pci_device_id mei_me_pci_tbl[] = { {MEI_PCI_DEVICE(MEI_DEV_ID_82946GZ, MEI_ME_ICH_CFG)}, {MEI_PCI_DEVICE(MEI_DEV_ID_82G35, MEI_ME_ICH_CFG)}, {MEI_PCI_DEVICE(MEI_DEV_ID_82Q965, MEI_ME_ICH_CFG)}, @@ -135,6 +136,15 @@ static const struct pci_device_id mei_me_pci_tbl[] = { MODULE_DEVICE_TABLE(pci, mei_me_pci_tbl); +/* + * 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. To + * allow them to perform such a check, we export the list of ME device IDs. + */ +EXPORT_SYMBOL_GPL(mei_me_pci_tbl); + #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..48fd913a3d95 --- /dev/null +++ b/include/linux/mei_me.h @@ -0,0 +1,15 @@ +/* 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/pci.h> + +#if IS_ENABLED(CONFIG_INTEL_MEI_ME) +extern const struct pci_device_id mei_me_pci_tbl[]; +#endif + +#endif /* _LINUX_MEI_ME_H */ -- 2.43.0 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH v3 1/2] mei: me: Export the PCI ID list 2025-11-14 20:14 ` [PATCH v3 1/2] mei: me: Export the PCI ID list Daniele Ceraolo Spurio @ 2025-11-25 10:26 ` Jani Nikula 2025-11-25 22:00 ` Daniele Ceraolo Spurio 0 siblings, 1 reply; 11+ messages in thread From: Jani Nikula @ 2025-11-25 10:26 UTC (permalink / raw) To: Daniele Ceraolo Spurio, intel-gfx Cc: gregkh, Daniele Ceraolo Spurio, Alexander Usyskin On Fri, 14 Nov 2025, Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> 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 ME device is available is to check the > available devices against the PCI ID list of the mei_me driver. To avoid > duplication, this patch exports the list, so that it can be used directly > from the GFX drivers. > > 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 | 12 +++++++++++- > include/linux/mei_me.h | 15 +++++++++++++++ > 2 files changed, 26 insertions(+), 1 deletion(-) > 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 b017ff29dbd1..632756f9da66 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" > @@ -25,7 +26,7 @@ > #include "hw-me.h" > > /* mei_pci_tbl - PCI Device ID Table */ > -static const struct pci_device_id mei_me_pci_tbl[] = { > +const struct pci_device_id mei_me_pci_tbl[] = { > {MEI_PCI_DEVICE(MEI_DEV_ID_82946GZ, MEI_ME_ICH_CFG)}, > {MEI_PCI_DEVICE(MEI_DEV_ID_82G35, MEI_ME_ICH_CFG)}, > {MEI_PCI_DEVICE(MEI_DEV_ID_82Q965, MEI_ME_ICH_CFG)}, > @@ -135,6 +136,15 @@ static const struct pci_device_id mei_me_pci_tbl[] = { > > MODULE_DEVICE_TABLE(pci, mei_me_pci_tbl); > > +/* > + * 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. To > + * allow them to perform such a check, we export the list of ME device IDs. > + */ > +EXPORT_SYMBOL_GPL(mei_me_pci_tbl); Data is not an interface. Please add an exported helper function (with a sensible stub for CONFIG_INTEL_MEI_ME=n) and everything becomes much cleaner both mei and i915 side. BR, Jani. > + > #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..48fd913a3d95 > --- /dev/null > +++ b/include/linux/mei_me.h > @@ -0,0 +1,15 @@ > +/* 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/pci.h> > + > +#if IS_ENABLED(CONFIG_INTEL_MEI_ME) > +extern const struct pci_device_id mei_me_pci_tbl[]; > +#endif > + > +#endif /* _LINUX_MEI_ME_H */ -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3 1/2] mei: me: Export the PCI ID list 2025-11-25 10:26 ` Jani Nikula @ 2025-11-25 22:00 ` Daniele Ceraolo Spurio 2025-11-26 9:25 ` Jani Nikula 0 siblings, 1 reply; 11+ messages in thread From: Daniele Ceraolo Spurio @ 2025-11-25 22:00 UTC (permalink / raw) To: Jani Nikula, intel-gfx; +Cc: gregkh, Alexander Usyskin On 11/25/2025 2:26 AM, Jani Nikula wrote: > On Fri, 14 Nov 2025, Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> 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 ME device is available is to check the >> available devices against the PCI ID list of the mei_me driver. To avoid >> duplication, this patch exports the list, so that it can be used directly >> from the GFX drivers. >> >> 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 | 12 +++++++++++- >> include/linux/mei_me.h | 15 +++++++++++++++ >> 2 files changed, 26 insertions(+), 1 deletion(-) >> 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 b017ff29dbd1..632756f9da66 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" >> @@ -25,7 +26,7 @@ >> #include "hw-me.h" >> >> /* mei_pci_tbl - PCI Device ID Table */ >> -static const struct pci_device_id mei_me_pci_tbl[] = { >> +const struct pci_device_id mei_me_pci_tbl[] = { >> {MEI_PCI_DEVICE(MEI_DEV_ID_82946GZ, MEI_ME_ICH_CFG)}, >> {MEI_PCI_DEVICE(MEI_DEV_ID_82G35, MEI_ME_ICH_CFG)}, >> {MEI_PCI_DEVICE(MEI_DEV_ID_82Q965, MEI_ME_ICH_CFG)}, >> @@ -135,6 +136,15 @@ static const struct pci_device_id mei_me_pci_tbl[] = { >> >> MODULE_DEVICE_TABLE(pci, mei_me_pci_tbl); >> >> +/* >> + * 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. To >> + * allow them to perform such a check, we export the list of ME device IDs. >> + */ >> +EXPORT_SYMBOL_GPL(mei_me_pci_tbl); > Data is not an interface. > > Please add an exported helper function (with a sensible stub for > CONFIG_INTEL_MEI_ME=n) and everything becomes much cleaner both mei and > i915 side. That is actually what I had in v2 [1], but Greg suggested to export the table directly instead. I am ok either way. [1] https://patchwork.freedesktop.org/patch/674368/?series=151677&rev=2 Daniele > > BR, > Jani. > >> + >> #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..48fd913a3d95 >> --- /dev/null >> +++ b/include/linux/mei_me.h >> @@ -0,0 +1,15 @@ >> +/* 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/pci.h> >> + >> +#if IS_ENABLED(CONFIG_INTEL_MEI_ME) >> +extern const struct pci_device_id mei_me_pci_tbl[]; >> +#endif >> + >> +#endif /* _LINUX_MEI_ME_H */ ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3 1/2] mei: me: Export the PCI ID list 2025-11-25 22:00 ` Daniele Ceraolo Spurio @ 2025-11-26 9:25 ` Jani Nikula 0 siblings, 0 replies; 11+ messages in thread From: Jani Nikula @ 2025-11-26 9:25 UTC (permalink / raw) To: Daniele Ceraolo Spurio, intel-gfx; +Cc: gregkh, Alexander Usyskin On Tue, 25 Nov 2025, Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> wrote: > On 11/25/2025 2:26 AM, Jani Nikula wrote: >> On Fri, 14 Nov 2025, Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> 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 ME device is available is to check the >>> available devices against the PCI ID list of the mei_me driver. To avoid >>> duplication, this patch exports the list, so that it can be used directly >>> from the GFX drivers. >>> >>> 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 | 12 +++++++++++- >>> include/linux/mei_me.h | 15 +++++++++++++++ >>> 2 files changed, 26 insertions(+), 1 deletion(-) >>> 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 b017ff29dbd1..632756f9da66 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" >>> @@ -25,7 +26,7 @@ >>> #include "hw-me.h" >>> >>> /* mei_pci_tbl - PCI Device ID Table */ >>> -static const struct pci_device_id mei_me_pci_tbl[] = { >>> +const struct pci_device_id mei_me_pci_tbl[] = { >>> {MEI_PCI_DEVICE(MEI_DEV_ID_82946GZ, MEI_ME_ICH_CFG)}, >>> {MEI_PCI_DEVICE(MEI_DEV_ID_82G35, MEI_ME_ICH_CFG)}, >>> {MEI_PCI_DEVICE(MEI_DEV_ID_82Q965, MEI_ME_ICH_CFG)}, >>> @@ -135,6 +136,15 @@ static const struct pci_device_id mei_me_pci_tbl[] = { >>> >>> MODULE_DEVICE_TABLE(pci, mei_me_pci_tbl); >>> >>> +/* >>> + * 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. To >>> + * allow them to perform such a check, we export the list of ME device IDs. >>> + */ >>> +EXPORT_SYMBOL_GPL(mei_me_pci_tbl); >> Data is not an interface. >> >> Please add an exported helper function (with a sensible stub for >> CONFIG_INTEL_MEI_ME=n) and everything becomes much cleaner both mei and >> i915 side. > > That is actually what I had in v2 [1], but Greg suggested to export the > table directly instead. I am ok either way. Well I'm not asking to add a function to return the device id table, which certainly has the worst of both approaches. I'm asking to add a function that does the required check, which I think is overall simplest. BR, Jani. > > [1] https://patchwork.freedesktop.org/patch/674368/?series=151677&rev=2 > > Daniele > >> >> BR, >> Jani. >> >>> + >>> #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..48fd913a3d95 >>> --- /dev/null >>> +++ b/include/linux/mei_me.h >>> @@ -0,0 +1,15 @@ >>> +/* 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/pci.h> >>> + >>> +#if IS_ENABLED(CONFIG_INTEL_MEI_ME) >>> +extern const struct pci_device_id mei_me_pci_tbl[]; >>> +#endif >>> + >>> +#endif /* _LINUX_MEI_ME_H */ > -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH v3 2/2] drm/i915/pxp: Do not support PXP if CSME is not available 2025-11-14 20:14 [PATCH v3 0/2] Check if CSME is available before initializing PXP Daniele Ceraolo Spurio 2025-11-14 20:14 ` [PATCH v3 1/2] mei: me: Export the PCI ID list Daniele Ceraolo Spurio @ 2025-11-14 20:14 ` Daniele Ceraolo Spurio 2025-11-25 10:28 ` Jani Nikula 2025-11-15 13:13 ` ✗ i915.CI.Full: failure for Check if CSME is available before initializing PXP (rev3) Patchwork 2 siblings, 1 reply; 11+ messages in thread From: Daniele Ceraolo Spurio @ 2025-11-14 20:14 UTC (permalink / raw) To: intel-gfx Cc: gregkh, 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. v3: rebase on exported pci id list. 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 | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/drivers/gpu/drm/i915/pxp/intel_pxp.c b/drivers/gpu/drm/i915/pxp/intel_pxp.c index 2860474ad2d0..26e7c5c26bac 100644 --- a/drivers/gpu/drm/i915/pxp/intel_pxp.c +++ b/drivers/gpu/drm/i915/pxp/intel_pxp.c @@ -3,6 +3,7 @@ * Copyright(c) 2020 Intel Corporation. */ +#include <linux/mei_me.h> #include <linux/workqueue.h> #include <drm/drm_print.h> @@ -197,6 +198,15 @@ static struct intel_gt *find_gt_for_required_protected_content(struct drm_i915_p return NULL; } +static bool mei_device_available(void) +{ +#if IS_ENABLED(CONFIG_INTEL_MEI_ME) + return pci_dev_present(mei_me_pci_tbl); +#else + return false; +#endif +} + int intel_pxp_init(struct drm_i915_private *i915) { struct intel_gt *gt; @@ -205,6 +215,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] 11+ messages in thread
* Re: [PATCH v3 2/2] drm/i915/pxp: Do not support PXP if CSME is not available 2025-11-14 20:14 ` [PATCH v3 2/2] drm/i915/pxp: Do not support PXP if CSME is not available Daniele Ceraolo Spurio @ 2025-11-25 10:28 ` Jani Nikula 2025-11-25 22:07 ` Daniele Ceraolo Spurio 0 siblings, 1 reply; 11+ messages in thread From: Jani Nikula @ 2025-11-25 10:28 UTC (permalink / raw) To: Daniele Ceraolo Spurio, intel-gfx Cc: gregkh, Daniele Ceraolo Spurio, Valentine Burley, Rodrigo Vivi, Alexander Usyskin, Alan Previn On Fri, 14 Nov 2025, Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> wrote: > 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. > v3: rebase on exported pci id list. > > 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 | 25 +++++++++++++++++++++++++ > 1 file changed, 25 insertions(+) > > diff --git a/drivers/gpu/drm/i915/pxp/intel_pxp.c b/drivers/gpu/drm/i915/pxp/intel_pxp.c > index 2860474ad2d0..26e7c5c26bac 100644 > --- a/drivers/gpu/drm/i915/pxp/intel_pxp.c > +++ b/drivers/gpu/drm/i915/pxp/intel_pxp.c > @@ -3,6 +3,7 @@ > * Copyright(c) 2020 Intel Corporation. > */ > > +#include <linux/mei_me.h> > #include <linux/workqueue.h> > > #include <drm/drm_print.h> > @@ -197,6 +198,15 @@ static struct intel_gt *find_gt_for_required_protected_content(struct drm_i915_p > return NULL; > } > > +static bool mei_device_available(void) > +{ > +#if IS_ENABLED(CONFIG_INTEL_MEI_ME) > + return pci_dev_present(mei_me_pci_tbl); > +#else > + return false; > +#endif > +} > + I think it's just ugly to have this in i915. IMO the function belongs in mei. BR, Jani. > int intel_pxp_init(struct drm_i915_private *i915) > { > struct intel_gt *gt; > @@ -205,6 +215,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. -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3 2/2] drm/i915/pxp: Do not support PXP if CSME is not available 2025-11-25 10:28 ` Jani Nikula @ 2025-11-25 22:07 ` Daniele Ceraolo Spurio 2025-11-26 9:31 ` Jani Nikula 0 siblings, 1 reply; 11+ messages in thread From: Daniele Ceraolo Spurio @ 2025-11-25 22:07 UTC (permalink / raw) To: Jani Nikula, intel-gfx Cc: gregkh, Valentine Burley, Rodrigo Vivi, Alexander Usyskin, Alan Previn On 11/25/2025 2:28 AM, Jani Nikula wrote: > On Fri, 14 Nov 2025, Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> wrote: >> 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. >> v3: rebase on exported pci id list. >> >> 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 | 25 +++++++++++++++++++++++++ >> 1 file changed, 25 insertions(+) >> >> diff --git a/drivers/gpu/drm/i915/pxp/intel_pxp.c b/drivers/gpu/drm/i915/pxp/intel_pxp.c >> index 2860474ad2d0..26e7c5c26bac 100644 >> --- a/drivers/gpu/drm/i915/pxp/intel_pxp.c >> +++ b/drivers/gpu/drm/i915/pxp/intel_pxp.c >> @@ -3,6 +3,7 @@ >> * Copyright(c) 2020 Intel Corporation. >> */ >> >> +#include <linux/mei_me.h> >> #include <linux/workqueue.h> >> >> #include <drm/drm_print.h> >> @@ -197,6 +198,15 @@ static struct intel_gt *find_gt_for_required_protected_content(struct drm_i915_p >> return NULL; >> } >> >> +static bool mei_device_available(void) >> +{ >> +#if IS_ENABLED(CONFIG_INTEL_MEI_ME) >> + return pci_dev_present(mei_me_pci_tbl); >> +#else >> + return false; >> +#endif >> +} >> + > I think it's just ugly to have this in i915. IMO the function belongs in > mei. That is what I had in v1 [1], but there were concerns from Greg about the state changing after we check it and the relevant required locking to avoid that. In i915 we don't care if the state changes after we check it and therefore we don't need locking, so I moved the actual check to i915 with an explanation (see comment in the code below). [1] https://patchwork.freedesktop.org/patch/664208/?series=151677&rev=1 Daniele > > BR, > Jani. > >> int intel_pxp_init(struct drm_i915_private *i915) >> { >> struct intel_gt *gt; >> @@ -205,6 +215,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. ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3 2/2] drm/i915/pxp: Do not support PXP if CSME is not available 2025-11-25 22:07 ` Daniele Ceraolo Spurio @ 2025-11-26 9:31 ` Jani Nikula 2025-11-26 22:24 ` Daniele Ceraolo Spurio 0 siblings, 1 reply; 11+ messages in thread From: Jani Nikula @ 2025-11-26 9:31 UTC (permalink / raw) To: Daniele Ceraolo Spurio, intel-gfx Cc: gregkh, Valentine Burley, Rodrigo Vivi, Alexander Usyskin, Alan Previn On Tue, 25 Nov 2025, Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> wrote: > On 11/25/2025 2:28 AM, Jani Nikula wrote: >> On Fri, 14 Nov 2025, Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> wrote: >>> 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. >>> v3: rebase on exported pci id list. >>> >>> 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 | 25 +++++++++++++++++++++++++ >>> 1 file changed, 25 insertions(+) >>> >>> diff --git a/drivers/gpu/drm/i915/pxp/intel_pxp.c b/drivers/gpu/drm/i915/pxp/intel_pxp.c >>> index 2860474ad2d0..26e7c5c26bac 100644 >>> --- a/drivers/gpu/drm/i915/pxp/intel_pxp.c >>> +++ b/drivers/gpu/drm/i915/pxp/intel_pxp.c >>> @@ -3,6 +3,7 @@ >>> * Copyright(c) 2020 Intel Corporation. >>> */ >>> >>> +#include <linux/mei_me.h> >>> #include <linux/workqueue.h> >>> >>> #include <drm/drm_print.h> >>> @@ -197,6 +198,15 @@ static struct intel_gt *find_gt_for_required_protected_content(struct drm_i915_p >>> return NULL; >>> } >>> >>> +static bool mei_device_available(void) >>> +{ >>> +#if IS_ENABLED(CONFIG_INTEL_MEI_ME) >>> + return pci_dev_present(mei_me_pci_tbl); >>> +#else >>> + return false; >>> +#endif >>> +} >>> + >> I think it's just ugly to have this in i915. IMO the function belongs in >> mei. > > That is what I had in v1 [1], but there were concerns from Greg about > the state changing after we check it and the relevant required locking > to avoid that. In i915 we don't care if the state changes after we check > it and therefore we don't need locking, so I moved the actual check to > i915 with an explanation (see comment in the code below). I'm not sure how it makes a difference where the check is. I just think the whole mei_device_available() function above is a bunch of mei implementation details that i915 should not have to know. i915 shouldn't have to do any CONFIG_INTEL_MEI_ME stuff, i915 shouldn't have to know mei_me_pci_tbl or what it means. BR, Jani. > > [1] > https://patchwork.freedesktop.org/patch/664208/?series=151677&rev=1 > > Daniele > >> >> BR, >> Jani. >> >>> int intel_pxp_init(struct drm_i915_private *i915) >>> { >>> struct intel_gt *gt; >>> @@ -205,6 +215,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. > -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3 2/2] drm/i915/pxp: Do not support PXP if CSME is not available 2025-11-26 9:31 ` Jani Nikula @ 2025-11-26 22:24 ` Daniele Ceraolo Spurio 0 siblings, 0 replies; 11+ messages in thread From: Daniele Ceraolo Spurio @ 2025-11-26 22:24 UTC (permalink / raw) To: Jani Nikula, intel-gfx Cc: gregkh, Valentine Burley, Rodrigo Vivi, Alexander Usyskin, Alan Previn On 11/26/2025 1:31 AM, Jani Nikula wrote: > On Tue, 25 Nov 2025, Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> wrote: >> On 11/25/2025 2:28 AM, Jani Nikula wrote: >>> On Fri, 14 Nov 2025, Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> wrote: >>>> 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. >>>> v3: rebase on exported pci id list. >>>> >>>> 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 | 25 +++++++++++++++++++++++++ >>>> 1 file changed, 25 insertions(+) >>>> >>>> diff --git a/drivers/gpu/drm/i915/pxp/intel_pxp.c b/drivers/gpu/drm/i915/pxp/intel_pxp.c >>>> index 2860474ad2d0..26e7c5c26bac 100644 >>>> --- a/drivers/gpu/drm/i915/pxp/intel_pxp.c >>>> +++ b/drivers/gpu/drm/i915/pxp/intel_pxp.c >>>> @@ -3,6 +3,7 @@ >>>> * Copyright(c) 2020 Intel Corporation. >>>> */ >>>> >>>> +#include <linux/mei_me.h> >>>> #include <linux/workqueue.h> >>>> >>>> #include <drm/drm_print.h> >>>> @@ -197,6 +198,15 @@ static struct intel_gt *find_gt_for_required_protected_content(struct drm_i915_p >>>> return NULL; >>>> } >>>> >>>> +static bool mei_device_available(void) >>>> +{ >>>> +#if IS_ENABLED(CONFIG_INTEL_MEI_ME) >>>> + return pci_dev_present(mei_me_pci_tbl); >>>> +#else >>>> + return false; >>>> +#endif >>>> +} >>>> + >>> I think it's just ugly to have this in i915. IMO the function belongs in >>> mei. >> That is what I had in v1 [1], but there were concerns from Greg about >> the state changing after we check it and the relevant required locking >> to avoid that. In i915 we don't care if the state changes after we check >> it and therefore we don't need locking, so I moved the actual check to >> i915 with an explanation (see comment in the code below). > I'm not sure how it makes a difference where the check is. > > I just think the whole mei_device_available() function above is a bunch > of mei implementation details that i915 should not have to know. i915 > shouldn't have to do any CONFIG_INTEL_MEI_ME stuff, i915 shouldn't have > to know mei_me_pci_tbl or what it means. I'm ok with moving this back to mei if Greg is ok with having it there without any locking (since I wouldn't even know what locking to add on the mei side in this scenario). Greg, any feedback here? Thanks, Daniele > > BR, > Jani. > >> [1] >> https://patchwork.freedesktop.org/patch/664208/?series=151677&rev=1 >> Daniele >> >>> BR, >>> Jani. >>> >>>> int intel_pxp_init(struct drm_i915_private *i915) >>>> { >>>> struct intel_gt *gt; >>>> @@ -205,6 +215,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. ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ i915.CI.Full: failure for Check if CSME is available before initializing PXP (rev3) 2025-11-14 20:14 [PATCH v3 0/2] Check if CSME is available before initializing PXP Daniele Ceraolo Spurio 2025-11-14 20:14 ` [PATCH v3 1/2] mei: me: Export the PCI ID list Daniele Ceraolo Spurio 2025-11-14 20:14 ` [PATCH v3 2/2] drm/i915/pxp: Do not support PXP if CSME is not available Daniele Ceraolo Spurio @ 2025-11-15 13:13 ` Patchwork 2 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-11-15 13:13 UTC (permalink / raw) To: Daniele Ceraolo Spurio; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 148544 bytes --] == Series Details == Series: Check if CSME is available before initializing PXP (rev3) URL : https://patchwork.freedesktop.org/series/151677/ State : failure == Summary == CI Bug Log - changes from CI_DRM_17553_full -> Patchwork_151677v3_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_151677v3_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_151677v3_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 (10 -> 11) ------------------------------ Additional (1): shard-dg2-set2 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_151677v3_full: ### IGT changes ### #### Possible regressions #### * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_universal_plane@disable-primary-vs-flip: - shard-tglu: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-tglu-7/igt@kms_universal_plane@disable-primary-vs-flip.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-5/igt@kms_universal_plane@disable-primary-vs-flip.html Known issues ------------ Here are the changes found in Patchwork_151677v3_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][5] ([i915#11078]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-8/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#11078]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@device_reset@unbind-cold-reset-rebind.html * igt@fbdev@eof: - shard-rkl: [PASS][7] -> [SKIP][8] ([i915#14544] / [i915#2582]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@fbdev@eof.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@fbdev@eof.html * igt@fbdev@info: - shard-rkl: [PASS][9] -> [SKIP][10] ([i915#14544] / [i915#1849] / [i915#2582]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@fbdev@info.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@fbdev@info.html * igt@gem_ccs@suspend-resume: - shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][12] -> [INCOMPLETE][13] ([i915#12392] / [i915#13356]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-3/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][14] ([i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-8/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu-1: NOTRUN -> [SKIP][15] ([i915#6335]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#8555]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#8555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@engines: - shard-tglu-1: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@gem_ctx_sseu@engines.html * igt@gem_exec_balancer@parallel-contexts: - shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#4525]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [SKIP][20] ([i915#4525]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-7/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][21] ([i915#11965]) +4 other tests fail [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_capture@pi@vecs0: - shard-dg2: [PASS][22] -> [FAIL][23] ([i915#14024]) +1 other test fail [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-8/igt@gem_exec_capture@pi@vecs0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-4/igt@gem_exec_capture@pi@vecs0.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#4812]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#3539] / [i915#4852]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_reloc@basic-concurrent0: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#3281]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@gem_exec_reloc@basic-concurrent0.html * igt@gem_exec_reloc@basic-wc-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#3281]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html * igt@gem_exec_reloc@basic-write-cpu-noreloc: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3281]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@gem_exec_reloc@basic-write-cpu-noreloc.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#4537] / [i915#4812]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [PASS][30] -> [INCOMPLETE][31] ([i915#13356]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-7/igt@gem_exec_suspend@basic-s0@smem.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-1/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4860]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@gem_fence_thrash@bo-copy.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#4860]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][34] ([i915#4613]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-8/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@parallel-random: - shard-glk: NOTRUN -> [SKIP][35] ([i915#4613]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-glk3/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#4613]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: NOTRUN -> [TIMEOUT][37] ([i915#5493]) +1 other test timeout [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu-1: NOTRUN -> [SKIP][38] ([i915#4613]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#8289]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@gem_media_fill@media-fill.html * igt@gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#4083]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@gem_mmap@bad-object.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4077]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_mmap_gtt@flink-race: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#4077]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@gem_mmap_gtt@flink-race.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#3282]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@display: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#3282]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@gem_pread@display.html * igt@gem_pwrite_snooped: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3282]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@gem_pwrite_snooped.html * igt@gem_pxp@create-valid-protected-context: - shard-rkl: [PASS][46] -> [TIMEOUT][47] ([i915#12964]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-8/igt@gem_pxp@create-valid-protected-context.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-7/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [SKIP][48] ([i915#13398]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-7/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-rkl: [PASS][49] -> [TIMEOUT][50] ([i915#12917] / [i915#12964]) +3 other tests timeout [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-8/igt@gem_pxp@protected-raw-src-copy-not-readible.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-5/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4270]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-rkl: NOTRUN -> [TIMEOUT][52] ([i915#12917] / [i915#12964]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][53] +177 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-glk3/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#5190] / [i915#8428]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4079]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_userptr_blits@coherency-unsync: - shard-tglu-1: NOTRUN -> [SKIP][56] ([i915#3297]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu-1: NOTRUN -> [SKIP][57] ([i915#3297] / [i915#3323]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gen9_exec_parse@bb-large: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#2856]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-far: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#2527] / [i915#2856]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-8/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@bb-start-param: - shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#2527] / [i915#2856]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#2527]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@unaligned-access: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#2527]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@gen9_exec_parse@unaligned-access.html * igt@i915_drm_fdinfo@busy-check-all@vecs0: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#11527]) +7 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@i915_drm_fdinfo@busy-check-all@vecs0.html * igt@i915_drm_fdinfo@busy-hang@vcs0: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#14073]) +5 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@i915_drm_fdinfo@busy-hang@vcs0.html * igt@i915_module_load@resize-bar: - shard-dg2: [PASS][65] -> [DMESG-WARN][66] ([i915#14545]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-10/igt@i915_module_load@resize-bar.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@i915_module_load@resize-bar.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][67] ([i915#13790] / [i915#2681]) +1 other test warn [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@system-suspend: - shard-dg1: NOTRUN -> [DMESG-WARN][68] ([i915#4423]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@i915_pm_rpm@system-suspend.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#6245]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#6188]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@live@gt_pm: - shard-rkl: [PASS][71] -> [DMESG-FAIL][72] ([i915#12964]) +1 other test dmesg-fail [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-8/igt@i915_selftest@live@gt_pm.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-7/igt@i915_selftest@live@gt_pm.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4212]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#9531]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-dg2: [PASS][75] -> [FAIL][76] ([i915#5956]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][77] ([i915#5956]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-addfb: - shard-tglu-1: NOTRUN -> [SKIP][78] ([i915#5286]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#5286]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4538] / [i915#5286]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#3638]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#3638]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4538] / [i915#5190]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#10307] / [i915#10434] / [i915#6095]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#6095]) +42 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#10307] / [i915#6095]) +95 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-4/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][87] ([i915#6095]) +29 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#6095]) +19 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1: - shard-glk10: NOTRUN -> [SKIP][89] +130 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-glk10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][90] ([i915#12805]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-dg2: [PASS][91] -> [ABORT][92] ([i915#15091] / [i915#15132]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#14098] / [i915#6095]) +33 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-d-dp-3: - shard-dg2: NOTRUN -> [ABORT][94] ([i915#15091] / [i915#15132]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-d-dp-3.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#6095]) +12 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#12313]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#12313]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#6095]) +127 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html * igt@kms_cdclk@mode-transition: - shard-tglu: NOTRUN -> [SKIP][99] ([i915#3742]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-8/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_color@ctm-max: - shard-dg2: NOTRUN -> [SKIP][100] +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#11151] / [i915#7828]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#11151] / [i915#7828]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#11151] / [i915#7828]) +4 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-tglu: NOTRUN -> [SKIP][104] ([i915#11151] / [i915#7828]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-8/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#11151] / [i915#7828]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_color@ctm-blue-to-red: - shard-rkl: [PASS][106] -> [SKIP][107] ([i915#12655] / [i915#14544]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@kms_color@ctm-blue-to-red.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_color@ctm-blue-to-red.html * igt@kms_color@deep-color: - shard-tglu-1: NOTRUN -> [SKIP][108] ([i915#3555] / [i915#9979]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-8/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#9424]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@type1: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#7116] / [i915#9424]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#13049]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][114] ([i915#13566]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-2.html * igt@kms_cursor_edge_walk@64x64-left-edge: - shard-rkl: NOTRUN -> [DMESG-WARN][115] ([i915#12964]) +11 other tests dmesg-warn [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_cursor_edge_walk@64x64-left-edge.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu: NOTRUN -> [SKIP][116] ([i915#4103]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#4103] / [i915#4213]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#13046] / [i915#5354]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-rkl: NOTRUN -> [SKIP][119] +6 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#4103] / [i915#4213]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][121] ([i915#9723]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-dg2: [PASS][122] -> [SKIP][123] ([i915#3555]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#3804]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#13707]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#3555] / [i915#3840]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#3555] / [i915#3840]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#3555] / [i915#3840]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-7/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#3469]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-1x: - shard-rkl: [PASS][130] -> [SKIP][131] ([i915#14544] / [i915#9738]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@kms_feature_discovery@display-1x.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_feature_discovery@display-1x.html * igt@kms_feature_discovery@psr2: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#658]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-7/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-dpms: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#3637] / [i915#9934]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-7/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#9934]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#9934]) +2 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#3637] / [i915#9934]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#9934]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-rkl: [PASS][138] -> [DMESG-WARN][139] ([i915#12964]) +16 other tests dmesg-warn [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-rkl: [PASS][140] -> [SKIP][141] ([i915#14544] / [i915#3637]) +6 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#8381]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1: - shard-rkl: NOTRUN -> [ABORT][143] ([i915#15132]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-4/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#2672] / [i915#3555]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#2587] / [i915#2672]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#2587] / [i915#2672] / [i915#3555]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/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-dg1: NOTRUN -> [SKIP][147] ([i915#2587] / [i915#2672]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#2672]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][149] ([i915#2672] / [i915#3555]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-rkl: [PASS][150] -> [SKIP][151] ([i915#14544] / [i915#3555]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#2672] / [i915#3555]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#2587] / [i915#2672]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#2672] / [i915#3555] / [i915#5190]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#2672]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-rkl: [PASS][156] -> [SKIP][157] ([i915#14544] / [i915#1849] / [i915#5354]) +8 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#8708]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#1825]) +5 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][160] +30 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#15102]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#15102]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#4423] / [i915#8708]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#5354]) +8 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][165] +27 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#15102]) +13 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#15102]) +9 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-dg1: NOTRUN -> [SKIP][168] ([i915#15102] / [i915#3458]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#9766]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#15104]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#8708]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#15102] / [i915#3458]) +2 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#15102] / [i915#3023]) +3 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt@kms_hdr@static-toggle: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#8228]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-dpms: - shard-dg2: [PASS][175] -> [SKIP][176] ([i915#3555] / [i915#8228]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-11/igt@kms_hdr@static-toggle-dpms.html [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-1/igt@kms_hdr@static-toggle-dpms.html * igt@kms_invalid_mode@zero-hdisplay: - shard-rkl: [PASS][177] -> [SKIP][178] ([i915#14544] / [i915#3555] / [i915#8826]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_invalid_mode@zero-hdisplay.html [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_invalid_mode@zero-hdisplay.html * igt@kms_joiner@basic-big-joiner: - shard-tglu: NOTRUN -> [SKIP][179] ([i915#10656]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-7/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2: [PASS][180] -> [SKIP][181] ([i915#12388]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-11/igt@kms_joiner@basic-force-big-joiner.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-8/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#12339]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-8/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#10656] / [i915#12388]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][184] ([i915#12394]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#13522]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_lease@lease-invalid-plane: - shard-rkl: [PASS][186] -> [SKIP][187] ([i915#14544]) +51 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@kms_lease@lease-invalid-plane.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_lease@lease-invalid-plane.html * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-dg1: NOTRUN -> [SKIP][188] +8 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: - shard-rkl: [PASS][189] -> [SKIP][190] ([i915#11190] / [i915#14544]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-rkl: [PASS][191] -> [ABORT][192] ([i915#15132]) +2 other tests abort [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_pipe_crc_basic@suspend-read-crc.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][193] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-glk1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_plane@pixel-format-source-clamping: - shard-rkl: [PASS][194] -> [SKIP][195] ([i915#14544] / [i915#8825]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@kms_plane@pixel-format-source-clamping.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane_lowres@tiling-yf: - shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#3555]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-4: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#13958]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-none: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#13958]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@2x-tiling-y: - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#13958]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers: - shard-rkl: [PASS][200] -> [SKIP][201] ([i915#14544] / [i915#8152]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#12247]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-rkl: [PASS][203] -> [SKIP][204] ([i915#12247] / [i915#14544] / [i915#6953] / [i915#8152]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-5.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling: - shard-rkl: [PASS][205] -> [SKIP][206] ([i915#12247] / [i915#14544] / [i915#8152]) +7 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a: - shard-rkl: [PASS][207] -> [SKIP][208] ([i915#12247] / [i915#14544]) +5 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html * igt@kms_plane_scaling@planes-scaler-unity-scaling: - shard-rkl: [PASS][209] -> [SKIP][210] ([i915#14544] / [i915#3555] / [i915#8152]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_plane_scaling@planes-scaler-unity-scaling.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-rkl: [PASS][211] -> [SKIP][212] ([i915#12247] / [i915#14544] / [i915#3555] / [i915#6953] / [i915#8152]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [PASS][213] -> [SKIP][214] ([i915#15073]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#15073]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@system-suspend-idle: - shard-dg2: [PASS][216] -> [INCOMPLETE][217] ([i915#14419]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-6/igt@kms_pm_rpm@system-suspend-idle.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-5/igt@kms_pm_rpm@system-suspend-idle.html - shard-rkl: [PASS][218] -> [INCOMPLETE][219] ([i915#14419]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-7/igt@kms_pm_rpm@system-suspend-idle.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-3/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#6524]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_properties@get_properties-sanity-non-atomic: - shard-dg1: [PASS][221] -> [DMESG-WARN][222] ([i915#4423]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-15/igt@kms_properties@get_properties-sanity-non-atomic.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-15/igt@kms_properties@get_properties-sanity-non-atomic.html * igt@kms_properties@plane-properties-atomic: - shard-rkl: [PASS][223] -> [SKIP][224] ([i915#11521] / [i915#14544]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@kms_properties@plane-properties-atomic.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_properties@plane-properties-atomic.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#11520]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#11520]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][227] ([i915#11520]) +4 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-glk1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#11520]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#11520]) +3 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-glk10: NOTRUN -> [SKIP][230] ([i915#11520]) +3 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-glk10/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][231] ([i915#11520]) +3 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-8/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#9683]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-8/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#1072] / [i915#9732]) +4 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt@kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#1072] / [i915#9732]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-tglu: NOTRUN -> [SKIP][235] ([i915#9732]) +8 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-7/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#9732]) +11 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][237] ([i915#1072] / [i915#9732]) +4 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#5190]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#5289]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][240] ([i915#3555]) +3 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-8/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_scaling_modes@scaling-mode-none: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#3555]) +2 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_sharpness_filter@filter-toggle: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#15232]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-8/igt@kms_sharpness_filter@filter-toggle.html * igt@kms_sharpness_filter@invalid-plane-with-filter: - shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#15232]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@kms_sharpness_filter@invalid-plane-with-filter.html * igt@kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][244] ([i915#12276]) +1 other test incomplete [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-glk9/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@negative-basic: - shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#3555] / [i915#9906]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#9906]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#9906]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#2437] / [i915#9412]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@polling-small-buf: - shard-rkl: [PASS][249] -> [FAIL][250] ([i915#14550]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@perf@polling-small-buf.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@perf@polling-small-buf.html * igt@perf_pmu@module-unload: - shard-glk: NOTRUN -> [FAIL][251] ([i915#14433]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-glk3/igt@perf_pmu@module-unload.html - shard-tglu-1: NOTRUN -> [FAIL][252] ([i915#14433]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-1/igt@perf_pmu@module-unload.html * igt@perf_pmu@most-busy-idle-check-all: - shard-rkl: [PASS][253] -> [FAIL][254] ([i915#4349]) +1 other test fail [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-8/igt@perf_pmu@most-busy-idle-check-all.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-7/igt@perf_pmu@most-busy-idle-check-all.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#8516]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@perf_pmu@rc6-all-gts.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#14121]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@prime_mmap@test_aperture_limit.html * igt@prime_vgem@basic-fence-flip: - shard-rkl: [PASS][257] -> [SKIP][258] ([i915#14544] / [i915#3708]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@prime_vgem@basic-fence-flip.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@prime_vgem@basic-fence-flip.html * igt@sriov_basic@bind-unbind-vf: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#9917]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#9917]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-tglu: NOTRUN -> [FAIL][261] ([i915#12910]) +9 other tests fail [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-7/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sysfs_heartbeat_interval@precise@vcs0: - shard-rkl: [PASS][262] -> [FAIL][263] ([i915#14783]) +1 other test fail [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-7/igt@sysfs_heartbeat_interval@precise@vcs0.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-3/igt@sysfs_heartbeat_interval@precise@vcs0.html #### Possible fixes #### * igt@drm_read@empty-block: - shard-rkl: [SKIP][264] ([i915#14544]) -> [PASS][265] +49 other tests pass [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@drm_read@empty-block.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@drm_read@empty-block.html * igt@fbdev@pan: - shard-rkl: [SKIP][266] ([i915#14544] / [i915#2582]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@fbdev@pan.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@fbdev@pan.html * igt@gem_pxp@display-protected-crc: - shard-rkl: [TIMEOUT][268] ([i915#12917] / [i915#12964]) -> [PASS][269] +3 other tests pass [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@gem_pxp@display-protected-crc.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: [TIMEOUT][270] ([i915#12964]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-rkl: [SKIP][272] ([i915#4270]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-off-1.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@i915_module_load@load: - shard-dg1: ([PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [SKIP][296], [PASS][297]) ([i915#14785]) -> ([PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-19/igt@i915_module_load@load.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-14/igt@i915_module_load@load.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-18/igt@i915_module_load@load.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-12/igt@i915_module_load@load.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-12/igt@i915_module_load@load.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-19/igt@i915_module_load@load.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-15/igt@i915_module_load@load.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-12/igt@i915_module_load@load.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-17/igt@i915_module_load@load.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-13/igt@i915_module_load@load.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-14/igt@i915_module_load@load.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-15/igt@i915_module_load@load.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-15/igt@i915_module_load@load.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-13/igt@i915_module_load@load.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-17/igt@i915_module_load@load.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-18/igt@i915_module_load@load.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-13/igt@i915_module_load@load.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-14/igt@i915_module_load@load.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-16/igt@i915_module_load@load.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-19/igt@i915_module_load@load.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-16/igt@i915_module_load@load.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-16/igt@i915_module_load@load.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-13/igt@i915_module_load@load.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-18/igt@i915_module_load@load.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-16/igt@i915_module_load@load.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-12/igt@i915_module_load@load.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-12/igt@i915_module_load@load.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-18/igt@i915_module_load@load.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@i915_module_load@load.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-17/igt@i915_module_load@load.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-19/igt@i915_module_load@load.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-13/igt@i915_module_load@load.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-12/igt@i915_module_load@load.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-16/igt@i915_module_load@load.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@i915_module_load@load.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-16/igt@i915_module_load@load.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-17/igt@i915_module_load@load.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-19/igt@i915_module_load@load.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-15/igt@i915_module_load@load.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-17/igt@i915_module_load@load.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-13/igt@i915_module_load@load.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-13/igt@i915_module_load@load.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-19/igt@i915_module_load@load.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-18/igt@i915_module_load@load.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-19/igt@i915_module_load@load.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-14/igt@i915_module_load@load.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-15/igt@i915_module_load@load.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-15/igt@i915_module_load@load.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-18/igt@i915_module_load@load.html - shard-dg2: ([PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [SKIP][329], [PASS][330], [PASS][331], [PASS][332], [PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337], [PASS][338], [PASS][339], [PASS][340], [PASS][341], [PASS][342], [PASS][343], [PASS][344], [PASS][345], [PASS][346]) ([i915#14785]) -> ([PASS][347], [PASS][348], [PASS][349], [PASS][350], [PASS][351], [PASS][352], [PASS][353], [PASS][354], [PASS][355], [PASS][356], [PASS][357], [PASS][358], [PASS][359], [PASS][360], [PASS][361], [PASS][362], [PASS][363], [PASS][364], [PASS][365], [PASS][366], [PASS][367], [PASS][368], [PASS][369], [PASS][370]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-7/igt@i915_module_load@load.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-1/igt@i915_module_load@load.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-3/igt@i915_module_load@load.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-8/igt@i915_module_load@load.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-7/igt@i915_module_load@load.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-4/igt@i915_module_load@load.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-1/igt@i915_module_load@load.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-6/igt@i915_module_load@load.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-11/igt@i915_module_load@load.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-1/igt@i915_module_load@load.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-5/igt@i915_module_load@load.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-6/igt@i915_module_load@load.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-11/igt@i915_module_load@load.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-10/igt@i915_module_load@load.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-3/igt@i915_module_load@load.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-6/igt@i915_module_load@load.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-4/igt@i915_module_load@load.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-11/igt@i915_module_load@load.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-8/igt@i915_module_load@load.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-5/igt@i915_module_load@load.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-5/igt@i915_module_load@load.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-4/igt@i915_module_load@load.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-3/igt@i915_module_load@load.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-10/igt@i915_module_load@load.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-7/igt@i915_module_load@load.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-4/igt@i915_module_load@load.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-8/igt@i915_module_load@load.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-1/igt@i915_module_load@load.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-7/igt@i915_module_load@load.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-1/igt@i915_module_load@load.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@i915_module_load@load.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-8/igt@i915_module_load@load.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@i915_module_load@load.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-7/igt@i915_module_load@load.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-7/igt@i915_module_load@load.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-3/igt@i915_module_load@load.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-10/igt@i915_module_load@load.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-6/igt@i915_module_load@load.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-4/igt@i915_module_load@load.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-1/igt@i915_module_load@load.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-3/igt@i915_module_load@load.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-6/igt@i915_module_load@load.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-11/igt@i915_module_load@load.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-6/igt@i915_module_load@load.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-8/igt@i915_module_load@load.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-5/igt@i915_module_load@load.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-5/igt@i915_module_load@load.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-4/igt@i915_module_load@load.html * igt@i915_power@sanity: - shard-mtlp: [SKIP][371] ([i915#7984]) -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-mtlp-8/igt@i915_power@sanity.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-mtlp-6/igt@i915_power@sanity.html * igt@i915_selftest@live@workarounds: - shard-dg2: [DMESG-FAIL][373] ([i915#12061]) -> [PASS][374] +1 other test pass [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-8/igt@i915_selftest@live@workarounds.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-4/igt@i915_selftest@live@workarounds.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-dg2: [FAIL][375] ([i915#5956]) -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: [DMESG-WARN][377] ([i915#12964]) -> [PASS][378] +12 other tests pass [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_color@gamma: - shard-rkl: [SKIP][379] ([i915#12655] / [i915#14544]) -> [PASS][380] +3 other tests pass [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_color@gamma.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_color@gamma.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [FAIL][381] ([i915#13566]) -> [PASS][382] +3 other tests pass [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-256x85.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html - shard-rkl: [FAIL][383] ([i915#13566]) -> [PASS][384] [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x85.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg1: [DMESG-WARN][385] ([i915#4423]) -> [PASS][386] +1 other test pass [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-15/igt@kms_fbcon_fbt@fbc-suspend.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-12/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@basic-flip-vs-dpms: - shard-rkl: [SKIP][387] ([i915#14544] / [i915#3637]) -> [PASS][388] +2 other tests pass [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_flip@basic-flip-vs-dpms.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_flip@flip-vs-suspend: - shard-rkl: [INCOMPLETE][389] ([i915#6113]) -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-3/igt@kms_flip@flip-vs-suspend.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@wf_vblank-ts-check-interruptible: - shard-dg2: [FAIL][391] -> [PASS][392] +1 other test pass [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-5/igt@kms_flip@wf_vblank-ts-check-interruptible.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-8/igt@kms_flip@wf_vblank-ts-check-interruptible.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-rkl: [SKIP][393] ([i915#14544] / [i915#3555]) -> [PASS][394] +2 other tests pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-dg2: [FAIL][395] ([i915#6880]) -> [PASS][396] [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][397] ([i915#14544] / [i915#1849] / [i915#5354]) -> [PASS][398] +8 other tests pass [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_hdmi_inject@inject-audio: - shard-snb: [SKIP][399] -> [PASS][400] [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-snb7/igt@kms_hdmi_inject@inject-audio.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-snb1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_invalid_mode@bad-vsync-start: - shard-rkl: [SKIP][401] ([i915#14544] / [i915#3555] / [i915#8826]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_invalid_mode@bad-vsync-start.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_invalid_mode@bad-vsync-start.html * igt@kms_pipe_crc_basic@read-crc: - shard-rkl: [SKIP][403] ([i915#11190] / [i915#14544]) -> [PASS][404] [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_pipe_crc_basic@read-crc.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_pipe_crc_basic@read-crc.html * igt@kms_plane_scaling@invalid-num-scalers: - shard-rkl: [SKIP][405] ([i915#14544] / [i915#3555] / [i915#6953] / [i915#8152]) -> [PASS][406] [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_plane_scaling@invalid-num-scalers.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_plane_scaling@invalid-num-scalers.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format: - shard-rkl: [SKIP][407] ([i915#14544] / [i915#8152]) -> [PASS][408] +1 other test pass [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-rkl: [SKIP][409] ([i915#12247] / [i915#14544] / [i915#6953] / [i915#8152]) -> [PASS][410] [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a: - shard-rkl: [SKIP][411] ([i915#12247] / [i915#14544]) -> [PASS][412] +2 other tests pass [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b: - shard-rkl: [SKIP][413] ([i915#12247] / [i915#14544] / [i915#8152]) -> [PASS][414] +2 other tests pass [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][415] ([i915#14544] / [i915#15073]) -> [PASS][416] +1 other test pass [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [SKIP][417] ([i915#15073]) -> [PASS][418] +1 other test pass [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@perf_pmu@most-busy-check-all: - shard-rkl: [FAIL][419] ([i915#4349]) -> [PASS][420] +1 other test pass [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@perf_pmu@most-busy-check-all.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-7/igt@perf_pmu@most-busy-check-all.html #### Warnings #### * igt@device_reset@cold-reset-bound: - shard-rkl: [SKIP][421] ([i915#11078]) -> [SKIP][422] ([i915#11078] / [i915#14544]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@device_reset@cold-reset-bound.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@device_reset@cold-reset-bound.html * igt@gem_basic@multigpu-create-close: - shard-rkl: [SKIP][423] ([i915#7697]) -> [SKIP][424] ([i915#14544] / [i915#7697]) +1 other test skip [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@gem_basic@multigpu-create-close.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: [SKIP][425] ([i915#9323]) -> [SKIP][426] ([i915#14544] / [i915#9323]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@gem_ccs@block-multicopy-compressed.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: [SKIP][427] ([i915#13008]) -> [SKIP][428] ([i915#13008] / [i915#14544]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@gem_ccs@large-ctrl-surf-copy.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_create@create-ext-set-pat: - shard-rkl: [SKIP][429] ([i915#14544] / [i915#8562]) -> [SKIP][430] ([i915#8562]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@gem_create@create-ext-set-pat.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_sseu@invalid-sseu: - shard-rkl: [SKIP][431] ([i915#280]) -> [SKIP][432] ([i915#14544] / [i915#280]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@gem_ctx_sseu@invalid-sseu.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@parallel: - shard-rkl: [SKIP][433] ([i915#4525]) -> [SKIP][434] ([i915#14544] / [i915#4525]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@gem_exec_balancer@parallel.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: [SKIP][435] ([i915#14544] / [i915#4525]) -> [SKIP][436] ([i915#4525]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-rkl: [SKIP][437] ([i915#6334]) -> [SKIP][438] ([i915#14544] / [i915#6334]) +1 other test skip [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@gem_exec_capture@capture-invisible@smem0.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-rkl: [SKIP][439] ([i915#14544] / [i915#3281]) -> [SKIP][440] ([i915#3281]) +5 other tests skip [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-rkl: [SKIP][441] ([i915#3281]) -> [SKIP][442] ([i915#14544] / [i915#3281]) +5 other tests skip [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_lmem_swapping@massive: - shard-rkl: [SKIP][443] ([i915#14544] / [i915#4613]) -> [SKIP][444] ([i915#4613]) [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@gem_lmem_swapping@massive.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: [SKIP][445] ([i915#4613]) -> [SKIP][446] ([i915#14544] / [i915#4613]) +3 other tests skip [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@gem_lmem_swapping@parallel-multi.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-rkl: [SKIP][447] ([i915#14544] / [i915#3282]) -> [SKIP][448] ([i915#3282]) +2 other tests skip [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-uncached.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: [SKIP][449] ([i915#3282]) -> [SKIP][450] ([i915#14544] / [i915#3282]) +5 other tests skip [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: [SKIP][451] ([i915#8411]) -> [SKIP][452] ([i915#14544] / [i915#8411]) [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: [SKIP][453] ([i915#14544] / [i915#8411]) -> [SKIP][454] ([i915#8411]) [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-rkl: [SKIP][455] ([i915#3297]) -> [SKIP][456] ([i915#14544] / [i915#3297]) +1 other test skip [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gen9_exec_parse@bb-start-far: - shard-rkl: [SKIP][457] ([i915#2527]) -> [SKIP][458] ([i915#14544] / [i915#2527]) +1 other test skip [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@gen9_exec_parse@bb-start-far.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@shadow-peek: - shard-rkl: [SKIP][459] ([i915#14544] / [i915#2527]) -> [SKIP][460] ([i915#2527]) +1 other test skip [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@gen9_exec_parse@shadow-peek.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@gen9_exec_parse@shadow-peek.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-rkl: [SKIP][461] ([i915#14498]) -> [SKIP][462] ([i915#14498] / [i915#14544]) [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@i915_pm_rc6_residency@rc6-idle.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html * igt@kms_async_flips@test-cursor-atomic: - shard-rkl: [DMESG-WARN][463] ([i915#12964]) -> [SKIP][464] ([i915#14544]) +3 other tests skip [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@kms_async_flips@test-cursor-atomic.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_async_flips@test-cursor-atomic.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: [SKIP][465] ([i915#1769] / [i915#3555]) -> [SKIP][466] ([i915#14544]) [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-rkl: [SKIP][467] ([i915#14544]) -> [SKIP][468] ([i915#5286]) +3 other tests skip [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: [SKIP][469] ([i915#5286]) -> [SKIP][470] ([i915#14544]) +7 other tests skip [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [470]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: [SKIP][471] ([i915#14544]) -> [SKIP][472] ([i915#3638]) +4 other tests skip [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html [472]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][473] ([i915#3638]) -> [SKIP][474] ([i915#14544]) [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html [474]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: [SKIP][475] -> [SKIP][476] ([i915#14544]) +19 other tests skip [475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html [476]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: [SKIP][477] ([i915#12313]) -> [SKIP][478] ([i915#14544]) [477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [478]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-rkl: [SKIP][479] ([i915#12805]) -> [SKIP][480] ([i915#14544]) [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [480]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-rkl: [SKIP][481] ([i915#14544]) -> [SKIP][482] ([i915#14098] / [i915#6095]) +8 other tests skip [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html [482]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: [SKIP][483] ([i915#14098] / [i915#6095]) -> [SKIP][484] ([i915#14544]) +14 other tests skip [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][485] ([i915#6095]) -> [SKIP][486] ([i915#14098] / [i915#6095]) +9 other tests skip [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html [486]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: [SKIP][487] ([i915#14544]) -> [SKIP][488] ([i915#12313]) [487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html [488]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_cdclk@mode-transition: - shard-rkl: [SKIP][489] ([i915#3742]) -> [SKIP][490] ([i915#14544] / [i915#3742]) [489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@kms_cdclk@mode-transition.html [490]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_color@degamma: - shard-rkl: [SKIP][491] ([i915#14544]) -> [SKIP][492] +16 other tests skip [491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_chamelium_color@degamma.html [492]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-resolution-list: - shard-rkl: [SKIP][493] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][494] ([i915#11151] / [i915#7828]) +3 other tests skip [493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-resolution-list.html [494]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_chamelium_edid@dp-edid-resolution-list.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-rkl: [SKIP][495] ([i915#11151] / [i915#7828]) -> [SKIP][496] ([i915#11151] / [i915#14544] / [i915#7828]) +8 other tests skip [495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html [496]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: [SKIP][497] ([i915#7118] / [i915#9424]) -> [SKIP][498] ([i915#14544]) [497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@kms_content_protection@atomic-dpms.html [498]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-rkl: [SKIP][499] ([i915#14544]) -> [SKIP][500] ([i915#9424]) [499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_content_protection@content-type-change.html [500]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][501] ([i915#9424]) -> [SKIP][502] ([i915#9433]) [501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-15/igt@kms_content_protection@mei-interface.html [502]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-12/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: [FAIL][503] ([i915#7173]) -> [SKIP][504] ([i915#7118]) [503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-10/igt@kms_content_protection@srm.html [504]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-5/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: [SKIP][505] ([i915#14544]) -> [SKIP][506] ([i915#3555]) +3 other tests skip [505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html [506]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-rkl: [FAIL][507] ([i915#13566]) -> [SKIP][508] ([i915#14544]) [507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42.html [508]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-rkl: [SKIP][509] ([i915#3555]) -> [SKIP][510] ([i915#14544]) +5 other tests skip [509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_cursor_crc@cursor-random-32x10.html [510]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-rkl: [SKIP][511] ([i915#13049]) -> [SKIP][512] ([i915#14544]) [511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html [512]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: [SKIP][513] ([i915#4103]) -> [SKIP][514] ([i915#11190] / [i915#14544]) [513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [514]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: [SKIP][515] ([i915#11190] / [i915#14544]) -> [SKIP][516] ([i915#4103]) [515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [516]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-rkl: [SKIP][517] ([i915#14544]) -> [SKIP][518] ([i915#4103]) [517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [518]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: [SKIP][519] ([i915#9723]) -> [SKIP][520] ([i915#14544]) [519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [520]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dp_aux_dev: - shard-rkl: [SKIP][521] ([i915#1257]) -> [SKIP][522] ([i915#1257] / [i915#14544]) [521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@kms_dp_aux_dev.html [522]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-basic: - shard-rkl: [SKIP][523] ([i915#11190] / [i915#14544]) -> [SKIP][524] ([i915#3555] / [i915#3840]) [523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_dsc@dsc-basic.html [524]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: [SKIP][525] ([i915#3555] / [i915#3840]) -> [SKIP][526] ([i915#14544]) [525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_dsc@dsc-with-bpc.html [526]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: [SKIP][527] ([i915#14544]) -> [SKIP][528] ([i915#3555] / [i915#3840]) [527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html [528]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_feature_discovery@display-3x: - shard-rkl: [SKIP][529] ([i915#1839]) -> [SKIP][530] ([i915#14544] / [i915#1839]) +1 other test skip [529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_feature_discovery@display-3x.html [530]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@psr1: - shard-rkl: [SKIP][531] ([i915#14544] / [i915#658]) -> [SKIP][532] ([i915#658]) +1 other test skip [531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_feature_discovery@psr1.html [532]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-rkl: [SKIP][533] ([i915#9934]) -> [SKIP][534] ([i915#14544] / [i915#9934]) +5 other tests skip [533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@kms_flip@2x-blocking-wf_vblank.html [534]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: [SKIP][535] ([i915#14544] / [i915#9934]) -> [SKIP][536] ([i915#9934]) +7 other tests skip [535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html [536]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-rkl: [SKIP][537] ([i915#14544] / [i915#3637]) -> [DMESG-WARN][538] ([i915#12964]) [537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [538]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-rkl: [SKIP][539] ([i915#2672] / [i915#3555]) -> [SKIP][540] ([i915#14544] / [i915#3555]) +1 other test skip [539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html [540]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: [SKIP][541] ([i915#14544] / [i915#3555]) -> [SKIP][542] ([i915#2672] / [i915#3555]) +2 other tests skip [541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html [542]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: [DMESG-WARN][543] ([i915#12964]) -> [SKIP][544] ([i915#14544] / [i915#1849] / [i915#5354]) +1 other test skip [543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html [544]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: [SKIP][545] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][546] ([i915#15102] / [i915#3023]) +14 other tests skip [545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html [546]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: [SKIP][547] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][548] ([i915#1825]) +23 other tests skip [547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [548]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-rkl: [SKIP][549] -> [SKIP][550] ([i915#14544] / [i915#1849] / [i915#5354]) [549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html [550]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt: - shard-rkl: [SKIP][551] ([i915#15102] / [i915#3023]) -> [SKIP][552] ([i915#14544] / [i915#1849] / [i915#5354]) +18 other tests skip [551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html [552]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt: - shard-rkl: [SKIP][553] ([i915#15102]) -> [SKIP][554] ([i915#14544]) +3 other tests skip [553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html [554]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html - shard-dg1: [SKIP][555] ([i915#15102]) -> [SKIP][556] ([i915#15102] / [i915#4423]) [555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html [556]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-rkl: [SKIP][557] ([i915#14544]) -> [SKIP][558] ([i915#15102]) +2 other tests skip [557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html [558]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][559] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][560] ([i915#15102] / [i915#3458]) +4 other tests skip [559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [560]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2: [SKIP][561] ([i915#15102] / [i915#3458]) -> [SKIP][562] ([i915#10433] / [i915#15102] / [i915#3458]) +2 other tests skip [561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html [562]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: [SKIP][563] ([i915#1825]) -> [SKIP][564] ([i915#14544] / [i915#1849] / [i915#5354]) +29 other tests skip [563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html [564]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: [SKIP][565] ([i915#3555] / [i915#8228]) -> [SKIP][566] ([i915#14544]) +1 other test skip [565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_hdr@static-toggle-suspend.html [566]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: [SKIP][567] ([i915#10656] / [i915#14544]) -> [SKIP][568] ([i915#10656]) [567]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html [568]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-rkl: [SKIP][569] ([i915#12388] / [i915#14544]) -> [SKIP][570] ([i915#12388]) [569]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_joiner@basic-force-big-joiner.html [570]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-rkl: [SKIP][571] ([i915#12339]) -> [SKIP][572] ([i915#12339] / [i915#14544]) [571]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@kms_joiner@basic-ultra-joiner.html [572]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: [SKIP][573] ([i915#10656] / [i915#12388] / [i915#14544]) -> [SKIP][574] ([i915#10656] / [i915#12388]) [573]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html [574]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-rkl: [SKIP][575] ([i915#13522]) -> [SKIP][576] ([i915#13522] / [i915#14544]) [575]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html [576]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_panel_fitting@legacy: - shard-rkl: [SKIP][577] ([i915#6301]) -> [SKIP][578] ([i915#14544]) [577]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@kms_panel_fitting@legacy.html [578]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-rkl: [SKIP][579] ([i915#14712]) -> [SKIP][580] ([i915#14544]) [579]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html [580]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-rkl: [SKIP][581] ([i915#14544]) -> [SKIP][582] ([i915#13958]) [581]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-yf.html [582]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: [SKIP][583] ([i915#14259]) -> [SKIP][584] ([i915#14544]) [583]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_plane_multiple@tiling-yf.html [584]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-rkl: [SKIP][585] -> [SKIP][586] ([i915#14544] / [i915#8152]) [585]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [586]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a: - shard-rkl: [SKIP][587] ([i915#12247]) -> [SKIP][588] ([i915#12247] / [i915#14544]) [587]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html [588]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b: - shard-rkl: [SKIP][589] ([i915#12247]) -> [SKIP][590] ([i915#12247] / [i915#14544] / [i915#8152]) +1 other test skip [589]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html [590]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: [SKIP][591] ([i915#14544] / [i915#3555] / [i915#8152]) -> [SKIP][592] ([i915#3555]) [591]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html [592]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: [SKIP][593] ([i915#12247] / [i915#14544]) -> [SKIP][594] ([i915#12247]) +1 other test skip [593]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html [594]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/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][595] ([i915#12247] / [i915#14544] / [i915#8152]) -> [SKIP][596] ([i915#12247]) +2 other tests skip [595]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html [596]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: [SKIP][597] ([i915#5354]) -> [SKIP][598] ([i915#14544] / [i915#5354]) [597]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@kms_pm_backlight@fade-with-dpms.html [598]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [SKIP][599] ([i915#15128]) -> [FAIL][600] ([i915#9295]) [599]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html [600]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-tglu-2/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-rkl: [SKIP][601] ([i915#9685]) -> [SKIP][602] ([i915#14544] / [i915#9685]) [601]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_pm_dc@dc6-psr.html [602]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][603] ([i915#4281]) -> [SKIP][604] ([i915#14544] / [i915#4281]) [603]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html [604]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][605] ([i915#15073]) -> [SKIP][606] ([i915#14544] / [i915#15073]) [605]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [606]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][607] ([i915#14544] / [i915#15073]) -> [SKIP][608] ([i915#15073]) +1 other test skip [607]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html [608]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][609] ([i915#12916]) -> [SKIP][610] ([i915#14544] / [i915#15073]) [609]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [610]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-rkl: [SKIP][611] ([i915#11520] / [i915#14544]) -> [SKIP][612] ([i915#11520]) +5 other tests skip [611]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html [612]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-rkl: [SKIP][613] ([i915#11520]) -> [SKIP][614] ([i915#11520] / [i915#14544]) +7 other tests skip [613]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html [614]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-rkl: [SKIP][615] ([i915#9683]) -> [SKIP][616] ([i915#14544] / [i915#9683]) [615]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@kms_psr2_su@page_flip-p010.html [616]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-primary-blt: - shard-rkl: [SKIP][617] ([i915#1072] / [i915#9732]) -> [SKIP][618] ([i915#1072] / [i915#14544] / [i915#9732]) +18 other tests skip [617]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-5/igt@kms_psr@fbc-psr-primary-blt.html [618]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_psr@fbc-psr-primary-blt.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: [SKIP][619] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][620] ([i915#1072] / [i915#9732]) +15 other tests skip [619]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html [620]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg1: [SKIP][621] ([i915#4423] / [i915#5289]) -> [SKIP][622] ([i915#5289]) [621]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [622]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: [SKIP][623] ([i915#14544]) -> [SKIP][624] ([i915#5289]) [623]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [624]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_setmode@basic-clone-single-crtc: - shard-rkl: [SKIP][625] ([i915#3555]) -> [SKIP][626] ([i915#14544] / [i915#3555]) +1 other test skip [625]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@kms_setmode@basic-clone-single-crtc.html [626]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-rkl: [SKIP][627] ([i915#14544] / [i915#3555]) -> [SKIP][628] ([i915#3555]) [627]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_setmode@invalid-clone-single-crtc.html [628]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_sharpness_filter@filter-dpms: - shard-rkl: [SKIP][629] ([i915#14544]) -> [SKIP][630] ([i915#15232]) [629]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_sharpness_filter@filter-dpms.html [630]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@kms_sharpness_filter@filter-dpms.html * igt@kms_sharpness_filter@invalid-filter-with-scaler: - shard-rkl: [SKIP][631] ([i915#15232]) -> [SKIP][632] ([i915#14544]) +1 other test skip [631]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_sharpness_filter@invalid-filter-with-scaler.html [632]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_sharpness_filter@invalid-filter-with-scaler.html * igt@kms_vrr@flipline: - shard-rkl: [SKIP][633] ([i915#15243] / [i915#3555]) -> [SKIP][634] ([i915#14544]) [633]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@kms_vrr@flipline.html [634]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_vrr@flipline.html * igt@kms_vrr@max-min: - shard-rkl: [SKIP][635] ([i915#9906]) -> [SKIP][636] ([i915#14544]) [635]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-4/igt@kms_vrr@max-min.html [636]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@kms_vrr@max-min.html * igt@kms_writeback@writeback-check-output: - shard-rkl: [SKIP][637] ([i915#14544] / [i915#2437]) -> [SKIP][638] ([i915#2437]) [637]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_writeback@writeback-check-output.html [638]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-pixel-formats: - shard-rkl: [SKIP][639] ([i915#14544] / [i915#2437] / [i915#9412]) -> [SKIP][640] ([i915#2437] / [i915#9412]) [639]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@kms_writeback@writeback-pixel-formats.html [640]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@kms_writeback@writeback-pixel-formats.html * igt@perf_pmu@rc6-suspend: - shard-glk: [INCOMPLETE][641] ([i915#13356] / [i915#14242]) -> [INCOMPLETE][642] ([i915#13356]) [641]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-glk9/igt@perf_pmu@rc6-suspend.html [642]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-glk6/igt@perf_pmu@rc6-suspend.html * igt@prime_vgem@basic-read: - shard-rkl: [SKIP][643] ([i915#3291] / [i915#3708]) -> [SKIP][644] ([i915#14544] / [i915#3291] / [i915#3708]) [643]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@prime_vgem@basic-read.html [644]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@prime_vgem@basic-read.html * igt@prime_vgem@coherency-gtt: - shard-rkl: [SKIP][645] ([i915#14544] / [i915#3708]) -> [SKIP][646] ([i915#3708]) +1 other test skip [645]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@prime_vgem@coherency-gtt.html [646]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-8/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-rkl: [SKIP][647] ([i915#3708]) -> [SKIP][648] ([i915#14544] / [i915#3708]) +1 other test skip [647]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@prime_vgem@fence-read-hang.html [648]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: [SKIP][649] ([i915#14544] / [i915#9917]) -> [SKIP][650] ([i915#9917]) [649]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html [650]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-2/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-rkl: [SKIP][651] ([i915#9917]) -> [SKIP][652] ([i915#14544] / [i915#9917]) [651]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17553/shard-rkl-2/igt@sriov_basic@enable-vfs-bind-unbind-each.html [652]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151677v3/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [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#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527 [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#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [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#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#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14024]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14024 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121 [i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14550]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14550 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#14783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14783 [i915#14785]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14785 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15091]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15091 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15232]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15232 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [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#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#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [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#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [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#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [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#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [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#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [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#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [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#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [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#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [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#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9738]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9738 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 [i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979 Build changes ------------- * Linux: CI_DRM_17553 -> Patchwork_151677v3 CI-20190529: 20190529 CI_DRM_17553: 0602386d452aeaa5f0abadb7d2805ea45f97d9f6 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8625: 69d0aa3606a205aec90d6145bb20cbae755e8559 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_151677v3: 0602386d452aeaa5f0abadb7d2805ea45f97d9f6 @ 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_151677v3/index.html [-- Attachment #2: Type: text/html, Size: 199740 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2025-11-26 22:25 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-11-14 20:14 [PATCH v3 0/2] Check if CSME is available before initializing PXP Daniele Ceraolo Spurio 2025-11-14 20:14 ` [PATCH v3 1/2] mei: me: Export the PCI ID list Daniele Ceraolo Spurio 2025-11-25 10:26 ` Jani Nikula 2025-11-25 22:00 ` Daniele Ceraolo Spurio 2025-11-26 9:25 ` Jani Nikula 2025-11-14 20:14 ` [PATCH v3 2/2] drm/i915/pxp: Do not support PXP if CSME is not available Daniele Ceraolo Spurio 2025-11-25 10:28 ` Jani Nikula 2025-11-25 22:07 ` Daniele Ceraolo Spurio 2025-11-26 9:31 ` Jani Nikula 2025-11-26 22:24 ` Daniele Ceraolo Spurio 2025-11-15 13:13 ` ✗ i915.CI.Full: failure for Check if CSME is available before initializing PXP (rev3) Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox