* [PATCH v6 0/3] Introduce Xe Correctable Error Handling
@ 2026-04-10 10:27 Raag Jadav
2026-04-10 10:27 ` [PATCH v6 1/3] drm/xe/sysctrl: Add system controller interrupt handler Raag Jadav
` (6 more replies)
0 siblings, 7 replies; 9+ messages in thread
From: Raag Jadav @ 2026-04-10 10:27 UTC (permalink / raw)
To: intel-xe
Cc: matthew.brost, rodrigo.vivi, riana.tauro, michal.wajdeczko,
matthew.d.roper, umesh.nerlige.ramappa, mallesh.koujalagi,
soham.purkait, anoop.c.vijay, aravind.iddamsetty, Raag Jadav
This series builds on top of system controller series[1] and adds initial
support for correctable error handling in xe. This serves as a foundation
for RAS infrastructure and will be further extended to facilitate other
RAS features.
Detailed description in commit message.
[1] https://patchwork.freedesktop.org/series/163196/
v2: Use system_percpu_wq instead of dedicated (Matthew Brost)
Handle unexpected response length (Mallesh)
v3: Handle event flood (Mallesh)
v4: Handle IRQ before sysctrl initialization (Mallesh)
Fix Severity/Component logging (Mallesh)
s/xe_ras_error/xe_ras_error_class (Riana)
v5: Handle unexpected counter threshold crossed (Mallesh)
v6: Drop unused xe_device parameter (Mallesh)
Fix unexpected counter threshold logic (Mallesh)
Introduce work_lock in the patch it is used in (Riana)
Drop xe prefix from static functions (Riana)
Don't fail on unexpected event (Riana)
Move sysctrl commands to xe_sysctrl_mailbox_types.h (Riana)
Add kernel doc (Riana)
Use xe_device parameter for xe_ras functions (Riana)
Shorten dmesg logging (Riana)
s/xe_ras_threshold_crossed_data/xe_ras_threshold_crossed (Riana)
Raag Jadav (3):
drm/xe/sysctrl: Add system controller interrupt handler
drm/xe/sysctrl: Add system controller event support
drm/xe/ras: Introduce correctable error handling
drivers/gpu/drm/xe/Makefile | 2 +
drivers/gpu/drm/xe/regs/xe_irq_regs.h | 1 +
drivers/gpu/drm/xe/xe_irq.c | 2 +
drivers/gpu/drm/xe/xe_ras.c | 92 +++++++++++++++++++
drivers/gpu/drm/xe/xe_ras.h | 15 +++
drivers/gpu/drm/xe/xe_ras_types.h | 73 +++++++++++++++
drivers/gpu/drm/xe/xe_sysctrl.c | 46 ++++++++--
drivers/gpu/drm/xe/xe_sysctrl.h | 2 +
drivers/gpu/drm/xe/xe_sysctrl_event.c | 85 +++++++++++++++++
drivers/gpu/drm/xe/xe_sysctrl_event_types.h | 57 ++++++++++++
drivers/gpu/drm/xe/xe_sysctrl_mailbox_types.h | 18 ++++
drivers/gpu/drm/xe/xe_sysctrl_types.h | 7 ++
12 files changed, 393 insertions(+), 7 deletions(-)
create mode 100644 drivers/gpu/drm/xe/xe_ras.c
create mode 100644 drivers/gpu/drm/xe/xe_ras.h
create mode 100644 drivers/gpu/drm/xe/xe_ras_types.h
create mode 100644 drivers/gpu/drm/xe/xe_sysctrl_event.c
create mode 100644 drivers/gpu/drm/xe/xe_sysctrl_event_types.h
--
2.43.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v6 1/3] drm/xe/sysctrl: Add system controller interrupt handler
2026-04-10 10:27 [PATCH v6 0/3] Introduce Xe Correctable Error Handling Raag Jadav
@ 2026-04-10 10:27 ` Raag Jadav
2026-04-10 10:27 ` [PATCH v6 2/3] drm/xe/sysctrl: Add system controller event support Raag Jadav
` (5 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Raag Jadav @ 2026-04-10 10:27 UTC (permalink / raw)
To: intel-xe
Cc: matthew.brost, rodrigo.vivi, riana.tauro, michal.wajdeczko,
matthew.d.roper, umesh.nerlige.ramappa, mallesh.koujalagi,
soham.purkait, anoop.c.vijay, aravind.iddamsetty, Raag Jadav
Add system controller interrupt handler which is denoted by 11th bit in
GFX master interrupt register. While at it, add worker for scheduling
system controller work.
Co-developed-by: Soham Purkait <soham.purkait@intel.com>
Signed-off-by: Soham Purkait <soham.purkait@intel.com>
Signed-off-by: Raag Jadav <raag.jadav@intel.com>
Reviewed-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
Reviewed-by: Riana Tauro <riana.tauro@intel.com>
---
v2: Use system_percpu_wq instead of dedicated (Matthew Brost)
v4: Handle IRQ before sysctrl initialization (Mallesh)
v6: Introduce work_lock in the patch it is used in (Riana)
---
drivers/gpu/drm/xe/regs/xe_irq_regs.h | 1 +
drivers/gpu/drm/xe/xe_irq.c | 2 ++
drivers/gpu/drm/xe/xe_sysctrl.c | 35 +++++++++++++++++++++------
drivers/gpu/drm/xe/xe_sysctrl.h | 1 +
drivers/gpu/drm/xe/xe_sysctrl_types.h | 4 +++
5 files changed, 36 insertions(+), 7 deletions(-)
diff --git a/drivers/gpu/drm/xe/regs/xe_irq_regs.h b/drivers/gpu/drm/xe/regs/xe_irq_regs.h
index 9d74f454d3ff..1d6b976c4de0 100644
--- a/drivers/gpu/drm/xe/regs/xe_irq_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_irq_regs.h
@@ -22,6 +22,7 @@
#define DISPLAY_IRQ REG_BIT(16)
#define SOC_H2DMEMINT_IRQ REG_BIT(13)
#define I2C_IRQ REG_BIT(12)
+#define SYSCTRL_IRQ REG_BIT(11)
#define GT_DW_IRQ(x) REG_BIT(x)
/*
diff --git a/drivers/gpu/drm/xe/xe_irq.c b/drivers/gpu/drm/xe/xe_irq.c
index 9a775c6588dc..e9f0b3cad06d 100644
--- a/drivers/gpu/drm/xe/xe_irq.c
+++ b/drivers/gpu/drm/xe/xe_irq.c
@@ -24,6 +24,7 @@
#include "xe_mmio.h"
#include "xe_pxp.h"
#include "xe_sriov.h"
+#include "xe_sysctrl.h"
#include "xe_tile.h"
/*
@@ -525,6 +526,7 @@ static irqreturn_t dg1_irq_handler(int irq, void *arg)
xe_heci_csc_irq_handler(xe, master_ctl);
xe_display_irq_handler(xe, master_ctl);
xe_i2c_irq_handler(xe, master_ctl);
+ xe_sysctrl_irq_handler(xe, master_ctl);
xe_mert_irq_handler(xe, master_ctl);
gu_misc_iir = gu_misc_irq_ack(xe, master_ctl);
}
diff --git a/drivers/gpu/drm/xe/xe_sysctrl.c b/drivers/gpu/drm/xe/xe_sysctrl.c
index 2bcef304eb9a..72ce0822cc6d 100644
--- a/drivers/gpu/drm/xe/xe_sysctrl.c
+++ b/drivers/gpu/drm/xe/xe_sysctrl.c
@@ -8,6 +8,7 @@
#include <drm/drm_managed.h>
+#include "regs/xe_irq_regs.h"
#include "regs/xe_sysctrl_regs.h"
#include "xe_device.h"
#include "xe_mmio.h"
@@ -30,10 +31,16 @@
static void sysctrl_fini(void *arg)
{
struct xe_device *xe = arg;
+ struct xe_sysctrl *sc = &xe->sc;
+ cancel_work_sync(&sc->work);
xe->soc_remapper.set_sysctrl_region(xe, 0);
}
+static void xe_sysctrl_work(struct work_struct *work)
+{
+}
+
/**
* xe_sysctrl_init() - Initialize System Controller subsystem
* @xe: xe device instance
@@ -55,12 +62,6 @@ int xe_sysctrl_init(struct xe_device *xe)
if (!xe->info.has_sysctrl)
return 0;
- xe->soc_remapper.set_sysctrl_region(xe, SYSCTRL_MAILBOX_INDEX);
-
- ret = devm_add_action_or_reset(xe->drm.dev, sysctrl_fini, xe);
- if (ret)
- return ret;
-
sc->mmio = devm_kzalloc(xe->drm.dev, sizeof(*sc->mmio), GFP_KERNEL);
if (!sc->mmio)
return -ENOMEM;
@@ -73,9 +74,29 @@ int xe_sysctrl_init(struct xe_device *xe)
if (ret)
return ret;
+ xe->soc_remapper.set_sysctrl_region(xe, SYSCTRL_MAILBOX_INDEX);
xe_sysctrl_mailbox_init(sc);
+ INIT_WORK(&sc->work, xe_sysctrl_work);
- return 0;
+ return devm_add_action_or_reset(xe->drm.dev, sysctrl_fini, xe);
+}
+
+/**
+ * xe_sysctrl_irq_handler() - Handler for System Controller interrupts
+ * @xe: xe device instance
+ * @master_ctl: interrupt register
+ *
+ * Handle interrupts generated by System Controller.
+ */
+void xe_sysctrl_irq_handler(struct xe_device *xe, u32 master_ctl)
+{
+ struct xe_sysctrl *sc = &xe->sc;
+
+ if (!xe->info.has_sysctrl || !sc->work.func)
+ return;
+
+ if (master_ctl & SYSCTRL_IRQ)
+ schedule_work(&sc->work);
}
/**
diff --git a/drivers/gpu/drm/xe/xe_sysctrl.h b/drivers/gpu/drm/xe/xe_sysctrl.h
index f3b0f3716b2f..f7469bfc9324 100644
--- a/drivers/gpu/drm/xe/xe_sysctrl.h
+++ b/drivers/gpu/drm/xe/xe_sysctrl.h
@@ -17,6 +17,7 @@ static inline struct xe_device *sc_to_xe(struct xe_sysctrl *sc)
}
int xe_sysctrl_init(struct xe_device *xe);
+void xe_sysctrl_irq_handler(struct xe_device *xe, u32 master_ctl);
void xe_sysctrl_pm_resume(struct xe_device *xe);
#endif
diff --git a/drivers/gpu/drm/xe/xe_sysctrl_types.h b/drivers/gpu/drm/xe/xe_sysctrl_types.h
index 8217f6befe70..5f408d6491ef 100644
--- a/drivers/gpu/drm/xe/xe_sysctrl_types.h
+++ b/drivers/gpu/drm/xe/xe_sysctrl_types.h
@@ -8,6 +8,7 @@
#include <linux/mutex.h>
#include <linux/types.h>
+#include <linux/workqueue_types.h>
struct xe_mmio;
@@ -27,6 +28,9 @@ struct xe_sysctrl {
/** @phase_bit: Message boundary phase toggle bit (0 or 1) */
bool phase_bit;
+
+ /** @work: Pending events worker */
+ struct work_struct work;
};
#endif
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v6 2/3] drm/xe/sysctrl: Add system controller event support
2026-04-10 10:27 [PATCH v6 0/3] Introduce Xe Correctable Error Handling Raag Jadav
2026-04-10 10:27 ` [PATCH v6 1/3] drm/xe/sysctrl: Add system controller interrupt handler Raag Jadav
@ 2026-04-10 10:27 ` Raag Jadav
2026-04-10 10:27 ` [PATCH v6 3/3] drm/xe/ras: Introduce correctable error handling Raag Jadav
` (4 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Raag Jadav @ 2026-04-10 10:27 UTC (permalink / raw)
To: intel-xe
Cc: matthew.brost, rodrigo.vivi, riana.tauro, michal.wajdeczko,
matthew.d.roper, umesh.nerlige.ramappa, mallesh.koujalagi,
soham.purkait, anoop.c.vijay, aravind.iddamsetty, Raag Jadav
System controller reports different types of events to GFX endpoint for
different usecases, add initial support for them. This will be further
extended to service those usecases.
Signed-off-by: Raag Jadav <raag.jadav@intel.com>
Reviewed-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
---
v2: Handle unexpected response length (Mallesh)
v3: Handle event flood (Mallesh)
v6: Drop xe prefix from static functions (Riana)
Don't fail on unexpected event (Riana)
Move sysctrl commands to xe_sysctrl_mailbox_types.h (Riana)
Add kernel doc (Riana)
---
drivers/gpu/drm/xe/Makefile | 1 +
drivers/gpu/drm/xe/xe_sysctrl.c | 11 +++
drivers/gpu/drm/xe/xe_sysctrl.h | 1 +
drivers/gpu/drm/xe/xe_sysctrl_event.c | 84 +++++++++++++++++++
drivers/gpu/drm/xe/xe_sysctrl_event_types.h | 57 +++++++++++++
drivers/gpu/drm/xe/xe_sysctrl_mailbox_types.h | 18 ++++
drivers/gpu/drm/xe/xe_sysctrl_types.h | 3 +
7 files changed, 175 insertions(+)
create mode 100644 drivers/gpu/drm/xe/xe_sysctrl_event.c
create mode 100644 drivers/gpu/drm/xe/xe_sysctrl_event_types.h
diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
index 7f03f06df186..9e6689c86797 100644
--- a/drivers/gpu/drm/xe/Makefile
+++ b/drivers/gpu/drm/xe/Makefile
@@ -125,6 +125,7 @@ xe-y += xe_bb.o \
xe_survivability_mode.o \
xe_sync.o \
xe_sysctrl.o \
+ xe_sysctrl_event.o \
xe_sysctrl_mailbox.o \
xe_tile.o \
xe_tile_sysfs.o \
diff --git a/drivers/gpu/drm/xe/xe_sysctrl.c b/drivers/gpu/drm/xe/xe_sysctrl.c
index 72ce0822cc6d..8fd791047f0a 100644
--- a/drivers/gpu/drm/xe/xe_sysctrl.c
+++ b/drivers/gpu/drm/xe/xe_sysctrl.c
@@ -12,6 +12,7 @@
#include "regs/xe_sysctrl_regs.h"
#include "xe_device.h"
#include "xe_mmio.h"
+#include "xe_pm.h"
#include "xe_soc_remapper.h"
#include "xe_sysctrl.h"
#include "xe_sysctrl_mailbox.h"
@@ -39,6 +40,12 @@ static void sysctrl_fini(void *arg)
static void xe_sysctrl_work(struct work_struct *work)
{
+ struct xe_sysctrl *sc = container_of(work, struct xe_sysctrl, work);
+ struct xe_device *xe = sc_to_xe(sc);
+
+ guard(xe_pm_runtime)(xe);
+ guard(mutex)(&sc->work_lock);
+ xe_sysctrl_event(sc);
}
/**
@@ -74,6 +81,10 @@ int xe_sysctrl_init(struct xe_device *xe)
if (ret)
return ret;
+ ret = devm_mutex_init(xe->drm.dev, &sc->work_lock);
+ if (ret)
+ return ret;
+
xe->soc_remapper.set_sysctrl_region(xe, SYSCTRL_MAILBOX_INDEX);
xe_sysctrl_mailbox_init(sc);
INIT_WORK(&sc->work, xe_sysctrl_work);
diff --git a/drivers/gpu/drm/xe/xe_sysctrl.h b/drivers/gpu/drm/xe/xe_sysctrl.h
index f7469bfc9324..090dffb6d55f 100644
--- a/drivers/gpu/drm/xe/xe_sysctrl.h
+++ b/drivers/gpu/drm/xe/xe_sysctrl.h
@@ -16,6 +16,7 @@ static inline struct xe_device *sc_to_xe(struct xe_sysctrl *sc)
return container_of(sc, struct xe_device, sc);
}
+void xe_sysctrl_event(struct xe_sysctrl *sc);
int xe_sysctrl_init(struct xe_device *xe);
void xe_sysctrl_irq_handler(struct xe_device *xe, u32 master_ctl);
void xe_sysctrl_pm_resume(struct xe_device *xe);
diff --git a/drivers/gpu/drm/xe/xe_sysctrl_event.c b/drivers/gpu/drm/xe/xe_sysctrl_event.c
new file mode 100644
index 000000000000..3edde46a9711
--- /dev/null
+++ b/drivers/gpu/drm/xe/xe_sysctrl_event.c
@@ -0,0 +1,84 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2026 Intel Corporation
+ */
+
+#include "xe_device.h"
+#include "xe_irq.h"
+#include "xe_printk.h"
+#include "xe_sysctrl.h"
+#include "xe_sysctrl_event_types.h"
+#include "xe_sysctrl_mailbox.h"
+#include "xe_sysctrl_mailbox_types.h"
+
+static void get_pending_event(struct xe_sysctrl *sc, struct xe_sysctrl_mailbox_command *command)
+{
+ struct xe_sysctrl_event_response *response = command->data_out;
+ struct xe_device *xe = sc_to_xe(sc);
+ u32 count = XE_SYSCTRL_EVENT_FLOOD;
+ size_t len;
+ int ret;
+
+ do {
+ memset(response, 0, sizeof(*response));
+
+ ret = xe_sysctrl_send_command(sc, command, &len);
+ if (ret) {
+ xe_err(xe, "sysctrl: failed to get pending event %d\n", ret);
+ return;
+ }
+
+ if (len != sizeof(*response)) {
+ xe_err(xe, "sysctrl: unexpected event response length %zu\n", len);
+ return;
+ }
+
+ if (response->event == XE_SYSCTRL_EVENT_THRESHOLD_CROSSED)
+ xe_warn(xe, "[RAS]: counter threshold crossed\n");
+ else
+ xe_err(xe, "sysctrl: unexpected event %#x\n", response->event);
+
+ if (!--count) {
+ xe_err(xe, "sysctrl: event flooding\n");
+ return;
+ }
+
+ xe_dbg(xe, "sysctrl: %u events pending\n", response->count);
+ } while (response->count);
+}
+
+static void event_request_prep(struct xe_device *xe, struct xe_sysctrl_app_msg_hdr *header,
+ struct xe_sysctrl_event_request *request)
+{
+ struct pci_dev *pdev = to_pci_dev(xe->drm.dev);
+
+ header->data = REG_FIELD_PREP(APP_HDR_GROUP_ID_MASK, XE_SYSCTRL_GROUP_GFSP) |
+ REG_FIELD_PREP(APP_HDR_COMMAND_MASK, XE_SYSCTRL_CMD_GET_PENDING_EVENT);
+
+ request->vector = xe_device_has_msix(xe) ? XE_IRQ_DEFAULT_MSIX : 0;
+ request->fn = PCI_FUNC(pdev->devfn);
+}
+
+/**
+ * xe_sysctrl_event() - Handler for System Controller events
+ * @sc: System Controller instance
+ *
+ * Handle events generated by System Controller.
+ */
+void xe_sysctrl_event(struct xe_sysctrl *sc)
+{
+ struct xe_sysctrl_mailbox_command command = {};
+ struct xe_sysctrl_event_response response = {};
+ struct xe_sysctrl_event_request request = {};
+ struct xe_sysctrl_app_msg_hdr header = {};
+
+ event_request_prep(sc_to_xe(sc), &header, &request);
+
+ command.header = header;
+ command.data_in = &request;
+ command.data_in_len = sizeof(request);
+ command.data_out = &response;
+ command.data_out_len = sizeof(response);
+
+ get_pending_event(sc, &command);
+}
diff --git a/drivers/gpu/drm/xe/xe_sysctrl_event_types.h b/drivers/gpu/drm/xe/xe_sysctrl_event_types.h
new file mode 100644
index 000000000000..7066d7979f4a
--- /dev/null
+++ b/drivers/gpu/drm/xe/xe_sysctrl_event_types.h
@@ -0,0 +1,57 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2026 Intel Corporation
+ */
+
+#ifndef _XE_SYSCTRL_EVENT_TYPES_H_
+#define _XE_SYSCTRL_EVENT_TYPES_H_
+
+#include <linux/types.h>
+
+#define XE_SYSCTRL_EVENT_DATA_LEN 59
+
+/* Modify as needed */
+#define XE_SYSCTRL_EVENT_FLOOD 16
+
+/**
+ * enum xe_sysctrl_event - Events reported by System Controller
+ *
+ * @XE_SYSCTRL_EVENT_THRESHOLD_CROSSED: Error counter threshold crossed
+ */
+enum xe_sysctrl_event {
+ XE_SYSCTRL_EVENT_THRESHOLD_CROSSED = 0x01,
+};
+
+/**
+ * struct xe_sysctrl_event_request - Request structure for pending event
+ */
+struct xe_sysctrl_event_request {
+ /** @vector: MSI-X vector that was triggered */
+ u32 vector;
+ /** @fn: Function index (0-7) of PCIe device */
+ u32 fn:8;
+ /** @reserved: Reserved for future use */
+ u32 reserved:24;
+ /** @reserved2: Reserved for future use */
+ u32 reserved2[2];
+} __packed;
+
+/**
+ * struct xe_sysctrl_event_response - Response structure for pending event
+ */
+struct xe_sysctrl_event_response {
+ /** @count: Pending event count, decremented by fw on each response */
+ u32 count;
+ /** @event: Pending event */
+ enum xe_sysctrl_event event;
+ /** @timestamp: Timestamp of most recent event */
+ u64 timestamp;
+ /** @extended: Event has extended payload */
+ u32 extended:1;
+ /** @reserved: Reserved for future use */
+ u32 reserved:31;
+ /** @data: Generic event data */
+ u32 data[XE_SYSCTRL_EVENT_DATA_LEN];
+} __packed;
+
+#endif /* _XE_SYSCTRL_EVENT_TYPES_H_ */
diff --git a/drivers/gpu/drm/xe/xe_sysctrl_mailbox_types.h b/drivers/gpu/drm/xe/xe_sysctrl_mailbox_types.h
index 89456aec6097..84d7c647e743 100644
--- a/drivers/gpu/drm/xe/xe_sysctrl_mailbox_types.h
+++ b/drivers/gpu/drm/xe/xe_sysctrl_mailbox_types.h
@@ -10,6 +10,24 @@
#include "abi/xe_sysctrl_abi.h"
+/**
+ * enum xe_sysctrl_group - System Controller command groups
+ *
+ * @XE_SYSCTRL_GROUP_GFSP: GFSP group
+ */
+enum xe_sysctrl_group {
+ XE_SYSCTRL_GROUP_GFSP = 0x01,
+};
+
+/**
+ * enum xe_sysctrl_gfsp_cmd - Commands supported by GFSP group
+ *
+ * @XE_SYSCTRL_CMD_GET_PENDING_EVENT: Retrieve pending event
+ */
+enum xe_sysctrl_gfsp_cmd {
+ XE_SYSCTRL_CMD_GET_PENDING_EVENT = 0x07,
+};
+
/**
* struct xe_sysctrl_mailbox_command - System Controller mailbox command
*/
diff --git a/drivers/gpu/drm/xe/xe_sysctrl_types.h b/drivers/gpu/drm/xe/xe_sysctrl_types.h
index 5f408d6491ef..95359af691c9 100644
--- a/drivers/gpu/drm/xe/xe_sysctrl_types.h
+++ b/drivers/gpu/drm/xe/xe_sysctrl_types.h
@@ -31,6 +31,9 @@ struct xe_sysctrl {
/** @work: Pending events worker */
struct work_struct work;
+
+ /** @work_lock: Mutex protecting pending events */
+ struct mutex work_lock;
};
#endif
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v6 3/3] drm/xe/ras: Introduce correctable error handling
2026-04-10 10:27 [PATCH v6 0/3] Introduce Xe Correctable Error Handling Raag Jadav
2026-04-10 10:27 ` [PATCH v6 1/3] drm/xe/sysctrl: Add system controller interrupt handler Raag Jadav
2026-04-10 10:27 ` [PATCH v6 2/3] drm/xe/sysctrl: Add system controller event support Raag Jadav
@ 2026-04-10 10:27 ` Raag Jadav
2026-04-13 5:56 ` Mallesh, Koujalagi
2026-04-10 12:19 ` ✗ CI.checkpatch: warning for Introduce Xe Correctable Error Handling (rev6) Patchwork
` (3 subsequent siblings)
6 siblings, 1 reply; 9+ messages in thread
From: Raag Jadav @ 2026-04-10 10:27 UTC (permalink / raw)
To: intel-xe
Cc: matthew.brost, rodrigo.vivi, riana.tauro, michal.wajdeczko,
matthew.d.roper, umesh.nerlige.ramappa, mallesh.koujalagi,
soham.purkait, anoop.c.vijay, aravind.iddamsetty, Raag Jadav
Add initial support for correctable error handling which is serviced
using system controller event. Currently we only log the errors in
dmesg but this serves as a foundation for RAS infrastructure and will
be further extended to facilitate other RAS features.
Signed-off-by: Raag Jadav <raag.jadav@intel.com>
---
v4: Fix Severity/Component logging (Mallesh)
s/xe_ras_error/xe_ras_error_class (Riana)
v5: Handle unexpected counter threshold crossed (Mallesh)
v6: Drop unused xe_device parameter (Mallesh)
Fix unexpected counter threshold logic (Mallesh)
Use xe_device parameter for xe_ras functions (Riana)
Shorten dmesg logging (Riana)
s/xe_ras_threshold_crossed_data/xe_ras_threshold_crossed (Riana)
---
drivers/gpu/drm/xe/Makefile | 1 +
drivers/gpu/drm/xe/xe_ras.c | 92 +++++++++++++++++++++++++++
drivers/gpu/drm/xe/xe_ras.h | 15 +++++
drivers/gpu/drm/xe/xe_ras_types.h | 73 +++++++++++++++++++++
drivers/gpu/drm/xe/xe_sysctrl_event.c | 3 +-
5 files changed, 183 insertions(+), 1 deletion(-)
create mode 100644 drivers/gpu/drm/xe/xe_ras.c
create mode 100644 drivers/gpu/drm/xe/xe_ras.h
create mode 100644 drivers/gpu/drm/xe/xe_ras_types.h
diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
index 9e6689c86797..0e6e91a6063c 100644
--- a/drivers/gpu/drm/xe/Makefile
+++ b/drivers/gpu/drm/xe/Makefile
@@ -113,6 +113,7 @@ xe-y += xe_bb.o \
xe_pxp_submit.o \
xe_query.o \
xe_range_fence.o \
+ xe_ras.o \
xe_reg_sr.o \
xe_reg_whitelist.o \
xe_ring_ops.o \
diff --git a/drivers/gpu/drm/xe/xe_ras.c b/drivers/gpu/drm/xe/xe_ras.c
new file mode 100644
index 000000000000..08e91348c459
--- /dev/null
+++ b/drivers/gpu/drm/xe/xe_ras.c
@@ -0,0 +1,92 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2026 Intel Corporation
+ */
+
+#include "xe_printk.h"
+#include "xe_ras.h"
+#include "xe_ras_types.h"
+#include "xe_sysctrl.h"
+#include "xe_sysctrl_event_types.h"
+
+/* Severity of detected errors */
+enum xe_ras_severity {
+ XE_RAS_SEV_NOT_SUPPORTED = 0,
+ XE_RAS_SEV_CORRECTABLE,
+ XE_RAS_SEV_UNCORRECTABLE,
+ XE_RAS_SEV_INFORMATIONAL,
+ XE_RAS_SEV_MAX
+};
+
+/* Major IP blocks/components where errors can originate */
+enum xe_ras_component {
+ XE_RAS_COMP_NOT_SUPPORTED = 0,
+ XE_RAS_COMP_DEVICE_MEMORY,
+ XE_RAS_COMP_CORE_COMPUTE,
+ XE_RAS_COMP_RESERVED,
+ XE_RAS_COMP_PCIE,
+ XE_RAS_COMP_FABRIC,
+ XE_RAS_COMP_SOC_INTERNAL,
+ XE_RAS_COMP_MAX
+};
+
+static const char *const xe_ras_severities[] = {
+ [XE_RAS_SEV_NOT_SUPPORTED] = "Not Supported",
+ [XE_RAS_SEV_CORRECTABLE] = "Correctable Error",
+ [XE_RAS_SEV_UNCORRECTABLE] = "Uncorrectable Error",
+ [XE_RAS_SEV_INFORMATIONAL] = "Informational Error",
+};
+static_assert(ARRAY_SIZE(xe_ras_severities) == XE_RAS_SEV_MAX);
+
+static const char *const xe_ras_components[] = {
+ [XE_RAS_COMP_NOT_SUPPORTED] = "Not Supported",
+ [XE_RAS_COMP_DEVICE_MEMORY] = "Device Memory",
+ [XE_RAS_COMP_CORE_COMPUTE] = "Core Compute",
+ [XE_RAS_COMP_RESERVED] = "Reserved",
+ [XE_RAS_COMP_PCIE] = "PCIe",
+ [XE_RAS_COMP_FABRIC] = "Fabric",
+ [XE_RAS_COMP_SOC_INTERNAL] = "SoC Internal",
+};
+static_assert(ARRAY_SIZE(xe_ras_components) == XE_RAS_COMP_MAX);
+
+static inline const char *sev_to_str(u8 sev)
+{
+ if (sev >= XE_RAS_SEV_MAX)
+ sev = XE_RAS_SEV_NOT_SUPPORTED;
+
+ return xe_ras_severities[sev];
+}
+
+static inline const char *comp_to_str(u8 comp)
+{
+ if (comp >= XE_RAS_COMP_MAX)
+ comp = XE_RAS_COMP_NOT_SUPPORTED;
+
+ return xe_ras_components[comp];
+}
+
+void xe_ras_counter_threshold_crossed(struct xe_device *xe,
+ struct xe_sysctrl_event_response *response)
+{
+ struct xe_ras_threshold_crossed *pending = (void *)&response->data;
+ struct xe_ras_error_class *errors = pending->counters;
+ u32 counter_id, ncounters = pending->ncounters;
+
+ if (!ncounters || ncounters > XE_RAS_NUM_COUNTERS) {
+ xe_err(xe, "sysctrl: unexpected counter threshold crossed %u\n", ncounters);
+ return;
+ }
+
+ BUILD_BUG_ON(sizeof(response->data) < sizeof(*pending));
+ xe_warn(xe, "[RAS]: counter threshold crossed, %u new errors\n", ncounters);
+
+ for (counter_id = 0; counter_id < ncounters; counter_id++) {
+ u8 severity, component;
+
+ severity = errors[counter_id].common.severity;
+ component = errors[counter_id].common.component;
+
+ xe_warn(xe, "[RAS]: %s %s detected\n",
+ comp_to_str(component), sev_to_str(severity));
+ }
+}
diff --git a/drivers/gpu/drm/xe/xe_ras.h b/drivers/gpu/drm/xe/xe_ras.h
new file mode 100644
index 000000000000..ea90593b62dc
--- /dev/null
+++ b/drivers/gpu/drm/xe/xe_ras.h
@@ -0,0 +1,15 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2026 Intel Corporation
+ */
+
+#ifndef _XE_RAS_H_
+#define _XE_RAS_H_
+
+struct xe_device;
+struct xe_sysctrl_event_response;
+
+void xe_ras_counter_threshold_crossed(struct xe_device *xe,
+ struct xe_sysctrl_event_response *response);
+
+#endif
diff --git a/drivers/gpu/drm/xe/xe_ras_types.h b/drivers/gpu/drm/xe/xe_ras_types.h
new file mode 100644
index 000000000000..4e63c67f806a
--- /dev/null
+++ b/drivers/gpu/drm/xe/xe_ras_types.h
@@ -0,0 +1,73 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2026 Intel Corporation
+ */
+
+#ifndef _XE_RAS_TYPES_H_
+#define _XE_RAS_TYPES_H_
+
+#include <linux/types.h>
+
+#define XE_RAS_NUM_COUNTERS 16
+
+/**
+ * struct xe_ras_error_common - Error fields that are common across all products
+ */
+struct xe_ras_error_common {
+ /** @severity: Error severity */
+ u8 severity;
+ /** @component: IP block where error originated */
+ u8 component;
+} __packed;
+
+/**
+ * struct xe_ras_error_unit - Error unit information
+ */
+struct xe_ras_error_unit {
+ /** @tile: Tile identifier */
+ u8 tile;
+ /** @instance: Instance identifier specific to IP */
+ u32 instance;
+} __packed;
+
+/**
+ * struct xe_ras_error_cause - Error cause information
+ */
+struct xe_ras_error_cause {
+ /** @cause: Cause/checker */
+ u32 cause;
+ /** @reserved: For future use */
+ u8 reserved;
+} __packed;
+
+/**
+ * struct xe_ras_error_product - Error fields that are specific to the product
+ */
+struct xe_ras_error_product {
+ /** @unit: Unit within IP block */
+ struct xe_ras_error_unit unit;
+ /** @cause: Cause/checker */
+ struct xe_ras_error_cause cause;
+} __packed;
+
+/**
+ * struct xe_ras_error_class - Combines common and product-specific parts
+ */
+struct xe_ras_error_class {
+ /** @common: Common error type and component */
+ struct xe_ras_error_common common;
+ /** @product: Product-specific unit and cause */
+ struct xe_ras_error_product product;
+} __packed;
+
+/**
+ * struct xe_ras_threshold_crossed - Data for threshold crossed event
+ */
+struct xe_ras_threshold_crossed {
+ /** @ncounters: Number of error counters that crossed thresholds */
+ u32 ncounters;
+ /** @counters: Array of error counters that crossed threshold */
+ struct xe_ras_error_class counters[XE_RAS_NUM_COUNTERS];
+} __packed;
+
+#endif
diff --git a/drivers/gpu/drm/xe/xe_sysctrl_event.c b/drivers/gpu/drm/xe/xe_sysctrl_event.c
index 3edde46a9711..c6ea32f3471e 100644
--- a/drivers/gpu/drm/xe/xe_sysctrl_event.c
+++ b/drivers/gpu/drm/xe/xe_sysctrl_event.c
@@ -6,6 +6,7 @@
#include "xe_device.h"
#include "xe_irq.h"
#include "xe_printk.h"
+#include "xe_ras.h"
#include "xe_sysctrl.h"
#include "xe_sysctrl_event_types.h"
#include "xe_sysctrl_mailbox.h"
@@ -34,7 +35,7 @@ static void get_pending_event(struct xe_sysctrl *sc, struct xe_sysctrl_mailbox_c
}
if (response->event == XE_SYSCTRL_EVENT_THRESHOLD_CROSSED)
- xe_warn(xe, "[RAS]: counter threshold crossed\n");
+ xe_ras_counter_threshold_crossed(xe, response);
else
xe_err(xe, "sysctrl: unexpected event %#x\n", response->event);
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✗ CI.checkpatch: warning for Introduce Xe Correctable Error Handling (rev6)
2026-04-10 10:27 [PATCH v6 0/3] Introduce Xe Correctable Error Handling Raag Jadav
` (2 preceding siblings ...)
2026-04-10 10:27 ` [PATCH v6 3/3] drm/xe/ras: Introduce correctable error handling Raag Jadav
@ 2026-04-10 12:19 ` Patchwork
2026-04-10 12:20 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-04-10 12:19 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe
== Series Details ==
Series: Introduce Xe Correctable Error Handling (rev6)
URL : https://patchwork.freedesktop.org/series/160184/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
1f57ba1afceae32108bd24770069f764d940a0e4
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit eff59313996ed7945dd703196decaab1da3aeda2
Author: Raag Jadav <raag.jadav@intel.com>
Date: Fri Apr 10 15:57:44 2026 +0530
drm/xe/ras: Introduce correctable error handling
Add initial support for correctable error handling which is serviced
using system controller event. Currently we only log the errors in
dmesg but this serves as a foundation for RAS infrastructure and will
be further extended to facilitate other RAS features.
Signed-off-by: Raag Jadav <raag.jadav@intel.com>
+ /mt/dim checkpatch 56a9321dbb8dd1a1d5e85fc86bd30c4a0d5147db drm-intel
43c73e941791 drm/xe/sysctrl: Add system controller interrupt handler
8137c746c027 drm/xe/sysctrl: Add system controller event support
-:74: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#74:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 217 lines checked
eff59313996e drm/xe/ras: Introduce correctable error handling
-:26: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#26:
new file mode 100644
-:69: CHECK:LINE_SPACING: Please use a blank line after function/struct/union/enum declarations
#69: FILE: drivers/gpu/drm/xe/xe_ras.c:39:
+};
+static_assert(ARRAY_SIZE(xe_ras_severities) == XE_RAS_SEV_MAX);
-:80: CHECK:LINE_SPACING: Please use a blank line after function/struct/union/enum declarations
#80: FILE: drivers/gpu/drm/xe/xe_ras.c:50:
+};
+static_assert(ARRAY_SIZE(xe_ras_components) == XE_RAS_COMP_MAX);
total: 0 errors, 1 warnings, 2 checks, 202 lines checked
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ CI.KUnit: success for Introduce Xe Correctable Error Handling (rev6)
2026-04-10 10:27 [PATCH v6 0/3] Introduce Xe Correctable Error Handling Raag Jadav
` (3 preceding siblings ...)
2026-04-10 12:19 ` ✗ CI.checkpatch: warning for Introduce Xe Correctable Error Handling (rev6) Patchwork
@ 2026-04-10 12:20 ` Patchwork
2026-04-10 13:06 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-10 20:19 ` ✗ Xe.CI.FULL: failure " Patchwork
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-04-10 12:20 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe
== Series Details ==
Series: Introduce Xe Correctable Error Handling (rev6)
URL : https://patchwork.freedesktop.org/series/160184/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[12:19:19] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:19: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
[12:19:55] Starting KUnit Kernel (1/1)...
[12:19:55] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:19:55] ================== guc_buf (11 subtests) ===================
[12:19:55] [PASSED] test_smallest
[12:19:55] [PASSED] test_largest
[12:19:55] [PASSED] test_granular
[12:19:55] [PASSED] test_unique
[12:19:55] [PASSED] test_overlap
[12:19:55] [PASSED] test_reusable
[12:19:55] [PASSED] test_too_big
[12:19:55] [PASSED] test_flush
[12:19:55] [PASSED] test_lookup
[12:19:55] [PASSED] test_data
[12:19:55] [PASSED] test_class
[12:19:55] ===================== [PASSED] guc_buf =====================
[12:19:55] =================== guc_dbm (7 subtests) ===================
[12:19:55] [PASSED] test_empty
[12:19:55] [PASSED] test_default
[12:19:55] ======================== test_size ========================
[12:19:55] [PASSED] 4
[12:19:55] [PASSED] 8
[12:19:55] [PASSED] 32
[12:19:55] [PASSED] 256
[12:19:55] ==================== [PASSED] test_size ====================
[12:19:55] ======================= test_reuse ========================
[12:19:55] [PASSED] 4
[12:19:55] [PASSED] 8
[12:19:55] [PASSED] 32
[12:19:55] [PASSED] 256
[12:19:55] =================== [PASSED] test_reuse ====================
[12:19:55] =================== test_range_overlap ====================
[12:19:55] [PASSED] 4
[12:19:55] [PASSED] 8
[12:19:55] [PASSED] 32
[12:19:55] [PASSED] 256
[12:19:55] =============== [PASSED] test_range_overlap ================
[12:19:55] =================== test_range_compact ====================
[12:19:55] [PASSED] 4
[12:19:55] [PASSED] 8
[12:19:55] [PASSED] 32
[12:19:55] [PASSED] 256
[12:19:55] =============== [PASSED] test_range_compact ================
[12:19:55] ==================== test_range_spare =====================
[12:19:55] [PASSED] 4
[12:19:55] [PASSED] 8
[12:19:55] [PASSED] 32
[12:19:55] [PASSED] 256
[12:19:55] ================ [PASSED] test_range_spare =================
[12:19:55] ===================== [PASSED] guc_dbm =====================
[12:19:55] =================== guc_idm (6 subtests) ===================
[12:19:55] [PASSED] bad_init
[12:19:55] [PASSED] no_init
[12:19:55] [PASSED] init_fini
[12:19:55] [PASSED] check_used
[12:19:55] [PASSED] check_quota
[12:19:55] [PASSED] check_all
[12:19:55] ===================== [PASSED] guc_idm =====================
[12:19:55] ================== no_relay (3 subtests) ===================
[12:19:55] [PASSED] xe_drops_guc2pf_if_not_ready
[12:19:55] [PASSED] xe_drops_guc2vf_if_not_ready
[12:19:55] [PASSED] xe_rejects_send_if_not_ready
[12:19:55] ==================== [PASSED] no_relay =====================
[12:19:55] ================== pf_relay (14 subtests) ==================
[12:19:55] [PASSED] pf_rejects_guc2pf_too_short
[12:19:55] [PASSED] pf_rejects_guc2pf_too_long
[12:19:55] [PASSED] pf_rejects_guc2pf_no_payload
[12:19:55] [PASSED] pf_fails_no_payload
[12:19:55] [PASSED] pf_fails_bad_origin
[12:19:55] [PASSED] pf_fails_bad_type
[12:19:55] [PASSED] pf_txn_reports_error
[12:19:55] [PASSED] pf_txn_sends_pf2guc
[12:19:55] [PASSED] pf_sends_pf2guc
[12:19:55] [SKIPPED] pf_loopback_nop
[12:19:55] [SKIPPED] pf_loopback_echo
[12:19:55] [SKIPPED] pf_loopback_fail
[12:19:55] [SKIPPED] pf_loopback_busy
[12:19:55] [SKIPPED] pf_loopback_retry
[12:19:55] ==================== [PASSED] pf_relay =====================
[12:19:55] ================== vf_relay (3 subtests) ===================
[12:19:55] [PASSED] vf_rejects_guc2vf_too_short
[12:19:55] [PASSED] vf_rejects_guc2vf_too_long
[12:19:55] [PASSED] vf_rejects_guc2vf_no_payload
[12:19:55] ==================== [PASSED] vf_relay =====================
[12:19:55] ================ pf_gt_config (9 subtests) =================
[12:19:55] [PASSED] fair_contexts_1vf
[12:19:55] [PASSED] fair_doorbells_1vf
[12:19:55] [PASSED] fair_ggtt_1vf
[12:19:55] ====================== fair_vram_1vf ======================
[12:19:55] [PASSED] 3.50 GiB
[12:19:55] [PASSED] 11.5 GiB
[12:19:55] [PASSED] 15.5 GiB
[12:19:55] [PASSED] 31.5 GiB
[12:19:55] [PASSED] 63.5 GiB
[12:19:55] [PASSED] 1.91 GiB
[12:19:55] ================== [PASSED] fair_vram_1vf ==================
[12:19:55] ================ fair_vram_1vf_admin_only =================
[12:19:55] [PASSED] 3.50 GiB
[12:19:55] [PASSED] 11.5 GiB
[12:19:55] [PASSED] 15.5 GiB
[12:19:55] [PASSED] 31.5 GiB
[12:19:55] [PASSED] 63.5 GiB
[12:19:55] [PASSED] 1.91 GiB
[12:19:55] ============ [PASSED] fair_vram_1vf_admin_only =============
[12:19:55] ====================== fair_contexts ======================
[12:19:55] [PASSED] 1 VF
[12:19:55] [PASSED] 2 VFs
[12:19:55] [PASSED] 3 VFs
[12:19:55] [PASSED] 4 VFs
[12:19:55] [PASSED] 5 VFs
[12:19:55] [PASSED] 6 VFs
[12:19:55] [PASSED] 7 VFs
[12:19:55] [PASSED] 8 VFs
[12:19:55] [PASSED] 9 VFs
[12:19:55] [PASSED] 10 VFs
[12:19:55] [PASSED] 11 VFs
[12:19:55] [PASSED] 12 VFs
[12:19:55] [PASSED] 13 VFs
[12:19:55] [PASSED] 14 VFs
[12:19:55] [PASSED] 15 VFs
[12:19:55] [PASSED] 16 VFs
[12:19:55] [PASSED] 17 VFs
[12:19:55] [PASSED] 18 VFs
[12:19:55] [PASSED] 19 VFs
[12:19:55] [PASSED] 20 VFs
[12:19:55] [PASSED] 21 VFs
[12:19:55] [PASSED] 22 VFs
[12:19:55] [PASSED] 23 VFs
[12:19:55] [PASSED] 24 VFs
[12:19:55] [PASSED] 25 VFs
[12:19:55] [PASSED] 26 VFs
[12:19:55] [PASSED] 27 VFs
[12:19:55] [PASSED] 28 VFs
[12:19:55] [PASSED] 29 VFs
[12:19:55] [PASSED] 30 VFs
[12:19:55] [PASSED] 31 VFs
[12:19:55] [PASSED] 32 VFs
[12:19:55] [PASSED] 33 VFs
[12:19:55] [PASSED] 34 VFs
[12:19:55] [PASSED] 35 VFs
[12:19:55] [PASSED] 36 VFs
[12:19:55] [PASSED] 37 VFs
[12:19:55] [PASSED] 38 VFs
[12:19:55] [PASSED] 39 VFs
[12:19:55] [PASSED] 40 VFs
[12:19:55] [PASSED] 41 VFs
[12:19:55] [PASSED] 42 VFs
[12:19:55] [PASSED] 43 VFs
[12:19:55] [PASSED] 44 VFs
[12:19:55] [PASSED] 45 VFs
[12:19:55] [PASSED] 46 VFs
[12:19:55] [PASSED] 47 VFs
[12:19:55] [PASSED] 48 VFs
[12:19:55] [PASSED] 49 VFs
[12:19:55] [PASSED] 50 VFs
[12:19:55] [PASSED] 51 VFs
[12:19:55] [PASSED] 52 VFs
[12:19:55] [PASSED] 53 VFs
[12:19:55] [PASSED] 54 VFs
[12:19:55] [PASSED] 55 VFs
[12:19:55] [PASSED] 56 VFs
[12:19:55] [PASSED] 57 VFs
[12:19:55] [PASSED] 58 VFs
[12:19:55] [PASSED] 59 VFs
[12:19:55] [PASSED] 60 VFs
[12:19:55] [PASSED] 61 VFs
[12:19:55] [PASSED] 62 VFs
[12:19:55] [PASSED] 63 VFs
[12:19:55] ================== [PASSED] fair_contexts ==================
[12:19:55] ===================== fair_doorbells ======================
[12:19:55] [PASSED] 1 VF
[12:19:55] [PASSED] 2 VFs
[12:19:55] [PASSED] 3 VFs
[12:19:55] [PASSED] 4 VFs
[12:19:55] [PASSED] 5 VFs
[12:19:55] [PASSED] 6 VFs
[12:19:55] [PASSED] 7 VFs
[12:19:55] [PASSED] 8 VFs
[12:19:55] [PASSED] 9 VFs
[12:19:55] [PASSED] 10 VFs
[12:19:55] [PASSED] 11 VFs
[12:19:55] [PASSED] 12 VFs
[12:19:55] [PASSED] 13 VFs
[12:19:55] [PASSED] 14 VFs
[12:19:55] [PASSED] 15 VFs
[12:19:55] [PASSED] 16 VFs
[12:19:55] [PASSED] 17 VFs
[12:19:55] [PASSED] 18 VFs
[12:19:55] [PASSED] 19 VFs
[12:19:55] [PASSED] 20 VFs
[12:19:55] [PASSED] 21 VFs
[12:19:55] [PASSED] 22 VFs
[12:19:55] [PASSED] 23 VFs
[12:19:55] [PASSED] 24 VFs
[12:19:55] [PASSED] 25 VFs
[12:19:55] [PASSED] 26 VFs
[12:19:55] [PASSED] 27 VFs
[12:19:55] [PASSED] 28 VFs
[12:19:55] [PASSED] 29 VFs
[12:19:55] [PASSED] 30 VFs
[12:19:55] [PASSED] 31 VFs
[12:19:55] [PASSED] 32 VFs
[12:19:55] [PASSED] 33 VFs
[12:19:55] [PASSED] 34 VFs
[12:19:55] [PASSED] 35 VFs
[12:19:55] [PASSED] 36 VFs
[12:19:55] [PASSED] 37 VFs
[12:19:55] [PASSED] 38 VFs
[12:19:55] [PASSED] 39 VFs
[12:19:55] [PASSED] 40 VFs
[12:19:55] [PASSED] 41 VFs
[12:19:55] [PASSED] 42 VFs
[12:19:55] [PASSED] 43 VFs
[12:19:55] [PASSED] 44 VFs
[12:19:55] [PASSED] 45 VFs
[12:19:55] [PASSED] 46 VFs
[12:19:55] [PASSED] 47 VFs
[12:19:55] [PASSED] 48 VFs
[12:19:55] [PASSED] 49 VFs
[12:19:55] [PASSED] 50 VFs
[12:19:55] [PASSED] 51 VFs
[12:19:55] [PASSED] 52 VFs
[12:19:55] [PASSED] 53 VFs
[12:19:55] [PASSED] 54 VFs
[12:19:55] [PASSED] 55 VFs
[12:19:55] [PASSED] 56 VFs
[12:19:55] [PASSED] 57 VFs
[12:19:55] [PASSED] 58 VFs
[12:19:55] [PASSED] 59 VFs
[12:19:55] [PASSED] 60 VFs
[12:19:55] [PASSED] 61 VFs
[12:19:55] [PASSED] 62 VFs
[12:19:55] [PASSED] 63 VFs
[12:19:55] ================= [PASSED] fair_doorbells ==================
[12:19:55] ======================== fair_ggtt ========================
[12:19:55] [PASSED] 1 VF
[12:19:55] [PASSED] 2 VFs
[12:19:55] [PASSED] 3 VFs
[12:19:55] [PASSED] 4 VFs
[12:19:55] [PASSED] 5 VFs
[12:19:55] [PASSED] 6 VFs
[12:19:55] [PASSED] 7 VFs
[12:19:55] [PASSED] 8 VFs
[12:19:55] [PASSED] 9 VFs
[12:19:55] [PASSED] 10 VFs
[12:19:55] [PASSED] 11 VFs
[12:19:55] [PASSED] 12 VFs
[12:19:55] [PASSED] 13 VFs
[12:19:55] [PASSED] 14 VFs
[12:19:55] [PASSED] 15 VFs
[12:19:55] [PASSED] 16 VFs
[12:19:55] [PASSED] 17 VFs
[12:19:55] [PASSED] 18 VFs
[12:19:55] [PASSED] 19 VFs
[12:19:55] [PASSED] 20 VFs
[12:19:55] [PASSED] 21 VFs
[12:19:55] [PASSED] 22 VFs
[12:19:55] [PASSED] 23 VFs
[12:19:55] [PASSED] 24 VFs
[12:19:55] [PASSED] 25 VFs
[12:19:55] [PASSED] 26 VFs
[12:19:55] [PASSED] 27 VFs
[12:19:55] [PASSED] 28 VFs
[12:19:55] [PASSED] 29 VFs
[12:19:55] [PASSED] 30 VFs
[12:19:55] [PASSED] 31 VFs
[12:19:55] [PASSED] 32 VFs
[12:19:55] [PASSED] 33 VFs
[12:19:55] [PASSED] 34 VFs
[12:19:55] [PASSED] 35 VFs
[12:19:55] [PASSED] 36 VFs
[12:19:55] [PASSED] 37 VFs
[12:19:55] [PASSED] 38 VFs
[12:19:55] [PASSED] 39 VFs
[12:19:55] [PASSED] 40 VFs
[12:19:55] [PASSED] 41 VFs
[12:19:55] [PASSED] 42 VFs
[12:19:55] [PASSED] 43 VFs
[12:19:55] [PASSED] 44 VFs
[12:19:55] [PASSED] 45 VFs
[12:19:55] [PASSED] 46 VFs
[12:19:55] [PASSED] 47 VFs
[12:19:55] [PASSED] 48 VFs
[12:19:55] [PASSED] 49 VFs
[12:19:55] [PASSED] 50 VFs
[12:19:55] [PASSED] 51 VFs
[12:19:55] [PASSED] 52 VFs
[12:19:55] [PASSED] 53 VFs
[12:19:55] [PASSED] 54 VFs
[12:19:55] [PASSED] 55 VFs
[12:19:55] [PASSED] 56 VFs
[12:19:55] [PASSED] 57 VFs
[12:19:55] [PASSED] 58 VFs
[12:19:55] [PASSED] 59 VFs
[12:19:55] [PASSED] 60 VFs
[12:19:55] [PASSED] 61 VFs
[12:19:55] [PASSED] 62 VFs
[12:19:55] [PASSED] 63 VFs
[12:19:55] ==================== [PASSED] fair_ggtt ====================
[12:19:55] ======================== fair_vram ========================
[12:19:55] [PASSED] 1 VF
[12:19:55] [PASSED] 2 VFs
[12:19:55] [PASSED] 3 VFs
[12:19:55] [PASSED] 4 VFs
[12:19:55] [PASSED] 5 VFs
[12:19:55] [PASSED] 6 VFs
[12:19:55] [PASSED] 7 VFs
[12:19:55] [PASSED] 8 VFs
[12:19:55] [PASSED] 9 VFs
[12:19:55] [PASSED] 10 VFs
[12:19:55] [PASSED] 11 VFs
[12:19:56] [PASSED] 12 VFs
[12:19:56] [PASSED] 13 VFs
[12:19:56] [PASSED] 14 VFs
[12:19:56] [PASSED] 15 VFs
[12:19:56] [PASSED] 16 VFs
[12:19:56] [PASSED] 17 VFs
[12:19:56] [PASSED] 18 VFs
[12:19:56] [PASSED] 19 VFs
[12:19:56] [PASSED] 20 VFs
[12:19:56] [PASSED] 21 VFs
[12:19:56] [PASSED] 22 VFs
[12:19:56] [PASSED] 23 VFs
[12:19:56] [PASSED] 24 VFs
[12:19:56] [PASSED] 25 VFs
[12:19:56] [PASSED] 26 VFs
[12:19:56] [PASSED] 27 VFs
[12:19:56] [PASSED] 28 VFs
[12:19:56] [PASSED] 29 VFs
[12:19:56] [PASSED] 30 VFs
[12:19:56] [PASSED] 31 VFs
[12:19:56] [PASSED] 32 VFs
[12:19:56] [PASSED] 33 VFs
[12:19:56] [PASSED] 34 VFs
[12:19:56] [PASSED] 35 VFs
[12:19:56] [PASSED] 36 VFs
[12:19:56] [PASSED] 37 VFs
[12:19:56] [PASSED] 38 VFs
[12:19:56] [PASSED] 39 VFs
[12:19:56] [PASSED] 40 VFs
[12:19:56] [PASSED] 41 VFs
[12:19:56] [PASSED] 42 VFs
[12:19:56] [PASSED] 43 VFs
[12:19:56] [PASSED] 44 VFs
[12:19:56] [PASSED] 45 VFs
[12:19:56] [PASSED] 46 VFs
[12:19:56] [PASSED] 47 VFs
[12:19:56] [PASSED] 48 VFs
[12:19:56] [PASSED] 49 VFs
[12:19:56] [PASSED] 50 VFs
[12:19:56] [PASSED] 51 VFs
[12:19:56] [PASSED] 52 VFs
[12:19:56] [PASSED] 53 VFs
[12:19:56] [PASSED] 54 VFs
[12:19:56] [PASSED] 55 VFs
[12:19:56] [PASSED] 56 VFs
[12:19:56] [PASSED] 57 VFs
[12:19:56] [PASSED] 58 VFs
[12:19:56] [PASSED] 59 VFs
[12:19:56] [PASSED] 60 VFs
[12:19:56] [PASSED] 61 VFs
[12:19:56] [PASSED] 62 VFs
[12:19:56] [PASSED] 63 VFs
[12:19:56] ==================== [PASSED] fair_vram ====================
[12:19:56] ================== [PASSED] pf_gt_config ===================
[12:19:56] ===================== lmtt (1 subtest) =====================
[12:19:56] ======================== test_ops =========================
[12:19:56] [PASSED] 2-level
[12:19:56] [PASSED] multi-level
[12:19:56] ==================== [PASSED] test_ops =====================
[12:19:56] ====================== [PASSED] lmtt =======================
[12:19:56] ================= pf_service (11 subtests) =================
[12:19:56] [PASSED] pf_negotiate_any
[12:19:56] [PASSED] pf_negotiate_base_match
[12:19:56] [PASSED] pf_negotiate_base_newer
[12:19:56] [PASSED] pf_negotiate_base_next
[12:19:56] [SKIPPED] pf_negotiate_base_older
[12:19:56] [PASSED] pf_negotiate_base_prev
[12:19:56] [PASSED] pf_negotiate_latest_match
[12:19:56] [PASSED] pf_negotiate_latest_newer
[12:19:56] [PASSED] pf_negotiate_latest_next
[12:19:56] [SKIPPED] pf_negotiate_latest_older
[12:19:56] [SKIPPED] pf_negotiate_latest_prev
[12:19:56] =================== [PASSED] pf_service ====================
[12:19:56] ================= xe_guc_g2g (2 subtests) ==================
[12:19:56] ============== xe_live_guc_g2g_kunit_default ==============
[12:19:56] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[12:19:56] ============== xe_live_guc_g2g_kunit_allmem ===============
[12:19:56] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[12:19:56] =================== [SKIPPED] xe_guc_g2g ===================
[12:19:56] =================== xe_mocs (2 subtests) ===================
[12:19:56] ================ xe_live_mocs_kernel_kunit ================
[12:19:56] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[12:19:56] ================ xe_live_mocs_reset_kunit =================
[12:19:56] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[12:19:56] ==================== [SKIPPED] xe_mocs =====================
[12:19:56] ================= xe_migrate (2 subtests) ==================
[12:19:56] ================= xe_migrate_sanity_kunit =================
[12:19:56] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[12:19:56] ================== xe_validate_ccs_kunit ==================
[12:19:56] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[12:19:56] =================== [SKIPPED] xe_migrate ===================
[12:19:56] ================== xe_dma_buf (1 subtest) ==================
[12:19:56] ==================== xe_dma_buf_kunit =====================
[12:19:56] ================ [SKIPPED] xe_dma_buf_kunit ================
[12:19:56] =================== [SKIPPED] xe_dma_buf ===================
[12:19:56] ================= xe_bo_shrink (1 subtest) =================
[12:19:56] =================== xe_bo_shrink_kunit ====================
[12:19:56] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[12:19:56] ================== [SKIPPED] xe_bo_shrink ==================
[12:19:56] ==================== xe_bo (2 subtests) ====================
[12:19:56] ================== xe_ccs_migrate_kunit ===================
[12:19:56] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[12:19:56] ==================== xe_bo_evict_kunit ====================
[12:19:56] =============== [SKIPPED] xe_bo_evict_kunit ================
[12:19:56] ===================== [SKIPPED] xe_bo ======================
[12:19:56] ==================== args (13 subtests) ====================
[12:19:56] [PASSED] count_args_test
[12:19:56] [PASSED] call_args_example
[12:19:56] [PASSED] call_args_test
[12:19:56] [PASSED] drop_first_arg_example
[12:19:56] [PASSED] drop_first_arg_test
[12:19:56] [PASSED] first_arg_example
[12:19:56] [PASSED] first_arg_test
[12:19:56] [PASSED] last_arg_example
[12:19:56] [PASSED] last_arg_test
[12:19:56] [PASSED] pick_arg_example
[12:19:56] [PASSED] if_args_example
[12:19:56] [PASSED] if_args_test
[12:19:56] [PASSED] sep_comma_example
[12:19:56] ====================== [PASSED] args =======================
[12:19:56] =================== xe_pci (3 subtests) ====================
[12:19:56] ==================== check_graphics_ip ====================
[12:19:56] [PASSED] 12.00 Xe_LP
[12:19:56] [PASSED] 12.10 Xe_LP+
[12:19:56] [PASSED] 12.55 Xe_HPG
[12:19:56] [PASSED] 12.60 Xe_HPC
[12:19:56] [PASSED] 12.70 Xe_LPG
[12:19:56] [PASSED] 12.71 Xe_LPG
[12:19:56] [PASSED] 12.74 Xe_LPG+
[12:19:56] [PASSED] 20.01 Xe2_HPG
[12:19:56] [PASSED] 20.02 Xe2_HPG
[12:19:56] [PASSED] 20.04 Xe2_LPG
[12:19:56] [PASSED] 30.00 Xe3_LPG
[12:19:56] [PASSED] 30.01 Xe3_LPG
[12:19:56] [PASSED] 30.03 Xe3_LPG
[12:19:56] [PASSED] 30.04 Xe3_LPG
[12:19:56] [PASSED] 30.05 Xe3_LPG
[12:19:56] [PASSED] 35.10 Xe3p_LPG
[12:19:56] [PASSED] 35.11 Xe3p_XPC
[12:19:56] ================ [PASSED] check_graphics_ip ================
[12:19:56] ===================== check_media_ip ======================
[12:19:56] [PASSED] 12.00 Xe_M
[12:19:56] [PASSED] 12.55 Xe_HPM
[12:19:56] [PASSED] 13.00 Xe_LPM+
[12:19:56] [PASSED] 13.01 Xe2_HPM
[12:19:56] [PASSED] 20.00 Xe2_LPM
[12:19:56] [PASSED] 30.00 Xe3_LPM
[12:19:56] [PASSED] 30.02 Xe3_LPM
[12:19:56] [PASSED] 35.00 Xe3p_LPM
[12:19:56] [PASSED] 35.03 Xe3p_HPM
[12:19:56] ================= [PASSED] check_media_ip ==================
[12:19:56] =================== check_platform_desc ===================
[12:19:56] [PASSED] 0x9A60 (TIGERLAKE)
[12:19:56] [PASSED] 0x9A68 (TIGERLAKE)
[12:19:56] [PASSED] 0x9A70 (TIGERLAKE)
[12:19:56] [PASSED] 0x9A40 (TIGERLAKE)
[12:19:56] [PASSED] 0x9A49 (TIGERLAKE)
[12:19:56] [PASSED] 0x9A59 (TIGERLAKE)
[12:19:56] [PASSED] 0x9A78 (TIGERLAKE)
[12:19:56] [PASSED] 0x9AC0 (TIGERLAKE)
[12:19:56] [PASSED] 0x9AC9 (TIGERLAKE)
[12:19:56] [PASSED] 0x9AD9 (TIGERLAKE)
[12:19:56] [PASSED] 0x9AF8 (TIGERLAKE)
[12:19:56] [PASSED] 0x4C80 (ROCKETLAKE)
[12:19:56] [PASSED] 0x4C8A (ROCKETLAKE)
[12:19:56] [PASSED] 0x4C8B (ROCKETLAKE)
[12:19:56] [PASSED] 0x4C8C (ROCKETLAKE)
[12:19:56] [PASSED] 0x4C90 (ROCKETLAKE)
[12:19:56] [PASSED] 0x4C9A (ROCKETLAKE)
[12:19:56] [PASSED] 0x4680 (ALDERLAKE_S)
[12:19:56] [PASSED] 0x4682 (ALDERLAKE_S)
[12:19:56] [PASSED] 0x4688 (ALDERLAKE_S)
[12:19:56] [PASSED] 0x468A (ALDERLAKE_S)
[12:19:56] [PASSED] 0x468B (ALDERLAKE_S)
[12:19:56] [PASSED] 0x4690 (ALDERLAKE_S)
[12:19:56] [PASSED] 0x4692 (ALDERLAKE_S)
[12:19:56] [PASSED] 0x4693 (ALDERLAKE_S)
[12:19:56] [PASSED] 0x46A0 (ALDERLAKE_P)
[12:19:56] [PASSED] 0x46A1 (ALDERLAKE_P)
[12:19:56] [PASSED] 0x46A2 (ALDERLAKE_P)
[12:19:56] [PASSED] 0x46A3 (ALDERLAKE_P)
[12:19:56] [PASSED] 0x46A6 (ALDERLAKE_P)
[12:19:56] [PASSED] 0x46A8 (ALDERLAKE_P)
[12:19:56] [PASSED] 0x46AA (ALDERLAKE_P)
[12:19:56] [PASSED] 0x462A (ALDERLAKE_P)
[12:19:56] [PASSED] 0x4626 (ALDERLAKE_P)
[12:19:56] [PASSED] 0x4628 (ALDERLAKE_P)
[12:19:56] [PASSED] 0x46B0 (ALDERLAKE_P)
[12:19:56] [PASSED] 0x46B1 (ALDERLAKE_P)
[12:19:56] [PASSED] 0x46B2 (ALDERLAKE_P)
[12:19:56] [PASSED] 0x46B3 (ALDERLAKE_P)
[12:19:56] [PASSED] 0x46C0 (ALDERLAKE_P)
[12:19:56] [PASSED] 0x46C1 (ALDERLAKE_P)
[12:19:56] [PASSED] 0x46C2 (ALDERLAKE_P)
[12:19:56] [PASSED] 0x46C3 (ALDERLAKE_P)
[12:19:56] [PASSED] 0x46D0 (ALDERLAKE_N)
[12:19:56] [PASSED] 0x46D1 (ALDERLAKE_N)
[12:19:56] [PASSED] 0x46D2 (ALDERLAKE_N)
[12:19:56] [PASSED] 0x46D3 (ALDERLAKE_N)
[12:19:56] [PASSED] 0x46D4 (ALDERLAKE_N)
[12:19:56] [PASSED] 0xA721 (ALDERLAKE_P)
[12:19:56] [PASSED] 0xA7A1 (ALDERLAKE_P)
[12:19:56] [PASSED] 0xA7A9 (ALDERLAKE_P)
[12:19:56] [PASSED] 0xA7AC (ALDERLAKE_P)
[12:19:56] [PASSED] 0xA7AD (ALDERLAKE_P)
[12:19:56] [PASSED] 0xA720 (ALDERLAKE_P)
[12:19:56] [PASSED] 0xA7A0 (ALDERLAKE_P)
[12:19:56] [PASSED] 0xA7A8 (ALDERLAKE_P)
[12:19:56] [PASSED] 0xA7AA (ALDERLAKE_P)
[12:19:56] [PASSED] 0xA7AB (ALDERLAKE_P)
[12:19:56] [PASSED] 0xA780 (ALDERLAKE_S)
[12:19:56] [PASSED] 0xA781 (ALDERLAKE_S)
[12:19:56] [PASSED] 0xA782 (ALDERLAKE_S)
[12:19:56] [PASSED] 0xA783 (ALDERLAKE_S)
[12:19:56] [PASSED] 0xA788 (ALDERLAKE_S)
[12:19:56] [PASSED] 0xA789 (ALDERLAKE_S)
[12:19:56] [PASSED] 0xA78A (ALDERLAKE_S)
[12:19:56] [PASSED] 0xA78B (ALDERLAKE_S)
[12:19:56] [PASSED] 0x4905 (DG1)
[12:19:56] [PASSED] 0x4906 (DG1)
[12:19:56] [PASSED] 0x4907 (DG1)
[12:19:56] [PASSED] 0x4908 (DG1)
[12:19:56] [PASSED] 0x4909 (DG1)
[12:19:56] [PASSED] 0x56C0 (DG2)
[12:19:56] [PASSED] 0x56C2 (DG2)
[12:19:56] [PASSED] 0x56C1 (DG2)
[12:19:56] [PASSED] 0x7D51 (METEORLAKE)
[12:19:56] [PASSED] 0x7DD1 (METEORLAKE)
[12:19:56] [PASSED] 0x7D41 (METEORLAKE)
[12:19:56] [PASSED] 0x7D67 (METEORLAKE)
[12:19:56] [PASSED] 0xB640 (METEORLAKE)
[12:19:56] [PASSED] 0x56A0 (DG2)
[12:19:56] [PASSED] 0x56A1 (DG2)
[12:19:56] [PASSED] 0x56A2 (DG2)
[12:19:56] [PASSED] 0x56BE (DG2)
[12:19:56] [PASSED] 0x56BF (DG2)
[12:19:56] [PASSED] 0x5690 (DG2)
[12:19:56] [PASSED] 0x5691 (DG2)
[12:19:56] [PASSED] 0x5692 (DG2)
[12:19:56] [PASSED] 0x56A5 (DG2)
[12:19:56] [PASSED] 0x56A6 (DG2)
[12:19:56] [PASSED] 0x56B0 (DG2)
[12:19:56] [PASSED] 0x56B1 (DG2)
[12:19:56] [PASSED] 0x56BA (DG2)
[12:19:56] [PASSED] 0x56BB (DG2)
[12:19:56] [PASSED] 0x56BC (DG2)
[12:19:56] [PASSED] 0x56BD (DG2)
[12:19:56] [PASSED] 0x5693 (DG2)
[12:19:56] [PASSED] 0x5694 (DG2)
[12:19:56] [PASSED] 0x5695 (DG2)
[12:19:56] [PASSED] 0x56A3 (DG2)
[12:19:56] [PASSED] 0x56A4 (DG2)
[12:19:56] [PASSED] 0x56B2 (DG2)
[12:19:56] [PASSED] 0x56B3 (DG2)
[12:19:56] [PASSED] 0x5696 (DG2)
[12:19:56] [PASSED] 0x5697 (DG2)
[12:19:56] [PASSED] 0xB69 (PVC)
[12:19:56] [PASSED] 0xB6E (PVC)
[12:19:56] [PASSED] 0xBD4 (PVC)
[12:19:56] [PASSED] 0xBD5 (PVC)
[12:19:56] [PASSED] 0xBD6 (PVC)
[12:19:56] [PASSED] 0xBD7 (PVC)
[12:19:56] [PASSED] 0xBD8 (PVC)
[12:19:56] [PASSED] 0xBD9 (PVC)
[12:19:56] [PASSED] 0xBDA (PVC)
[12:19:56] [PASSED] 0xBDB (PVC)
[12:19:56] [PASSED] 0xBE0 (PVC)
[12:19:56] [PASSED] 0xBE1 (PVC)
[12:19:56] [PASSED] 0xBE5 (PVC)
[12:19:56] [PASSED] 0x7D40 (METEORLAKE)
[12:19:56] [PASSED] 0x7D45 (METEORLAKE)
[12:19:56] [PASSED] 0x7D55 (METEORLAKE)
[12:19:56] [PASSED] 0x7D60 (METEORLAKE)
[12:19:56] [PASSED] 0x7DD5 (METEORLAKE)
[12:19:56] [PASSED] 0x6420 (LUNARLAKE)
[12:19:56] [PASSED] 0x64A0 (LUNARLAKE)
[12:19:56] [PASSED] 0x64B0 (LUNARLAKE)
[12:19:56] [PASSED] 0xE202 (BATTLEMAGE)
[12:19:56] [PASSED] 0xE209 (BATTLEMAGE)
[12:19:56] [PASSED] 0xE20B (BATTLEMAGE)
[12:19:56] [PASSED] 0xE20C (BATTLEMAGE)
[12:19:56] [PASSED] 0xE20D (BATTLEMAGE)
[12:19:56] [PASSED] 0xE210 (BATTLEMAGE)
[12:19:56] [PASSED] 0xE211 (BATTLEMAGE)
[12:19:56] [PASSED] 0xE212 (BATTLEMAGE)
[12:19:56] [PASSED] 0xE216 (BATTLEMAGE)
[12:19:56] [PASSED] 0xE220 (BATTLEMAGE)
[12:19:56] [PASSED] 0xE221 (BATTLEMAGE)
[12:19:56] [PASSED] 0xE222 (BATTLEMAGE)
[12:19:56] [PASSED] 0xE223 (BATTLEMAGE)
[12:19:56] [PASSED] 0xB080 (PANTHERLAKE)
[12:19:56] [PASSED] 0xB081 (PANTHERLAKE)
[12:19:56] [PASSED] 0xB082 (PANTHERLAKE)
[12:19:56] [PASSED] 0xB083 (PANTHERLAKE)
[12:19:56] [PASSED] 0xB084 (PANTHERLAKE)
[12:19:56] [PASSED] 0xB085 (PANTHERLAKE)
[12:19:56] [PASSED] 0xB086 (PANTHERLAKE)
[12:19:56] [PASSED] 0xB087 (PANTHERLAKE)
[12:19:56] [PASSED] 0xB08F (PANTHERLAKE)
[12:19:56] [PASSED] 0xB090 (PANTHERLAKE)
[12:19:56] [PASSED] 0xB0A0 (PANTHERLAKE)
[12:19:56] [PASSED] 0xB0B0 (PANTHERLAKE)
[12:19:56] [PASSED] 0xFD80 (PANTHERLAKE)
[12:19:56] [PASSED] 0xFD81 (PANTHERLAKE)
[12:19:56] [PASSED] 0xD740 (NOVALAKE_S)
[12:19:56] [PASSED] 0xD741 (NOVALAKE_S)
[12:19:56] [PASSED] 0xD742 (NOVALAKE_S)
[12:19:56] [PASSED] 0xD743 (NOVALAKE_S)
[12:19:56] [PASSED] 0xD744 (NOVALAKE_S)
[12:19:56] [PASSED] 0xD745 (NOVALAKE_S)
[12:19:56] [PASSED] 0x674C (CRESCENTISLAND)
[12:19:56] [PASSED] 0xD750 (NOVALAKE_P)
[12:19:56] [PASSED] 0xD751 (NOVALAKE_P)
[12:19:56] [PASSED] 0xD752 (NOVALAKE_P)
[12:19:56] [PASSED] 0xD753 (NOVALAKE_P)
[12:19:56] [PASSED] 0xD754 (NOVALAKE_P)
[12:19:56] [PASSED] 0xD755 (NOVALAKE_P)
[12:19:56] [PASSED] 0xD756 (NOVALAKE_P)
[12:19:56] [PASSED] 0xD757 (NOVALAKE_P)
[12:19:56] [PASSED] 0xD75F (NOVALAKE_P)
[12:19:56] =============== [PASSED] check_platform_desc ===============
[12:19:56] ===================== [PASSED] xe_pci ======================
[12:19:56] =================== xe_rtp (2 subtests) ====================
[12:19:56] =============== xe_rtp_process_to_sr_tests ================
[12:19:56] [PASSED] coalesce-same-reg
[12:19:56] [PASSED] no-match-no-add
[12:19:56] [PASSED] match-or
[12:19:56] [PASSED] match-or-xfail
[12:19:56] [PASSED] no-match-no-add-multiple-rules
[12:19:56] [PASSED] two-regs-two-entries
[12:19:56] [PASSED] clr-one-set-other
[12:19:56] [PASSED] set-field
[12:19:56] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[12:19:56] [PASSED] conflict-not-disjoint
[12:19:56] [PASSED] conflict-reg-type
[12:19:56] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[12:19:56] ================== xe_rtp_process_tests ===================
[12:19:56] [PASSED] active1
[12:19:56] [PASSED] active2
[12:19:56] [PASSED] active-inactive
[12:19:56] [PASSED] inactive-active
[12:19:56] [PASSED] inactive-1st_or_active-inactive
[12:19:56] [PASSED] inactive-2nd_or_active-inactive
[12:19:56] [PASSED] inactive-last_or_active-inactive
[12:19:56] [PASSED] inactive-no_or_active-inactive
[12:19:56] ============== [PASSED] xe_rtp_process_tests ===============
[12:19:56] ===================== [PASSED] xe_rtp ======================
[12:19:56] ==================== xe_wa (1 subtest) =====================
[12:19:56] ======================== xe_wa_gt =========================
[12:19:56] [PASSED] TIGERLAKE B0
[12:19:56] [PASSED] DG1 A0
[12:19:56] [PASSED] DG1 B0
[12:19:56] [PASSED] ALDERLAKE_S A0
[12:19:56] [PASSED] ALDERLAKE_S B0
[12:19:56] [PASSED] ALDERLAKE_S C0
[12:19:56] [PASSED] ALDERLAKE_S D0
[12:19:56] [PASSED] ALDERLAKE_P A0
[12:19:56] [PASSED] ALDERLAKE_P B0
[12:19:56] [PASSED] ALDERLAKE_P C0
[12:19:56] [PASSED] ALDERLAKE_S RPLS D0
[12:19:56] [PASSED] ALDERLAKE_P RPLU E0
[12:19:56] [PASSED] DG2 G10 C0
[12:19:56] [PASSED] DG2 G11 B1
[12:19:56] [PASSED] DG2 G12 A1
[12:19:56] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:19:56] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:19:56] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[12:19:56] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[12:19:56] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[12:19:56] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[12:19:56] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[12:19:56] ==================== [PASSED] xe_wa_gt =====================
[12:19:56] ====================== [PASSED] xe_wa ======================
[12:19:56] ============================================================
[12:19:56] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[12:19:56] Elapsed time: 36.345s total, 4.315s configuring, 31.412s building, 0.602s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[12:19:56] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:19:57] 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
[12:20:22] Starting KUnit Kernel (1/1)...
[12:20:22] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:20:22] ============ drm_test_pick_cmdline (2 subtests) ============
[12:20:22] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[12:20:22] =============== drm_test_pick_cmdline_named ===============
[12:20:22] [PASSED] NTSC
[12:20:22] [PASSED] NTSC-J
[12:20:22] [PASSED] PAL
[12:20:22] [PASSED] PAL-M
[12:20:22] =========== [PASSED] drm_test_pick_cmdline_named ===========
[12:20:22] ============== [PASSED] drm_test_pick_cmdline ==============
[12:20:22] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[12:20:22] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[12:20:22] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[12:20:22] =========== drm_validate_clone_mode (2 subtests) ===========
[12:20:22] ============== drm_test_check_in_clone_mode ===============
[12:20:22] [PASSED] in_clone_mode
[12:20:22] [PASSED] not_in_clone_mode
[12:20:22] ========== [PASSED] drm_test_check_in_clone_mode ===========
[12:20:22] =============== drm_test_check_valid_clones ===============
[12:20:22] [PASSED] not_in_clone_mode
[12:20:22] [PASSED] valid_clone
[12:20:22] [PASSED] invalid_clone
[12:20:22] =========== [PASSED] drm_test_check_valid_clones ===========
[12:20:22] ============= [PASSED] drm_validate_clone_mode =============
[12:20:22] ============= drm_validate_modeset (1 subtest) =============
[12:20:22] [PASSED] drm_test_check_connector_changed_modeset
[12:20:22] ============== [PASSED] drm_validate_modeset ===============
[12:20:22] ====== drm_test_bridge_get_current_state (2 subtests) ======
[12:20:22] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[12:20:22] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[12:20:22] ======== [PASSED] drm_test_bridge_get_current_state ========
[12:20:22] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[12:20:22] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[12:20:22] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[12:20:22] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[12:20:22] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[12:20:22] ============== drm_bridge_alloc (2 subtests) ===============
[12:20:22] [PASSED] drm_test_drm_bridge_alloc_basic
[12:20:22] [PASSED] drm_test_drm_bridge_alloc_get_put
[12:20:22] ================ [PASSED] drm_bridge_alloc =================
[12:20:22] ============= drm_cmdline_parser (40 subtests) =============
[12:20:22] [PASSED] drm_test_cmdline_force_d_only
[12:20:22] [PASSED] drm_test_cmdline_force_D_only_dvi
[12:20:22] [PASSED] drm_test_cmdline_force_D_only_hdmi
[12:20:22] [PASSED] drm_test_cmdline_force_D_only_not_digital
[12:20:22] [PASSED] drm_test_cmdline_force_e_only
[12:20:22] [PASSED] drm_test_cmdline_res
[12:20:22] [PASSED] drm_test_cmdline_res_vesa
[12:20:22] [PASSED] drm_test_cmdline_res_vesa_rblank
[12:20:22] [PASSED] drm_test_cmdline_res_rblank
[12:20:22] [PASSED] drm_test_cmdline_res_bpp
[12:20:22] [PASSED] drm_test_cmdline_res_refresh
[12:20:22] [PASSED] drm_test_cmdline_res_bpp_refresh
[12:20:22] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[12:20:22] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[12:20:22] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[12:20:22] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[12:20:22] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[12:20:22] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[12:20:22] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[12:20:22] [PASSED] drm_test_cmdline_res_margins_force_on
[12:20:22] [PASSED] drm_test_cmdline_res_vesa_margins
[12:20:22] [PASSED] drm_test_cmdline_name
[12:20:22] [PASSED] drm_test_cmdline_name_bpp
[12:20:22] [PASSED] drm_test_cmdline_name_option
[12:20:22] [PASSED] drm_test_cmdline_name_bpp_option
[12:20:22] [PASSED] drm_test_cmdline_rotate_0
[12:20:22] [PASSED] drm_test_cmdline_rotate_90
[12:20:22] [PASSED] drm_test_cmdline_rotate_180
[12:20:22] [PASSED] drm_test_cmdline_rotate_270
[12:20:22] [PASSED] drm_test_cmdline_hmirror
[12:20:22] [PASSED] drm_test_cmdline_vmirror
[12:20:22] [PASSED] drm_test_cmdline_margin_options
[12:20:22] [PASSED] drm_test_cmdline_multiple_options
[12:20:22] [PASSED] drm_test_cmdline_bpp_extra_and_option
[12:20:22] [PASSED] drm_test_cmdline_extra_and_option
[12:20:22] [PASSED] drm_test_cmdline_freestanding_options
[12:20:22] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[12:20:22] [PASSED] drm_test_cmdline_panel_orientation
[12:20:22] ================ drm_test_cmdline_invalid =================
[12:20:22] [PASSED] margin_only
[12:20:22] [PASSED] interlace_only
[12:20:22] [PASSED] res_missing_x
[12:20:22] [PASSED] res_missing_y
[12:20:22] [PASSED] res_bad_y
[12:20:22] [PASSED] res_missing_y_bpp
[12:20:22] [PASSED] res_bad_bpp
[12:20:22] [PASSED] res_bad_refresh
[12:20:22] [PASSED] res_bpp_refresh_force_on_off
[12:20:22] [PASSED] res_invalid_mode
[12:20:22] [PASSED] res_bpp_wrong_place_mode
[12:20:22] [PASSED] name_bpp_refresh
[12:20:22] [PASSED] name_refresh
[12:20:22] [PASSED] name_refresh_wrong_mode
[12:20:22] [PASSED] name_refresh_invalid_mode
[12:20:22] [PASSED] rotate_multiple
[12:20:22] [PASSED] rotate_invalid_val
[12:20:22] [PASSED] rotate_truncated
[12:20:22] [PASSED] invalid_option
[12:20:22] [PASSED] invalid_tv_option
[12:20:22] [PASSED] truncated_tv_option
[12:20:22] ============ [PASSED] drm_test_cmdline_invalid =============
[12:20:22] =============== drm_test_cmdline_tv_options ===============
[12:20:22] [PASSED] NTSC
[12:20:22] [PASSED] NTSC_443
[12:20:22] [PASSED] NTSC_J
[12:20:22] [PASSED] PAL
[12:20:22] [PASSED] PAL_M
[12:20:22] [PASSED] PAL_N
[12:20:22] [PASSED] SECAM
[12:20:22] [PASSED] MONO_525
[12:20:22] [PASSED] MONO_625
[12:20:22] =========== [PASSED] drm_test_cmdline_tv_options ===========
[12:20:22] =============== [PASSED] drm_cmdline_parser ================
[12:20:22] ========== drmm_connector_hdmi_init (20 subtests) ==========
[12:20:22] [PASSED] drm_test_connector_hdmi_init_valid
[12:20:22] [PASSED] drm_test_connector_hdmi_init_bpc_8
[12:20:22] [PASSED] drm_test_connector_hdmi_init_bpc_10
[12:20:22] [PASSED] drm_test_connector_hdmi_init_bpc_12
[12:20:22] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[12:20:22] [PASSED] drm_test_connector_hdmi_init_bpc_null
[12:20:22] [PASSED] drm_test_connector_hdmi_init_formats_empty
[12:20:22] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[12:20:22] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[12:20:22] [PASSED] supported_formats=0x9 yuv420_allowed=1
[12:20:22] [PASSED] supported_formats=0x9 yuv420_allowed=0
[12:20:22] [PASSED] supported_formats=0x5 yuv420_allowed=1
[12:20:22] [PASSED] supported_formats=0x5 yuv420_allowed=0
[12:20:22] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[12:20:22] [PASSED] drm_test_connector_hdmi_init_null_ddc
[12:20:22] [PASSED] drm_test_connector_hdmi_init_null_product
[12:20:22] [PASSED] drm_test_connector_hdmi_init_null_vendor
[12:20:22] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[12:20:22] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[12:20:22] [PASSED] drm_test_connector_hdmi_init_product_valid
[12:20:22] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[12:20:22] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[12:20:22] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[12:20:22] ========= drm_test_connector_hdmi_init_type_valid =========
[12:20:22] [PASSED] HDMI-A
[12:20:22] [PASSED] HDMI-B
[12:20:22] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[12:20:22] ======== drm_test_connector_hdmi_init_type_invalid ========
[12:20:22] [PASSED] Unknown
[12:20:22] [PASSED] VGA
[12:20:22] [PASSED] DVI-I
[12:20:22] [PASSED] DVI-D
[12:20:22] [PASSED] DVI-A
[12:20:22] [PASSED] Composite
[12:20:22] [PASSED] SVIDEO
[12:20:22] [PASSED] LVDS
[12:20:22] [PASSED] Component
[12:20:22] [PASSED] DIN
[12:20:22] [PASSED] DP
[12:20:22] [PASSED] TV
[12:20:22] [PASSED] eDP
[12:20:22] [PASSED] Virtual
[12:20:22] [PASSED] DSI
[12:20:22] [PASSED] DPI
[12:20:22] [PASSED] Writeback
[12:20:22] [PASSED] SPI
[12:20:22] [PASSED] USB
[12:20:22] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[12:20:22] ============ [PASSED] drmm_connector_hdmi_init =============
[12:20:22] ============= drmm_connector_init (3 subtests) =============
[12:20:22] [PASSED] drm_test_drmm_connector_init
[12:20:22] [PASSED] drm_test_drmm_connector_init_null_ddc
[12:20:22] ========= drm_test_drmm_connector_init_type_valid =========
[12:20:22] [PASSED] Unknown
[12:20:22] [PASSED] VGA
[12:20:22] [PASSED] DVI-I
[12:20:22] [PASSED] DVI-D
[12:20:22] [PASSED] DVI-A
[12:20:22] [PASSED] Composite
[12:20:22] [PASSED] SVIDEO
[12:20:22] [PASSED] LVDS
[12:20:22] [PASSED] Component
[12:20:22] [PASSED] DIN
[12:20:22] [PASSED] DP
[12:20:22] [PASSED] HDMI-A
[12:20:22] [PASSED] HDMI-B
[12:20:22] [PASSED] TV
[12:20:22] [PASSED] eDP
[12:20:22] [PASSED] Virtual
[12:20:22] [PASSED] DSI
[12:20:22] [PASSED] DPI
[12:20:22] [PASSED] Writeback
[12:20:22] [PASSED] SPI
[12:20:22] [PASSED] USB
[12:20:22] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[12:20:22] =============== [PASSED] drmm_connector_init ===============
[12:20:22] ========= drm_connector_dynamic_init (6 subtests) ==========
[12:20:22] [PASSED] drm_test_drm_connector_dynamic_init
[12:20:22] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[12:20:22] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[12:20:22] [PASSED] drm_test_drm_connector_dynamic_init_properties
[12:20:22] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[12:20:22] [PASSED] Unknown
[12:20:22] [PASSED] VGA
[12:20:22] [PASSED] DVI-I
[12:20:22] [PASSED] DVI-D
[12:20:22] [PASSED] DVI-A
[12:20:22] [PASSED] Composite
[12:20:22] [PASSED] SVIDEO
[12:20:22] [PASSED] LVDS
[12:20:22] [PASSED] Component
[12:20:22] [PASSED] DIN
[12:20:22] [PASSED] DP
[12:20:22] [PASSED] HDMI-A
[12:20:22] [PASSED] HDMI-B
[12:20:22] [PASSED] TV
[12:20:22] [PASSED] eDP
[12:20:22] [PASSED] Virtual
[12:20:22] [PASSED] DSI
[12:20:22] [PASSED] DPI
[12:20:22] [PASSED] Writeback
[12:20:22] [PASSED] SPI
[12:20:22] [PASSED] USB
[12:20:22] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[12:20:22] ======== drm_test_drm_connector_dynamic_init_name =========
[12:20:22] [PASSED] Unknown
[12:20:22] [PASSED] VGA
[12:20:22] [PASSED] DVI-I
[12:20:22] [PASSED] DVI-D
[12:20:22] [PASSED] DVI-A
[12:20:22] [PASSED] Composite
[12:20:22] [PASSED] SVIDEO
[12:20:22] [PASSED] LVDS
[12:20:22] [PASSED] Component
[12:20:22] [PASSED] DIN
[12:20:22] [PASSED] DP
[12:20:22] [PASSED] HDMI-A
[12:20:22] [PASSED] HDMI-B
[12:20:22] [PASSED] TV
[12:20:22] [PASSED] eDP
[12:20:22] [PASSED] Virtual
[12:20:22] [PASSED] DSI
[12:20:22] [PASSED] DPI
[12:20:22] [PASSED] Writeback
[12:20:22] [PASSED] SPI
[12:20:22] [PASSED] USB
[12:20:22] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[12:20:22] =========== [PASSED] drm_connector_dynamic_init ============
[12:20:22] ==== drm_connector_dynamic_register_early (4 subtests) =====
[12:20:22] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[12:20:22] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[12:20:22] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[12:20:22] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[12:20:22] ====== [PASSED] drm_connector_dynamic_register_early =======
[12:20:22] ======= drm_connector_dynamic_register (7 subtests) ========
[12:20:22] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[12:20:22] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[12:20:22] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[12:20:22] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[12:20:22] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[12:20:22] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[12:20:22] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[12:20:22] ========= [PASSED] drm_connector_dynamic_register ==========
[12:20:22] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[12:20:22] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[12:20:22] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[12:20:22] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[12:20:22] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[12:20:22] ========== drm_test_get_tv_mode_from_name_valid ===========
[12:20:22] [PASSED] NTSC
[12:20:22] [PASSED] NTSC-443
[12:20:22] [PASSED] NTSC-J
[12:20:22] [PASSED] PAL
[12:20:22] [PASSED] PAL-M
[12:20:22] [PASSED] PAL-N
[12:20:22] [PASSED] SECAM
[12:20:22] [PASSED] Mono
[12:20:22] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[12:20:22] [PASSED] drm_test_get_tv_mode_from_name_truncated
[12:20:22] ============ [PASSED] drm_get_tv_mode_from_name ============
[12:20:22] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[12:20:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[12:20:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[12:20:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[12:20:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[12:20:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[12:20:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[12:20:22] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[12:20:22] [PASSED] VIC 96
[12:20:22] [PASSED] VIC 97
[12:20:22] [PASSED] VIC 101
[12:20:22] [PASSED] VIC 102
[12:20:22] [PASSED] VIC 106
[12:20:22] [PASSED] VIC 107
[12:20:22] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[12:20:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[12:20:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[12:20:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[12:20:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[12:20:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[12:20:22] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[12:20:22] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[12:20:22] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[12:20:22] [PASSED] Automatic
[12:20:22] [PASSED] Full
[12:20:22] [PASSED] Limited 16:235
[12:20:22] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[12:20:22] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[12:20:22] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[12:20:22] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[12:20:22] === drm_test_drm_hdmi_connector_get_output_format_name ====
[12:20:22] [PASSED] RGB
[12:20:22] [PASSED] YUV 4:2:0
[12:20:22] [PASSED] YUV 4:2:2
[12:20:22] [PASSED] YUV 4:4:4
[12:20:22] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[12:20:22] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[12:20:22] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[12:20:22] ============= drm_damage_helper (21 subtests) ==============
[12:20:22] [PASSED] drm_test_damage_iter_no_damage
[12:20:22] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[12:20:22] [PASSED] drm_test_damage_iter_no_damage_src_moved
[12:20:22] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[12:20:22] [PASSED] drm_test_damage_iter_no_damage_not_visible
[12:20:22] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[12:20:22] [PASSED] drm_test_damage_iter_no_damage_no_fb
[12:20:22] [PASSED] drm_test_damage_iter_simple_damage
[12:20:22] [PASSED] drm_test_damage_iter_single_damage
[12:20:22] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[12:20:22] [PASSED] drm_test_damage_iter_single_damage_outside_src
[12:20:22] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[12:20:22] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[12:20:22] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[12:20:22] [PASSED] drm_test_damage_iter_single_damage_src_moved
[12:20:22] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[12:20:22] [PASSED] drm_test_damage_iter_damage
[12:20:22] [PASSED] drm_test_damage_iter_damage_one_intersect
[12:20:22] [PASSED] drm_test_damage_iter_damage_one_outside
[12:20:22] [PASSED] drm_test_damage_iter_damage_src_moved
[12:20:22] [PASSED] drm_test_damage_iter_damage_not_visible
[12:20:22] ================ [PASSED] drm_damage_helper ================
[12:20:22] ============== drm_dp_mst_helper (3 subtests) ==============
[12:20:22] ============== drm_test_dp_mst_calc_pbn_mode ==============
[12:20:22] [PASSED] Clock 154000 BPP 30 DSC disabled
[12:20:22] [PASSED] Clock 234000 BPP 30 DSC disabled
[12:20:22] [PASSED] Clock 297000 BPP 24 DSC disabled
[12:20:22] [PASSED] Clock 332880 BPP 24 DSC enabled
[12:20:22] [PASSED] Clock 324540 BPP 24 DSC enabled
[12:20:22] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[12:20:22] ============== drm_test_dp_mst_calc_pbn_div ===============
[12:20:22] [PASSED] Link rate 2000000 lane count 4
[12:20:22] [PASSED] Link rate 2000000 lane count 2
[12:20:22] [PASSED] Link rate 2000000 lane count 1
[12:20:22] [PASSED] Link rate 1350000 lane count 4
[12:20:22] [PASSED] Link rate 1350000 lane count 2
[12:20:22] [PASSED] Link rate 1350000 lane count 1
[12:20:22] [PASSED] Link rate 1000000 lane count 4
[12:20:22] [PASSED] Link rate 1000000 lane count 2
[12:20:22] [PASSED] Link rate 1000000 lane count 1
[12:20:22] [PASSED] Link rate 810000 lane count 4
[12:20:22] [PASSED] Link rate 810000 lane count 2
[12:20:22] [PASSED] Link rate 810000 lane count 1
[12:20:22] [PASSED] Link rate 540000 lane count 4
[12:20:22] [PASSED] Link rate 540000 lane count 2
[12:20:22] [PASSED] Link rate 540000 lane count 1
[12:20:22] [PASSED] Link rate 270000 lane count 4
[12:20:22] [PASSED] Link rate 270000 lane count 2
[12:20:22] [PASSED] Link rate 270000 lane count 1
[12:20:22] [PASSED] Link rate 162000 lane count 4
[12:20:22] [PASSED] Link rate 162000 lane count 2
[12:20:22] [PASSED] Link rate 162000 lane count 1
[12:20:22] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[12:20:22] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[12:20:22] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[12:20:22] [PASSED] DP_POWER_UP_PHY with port number
[12:20:22] [PASSED] DP_POWER_DOWN_PHY with port number
[12:20:22] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[12:20:22] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[12:20:22] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[12:20:22] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[12:20:22] [PASSED] DP_QUERY_PAYLOAD with port number
[12:20:22] [PASSED] DP_QUERY_PAYLOAD with VCPI
[12:20:22] [PASSED] DP_REMOTE_DPCD_READ with port number
[12:20:22] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[12:20:22] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[12:20:22] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[12:20:22] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[12:20:22] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[12:20:22] [PASSED] DP_REMOTE_I2C_READ with port number
[12:20:22] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[12:20:22] [PASSED] DP_REMOTE_I2C_READ with transactions array
[12:20:22] [PASSED] DP_REMOTE_I2C_WRITE with port number
[12:20:22] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[12:20:22] [PASSED] DP_REMOTE_I2C_WRITE with data array
[12:20:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[12:20:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[12:20:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[12:20:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[12:20:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[12:20:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[12:20:22] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[12:20:22] ================ [PASSED] drm_dp_mst_helper ================
[12:20:22] ================== drm_exec (7 subtests) ===================
[12:20:22] [PASSED] sanitycheck
[12:20:22] [PASSED] test_lock
[12:20:22] [PASSED] test_lock_unlock
[12:20:22] [PASSED] test_duplicates
[12:20:22] [PASSED] test_prepare
[12:20:22] [PASSED] test_prepare_array
[12:20:22] [PASSED] test_multiple_loops
[12:20:22] ==================== [PASSED] drm_exec =====================
[12:20:22] =========== drm_format_helper_test (17 subtests) ===========
[12:20:22] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[12:20:22] [PASSED] single_pixel_source_buffer
[12:20:22] [PASSED] single_pixel_clip_rectangle
[12:20:22] [PASSED] well_known_colors
[12:20:22] [PASSED] destination_pitch
[12:20:22] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[12:20:22] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[12:20:22] [PASSED] single_pixel_source_buffer
[12:20:22] [PASSED] single_pixel_clip_rectangle
[12:20:22] [PASSED] well_known_colors
[12:20:22] [PASSED] destination_pitch
[12:20:22] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[12:20:22] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[12:20:22] [PASSED] single_pixel_source_buffer
[12:20:22] [PASSED] single_pixel_clip_rectangle
[12:20:22] [PASSED] well_known_colors
[12:20:22] [PASSED] destination_pitch
[12:20:22] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[12:20:22] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[12:20:22] [PASSED] single_pixel_source_buffer
[12:20:22] [PASSED] single_pixel_clip_rectangle
[12:20:22] [PASSED] well_known_colors
[12:20:22] [PASSED] destination_pitch
[12:20:22] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[12:20:22] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[12:20:22] [PASSED] single_pixel_source_buffer
[12:20:22] [PASSED] single_pixel_clip_rectangle
[12:20:22] [PASSED] well_known_colors
[12:20:22] [PASSED] destination_pitch
[12:20:22] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[12:20:22] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[12:20:22] [PASSED] single_pixel_source_buffer
[12:20:22] [PASSED] single_pixel_clip_rectangle
[12:20:22] [PASSED] well_known_colors
[12:20:22] [PASSED] destination_pitch
[12:20:22] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[12:20:22] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[12:20:22] [PASSED] single_pixel_source_buffer
[12:20:22] [PASSED] single_pixel_clip_rectangle
[12:20:22] [PASSED] well_known_colors
[12:20:22] [PASSED] destination_pitch
[12:20:22] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[12:20:22] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[12:20:22] [PASSED] single_pixel_source_buffer
[12:20:22] [PASSED] single_pixel_clip_rectangle
[12:20:22] [PASSED] well_known_colors
[12:20:22] [PASSED] destination_pitch
[12:20:22] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[12:20:22] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[12:20:22] [PASSED] single_pixel_source_buffer
[12:20:22] [PASSED] single_pixel_clip_rectangle
[12:20:22] [PASSED] well_known_colors
[12:20:22] [PASSED] destination_pitch
[12:20:22] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[12:20:22] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[12:20:22] [PASSED] single_pixel_source_buffer
[12:20:22] [PASSED] single_pixel_clip_rectangle
[12:20:22] [PASSED] well_known_colors
[12:20:22] [PASSED] destination_pitch
[12:20:22] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[12:20:22] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[12:20:22] [PASSED] single_pixel_source_buffer
[12:20:22] [PASSED] single_pixel_clip_rectangle
[12:20:22] [PASSED] well_known_colors
[12:20:22] [PASSED] destination_pitch
[12:20:22] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[12:20:22] ============== drm_test_fb_xrgb8888_to_mono ===============
[12:20:22] [PASSED] single_pixel_source_buffer
[12:20:22] [PASSED] single_pixel_clip_rectangle
[12:20:22] [PASSED] well_known_colors
[12:20:22] [PASSED] destination_pitch
[12:20:22] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[12:20:22] ==================== drm_test_fb_swab =====================
[12:20:22] [PASSED] single_pixel_source_buffer
[12:20:22] [PASSED] single_pixel_clip_rectangle
[12:20:22] [PASSED] well_known_colors
[12:20:22] [PASSED] destination_pitch
[12:20:22] ================ [PASSED] drm_test_fb_swab =================
[12:20:22] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[12:20:22] [PASSED] single_pixel_source_buffer
[12:20:22] [PASSED] single_pixel_clip_rectangle
[12:20:22] [PASSED] well_known_colors
[12:20:22] [PASSED] destination_pitch
[12:20:22] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[12:20:22] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[12:20:22] [PASSED] single_pixel_source_buffer
[12:20:22] [PASSED] single_pixel_clip_rectangle
[12:20:22] [PASSED] well_known_colors
[12:20:22] [PASSED] destination_pitch
[12:20:22] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[12:20:22] ================= drm_test_fb_clip_offset =================
[12:20:22] [PASSED] pass through
[12:20:22] [PASSED] horizontal offset
[12:20:22] [PASSED] vertical offset
[12:20:22] [PASSED] horizontal and vertical offset
[12:20:22] [PASSED] horizontal offset (custom pitch)
[12:20:22] [PASSED] vertical offset (custom pitch)
[12:20:22] [PASSED] horizontal and vertical offset (custom pitch)
[12:20:22] ============= [PASSED] drm_test_fb_clip_offset =============
[12:20:22] =================== drm_test_fb_memcpy ====================
[12:20:22] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[12:20:22] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[12:20:22] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[12:20:22] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[12:20:22] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[12:20:22] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[12:20:22] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[12:20:22] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[12:20:22] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[12:20:22] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[12:20:22] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[12:20:22] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[12:20:22] =============== [PASSED] drm_test_fb_memcpy ================
[12:20:22] ============= [PASSED] drm_format_helper_test ==============
[12:20:22] ================= drm_format (18 subtests) =================
[12:20:22] [PASSED] drm_test_format_block_width_invalid
[12:20:22] [PASSED] drm_test_format_block_width_one_plane
[12:20:22] [PASSED] drm_test_format_block_width_two_plane
[12:20:22] [PASSED] drm_test_format_block_width_three_plane
[12:20:22] [PASSED] drm_test_format_block_width_tiled
[12:20:22] [PASSED] drm_test_format_block_height_invalid
[12:20:22] [PASSED] drm_test_format_block_height_one_plane
[12:20:22] [PASSED] drm_test_format_block_height_two_plane
[12:20:22] [PASSED] drm_test_format_block_height_three_plane
[12:20:22] [PASSED] drm_test_format_block_height_tiled
[12:20:22] [PASSED] drm_test_format_min_pitch_invalid
[12:20:22] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[12:20:22] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[12:20:22] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[12:20:22] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[12:20:22] [PASSED] drm_test_format_min_pitch_two_plane
[12:20:22] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[12:20:22] [PASSED] drm_test_format_min_pitch_tiled
[12:20:22] =================== [PASSED] drm_format ====================
[12:20:22] ============== drm_framebuffer (10 subtests) ===============
[12:20:22] ========== drm_test_framebuffer_check_src_coords ==========
[12:20:22] [PASSED] Success: source fits into fb
[12:20:22] [PASSED] Fail: overflowing fb with x-axis coordinate
[12:20:22] [PASSED] Fail: overflowing fb with y-axis coordinate
[12:20:22] [PASSED] Fail: overflowing fb with source width
[12:20:22] [PASSED] Fail: overflowing fb with source height
[12:20:22] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[12:20:22] [PASSED] drm_test_framebuffer_cleanup
[12:20:22] =============== drm_test_framebuffer_create ===============
[12:20:22] [PASSED] ABGR8888 normal sizes
[12:20:22] [PASSED] ABGR8888 max sizes
[12:20:22] [PASSED] ABGR8888 pitch greater than min required
[12:20:22] [PASSED] ABGR8888 pitch less than min required
[12:20:22] [PASSED] ABGR8888 Invalid width
[12:20:22] [PASSED] ABGR8888 Invalid buffer handle
[12:20:22] [PASSED] No pixel format
[12:20:22] [PASSED] ABGR8888 Width 0
[12:20:22] [PASSED] ABGR8888 Height 0
[12:20:22] [PASSED] ABGR8888 Out of bound height * pitch combination
[12:20:22] [PASSED] ABGR8888 Large buffer offset
[12:20:22] [PASSED] ABGR8888 Buffer offset for inexistent plane
[12:20:22] [PASSED] ABGR8888 Invalid flag
[12:20:22] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[12:20:22] [PASSED] ABGR8888 Valid buffer modifier
[12:20:22] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[12:20:22] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[12:20:22] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[12:20:22] [PASSED] NV12 Normal sizes
[12:20:22] [PASSED] NV12 Max sizes
[12:20:22] [PASSED] NV12 Invalid pitch
[12:20:22] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[12:20:22] [PASSED] NV12 different modifier per-plane
[12:20:22] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[12:20:22] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[12:20:22] [PASSED] NV12 Modifier for inexistent plane
[12:20:22] [PASSED] NV12 Handle for inexistent plane
[12:20:22] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[12:20:22] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[12:20:22] [PASSED] YVU420 Normal sizes
[12:20:22] [PASSED] YVU420 Max sizes
[12:20:22] [PASSED] YVU420 Invalid pitch
[12:20:22] [PASSED] YVU420 Different pitches
[12:20:22] [PASSED] YVU420 Different buffer offsets/pitches
[12:20:22] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[12:20:22] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[12:20:22] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[12:20:22] [PASSED] YVU420 Valid modifier
[12:20:22] [PASSED] YVU420 Different modifiers per plane
[12:20:22] [PASSED] YVU420 Modifier for inexistent plane
[12:20:22] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[12:20:22] [PASSED] X0L2 Normal sizes
[12:20:22] [PASSED] X0L2 Max sizes
[12:20:22] [PASSED] X0L2 Invalid pitch
[12:20:22] [PASSED] X0L2 Pitch greater than minimum required
[12:20:22] [PASSED] X0L2 Handle for inexistent plane
[12:20:22] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[12:20:22] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[12:20:22] [PASSED] X0L2 Valid modifier
[12:20:22] [PASSED] X0L2 Modifier for inexistent plane
[12:20:22] =========== [PASSED] drm_test_framebuffer_create ===========
[12:20:22] [PASSED] drm_test_framebuffer_free
[12:20:22] [PASSED] drm_test_framebuffer_init
[12:20:22] [PASSED] drm_test_framebuffer_init_bad_format
[12:20:22] [PASSED] drm_test_framebuffer_init_dev_mismatch
[12:20:22] [PASSED] drm_test_framebuffer_lookup
[12:20:22] [PASSED] drm_test_framebuffer_lookup_inexistent
[12:20:22] [PASSED] drm_test_framebuffer_modifiers_not_supported
[12:20:22] ================= [PASSED] drm_framebuffer =================
[12:20:22] ================ drm_gem_shmem (8 subtests) ================
[12:20:22] [PASSED] drm_gem_shmem_test_obj_create
[12:20:22] [PASSED] drm_gem_shmem_test_obj_create_private
[12:20:22] [PASSED] drm_gem_shmem_test_pin_pages
[12:20:22] [PASSED] drm_gem_shmem_test_vmap
[12:20:22] [PASSED] drm_gem_shmem_test_get_sg_table
[12:20:22] [PASSED] drm_gem_shmem_test_get_pages_sgt
[12:20:22] [PASSED] drm_gem_shmem_test_madvise
[12:20:22] [PASSED] drm_gem_shmem_test_purge
[12:20:22] ================== [PASSED] drm_gem_shmem ==================
[12:20:22] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[12:20:22] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[12:20:22] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[12:20:22] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[12:20:22] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[12:20:22] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[12:20:22] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[12:20:22] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[12:20:22] [PASSED] Automatic
[12:20:22] [PASSED] Full
[12:20:22] [PASSED] Limited 16:235
[12:20:22] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[12:20:22] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[12:20:22] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[12:20:22] [PASSED] drm_test_check_disable_connector
[12:20:22] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[12:20:22] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[12:20:22] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[12:20:22] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[12:20:22] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[12:20:22] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[12:20:22] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[12:20:22] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[12:20:22] [PASSED] drm_test_check_output_bpc_dvi
[12:20:22] [PASSED] drm_test_check_output_bpc_format_vic_1
[12:20:22] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[12:20:22] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[12:20:22] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[12:20:22] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[12:20:22] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[12:20:22] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[12:20:22] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[12:20:22] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[12:20:22] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[12:20:22] [PASSED] drm_test_check_broadcast_rgb_value
[12:20:22] [PASSED] drm_test_check_bpc_8_value
[12:20:22] [PASSED] drm_test_check_bpc_10_value
[12:20:22] [PASSED] drm_test_check_bpc_12_value
[12:20:22] [PASSED] drm_test_check_format_value
[12:20:22] [PASSED] drm_test_check_tmds_char_value
[12:20:22] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[12:20:22] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[12:20:22] [PASSED] drm_test_check_mode_valid
[12:20:22] [PASSED] drm_test_check_mode_valid_reject
[12:20:22] [PASSED] drm_test_check_mode_valid_reject_rate
[12:20:22] [PASSED] drm_test_check_mode_valid_reject_max_clock
[12:20:22] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[12:20:22] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[12:20:22] [PASSED] drm_test_check_infoframes
[12:20:22] [PASSED] drm_test_check_reject_avi_infoframe
[12:20:22] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[12:20:22] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[12:20:22] [PASSED] drm_test_check_reject_audio_infoframe
[12:20:22] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[12:20:22] ================= drm_managed (2 subtests) =================
[12:20:22] [PASSED] drm_test_managed_release_action
[12:20:22] [PASSED] drm_test_managed_run_action
[12:20:22] =================== [PASSED] drm_managed ===================
[12:20:22] =================== drm_mm (6 subtests) ====================
[12:20:22] [PASSED] drm_test_mm_init
[12:20:22] [PASSED] drm_test_mm_debug
[12:20:22] [PASSED] drm_test_mm_align32
[12:20:22] [PASSED] drm_test_mm_align64
[12:20:22] [PASSED] drm_test_mm_lowest
[12:20:22] [PASSED] drm_test_mm_highest
[12:20:22] ===================== [PASSED] drm_mm ======================
[12:20:22] ============= drm_modes_analog_tv (5 subtests) =============
[12:20:22] [PASSED] drm_test_modes_analog_tv_mono_576i
[12:20:22] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[12:20:22] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[12:20:22] [PASSED] drm_test_modes_analog_tv_pal_576i
[12:20:22] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[12:20:22] =============== [PASSED] drm_modes_analog_tv ===============
[12:20:22] ============== drm_plane_helper (2 subtests) ===============
[12:20:22] =============== drm_test_check_plane_state ================
[12:20:22] [PASSED] clipping_simple
[12:20:22] [PASSED] clipping_rotate_reflect
[12:20:22] [PASSED] positioning_simple
[12:20:22] [PASSED] upscaling
[12:20:22] [PASSED] downscaling
[12:20:22] [PASSED] rounding1
[12:20:22] [PASSED] rounding2
[12:20:22] [PASSED] rounding3
[12:20:22] [PASSED] rounding4
[12:20:22] =========== [PASSED] drm_test_check_plane_state ============
[12:20:22] =========== drm_test_check_invalid_plane_state ============
[12:20:22] [PASSED] positioning_invalid
[12:20:22] [PASSED] upscaling_invalid
[12:20:22] [PASSED] downscaling_invalid
[12:20:22] ======= [PASSED] drm_test_check_invalid_plane_state ========
[12:20:22] ================ [PASSED] drm_plane_helper =================
[12:20:22] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[12:20:22] ====== drm_test_connector_helper_tv_get_modes_check =======
[12:20:22] [PASSED] None
[12:20:22] [PASSED] PAL
[12:20:22] [PASSED] NTSC
[12:20:22] [PASSED] Both, NTSC Default
[12:20:22] [PASSED] Both, PAL Default
[12:20:22] [PASSED] Both, NTSC Default, with PAL on command-line
[12:20:22] [PASSED] Both, PAL Default, with NTSC on command-line
[12:20:22] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[12:20:22] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[12:20:22] ================== drm_rect (9 subtests) ===================
[12:20:22] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[12:20:22] [PASSED] drm_test_rect_clip_scaled_not_clipped
[12:20:22] [PASSED] drm_test_rect_clip_scaled_clipped
[12:20:22] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[12:20:22] ================= drm_test_rect_intersect =================
[12:20:22] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[12:20:22] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[12:20:22] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[12:20:22] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[12:20:22] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[12:20:22] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[12:20:22] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[12:20:22] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[12:20:22] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[12:20:22] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[12:20:22] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[12:20:22] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[12:20:22] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[12:20:22] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[12:20:22] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[12:20:22] ============= [PASSED] drm_test_rect_intersect =============
[12:20:22] ================ drm_test_rect_calc_hscale ================
[12:20:22] [PASSED] normal use
[12:20:22] [PASSED] out of max range
[12:20:22] [PASSED] out of min range
[12:20:22] [PASSED] zero dst
[12:20:22] [PASSED] negative src
[12:20:22] [PASSED] negative dst
[12:20:22] ============ [PASSED] drm_test_rect_calc_hscale ============
[12:20:22] ================ drm_test_rect_calc_vscale ================
[12:20:22] [PASSED] normal use
[12:20:22] [PASSED] out of max range
[12:20:22] [PASSED] out of min range
[12:20:22] [PASSED] zero dst
[12:20:22] [PASSED] negative src
[12:20:22] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[12:20:22] ============ [PASSED] drm_test_rect_calc_vscale ============
[12:20:22] ================== drm_test_rect_rotate ===================
[12:20:22] [PASSED] reflect-x
[12:20:22] [PASSED] reflect-y
[12:20:22] [PASSED] rotate-0
[12:20:22] [PASSED] rotate-90
[12:20:22] [PASSED] rotate-180
[12:20:22] [PASSED] rotate-270
[12:20:22] ============== [PASSED] drm_test_rect_rotate ===============
[12:20:22] ================ drm_test_rect_rotate_inv =================
[12:20:22] [PASSED] reflect-x
[12:20:22] [PASSED] reflect-y
[12:20:22] [PASSED] rotate-0
[12:20:22] [PASSED] rotate-90
[12:20:22] [PASSED] rotate-180
[12:20:22] [PASSED] rotate-270
[12:20:22] ============ [PASSED] drm_test_rect_rotate_inv =============
[12:20:22] ==================== [PASSED] drm_rect =====================
[12:20:22] ============ drm_sysfb_modeset_test (1 subtest) ============
[12:20:22] ============ drm_test_sysfb_build_fourcc_list =============
[12:20:22] [PASSED] no native formats
[12:20:22] [PASSED] XRGB8888 as native format
[12:20:22] [PASSED] remove duplicates
[12:20:22] [PASSED] convert alpha formats
[12:20:22] [PASSED] random formats
[12:20:22] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[12:20:22] ============= [PASSED] drm_sysfb_modeset_test ==============
[12:20:22] ================== drm_fixp (2 subtests) ===================
[12:20:22] [PASSED] drm_test_int2fixp
[12:20:22] [PASSED] drm_test_sm2fixp
[12:20:22] ==================== [PASSED] drm_fixp =====================
[12:20:22] ============================================================
[12:20:22] Testing complete. Ran 621 tests: passed: 621
[12:20:22] Elapsed time: 26.349s total, 1.739s configuring, 24.392s building, 0.184s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[12:20:22] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:20: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
[12:20:33] Starting KUnit Kernel (1/1)...
[12:20:33] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:20:33] ================= ttm_device (5 subtests) ==================
[12:20:33] [PASSED] ttm_device_init_basic
[12:20:33] [PASSED] ttm_device_init_multiple
[12:20:33] [PASSED] ttm_device_fini_basic
[12:20:33] [PASSED] ttm_device_init_no_vma_man
[12:20:33] ================== ttm_device_init_pools ==================
[12:20:33] [PASSED] No DMA allocations, no DMA32 required
[12:20:33] [PASSED] DMA allocations, DMA32 required
[12:20:33] [PASSED] No DMA allocations, DMA32 required
[12:20:33] [PASSED] DMA allocations, no DMA32 required
[12:20:33] ============== [PASSED] ttm_device_init_pools ==============
[12:20:33] =================== [PASSED] ttm_device ====================
[12:20:33] ================== ttm_pool (8 subtests) ===================
[12:20:33] ================== ttm_pool_alloc_basic ===================
[12:20:33] [PASSED] One page
[12:20:33] [PASSED] More than one page
[12:20:33] [PASSED] Above the allocation limit
[12:20:33] [PASSED] One page, with coherent DMA mappings enabled
[12:20:33] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:20:33] ============== [PASSED] ttm_pool_alloc_basic ===============
[12:20:33] ============== ttm_pool_alloc_basic_dma_addr ==============
[12:20:33] [PASSED] One page
[12:20:33] [PASSED] More than one page
[12:20:33] [PASSED] Above the allocation limit
[12:20:33] [PASSED] One page, with coherent DMA mappings enabled
[12:20:33] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:20:33] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[12:20:33] [PASSED] ttm_pool_alloc_order_caching_match
[12:20:33] [PASSED] ttm_pool_alloc_caching_mismatch
[12:20:33] [PASSED] ttm_pool_alloc_order_mismatch
[12:20:33] [PASSED] ttm_pool_free_dma_alloc
[12:20:33] [PASSED] ttm_pool_free_no_dma_alloc
[12:20:33] [PASSED] ttm_pool_fini_basic
[12:20:33] ==================== [PASSED] ttm_pool =====================
[12:20:33] ================ ttm_resource (8 subtests) =================
[12:20:33] ================= ttm_resource_init_basic =================
[12:20:33] [PASSED] Init resource in TTM_PL_SYSTEM
[12:20:33] [PASSED] Init resource in TTM_PL_VRAM
[12:20:33] [PASSED] Init resource in a private placement
[12:20:33] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[12:20:33] ============= [PASSED] ttm_resource_init_basic =============
[12:20:33] [PASSED] ttm_resource_init_pinned
[12:20:33] [PASSED] ttm_resource_fini_basic
[12:20:33] [PASSED] ttm_resource_manager_init_basic
[12:20:33] [PASSED] ttm_resource_manager_usage_basic
[12:20:33] [PASSED] ttm_resource_manager_set_used_basic
[12:20:33] [PASSED] ttm_sys_man_alloc_basic
[12:20:33] [PASSED] ttm_sys_man_free_basic
[12:20:33] ================== [PASSED] ttm_resource ===================
[12:20:33] =================== ttm_tt (15 subtests) ===================
[12:20:33] ==================== ttm_tt_init_basic ====================
[12:20:33] [PASSED] Page-aligned size
[12:20:33] [PASSED] Extra pages requested
[12:20:33] ================ [PASSED] ttm_tt_init_basic ================
[12:20:33] [PASSED] ttm_tt_init_misaligned
[12:20:33] [PASSED] ttm_tt_fini_basic
[12:20:33] [PASSED] ttm_tt_fini_sg
[12:20:33] [PASSED] ttm_tt_fini_shmem
[12:20:33] [PASSED] ttm_tt_create_basic
[12:20:33] [PASSED] ttm_tt_create_invalid_bo_type
[12:20:33] [PASSED] ttm_tt_create_ttm_exists
[12:20:33] [PASSED] ttm_tt_create_failed
[12:20:33] [PASSED] ttm_tt_destroy_basic
[12:20:33] [PASSED] ttm_tt_populate_null_ttm
[12:20:33] [PASSED] ttm_tt_populate_populated_ttm
[12:20:33] [PASSED] ttm_tt_unpopulate_basic
[12:20:33] [PASSED] ttm_tt_unpopulate_empty_ttm
[12:20:33] [PASSED] ttm_tt_swapin_basic
[12:20:33] ===================== [PASSED] ttm_tt ======================
[12:20:33] =================== ttm_bo (14 subtests) ===================
[12:20:33] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[12:20:33] [PASSED] Cannot be interrupted and sleeps
[12:20:33] [PASSED] Cannot be interrupted, locks straight away
[12:20:33] [PASSED] Can be interrupted, sleeps
[12:20:33] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[12:20:33] [PASSED] ttm_bo_reserve_locked_no_sleep
[12:20:33] [PASSED] ttm_bo_reserve_no_wait_ticket
[12:20:33] [PASSED] ttm_bo_reserve_double_resv
[12:20:33] [PASSED] ttm_bo_reserve_interrupted
[12:20:33] [PASSED] ttm_bo_reserve_deadlock
[12:20:33] [PASSED] ttm_bo_unreserve_basic
[12:20:33] [PASSED] ttm_bo_unreserve_pinned
[12:20:33] [PASSED] ttm_bo_unreserve_bulk
[12:20:33] [PASSED] ttm_bo_fini_basic
[12:20:33] [PASSED] ttm_bo_fini_shared_resv
[12:20:33] [PASSED] ttm_bo_pin_basic
[12:20:33] [PASSED] ttm_bo_pin_unpin_resource
[12:20:33] [PASSED] ttm_bo_multiple_pin_one_unpin
[12:20:33] ===================== [PASSED] ttm_bo ======================
[12:20:33] ============== ttm_bo_validate (22 subtests) ===============
[12:20:33] ============== ttm_bo_init_reserved_sys_man ===============
[12:20:33] [PASSED] Buffer object for userspace
[12:20:33] [PASSED] Kernel buffer object
[12:20:33] [PASSED] Shared buffer object
[12:20:33] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[12:20:33] ============== ttm_bo_init_reserved_mock_man ==============
[12:20:33] [PASSED] Buffer object for userspace
[12:20:33] [PASSED] Kernel buffer object
[12:20:33] [PASSED] Shared buffer object
[12:20:33] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[12:20:33] [PASSED] ttm_bo_init_reserved_resv
[12:20:33] ================== ttm_bo_validate_basic ==================
[12:20:33] [PASSED] Buffer object for userspace
[12:20:33] [PASSED] Kernel buffer object
[12:20:33] [PASSED] Shared buffer object
[12:20:33] ============== [PASSED] ttm_bo_validate_basic ==============
[12:20:33] [PASSED] ttm_bo_validate_invalid_placement
[12:20:33] ============= ttm_bo_validate_same_placement ==============
[12:20:33] [PASSED] System manager
[12:20:33] [PASSED] VRAM manager
[12:20:33] ========= [PASSED] ttm_bo_validate_same_placement ==========
[12:20:33] [PASSED] ttm_bo_validate_failed_alloc
[12:20:33] [PASSED] ttm_bo_validate_pinned
[12:20:33] [PASSED] ttm_bo_validate_busy_placement
[12:20:33] ================ ttm_bo_validate_multihop =================
[12:20:33] [PASSED] Buffer object for userspace
[12:20:33] [PASSED] Kernel buffer object
[12:20:33] [PASSED] Shared buffer object
[12:20:33] ============ [PASSED] ttm_bo_validate_multihop =============
[12:20:33] ========== ttm_bo_validate_no_placement_signaled ==========
[12:20:33] [PASSED] Buffer object in system domain, no page vector
[12:20:33] [PASSED] Buffer object in system domain with an existing page vector
[12:20:33] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[12:20:33] ======== ttm_bo_validate_no_placement_not_signaled ========
[12:20:33] [PASSED] Buffer object for userspace
[12:20:33] [PASSED] Kernel buffer object
[12:20:33] [PASSED] Shared buffer object
[12:20:33] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[12:20:33] [PASSED] ttm_bo_validate_move_fence_signaled
[12:20:33] ========= ttm_bo_validate_move_fence_not_signaled =========
[12:20:33] [PASSED] Waits for GPU
[12:20:33] [PASSED] Tries to lock straight away
[12:20:33] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[12:20:33] [PASSED] ttm_bo_validate_swapout
[12:20:33] [PASSED] ttm_bo_validate_happy_evict
[12:20:33] [PASSED] ttm_bo_validate_all_pinned_evict
[12:20:33] [PASSED] ttm_bo_validate_allowed_only_evict
[12:20:33] [PASSED] ttm_bo_validate_deleted_evict
[12:20:33] [PASSED] ttm_bo_validate_busy_domain_evict
[12:20:33] [PASSED] ttm_bo_validate_evict_gutting
[12:20:33] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[12:20:33] ================= [PASSED] ttm_bo_validate =================
[12:20:33] ============================================================
[12:20:33] Testing complete. Ran 102 tests: passed: 102
[12:20:34] Elapsed time: 11.350s total, 1.699s configuring, 9.435s building, 0.186s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for Introduce Xe Correctable Error Handling (rev6)
2026-04-10 10:27 [PATCH v6 0/3] Introduce Xe Correctable Error Handling Raag Jadav
` (4 preceding siblings ...)
2026-04-10 12:20 ` ✓ CI.KUnit: success " Patchwork
@ 2026-04-10 13:06 ` Patchwork
2026-04-10 20:19 ` ✗ Xe.CI.FULL: failure " Patchwork
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-04-10 13:06 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1523 bytes --]
== Series Details ==
Series: Introduce Xe Correctable Error Handling (rev6)
URL : https://patchwork.freedesktop.org/series/160184/
State : success
== Summary ==
CI Bug Log - changes from xe-4882-645a9910880f44919269478accf620dd33cb2656_BAT -> xe-pw-160184v6_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 14)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-160184v6_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- bat-bmg-2: [PASS][1] -> [ABORT][2] ([Intel XE#7249] / [Intel XE#7578])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html
[Intel XE#7249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7249
[Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578
Build changes
-------------
* Linux: xe-4882-645a9910880f44919269478accf620dd33cb2656 -> xe-pw-160184v6
IGT_8852: 8852
xe-4882-645a9910880f44919269478accf620dd33cb2656: 645a9910880f44919269478accf620dd33cb2656
xe-pw-160184v6: 160184v6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/index.html
[-- Attachment #2: Type: text/html, Size: 2081 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.FULL: failure for Introduce Xe Correctable Error Handling (rev6)
2026-04-10 10:27 [PATCH v6 0/3] Introduce Xe Correctable Error Handling Raag Jadav
` (5 preceding siblings ...)
2026-04-10 13:06 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-10 20:19 ` Patchwork
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-04-10 20:19 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 37212 bytes --]
== Series Details ==
Series: Introduce Xe Correctable Error Handling (rev6)
URL : https://patchwork.freedesktop.org/series/160184/
State : failure
== Summary ==
CI Bug Log - changes from xe-4882-645a9910880f44919269478accf620dd33cb2656_FULL -> xe-pw-160184v6_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-160184v6_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-160184v6_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 (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-160184v6_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_crc@cursor-suspend:
- shard-bmg: NOTRUN -> [INCOMPLETE][1] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-10/igt@kms_cursor_crc@cursor-suspend.html
Known issues
------------
Here are the changes found in xe-pw-160184v6_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#2327]) +4 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-9/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#1124]) +6 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-6/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#7679])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-1/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#367] / [Intel XE#7354]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-10/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#3432]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2887]) +14 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_color@degamma:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2325] / [Intel XE#7358]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-6/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2252]) +6 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#373])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-lnl-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][11] ([Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-6/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2390] / [Intel XE#6974]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-bmg: NOTRUN -> [FAIL][13] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-8/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2320]) +3 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2321] / [Intel XE#7355]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2286] / [Intel XE#6035])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#1340] / [Intel XE#7435])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2244])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-10/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#6126] / [Intel XE#776])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-5/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2374] / [Intel XE#6128])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-6/igt@kms_feature_discovery@psr2.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2311]) +26 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#656])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#4141]) +13 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#6312])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2313]) +24 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][28] -> [SKIP][29] ([Intel XE#1503])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-3/igt@kms_hdr@invalid-hdr.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-9/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#6911] / [Intel XE#7378])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-8/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#6901])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-10/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-6/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#7283])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-lnl-5/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7283]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-10/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#5021] / [Intel XE#7377])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-9/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#7376] / [Intel XE#870])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-6/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2391] / [Intel XE#6927])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-10/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#1489]) +6 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-8/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2387] / [Intel XE#7429])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-8/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-dpms:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2234] / [Intel XE#2850]) +8 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-1/igt@kms_psr@fbc-psr-dpms.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#1435]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-9/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_sharpness_filter@filter-suspend:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#6503]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-1/igt@kms_sharpness_filter@filter-suspend.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#6599])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-9/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_eudebug@basic-connect:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#7636]) +12 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-10/igt@xe_eudebug@basic-connect.html
* igt@xe_evict@evict-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7140]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-10/igt@xe_evict@evict-small-multi-queue.html
* igt@xe_evict@evict-threads-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#6540] / [Intel XE#688])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-lnl-5/igt@xe_evict@evict-threads-large-multi-vm.html
* igt@xe_exec_balancer@twice-cm-parallel-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#7482])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-lnl-5/igt@xe_exec_balancer@twice-cm-parallel-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2322] / [Intel XE#7372]) +8 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-6/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#7136]) +12 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-1/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch.html
* igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-userptr:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#6874]) +21 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-1/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-userptr.html
* igt@xe_exec_multi_queue@two-queues-priority-smem:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#6874])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-lnl-5/igt@xe_exec_multi_queue@two-queues-priority-smem.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#7138]) +10 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html
* igt@xe_multigpu_svm@mgpu-latency-prefetch:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#6964]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-6/igt@xe_multigpu_svm@mgpu-latency-prefetch.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2245] / [Intel XE#7590])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-8/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-sw-hw-suspend:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#7590])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-10/igt@xe_pat@pat-sw-hw-suspend.html
* igt@xe_pm@d3hot-i2c:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-1/igt@xe_pm@d3hot-i2c.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2284] / [Intel XE#7370]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-6/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s3-basic:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#584] / [Intel XE#7369])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-lnl-5/igt@xe_pm@s3-basic.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#579] / [Intel XE#7329] / [Intel XE#7517])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-1/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_prefetch_fault@prefetch-fault:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#7599])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-8/igt@xe_prefetch_fault@prefetch-fault.html
* igt@xe_pxp@pxp-termination-key-update-post-rpm:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#4733] / [Intel XE#7417]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-10/igt@xe_pxp@pxp-termination-key-update-post-rpm.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#944]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-10/igt@xe_query@multigpu-query-invalid-extension.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: [FAIL][66] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][67] +1 other test pass
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-9/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][68] ([Intel XE#7084]) -> [PASS][69] +1 other test pass
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-bmg: [FAIL][70] ([Intel XE#3321]) -> [PASS][71]
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank@b-dp2:
- shard-bmg: [FAIL][72] -> [PASS][73]
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank@b-dp2.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank@b-dp2.html
* igt@kms_vrr@flip-basic:
- shard-lnl: [FAIL][74] ([Intel XE#4227] / [Intel XE#7397]) -> [PASS][75] +1 other test pass
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-lnl-6/igt@kms_vrr@flip-basic.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-lnl-8/igt@kms_vrr@flip-basic.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][76] ([Intel XE#6321]) -> [PASS][77]
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-9/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_exec_system_allocator@twice-new-busy:
- shard-bmg: [ABORT][78] ([Intel XE#7200]) -> [PASS][79]
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-3/igt@xe_exec_system_allocator@twice-new-busy.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-9/igt@xe_exec_system_allocator@twice-new-busy.html
#### Warnings ####
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][80] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][81] ([Intel XE#2426] / [Intel XE#5848])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [DMESG-WARN][100], [DMESG-WARN][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105]) ([Intel XE#7725]) -> ([PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [SKIP][129], [PASS][130]) ([Intel XE#2457] / [Intel XE#7405])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-4/igt@xe_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-4/igt@xe_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-4/igt@xe_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-8/igt@xe_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-8/igt@xe_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-10/igt@xe_module_load@load.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-10/igt@xe_module_load@load.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-10/igt@xe_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-1/igt@xe_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-1/igt@xe_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-1/igt@xe_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-7/igt@xe_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-7/igt@xe_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-7/igt@xe_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-9/igt@xe_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-2/igt@xe_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-2/igt@xe_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-6/igt@xe_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-6/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-6/igt@xe_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-3/igt@xe_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-3/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-3/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4882-645a9910880f44919269478accf620dd33cb2656/shard-bmg-5/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-10/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-9/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-4/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-1/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-3/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-6/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-4/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-10/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-8/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-4/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-8/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-6/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-7/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-7/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-5/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-1/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-1/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-5/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-9/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-3/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-3/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-6/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-9/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-6/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/shard-bmg-2/igt@xe_module_load@load.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[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#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[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#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[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#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[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#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
[Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7200]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7200
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7328
[Intel XE#7329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7329
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7397
[Intel XE#7400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7400
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7517
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7725
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[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#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4882-645a9910880f44919269478accf620dd33cb2656 -> xe-pw-160184v6
IGT_8852: 8852
xe-4882-645a9910880f44919269478accf620dd33cb2656: 645a9910880f44919269478accf620dd33cb2656
xe-pw-160184v6: 160184v6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160184v6/index.html
[-- Attachment #2: Type: text/html, Size: 39743 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v6 3/3] drm/xe/ras: Introduce correctable error handling
2026-04-10 10:27 ` [PATCH v6 3/3] drm/xe/ras: Introduce correctable error handling Raag Jadav
@ 2026-04-13 5:56 ` Mallesh, Koujalagi
0 siblings, 0 replies; 9+ messages in thread
From: Mallesh, Koujalagi @ 2026-04-13 5:56 UTC (permalink / raw)
To: Raag Jadav, intel-xe
Cc: matthew.brost, rodrigo.vivi, riana.tauro, michal.wajdeczko,
matthew.d.roper, umesh.nerlige.ramappa, soham.purkait,
anoop.c.vijay, aravind.iddamsetty
[-- Attachment #1: Type: text/plain, Size: 8366 bytes --]
On 10-04-2026 03:57 pm, Raag Jadav wrote:
> Add initial support for correctable error handling which is serviced
> using system controller event. Currently we only log the errors in
> dmesg but this serves as a foundation for RAS infrastructure and will
> be further extended to facilitate other RAS features.
>
> Signed-off-by: Raag Jadav<raag.jadav@intel.com>
LGTM,
Reviewed-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
> ---
> v4: Fix Severity/Component logging (Mallesh)
> s/xe_ras_error/xe_ras_error_class (Riana)
> v5: Handle unexpected counter threshold crossed (Mallesh)
> v6: Drop unused xe_device parameter (Mallesh)
> Fix unexpected counter threshold logic (Mallesh)
> Use xe_device parameter for xe_ras functions (Riana)
> Shorten dmesg logging (Riana)
> s/xe_ras_threshold_crossed_data/xe_ras_threshold_crossed (Riana)
> ---
> drivers/gpu/drm/xe/Makefile | 1 +
> drivers/gpu/drm/xe/xe_ras.c | 92 +++++++++++++++++++++++++++
> drivers/gpu/drm/xe/xe_ras.h | 15 +++++
> drivers/gpu/drm/xe/xe_ras_types.h | 73 +++++++++++++++++++++
> drivers/gpu/drm/xe/xe_sysctrl_event.c | 3 +-
> 5 files changed, 183 insertions(+), 1 deletion(-)
> create mode 100644 drivers/gpu/drm/xe/xe_ras.c
> create mode 100644 drivers/gpu/drm/xe/xe_ras.h
> create mode 100644 drivers/gpu/drm/xe/xe_ras_types.h
>
> diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
> index 9e6689c86797..0e6e91a6063c 100644
> --- a/drivers/gpu/drm/xe/Makefile
> +++ b/drivers/gpu/drm/xe/Makefile
> @@ -113,6 +113,7 @@ xe-y += xe_bb.o \
> xe_pxp_submit.o \
> xe_query.o \
> xe_range_fence.o \
> + xe_ras.o \
> xe_reg_sr.o \
> xe_reg_whitelist.o \
> xe_ring_ops.o \
> diff --git a/drivers/gpu/drm/xe/xe_ras.c b/drivers/gpu/drm/xe/xe_ras.c
> new file mode 100644
> index 000000000000..08e91348c459
> --- /dev/null
> +++ b/drivers/gpu/drm/xe/xe_ras.c
> @@ -0,0 +1,92 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2026 Intel Corporation
> + */
> +
> +#include "xe_printk.h"
> +#include "xe_ras.h"
> +#include "xe_ras_types.h"
> +#include "xe_sysctrl.h"
> +#include "xe_sysctrl_event_types.h"
> +
> +/* Severity of detected errors */
> +enum xe_ras_severity {
> + XE_RAS_SEV_NOT_SUPPORTED = 0,
> + XE_RAS_SEV_CORRECTABLE,
> + XE_RAS_SEV_UNCORRECTABLE,
> + XE_RAS_SEV_INFORMATIONAL,
> + XE_RAS_SEV_MAX
> +};
> +
> +/* Major IP blocks/components where errors can originate */
> +enum xe_ras_component {
> + XE_RAS_COMP_NOT_SUPPORTED = 0,
> + XE_RAS_COMP_DEVICE_MEMORY,
> + XE_RAS_COMP_CORE_COMPUTE,
> + XE_RAS_COMP_RESERVED,
> + XE_RAS_COMP_PCIE,
> + XE_RAS_COMP_FABRIC,
> + XE_RAS_COMP_SOC_INTERNAL,
> + XE_RAS_COMP_MAX
> +};
> +
> +static const char *const xe_ras_severities[] = {
> + [XE_RAS_SEV_NOT_SUPPORTED] = "Not Supported",
> + [XE_RAS_SEV_CORRECTABLE] = "Correctable Error",
> + [XE_RAS_SEV_UNCORRECTABLE] = "Uncorrectable Error",
> + [XE_RAS_SEV_INFORMATIONAL] = "Informational Error",
> +};
> +static_assert(ARRAY_SIZE(xe_ras_severities) == XE_RAS_SEV_MAX);
> +
> +static const char *const xe_ras_components[] = {
> + [XE_RAS_COMP_NOT_SUPPORTED] = "Not Supported",
> + [XE_RAS_COMP_DEVICE_MEMORY] = "Device Memory",
> + [XE_RAS_COMP_CORE_COMPUTE] = "Core Compute",
> + [XE_RAS_COMP_RESERVED] = "Reserved",
> + [XE_RAS_COMP_PCIE] = "PCIe",
> + [XE_RAS_COMP_FABRIC] = "Fabric",
> + [XE_RAS_COMP_SOC_INTERNAL] = "SoC Internal",
> +};
> +static_assert(ARRAY_SIZE(xe_ras_components) == XE_RAS_COMP_MAX);
> +
> +static inline const char *sev_to_str(u8 sev)
> +{
> + if (sev >= XE_RAS_SEV_MAX)
> + sev = XE_RAS_SEV_NOT_SUPPORTED;
> +
> + return xe_ras_severities[sev];
> +}
> +
> +static inline const char *comp_to_str(u8 comp)
> +{
> + if (comp >= XE_RAS_COMP_MAX)
> + comp = XE_RAS_COMP_NOT_SUPPORTED;
> +
> + return xe_ras_components[comp];
> +}
> +
> +void xe_ras_counter_threshold_crossed(struct xe_device *xe,
> + struct xe_sysctrl_event_response *response)
> +{
> + struct xe_ras_threshold_crossed *pending = (void *)&response->data;
> + struct xe_ras_error_class *errors = pending->counters;
> + u32 counter_id, ncounters = pending->ncounters;
> +
> + if (!ncounters || ncounters > XE_RAS_NUM_COUNTERS) {
> + xe_err(xe, "sysctrl: unexpected counter threshold crossed %u\n", ncounters);
> + return;
> + }
> +
> + BUILD_BUG_ON(sizeof(response->data) < sizeof(*pending));
> + xe_warn(xe, "[RAS]: counter threshold crossed, %u new errors\n", ncounters);
> +
> + for (counter_id = 0; counter_id < ncounters; counter_id++) {
> + u8 severity, component;
> +
> + severity = errors[counter_id].common.severity;
> + component = errors[counter_id].common.component;
> +
> + xe_warn(xe, "[RAS]: %s %s detected\n",
> + comp_to_str(component), sev_to_str(severity));
> + }
> +}
> diff --git a/drivers/gpu/drm/xe/xe_ras.h b/drivers/gpu/drm/xe/xe_ras.h
> new file mode 100644
> index 000000000000..ea90593b62dc
> --- /dev/null
> +++ b/drivers/gpu/drm/xe/xe_ras.h
> @@ -0,0 +1,15 @@
> +/* SPDX-License-Identifier: MIT */
> +/*
> + * Copyright © 2026 Intel Corporation
> + */
> +
> +#ifndef _XE_RAS_H_
> +#define _XE_RAS_H_
> +
> +struct xe_device;
> +struct xe_sysctrl_event_response;
> +
> +void xe_ras_counter_threshold_crossed(struct xe_device *xe,
> + struct xe_sysctrl_event_response *response);
> +
> +#endif
> diff --git a/drivers/gpu/drm/xe/xe_ras_types.h b/drivers/gpu/drm/xe/xe_ras_types.h
> new file mode 100644
> index 000000000000..4e63c67f806a
> --- /dev/null
> +++ b/drivers/gpu/drm/xe/xe_ras_types.h
> @@ -0,0 +1,73 @@
> +/* SPDX-License-Identifier: MIT */
> +/*
> + * Copyright © 2026 Intel Corporation
> + */
> +
> +#ifndef _XE_RAS_TYPES_H_
> +#define _XE_RAS_TYPES_H_
> +
> +#include <linux/types.h>
> +
> +#define XE_RAS_NUM_COUNTERS 16
> +
> +/**
> + * struct xe_ras_error_common - Error fields that are common across all products
> + */
> +struct xe_ras_error_common {
> + /** @severity: Error severity */
> + u8 severity;
> + /** @component: IP block where error originated */
> + u8 component;
> +} __packed;
> +
> +/**
> + * struct xe_ras_error_unit - Error unit information
> + */
> +struct xe_ras_error_unit {
> + /** @tile: Tile identifier */
> + u8 tile;
> + /** @instance: Instance identifier specific to IP */
> + u32 instance;
> +} __packed;
> +
> +/**
> + * struct xe_ras_error_cause - Error cause information
> + */
> +struct xe_ras_error_cause {
> + /** @cause: Cause/checker */
> + u32 cause;
> + /** @reserved: For future use */
> + u8 reserved;
> +} __packed;
> +
> +/**
> + * struct xe_ras_error_product - Error fields that are specific to the product
> + */
> +struct xe_ras_error_product {
> + /** @unit: Unit within IP block */
> + struct xe_ras_error_unit unit;
> + /** @cause: Cause/checker */
> + struct xe_ras_error_cause cause;
> +} __packed;
> +
> +/**
> + * struct xe_ras_error_class - Combines common and product-specific parts
> + */
> +struct xe_ras_error_class {
> + /** @common: Common error type and component */
> + struct xe_ras_error_common common;
> + /** @product: Product-specific unit and cause */
> + struct xe_ras_error_product product;
> +} __packed;
> +
> +/**
> + * struct xe_ras_threshold_crossed - Data for threshold crossed event
> + */
> +struct xe_ras_threshold_crossed {
> + /** @ncounters: Number of error counters that crossed thresholds */
> + u32 ncounters;
> + /** @counters: Array of error counters that crossed threshold */
> + struct xe_ras_error_class counters[XE_RAS_NUM_COUNTERS];
> +} __packed;
> +
> +#endif
> diff --git a/drivers/gpu/drm/xe/xe_sysctrl_event.c b/drivers/gpu/drm/xe/xe_sysctrl_event.c
> index 3edde46a9711..c6ea32f3471e 100644
> --- a/drivers/gpu/drm/xe/xe_sysctrl_event.c
> +++ b/drivers/gpu/drm/xe/xe_sysctrl_event.c
> @@ -6,6 +6,7 @@
> #include "xe_device.h"
> #include "xe_irq.h"
> #include "xe_printk.h"
> +#include "xe_ras.h"
> #include "xe_sysctrl.h"
> #include "xe_sysctrl_event_types.h"
> #include "xe_sysctrl_mailbox.h"
> @@ -34,7 +35,7 @@ static void get_pending_event(struct xe_sysctrl *sc, struct xe_sysctrl_mailbox_c
> }
>
> if (response->event == XE_SYSCTRL_EVENT_THRESHOLD_CROSSED)
> - xe_warn(xe, "[RAS]: counter threshold crossed\n");
> + xe_ras_counter_threshold_crossed(xe, response);
> else
> xe_err(xe, "sysctrl: unexpected event %#x\n", response->event);
>
[-- Attachment #2: Type: text/html, Size: 44318 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-04-13 5:56 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-10 10:27 [PATCH v6 0/3] Introduce Xe Correctable Error Handling Raag Jadav
2026-04-10 10:27 ` [PATCH v6 1/3] drm/xe/sysctrl: Add system controller interrupt handler Raag Jadav
2026-04-10 10:27 ` [PATCH v6 2/3] drm/xe/sysctrl: Add system controller event support Raag Jadav
2026-04-10 10:27 ` [PATCH v6 3/3] drm/xe/ras: Introduce correctable error handling Raag Jadav
2026-04-13 5:56 ` Mallesh, Koujalagi
2026-04-10 12:19 ` ✗ CI.checkpatch: warning for Introduce Xe Correctable Error Handling (rev6) Patchwork
2026-04-10 12:20 ` ✓ CI.KUnit: success " Patchwork
2026-04-10 13:06 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-10 20:19 ` ✗ 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