Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/2] Redesign survivability mode
@ 2025-12-01 14:34 Riana Tauro
  2025-12-01 14:34 ` [PATCH v2 1/2] drm/xe/xe_survivability: " Riana Tauro
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Riana Tauro @ 2025-12-01 14:34 UTC (permalink / raw)
  To: intel-xe; +Cc: riana.tauro, anshuman.gupta, rodrigo.vivi, badal.nilawar

Redesign survivability mode to have only one value per file.

1) Retain the survivability_mode sysfs to indicate the type

        cat /sys/bus/pci/devices/0000\:03\:00.0/survivability_mode
        (Boot / Runtime)

2) Add survivability_info directory to expose boot breadcrumbs.
Entries in survivability mode sysfs are only visible when
boot breadcrumb registers are populated.

        /sys/bus/pci/devices/0000:03:00.0/survivability_info
        ├── aux_info0
        ├── aux_info1
        ├── aux_info2
        ├── aux_info3
        ├── aux_info4
        ├── capability_info
        ├── fdo_mode
        ├── postcode_trace
        └── postcode_trace_overflow

Capability_info:

        Provides data about boot status and has bits that
        indicate the support for the other breadcrumbs

Postcode Trace / Postcode Trace Overflow :

        Each postcode is represented as an 8-bit value and represents
        a boot failure event. When a new failure event is logged by PCODE
        the existing postcodes are shifted left. These entries provide a
        history of 8 postcodes.

Auxiliary Info:

        Some failures have additional debug information.

FDO Mode :
	v2 survivability breadcrumbs introduces a new mode called
	SPI Flash Descriptor Override mode (FDO). This is enabled by
	PCODE when MEI itself fails and firmware cannot be updated via
	MEI using igsc. This mode provides the ability to update
	the firmware directly via SPI driver.

	Xe KMD initializes the nvm aux driver if FDO mode is enabled.

	Userspace should check FDO mode entry in survivability sysfs
        before using the SPI driver to update firmware

Rev2: Fix review comments (Rodrigo)

Riana Tauro (2):
  drm/xe/xe_survivability: Redesign survivability mode
  drm/xe/xe_survivability: Add support for survivability mode v2

 drivers/gpu/drm/xe/xe_pcode_api.h             |   2 +
 drivers/gpu/drm/xe/xe_survivability_mode.c    | 241 ++++++++++++------
 .../gpu/drm/xe/xe_survivability_mode_types.h  |  28 +-
 3 files changed, 180 insertions(+), 91 deletions(-)

-- 
2.47.1


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

* [PATCH v2 1/2] drm/xe/xe_survivability: Redesign survivability mode
  2025-12-01 14:34 [PATCH v2 0/2] Redesign survivability mode Riana Tauro
@ 2025-12-01 14:34 ` Riana Tauro
  2025-12-01 17:48   ` Rodrigo Vivi
  2025-12-01 14:34 ` [PATCH v2 2/2] drm/xe/xe_survivability: Add support for survivability mode v2 Riana Tauro
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Riana Tauro @ 2025-12-01 14:34 UTC (permalink / raw)
  To: intel-xe; +Cc: riana.tauro, anshuman.gupta, rodrigo.vivi, badal.nilawar

Redesign survivability mode to have only one value per file.

1) Retain the survivability_mode sysfs to indicate the type

	cat /sys/bus/pci/devices/0000\:03\:00.0/survivability_mode
	(Boot / Runtime)

2) Add survivability_info directory to expose boot breadcrumbs.
Entries in survivability mode sysfs are only visible when
boot breadcrumb registers are populated.

	/sys/bus/pci/devices/0000:03:00.0/survivability_info
	├── aux_info0
	├── aux_info1
	├── aux_info2
	├── aux_info3
	├── aux_info4
	├── capability_info
	├── postcode_trace
	└── postcode_trace_overflow

Capability_info:

	Provides data about boot status and has bits that
	indicate the support for the other breadcrumbs

Postcode Trace / Postcode Trace Overflow :

	Each postcode is represented as an 8-bit value and represents
	a boot failure event. When a new failure event is logged by Pcode
	the existing postcodes are shifted left. These entries provide a
	history of 8 postcodes.

Auxiliary Info:

	Some failures have additional debug information.

Signed-off-by: Riana Tauro <riana.tauro@intel.com>
---
v2: Add array map for names (Rodrigo)
---
 drivers/gpu/drm/xe/xe_survivability_mode.c    | 199 +++++++++++-------
 .../gpu/drm/xe/xe_survivability_mode_types.h  |  22 +-
 2 files changed, 135 insertions(+), 86 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c b/drivers/gpu/drm/xe/xe_survivability_mode.c
index 1662bfddd4bc..b5b582442637 100644
--- a/drivers/gpu/drm/xe/xe_survivability_mode.c
+++ b/drivers/gpu/drm/xe/xe_survivability_mode.c
@@ -19,8 +19,6 @@
 #include "xe_pcode_api.h"
 #include "xe_vsec.h"
 
-#define MAX_SCRATCH_MMIO 8
-
 /**
  * DOC: Survivability Mode
  *
@@ -48,19 +46,25 @@
  *
  * Refer :ref:`xe_configfs` for more details on how to use configfs
  *
- * Survivability mode is indicated by the below admin-only readable sysfs which provides additional
- * debug information::
+ * Survivability mode is indicated by the below admin-only readable sysfs entry::
  *
  *	/sys/bus/pci/devices/<device>/survivability_mode
  *
- * Capability Information:
- *	Provides boot status
- * Postcode Information:
- *	Provides information about the failure
- * Overflow Information
- *	Provides history of previous failures
- * Auxiliary Information
- *	Certain failures may have information in addition to postcode information
+ * Survivability mode sysfs provides information about the type of survivability mode.
+ * Any additional debug information if present will be visible under the directory
+ * ``survivability_info``::
+ *
+ *     /sys/bus/pci/devices/<device>/survivability_info/
+ *
+ * This directory has the following attributes
+ *
+ * - ``capability_info`` : Indicates Boot status and support for additional information
+ *
+ * - ``postcode_trace``, ``postcode_trace_overflow`` : Each postcode is a 8bit value and
+ *   represents a boot failure event. When a new failure event is logged by PCODE the
+ *   existing postcodes are shifted left. These entries provide a history of 8 postcodes.
+ *
+ * - ``aux_info<n>`` : Some failures have additional debug information
  *
  * Runtime Survivability
  * =====================
@@ -79,49 +83,63 @@
  * to restore device to normal operation.
  */
 
+static const char * const reg_map[] = {
+	[CAPABILITY_INFO]         = "Capability_info",
+	[POSTCODE_TRACE]          = "Postcode trace",
+	[POSTCODE_TRACE_OVERFLOW] = "Postcode trace overflow",
+	[AUX_INFO0]               = "Auxiliary Info 0",
+	[AUX_INFO1]               = "Auxiliary Info 1",
+	[AUX_INFO2]               = "Auxiliary Info 2",
+	[AUX_INFO3]               = "Auxiliary Info 3",
+	[AUX_INFO4]               = "Auxiliary Info 4",
+};
+
+struct xe_survivability_attribute {
+	struct device_attribute attr;
+	u8 index;
+};
+
+static struct
+xe_survivability_attribute *dev_attr_to_survivability_attr(struct device_attribute *attr)
+{
+	return container_of(attr, struct xe_survivability_attribute, attr);
+}
+
 static u32 aux_history_offset(u32 reg_value)
 {
 	return REG_FIELD_GET(AUXINFO_HISTORY_OFFSET, reg_value);
 }
 
-static void set_survivability_info(struct xe_mmio *mmio, struct xe_survivability_info *info,
-				   int id, char *name)
+static void set_survivability_info(struct xe_mmio *mmio, u32  *info, int id)
 {
-	strscpy(info[id].name, name, sizeof(info[id].name));
-	info[id].reg = PCODE_SCRATCH(id).raw;
-	info[id].value = xe_mmio_read32(mmio, PCODE_SCRATCH(id));
+	info[id] = xe_mmio_read32(mmio, PCODE_SCRATCH(id));
 }
 
 static void populate_survivability_info(struct xe_device *xe)
 {
 	struct xe_survivability *survivability = &xe->survivability;
-	struct xe_survivability_info *info = survivability->info;
+	u32 *info = survivability->info;
 	struct xe_mmio *mmio;
 	u32 id = 0, reg_value;
-	char name[NAME_MAX];
 	int index;
 
 	mmio = xe_root_tile_mmio(xe);
-	set_survivability_info(mmio, info, id, "Capability Info");
-	reg_value = info[id].value;
+	set_survivability_info(mmio, info, CAPABILITY_INFO);
+	reg_value = info[CAPABILITY_INFO];
 
 	if (reg_value & HISTORY_TRACKING) {
-		id++;
-		set_survivability_info(mmio, info, id, "Postcode Info");
+		set_survivability_info(mmio, info, POSTCODE_TRACE);
 
-		if (reg_value & OVERFLOW_SUPPORT) {
-			id = REG_FIELD_GET(OVERFLOW_REG_OFFSET, reg_value);
-			set_survivability_info(mmio, info, id, "Overflow Info");
-		}
+		if (reg_value & OVERFLOW_SUPPORT)
+			set_survivability_info(mmio, info, POSTCODE_TRACE_OVERFLOW);
 	}
 
 	if (reg_value & AUXINFO_SUPPORT) {
 		id = REG_FIELD_GET(AUXINFO_REG_OFFSET, reg_value);
 
-		for (index = 0; id && reg_value; index++, reg_value = info[id].value,
-		     id = aux_history_offset(reg_value)) {
-			snprintf(name, NAME_MAX, "Auxiliary Info %d", index);
-			set_survivability_info(mmio, info, id, name);
+		for (index = 0; id >= AUX_INFO0 && id < MAX_SCRATCH_REG; index++) {
+			set_survivability_info(mmio, info, id);
+			id = aux_history_offset(info[id]);
 		}
 	}
 }
@@ -130,15 +148,14 @@ static void log_survivability_info(struct pci_dev *pdev)
 {
 	struct xe_device *xe = pdev_to_xe_device(pdev);
 	struct xe_survivability *survivability = &xe->survivability;
-	struct xe_survivability_info *info = survivability->info;
+	u32 *info = survivability->info;
 	int id;
 
 	dev_info(&pdev->dev, "Survivability Boot Status : Critical Failure (%d)\n",
 		 survivability->boot_status);
-	for (id = 0; id < MAX_SCRATCH_MMIO; id++) {
-		if (info[id].reg)
-			dev_info(&pdev->dev, "%s: 0x%x - 0x%x\n", info[id].name,
-				 info[id].reg, info[id].value);
+	for (id = 0; id < MAX_SCRATCH_REG; id++) {
+		if (info[id])
+			dev_info(&pdev->dev, "%s: 0x%x\n", reg_map[id], info[id]);
 	}
 }
 
@@ -156,25 +173,38 @@ static ssize_t survivability_mode_show(struct device *dev,
 	struct pci_dev *pdev = to_pci_dev(dev);
 	struct xe_device *xe = pdev_to_xe_device(pdev);
 	struct xe_survivability *survivability = &xe->survivability;
-	struct xe_survivability_info *info = survivability->info;
-	int index = 0, count = 0;
 
-	count += sysfs_emit_at(buff, count, "Survivability mode type: %s\n",
-			       survivability->type ? "Runtime" : "Boot");
+	return sysfs_emit(buff, "%s\n", survivability->type ? "Runtime" : "Boot");
+}
 
-	if (!check_boot_failure(xe))
-		return count;
+static DEVICE_ATTR_ADMIN_RO(survivability_mode);
 
-	for (index = 0; index < MAX_SCRATCH_MMIO; index++) {
-		if (info[index].reg)
-			count += sysfs_emit_at(buff, count, "%s: 0x%x - 0x%x\n", info[index].name,
-					       info[index].reg, info[index].value);
-	}
+static ssize_t survivability_info_show(struct device *dev,
+				       struct device_attribute *attr, char *buff)
+{
+	struct xe_survivability_attribute *sa = dev_attr_to_survivability_attr(attr);
+	struct pci_dev *pdev = to_pci_dev(dev);
+	struct xe_device *xe = pdev_to_xe_device(pdev);
+	struct xe_survivability *survivability = &xe->survivability;
+	u32 *info = survivability->info;
 
-	return count;
+	return sysfs_emit(buff, "0x%x\n", info[sa->index]);
 }
 
-static DEVICE_ATTR_ADMIN_RO(survivability_mode);
+#define SURVIVABILITY_ATTR_RO(name, _index)					\
+	struct xe_survivability_attribute attr_##name =	{			\
+		.attr =  __ATTR(name, 0400, survivability_info_show, NULL),	\
+		.index = _index,						\
+	}
+
+SURVIVABILITY_ATTR_RO(capability_info, CAPABILITY_INFO);
+SURVIVABILITY_ATTR_RO(postcode_trace, POSTCODE_TRACE);
+SURVIVABILITY_ATTR_RO(postcode_trace_overflow, POSTCODE_TRACE_OVERFLOW);
+SURVIVABILITY_ATTR_RO(aux_info0, AUX_INFO0);
+SURVIVABILITY_ATTR_RO(aux_info1, AUX_INFO1);
+SURVIVABILITY_ATTR_RO(aux_info2, AUX_INFO2);
+SURVIVABILITY_ATTR_RO(aux_info3, AUX_INFO3);
+SURVIVABILITY_ATTR_RO(aux_info4, AUX_INFO4);
 
 static void xe_survivability_mode_fini(void *arg)
 {
@@ -182,17 +212,48 @@ static void xe_survivability_mode_fini(void *arg)
 	struct pci_dev *pdev = to_pci_dev(xe->drm.dev);
 	struct device *dev = &pdev->dev;
 
-	sysfs_remove_file(&dev->kobj, &dev_attr_survivability_mode.attr);
+	device_remove_file(dev, &dev_attr_survivability_mode);
+}
+
+static umode_t survivability_info_attrs_visible(struct kobject *kobj, struct attribute *attr,
+						int idx)
+{
+	struct xe_device *xe = kdev_to_xe_device(kobj_to_dev(kobj));
+	struct xe_survivability *survivability = &xe->survivability;
+	u32 *info = survivability->info;
+
+	if (info[idx])
+		return 0400;
+
+	return 0;
 }
 
+/* Attributes are ordered according to enum scratch_reg */
+static struct attribute *survivability_info_attrs[] = {
+	&attr_capability_info.attr.attr,
+	&attr_postcode_trace.attr.attr,
+	&attr_postcode_trace_overflow.attr.attr,
+	&attr_aux_info0.attr.attr,
+	&attr_aux_info1.attr.attr,
+	&attr_aux_info2.attr.attr,
+	&attr_aux_info3.attr.attr,
+	&attr_aux_info4.attr.attr,
+	NULL,
+};
+
+static const struct attribute_group survivability_info_group = {
+	.name = "survivability_info",
+	.attrs = survivability_info_attrs,
+	.is_visible = survivability_info_attrs_visible,
+};
+
 static int create_survivability_sysfs(struct pci_dev *pdev)
 {
 	struct device *dev = &pdev->dev;
 	struct xe_device *xe = pdev_to_xe_device(pdev);
 	int ret;
 
-	/* create survivability mode sysfs */
-	ret = sysfs_create_file(&dev->kobj, &dev_attr_survivability_mode.attr);
+	ret = device_create_file(dev, &dev_attr_survivability_mode);
 	if (ret) {
 		dev_warn(dev, "Failed to create survivability sysfs files\n");
 		return ret;
@@ -203,6 +264,12 @@ static int create_survivability_sysfs(struct pci_dev *pdev)
 	if (ret)
 		return ret;
 
+	if (check_boot_failure(xe)) {
+		ret = devm_device_add_group(dev, &survivability_info_group);
+		if (ret)
+			return ret;
+	}
+
 	return 0;
 }
 
@@ -239,25 +306,6 @@ static int enable_boot_survivability_mode(struct pci_dev *pdev)
 	return ret;
 }
 
-static int init_survivability_mode(struct xe_device *xe)
-{
-	struct xe_survivability *survivability = &xe->survivability;
-	struct xe_survivability_info *info;
-
-	survivability->size = MAX_SCRATCH_MMIO;
-
-	info = devm_kcalloc(xe->drm.dev, survivability->size, sizeof(*info),
-			    GFP_KERNEL);
-	if (!info)
-		return -ENOMEM;
-
-	survivability->info = info;
-
-	populate_survivability_info(xe);
-
-	return 0;
-}
-
 /**
  * xe_survivability_mode_is_boot_enabled- check if boot survivability mode is enabled
  * @xe: xe device instance
@@ -325,9 +373,7 @@ int xe_survivability_mode_runtime_enable(struct xe_device *xe)
 		return -EINVAL;
 	}
 
-	ret = init_survivability_mode(xe);
-	if (ret)
-		return ret;
+	populate_survivability_info(xe);
 
 	ret = create_survivability_sysfs(pdev);
 	if (ret)
@@ -356,14 +402,11 @@ int xe_survivability_mode_boot_enable(struct xe_device *xe)
 {
 	struct xe_survivability *survivability = &xe->survivability;
 	struct pci_dev *pdev = to_pci_dev(xe->drm.dev);
-	int ret;
 
 	if (!xe_survivability_mode_is_requested(xe))
 		return 0;
 
-	ret = init_survivability_mode(xe);
-	if (ret)
-		return ret;
+	populate_survivability_info(xe);
 
 	/* Log breadcrumbs but do not enter survivability mode for Critical boot errors */
 	if (survivability->boot_status == CRITICAL_FAILURE) {
diff --git a/drivers/gpu/drm/xe/xe_survivability_mode_types.h b/drivers/gpu/drm/xe/xe_survivability_mode_types.h
index cd65a5d167c9..f31b3907d933 100644
--- a/drivers/gpu/drm/xe/xe_survivability_mode_types.h
+++ b/drivers/gpu/drm/xe/xe_survivability_mode_types.h
@@ -9,23 +9,29 @@
 #include <linux/limits.h>
 #include <linux/types.h>
 
+enum scratch_reg {
+	CAPABILITY_INFO,
+	POSTCODE_TRACE,
+	POSTCODE_TRACE_OVERFLOW,
+	AUX_INFO0,
+	AUX_INFO1,
+	AUX_INFO2,
+	AUX_INFO3,
+	AUX_INFO4,
+	MAX_SCRATCH_REG,
+};
+
 enum xe_survivability_type {
 	XE_SURVIVABILITY_TYPE_BOOT,
 	XE_SURVIVABILITY_TYPE_RUNTIME,
 };
 
-struct xe_survivability_info {
-	char name[NAME_MAX];
-	u32 reg;
-	u32 value;
-};
-
 /**
  * struct xe_survivability: Contains survivability mode information
  */
 struct xe_survivability {
-	/** @info: struct that holds survivability info from scratch registers */
-	struct xe_survivability_info *info;
+	/** @info: survivability debug info */
+	u32 info[MAX_SCRATCH_REG];
 
 	/** @size: number of scratch registers */
 	u32 size;
-- 
2.47.1


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

* [PATCH v2 2/2] drm/xe/xe_survivability: Add support for survivability mode v2
  2025-12-01 14:34 [PATCH v2 0/2] Redesign survivability mode Riana Tauro
  2025-12-01 14:34 ` [PATCH v2 1/2] drm/xe/xe_survivability: " Riana Tauro
@ 2025-12-01 14:34 ` Riana Tauro
  2025-12-01 17:43   ` Rodrigo Vivi
  2025-12-01 17:05 ` ✓ CI.KUnit: success for Redesign survivability mode (rev2) Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Riana Tauro @ 2025-12-01 14:34 UTC (permalink / raw)
  To: intel-xe; +Cc: riana.tauro, anshuman.gupta, rodrigo.vivi, badal.nilawar

v2 survivability breadcrumbs introduces a new mode called
SPI Flash Descriptor Override mode (FDO). This is enabled by
PCODE when MEI itself fails and firmware cannot be updated via
MEI using igsc. This mode provides the ability to update
the firmware directly via SPI driver.

Xe KMD initializes the nvm aux driver if FDO mode is enabled.

Userspace should check FDO mode entry in survivability info sysfs before
using the SPI driver to update firmware.

	/sys/bus/pci/devices/<device>/survivability_info/fdo_mode

v2 also supports survivability mode for critical boot errors.

Signed-off-by: Riana Tauro <riana.tauro@intel.com>
---
v2: do not exit survivability mode in case of mei init failure (Rodrigo)
---
 drivers/gpu/drm/xe/xe_pcode_api.h             |  2 +
 drivers/gpu/drm/xe/xe_survivability_mode.c    | 44 ++++++++++++++++---
 .../gpu/drm/xe/xe_survivability_mode_types.h  |  6 +++
 3 files changed, 46 insertions(+), 6 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_pcode_api.h b/drivers/gpu/drm/xe/xe_pcode_api.h
index 70dcd6625680..975892d6b230 100644
--- a/drivers/gpu/drm/xe/xe_pcode_api.h
+++ b/drivers/gpu/drm/xe/xe_pcode_api.h
@@ -77,11 +77,13 @@
 
 #define PCODE_SCRATCH(x)		XE_REG(0x138320 + ((x) * 4))
 /* PCODE_SCRATCH0 */
+#define   BREADCRUMB_VERSION		REG_GENMASK(31, 29)
 #define   AUXINFO_REG_OFFSET		REG_GENMASK(17, 15)
 #define   OVERFLOW_REG_OFFSET		REG_GENMASK(14, 12)
 #define   HISTORY_TRACKING		REG_BIT(11)
 #define   OVERFLOW_SUPPORT		REG_BIT(10)
 #define   AUXINFO_SUPPORT		REG_BIT(9)
+#define   FDO_MODE			REG_BIT(4)
 #define   BOOT_STATUS			REG_GENMASK(3, 1)
 #define      CRITICAL_FAILURE		4
 #define      NON_CRITICAL_FAILURE	7
diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c b/drivers/gpu/drm/xe/xe_survivability_mode.c
index b5b582442637..8d409bc9c14b 100644
--- a/drivers/gpu/drm/xe/xe_survivability_mode.c
+++ b/drivers/gpu/drm/xe/xe_survivability_mode.c
@@ -16,6 +16,7 @@
 #include "xe_heci_gsc.h"
 #include "xe_i2c.h"
 #include "xe_mmio.h"
+#include "xe_nvm.h"
 #include "xe_pcode_api.h"
 #include "xe_vsec.h"
 
@@ -66,6 +67,11 @@
  *
  * - ``aux_info<n>`` : Some failures have additional debug information
  *
+ * - ``fdo_mode`` : To allow recovery in scenarios where MEI itself fails, a new SPI Flash
+ *   Descriptor Override (FDO) mode is added in v2 survivability breadcrumbs. This mode is enabled
+ *   by PCODE and provides the ability to directly update the firmware via SPI Driver without
+ *   any dependency on MEI. Xe KMD initializes the nvm aux driver if FDO mode is enabled.
+ *
  * Runtime Survivability
  * =====================
  *
@@ -94,6 +100,8 @@ static const char * const reg_map[] = {
 	[AUX_INFO4]               = "Auxiliary Info 4",
 };
 
+#define FDO_INFO	(MAX_SCRATCH_REG + 1)
+
 struct xe_survivability_attribute {
 	struct device_attribute attr;
 	u8 index;
@@ -127,6 +135,11 @@ static void populate_survivability_info(struct xe_device *xe)
 	set_survivability_info(mmio, info, CAPABILITY_INFO);
 	reg_value = info[CAPABILITY_INFO];
 
+	survivability->version = REG_FIELD_GET(BREADCRUMB_VERSION, reg_value);
+	/* FDO mode is exposed only from version 2 */
+	if (survivability->version >= 2)
+		survivability->fdo_mode = REG_FIELD_GET(FDO_MODE, reg_value);
+
 	if (reg_value & HISTORY_TRACKING) {
 		set_survivability_info(mmio, info, POSTCODE_TRACE);
 
@@ -188,6 +201,9 @@ static ssize_t survivability_info_show(struct device *dev,
 	struct xe_survivability *survivability = &xe->survivability;
 	u32 *info = survivability->info;
 
+	if (sa->index == FDO_INFO)
+		return sysfs_emit(buff, "%s\n", str_enabled_disabled(survivability->fdo_mode));
+
 	return sysfs_emit(buff, "0x%x\n", info[sa->index]);
 }
 
@@ -205,13 +221,18 @@ SURVIVABILITY_ATTR_RO(aux_info1, AUX_INFO1);
 SURVIVABILITY_ATTR_RO(aux_info2, AUX_INFO2);
 SURVIVABILITY_ATTR_RO(aux_info3, AUX_INFO3);
 SURVIVABILITY_ATTR_RO(aux_info4, AUX_INFO4);
+SURVIVABILITY_ATTR_RO(fdo_mode, FDO_INFO);
 
 static void xe_survivability_mode_fini(void *arg)
 {
 	struct xe_device *xe = arg;
+	struct xe_survivability *survivability = &xe->survivability;
 	struct pci_dev *pdev = to_pci_dev(xe->drm.dev);
 	struct device *dev = &pdev->dev;
 
+	if (survivability->fdo_mode)
+		xe_nvm_fini(xe);
+
 	device_remove_file(dev, &dev_attr_survivability_mode);
 }
 
@@ -222,7 +243,10 @@ static umode_t survivability_info_attrs_visible(struct kobject *kobj, struct att
 	struct xe_survivability *survivability = &xe->survivability;
 	u32 *info = survivability->info;
 
-	if (info[idx])
+	/* FDO mode is visible only when supported */
+	if (idx >= MAX_SCRATCH_REG && survivability->version >= 2)
+		return 0400;
+	else if (info[idx])
 		return 0400;
 
 	return 0;
@@ -238,6 +262,7 @@ static struct attribute *survivability_info_attrs[] = {
 	&attr_aux_info2.attr.attr,
 	&attr_aux_info3.attr.attr,
 	&attr_aux_info4.attr.attr,
+	&attr_fdo_mode.attr.attr,
 	NULL,
 };
 
@@ -287,12 +312,16 @@ static int enable_boot_survivability_mode(struct pci_dev *pdev)
 	/* Make sure xe_heci_gsc_init() knows about survivability mode */
 	survivability->mode = true;
 
-	ret = xe_heci_gsc_init(xe);
-	if (ret)
-		goto err;
+	xe_heci_gsc_init(xe);
 
 	xe_vsec_init(xe);
 
+	if (survivability->fdo_mode) {
+		ret = xe_nvm_init(xe);
+		if (ret)
+			goto err;
+	}
+
 	ret = xe_i2c_probe(xe);
 	if (ret)
 		goto err;
@@ -302,6 +331,7 @@ static int enable_boot_survivability_mode(struct pci_dev *pdev)
 	return 0;
 
 err:
+	dev_err(dev, "Failed to enable Survivability Mode\n");
 	survivability->mode = false;
 	return ret;
 }
@@ -408,8 +438,10 @@ int xe_survivability_mode_boot_enable(struct xe_device *xe)
 
 	populate_survivability_info(xe);
 
-	/* Log breadcrumbs but do not enter survivability mode for Critical boot errors */
-	if (survivability->boot_status == CRITICAL_FAILURE) {
+	/*
+	 * v2 supports survivability mode for critical errors
+	 */
+	if (survivability->version < 2  && survivability->boot_status == CRITICAL_FAILURE) {
 		log_survivability_info(pdev);
 		return -ENXIO;
 	}
diff --git a/drivers/gpu/drm/xe/xe_survivability_mode_types.h b/drivers/gpu/drm/xe/xe_survivability_mode_types.h
index f31b3907d933..bd5dc1c955ff 100644
--- a/drivers/gpu/drm/xe/xe_survivability_mode_types.h
+++ b/drivers/gpu/drm/xe/xe_survivability_mode_types.h
@@ -44,6 +44,12 @@ struct xe_survivability {
 
 	/** @type: survivability type */
 	enum xe_survivability_type type;
+
+	/** @fdo_mode: indicates if FDO mode is enabled */
+	bool fdo_mode;
+
+	/** @version: breadcrumb version of survivability mode  */
+	u8 version;
 };
 
 #endif /* _XE_SURVIVABILITY_MODE_TYPES_H_ */
-- 
2.47.1


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

* ✓ CI.KUnit: success for Redesign survivability mode (rev2)
  2025-12-01 14:34 [PATCH v2 0/2] Redesign survivability mode Riana Tauro
  2025-12-01 14:34 ` [PATCH v2 1/2] drm/xe/xe_survivability: " Riana Tauro
  2025-12-01 14:34 ` [PATCH v2 2/2] drm/xe/xe_survivability: Add support for survivability mode v2 Riana Tauro
@ 2025-12-01 17:05 ` Patchwork
  2025-12-01 17:45 ` ✓ Xe.CI.BAT: " Patchwork
  2025-12-01 20:12 ` ✗ Xe.CI.Full: failure " Patchwork
  4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-12-01 17:05 UTC (permalink / raw)
  To: Riana Tauro; +Cc: intel-xe

== Series Details ==

Series: Redesign survivability mode (rev2)
URL   : https://patchwork.freedesktop.org/series/157425/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[17:04:12] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:04:17] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[17:04:54] Starting KUnit Kernel (1/1)...
[17:04:54] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:04:54] ================== guc_buf (11 subtests) ===================
[17:04:54] [PASSED] test_smallest
[17:04:54] [PASSED] test_largest
[17:04:54] [PASSED] test_granular
[17:04:54] [PASSED] test_unique
[17:04:54] [PASSED] test_overlap
[17:04:54] [PASSED] test_reusable
[17:04:54] [PASSED] test_too_big
[17:04:54] [PASSED] test_flush
[17:04:54] [PASSED] test_lookup
[17:04:54] [PASSED] test_data
[17:04:54] [PASSED] test_class
[17:04:54] ===================== [PASSED] guc_buf =====================
[17:04:54] =================== guc_dbm (7 subtests) ===================
[17:04:54] [PASSED] test_empty
[17:04:54] [PASSED] test_default
[17:04:54] ======================== test_size  ========================
[17:04:54] [PASSED] 4
[17:04:54] [PASSED] 8
[17:04:54] [PASSED] 32
[17:04:54] [PASSED] 256
[17:04:54] ==================== [PASSED] test_size ====================
[17:04:54] ======================= test_reuse  ========================
[17:04:54] [PASSED] 4
[17:04:54] [PASSED] 8
[17:04:54] [PASSED] 32
[17:04:54] [PASSED] 256
[17:04:54] =================== [PASSED] test_reuse ====================
[17:04:54] =================== test_range_overlap  ====================
[17:04:54] [PASSED] 4
[17:04:54] [PASSED] 8
[17:04:54] [PASSED] 32
[17:04:54] [PASSED] 256
[17:04:54] =============== [PASSED] test_range_overlap ================
[17:04:54] =================== test_range_compact  ====================
[17:04:54] [PASSED] 4
[17:04:54] [PASSED] 8
[17:04:54] [PASSED] 32
[17:04:54] [PASSED] 256
[17:04:54] =============== [PASSED] test_range_compact ================
[17:04:54] ==================== test_range_spare  =====================
[17:04:54] [PASSED] 4
[17:04:54] [PASSED] 8
[17:04:54] [PASSED] 32
[17:04:54] [PASSED] 256
[17:04:54] ================ [PASSED] test_range_spare =================
[17:04:54] ===================== [PASSED] guc_dbm =====================
[17:04:54] =================== guc_idm (6 subtests) ===================
[17:04:54] [PASSED] bad_init
[17:04:54] [PASSED] no_init
[17:04:54] [PASSED] init_fini
[17:04:54] [PASSED] check_used
[17:04:54] [PASSED] check_quota
[17:04:54] [PASSED] check_all
[17:04:54] ===================== [PASSED] guc_idm =====================
[17:04:54] ================== no_relay (3 subtests) ===================
[17:04:54] [PASSED] xe_drops_guc2pf_if_not_ready
[17:04:54] [PASSED] xe_drops_guc2vf_if_not_ready
[17:04:54] [PASSED] xe_rejects_send_if_not_ready
[17:04:54] ==================== [PASSED] no_relay =====================
[17:04:54] ================== pf_relay (14 subtests) ==================
[17:04:54] [PASSED] pf_rejects_guc2pf_too_short
[17:04:54] [PASSED] pf_rejects_guc2pf_too_long
[17:04:54] [PASSED] pf_rejects_guc2pf_no_payload
[17:04:54] [PASSED] pf_fails_no_payload
[17:04:54] [PASSED] pf_fails_bad_origin
[17:04:54] [PASSED] pf_fails_bad_type
[17:04:54] [PASSED] pf_txn_reports_error
[17:04:54] [PASSED] pf_txn_sends_pf2guc
[17:04:54] [PASSED] pf_sends_pf2guc
[17:04:54] [SKIPPED] pf_loopback_nop
[17:04:54] [SKIPPED] pf_loopback_echo
[17:04:54] [SKIPPED] pf_loopback_fail
[17:04:54] [SKIPPED] pf_loopback_busy
[17:04:54] [SKIPPED] pf_loopback_retry
[17:04:54] ==================== [PASSED] pf_relay =====================
[17:04:54] ================== vf_relay (3 subtests) ===================
[17:04:54] [PASSED] vf_rejects_guc2vf_too_short
[17:04:54] [PASSED] vf_rejects_guc2vf_too_long
[17:04:54] [PASSED] vf_rejects_guc2vf_no_payload
[17:04:54] ==================== [PASSED] vf_relay =====================
[17:04:54] ================ pf_gt_config (6 subtests) =================
[17:04:54] [PASSED] fair_contexts_1vf
[17:04:54] [PASSED] fair_doorbells_1vf
[17:04:54] [PASSED] fair_ggtt_1vf
[17:04:54] ====================== fair_contexts  ======================
[17:04:54] [PASSED] 1 VF
[17:04:54] [PASSED] 2 VFs
[17:04:54] [PASSED] 3 VFs
[17:04:54] [PASSED] 4 VFs
[17:04:54] [PASSED] 5 VFs
[17:04:54] [PASSED] 6 VFs
[17:04:54] [PASSED] 7 VFs
[17:04:54] [PASSED] 8 VFs
[17:04:54] [PASSED] 9 VFs
[17:04:54] [PASSED] 10 VFs
[17:04:54] [PASSED] 11 VFs
[17:04:54] [PASSED] 12 VFs
[17:04:54] [PASSED] 13 VFs
[17:04:54] [PASSED] 14 VFs
[17:04:54] [PASSED] 15 VFs
[17:04:54] [PASSED] 16 VFs
[17:04:54] [PASSED] 17 VFs
[17:04:54] [PASSED] 18 VFs
[17:04:54] [PASSED] 19 VFs
[17:04:54] [PASSED] 20 VFs
[17:04:54] [PASSED] 21 VFs
[17:04:54] [PASSED] 22 VFs
[17:04:54] [PASSED] 23 VFs
[17:04:54] [PASSED] 24 VFs
[17:04:54] [PASSED] 25 VFs
[17:04:54] [PASSED] 26 VFs
[17:04:54] [PASSED] 27 VFs
[17:04:54] [PASSED] 28 VFs
[17:04:54] [PASSED] 29 VFs
[17:04:54] [PASSED] 30 VFs
[17:04:54] [PASSED] 31 VFs
[17:04:54] [PASSED] 32 VFs
[17:04:54] [PASSED] 33 VFs
[17:04:54] [PASSED] 34 VFs
[17:04:54] [PASSED] 35 VFs
[17:04:54] [PASSED] 36 VFs
[17:04:54] [PASSED] 37 VFs
[17:04:54] [PASSED] 38 VFs
[17:04:54] [PASSED] 39 VFs
[17:04:54] [PASSED] 40 VFs
[17:04:54] [PASSED] 41 VFs
[17:04:54] [PASSED] 42 VFs
[17:04:54] [PASSED] 43 VFs
[17:04:54] [PASSED] 44 VFs
[17:04:54] [PASSED] 45 VFs
[17:04:54] [PASSED] 46 VFs
[17:04:54] [PASSED] 47 VFs
[17:04:54] [PASSED] 48 VFs
[17:04:54] [PASSED] 49 VFs
[17:04:54] [PASSED] 50 VFs
[17:04:54] [PASSED] 51 VFs
[17:04:54] [PASSED] 52 VFs
[17:04:54] [PASSED] 53 VFs
[17:04:54] [PASSED] 54 VFs
[17:04:54] [PASSED] 55 VFs
[17:04:54] [PASSED] 56 VFs
[17:04:54] [PASSED] 57 VFs
[17:04:54] [PASSED] 58 VFs
[17:04:54] [PASSED] 59 VFs
[17:04:54] [PASSED] 60 VFs
[17:04:54] [PASSED] 61 VFs
[17:04:54] [PASSED] 62 VFs
[17:04:54] [PASSED] 63 VFs
[17:04:54] ================== [PASSED] fair_contexts ==================
[17:04:54] ===================== fair_doorbells  ======================
[17:04:54] [PASSED] 1 VF
[17:04:54] [PASSED] 2 VFs
[17:04:54] [PASSED] 3 VFs
[17:04:54] [PASSED] 4 VFs
[17:04:54] [PASSED] 5 VFs
[17:04:54] [PASSED] 6 VFs
[17:04:54] [PASSED] 7 VFs
[17:04:54] [PASSED] 8 VFs
[17:04:54] [PASSED] 9 VFs
[17:04:54] [PASSED] 10 VFs
[17:04:54] [PASSED] 11 VFs
[17:04:54] [PASSED] 12 VFs
[17:04:54] [PASSED] 13 VFs
[17:04:54] [PASSED] 14 VFs
[17:04:54] [PASSED] 15 VFs
[17:04:54] [PASSED] 16 VFs
[17:04:54] [PASSED] 17 VFs
[17:04:54] [PASSED] 18 VFs
[17:04:54] [PASSED] 19 VFs
[17:04:54] [PASSED] 20 VFs
[17:04:54] [PASSED] 21 VFs
[17:04:54] [PASSED] 22 VFs
[17:04:54] [PASSED] 23 VFs
[17:04:54] [PASSED] 24 VFs
[17:04:54] [PASSED] 25 VFs
[17:04:54] [PASSED] 26 VFs
[17:04:54] [PASSED] 27 VFs
[17:04:54] [PASSED] 28 VFs
[17:04:54] [PASSED] 29 VFs
[17:04:54] [PASSED] 30 VFs
[17:04:54] [PASSED] 31 VFs
[17:04:54] [PASSED] 32 VFs
[17:04:54] [PASSED] 33 VFs
[17:04:54] [PASSED] 34 VFs
[17:04:54] [PASSED] 35 VFs
[17:04:54] [PASSED] 36 VFs
[17:04:54] [PASSED] 37 VFs
[17:04:54] [PASSED] 38 VFs
[17:04:54] [PASSED] 39 VFs
[17:04:54] [PASSED] 40 VFs
[17:04:54] [PASSED] 41 VFs
[17:04:54] [PASSED] 42 VFs
[17:04:54] [PASSED] 43 VFs
[17:04:54] [PASSED] 44 VFs
[17:04:54] [PASSED] 45 VFs
[17:04:54] [PASSED] 46 VFs
[17:04:54] [PASSED] 47 VFs
[17:04:54] [PASSED] 48 VFs
[17:04:54] [PASSED] 49 VFs
[17:04:54] [PASSED] 50 VFs
[17:04:54] [PASSED] 51 VFs
[17:04:54] [PASSED] 52 VFs
[17:04:54] [PASSED] 53 VFs
[17:04:54] [PASSED] 54 VFs
[17:04:54] [PASSED] 55 VFs
[17:04:54] [PASSED] 56 VFs
[17:04:54] [PASSED] 57 VFs
[17:04:54] [PASSED] 58 VFs
[17:04:54] [PASSED] 59 VFs
[17:04:54] [PASSED] 60 VFs
[17:04:54] [PASSED] 61 VFs
[17:04:54] [PASSED] 62 VFs
[17:04:54] [PASSED] 63 VFs
[17:04:54] ================= [PASSED] fair_doorbells ==================
[17:04:54] ======================== fair_ggtt  ========================
[17:04:54] [PASSED] 1 VF
[17:04:54] [PASSED] 2 VFs
[17:04:54] [PASSED] 3 VFs
[17:04:54] [PASSED] 4 VFs
[17:04:54] [PASSED] 5 VFs
[17:04:54] [PASSED] 6 VFs
[17:04:54] [PASSED] 7 VFs
[17:04:54] [PASSED] 8 VFs
[17:04:54] [PASSED] 9 VFs
[17:04:54] [PASSED] 10 VFs
[17:04:54] [PASSED] 11 VFs
[17:04:54] [PASSED] 12 VFs
[17:04:54] [PASSED] 13 VFs
[17:04:54] [PASSED] 14 VFs
[17:04:54] [PASSED] 15 VFs
[17:04:54] [PASSED] 16 VFs
[17:04:54] [PASSED] 17 VFs
[17:04:54] [PASSED] 18 VFs
[17:04:54] [PASSED] 19 VFs
[17:04:54] [PASSED] 20 VFs
[17:04:54] [PASSED] 21 VFs
[17:04:54] [PASSED] 22 VFs
[17:04:54] [PASSED] 23 VFs
[17:04:54] [PASSED] 24 VFs
[17:04:54] [PASSED] 25 VFs
[17:04:54] [PASSED] 26 VFs
[17:04:54] [PASSED] 27 VFs
[17:04:54] [PASSED] 28 VFs
[17:04:54] [PASSED] 29 VFs
[17:04:54] [PASSED] 30 VFs
[17:04:54] [PASSED] 31 VFs
[17:04:54] [PASSED] 32 VFs
[17:04:54] [PASSED] 33 VFs
[17:04:54] [PASSED] 34 VFs
[17:04:54] [PASSED] 35 VFs
[17:04:54] [PASSED] 36 VFs
[17:04:54] [PASSED] 37 VFs
[17:04:54] [PASSED] 38 VFs
[17:04:54] [PASSED] 39 VFs
[17:04:54] [PASSED] 40 VFs
[17:04:54] [PASSED] 41 VFs
[17:04:54] [PASSED] 42 VFs
[17:04:54] [PASSED] 43 VFs
[17:04:54] [PASSED] 44 VFs
[17:04:54] [PASSED] 45 VFs
[17:04:54] [PASSED] 46 VFs
[17:04:54] [PASSED] 47 VFs
[17:04:54] [PASSED] 48 VFs
[17:04:55] [PASSED] 49 VFs
[17:04:55] [PASSED] 50 VFs
[17:04:55] [PASSED] 51 VFs
[17:04:55] [PASSED] 52 VFs
[17:04:55] [PASSED] 53 VFs
[17:04:55] [PASSED] 54 VFs
[17:04:55] [PASSED] 55 VFs
[17:04:55] [PASSED] 56 VFs
[17:04:55] [PASSED] 57 VFs
[17:04:55] [PASSED] 58 VFs
[17:04:55] [PASSED] 59 VFs
[17:04:55] [PASSED] 60 VFs
[17:04:55] [PASSED] 61 VFs
[17:04:55] [PASSED] 62 VFs
[17:04:55] [PASSED] 63 VFs
[17:04:55] ==================== [PASSED] fair_ggtt ====================
[17:04:55] ================== [PASSED] pf_gt_config ===================
[17:04:55] ===================== lmtt (1 subtest) =====================
[17:04:55] ======================== test_ops  =========================
[17:04:55] [PASSED] 2-level
[17:04:55] [PASSED] multi-level
[17:04:55] ==================== [PASSED] test_ops =====================
[17:04:55] ====================== [PASSED] lmtt =======================
[17:04:55] ================= pf_service (11 subtests) =================
[17:04:55] [PASSED] pf_negotiate_any
[17:04:55] [PASSED] pf_negotiate_base_match
[17:04:55] [PASSED] pf_negotiate_base_newer
[17:04:55] [PASSED] pf_negotiate_base_next
[17:04:55] [SKIPPED] pf_negotiate_base_older
[17:04:55] [PASSED] pf_negotiate_base_prev
[17:04:55] [PASSED] pf_negotiate_latest_match
[17:04:55] [PASSED] pf_negotiate_latest_newer
[17:04:55] [PASSED] pf_negotiate_latest_next
[17:04:55] [SKIPPED] pf_negotiate_latest_older
[17:04:55] [SKIPPED] pf_negotiate_latest_prev
[17:04:55] =================== [PASSED] pf_service ====================
[17:04:55] ================= xe_guc_g2g (2 subtests) ==================
[17:04:55] ============== xe_live_guc_g2g_kunit_default  ==============
[17:04:55] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[17:04:55] ============== xe_live_guc_g2g_kunit_allmem  ===============
[17:04:55] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[17:04:55] =================== [SKIPPED] xe_guc_g2g ===================
[17:04:55] =================== xe_mocs (2 subtests) ===================
[17:04:55] ================ xe_live_mocs_kernel_kunit  ================
[17:04:55] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[17:04:55] ================ xe_live_mocs_reset_kunit  =================
[17:04:55] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[17:04:55] ==================== [SKIPPED] xe_mocs =====================
[17:04:55] ================= xe_migrate (2 subtests) ==================
[17:04:55] ================= xe_migrate_sanity_kunit  =================
[17:04:55] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[17:04:55] ================== xe_validate_ccs_kunit  ==================
[17:04:55] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[17:04:55] =================== [SKIPPED] xe_migrate ===================
[17:04:55] ================== xe_dma_buf (1 subtest) ==================
[17:04:55] ==================== xe_dma_buf_kunit  =====================
[17:04:55] ================ [SKIPPED] xe_dma_buf_kunit ================
[17:04:55] =================== [SKIPPED] xe_dma_buf ===================
[17:04:55] ================= xe_bo_shrink (1 subtest) =================
[17:04:55] =================== xe_bo_shrink_kunit  ====================
[17:04:55] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[17:04:55] ================== [SKIPPED] xe_bo_shrink ==================
[17:04:55] ==================== xe_bo (2 subtests) ====================
[17:04:55] ================== xe_ccs_migrate_kunit  ===================
[17:04:55] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[17:04:55] ==================== xe_bo_evict_kunit  ====================
[17:04:55] =============== [SKIPPED] xe_bo_evict_kunit ================
[17:04:55] ===================== [SKIPPED] xe_bo ======================
[17:04:55] ==================== args (11 subtests) ====================
[17:04:55] [PASSED] count_args_test
[17:04:55] [PASSED] call_args_example
[17:04:55] [PASSED] call_args_test
[17:04:55] [PASSED] drop_first_arg_example
[17:04:55] [PASSED] drop_first_arg_test
[17:04:55] [PASSED] first_arg_example
[17:04:55] [PASSED] first_arg_test
[17:04:55] [PASSED] last_arg_example
[17:04:55] [PASSED] last_arg_test
[17:04:55] [PASSED] pick_arg_example
[17:04:55] [PASSED] sep_comma_example
[17:04:55] ====================== [PASSED] args =======================
[17:04:55] =================== xe_pci (3 subtests) ====================
[17:04:55] ==================== check_graphics_ip  ====================
[17:04:55] [PASSED] 12.00 Xe_LP
[17:04:55] [PASSED] 12.10 Xe_LP+
[17:04:55] [PASSED] 12.55 Xe_HPG
[17:04:55] [PASSED] 12.60 Xe_HPC
[17:04:55] [PASSED] 12.70 Xe_LPG
[17:04:55] [PASSED] 12.71 Xe_LPG
[17:04:55] [PASSED] 12.74 Xe_LPG+
[17:04:55] [PASSED] 20.01 Xe2_HPG
[17:04:55] [PASSED] 20.02 Xe2_HPG
[17:04:55] [PASSED] 20.04 Xe2_LPG
[17:04:55] [PASSED] 30.00 Xe3_LPG
[17:04:55] [PASSED] 30.01 Xe3_LPG
[17:04:55] [PASSED] 30.03 Xe3_LPG
[17:04:55] [PASSED] 30.04 Xe3_LPG
[17:04:55] [PASSED] 30.05 Xe3_LPG
[17:04:55] [PASSED] 35.11 Xe3p_XPC
[17:04:55] ================ [PASSED] check_graphics_ip ================
[17:04:55] ===================== check_media_ip  ======================
[17:04:55] [PASSED] 12.00 Xe_M
[17:04:55] [PASSED] 12.55 Xe_HPM
[17:04:55] [PASSED] 13.00 Xe_LPM+
[17:04:55] [PASSED] 13.01 Xe2_HPM
[17:04:55] [PASSED] 20.00 Xe2_LPM
[17:04:55] [PASSED] 30.00 Xe3_LPM
[17:04:55] [PASSED] 30.02 Xe3_LPM
[17:04:55] [PASSED] 35.00 Xe3p_LPM
[17:04:55] [PASSED] 35.03 Xe3p_HPM
[17:04:55] ================= [PASSED] check_media_ip ==================
[17:04:55] =================== check_platform_desc  ===================
[17:04:55] [PASSED] 0x9A60 (TIGERLAKE)
[17:04:55] [PASSED] 0x9A68 (TIGERLAKE)
[17:04:55] [PASSED] 0x9A70 (TIGERLAKE)
[17:04:55] [PASSED] 0x9A40 (TIGERLAKE)
[17:04:55] [PASSED] 0x9A49 (TIGERLAKE)
[17:04:55] [PASSED] 0x9A59 (TIGERLAKE)
[17:04:55] [PASSED] 0x9A78 (TIGERLAKE)
[17:04:55] [PASSED] 0x9AC0 (TIGERLAKE)
[17:04:55] [PASSED] 0x9AC9 (TIGERLAKE)
[17:04:55] [PASSED] 0x9AD9 (TIGERLAKE)
[17:04:55] [PASSED] 0x9AF8 (TIGERLAKE)
[17:04:55] [PASSED] 0x4C80 (ROCKETLAKE)
[17:04:55] [PASSED] 0x4C8A (ROCKETLAKE)
[17:04:55] [PASSED] 0x4C8B (ROCKETLAKE)
[17:04:55] [PASSED] 0x4C8C (ROCKETLAKE)
[17:04:55] [PASSED] 0x4C90 (ROCKETLAKE)
[17:04:55] [PASSED] 0x4C9A (ROCKETLAKE)
[17:04:55] [PASSED] 0x4680 (ALDERLAKE_S)
[17:04:55] [PASSED] 0x4682 (ALDERLAKE_S)
[17:04:55] [PASSED] 0x4688 (ALDERLAKE_S)
[17:04:55] [PASSED] 0x468A (ALDERLAKE_S)
[17:04:55] [PASSED] 0x468B (ALDERLAKE_S)
[17:04:55] [PASSED] 0x4690 (ALDERLAKE_S)
[17:04:55] [PASSED] 0x4692 (ALDERLAKE_S)
[17:04:55] [PASSED] 0x4693 (ALDERLAKE_S)
[17:04:55] [PASSED] 0x46A0 (ALDERLAKE_P)
[17:04:55] [PASSED] 0x46A1 (ALDERLAKE_P)
[17:04:55] [PASSED] 0x46A2 (ALDERLAKE_P)
[17:04:55] [PASSED] 0x46A3 (ALDERLAKE_P)
[17:04:55] [PASSED] 0x46A6 (ALDERLAKE_P)
[17:04:55] [PASSED] 0x46A8 (ALDERLAKE_P)
[17:04:55] [PASSED] 0x46AA (ALDERLAKE_P)
[17:04:55] [PASSED] 0x462A (ALDERLAKE_P)
[17:04:55] [PASSED] 0x4626 (ALDERLAKE_P)
[17:04:55] [PASSED] 0x4628 (ALDERLAKE_P)
[17:04:55] [PASSED] 0x46B0 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[17:04:55] [PASSED] 0x46B1 (ALDERLAKE_P)
[17:04:55] [PASSED] 0x46B2 (ALDERLAKE_P)
[17:04:55] [PASSED] 0x46B3 (ALDERLAKE_P)
[17:04:55] [PASSED] 0x46C0 (ALDERLAKE_P)
[17:04:55] [PASSED] 0x46C1 (ALDERLAKE_P)
[17:04:55] [PASSED] 0x46C2 (ALDERLAKE_P)
[17:04:55] [PASSED] 0x46C3 (ALDERLAKE_P)
[17:04:55] [PASSED] 0x46D0 (ALDERLAKE_N)
[17:04:55] [PASSED] 0x46D1 (ALDERLAKE_N)
[17:04:55] [PASSED] 0x46D2 (ALDERLAKE_N)
[17:04:55] [PASSED] 0x46D3 (ALDERLAKE_N)
[17:04:55] [PASSED] 0x46D4 (ALDERLAKE_N)
[17:04:55] [PASSED] 0xA721 (ALDERLAKE_P)
[17:04:55] [PASSED] 0xA7A1 (ALDERLAKE_P)
[17:04:55] [PASSED] 0xA7A9 (ALDERLAKE_P)
[17:04:55] [PASSED] 0xA7AC (ALDERLAKE_P)
[17:04:55] [PASSED] 0xA7AD (ALDERLAKE_P)
[17:04:55] [PASSED] 0xA720 (ALDERLAKE_P)
[17:04:55] [PASSED] 0xA7A0 (ALDERLAKE_P)
[17:04:55] [PASSED] 0xA7A8 (ALDERLAKE_P)
[17:04:55] [PASSED] 0xA7AA (ALDERLAKE_P)
[17:04:55] [PASSED] 0xA7AB (ALDERLAKE_P)
[17:04:55] [PASSED] 0xA780 (ALDERLAKE_S)
[17:04:55] [PASSED] 0xA781 (ALDERLAKE_S)
[17:04:55] [PASSED] 0xA782 (ALDERLAKE_S)
[17:04:55] [PASSED] 0xA783 (ALDERLAKE_S)
[17:04:55] [PASSED] 0xA788 (ALDERLAKE_S)
[17:04:55] [PASSED] 0xA789 (ALDERLAKE_S)
[17:04:55] [PASSED] 0xA78A (ALDERLAKE_S)
[17:04:55] [PASSED] 0xA78B (ALDERLAKE_S)
[17:04:55] [PASSED] 0x4905 (DG1)
[17:04:55] [PASSED] 0x4906 (DG1)
[17:04:55] [PASSED] 0x4907 (DG1)
[17:04:55] [PASSED] 0x4908 (DG1)
[17:04:55] [PASSED] 0x4909 (DG1)
[17:04:55] [PASSED] 0x56C0 (DG2)
[17:04:55] [PASSED] 0x56C2 (DG2)
[17:04:55] [PASSED] 0x56C1 (DG2)
[17:04:55] [PASSED] 0x7D51 (METEORLAKE)
[17:04:55] [PASSED] 0x7DD1 (METEORLAKE)
[17:04:55] [PASSED] 0x7D41 (METEORLAKE)
[17:04:55] [PASSED] 0x7D67 (METEORLAKE)
[17:04:55] [PASSED] 0xB640 (METEORLAKE)
[17:04:55] [PASSED] 0x56A0 (DG2)
[17:04:55] [PASSED] 0x56A1 (DG2)
[17:04:55] [PASSED] 0x56A2 (DG2)
[17:04:55] [PASSED] 0x56BE (DG2)
[17:04:55] [PASSED] 0x56BF (DG2)
[17:04:55] [PASSED] 0x5690 (DG2)
[17:04:55] [PASSED] 0x5691 (DG2)
[17:04:55] [PASSED] 0x5692 (DG2)
[17:04:55] [PASSED] 0x56A5 (DG2)
[17:04:55] [PASSED] 0x56A6 (DG2)
[17:04:55] [PASSED] 0x56B0 (DG2)
[17:04:55] [PASSED] 0x56B1 (DG2)
[17:04:55] [PASSED] 0x56BA (DG2)
[17:04:55] [PASSED] 0x56BB (DG2)
[17:04:55] [PASSED] 0x56BC (DG2)
[17:04:55] [PASSED] 0x56BD (DG2)
[17:04:55] [PASSED] 0x5693 (DG2)
[17:04:55] [PASSED] 0x5694 (DG2)
[17:04:55] [PASSED] 0x5695 (DG2)
[17:04:55] [PASSED] 0x56A3 (DG2)
[17:04:55] [PASSED] 0x56A4 (DG2)
[17:04:55] [PASSED] 0x56B2 (DG2)
[17:04:55] [PASSED] 0x56B3 (DG2)
[17:04:55] [PASSED] 0x5696 (DG2)
[17:04:55] [PASSED] 0x5697 (DG2)
[17:04:55] [PASSED] 0xB69 (PVC)
[17:04:55] [PASSED] 0xB6E (PVC)
[17:04:55] [PASSED] 0xBD4 (PVC)
[17:04:55] [PASSED] 0xBD5 (PVC)
[17:04:55] [PASSED] 0xBD6 (PVC)
[17:04:55] [PASSED] 0xBD7 (PVC)
[17:04:55] [PASSED] 0xBD8 (PVC)
[17:04:55] [PASSED] 0xBD9 (PVC)
[17:04:55] [PASSED] 0xBDA (PVC)
[17:04:55] [PASSED] 0xBDB (PVC)
[17:04:55] [PASSED] 0xBE0 (PVC)
[17:04:55] [PASSED] 0xBE1 (PVC)
[17:04:55] [PASSED] 0xBE5 (PVC)
[17:04:55] [PASSED] 0x7D40 (METEORLAKE)
[17:04:55] [PASSED] 0x7D45 (METEORLAKE)
[17:04:55] [PASSED] 0x7D55 (METEORLAKE)
[17:04:55] [PASSED] 0x7D60 (METEORLAKE)
[17:04:55] [PASSED] 0x7DD5 (METEORLAKE)
[17:04:55] [PASSED] 0x6420 (LUNARLAKE)
[17:04:55] [PASSED] 0x64A0 (LUNARLAKE)
[17:04:55] [PASSED] 0x64B0 (LUNARLAKE)
[17:04:55] [PASSED] 0xE202 (BATTLEMAGE)
[17:04:55] [PASSED] 0xE209 (BATTLEMAGE)
[17:04:55] [PASSED] 0xE20B (BATTLEMAGE)
[17:04:55] [PASSED] 0xE20C (BATTLEMAGE)
[17:04:55] [PASSED] 0xE20D (BATTLEMAGE)
[17:04:55] [PASSED] 0xE210 (BATTLEMAGE)
[17:04:55] [PASSED] 0xE211 (BATTLEMAGE)
[17:04:55] [PASSED] 0xE212 (BATTLEMAGE)
[17:04:55] [PASSED] 0xE216 (BATTLEMAGE)
[17:04:55] [PASSED] 0xE220 (BATTLEMAGE)
[17:04:55] [PASSED] 0xE221 (BATTLEMAGE)
[17:04:55] [PASSED] 0xE222 (BATTLEMAGE)
[17:04:55] [PASSED] 0xE223 (BATTLEMAGE)
[17:04:55] [PASSED] 0xB080 (PANTHERLAKE)
[17:04:55] [PASSED] 0xB081 (PANTHERLAKE)
[17:04:55] [PASSED] 0xB082 (PANTHERLAKE)
[17:04:55] [PASSED] 0xB083 (PANTHERLAKE)
[17:04:55] [PASSED] 0xB084 (PANTHERLAKE)
[17:04:55] [PASSED] 0xB085 (PANTHERLAKE)
[17:04:55] [PASSED] 0xB086 (PANTHERLAKE)
[17:04:55] [PASSED] 0xB087 (PANTHERLAKE)
[17:04:55] [PASSED] 0xB08F (PANTHERLAKE)
[17:04:55] [PASSED] 0xB090 (PANTHERLAKE)
[17:04:55] [PASSED] 0xB0A0 (PANTHERLAKE)
[17:04:55] [PASSED] 0xB0B0 (PANTHERLAKE)
[17:04:55] [PASSED] 0xD740 (NOVALAKE_S)
[17:04:55] [PASSED] 0xD741 (NOVALAKE_S)
[17:04:55] [PASSED] 0xD742 (NOVALAKE_S)
[17:04:55] [PASSED] 0xD743 (NOVALAKE_S)
[17:04:55] [PASSED] 0xD744 (NOVALAKE_S)
[17:04:55] [PASSED] 0xD745 (NOVALAKE_S)
[17:04:55] [PASSED] 0x674C (CRESCENTISLAND)
[17:04:55] [PASSED] 0xFD80 (PANTHERLAKE)
[17:04:55] [PASSED] 0xFD81 (PANTHERLAKE)
[17:04:55] =============== [PASSED] check_platform_desc ===============
[17:04:55] ===================== [PASSED] xe_pci ======================
[17:04:55] =================== xe_rtp (2 subtests) ====================
[17:04:55] =============== xe_rtp_process_to_sr_tests  ================
[17:04:55] [PASSED] coalesce-same-reg
[17:04:55] [PASSED] no-match-no-add
[17:04:55] [PASSED] match-or
[17:04:55] [PASSED] match-or-xfail
[17:04:55] [PASSED] no-match-no-add-multiple-rules
[17:04:55] [PASSED] two-regs-two-entries
[17:04:55] [PASSED] clr-one-set-other
[17:04:55] [PASSED] set-field
[17:04:55] [PASSED] conflict-duplicate
[17:04:55] [PASSED] conflict-not-disjoint
[17:04:55] [PASSED] conflict-reg-type
[17:04:55] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[17:04:55] ================== xe_rtp_process_tests  ===================
[17:04:55] [PASSED] active1
[17:04:55] [PASSED] active2
[17:04:55] [PASSED] active-inactive
[17:04:55] [PASSED] inactive-active
[17:04:55] [PASSED] inactive-1st_or_active-inactive
[17:04:55] [PASSED] inactive-2nd_or_active-inactive
[17:04:55] [PASSED] inactive-last_or_active-inactive
[17:04:55] [PASSED] inactive-no_or_active-inactive
[17:04:55] ============== [PASSED] xe_rtp_process_tests ===============
[17:04:55] ===================== [PASSED] xe_rtp ======================
[17:04:55] ==================== xe_wa (1 subtest) =====================
[17:04:55] ======================== xe_wa_gt  =========================
[17:04:55] [PASSED] TIGERLAKE B0
[17:04:55] [PASSED] DG1 A0
[17:04:55] [PASSED] DG1 B0
[17:04:55] [PASSED] ALDERLAKE_S A0
[17:04:55] [PASSED] ALDERLAKE_S B0
[17:04:55] [PASSED] ALDERLAKE_S C0
[17:04:55] [PASSED] ALDERLAKE_S D0
[17:04:55] [PASSED] ALDERLAKE_P A0
[17:04:55] [PASSED] ALDERLAKE_P B0
[17:04:55] [PASSED] ALDERLAKE_P C0
[17:04:55] [PASSED] ALDERLAKE_S RPLS D0
[17:04:55] [PASSED] ALDERLAKE_P RPLU E0
[17:04:55] [PASSED] DG2 G10 C0
[17:04:55] [PASSED] DG2 G11 B1
[17:04:55] [PASSED] DG2 G12 A1
[17:04:55] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[17:04:55] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[17:04:55] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[17:04:55] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[17:04:55] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[17:04:55] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[17:04:55] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[17:04:55] ==================== [PASSED] xe_wa_gt =====================
[17:04:55] ====================== [PASSED] xe_wa ======================
[17:04:55] ============================================================
[17:04:55] Testing complete. Ran 510 tests: passed: 492, skipped: 18
[17:04:55] Elapsed time: 42.932s total, 5.135s configuring, 37.329s building, 0.450s running

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

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[17:05:22] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:05:24] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[17:05:33] Starting KUnit Kernel (1/1)...
[17:05:33] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:05:33] ================= ttm_device (5 subtests) ==================
[17:05:33] [PASSED] ttm_device_init_basic
[17:05:33] [PASSED] ttm_device_init_multiple
[17:05:33] [PASSED] ttm_device_fini_basic
[17:05:33] [PASSED] ttm_device_init_no_vma_man
[17:05:33] ================== ttm_device_init_pools  ==================
[17:05:33] [PASSED] No DMA allocations, no DMA32 required
[17:05:33] [PASSED] DMA allocations, DMA32 required
[17:05:33] [PASSED] No DMA allocations, DMA32 required
[17:05:33] [PASSED] DMA allocations, no DMA32 required
[17:05:33] ============== [PASSED] ttm_device_init_pools ==============
[17:05:33] =================== [PASSED] ttm_device ====================
[17:05:33] ================== ttm_pool (8 subtests) ===================
[17:05:33] ================== ttm_pool_alloc_basic  ===================
[17:05:33] [PASSED] One page
[17:05:33] [PASSED] More than one page
[17:05:33] [PASSED] Above the allocation limit
[17:05:33] [PASSED] One page, with coherent DMA mappings enabled
[17:05:33] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[17:05:33] ============== [PASSED] ttm_pool_alloc_basic ===============
[17:05:33] ============== ttm_pool_alloc_basic_dma_addr  ==============
[17:05:33] [PASSED] One page
[17:05:33] [PASSED] More than one page
[17:05:33] [PASSED] Above the allocation limit
[17:05:33] [PASSED] One page, with coherent DMA mappings enabled
[17:05:33] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[17:05:33] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[17:05:33] [PASSED] ttm_pool_alloc_order_caching_match
[17:05:33] [PASSED] ttm_pool_alloc_caching_mismatch
[17:05:33] [PASSED] ttm_pool_alloc_order_mismatch
[17:05:33] [PASSED] ttm_pool_free_dma_alloc
[17:05:33] [PASSED] ttm_pool_free_no_dma_alloc
[17:05:33] [PASSED] ttm_pool_fini_basic
[17:05:33] ==================== [PASSED] ttm_pool =====================
[17:05:33] ================ ttm_resource (8 subtests) =================
[17:05:33] ================= ttm_resource_init_basic  =================
[17:05:33] [PASSED] Init resource in TTM_PL_SYSTEM
[17:05:33] [PASSED] Init resource in TTM_PL_VRAM
[17:05:33] [PASSED] Init resource in a private placement
[17:05:33] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[17:05:33] ============= [PASSED] ttm_resource_init_basic =============
[17:05:33] [PASSED] ttm_resource_init_pinned
[17:05:33] [PASSED] ttm_resource_fini_basic
[17:05:33] [PASSED] ttm_resource_manager_init_basic
[17:05:33] [PASSED] ttm_resource_manager_usage_basic
[17:05:33] [PASSED] ttm_resource_manager_set_used_basic
[17:05:33] [PASSED] ttm_sys_man_alloc_basic
[17:05:33] [PASSED] ttm_sys_man_free_basic
[17:05:33] ================== [PASSED] ttm_resource ===================
[17:05:33] =================== ttm_tt (15 subtests) ===================
[17:05:33] ==================== ttm_tt_init_basic  ====================
[17:05:33] [PASSED] Page-aligned size
[17:05:33] [PASSED] Extra pages requested
[17:05:33] ================ [PASSED] ttm_tt_init_basic ================
[17:05:33] [PASSED] ttm_tt_init_misaligned
[17:05:33] [PASSED] ttm_tt_fini_basic
[17:05:33] [PASSED] ttm_tt_fini_sg
[17:05:33] [PASSED] ttm_tt_fini_shmem
[17:05:33] [PASSED] ttm_tt_create_basic
[17:05:33] [PASSED] ttm_tt_create_invalid_bo_type
[17:05:33] [PASSED] ttm_tt_create_ttm_exists
[17:05:33] [PASSED] ttm_tt_create_failed
[17:05:33] [PASSED] ttm_tt_destroy_basic
[17:05:33] [PASSED] ttm_tt_populate_null_ttm
[17:05:33] [PASSED] ttm_tt_populate_populated_ttm
[17:05:33] [PASSED] ttm_tt_unpopulate_basic
[17:05:33] [PASSED] ttm_tt_unpopulate_empty_ttm
[17:05:33] [PASSED] ttm_tt_swapin_basic
[17:05:33] ===================== [PASSED] ttm_tt ======================
[17:05:33] =================== ttm_bo (14 subtests) ===================
[17:05:33] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[17:05:33] [PASSED] Cannot be interrupted and sleeps
[17:05:33] [PASSED] Cannot be interrupted, locks straight away
[17:05:33] [PASSED] Can be interrupted, sleeps
[17:05:33] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[17:05:33] [PASSED] ttm_bo_reserve_locked_no_sleep
[17:05:33] [PASSED] ttm_bo_reserve_no_wait_ticket
[17:05:33] [PASSED] ttm_bo_reserve_double_resv
[17:05:33] [PASSED] ttm_bo_reserve_interrupted
[17:05:33] [PASSED] ttm_bo_reserve_deadlock
[17:05:33] [PASSED] ttm_bo_unreserve_basic
[17:05:33] [PASSED] ttm_bo_unreserve_pinned
[17:05:33] [PASSED] ttm_bo_unreserve_bulk
[17:05:33] [PASSED] ttm_bo_fini_basic
[17:05:33] [PASSED] ttm_bo_fini_shared_resv
[17:05:33] [PASSED] ttm_bo_pin_basic
[17:05:33] [PASSED] ttm_bo_pin_unpin_resource
[17:05:33] [PASSED] ttm_bo_multiple_pin_one_unpin
[17:05:33] ===================== [PASSED] ttm_bo ======================
[17:05:33] ============== ttm_bo_validate (21 subtests) ===============
[17:05:33] ============== ttm_bo_init_reserved_sys_man  ===============
[17:05:33] [PASSED] Buffer object for userspace
[17:05:33] [PASSED] Kernel buffer object
[17:05:33] [PASSED] Shared buffer object
[17:05:33] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[17:05:33] ============== ttm_bo_init_reserved_mock_man  ==============
[17:05:33] [PASSED] Buffer object for userspace
[17:05:33] [PASSED] Kernel buffer object
[17:05:33] [PASSED] Shared buffer object
[17:05:33] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[17:05:33] [PASSED] ttm_bo_init_reserved_resv
[17:05:33] ================== ttm_bo_validate_basic  ==================
[17:05:33] [PASSED] Buffer object for userspace
[17:05:33] [PASSED] Kernel buffer object
[17:05:33] [PASSED] Shared buffer object
[17:05:33] ============== [PASSED] ttm_bo_validate_basic ==============
[17:05:33] [PASSED] ttm_bo_validate_invalid_placement
[17:05:33] ============= ttm_bo_validate_same_placement  ==============
[17:05:33] [PASSED] System manager
[17:05:33] [PASSED] VRAM manager
[17:05:33] ========= [PASSED] ttm_bo_validate_same_placement ==========
[17:05:33] [PASSED] ttm_bo_validate_failed_alloc
[17:05:33] [PASSED] ttm_bo_validate_pinned
[17:05:33] [PASSED] ttm_bo_validate_busy_placement
[17:05:33] ================ ttm_bo_validate_multihop  =================
[17:05:33] [PASSED] Buffer object for userspace
[17:05:33] [PASSED] Kernel buffer object
[17:05:33] [PASSED] Shared buffer object
[17:05:33] ============ [PASSED] ttm_bo_validate_multihop =============
[17:05:33] ========== ttm_bo_validate_no_placement_signaled  ==========
[17:05:33] [PASSED] Buffer object in system domain, no page vector
[17:05:33] [PASSED] Buffer object in system domain with an existing page vector
[17:05:33] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[17:05:33] ======== ttm_bo_validate_no_placement_not_signaled  ========
[17:05:33] [PASSED] Buffer object for userspace
[17:05:33] [PASSED] Kernel buffer object
[17:05:33] [PASSED] Shared buffer object
[17:05:33] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[17:05:33] [PASSED] ttm_bo_validate_move_fence_signaled
[17:05:33] ========= ttm_bo_validate_move_fence_not_signaled  =========
[17:05:33] [PASSED] Waits for GPU
[17:05:33] [PASSED] Tries to lock straight away
[17:05:33] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[17:05:33] [PASSED] ttm_bo_validate_happy_evict
[17:05:33] [PASSED] ttm_bo_validate_all_pinned_evict
[17:05:33] [PASSED] ttm_bo_validate_allowed_only_evict
[17:05:33] [PASSED] ttm_bo_validate_deleted_evict
[17:05:33] [PASSED] ttm_bo_validate_busy_domain_evict
[17:05:33] [PASSED] ttm_bo_validate_evict_gutting
[17:05:33] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[17:05:33] ================= [PASSED] ttm_bo_validate =================
[17:05:33] ============================================================
[17:05:33] Testing complete. Ran 101 tests: passed: 101
[17:05:33] Elapsed time: 11.041s total, 1.641s configuring, 9.183s building, 0.186s running

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



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

* Re: [PATCH v2 2/2] drm/xe/xe_survivability: Add support for survivability mode v2
  2025-12-01 14:34 ` [PATCH v2 2/2] drm/xe/xe_survivability: Add support for survivability mode v2 Riana Tauro
@ 2025-12-01 17:43   ` Rodrigo Vivi
  2025-12-02  3:07     ` Riana Tauro
  0 siblings, 1 reply; 11+ messages in thread
From: Rodrigo Vivi @ 2025-12-01 17:43 UTC (permalink / raw)
  To: Riana Tauro; +Cc: intel-xe, anshuman.gupta, badal.nilawar

On Mon, Dec 01, 2025 at 08:04:23PM +0530, Riana Tauro wrote:
> v2 survivability breadcrumbs introduces a new mode called
> SPI Flash Descriptor Override mode (FDO). This is enabled by
> PCODE when MEI itself fails and firmware cannot be updated via
> MEI using igsc. This mode provides the ability to update
> the firmware directly via SPI driver.
> 
> Xe KMD initializes the nvm aux driver if FDO mode is enabled.
> 
> Userspace should check FDO mode entry in survivability info sysfs before
> using the SPI driver to update firmware.
> 
> 	/sys/bus/pci/devices/<device>/survivability_info/fdo_mode
> 
> v2 also supports survivability mode for critical boot errors.
> 
> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
> ---
> v2: do not exit survivability mode in case of mei init failure (Rodrigo)

I still see the goto err there, what am I missing?
I mean, no strong feeling about what is right or wrong to do here,
I just want to make sure the code matches the doc and expectations...

> ---
>  drivers/gpu/drm/xe/xe_pcode_api.h             |  2 +
>  drivers/gpu/drm/xe/xe_survivability_mode.c    | 44 ++++++++++++++++---
>  .../gpu/drm/xe/xe_survivability_mode_types.h  |  6 +++
>  3 files changed, 46 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_pcode_api.h b/drivers/gpu/drm/xe/xe_pcode_api.h
> index 70dcd6625680..975892d6b230 100644
> --- a/drivers/gpu/drm/xe/xe_pcode_api.h
> +++ b/drivers/gpu/drm/xe/xe_pcode_api.h
> @@ -77,11 +77,13 @@
>  
>  #define PCODE_SCRATCH(x)		XE_REG(0x138320 + ((x) * 4))
>  /* PCODE_SCRATCH0 */
> +#define   BREADCRUMB_VERSION		REG_GENMASK(31, 29)
>  #define   AUXINFO_REG_OFFSET		REG_GENMASK(17, 15)
>  #define   OVERFLOW_REG_OFFSET		REG_GENMASK(14, 12)
>  #define   HISTORY_TRACKING		REG_BIT(11)
>  #define   OVERFLOW_SUPPORT		REG_BIT(10)
>  #define   AUXINFO_SUPPORT		REG_BIT(9)
> +#define   FDO_MODE			REG_BIT(4)
>  #define   BOOT_STATUS			REG_GENMASK(3, 1)
>  #define      CRITICAL_FAILURE		4
>  #define      NON_CRITICAL_FAILURE	7
> diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c b/drivers/gpu/drm/xe/xe_survivability_mode.c
> index b5b582442637..8d409bc9c14b 100644
> --- a/drivers/gpu/drm/xe/xe_survivability_mode.c
> +++ b/drivers/gpu/drm/xe/xe_survivability_mode.c
> @@ -16,6 +16,7 @@
>  #include "xe_heci_gsc.h"
>  #include "xe_i2c.h"
>  #include "xe_mmio.h"
> +#include "xe_nvm.h"
>  #include "xe_pcode_api.h"
>  #include "xe_vsec.h"
>  
> @@ -66,6 +67,11 @@
>   *
>   * - ``aux_info<n>`` : Some failures have additional debug information
>   *
> + * - ``fdo_mode`` : To allow recovery in scenarios where MEI itself fails, a new SPI Flash
> + *   Descriptor Override (FDO) mode is added in v2 survivability breadcrumbs. This mode is enabled
> + *   by PCODE and provides the ability to directly update the firmware via SPI Driver without
> + *   any dependency on MEI. Xe KMD initializes the nvm aux driver if FDO mode is enabled.
> + *
>   * Runtime Survivability
>   * =====================
>   *
> @@ -94,6 +100,8 @@ static const char * const reg_map[] = {
>  	[AUX_INFO4]               = "Auxiliary Info 4",
>  };
>  
> +#define FDO_INFO	(MAX_SCRATCH_REG + 1)
> +
>  struct xe_survivability_attribute {
>  	struct device_attribute attr;
>  	u8 index;
> @@ -127,6 +135,11 @@ static void populate_survivability_info(struct xe_device *xe)
>  	set_survivability_info(mmio, info, CAPABILITY_INFO);
>  	reg_value = info[CAPABILITY_INFO];
>  
> +	survivability->version = REG_FIELD_GET(BREADCRUMB_VERSION, reg_value);
> +	/* FDO mode is exposed only from version 2 */
> +	if (survivability->version >= 2)
> +		survivability->fdo_mode = REG_FIELD_GET(FDO_MODE, reg_value);
> +
>  	if (reg_value & HISTORY_TRACKING) {
>  		set_survivability_info(mmio, info, POSTCODE_TRACE);
>  
> @@ -188,6 +201,9 @@ static ssize_t survivability_info_show(struct device *dev,
>  	struct xe_survivability *survivability = &xe->survivability;
>  	u32 *info = survivability->info;
>  
> +	if (sa->index == FDO_INFO)
> +		return sysfs_emit(buff, "%s\n", str_enabled_disabled(survivability->fdo_mode));
> +
>  	return sysfs_emit(buff, "0x%x\n", info[sa->index]);
>  }
>  
> @@ -205,13 +221,18 @@ SURVIVABILITY_ATTR_RO(aux_info1, AUX_INFO1);
>  SURVIVABILITY_ATTR_RO(aux_info2, AUX_INFO2);
>  SURVIVABILITY_ATTR_RO(aux_info3, AUX_INFO3);
>  SURVIVABILITY_ATTR_RO(aux_info4, AUX_INFO4);
> +SURVIVABILITY_ATTR_RO(fdo_mode, FDO_INFO);
>  
>  static void xe_survivability_mode_fini(void *arg)
>  {
>  	struct xe_device *xe = arg;
> +	struct xe_survivability *survivability = &xe->survivability;
>  	struct pci_dev *pdev = to_pci_dev(xe->drm.dev);
>  	struct device *dev = &pdev->dev;
>  
> +	if (survivability->fdo_mode)
> +		xe_nvm_fini(xe);
> +
>  	device_remove_file(dev, &dev_attr_survivability_mode);
>  }
>  
> @@ -222,7 +243,10 @@ static umode_t survivability_info_attrs_visible(struct kobject *kobj, struct att
>  	struct xe_survivability *survivability = &xe->survivability;
>  	u32 *info = survivability->info;
>  
> -	if (info[idx])
> +	/* FDO mode is visible only when supported */
> +	if (idx >= MAX_SCRATCH_REG && survivability->version >= 2)
> +		return 0400;
> +	else if (info[idx])
>  		return 0400;
>  
>  	return 0;
> @@ -238,6 +262,7 @@ static struct attribute *survivability_info_attrs[] = {
>  	&attr_aux_info2.attr.attr,
>  	&attr_aux_info3.attr.attr,
>  	&attr_aux_info4.attr.attr,
> +	&attr_fdo_mode.attr.attr,
>  	NULL,
>  };
>  
> @@ -287,12 +312,16 @@ static int enable_boot_survivability_mode(struct pci_dev *pdev)
>  	/* Make sure xe_heci_gsc_init() knows about survivability mode */
>  	survivability->mode = true;
>  
> -	ret = xe_heci_gsc_init(xe);
> -	if (ret)
> -		goto err;
> +	xe_heci_gsc_init(xe);
>  
>  	xe_vsec_init(xe);
>  
> +	if (survivability->fdo_mode) {
> +		ret = xe_nvm_init(xe);
> +		if (ret)
> +			goto err;
> +	}
> +
>  	ret = xe_i2c_probe(xe);
>  	if (ret)
>  		goto err;
> @@ -302,6 +331,7 @@ static int enable_boot_survivability_mode(struct pci_dev *pdev)
>  	return 0;
>  
>  err:
> +	dev_err(dev, "Failed to enable Survivability Mode\n");
>  	survivability->mode = false;
>  	return ret;
>  }
> @@ -408,8 +438,10 @@ int xe_survivability_mode_boot_enable(struct xe_device *xe)
>  
>  	populate_survivability_info(xe);
>  
> -	/* Log breadcrumbs but do not enter survivability mode for Critical boot errors */
> -	if (survivability->boot_status == CRITICAL_FAILURE) {
> +	/*
> +	 * v2 supports survivability mode for critical errors
> +	 */
> +	if (survivability->version < 2  && survivability->boot_status == CRITICAL_FAILURE) {
>  		log_survivability_info(pdev);
>  		return -ENXIO;
>  	}
> diff --git a/drivers/gpu/drm/xe/xe_survivability_mode_types.h b/drivers/gpu/drm/xe/xe_survivability_mode_types.h
> index f31b3907d933..bd5dc1c955ff 100644
> --- a/drivers/gpu/drm/xe/xe_survivability_mode_types.h
> +++ b/drivers/gpu/drm/xe/xe_survivability_mode_types.h
> @@ -44,6 +44,12 @@ struct xe_survivability {
>  
>  	/** @type: survivability type */
>  	enum xe_survivability_type type;
> +
> +	/** @fdo_mode: indicates if FDO mode is enabled */
> +	bool fdo_mode;
> +
> +	/** @version: breadcrumb version of survivability mode  */
> +	u8 version;
>  };
>  
>  #endif /* _XE_SURVIVABILITY_MODE_TYPES_H_ */
> -- 
> 2.47.1
> 

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

* ✓ Xe.CI.BAT: success for Redesign survivability mode (rev2)
  2025-12-01 14:34 [PATCH v2 0/2] Redesign survivability mode Riana Tauro
                   ` (2 preceding siblings ...)
  2025-12-01 17:05 ` ✓ CI.KUnit: success for Redesign survivability mode (rev2) Patchwork
@ 2025-12-01 17:45 ` Patchwork
  2025-12-01 20:12 ` ✗ Xe.CI.Full: failure " Patchwork
  4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-12-01 17:45 UTC (permalink / raw)
  To: Riana Tauro; +Cc: intel-xe

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

== Series Details ==

Series: Redesign survivability mode (rev2)
URL   : https://patchwork.freedesktop.org/series/157425/
State : success

== Summary ==

CI Bug Log - changes from xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6_BAT -> xe-pw-157425v2_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (12 -> 12)
------------------------------

  No changes in participating hosts

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

  Here are the changes found in xe-pw-157425v2_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@xe_waitfence@abstime:
    - bat-dg2-oem2:       [PASS][1] -> [TIMEOUT][2] ([Intel XE#6506])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/bat-dg2-oem2/igt@xe_waitfence@abstime.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/bat-dg2-oem2/igt@xe_waitfence@abstime.html

  
  [Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506


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

  * IGT: IGT_8646 -> IGT_8647
  * Linux: xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6 -> xe-pw-157425v2

  IGT_8646: 8646
  IGT_8647: 8647
  xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6: 4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6
  xe-pw-157425v2: 157425v2

== Logs ==

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

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

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

* Re: [PATCH v2 1/2] drm/xe/xe_survivability: Redesign survivability mode
  2025-12-01 14:34 ` [PATCH v2 1/2] drm/xe/xe_survivability: " Riana Tauro
@ 2025-12-01 17:48   ` Rodrigo Vivi
  2025-12-02  3:10     ` Riana Tauro
  0 siblings, 1 reply; 11+ messages in thread
From: Rodrigo Vivi @ 2025-12-01 17:48 UTC (permalink / raw)
  To: Riana Tauro; +Cc: intel-xe, anshuman.gupta, badal.nilawar

On Mon, Dec 01, 2025 at 08:04:22PM +0530, Riana Tauro wrote:
> Redesign survivability mode to have only one value per file.
> 
> 1) Retain the survivability_mode sysfs to indicate the type
> 
> 	cat /sys/bus/pci/devices/0000\:03\:00.0/survivability_mode
> 	(Boot / Runtime)
> 
> 2) Add survivability_info directory to expose boot breadcrumbs.
> Entries in survivability mode sysfs are only visible when
> boot breadcrumb registers are populated.
> 
> 	/sys/bus/pci/devices/0000:03:00.0/survivability_info
> 	├── aux_info0
> 	├── aux_info1
> 	├── aux_info2
> 	├── aux_info3
> 	├── aux_info4
> 	├── capability_info
> 	├── postcode_trace
> 	└── postcode_trace_overflow
> 
> Capability_info:
> 
> 	Provides data about boot status and has bits that
> 	indicate the support for the other breadcrumbs
> 
> Postcode Trace / Postcode Trace Overflow :
> 
> 	Each postcode is represented as an 8-bit value and represents
> 	a boot failure event. When a new failure event is logged by Pcode
> 	the existing postcodes are shifted left. These entries provide a
> 	history of 8 postcodes.
> 
> Auxiliary Info:
> 
> 	Some failures have additional debug information.
> 
> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
> ---
> v2: Add array map for names (Rodrigo)
> ---
>  drivers/gpu/drm/xe/xe_survivability_mode.c    | 199 +++++++++++-------
>  .../gpu/drm/xe/xe_survivability_mode_types.h  |  22 +-
>  2 files changed, 135 insertions(+), 86 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c b/drivers/gpu/drm/xe/xe_survivability_mode.c
> index 1662bfddd4bc..b5b582442637 100644
> --- a/drivers/gpu/drm/xe/xe_survivability_mode.c
> +++ b/drivers/gpu/drm/xe/xe_survivability_mode.c
> @@ -19,8 +19,6 @@
>  #include "xe_pcode_api.h"
>  #include "xe_vsec.h"
>  
> -#define MAX_SCRATCH_MMIO 8
> -
>  /**
>   * DOC: Survivability Mode
>   *
> @@ -48,19 +46,25 @@
>   *
>   * Refer :ref:`xe_configfs` for more details on how to use configfs
>   *
> - * Survivability mode is indicated by the below admin-only readable sysfs which provides additional
> - * debug information::
> + * Survivability mode is indicated by the below admin-only readable sysfs entry::
>   *
>   *	/sys/bus/pci/devices/<device>/survivability_mode
>   *
> - * Capability Information:
> - *	Provides boot status
> - * Postcode Information:
> - *	Provides information about the failure
> - * Overflow Information
> - *	Provides history of previous failures
> - * Auxiliary Information
> - *	Certain failures may have information in addition to postcode information
> + * Survivability mode sysfs provides information about the type of survivability mode.

Perhaps expand here that it is ether 'Runtime' or 'Boot'...

> + * Any additional debug information if present will be visible under the directory
> + * ``survivability_info``::
> + *
> + *     /sys/bus/pci/devices/<device>/survivability_info/
> + *
> + * This directory has the following attributes
> + *
> + * - ``capability_info`` : Indicates Boot status and support for additional information
> + *
> + * - ``postcode_trace``, ``postcode_trace_overflow`` : Each postcode is a 8bit value and
> + *   represents a boot failure event. When a new failure event is logged by PCODE the
> + *   existing postcodes are shifted left. These entries provide a history of 8 postcodes.
> + *
> + * - ``aux_info<n>`` : Some failures have additional debug information
>   *
>   * Runtime Survivability
>   * =====================
> @@ -79,49 +83,63 @@
>   * to restore device to normal operation.
>   */
>  
> +static const char * const reg_map[] = {
> +	[CAPABILITY_INFO]         = "Capability_info",

Why do we need '_' between the words here instead of space like
the entries below?

> +	[POSTCODE_TRACE]          = "Postcode trace",
> +	[POSTCODE_TRACE_OVERFLOW] = "Postcode trace overflow",
> +	[AUX_INFO0]               = "Auxiliary Info 0",
> +	[AUX_INFO1]               = "Auxiliary Info 1",
> +	[AUX_INFO2]               = "Auxiliary Info 2",
> +	[AUX_INFO3]               = "Auxiliary Info 3",
> +	[AUX_INFO4]               = "Auxiliary Info 4",
> +};
> +
> +struct xe_survivability_attribute {
> +	struct device_attribute attr;
> +	u8 index;
> +};
> +
> +static struct
> +xe_survivability_attribute *dev_attr_to_survivability_attr(struct device_attribute *attr)
> +{
> +	return container_of(attr, struct xe_survivability_attribute, attr);
> +}
> +
>  static u32 aux_history_offset(u32 reg_value)
>  {
>  	return REG_FIELD_GET(AUXINFO_HISTORY_OFFSET, reg_value);
>  }
>  
> -static void set_survivability_info(struct xe_mmio *mmio, struct xe_survivability_info *info,
> -				   int id, char *name)
> +static void set_survivability_info(struct xe_mmio *mmio, u32  *info, int id)
>  {
> -	strscpy(info[id].name, name, sizeof(info[id].name));
> -	info[id].reg = PCODE_SCRATCH(id).raw;
> -	info[id].value = xe_mmio_read32(mmio, PCODE_SCRATCH(id));
> +	info[id] = xe_mmio_read32(mmio, PCODE_SCRATCH(id));
>  }
>  
>  static void populate_survivability_info(struct xe_device *xe)
>  {
>  	struct xe_survivability *survivability = &xe->survivability;
> -	struct xe_survivability_info *info = survivability->info;
> +	u32 *info = survivability->info;
>  	struct xe_mmio *mmio;
>  	u32 id = 0, reg_value;
> -	char name[NAME_MAX];
>  	int index;
>  
>  	mmio = xe_root_tile_mmio(xe);
> -	set_survivability_info(mmio, info, id, "Capability Info");
> -	reg_value = info[id].value;
> +	set_survivability_info(mmio, info, CAPABILITY_INFO);
> +	reg_value = info[CAPABILITY_INFO];
>  
>  	if (reg_value & HISTORY_TRACKING) {
> -		id++;
> -		set_survivability_info(mmio, info, id, "Postcode Info");
> +		set_survivability_info(mmio, info, POSTCODE_TRACE);
>  
> -		if (reg_value & OVERFLOW_SUPPORT) {
> -			id = REG_FIELD_GET(OVERFLOW_REG_OFFSET, reg_value);
> -			set_survivability_info(mmio, info, id, "Overflow Info");
> -		}
> +		if (reg_value & OVERFLOW_SUPPORT)
> +			set_survivability_info(mmio, info, POSTCODE_TRACE_OVERFLOW);
>  	}
>  
>  	if (reg_value & AUXINFO_SUPPORT) {
>  		id = REG_FIELD_GET(AUXINFO_REG_OFFSET, reg_value);
>  
> -		for (index = 0; id && reg_value; index++, reg_value = info[id].value,
> -		     id = aux_history_offset(reg_value)) {
> -			snprintf(name, NAME_MAX, "Auxiliary Info %d", index);
> -			set_survivability_info(mmio, info, id, name);
> +		for (index = 0; id >= AUX_INFO0 && id < MAX_SCRATCH_REG; index++) {
> +			set_survivability_info(mmio, info, id);
> +			id = aux_history_offset(info[id]);
>  		}
>  	}
>  }
> @@ -130,15 +148,14 @@ static void log_survivability_info(struct pci_dev *pdev)
>  {
>  	struct xe_device *xe = pdev_to_xe_device(pdev);
>  	struct xe_survivability *survivability = &xe->survivability;
> -	struct xe_survivability_info *info = survivability->info;
> +	u32 *info = survivability->info;
>  	int id;
>  
>  	dev_info(&pdev->dev, "Survivability Boot Status : Critical Failure (%d)\n",
>  		 survivability->boot_status);
> -	for (id = 0; id < MAX_SCRATCH_MMIO; id++) {
> -		if (info[id].reg)
> -			dev_info(&pdev->dev, "%s: 0x%x - 0x%x\n", info[id].name,
> -				 info[id].reg, info[id].value);
> +	for (id = 0; id < MAX_SCRATCH_REG; id++) {
> +		if (info[id])
> +			dev_info(&pdev->dev, "%s: 0x%x\n", reg_map[id], info[id]);
>  	}
>  }
>  
> @@ -156,25 +173,38 @@ static ssize_t survivability_mode_show(struct device *dev,
>  	struct pci_dev *pdev = to_pci_dev(dev);
>  	struct xe_device *xe = pdev_to_xe_device(pdev);
>  	struct xe_survivability *survivability = &xe->survivability;
> -	struct xe_survivability_info *info = survivability->info;
> -	int index = 0, count = 0;
>  
> -	count += sysfs_emit_at(buff, count, "Survivability mode type: %s\n",
> -			       survivability->type ? "Runtime" : "Boot");
> +	return sysfs_emit(buff, "%s\n", survivability->type ? "Runtime" : "Boot");
> +}
>  
> -	if (!check_boot_failure(xe))
> -		return count;
> +static DEVICE_ATTR_ADMIN_RO(survivability_mode);
>  
> -	for (index = 0; index < MAX_SCRATCH_MMIO; index++) {
> -		if (info[index].reg)
> -			count += sysfs_emit_at(buff, count, "%s: 0x%x - 0x%x\n", info[index].name,
> -					       info[index].reg, info[index].value);
> -	}
> +static ssize_t survivability_info_show(struct device *dev,
> +				       struct device_attribute *attr, char *buff)
> +{
> +	struct xe_survivability_attribute *sa = dev_attr_to_survivability_attr(attr);
> +	struct pci_dev *pdev = to_pci_dev(dev);
> +	struct xe_device *xe = pdev_to_xe_device(pdev);
> +	struct xe_survivability *survivability = &xe->survivability;
> +	u32 *info = survivability->info;
>  
> -	return count;
> +	return sysfs_emit(buff, "0x%x\n", info[sa->index]);
>  }
>  
> -static DEVICE_ATTR_ADMIN_RO(survivability_mode);
> +#define SURVIVABILITY_ATTR_RO(name, _index)					\
> +	struct xe_survivability_attribute attr_##name =	{			\
> +		.attr =  __ATTR(name, 0400, survivability_info_show, NULL),	\
> +		.index = _index,						\
> +	}
> +
> +SURVIVABILITY_ATTR_RO(capability_info, CAPABILITY_INFO);
> +SURVIVABILITY_ATTR_RO(postcode_trace, POSTCODE_TRACE);
> +SURVIVABILITY_ATTR_RO(postcode_trace_overflow, POSTCODE_TRACE_OVERFLOW);
> +SURVIVABILITY_ATTR_RO(aux_info0, AUX_INFO0);
> +SURVIVABILITY_ATTR_RO(aux_info1, AUX_INFO1);
> +SURVIVABILITY_ATTR_RO(aux_info2, AUX_INFO2);
> +SURVIVABILITY_ATTR_RO(aux_info3, AUX_INFO3);
> +SURVIVABILITY_ATTR_RO(aux_info4, AUX_INFO4);
>  
>  static void xe_survivability_mode_fini(void *arg)
>  {
> @@ -182,17 +212,48 @@ static void xe_survivability_mode_fini(void *arg)
>  	struct pci_dev *pdev = to_pci_dev(xe->drm.dev);
>  	struct device *dev = &pdev->dev;
>  
> -	sysfs_remove_file(&dev->kobj, &dev_attr_survivability_mode.attr);
> +	device_remove_file(dev, &dev_attr_survivability_mode);
> +}
> +
> +static umode_t survivability_info_attrs_visible(struct kobject *kobj, struct attribute *attr,
> +						int idx)
> +{
> +	struct xe_device *xe = kdev_to_xe_device(kobj_to_dev(kobj));
> +	struct xe_survivability *survivability = &xe->survivability;
> +	u32 *info = survivability->info;
> +
> +	if (info[idx])
> +		return 0400;
> +
> +	return 0;
>  }
>  
> +/* Attributes are ordered according to enum scratch_reg */
> +static struct attribute *survivability_info_attrs[] = {
> +	&attr_capability_info.attr.attr,
> +	&attr_postcode_trace.attr.attr,
> +	&attr_postcode_trace_overflow.attr.attr,
> +	&attr_aux_info0.attr.attr,
> +	&attr_aux_info1.attr.attr,
> +	&attr_aux_info2.attr.attr,
> +	&attr_aux_info3.attr.attr,
> +	&attr_aux_info4.attr.attr,
> +	NULL,
> +};
> +
> +static const struct attribute_group survivability_info_group = {
> +	.name = "survivability_info",
> +	.attrs = survivability_info_attrs,
> +	.is_visible = survivability_info_attrs_visible,
> +};
> +
>  static int create_survivability_sysfs(struct pci_dev *pdev)
>  {
>  	struct device *dev = &pdev->dev;
>  	struct xe_device *xe = pdev_to_xe_device(pdev);
>  	int ret;
>  
> -	/* create survivability mode sysfs */
> -	ret = sysfs_create_file(&dev->kobj, &dev_attr_survivability_mode.attr);
> +	ret = device_create_file(dev, &dev_attr_survivability_mode);
>  	if (ret) {
>  		dev_warn(dev, "Failed to create survivability sysfs files\n");
>  		return ret;
> @@ -203,6 +264,12 @@ static int create_survivability_sysfs(struct pci_dev *pdev)
>  	if (ret)
>  		return ret;
>  
> +	if (check_boot_failure(xe)) {
> +		ret = devm_device_add_group(dev, &survivability_info_group);
> +		if (ret)
> +			return ret;
> +	}
> +
>  	return 0;
>  }
>  
> @@ -239,25 +306,6 @@ static int enable_boot_survivability_mode(struct pci_dev *pdev)
>  	return ret;
>  }
>  
> -static int init_survivability_mode(struct xe_device *xe)
> -{
> -	struct xe_survivability *survivability = &xe->survivability;
> -	struct xe_survivability_info *info;
> -
> -	survivability->size = MAX_SCRATCH_MMIO;
> -
> -	info = devm_kcalloc(xe->drm.dev, survivability->size, sizeof(*info),
> -			    GFP_KERNEL);
> -	if (!info)
> -		return -ENOMEM;
> -
> -	survivability->info = info;
> -
> -	populate_survivability_info(xe);
> -
> -	return 0;
> -}
> -
>  /**
>   * xe_survivability_mode_is_boot_enabled- check if boot survivability mode is enabled
>   * @xe: xe device instance
> @@ -325,9 +373,7 @@ int xe_survivability_mode_runtime_enable(struct xe_device *xe)
>  		return -EINVAL;
>  	}
>  
> -	ret = init_survivability_mode(xe);
> -	if (ret)
> -		return ret;
> +	populate_survivability_info(xe);
>  
>  	ret = create_survivability_sysfs(pdev);
>  	if (ret)
> @@ -356,14 +402,11 @@ int xe_survivability_mode_boot_enable(struct xe_device *xe)
>  {
>  	struct xe_survivability *survivability = &xe->survivability;
>  	struct pci_dev *pdev = to_pci_dev(xe->drm.dev);
> -	int ret;
>  
>  	if (!xe_survivability_mode_is_requested(xe))
>  		return 0;
>  
> -	ret = init_survivability_mode(xe);
> -	if (ret)
> -		return ret;
> +	populate_survivability_info(xe);
>  
>  	/* Log breadcrumbs but do not enter survivability mode for Critical boot errors */
>  	if (survivability->boot_status == CRITICAL_FAILURE) {
> diff --git a/drivers/gpu/drm/xe/xe_survivability_mode_types.h b/drivers/gpu/drm/xe/xe_survivability_mode_types.h
> index cd65a5d167c9..f31b3907d933 100644
> --- a/drivers/gpu/drm/xe/xe_survivability_mode_types.h
> +++ b/drivers/gpu/drm/xe/xe_survivability_mode_types.h
> @@ -9,23 +9,29 @@
>  #include <linux/limits.h>
>  #include <linux/types.h>
>  
> +enum scratch_reg {
> +	CAPABILITY_INFO,
> +	POSTCODE_TRACE,
> +	POSTCODE_TRACE_OVERFLOW,
> +	AUX_INFO0,
> +	AUX_INFO1,
> +	AUX_INFO2,
> +	AUX_INFO3,
> +	AUX_INFO4,
> +	MAX_SCRATCH_REG,
> +};
> +
>  enum xe_survivability_type {
>  	XE_SURVIVABILITY_TYPE_BOOT,
>  	XE_SURVIVABILITY_TYPE_RUNTIME,
>  };
>  
> -struct xe_survivability_info {
> -	char name[NAME_MAX];
> -	u32 reg;
> -	u32 value;
> -};
> -
>  /**
>   * struct xe_survivability: Contains survivability mode information
>   */
>  struct xe_survivability {
> -	/** @info: struct that holds survivability info from scratch registers */
> -	struct xe_survivability_info *info;
> +	/** @info: survivability debug info */
> +	u32 info[MAX_SCRATCH_REG];
>  
>  	/** @size: number of scratch registers */
>  	u32 size;
> -- 
> 2.47.1
> 

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

* ✗ Xe.CI.Full: failure for Redesign survivability mode (rev2)
  2025-12-01 14:34 [PATCH v2 0/2] Redesign survivability mode Riana Tauro
                   ` (3 preceding siblings ...)
  2025-12-01 17:45 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-12-01 20:12 ` Patchwork
  4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-12-01 20:12 UTC (permalink / raw)
  To: Riana Tauro; +Cc: intel-xe

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

== Series Details ==

Series: Redesign survivability mode (rev2)
URL   : https://patchwork.freedesktop.org/series/157425/
State : failure

== Summary ==

CI Bug Log - changes from xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6_FULL -> xe-pw-157425v2_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-157425v2_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-157425v2_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

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

  No changes in participating hosts

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

  Here are the unknown changes that may have been introduced in xe-pw-157425v2_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-adlp:         NOTRUN -> [FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  
New tests
---------

  New tests have been introduced between xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6_FULL and xe-pw-157425v2_FULL:

### New IGT tests (4) ###

  * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-dp-2:
    - Statuses : 1 pass(s)
    - Exec time: [0.53] s

  * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-d-dp-2:
    - Statuses : 1 pass(s)
    - Exec time: [0.55] s

  * igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant@pipe-a-dp-2:
    - Statuses : 1 pass(s)
    - Exec time: [0.48] s

  * igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant@pipe-d-dp-2:
    - Statuses : 1 pass(s)
    - Exec time: [0.48] s

  

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

  Here are the changes found in xe-pw-157425v2_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_3d@basic:
    - shard-lnl:          NOTRUN -> [SKIP][2] ([Intel XE#6011])
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-1/igt@kms_3d@basic.html

  * igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1:
    - shard-adlp:         [PASS][3] -> [FAIL][4] ([Intel XE#3884]) +3 other tests fail
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-9/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-3/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html

  * igt@kms_async_flips@test-cursor:
    - shard-lnl:          NOTRUN -> [SKIP][5] ([Intel XE#664])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-1/igt@kms_async_flips@test-cursor.html

  * igt@kms_atomic_transition@plane-all-modeset-transition:
    - shard-bmg:          [PASS][6] -> [INCOMPLETE][7] ([Intel XE#2705])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition.html
    - shard-lnl:          NOTRUN -> [SKIP][8] ([Intel XE#3279])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition.html

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][9] ([Intel XE#2705])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2.html

  * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
    - shard-adlp:         NOTRUN -> [SKIP][10] ([Intel XE#607])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-3/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][11] ([Intel XE#3658]) +1 other test skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-adlp:         NOTRUN -> [SKIP][12] ([Intel XE#316]) +8 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-8/igt@kms_big_fb@linear-32bpp-rotate-270.html
    - shard-bmg:          NOTRUN -> [SKIP][13] ([Intel XE#2327]) +6 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-3/igt@kms_big_fb@linear-32bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-lnl:          NOTRUN -> [SKIP][14] ([Intel XE#1407]) +6 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-0:
    - shard-adlp:         NOTRUN -> [FAIL][15] ([Intel XE#1874]) +2 other tests fail
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-8/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][16] ([Intel XE#316]) +7 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-adlp:         NOTRUN -> [FAIL][17] ([Intel XE#6699])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-adlp:         NOTRUN -> [FAIL][18] ([Intel XE#1231]) +2 other tests fail
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#607])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][20] ([Intel XE#607])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#610])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][22] ([Intel XE#610])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
    - shard-lnl:          NOTRUN -> [SKIP][23] ([Intel XE#1428])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-adlp:         [PASS][24] -> [FAIL][25] ([Intel XE#1231]) +1 other test fail
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-adlp:         [PASS][26] -> [FAIL][27] ([Intel XE#1874]) +2 other tests fail
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#1124]) +15 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-4/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
    - shard-dg2-set2:     NOTRUN -> [SKIP][29] ([Intel XE#1124]) +16 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-433/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
    - shard-adlp:         NOTRUN -> [SKIP][30] ([Intel XE#1124]) +26 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-lnl:          NOTRUN -> [SKIP][31] ([Intel XE#1124]) +12 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          [PASS][32] -> [SKIP][33] ([Intel XE#2314] / [Intel XE#2894])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - shard-adlp:         NOTRUN -> [SKIP][34] ([Intel XE#2191]) +2 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-3/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][36] ([Intel XE#2191])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
    - shard-lnl:          NOTRUN -> [SKIP][37] ([Intel XE#1512])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-3/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
    - shard-adlp:         NOTRUN -> [SKIP][38] ([Intel XE#367]) +4 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-6/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#367]) +3 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-3840x2160p:
    - shard-lnl:          NOTRUN -> [SKIP][40] ([Intel XE#367]) +1 other test skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-3-displays-2160x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][41] ([Intel XE#367]) +3 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-466/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][42] ([Intel XE#787]) +139 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-432/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][43] ([Intel XE#2907])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][44] ([Intel XE#2669]) +3 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][45] ([Intel XE#2887]) +23 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-c-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][46] ([Intel XE#787]) +95 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-6/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-c-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][47] ([Intel XE#3442])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][48] ([Intel XE#3442])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][49] ([Intel XE#2669] / [Intel XE#3433]) +3 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][50] ([Intel XE#455] / [Intel XE#787]) +63 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#3432]) +2 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
    - shard-lnl:          NOTRUN -> [SKIP][52] ([Intel XE#3432]) +1 other test skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [ABORT][53] ([Intel XE#6675]) +9 other tests abort
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-edp-1.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][54] ([Intel XE#455] / [Intel XE#787]) +39 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#2887]) +14 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][56] ([Intel XE#2907]) +3 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#2652] / [Intel XE#787]) +4 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html

  * igt@kms_cdclk@plane-scaling:
    - shard-adlp:         NOTRUN -> [SKIP][58] ([Intel XE#4416] / [Intel XE#455])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-2/igt@kms_cdclk@plane-scaling.html
    - shard-bmg:          NOTRUN -> [SKIP][59] ([Intel XE#2724])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-7/igt@kms_cdclk@plane-scaling.html

  * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][60] ([Intel XE#4416]) +2 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-1.html

  * igt@kms_chamelium_color@ctm-green-to-red:
    - shard-adlp:         NOTRUN -> [SKIP][61] ([Intel XE#306]) +2 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-4/igt@kms_chamelium_color@ctm-green-to-red.html
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#2325]) +2 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-6/igt@kms_chamelium_color@ctm-green-to-red.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][63] ([Intel XE#306]) +2 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-434/igt@kms_chamelium_color@ctm-green-to-red.html

  * igt@kms_chamelium_color@ctm-max:
    - shard-lnl:          NOTRUN -> [SKIP][64] ([Intel XE#306]) +2 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-5/igt@kms_chamelium_color@ctm-max.html

  * igt@kms_chamelium_edid@dp-edid-resolution-list:
    - shard-adlp:         NOTRUN -> [SKIP][65] ([Intel XE#373]) +16 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-6/igt@kms_chamelium_edid@dp-edid-resolution-list.html
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#2252]) +14 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-3/igt@kms_chamelium_edid@dp-edid-resolution-list.html

  * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
    - shard-dg2-set2:     NOTRUN -> [SKIP][67] ([Intel XE#373]) +12 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html

  * igt@kms_chamelium_hpd@vga-hpd:
    - shard-lnl:          NOTRUN -> [SKIP][68] ([Intel XE#373]) +12 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-8/igt@kms_chamelium_hpd@vga-hpd.html

  * igt@kms_colorop@plane-xr24-xr24-bt2020_oetf:
    - shard-lnl:          NOTRUN -> [SKIP][69] ([Intel XE#6704]) +13 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-3/igt@kms_colorop@plane-xr24-xr24-bt2020_oetf.html

  * igt@kms_colorop@plane-xr24-xr24-ctm_3x4_50_desat:
    - shard-adlp:         NOTRUN -> [SKIP][70] ([Intel XE#6704]) +13 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-4/igt@kms_colorop@plane-xr24-xr24-ctm_3x4_50_desat.html

  * igt@kms_colorop@plane-xr24-xr24-ctm_3x4_bt709_enc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][71] ([Intel XE#6704]) +10 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-466/igt@kms_colorop@plane-xr24-xr24-ctm_3x4_bt709_enc.html

  * igt@kms_colorop@plane-xr30-xr30-ctm_3x4_50_desat:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#6704]) +12 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-4/igt@kms_colorop@plane-xr30-xr30-ctm_3x4_50_desat.html

  * igt@kms_content_protection@content-type-change:
    - shard-bmg:          NOTRUN -> [SKIP][73] ([Intel XE#2341]) +1 other test skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-1/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][74] ([Intel XE#307])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-0.html
    - shard-bmg:          NOTRUN -> [SKIP][75] ([Intel XE#2390])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-8/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-adlp:         NOTRUN -> [SKIP][76] ([Intel XE#307]) +1 other test skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-2/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@dp-mst-suspend-resume:
    - shard-dg2-set2:     NOTRUN -> [SKIP][77] ([Intel XE#6692])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-432/igt@kms_content_protection@dp-mst-suspend-resume.html

  * igt@kms_content_protection@srm@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][78] ([Intel XE#1178]) +1 other test fail
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-433/igt@kms_content_protection@srm@pipe-a-dp-4.html

  * igt@kms_content_protection@uevent:
    - shard-dg2-set2:     NOTRUN -> [FAIL][79] ([Intel XE#6707]) +1 other test fail
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-434/igt@kms_content_protection@uevent.html
    - shard-lnl:          NOTRUN -> [SKIP][80] ([Intel XE#3278]) +1 other test skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-2/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-onscreen-32x32:
    - shard-bmg:          NOTRUN -> [SKIP][81] ([Intel XE#2320]) +4 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-adlp:         NOTRUN -> [SKIP][82] ([Intel XE#308]) +3 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-6/igt@kms_cursor_crc@cursor-random-512x512.html
    - shard-bmg:          NOTRUN -> [SKIP][83] ([Intel XE#2321]) +1 other test skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-3/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x170:
    - shard-dg2-set2:     NOTRUN -> [SKIP][84] ([Intel XE#308]) +2 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-464/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-128x42:
    - shard-lnl:          NOTRUN -> [SKIP][85] ([Intel XE#1424]) +7 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@kms_cursor_crc@cursor-sliding-128x42.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-lnl:          NOTRUN -> [SKIP][86] ([Intel XE#2321]) +3 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
    - shard-bmg:          NOTRUN -> [SKIP][87] ([Intel XE#2291])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-adlp:         NOTRUN -> [SKIP][88] ([Intel XE#309]) +7 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [PASS][89] -> [FAIL][90] ([Intel XE#6715])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-adlp:         NOTRUN -> [SKIP][91] ([Intel XE#323])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-lnl:          NOTRUN -> [SKIP][92] ([Intel XE#1508])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-lnl:          NOTRUN -> [SKIP][93] ([Intel XE#4302])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-5/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_dp_link_training@non-uhbr-mst:
    - shard-lnl:          NOTRUN -> [SKIP][94] ([Intel XE#4354])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@kms_dp_link_training@non-uhbr-mst.html
    - shard-adlp:         NOTRUN -> [SKIP][95] ([Intel XE#4354])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-9/igt@kms_dp_link_training@non-uhbr-mst.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-adlp:         NOTRUN -> [SKIP][96] ([Intel XE#4356])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-2/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_dsc@dsc-basic:
    - shard-bmg:          NOTRUN -> [SKIP][97] ([Intel XE#2244]) +1 other test skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-6/igt@kms_dsc@dsc-basic.html
    - shard-lnl:          NOTRUN -> [SKIP][98] ([Intel XE#2244]) +1 other test skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-2/igt@kms_dsc@dsc-basic.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
    - shard-bmg:          NOTRUN -> [SKIP][99] ([Intel XE#4422])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-8/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][100] ([Intel XE#4422])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-434/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
    - shard-lnl:          NOTRUN -> [SKIP][101] ([Intel XE#4422])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html

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

  * igt@kms_feature_discovery@display-3x:
    - shard-lnl:          NOTRUN -> [SKIP][103] ([Intel XE#703])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-8/igt@kms_feature_discovery@display-3x.html
    - shard-adlp:         NOTRUN -> [SKIP][104] ([Intel XE#703])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-8/igt@kms_feature_discovery@display-3x.html
    - shard-bmg:          NOTRUN -> [SKIP][105] ([Intel XE#2373])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-7/igt@kms_feature_discovery@display-3x.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][106] ([Intel XE#703])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-435/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-lnl:          NOTRUN -> [SKIP][107] ([Intel XE#1137])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-8/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
    - shard-adlp:         NOTRUN -> [SKIP][108] ([Intel XE#310]) +14 other tests skip
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-3/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip@2x-flip-vs-rmfb:
    - shard-lnl:          NOTRUN -> [SKIP][109] ([Intel XE#1421]) +9 other tests skip
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-3/igt@kms_flip@2x-flip-vs-rmfb.html

  * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
    - shard-bmg:          NOTRUN -> [SKIP][110] ([Intel XE#2316]) +1 other test skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html

  * igt@kms_flip@2x-plain-flip-ts-check-interruptible:
    - shard-bmg:          [PASS][111] -> [SKIP][112] ([Intel XE#2316]) +1 other test skip
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-7/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-2/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][113] ([Intel XE#2293]) +3 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][114] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][115] ([Intel XE#1397]) +1 other test skip
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [FAIL][116] ([Intel XE#3106] / [Intel XE#4683]) +1 other test fail
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][117] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-lnl:          NOTRUN -> [SKIP][118] ([Intel XE#1401] / [Intel XE#1745]) +4 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][119] ([Intel XE#1401]) +4 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-mmap-wc:
    - shard-adlp:         NOTRUN -> [SKIP][120] ([Intel XE#6312]) +4 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-9/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-mmap-wc.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][121] ([Intel XE#6312]) +2 other tests skip
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-mmap-wc.html
    - shard-lnl:          NOTRUN -> [SKIP][122] ([Intel XE#6312])
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][123] ([Intel XE#651]) +9 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
    - shard-adlp:         NOTRUN -> [SKIP][124] ([Intel XE#656]) +60 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
    - shard-bmg:          NOTRUN -> [SKIP][125] ([Intel XE#2311]) +30 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
    - shard-dg2-set2:     NOTRUN -> [SKIP][126] ([Intel XE#651]) +36 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][127] ([Intel XE#4141]) +10 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render:
    - shard-adlp:         NOTRUN -> [ABORT][128] ([Intel XE#3970])
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-adlp:         NOTRUN -> [FAIL][129] ([Intel XE#5671]) +1 other test fail
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-pri-indfb-multidraw:
    - shard-adlp:         NOTRUN -> [SKIP][130] ([Intel XE#651]) +19 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][131] ([Intel XE#2313]) +24 other tests skip
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][132] ([Intel XE#2312]) +15 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-adlp:         NOTRUN -> [SKIP][133] ([Intel XE#1151])
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-dg2-set2:     NOTRUN -> [SKIP][134] ([Intel XE#1158])
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-433/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
    - shard-adlp:         NOTRUN -> [SKIP][135] ([Intel XE#1158])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-6/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
    - shard-bmg:          NOTRUN -> [SKIP][136] ([Intel XE#2350])
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-3/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
    - shard-adlp:         NOTRUN -> [SKIP][137] ([Intel XE#653]) +24 other tests skip
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][138] ([Intel XE#656]) +54 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-slowdraw:
    - shard-dg2-set2:     NOTRUN -> [SKIP][139] ([Intel XE#653]) +31 other tests skip
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-slowdraw.html

  * igt@kms_hdmi_inject@inject-4k:
    - shard-lnl:          NOTRUN -> [SKIP][140] ([Intel XE#1470])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@kms_hdmi_inject@inject-4k.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-lnl:          NOTRUN -> [SKIP][141] ([Intel XE#1470] / [Intel XE#2853])
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-8/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-lnl:          NOTRUN -> [SKIP][142] ([Intel XE#1503])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-8/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][143] ([Intel XE#346]) +1 other test skip
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-1/igt@kms_joiner@basic-big-joiner.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][144] ([Intel XE#2925] / [Intel XE#346]) +1 other test skip
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-466/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@basic-force-big-joiner:
    - shard-adlp:         NOTRUN -> [SKIP][145] ([Intel XE#2925] / [Intel XE#3012])
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-4/igt@kms_joiner@basic-force-big-joiner.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][146] ([Intel XE#6590])
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-4/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-adlp:         NOTRUN -> [SKIP][147] ([Intel XE#2925] / [Intel XE#346])
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-6/igt@kms_joiner@invalid-modeset-big-joiner.html
    - shard-lnl:          NOTRUN -> [SKIP][148] ([Intel XE#2925] / [Intel XE#346])
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-1/igt@kms_joiner@invalid-modeset-big-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-adlp:         NOTRUN -> [SKIP][149] ([Intel XE#2925]) +1 other test skip
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
    - shard-bmg:          NOTRUN -> [SKIP][150] ([Intel XE#2934])
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][151] ([Intel XE#2925])
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-433/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
    - shard-lnl:          NOTRUN -> [SKIP][152] ([Intel XE#2925])
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_panel_fitting@legacy:
    - shard-bmg:          NOTRUN -> [SKIP][153] ([Intel XE#2486])
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-2/igt@kms_panel_fitting@legacy.html

  * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
    - shard-bmg:          NOTRUN -> [SKIP][154] ([Intel XE#4329])
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-1/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][155] ([Intel XE#4359])
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-466/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][156] ([Intel XE#599]) +4 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-3/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [PASS][157] -> [SKIP][158] ([Intel XE#4596])
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-adlp:         NOTRUN -> [SKIP][159] ([Intel XE#4596])
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-2/igt@kms_plane_multiple@2x-tiling-y.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][160] ([Intel XE#5021])
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-432/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-bmg:          NOTRUN -> [SKIP][161] ([Intel XE#5021]) +1 other test skip
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_plane_multiple@tiling-4:
    - shard-adlp:         NOTRUN -> [SKIP][162] ([Intel XE#5020])
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-9/igt@kms_plane_multiple@tiling-4.html

  * igt@kms_plane_multiple@tiling-y:
    - shard-dg2-set2:     NOTRUN -> [SKIP][163] ([Intel XE#5020])
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-433/igt@kms_plane_multiple@tiling-y.html
    - shard-lnl:          NOTRUN -> [SKIP][164] ([Intel XE#5020])
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-1/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-lnl:          NOTRUN -> [SKIP][165] ([Intel XE#309]) +3 other tests skip
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-lnl:          NOTRUN -> [SKIP][166] ([Intel XE#3307])
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-5/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
    - shard-lnl:          NOTRUN -> [SKIP][167] ([Intel XE#5825]) +7 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
    - shard-bmg:          NOTRUN -> [SKIP][168] ([Intel XE#5825]) +9 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-adlp:         NOTRUN -> [SKIP][169] ([Intel XE#2938])
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-2/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_backlight@fade:
    - shard-adlp:         NOTRUN -> [SKIP][170] ([Intel XE#870]) +1 other test skip
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-3/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-dg2-set2:     NOTRUN -> [SKIP][171] ([Intel XE#870])
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-432/igt@kms_pm_backlight@fade-with-suspend.html
    - shard-bmg:          NOTRUN -> [SKIP][172] ([Intel XE#870])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-8/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-adlp:         NOTRUN -> [SKIP][173] ([Intel XE#1129]) +1 other test skip
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-1/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-lnl:          NOTRUN -> [FAIL][174] ([Intel XE#718])
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
    - shard-bmg:          NOTRUN -> [SKIP][175] ([Intel XE#2392])
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-3/igt@kms_pm_dc@dc6-psr.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][176] ([Intel XE#1129])
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-433/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][177] ([Intel XE#1439] / [Intel XE#836])
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-adlp:         NOTRUN -> [SKIP][178] ([Intel XE#836]) +1 other test skip
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
    - shard-lnl:          NOTRUN -> [SKIP][179] ([Intel XE#1439] / [Intel XE#3141])
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
    - shard-lnl:          NOTRUN -> [SKIP][180] ([Intel XE#1406] / [Intel XE#2893]) +2 other tests skip
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][181] ([Intel XE#1406] / [Intel XE#1489]) +5 other tests skip
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-463/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-lnl:          NOTRUN -> [SKIP][182] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) +1 other test skip
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][183] ([Intel XE#1406] / [Intel XE#4608]) +3 other tests skip
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-adlp:         NOTRUN -> [SKIP][184] ([Intel XE#1406] / [Intel XE#1489]) +15 other tests skip
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-3/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          NOTRUN -> [SKIP][185] ([Intel XE#1406] / [Intel XE#1489]) +10 other tests skip
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-bmg:          NOTRUN -> [SKIP][186] ([Intel XE#1406] / [Intel XE#2387])
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-dg2-set2:     NOTRUN -> [SKIP][187] ([Intel XE#1122] / [Intel XE#1406]) +1 other test skip
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-432/igt@kms_psr2_su@page_flip-nv12.html
    - shard-lnl:          NOTRUN -> [SKIP][188] ([Intel XE#1128] / [Intel XE#1406])
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@kms_psr2_su@page_flip-nv12.html
    - shard-adlp:         NOTRUN -> [SKIP][189] ([Intel XE#1122] / [Intel XE#1406] / [Intel XE#5580])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-9/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@fbc-psr2-basic@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][190] ([Intel XE#1406] / [Intel XE#4609]) +2 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-1/igt@kms_psr@fbc-psr2-basic@edp-1.html

  * igt@kms_psr@pr-sprite-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][191] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +17 other tests skip
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-434/igt@kms_psr@pr-sprite-blt.html
    - shard-lnl:          NOTRUN -> [SKIP][192] ([Intel XE#1406]) +10 other tests skip
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-2/igt@kms_psr@pr-sprite-blt.html

  * igt@kms_psr@psr-basic:
    - shard-adlp:         NOTRUN -> [SKIP][193] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +23 other tests skip
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-4/igt@kms_psr@psr-basic.html

  * igt@kms_psr@psr-primary-page-flip:
    - shard-bmg:          NOTRUN -> [SKIP][194] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +16 other tests skip
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-2/igt@kms_psr@psr-primary-page-flip.html

  * igt@kms_psr@psr2-suspend@edp-1:
    - shard-lnl:          NOTRUN -> [ABORT][195] ([Intel XE#2625] / [Intel XE#6675]) +1 other test abort
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-3/igt@kms_psr@psr2-suspend@edp-1.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-adlp:         NOTRUN -> [SKIP][196] ([Intel XE#3414]) +3 other tests skip
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-2/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
    - shard-adlp:         NOTRUN -> [SKIP][197] ([Intel XE#1127])
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-bmg:          NOTRUN -> [SKIP][198] ([Intel XE#3414] / [Intel XE#3904])
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-1/igt@kms_rotation_crc@primary-rotation-270.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][199] ([Intel XE#3414])
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-466/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-x-tiled-reflect-x-180:
    - shard-lnl:          NOTRUN -> [FAIL][200] ([Intel XE#4689])
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-8/igt@kms_rotation_crc@primary-x-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-bmg:          NOTRUN -> [SKIP][201] ([Intel XE#2330])
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][202] ([Intel XE#1127])
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
    - shard-lnl:          NOTRUN -> [SKIP][203] ([Intel XE#1127])
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_setmode@invalid-clone-exclusive-crtc:
    - shard-bmg:          NOTRUN -> [SKIP][204] ([Intel XE#1435])
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-3/igt@kms_setmode@invalid-clone-exclusive-crtc.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-bmg:          [PASS][205] -> [SKIP][206] ([Intel XE#1435])
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-2/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@kms_sharpness_filter@filter-scaler-downscale:
    - shard-bmg:          NOTRUN -> [SKIP][207] ([Intel XE#6503]) +1 other test skip
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-4/igt@kms_sharpness_filter@filter-scaler-downscale.html

  * igt@kms_sharpness_filter@filter-strength:
    - shard-adlp:         NOTRUN -> [SKIP][208] ([Intel XE#455]) +42 other tests skip
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-2/igt@kms_sharpness_filter@filter-strength.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-adlp:         NOTRUN -> [SKIP][209] ([Intel XE#362]) +1 other test skip
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-1/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-dg2-set2:     NOTRUN -> [SKIP][210] ([Intel XE#330])
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-436/igt@kms_tv_load_detect@load-detect.html
    - shard-lnl:          NOTRUN -> [SKIP][211] ([Intel XE#330])
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@kms_tv_load_detect@load-detect.html
    - shard-adlp:         NOTRUN -> [SKIP][212] ([Intel XE#330])
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-8/igt@kms_tv_load_detect@load-detect.html
    - shard-bmg:          NOTRUN -> [SKIP][213] ([Intel XE#2450])
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-3/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vrr@cmrr:
    - shard-bmg:          NOTRUN -> [SKIP][214] ([Intel XE#2168])
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-1/igt@kms_vrr@cmrr.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][215] ([Intel XE#2168])
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-466/igt@kms_vrr@cmrr.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [FAIL][216] ([Intel XE#4459]) +1 other test fail
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@kms_vrr@flipline:
    - shard-dg2-set2:     NOTRUN -> [SKIP][217] ([Intel XE#455]) +22 other tests skip
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-433/igt@kms_vrr@flipline.html
    - shard-bmg:          NOTRUN -> [SKIP][218] ([Intel XE#1499])
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-3/igt@kms_vrr@flipline.html

  * igt@kms_vrr@lobf:
    - shard-adlp:         NOTRUN -> [SKIP][219] ([Intel XE#2168]) +1 other test skip
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-2/igt@kms_vrr@lobf.html

  * igt@xe_ccs@suspend-resume:
    - shard-adlp:         NOTRUN -> [SKIP][220] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607]) +1 other test skip
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-4/igt@xe_ccs@suspend-resume.html

  * igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01:
    - shard-bmg:          NOTRUN -> [ABORT][221] ([Intel XE#6675]) +11 other tests abort
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-6/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html

  * igt@xe_compute@loop-duration-2s:
    - shard-adlp:         NOTRUN -> [SKIP][222] ([Intel XE#6598])
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-9/igt@xe_compute@loop-duration-2s.html

  * igt@xe_compute_preempt@compute-preempt-many:
    - shard-adlp:         NOTRUN -> [SKIP][223] ([Intel XE#6360]) +1 other test skip
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-4/igt@xe_compute_preempt@compute-preempt-many.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][224] ([Intel XE#6360]) +2 other tests skip
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-433/igt@xe_compute_preempt@compute-preempt-many.html

  * igt@xe_copy_basic@mem-matrix-copy-200x127:
    - shard-adlp:         NOTRUN -> [SKIP][225] ([Intel XE#5300]) +1 other test skip
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-6/igt@xe_copy_basic@mem-matrix-copy-200x127.html

  * igt@xe_copy_basic@mem-page-copy-17:
    - shard-dg2-set2:     NOTRUN -> [SKIP][226] ([Intel XE#5300]) +1 other test skip
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-436/igt@xe_copy_basic@mem-page-copy-17.html

  * igt@xe_dma_buf_sync@export-dma-buf-once-write-sync:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][227] ([Intel XE#3876])
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-4/igt@xe_dma_buf_sync@export-dma-buf-once-write-sync.html

  * igt@xe_eu_stall@invalid-event-report-count:
    - shard-dg2-set2:     NOTRUN -> [SKIP][228] ([Intel XE#5626]) +2 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-432/igt@xe_eu_stall@invalid-event-report-count.html

  * igt@xe_eu_stall@non-blocking-re-enable:
    - shard-adlp:         NOTRUN -> [SKIP][229] ([Intel XE#5626]) +2 other tests skip
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-2/igt@xe_eu_stall@non-blocking-re-enable.html

  * igt@xe_eudebug@basic-vm-bind-ufence-delay-ack:
    - shard-dg2-set2:     NOTRUN -> [SKIP][230] ([Intel XE#4837]) +12 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-435/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html

  * igt@xe_eudebug@discovery-empty-clients:
    - shard-lnl:          NOTRUN -> [SKIP][231] ([Intel XE#4837]) +19 other tests skip
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-5/igt@xe_eudebug@discovery-empty-clients.html

  * igt@xe_eudebug_online@pagefault-read-stress:
    - shard-lnl:          NOTRUN -> [SKIP][232] ([Intel XE#6665])
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-8/igt@xe_eudebug_online@pagefault-read-stress.html
    - shard-adlp:         NOTRUN -> [SKIP][233] ([Intel XE#6665])
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-2/igt@xe_eudebug_online@pagefault-read-stress.html
    - shard-bmg:          NOTRUN -> [SKIP][234] ([Intel XE#6681])
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-8/igt@xe_eudebug_online@pagefault-read-stress.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][235] ([Intel XE#6665])
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-432/igt@xe_eudebug_online@pagefault-read-stress.html

  * igt@xe_eudebug_online@reset-with-attention:
    - shard-adlp:         NOTRUN -> [SKIP][236] ([Intel XE#4837] / [Intel XE#5565]) +21 other tests skip
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-9/igt@xe_eudebug_online@reset-with-attention.html

  * igt@xe_eudebug_sriov@deny-eudebug:
    - shard-lnl:          NOTRUN -> [SKIP][237] ([Intel XE#4518])
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-2/igt@xe_eudebug_sriov@deny-eudebug.html

  * igt@xe_evict@evict-beng-large:
    - shard-adlp:         NOTRUN -> [SKIP][238] ([Intel XE#261] / [Intel XE#5564]) +1 other test skip
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-3/igt@xe_evict@evict-beng-large.html

  * igt@xe_evict@evict-beng-threads-large-multi-vm:
    - shard-lnl:          NOTRUN -> [SKIP][239] ([Intel XE#688]) +13 other tests skip
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-8/igt@xe_evict@evict-beng-threads-large-multi-vm.html

  * igt@xe_evict@evict-mixed-threads-small-multi-vm:
    - shard-adlp:         NOTRUN -> [SKIP][240] ([Intel XE#261] / [Intel XE#688]) +1 other test skip
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-8/igt@xe_evict@evict-mixed-threads-small-multi-vm.html

  * igt@xe_evict@evict-small-cm:
    - shard-adlp:         NOTRUN -> [SKIP][241] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +2 other tests skip
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-8/igt@xe_evict@evict-small-cm.html

  * igt@xe_evict@evict-threads-large-multi-vm:
    - shard-adlp:         NOTRUN -> [SKIP][242] ([Intel XE#261]) +8 other tests skip
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-9/igt@xe_evict@evict-threads-large-multi-vm.html

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

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
    - shard-adlp:         NOTRUN -> [SKIP][244] ([Intel XE#1392] / [Intel XE#5575]) +10 other tests skip
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-once-null-defer-bind:
    - shard-bmg:          NOTRUN -> [SKIP][245] ([Intel XE#2322]) +4 other tests skip
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-5/igt@xe_exec_basic@multigpu-once-null-defer-bind.html

  * igt@xe_exec_basic@multigpu-once-userptr-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][246] ([Intel XE#1392]) +10 other tests skip
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html

  * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm:
    - shard-adlp:         NOTRUN -> [SKIP][247] ([Intel XE#288] / [Intel XE#5561]) +49 other tests skip
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-2/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html

  * igt@xe_exec_fault_mode@once-invalid-userptr-fault:
    - shard-dg2-set2:     NOTRUN -> [SKIP][248] ([Intel XE#288]) +28 other tests skip
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-436/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html

  * igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:
    - shard-adlp:         NOTRUN -> [SKIP][249] ([Intel XE#2360]) +1 other test skip
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-9/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html

  * igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][250] ([Intel XE#2360]) +1 other test skip
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html

  * igt@xe_exec_reset@cm-cat-error:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][251] ([Intel XE#3868])
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-4/igt@xe_exec_reset@cm-cat-error.html

  * igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][252] ([Intel XE#6299])
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-466/igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads.html

  * igt@xe_exec_sip_eudebug@breakpoint-writesip-nodebug:
    - shard-bmg:          NOTRUN -> [SKIP][253] ([Intel XE#4837]) +11 other tests skip
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-8/igt@xe_exec_sip_eudebug@breakpoint-writesip-nodebug.html

  * igt@xe_exec_system_allocator@many-large-malloc-prefetch-madvise:
    - shard-lnl:          NOTRUN -> [WARN][254] ([Intel XE#5786]) +4 other tests warn
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-8/igt@xe_exec_system_allocator@many-large-malloc-prefetch-madvise.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-single-vma:
    - shard-lnl:          NOTRUN -> [SKIP][255] ([Intel XE#6196])
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-single-vma.html

  * igt@xe_exec_system_allocator@process-many-execqueues-mmap-nomemset:
    - shard-adlp:         NOTRUN -> [SKIP][256] ([Intel XE#4915]) +537 other tests skip
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-3/igt@xe_exec_system_allocator@process-many-execqueues-mmap-nomemset.html

  * igt@xe_exec_system_allocator@process-many-mmap-new-huge-nomemset:
    - shard-lnl:          NOTRUN -> [SKIP][257] ([Intel XE#4943]) +26 other tests skip
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-1/igt@xe_exec_system_allocator@process-many-mmap-new-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck:
    - shard-dg2-set2:     NOTRUN -> [SKIP][258] ([Intel XE#4915]) +377 other tests skip
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-436/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge:
    - shard-bmg:          NOTRUN -> [SKIP][259] ([Intel XE#4943]) +28 other tests skip
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-6/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-dg2-set2:     NOTRUN -> [ABORT][260] ([Intel XE#5466])
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-432/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
    - shard-adlp:         NOTRUN -> [ABORT][261] ([Intel XE#5466] / [Intel XE#5530])
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-2/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
    - shard-bmg:          NOTRUN -> [ABORT][262] ([Intel XE#5466] / [Intel XE#5530])
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - shard-adlp:         NOTRUN -> [SKIP][263] ([Intel XE#2229] / [Intel XE#5488])
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][264] ([Intel XE#2229])
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-432/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_mmap@pci-membarrier-parallel:
    - shard-adlp:         NOTRUN -> [SKIP][265] ([Intel XE#5100]) +1 other test skip
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-1/igt@xe_mmap@pci-membarrier-parallel.html
    - shard-lnl:          NOTRUN -> [SKIP][266] ([Intel XE#5100])
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-3/igt@xe_mmap@pci-membarrier-parallel.html

  * igt@xe_mmap@vram:
    - shard-adlp:         NOTRUN -> [SKIP][267] ([Intel XE#1008] / [Intel XE#5591])
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-3/igt@xe_mmap@vram.html

  * igt@xe_module_load@load:
    - shard-lnl:          ([PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [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], [PASS][296], [PASS][297], [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], [SKIP][318]) ([Intel XE#378])
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-4/igt@xe_module_load@load.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-4/igt@xe_module_load@load.html
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-4/igt@xe_module_load@load.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-4/igt@xe_module_load@load.html
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-4/igt@xe_module_load@load.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-5/igt@xe_module_load@load.html
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-5/igt@xe_module_load@load.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-5/igt@xe_module_load@load.html
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-1/igt@xe_module_load@load.html
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-1/igt@xe_module_load@load.html
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-2/igt@xe_module_load@load.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-2/igt@xe_module_load@load.html
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-2/igt@xe_module_load@load.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-1/igt@xe_module_load@load.html
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-1/igt@xe_module_load@load.html
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-3/igt@xe_module_load@load.html
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-3/igt@xe_module_load@load.html
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-2/igt@xe_module_load@load.html
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-1/igt@xe_module_load@load.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-3/igt@xe_module_load@load.html
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-8/igt@xe_module_load@load.html
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-8/igt@xe_module_load@load.html
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-5/igt@xe_module_load@load.html
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-8/igt@xe_module_load@load.html
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-lnl-8/igt@xe_module_load@load.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-1/igt@xe_module_load@load.html
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-1/igt@xe_module_load@load.html
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-1/igt@xe_module_load@load.html
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-8/igt@xe_module_load@load.html
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-8/igt@xe_module_load@load.html
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-8/igt@xe_module_load@load.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-8/igt@xe_module_load@load.html
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@xe_module_load@load.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@xe_module_load@load.html
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@xe_module_load@load.html
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@xe_module_load@load.html
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-1/igt@xe_module_load@load.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-5/igt@xe_module_load@load.html
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-5/igt@xe_module_load@load.html
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-5/igt@xe_module_load@load.html
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-5/igt@xe_module_load@load.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-3/igt@xe_module_load@load.html
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-3/igt@xe_module_load@load.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-3/igt@xe_module_load@load.html
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-3/igt@xe_module_load@load.html
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-2/igt@xe_module_load@load.html
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-2/igt@xe_module_load@load.html
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-2/igt@xe_module_load@load.html
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-2/igt@xe_module_load@load.html
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-2/igt@xe_module_load@load.html
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-2/igt@xe_module_load@load.html
    - shard-bmg:          ([PASS][319], [PASS][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330], [PASS][331], [PASS][332], [PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337], [PASS][338], [PASS][339], [PASS][340], [PASS][341], [PASS][342]) -> ([PASS][343], [PASS][344], [PASS][345], [PASS][346], [PASS][347], [PASS][348], [PASS][349], [PASS][350], [SKIP][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]) ([Intel XE#2457])
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-6/igt@xe_module_load@load.html
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-6/igt@xe_module_load@load.html
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-8/igt@xe_module_load@load.html
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-1/igt@xe_module_load@load.html
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-1/igt@xe_module_load@load.html
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-1/igt@xe_module_load@load.html
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-5/igt@xe_module_load@load.html
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-5/igt@xe_module_load@load.html
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-4/igt@xe_module_load@load.html
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-4/igt@xe_module_load@load.html
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-1/igt@xe_module_load@load.html
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-2/igt@xe_module_load@load.html
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-2/igt@xe_module_load@load.html
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-2/igt@xe_module_load@load.html
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-8/igt@xe_module_load@load.html
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-5/igt@xe_module_load@load.html
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-4/igt@xe_module_load@load.html
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-7/igt@xe_module_load@load.html
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-7/igt@xe_module_load@load.html
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-3/igt@xe_module_load@load.html
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-5/igt@xe_module_load@load.html
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-3/igt@xe_module_load@load.html
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-3/igt@xe_module_load@load.html
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-7/igt@xe_module_load@load.html
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-5/igt@xe_module_load@load.html
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-5/igt@xe_module_load@load.html
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-5/igt@xe_module_load@load.html
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-4/igt@xe_module_load@load.html
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-4/igt@xe_module_load@load.html
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-4/igt@xe_module_load@load.html
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-3/igt@xe_module_load@load.html
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-3/igt@xe_module_load@load.html
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-6/igt@xe_module_load@load.html
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-6/igt@xe_module_load@load.html
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-8/igt@xe_module_load@load.html
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-8/igt@xe_module_load@load.html
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-8/igt@xe_module_load@load.html
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-1/igt@xe_module_load@load.html
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-1/igt@xe_module_load@load.html
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-6/igt@xe_module_load@load.html
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-1/igt@xe_module_load@load.html
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-7/igt@xe_module_load@load.html
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-7/igt@xe_module_load@load.html
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-7/igt@xe_module_load@load.html
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-7/igt@xe_module_load@load.html
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-2/igt@xe_module_load@load.html
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-2/igt@xe_module_load@load.html
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-2/igt@xe_module_load@load.html
    - shard-adlp:         ([PASS][367], [PASS][368], [PASS][369], [PASS][370], [PASS][371], [PASS][372], [PASS][373], [PASS][374], [PASS][375], [PASS][376], [PASS][377], [PASS][378], [PASS][379], [PASS][380], [PASS][381], [PASS][382], [PASS][383], [PASS][384], [PASS][385], [PASS][386], [PASS][387], [PASS][388], [PASS][389], [PASS][390], [PASS][391]) -> ([PASS][392], [PASS][393], [PASS][394], [PASS][395], [PASS][396], [PASS][397], [PASS][398], [PASS][399], [PASS][400], [PASS][401], [PASS][402], [PASS][403], [PASS][404], [PASS][405], [PASS][406], [PASS][407], [PASS][408], [PASS][409], [PASS][410], [PASS][411], [PASS][412], [PASS][413], [PASS][414], [PASS][415], [PASS][416], [SKIP][417]) ([Intel XE#378] / [Intel XE#5612])
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-6/igt@xe_module_load@load.html
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-6/igt@xe_module_load@load.html
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-6/igt@xe_module_load@load.html
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-4/igt@xe_module_load@load.html
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-4/igt@xe_module_load@load.html
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-4/igt@xe_module_load@load.html
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-8/igt@xe_module_load@load.html
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-2/igt@xe_module_load@load.html
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-2/igt@xe_module_load@load.html
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-2/igt@xe_module_load@load.html
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-8/igt@xe_module_load@load.html
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-3/igt@xe_module_load@load.html
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-8/igt@xe_module_load@load.html
   [380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-8/igt@xe_module_load@load.html
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-3/igt@xe_module_load@load.html
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-3/igt@xe_module_load@load.html
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-3/igt@xe_module_load@load.html
   [384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-9/igt@xe_module_load@load.html
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-9/igt@xe_module_load@load.html
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-6/igt@xe_module_load@load.html
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-9/igt@xe_module_load@load.html
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-9/igt@xe_module_load@load.html
   [389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-1/igt@xe_module_load@load.html
   [390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-1/igt@xe_module_load@load.html
   [391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-1/igt@xe_module_load@load.html
   [392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-6/igt@xe_module_load@load.html
   [393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-6/igt@xe_module_load@load.html
   [394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-6/igt@xe_module_load@load.html
   [395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-9/igt@xe_module_load@load.html
   [396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-9/igt@xe_module_load@load.html
   [397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-9/igt@xe_module_load@load.html
   [398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-9/igt@xe_module_load@load.html
   [399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-8/igt@xe_module_load@load.html
   [400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-8/igt@xe_module_load@load.html
   [401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-8/igt@xe_module_load@load.html
   [402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-8/igt@xe_module_load@load.html
   [403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-1/igt@xe_module_load@load.html
   [404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-1/igt@xe_module_load@load.html
   [405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-1/igt@xe_module_load@load.html
   [406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-2/igt@xe_module_load@load.html
   [407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-2/igt@xe_module_load@load.html
   [408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-2/igt@xe_module_load@load.html
   [409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-2/igt@xe_module_load@load.html
   [410]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-3/igt@xe_module_load@load.html
   [411]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-3/igt@xe_module_load@load.html
   [412]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-3/igt@xe_module_load@load.html
   [413]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-4/igt@xe_module_load@load.html
   [414]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-4/igt@xe_module_load@load.html
   [415]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-4/igt@xe_module_load@load.html
   [416]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-4/igt@xe_module_load@load.html
   [417]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-4/igt@xe_module_load@load.html
    - shard-dg2-set2:     ([PASS][418], [PASS][419], [PASS][420], [PASS][421], [PASS][422], [PASS][423], [PASS][424], [PASS][425], [PASS][426], [PASS][427], [PASS][428], [PASS][429], [PASS][430], [PASS][431], [PASS][432], [PASS][433], [PASS][434], [PASS][435], [PASS][436], [PASS][437], [PASS][438], [PASS][439], [PASS][440], [PASS][441]) -> ([PASS][442], [PASS][443], [PASS][444], [PASS][445], [PASS][446], [PASS][447], [SKIP][448], [PASS][449], [PASS][450], [PASS][451], [PASS][452], [PASS][453], [PASS][454], [PASS][455], [PASS][456], [PASS][457], [PASS][458], [PASS][459], [PASS][460], [PASS][461], [PASS][462], [PASS][463], [PASS][464], [PASS][465], [PASS][466], [PASS][467]) ([Intel XE#378])
   [418]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-dg2-466/igt@xe_module_load@load.html
   [419]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-dg2-432/igt@xe_module_load@load.html
   [420]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-dg2-432/igt@xe_module_load@load.html
   [421]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-dg2-436/igt@xe_module_load@load.html
   [422]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-dg2-436/igt@xe_module_load@load.html
   [423]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-dg2-433/igt@xe_module_load@load.html
   [424]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-dg2-433/igt@xe_module_load@load.html
   [425]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-dg2-433/igt@xe_module_load@load.html
   [426]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-dg2-466/igt@xe_module_load@load.html
   [427]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-dg2-466/igt@xe_module_load@load.html
   [428]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-dg2-464/igt@xe_module_load@load.html
   [429]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-dg2-464/igt@xe_module_load@load.html
   [430]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-dg2-434/igt@xe_module_load@load.html
   [431]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-dg2-434/igt@xe_module_load@load.html
   [432]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-dg2-435/igt@xe_module_load@load.html
   [433]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-dg2-435/igt@xe_module_load@load.html
   [434]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-dg2-432/igt@xe_module_load@load.html
   [435]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-dg2-464/igt@xe_module_load@load.html
   [436]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-dg2-463/igt@xe_module_load@load.html
   [437]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-dg2-463/igt@xe_module_load@load.html
   [438]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-dg2-463/igt@xe_module_load@load.html
   [439]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-dg2-463/igt@xe_module_load@load.html
   [440]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-dg2-434/igt@xe_module_load@load.html
   [441]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-dg2-466/igt@xe_module_load@load.html
   [442]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-435/igt@xe_module_load@load.html
   [443]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-432/igt@xe_module_load@load.html
   [444]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-434/igt@xe_module_load@load.html
   [445]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-434/igt@xe_module_load@load.html
   [446]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-434/igt@xe_module_load@load.html
   [447]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-434/igt@xe_module_load@load.html
   [448]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-434/igt@xe_module_load@load.html
   [449]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-464/igt@xe_module_load@load.html
   [450]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-464/igt@xe_module_load@load.html
   [451]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-464/igt@xe_module_load@load.html
   [452]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-433/igt@xe_module_load@load.html
   [453]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-433/igt@xe_module_load@load.html
   [454]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-433/igt@xe_module_load@load.html
   [455]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-436/igt@xe_module_load@load.html
   [456]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-436/igt@xe_module_load@load.html
   [457]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-435/igt@xe_module_load@load.html
   [458]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-435/igt@xe_module_load@load.html
   [459]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-463/igt@xe_module_load@load.html
   [460]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-463/igt@xe_module_load@load.html
   [461]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-463/igt@xe_module_load@load.html
   [462]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-435/igt@xe_module_load@load.html
   [463]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-432/igt@xe_module_load@load.html
   [464]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-432/igt@xe_module_load@load.html
   [465]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-466/igt@xe_module_load@load.html
   [466]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-466/igt@xe_module_load@load.html
   [467]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-466/igt@xe_module_load@load.html

  * igt@xe_oa@create-destroy-userspace-config:
    - shard-adlp:         NOTRUN -> [SKIP][468] ([Intel XE#3573]) +13 other tests skip
   [468]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-3/igt@xe_oa@create-destroy-userspace-config.html

  * igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
    - shard-dg2-set2:     NOTRUN -> [SKIP][469] ([Intel XE#3573]) +10 other tests skip
   [469]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-432/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html

  * igt@xe_oa@tail-address-wrap:
    - shard-adlp:         NOTRUN -> [SKIP][470] ([Intel XE#6032])
   [470]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-2/igt@xe_oa@tail-address-wrap.html

  * igt@xe_pat@pat-index-xe2:
    - shard-adlp:         NOTRUN -> [SKIP][471] ([Intel XE#977])
   [471]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-1/igt@xe_pat@pat-index-xe2.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][472] ([Intel XE#977])
   [472]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-466/igt@xe_pat@pat-index-xe2.html

  * igt@xe_peer2peer@read:
    - shard-lnl:          NOTRUN -> [SKIP][473] ([Intel XE#1061])
   [473]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@xe_peer2peer@read.html

  * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][474] ([Intel XE#6566])
   [474]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-436/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html

  * igt@xe_pm@d3hot-i2c:
    - shard-adlp:         NOTRUN -> [SKIP][475] ([Intel XE#5742])
   [475]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-9/igt@xe_pm@d3hot-i2c.html

  * igt@xe_pm@s2idle-basic:
    - shard-dg2-set2:     NOTRUN -> [ABORT][476] ([Intel XE#6675]) +14 other tests abort
   [476]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-432/igt@xe_pm@s2idle-basic.html

  * igt@xe_pm@s2idle-basic-exec:
    - shard-adlp:         [PASS][477] -> [ABORT][478] ([Intel XE#6675]) +1 other test abort
   [477]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-9/igt@xe_pm@s2idle-basic-exec.html
   [478]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-6/igt@xe_pm@s2idle-basic-exec.html

  * igt@xe_pm@s2idle-d3cold-basic-exec:
    - shard-bmg:          NOTRUN -> [SKIP][479] ([Intel XE#2284]) +1 other test skip
   [479]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-1/igt@xe_pm@s2idle-d3cold-basic-exec.html
    - shard-adlp:         NOTRUN -> [SKIP][480] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
   [480]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-1/igt@xe_pm@s2idle-d3cold-basic-exec.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][481] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
   [481]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-466/igt@xe_pm@s2idle-d3cold-basic-exec.html

  * igt@xe_pm@vram-d3cold-threshold:
    - shard-adlp:         NOTRUN -> [SKIP][482] ([Intel XE#5611] / [Intel XE#579])
   [482]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-2/igt@xe_pm@vram-d3cold-threshold.html
    - shard-bmg:          NOTRUN -> [SKIP][483] ([Intel XE#579])
   [483]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-7/igt@xe_pm@vram-d3cold-threshold.html

  * igt@xe_pm_residency@cpg-basic:
    - shard-adlp:         NOTRUN -> [ABORT][484] ([Intel XE#6675]) +7 other tests abort
   [484]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-4/igt@xe_pm_residency@cpg-basic.html
    - shard-lnl:          NOTRUN -> [SKIP][485] ([Intel XE#584]) +4 other tests skip
   [485]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-2/igt@xe_pm_residency@cpg-basic.html

  * igt@xe_pmu@engine-activity-accuracy-90:
    - shard-lnl:          NOTRUN -> [FAIL][486] ([Intel XE#6251]) +3 other tests fail
   [486]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@xe_pmu@engine-activity-accuracy-90.html

  * igt@xe_pxp@pxp-termination-key-update-post-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][487] ([Intel XE#4733]) +2 other tests skip
   [487]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-8/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][488] ([Intel XE#4733]) +2 other tests skip
   [488]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-432/igt@xe_pxp@pxp-termination-key-update-post-suspend.html

  * igt@xe_pxp@pxp-termination-key-update-post-termination-irq:
    - shard-adlp:         NOTRUN -> [SKIP][489] ([Intel XE#4733] / [Intel XE#5594]) +3 other tests skip
   [489]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-3/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html

  * igt@xe_query@multigpu-query-config:
    - shard-adlp:         NOTRUN -> [SKIP][490] ([Intel XE#944]) +4 other tests skip
   [490]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-9/igt@xe_query@multigpu-query-config.html

  * igt@xe_query@multigpu-query-engines:
    - shard-dg2-set2:     NOTRUN -> [SKIP][491] ([Intel XE#944]) +4 other tests skip
   [491]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-433/igt@xe_query@multigpu-query-engines.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-bmg:          NOTRUN -> [SKIP][492] ([Intel XE#944]) +4 other tests skip
   [492]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-4/igt@xe_query@multigpu-query-invalid-cs-cycles.html

  * igt@xe_query@multigpu-query-oa-units:
    - shard-lnl:          NOTRUN -> [SKIP][493] ([Intel XE#944]) +2 other tests skip
   [493]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-8/igt@xe_query@multigpu-query-oa-units.html

  * igt@xe_render_copy@render-stress-1-copies:
    - shard-dg2-set2:     NOTRUN -> [SKIP][494] ([Intel XE#4814])
   [494]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-436/igt@xe_render_copy@render-stress-1-copies.html

  * igt@xe_spin_batch@spin-mem-copy:
    - shard-adlp:         NOTRUN -> [SKIP][495] ([Intel XE#4821])
   [495]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-1/igt@xe_spin_batch@spin-mem-copy.html

  * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
    - shard-dg2-set2:     NOTRUN -> [SKIP][496] ([Intel XE#4130]) +1 other test skip
   [496]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-435/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html

  * igt@xe_sriov_flr@flr-twice:
    - shard-dg2-set2:     NOTRUN -> [SKIP][497] ([Intel XE#4273])
   [497]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-436/igt@xe_sriov_flr@flr-twice.html
    - shard-lnl:          NOTRUN -> [SKIP][498] ([Intel XE#4273])
   [498]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-8/igt@xe_sriov_flr@flr-twice.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-dg2-set2:     NOTRUN -> [SKIP][499] ([Intel XE#3342])
   [499]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-436/igt@xe_sriov_flr@flr-vf1-clear.html
    - shard-lnl:          NOTRUN -> [SKIP][500] ([Intel XE#3342])
   [500]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-4/igt@xe_sriov_flr@flr-vf1-clear.html

  * igt@xe_sriov_vram@vf-access-beyond:
    - shard-dg2-set2:     NOTRUN -> [SKIP][501] ([Intel XE#6318])
   [501]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-dg2-435/igt@xe_sriov_vram@vf-access-beyond.html
    - shard-lnl:          NOTRUN -> [SKIP][502] ([Intel XE#6376])
   [502]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-lnl-5/igt@xe_sriov_vram@vf-access-beyond.html

  
#### Possible fixes ####

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-adlp:         [FAIL][503] ([Intel XE#1231]) -> [PASS][504]
   [503]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [504]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-bmg:          [SKIP][505] ([Intel XE#2316]) -> [PASS][506] +3 other tests pass
   [505]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
   [506]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render:
    - shard-adlp:         [FAIL][507] ([Intel XE#5671]) -> [PASS][508] +1 other test pass
   [507]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html
   [508]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-3/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html

  * igt@kms_plane@plane-panning-bottom-right-suspend:
    - shard-adlp:         [ABORT][509] ([Intel XE#6675]) -> [PASS][510] +8 other tests pass
   [509]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-4/igt@kms_plane@plane-panning-bottom-right-suspend.html
   [510]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-4/igt@kms_plane@plane-panning-bottom-right-suspend.html

  * igt@kms_vblank@ts-continuation-suspend@pipe-a-dp-2:
    - shard-bmg:          [ABORT][511] ([Intel XE#6675]) -> [PASS][512]
   [511]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-1/igt@kms_vblank@ts-continuation-suspend@pipe-a-dp-2.html
   [512]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-1/igt@kms_vblank@ts-continuation-suspend@pipe-a-dp-2.html

  
#### Warnings ####

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-bmg:          [ABORT][513] ([Intel XE#6675]) -> [SKIP][514] ([Intel XE#2316])
   [513]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
   [514]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt:
    - shard-bmg:          [SKIP][515] ([Intel XE#2311]) -> [SKIP][516] ([Intel XE#2312])
   [515]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html
   [516]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
    - shard-bmg:          [SKIP][517] ([Intel XE#4141]) -> [SKIP][518] ([Intel XE#2312])
   [517]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
   [518]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt:
    - shard-bmg:          [SKIP][519] ([Intel XE#2312]) -> [SKIP][520] ([Intel XE#2311]) +3 other tests skip
   [519]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html
   [520]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
    - shard-bmg:          [SKIP][521] ([Intel XE#2313]) -> [SKIP][522] ([Intel XE#2312]) +2 other tests skip
   [521]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
   [522]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-move:
    - shard-bmg:          [SKIP][523] ([Intel XE#2312]) -> [SKIP][524] ([Intel XE#2313])
   [523]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-move.html
   [524]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-move.html

  * igt@xe_pm@d3cold-mmap-system:
    - shard-adlp:         [SKIP][525] ([Intel XE#2284] / [Intel XE#366]) -> [TIMEOUT][526] ([Intel XE#3876])
   [525]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6/shard-adlp-9/igt@xe_pm@d3cold-mmap-system.html
   [526]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157425v2/shard-adlp-4/igt@xe_pm@d3cold-mmap-system.html

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

  [Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008
  [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
  [Intel XE#1151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1151
  [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
  [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
  [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
  [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
  [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
  [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
  [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
  [Intel XE#3106]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3106
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
  [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
  [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
  [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
  [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
  [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
  [Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
  [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
  [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
  [Intel XE#4359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4359
  [Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
  [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#4683]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4683
  [Intel XE#4689]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4689
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
  [Intel XE#4821]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4821
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
  [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
  [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
  [Intel XE#5488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5488
  [Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
  [Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
  [Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
  [Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
  [Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
  [Intel XE#5580]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5580
  [Intel XE#5591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5591
  [Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
  [Intel XE#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
  [Intel XE#5611]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5611
  [Intel XE#5612]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5612
  [Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
  [Intel XE#5671]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5671
  [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
  [Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [Intel XE#5825]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5825
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#6011]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6011
  [Intel XE#6032]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6032
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196
  [Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
  [Intel XE#6299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6299
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6318
  [Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
  [Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566
  [Intel XE#6590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6590
  [Intel XE#6598]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6598
  [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
  [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [Intel XE#6675]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6675
  [Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681
  [Intel XE#6692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6692
  [Intel XE#6699]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6699
  [Intel XE#6704]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6704
  [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
  [Intel XE#6715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6715
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
  [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977


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

  * IGT: IGT_8646 -> IGT_8647
  * Linux: xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6 -> xe-pw-157425v2

  IGT_8646: 8646
  IGT_8647: 8647
  xe-4174-4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6: 4ee45005b5548f7cf1ab059413eaaa41dbd2ecf6
  xe-pw-157425v2: 157425v2

== Logs ==

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

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

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

* Re: [PATCH v2 2/2] drm/xe/xe_survivability: Add support for survivability mode v2
  2025-12-01 17:43   ` Rodrigo Vivi
@ 2025-12-02  3:07     ` Riana Tauro
  2025-12-02 20:31       ` Rodrigo Vivi
  0 siblings, 1 reply; 11+ messages in thread
From: Riana Tauro @ 2025-12-02  3:07 UTC (permalink / raw)
  To: Rodrigo Vivi; +Cc: intel-xe, anshuman.gupta, badal.nilawar



On 12/1/2025 11:13 PM, Rodrigo Vivi wrote:
> On Mon, Dec 01, 2025 at 08:04:23PM +0530, Riana Tauro wrote:
>> v2 survivability breadcrumbs introduces a new mode called
>> SPI Flash Descriptor Override mode (FDO). This is enabled by
>> PCODE when MEI itself fails and firmware cannot be updated via
>> MEI using igsc. This mode provides the ability to update
>> the firmware directly via SPI driver.
>>
>> Xe KMD initializes the nvm aux driver if FDO mode is enabled.
>>
>> Userspace should check FDO mode entry in survivability info sysfs before
>> using the SPI driver to update firmware.
>>
>> 	/sys/bus/pci/devices/<device>/survivability_info/fdo_mode
>>
>> v2 also supports survivability mode for critical boot errors.
>>
>> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
>> ---
>> v2: do not exit survivability mode in case of mei init failure (Rodrigo)
> 
> I still see the goto err there, what am I missing?
> I mean, no strong feeling about what is right or wrong to do here,
> I just want to make sure the code matches the doc and expectations...

PCODE enables FDO mode when mei has some failure and firmware flashing 
cannot be done using igsc. In FDO mode, XE KMD initializes the SPI driver.

If initialization of SPI driver fails, then user cannot update through 
igsc or using spi driver. In this case, there wouldn't be any reason to
stay in survivability mode. The goto err is to fail probe.

I have mentioned in documentation that 'FDO is enabled only when MEI 
fails'. Is there something else i am missing?

Thanks
Riana

> 
>> ---
>>   drivers/gpu/drm/xe/xe_pcode_api.h             |  2 +
>>   drivers/gpu/drm/xe/xe_survivability_mode.c    | 44 ++++++++++++++++---
>>   .../gpu/drm/xe/xe_survivability_mode_types.h  |  6 +++
>>   3 files changed, 46 insertions(+), 6 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_pcode_api.h b/drivers/gpu/drm/xe/xe_pcode_api.h
>> index 70dcd6625680..975892d6b230 100644
>> --- a/drivers/gpu/drm/xe/xe_pcode_api.h
>> +++ b/drivers/gpu/drm/xe/xe_pcode_api.h
>> @@ -77,11 +77,13 @@
>>   
>>   #define PCODE_SCRATCH(x)		XE_REG(0x138320 + ((x) * 4))
>>   /* PCODE_SCRATCH0 */
>> +#define   BREADCRUMB_VERSION		REG_GENMASK(31, 29)
>>   #define   AUXINFO_REG_OFFSET		REG_GENMASK(17, 15)
>>   #define   OVERFLOW_REG_OFFSET		REG_GENMASK(14, 12)
>>   #define   HISTORY_TRACKING		REG_BIT(11)
>>   #define   OVERFLOW_SUPPORT		REG_BIT(10)
>>   #define   AUXINFO_SUPPORT		REG_BIT(9)
>> +#define   FDO_MODE			REG_BIT(4)
>>   #define   BOOT_STATUS			REG_GENMASK(3, 1)
>>   #define      CRITICAL_FAILURE		4
>>   #define      NON_CRITICAL_FAILURE	7
>> diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c b/drivers/gpu/drm/xe/xe_survivability_mode.c
>> index b5b582442637..8d409bc9c14b 100644
>> --- a/drivers/gpu/drm/xe/xe_survivability_mode.c
>> +++ b/drivers/gpu/drm/xe/xe_survivability_mode.c
>> @@ -16,6 +16,7 @@
>>   #include "xe_heci_gsc.h"
>>   #include "xe_i2c.h"
>>   #include "xe_mmio.h"
>> +#include "xe_nvm.h"
>>   #include "xe_pcode_api.h"
>>   #include "xe_vsec.h"
>>   
>> @@ -66,6 +67,11 @@
>>    *
>>    * - ``aux_info<n>`` : Some failures have additional debug information
>>    *
>> + * - ``fdo_mode`` : To allow recovery in scenarios where MEI itself fails, a new SPI Flash
>> + *   Descriptor Override (FDO) mode is added in v2 survivability breadcrumbs. This mode is enabled
>> + *   by PCODE and provides the ability to directly update the firmware via SPI Driver without
>> + *   any dependency on MEI. Xe KMD initializes the nvm aux driver if FDO mode is enabled.
>> + *
>>    * Runtime Survivability
>>    * =====================
>>    *
>> @@ -94,6 +100,8 @@ static const char * const reg_map[] = {
>>   	[AUX_INFO4]               = "Auxiliary Info 4",
>>   };
>>   
>> +#define FDO_INFO	(MAX_SCRATCH_REG + 1)
>> +
>>   struct xe_survivability_attribute {
>>   	struct device_attribute attr;
>>   	u8 index;
>> @@ -127,6 +135,11 @@ static void populate_survivability_info(struct xe_device *xe)
>>   	set_survivability_info(mmio, info, CAPABILITY_INFO);
>>   	reg_value = info[CAPABILITY_INFO];
>>   
>> +	survivability->version = REG_FIELD_GET(BREADCRUMB_VERSION, reg_value);
>> +	/* FDO mode is exposed only from version 2 */
>> +	if (survivability->version >= 2)
>> +		survivability->fdo_mode = REG_FIELD_GET(FDO_MODE, reg_value);
>> +
>>   	if (reg_value & HISTORY_TRACKING) {
>>   		set_survivability_info(mmio, info, POSTCODE_TRACE);
>>   
>> @@ -188,6 +201,9 @@ static ssize_t survivability_info_show(struct device *dev,
>>   	struct xe_survivability *survivability = &xe->survivability;
>>   	u32 *info = survivability->info;
>>   
>> +	if (sa->index == FDO_INFO)
>> +		return sysfs_emit(buff, "%s\n", str_enabled_disabled(survivability->fdo_mode));
>> +
>>   	return sysfs_emit(buff, "0x%x\n", info[sa->index]);
>>   }
>>   
>> @@ -205,13 +221,18 @@ SURVIVABILITY_ATTR_RO(aux_info1, AUX_INFO1);
>>   SURVIVABILITY_ATTR_RO(aux_info2, AUX_INFO2);
>>   SURVIVABILITY_ATTR_RO(aux_info3, AUX_INFO3);
>>   SURVIVABILITY_ATTR_RO(aux_info4, AUX_INFO4);
>> +SURVIVABILITY_ATTR_RO(fdo_mode, FDO_INFO);
>>   
>>   static void xe_survivability_mode_fini(void *arg)
>>   {
>>   	struct xe_device *xe = arg;
>> +	struct xe_survivability *survivability = &xe->survivability;
>>   	struct pci_dev *pdev = to_pci_dev(xe->drm.dev);
>>   	struct device *dev = &pdev->dev;
>>   
>> +	if (survivability->fdo_mode)
>> +		xe_nvm_fini(xe);
>> +
>>   	device_remove_file(dev, &dev_attr_survivability_mode);
>>   }
>>   
>> @@ -222,7 +243,10 @@ static umode_t survivability_info_attrs_visible(struct kobject *kobj, struct att
>>   	struct xe_survivability *survivability = &xe->survivability;
>>   	u32 *info = survivability->info;
>>   
>> -	if (info[idx])
>> +	/* FDO mode is visible only when supported */
>> +	if (idx >= MAX_SCRATCH_REG && survivability->version >= 2)
>> +		return 0400;
>> +	else if (info[idx])
>>   		return 0400;
>>   
>>   	return 0;
>> @@ -238,6 +262,7 @@ static struct attribute *survivability_info_attrs[] = {
>>   	&attr_aux_info2.attr.attr,
>>   	&attr_aux_info3.attr.attr,
>>   	&attr_aux_info4.attr.attr,
>> +	&attr_fdo_mode.attr.attr,
>>   	NULL,
>>   };
>>   
>> @@ -287,12 +312,16 @@ static int enable_boot_survivability_mode(struct pci_dev *pdev)
>>   	/* Make sure xe_heci_gsc_init() knows about survivability mode */
>>   	survivability->mode = true;
>>   
>> -	ret = xe_heci_gsc_init(xe);
>> -	if (ret)
>> -		goto err;
>> +	xe_heci_gsc_init(xe);
>>   
>>   	xe_vsec_init(xe);
>>   
>> +	if (survivability->fdo_mode) {
>> +		ret = xe_nvm_init(xe);
>> +		if (ret)
>> +			goto err;
>> +	}
>> +
>>   	ret = xe_i2c_probe(xe);
>>   	if (ret)
>>   		goto err;
>> @@ -302,6 +331,7 @@ static int enable_boot_survivability_mode(struct pci_dev *pdev)
>>   	return 0;
>>   
>>   err:
>> +	dev_err(dev, "Failed to enable Survivability Mode\n");
>>   	survivability->mode = false;
>>   	return ret;
>>   }
>> @@ -408,8 +438,10 @@ int xe_survivability_mode_boot_enable(struct xe_device *xe)
>>   
>>   	populate_survivability_info(xe);
>>   
>> -	/* Log breadcrumbs but do not enter survivability mode for Critical boot errors */
>> -	if (survivability->boot_status == CRITICAL_FAILURE) {
>> +	/*
>> +	 * v2 supports survivability mode for critical errors
>> +	 */
>> +	if (survivability->version < 2  && survivability->boot_status == CRITICAL_FAILURE) {
>>   		log_survivability_info(pdev);
>>   		return -ENXIO;
>>   	}
>> diff --git a/drivers/gpu/drm/xe/xe_survivability_mode_types.h b/drivers/gpu/drm/xe/xe_survivability_mode_types.h
>> index f31b3907d933..bd5dc1c955ff 100644
>> --- a/drivers/gpu/drm/xe/xe_survivability_mode_types.h
>> +++ b/drivers/gpu/drm/xe/xe_survivability_mode_types.h
>> @@ -44,6 +44,12 @@ struct xe_survivability {
>>   
>>   	/** @type: survivability type */
>>   	enum xe_survivability_type type;
>> +
>> +	/** @fdo_mode: indicates if FDO mode is enabled */
>> +	bool fdo_mode;
>> +
>> +	/** @version: breadcrumb version of survivability mode  */
>> +	u8 version;
>>   };
>>   
>>   #endif /* _XE_SURVIVABILITY_MODE_TYPES_H_ */
>> -- 
>> 2.47.1
>>


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

* Re: [PATCH v2 1/2] drm/xe/xe_survivability: Redesign survivability mode
  2025-12-01 17:48   ` Rodrigo Vivi
@ 2025-12-02  3:10     ` Riana Tauro
  0 siblings, 0 replies; 11+ messages in thread
From: Riana Tauro @ 2025-12-02  3:10 UTC (permalink / raw)
  To: Rodrigo Vivi; +Cc: intel-xe, anshuman.gupta, badal.nilawar



On 12/1/2025 11:18 PM, Rodrigo Vivi wrote:
> On Mon, Dec 01, 2025 at 08:04:22PM +0530, Riana Tauro wrote:
>> Redesign survivability mode to have only one value per file.
>>
>> 1) Retain the survivability_mode sysfs to indicate the type
>>
>> 	cat /sys/bus/pci/devices/0000\:03\:00.0/survivability_mode
>> 	(Boot / Runtime)
>>
>> 2) Add survivability_info directory to expose boot breadcrumbs.
>> Entries in survivability mode sysfs are only visible when
>> boot breadcrumb registers are populated.
>>
>> 	/sys/bus/pci/devices/0000:03:00.0/survivability_info
>> 	├── aux_info0
>> 	├── aux_info1
>> 	├── aux_info2
>> 	├── aux_info3
>> 	├── aux_info4
>> 	├── capability_info
>> 	├── postcode_trace
>> 	└── postcode_trace_overflow
>>
>> Capability_info:
>>
>> 	Provides data about boot status and has bits that
>> 	indicate the support for the other breadcrumbs
>>
>> Postcode Trace / Postcode Trace Overflow :
>>
>> 	Each postcode is represented as an 8-bit value and represents
>> 	a boot failure event. When a new failure event is logged by Pcode
>> 	the existing postcodes are shifted left. These entries provide a
>> 	history of 8 postcodes.
>>
>> Auxiliary Info:
>>
>> 	Some failures have additional debug information.
>>
>> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
>> ---
>> v2: Add array map for names (Rodrigo)
>> ---
>>   drivers/gpu/drm/xe/xe_survivability_mode.c    | 199 +++++++++++-------
>>   .../gpu/drm/xe/xe_survivability_mode_types.h  |  22 +-
>>   2 files changed, 135 insertions(+), 86 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c b/drivers/gpu/drm/xe/xe_survivability_mode.c
>> index 1662bfddd4bc..b5b582442637 100644
>> --- a/drivers/gpu/drm/xe/xe_survivability_mode.c
>> +++ b/drivers/gpu/drm/xe/xe_survivability_mode.c
>> @@ -19,8 +19,6 @@
>>   #include "xe_pcode_api.h"
>>   #include "xe_vsec.h"
>>   
>> -#define MAX_SCRATCH_MMIO 8
>> -
>>   /**
>>    * DOC: Survivability Mode
>>    *
>> @@ -48,19 +46,25 @@
>>    *
>>    * Refer :ref:`xe_configfs` for more details on how to use configfs
>>    *
>> - * Survivability mode is indicated by the below admin-only readable sysfs which provides additional
>> - * debug information::
>> + * Survivability mode is indicated by the below admin-only readable sysfs entry::
>>    *
>>    *	/sys/bus/pci/devices/<device>/survivability_mode
>>    *
>> - * Capability Information:
>> - *	Provides boot status
>> - * Postcode Information:
>> - *	Provides information about the failure
>> - * Overflow Information
>> - *	Provides history of previous failures
>> - * Auxiliary Information
>> - *	Certain failures may have information in addition to postcode information
>> + * Survivability mode sysfs provides information about the type of survivability mode.
> 
> Perhaps expand here that it is ether 'Runtime' or 'Boot'...

sure will add this

> 
>> + * Any additional debug information if present will be visible under the directory
>> + * ``survivability_info``::
>> + *
>> + *     /sys/bus/pci/devices/<device>/survivability_info/
>> + *
>> + * This directory has the following attributes
>> + *
>> + * - ``capability_info`` : Indicates Boot status and support for additional information
>> + *
>> + * - ``postcode_trace``, ``postcode_trace_overflow`` : Each postcode is a 8bit value and
>> + *   represents a boot failure event. When a new failure event is logged by PCODE the
>> + *   existing postcodes are shifted left. These entries provide a history of 8 postcodes.
>> + *
>> + * - ``aux_info<n>`` : Some failures have additional debug information
>>    *
>>    * Runtime Survivability
>>    * =====================
>> @@ -79,49 +83,63 @@
>>    * to restore device to normal operation.
>>    */
>>   
>> +static const char * const reg_map[] = {
>> +	[CAPABILITY_INFO]         = "Capability_info",
> 
> Why do we need '_' between the words here instead of space like
> the entries below?

Sorry missed removing  '_'.
Thanks for catching this. Will fix this

Thank you
Riana

> 
>> +	[POSTCODE_TRACE]          = "Postcode trace",
>> +	[POSTCODE_TRACE_OVERFLOW] = "Postcode trace overflow",
>> +	[AUX_INFO0]               = "Auxiliary Info 0",
>> +	[AUX_INFO1]               = "Auxiliary Info 1",
>> +	[AUX_INFO2]               = "Auxiliary Info 2",
>> +	[AUX_INFO3]               = "Auxiliary Info 3",
>> +	[AUX_INFO4]               = "Auxiliary Info 4",
>> +};
>> +
>> +struct xe_survivability_attribute {
>> +	struct device_attribute attr;
>> +	u8 index;
>> +};
>> +
>> +static struct
>> +xe_survivability_attribute *dev_attr_to_survivability_attr(struct device_attribute *attr)
>> +{
>> +	return container_of(attr, struct xe_survivability_attribute, attr);
>> +}
>> +
>>   static u32 aux_history_offset(u32 reg_value)
>>   {
>>   	return REG_FIELD_GET(AUXINFO_HISTORY_OFFSET, reg_value);
>>   }
>>   
>> -static void set_survivability_info(struct xe_mmio *mmio, struct xe_survivability_info *info,
>> -				   int id, char *name)
>> +static void set_survivability_info(struct xe_mmio *mmio, u32  *info, int id)
>>   {
>> -	strscpy(info[id].name, name, sizeof(info[id].name));
>> -	info[id].reg = PCODE_SCRATCH(id).raw;
>> -	info[id].value = xe_mmio_read32(mmio, PCODE_SCRATCH(id));
>> +	info[id] = xe_mmio_read32(mmio, PCODE_SCRATCH(id));
>>   }
>>   
>>   static void populate_survivability_info(struct xe_device *xe)
>>   {
>>   	struct xe_survivability *survivability = &xe->survivability;
>> -	struct xe_survivability_info *info = survivability->info;
>> +	u32 *info = survivability->info;
>>   	struct xe_mmio *mmio;
>>   	u32 id = 0, reg_value;
>> -	char name[NAME_MAX];
>>   	int index;
>>   
>>   	mmio = xe_root_tile_mmio(xe);
>> -	set_survivability_info(mmio, info, id, "Capability Info");
>> -	reg_value = info[id].value;
>> +	set_survivability_info(mmio, info, CAPABILITY_INFO);
>> +	reg_value = info[CAPABILITY_INFO];
>>   
>>   	if (reg_value & HISTORY_TRACKING) {
>> -		id++;
>> -		set_survivability_info(mmio, info, id, "Postcode Info");
>> +		set_survivability_info(mmio, info, POSTCODE_TRACE);
>>   
>> -		if (reg_value & OVERFLOW_SUPPORT) {
>> -			id = REG_FIELD_GET(OVERFLOW_REG_OFFSET, reg_value);
>> -			set_survivability_info(mmio, info, id, "Overflow Info");
>> -		}
>> +		if (reg_value & OVERFLOW_SUPPORT)
>> +			set_survivability_info(mmio, info, POSTCODE_TRACE_OVERFLOW);
>>   	}
>>   
>>   	if (reg_value & AUXINFO_SUPPORT) {
>>   		id = REG_FIELD_GET(AUXINFO_REG_OFFSET, reg_value);
>>   
>> -		for (index = 0; id && reg_value; index++, reg_value = info[id].value,
>> -		     id = aux_history_offset(reg_value)) {
>> -			snprintf(name, NAME_MAX, "Auxiliary Info %d", index);
>> -			set_survivability_info(mmio, info, id, name);
>> +		for (index = 0; id >= AUX_INFO0 && id < MAX_SCRATCH_REG; index++) {
>> +			set_survivability_info(mmio, info, id);
>> +			id = aux_history_offset(info[id]);
>>   		}
>>   	}
>>   }
>> @@ -130,15 +148,14 @@ static void log_survivability_info(struct pci_dev *pdev)
>>   {
>>   	struct xe_device *xe = pdev_to_xe_device(pdev);
>>   	struct xe_survivability *survivability = &xe->survivability;
>> -	struct xe_survivability_info *info = survivability->info;
>> +	u32 *info = survivability->info;
>>   	int id;
>>   
>>   	dev_info(&pdev->dev, "Survivability Boot Status : Critical Failure (%d)\n",
>>   		 survivability->boot_status);
>> -	for (id = 0; id < MAX_SCRATCH_MMIO; id++) {
>> -		if (info[id].reg)
>> -			dev_info(&pdev->dev, "%s: 0x%x - 0x%x\n", info[id].name,
>> -				 info[id].reg, info[id].value);
>> +	for (id = 0; id < MAX_SCRATCH_REG; id++) {
>> +		if (info[id])
>> +			dev_info(&pdev->dev, "%s: 0x%x\n", reg_map[id], info[id]);
>>   	}
>>   }
>>   
>> @@ -156,25 +173,38 @@ static ssize_t survivability_mode_show(struct device *dev,
>>   	struct pci_dev *pdev = to_pci_dev(dev);
>>   	struct xe_device *xe = pdev_to_xe_device(pdev);
>>   	struct xe_survivability *survivability = &xe->survivability;
>> -	struct xe_survivability_info *info = survivability->info;
>> -	int index = 0, count = 0;
>>   
>> -	count += sysfs_emit_at(buff, count, "Survivability mode type: %s\n",
>> -			       survivability->type ? "Runtime" : "Boot");
>> +	return sysfs_emit(buff, "%s\n", survivability->type ? "Runtime" : "Boot");
>> +}
>>   
>> -	if (!check_boot_failure(xe))
>> -		return count;
>> +static DEVICE_ATTR_ADMIN_RO(survivability_mode);
>>   
>> -	for (index = 0; index < MAX_SCRATCH_MMIO; index++) {
>> -		if (info[index].reg)
>> -			count += sysfs_emit_at(buff, count, "%s: 0x%x - 0x%x\n", info[index].name,
>> -					       info[index].reg, info[index].value);
>> -	}
>> +static ssize_t survivability_info_show(struct device *dev,
>> +				       struct device_attribute *attr, char *buff)
>> +{
>> +	struct xe_survivability_attribute *sa = dev_attr_to_survivability_attr(attr);
>> +	struct pci_dev *pdev = to_pci_dev(dev);
>> +	struct xe_device *xe = pdev_to_xe_device(pdev);
>> +	struct xe_survivability *survivability = &xe->survivability;
>> +	u32 *info = survivability->info;
>>   
>> -	return count;
>> +	return sysfs_emit(buff, "0x%x\n", info[sa->index]);
>>   }
>>   
>> -static DEVICE_ATTR_ADMIN_RO(survivability_mode);
>> +#define SURVIVABILITY_ATTR_RO(name, _index)					\
>> +	struct xe_survivability_attribute attr_##name =	{			\
>> +		.attr =  __ATTR(name, 0400, survivability_info_show, NULL),	\
>> +		.index = _index,						\
>> +	}
>> +
>> +SURVIVABILITY_ATTR_RO(capability_info, CAPABILITY_INFO);
>> +SURVIVABILITY_ATTR_RO(postcode_trace, POSTCODE_TRACE);
>> +SURVIVABILITY_ATTR_RO(postcode_trace_overflow, POSTCODE_TRACE_OVERFLOW);
>> +SURVIVABILITY_ATTR_RO(aux_info0, AUX_INFO0);
>> +SURVIVABILITY_ATTR_RO(aux_info1, AUX_INFO1);
>> +SURVIVABILITY_ATTR_RO(aux_info2, AUX_INFO2);
>> +SURVIVABILITY_ATTR_RO(aux_info3, AUX_INFO3);
>> +SURVIVABILITY_ATTR_RO(aux_info4, AUX_INFO4);
>>   
>>   static void xe_survivability_mode_fini(void *arg)
>>   {
>> @@ -182,17 +212,48 @@ static void xe_survivability_mode_fini(void *arg)
>>   	struct pci_dev *pdev = to_pci_dev(xe->drm.dev);
>>   	struct device *dev = &pdev->dev;
>>   
>> -	sysfs_remove_file(&dev->kobj, &dev_attr_survivability_mode.attr);
>> +	device_remove_file(dev, &dev_attr_survivability_mode);
>> +}
>> +
>> +static umode_t survivability_info_attrs_visible(struct kobject *kobj, struct attribute *attr,
>> +						int idx)
>> +{
>> +	struct xe_device *xe = kdev_to_xe_device(kobj_to_dev(kobj));
>> +	struct xe_survivability *survivability = &xe->survivability;
>> +	u32 *info = survivability->info;
>> +
>> +	if (info[idx])
>> +		return 0400;
>> +
>> +	return 0;
>>   }
>>   
>> +/* Attributes are ordered according to enum scratch_reg */
>> +static struct attribute *survivability_info_attrs[] = {
>> +	&attr_capability_info.attr.attr,
>> +	&attr_postcode_trace.attr.attr,
>> +	&attr_postcode_trace_overflow.attr.attr,
>> +	&attr_aux_info0.attr.attr,
>> +	&attr_aux_info1.attr.attr,
>> +	&attr_aux_info2.attr.attr,
>> +	&attr_aux_info3.attr.attr,
>> +	&attr_aux_info4.attr.attr,
>> +	NULL,
>> +};
>> +
>> +static const struct attribute_group survivability_info_group = {
>> +	.name = "survivability_info",
>> +	.attrs = survivability_info_attrs,
>> +	.is_visible = survivability_info_attrs_visible,
>> +};
>> +
>>   static int create_survivability_sysfs(struct pci_dev *pdev)
>>   {
>>   	struct device *dev = &pdev->dev;
>>   	struct xe_device *xe = pdev_to_xe_device(pdev);
>>   	int ret;
>>   
>> -	/* create survivability mode sysfs */
>> -	ret = sysfs_create_file(&dev->kobj, &dev_attr_survivability_mode.attr);
>> +	ret = device_create_file(dev, &dev_attr_survivability_mode);
>>   	if (ret) {
>>   		dev_warn(dev, "Failed to create survivability sysfs files\n");
>>   		return ret;
>> @@ -203,6 +264,12 @@ static int create_survivability_sysfs(struct pci_dev *pdev)
>>   	if (ret)
>>   		return ret;
>>   
>> +	if (check_boot_failure(xe)) {
>> +		ret = devm_device_add_group(dev, &survivability_info_group);
>> +		if (ret)
>> +			return ret;
>> +	}
>> +
>>   	return 0;
>>   }
>>   
>> @@ -239,25 +306,6 @@ static int enable_boot_survivability_mode(struct pci_dev *pdev)
>>   	return ret;
>>   }
>>   
>> -static int init_survivability_mode(struct xe_device *xe)
>> -{
>> -	struct xe_survivability *survivability = &xe->survivability;
>> -	struct xe_survivability_info *info;
>> -
>> -	survivability->size = MAX_SCRATCH_MMIO;
>> -
>> -	info = devm_kcalloc(xe->drm.dev, survivability->size, sizeof(*info),
>> -			    GFP_KERNEL);
>> -	if (!info)
>> -		return -ENOMEM;
>> -
>> -	survivability->info = info;
>> -
>> -	populate_survivability_info(xe);
>> -
>> -	return 0;
>> -}
>> -
>>   /**
>>    * xe_survivability_mode_is_boot_enabled- check if boot survivability mode is enabled
>>    * @xe: xe device instance
>> @@ -325,9 +373,7 @@ int xe_survivability_mode_runtime_enable(struct xe_device *xe)
>>   		return -EINVAL;
>>   	}
>>   
>> -	ret = init_survivability_mode(xe);
>> -	if (ret)
>> -		return ret;
>> +	populate_survivability_info(xe);
>>   
>>   	ret = create_survivability_sysfs(pdev);
>>   	if (ret)
>> @@ -356,14 +402,11 @@ int xe_survivability_mode_boot_enable(struct xe_device *xe)
>>   {
>>   	struct xe_survivability *survivability = &xe->survivability;
>>   	struct pci_dev *pdev = to_pci_dev(xe->drm.dev);
>> -	int ret;
>>   
>>   	if (!xe_survivability_mode_is_requested(xe))
>>   		return 0;
>>   
>> -	ret = init_survivability_mode(xe);
>> -	if (ret)
>> -		return ret;
>> +	populate_survivability_info(xe);
>>   
>>   	/* Log breadcrumbs but do not enter survivability mode for Critical boot errors */
>>   	if (survivability->boot_status == CRITICAL_FAILURE) {
>> diff --git a/drivers/gpu/drm/xe/xe_survivability_mode_types.h b/drivers/gpu/drm/xe/xe_survivability_mode_types.h
>> index cd65a5d167c9..f31b3907d933 100644
>> --- a/drivers/gpu/drm/xe/xe_survivability_mode_types.h
>> +++ b/drivers/gpu/drm/xe/xe_survivability_mode_types.h
>> @@ -9,23 +9,29 @@
>>   #include <linux/limits.h>
>>   #include <linux/types.h>
>>   
>> +enum scratch_reg {
>> +	CAPABILITY_INFO,
>> +	POSTCODE_TRACE,
>> +	POSTCODE_TRACE_OVERFLOW,
>> +	AUX_INFO0,
>> +	AUX_INFO1,
>> +	AUX_INFO2,
>> +	AUX_INFO3,
>> +	AUX_INFO4,
>> +	MAX_SCRATCH_REG,
>> +};
>> +
>>   enum xe_survivability_type {
>>   	XE_SURVIVABILITY_TYPE_BOOT,
>>   	XE_SURVIVABILITY_TYPE_RUNTIME,
>>   };
>>   
>> -struct xe_survivability_info {
>> -	char name[NAME_MAX];
>> -	u32 reg;
>> -	u32 value;
>> -};
>> -
>>   /**
>>    * struct xe_survivability: Contains survivability mode information
>>    */
>>   struct xe_survivability {
>> -	/** @info: struct that holds survivability info from scratch registers */
>> -	struct xe_survivability_info *info;
>> +	/** @info: survivability debug info */
>> +	u32 info[MAX_SCRATCH_REG];
>>   
>>   	/** @size: number of scratch registers */
>>   	u32 size;
>> -- 
>> 2.47.1
>>


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

* Re: [PATCH v2 2/2] drm/xe/xe_survivability: Add support for survivability mode v2
  2025-12-02  3:07     ` Riana Tauro
@ 2025-12-02 20:31       ` Rodrigo Vivi
  0 siblings, 0 replies; 11+ messages in thread
From: Rodrigo Vivi @ 2025-12-02 20:31 UTC (permalink / raw)
  To: Riana Tauro; +Cc: intel-xe, anshuman.gupta, badal.nilawar

On Tue, Dec 02, 2025 at 08:37:09AM +0530, Riana Tauro wrote:
> 
> 
> On 12/1/2025 11:13 PM, Rodrigo Vivi wrote:
> > On Mon, Dec 01, 2025 at 08:04:23PM +0530, Riana Tauro wrote:
> > > v2 survivability breadcrumbs introduces a new mode called
> > > SPI Flash Descriptor Override mode (FDO). This is enabled by
> > > PCODE when MEI itself fails and firmware cannot be updated via
> > > MEI using igsc. This mode provides the ability to update
> > > the firmware directly via SPI driver.
> > > 
> > > Xe KMD initializes the nvm aux driver if FDO mode is enabled.
> > > 
> > > Userspace should check FDO mode entry in survivability info sysfs before
> > > using the SPI driver to update firmware.
> > > 
> > > 	/sys/bus/pci/devices/<device>/survivability_info/fdo_mode
> > > 
> > > v2 also supports survivability mode for critical boot errors.
> > > 
> > > Signed-off-by: Riana Tauro <riana.tauro@intel.com>
> > > ---
> > > v2: do not exit survivability mode in case of mei init failure (Rodrigo)
> > 
> > I still see the goto err there, what am I missing?
> > I mean, no strong feeling about what is right or wrong to do here,
> > I just want to make sure the code matches the doc and expectations...
> 
> PCODE enables FDO mode when mei has some failure and firmware flashing
> cannot be done using igsc. In FDO mode, XE KMD initializes the SPI driver.
> 
> If initialization of SPI driver fails, then user cannot update through igsc
> or using spi driver. In this case, there wouldn't be any reason to
> stay in survivability mode. The goto err is to fail probe.
> 
> I have mentioned in documentation that 'FDO is enabled only when MEI fails'.
> Is there something else i am missing?

Nevermind. I have mixed things up.
Thanks for the explanation.

Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>

> 
> Thanks
> Riana
> 
> > 
> > > ---
> > >   drivers/gpu/drm/xe/xe_pcode_api.h             |  2 +
> > >   drivers/gpu/drm/xe/xe_survivability_mode.c    | 44 ++++++++++++++++---
> > >   .../gpu/drm/xe/xe_survivability_mode_types.h  |  6 +++
> > >   3 files changed, 46 insertions(+), 6 deletions(-)
> > > 
> > > diff --git a/drivers/gpu/drm/xe/xe_pcode_api.h b/drivers/gpu/drm/xe/xe_pcode_api.h
> > > index 70dcd6625680..975892d6b230 100644
> > > --- a/drivers/gpu/drm/xe/xe_pcode_api.h
> > > +++ b/drivers/gpu/drm/xe/xe_pcode_api.h
> > > @@ -77,11 +77,13 @@
> > >   #define PCODE_SCRATCH(x)		XE_REG(0x138320 + ((x) * 4))
> > >   /* PCODE_SCRATCH0 */
> > > +#define   BREADCRUMB_VERSION		REG_GENMASK(31, 29)
> > >   #define   AUXINFO_REG_OFFSET		REG_GENMASK(17, 15)
> > >   #define   OVERFLOW_REG_OFFSET		REG_GENMASK(14, 12)
> > >   #define   HISTORY_TRACKING		REG_BIT(11)
> > >   #define   OVERFLOW_SUPPORT		REG_BIT(10)
> > >   #define   AUXINFO_SUPPORT		REG_BIT(9)
> > > +#define   FDO_MODE			REG_BIT(4)
> > >   #define   BOOT_STATUS			REG_GENMASK(3, 1)
> > >   #define      CRITICAL_FAILURE		4
> > >   #define      NON_CRITICAL_FAILURE	7
> > > diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c b/drivers/gpu/drm/xe/xe_survivability_mode.c
> > > index b5b582442637..8d409bc9c14b 100644
> > > --- a/drivers/gpu/drm/xe/xe_survivability_mode.c
> > > +++ b/drivers/gpu/drm/xe/xe_survivability_mode.c
> > > @@ -16,6 +16,7 @@
> > >   #include "xe_heci_gsc.h"
> > >   #include "xe_i2c.h"
> > >   #include "xe_mmio.h"
> > > +#include "xe_nvm.h"
> > >   #include "xe_pcode_api.h"
> > >   #include "xe_vsec.h"
> > > @@ -66,6 +67,11 @@
> > >    *
> > >    * - ``aux_info<n>`` : Some failures have additional debug information
> > >    *
> > > + * - ``fdo_mode`` : To allow recovery in scenarios where MEI itself fails, a new SPI Flash
> > > + *   Descriptor Override (FDO) mode is added in v2 survivability breadcrumbs. This mode is enabled
> > > + *   by PCODE and provides the ability to directly update the firmware via SPI Driver without
> > > + *   any dependency on MEI. Xe KMD initializes the nvm aux driver if FDO mode is enabled.
> > > + *
> > >    * Runtime Survivability
> > >    * =====================
> > >    *
> > > @@ -94,6 +100,8 @@ static const char * const reg_map[] = {
> > >   	[AUX_INFO4]               = "Auxiliary Info 4",
> > >   };
> > > +#define FDO_INFO	(MAX_SCRATCH_REG + 1)
> > > +
> > >   struct xe_survivability_attribute {
> > >   	struct device_attribute attr;
> > >   	u8 index;
> > > @@ -127,6 +135,11 @@ static void populate_survivability_info(struct xe_device *xe)
> > >   	set_survivability_info(mmio, info, CAPABILITY_INFO);
> > >   	reg_value = info[CAPABILITY_INFO];
> > > +	survivability->version = REG_FIELD_GET(BREADCRUMB_VERSION, reg_value);
> > > +	/* FDO mode is exposed only from version 2 */
> > > +	if (survivability->version >= 2)
> > > +		survivability->fdo_mode = REG_FIELD_GET(FDO_MODE, reg_value);
> > > +
> > >   	if (reg_value & HISTORY_TRACKING) {
> > >   		set_survivability_info(mmio, info, POSTCODE_TRACE);
> > > @@ -188,6 +201,9 @@ static ssize_t survivability_info_show(struct device *dev,
> > >   	struct xe_survivability *survivability = &xe->survivability;
> > >   	u32 *info = survivability->info;
> > > +	if (sa->index == FDO_INFO)
> > > +		return sysfs_emit(buff, "%s\n", str_enabled_disabled(survivability->fdo_mode));
> > > +
> > >   	return sysfs_emit(buff, "0x%x\n", info[sa->index]);
> > >   }
> > > @@ -205,13 +221,18 @@ SURVIVABILITY_ATTR_RO(aux_info1, AUX_INFO1);
> > >   SURVIVABILITY_ATTR_RO(aux_info2, AUX_INFO2);
> > >   SURVIVABILITY_ATTR_RO(aux_info3, AUX_INFO3);
> > >   SURVIVABILITY_ATTR_RO(aux_info4, AUX_INFO4);
> > > +SURVIVABILITY_ATTR_RO(fdo_mode, FDO_INFO);
> > >   static void xe_survivability_mode_fini(void *arg)
> > >   {
> > >   	struct xe_device *xe = arg;
> > > +	struct xe_survivability *survivability = &xe->survivability;
> > >   	struct pci_dev *pdev = to_pci_dev(xe->drm.dev);
> > >   	struct device *dev = &pdev->dev;
> > > +	if (survivability->fdo_mode)
> > > +		xe_nvm_fini(xe);
> > > +
> > >   	device_remove_file(dev, &dev_attr_survivability_mode);
> > >   }
> > > @@ -222,7 +243,10 @@ static umode_t survivability_info_attrs_visible(struct kobject *kobj, struct att
> > >   	struct xe_survivability *survivability = &xe->survivability;
> > >   	u32 *info = survivability->info;
> > > -	if (info[idx])
> > > +	/* FDO mode is visible only when supported */
> > > +	if (idx >= MAX_SCRATCH_REG && survivability->version >= 2)
> > > +		return 0400;
> > > +	else if (info[idx])
> > >   		return 0400;
> > >   	return 0;
> > > @@ -238,6 +262,7 @@ static struct attribute *survivability_info_attrs[] = {
> > >   	&attr_aux_info2.attr.attr,
> > >   	&attr_aux_info3.attr.attr,
> > >   	&attr_aux_info4.attr.attr,
> > > +	&attr_fdo_mode.attr.attr,
> > >   	NULL,
> > >   };
> > > @@ -287,12 +312,16 @@ static int enable_boot_survivability_mode(struct pci_dev *pdev)
> > >   	/* Make sure xe_heci_gsc_init() knows about survivability mode */
> > >   	survivability->mode = true;
> > > -	ret = xe_heci_gsc_init(xe);
> > > -	if (ret)
> > > -		goto err;
> > > +	xe_heci_gsc_init(xe);
> > >   	xe_vsec_init(xe);
> > > +	if (survivability->fdo_mode) {
> > > +		ret = xe_nvm_init(xe);
> > > +		if (ret)
> > > +			goto err;
> > > +	}
> > > +
> > >   	ret = xe_i2c_probe(xe);
> > >   	if (ret)
> > >   		goto err;
> > > @@ -302,6 +331,7 @@ static int enable_boot_survivability_mode(struct pci_dev *pdev)
> > >   	return 0;
> > >   err:
> > > +	dev_err(dev, "Failed to enable Survivability Mode\n");
> > >   	survivability->mode = false;
> > >   	return ret;
> > >   }
> > > @@ -408,8 +438,10 @@ int xe_survivability_mode_boot_enable(struct xe_device *xe)
> > >   	populate_survivability_info(xe);
> > > -	/* Log breadcrumbs but do not enter survivability mode for Critical boot errors */
> > > -	if (survivability->boot_status == CRITICAL_FAILURE) {
> > > +	/*
> > > +	 * v2 supports survivability mode for critical errors
> > > +	 */
> > > +	if (survivability->version < 2  && survivability->boot_status == CRITICAL_FAILURE) {
> > >   		log_survivability_info(pdev);
> > >   		return -ENXIO;
> > >   	}
> > > diff --git a/drivers/gpu/drm/xe/xe_survivability_mode_types.h b/drivers/gpu/drm/xe/xe_survivability_mode_types.h
> > > index f31b3907d933..bd5dc1c955ff 100644
> > > --- a/drivers/gpu/drm/xe/xe_survivability_mode_types.h
> > > +++ b/drivers/gpu/drm/xe/xe_survivability_mode_types.h
> > > @@ -44,6 +44,12 @@ struct xe_survivability {
> > >   	/** @type: survivability type */
> > >   	enum xe_survivability_type type;
> > > +
> > > +	/** @fdo_mode: indicates if FDO mode is enabled */
> > > +	bool fdo_mode;
> > > +
> > > +	/** @version: breadcrumb version of survivability mode  */
> > > +	u8 version;
> > >   };
> > >   #endif /* _XE_SURVIVABILITY_MODE_TYPES_H_ */
> > > -- 
> > > 2.47.1
> > > 
> 

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

end of thread, other threads:[~2025-12-02 20:31 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-01 14:34 [PATCH v2 0/2] Redesign survivability mode Riana Tauro
2025-12-01 14:34 ` [PATCH v2 1/2] drm/xe/xe_survivability: " Riana Tauro
2025-12-01 17:48   ` Rodrigo Vivi
2025-12-02  3:10     ` Riana Tauro
2025-12-01 14:34 ` [PATCH v2 2/2] drm/xe/xe_survivability: Add support for survivability mode v2 Riana Tauro
2025-12-01 17:43   ` Rodrigo Vivi
2025-12-02  3:07     ` Riana Tauro
2025-12-02 20:31       ` Rodrigo Vivi
2025-12-01 17:05 ` ✓ CI.KUnit: success for Redesign survivability mode (rev2) Patchwork
2025-12-01 17:45 ` ✓ Xe.CI.BAT: " Patchwork
2025-12-01 20:12 ` ✗ Xe.CI.Full: failure " Patchwork

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