* [PATCH v3 0/7] drm/xe: Capture additional HW register state in devcoredump
@ 2026-09-03 14:18 Nareshkumar Gollakoti
2026-09-03 14:18 ` [PATCH v3 1/7] drm/xe/devcoredump: Capture GT fuse registers " Nareshkumar Gollakoti
` (10 more replies)
0 siblings, 11 replies; 14+ messages in thread
From: Nareshkumar Gollakoti @ 2026-09-03 14:18 UTC (permalink / raw)
To: intel-xe
Cc: himal.prasad.ghimiray, arvind.yadav, tejas.upadhyay,
Nareshkumar Gollakoti
This series extends the Xe devcoredump with additional hardware register
state to improve post-mortem debugging of GPU hangs and faults on Xe3p.
Today the devcoredump captures GuC log/CT, engine and submission state.
When triaging hangs it is often necessary to also know the static HW
configuration (fuses), GuC status/error state, GAM page-fault reporting
and L3 node status at the time of the hang. Collecting these at capture
time makes the dump self-contained and avoids relying on separate
probe-time logging.
To do this, the series adds a small generic MMIO register-dump helper
(descriptor list -> snapshot -> print/free) and uses it for several
register groups. Each group is captured for both the primary GT and,
where applicable, the media GT, and is gated to Xe3p (GRAPHICS_VER >= 35).
Registers requiring MCR steering are read through
xe_gt_mcr_unicast_read_any(); the remaining GAM registers use INSTANCE0
default steering and are read directly.
Snapshots are allocated with GFP_ATOMIC as capture runs inside the
dma_fence signalling section, matching the surrounding captures, and are
freed in the existing devcoredump teardown path.
Patches:
1 Add the generic reg-dump helpers and capture GT/media fuse registers.
2 Capture GT and media GuC status/error registers.
3 Print register offsets alongside names in the GuC engine capture
output (32- and 64-bit), easing cross-reference with the bspec.
4 Capture the GAM page-fault report head/tail registers.
5 Add the TDL gfx registers to the XeHPG extended GuC capture list.
6 Capture L3 node status registers (MCR, read via unicast_read_any()).
Sample devcoredump output gains the following sections:
**** GT Fuse Register Dump ****
**** Media GT Fuse Register Dump ****
**** GT GuC Register Dump ****
**** Media GT GuC Register Dump ****
**** GAM PF Report ****
**** Node Status ****
**** Additional engine state registers ****
v3:(Sashiko)
- Use the LOW_DW MMIO offset when printing combined 64-bit register values
in capture snapshots
- Preserve the existing coredump register-name format and append register
address as trailing metadata
- Replace the render is not awake message with raw POWERGATE_ENABLE
bit-state output
- Move engine-class-specific registers out of COMMON_BASE_ENGINE_INSTANCE
into class-specific capture lists
Nareshkumar Gollakoti (7):
drm/xe/devcoredump: Capture GT fuse registers in devcoredump
drm/xe/devcoredump: Add GuC register snapshot to devcoredump
drm/xe/guc: Print register addresses in capture snapshot output
drm/xe: dump GAM page fault report registers in devcoredump
drm/xe/guc: add TDL,SLICE gfx registers to capture list
drm/xe: capture L3 node status registers in devcoredump
drm/xe/guc: capture additional engine state registers
drivers/gpu/drm/xe/regs/xe_engine_regs.h | 22 ++
drivers/gpu/drm/xe/regs/xe_gt_regs.h | 15 +
drivers/gpu/drm/xe/regs/xe_guc_regs.h | 5 +
drivers/gpu/drm/xe/xe_devcoredump.c | 392 ++++++++++++++++++++++
drivers/gpu/drm/xe/xe_devcoredump_types.h | 49 +++
drivers/gpu/drm/xe/xe_device.h | 5 +
drivers/gpu/drm/xe/xe_guc_capture.c | 58 +++-
7 files changed, 536 insertions(+), 10 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH v3 1/7] drm/xe/devcoredump: Capture GT fuse registers in devcoredump
2026-09-03 14:18 [PATCH v3 0/7] drm/xe: Capture additional HW register state in devcoredump Nareshkumar Gollakoti
@ 2026-09-03 14:18 ` Nareshkumar Gollakoti
2026-09-03 14:32 ` sashiko-bot
2026-09-03 14:18 ` [PATCH v3 2/7] drm/xe/devcoredump: Add GuC register snapshot to devcoredump Nareshkumar Gollakoti
` (9 subsequent siblings)
10 siblings, 1 reply; 14+ messages in thread
From: Nareshkumar Gollakoti @ 2026-09-03 14:18 UTC (permalink / raw)
To: intel-xe
Cc: himal.prasad.ghimiray, arvind.yadav, tejas.upadhyay,
Nareshkumar Gollakoti
Capture fuse-related GT register state in the Xe devcoredump to preserve
additional hardware configuration information for postmortem debugging.
Add generic register snapshot storage and helpers for capturing,
printing, and freeing MMIO register dumps. Use them to record both
primary GT and media GT fuse register state during devcoredump snapshot
collection and print the captured values in the coredump output.
Also add the required GT register definitions for RPM and mirror
copy-enable state used by the new dump paths.
v2:(Sashiko)
- Fix GT/media fuse snapshot capture to use the correct GT context.
- Add non-fault GT force wake for cross-GT register capture.
- Skip reading registers when SR-IOV VF.
- Skip media GT capture when media GT is absent.
- Add RPM snapshot print/free handling explicitly.
- Add POWERGATE_ENABLE register to get render awake status
v3:(Sashiko)
- Check RENDER_POWERGATE_ENABLE of POWERGATE_ENABLE register
- Replace "render is not awake" message with "render powergating
appears not enabled"
Signed-off-by: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
---
drivers/gpu/drm/xe/regs/xe_gt_regs.h | 4 +
drivers/gpu/drm/xe/xe_devcoredump.c | 255 ++++++++++++++++++++++
drivers/gpu/drm/xe/xe_devcoredump_types.h | 39 ++++
drivers/gpu/drm/xe/xe_device.h | 5 +
4 files changed, 303 insertions(+)
diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
index 48c515d91882..19f0a65cc3d2 100644
--- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
@@ -22,6 +22,8 @@
#define MTL_CC_MASK REG_GENMASK(12, 9)
#define MTL_CRST 0xf
+#define RPM_GCD XE_REG(0xc98)
+
/* RPM unit config (Gen8+) */
#define RPM_CONFIG0 XE_REG(0xd00)
#define RPM_CONFIG0_CRYSTAL_CLOCK_FREQ_MASK REG_GENMASK(5, 3)
@@ -274,6 +276,8 @@
#define SERVICE_COPY_ENABLE XE_REG(0x9170)
#define FUSE_SERVICE_COPY_ENABLE_MASK REG_GENMASK(7, 0)
+#define COPY_ENABLE_GTFS_GCD XE_REG(0x9174)
+
#define GDRST XE_REG(0x941c)
#define GRDOM_GUC REG_BIT(3)
#define GRDOM_FULL REG_BIT(0)
diff --git a/drivers/gpu/drm/xe/xe_devcoredump.c b/drivers/gpu/drm/xe/xe_devcoredump.c
index 5f2b90b18f97..fe38bb2296be 100644
--- a/drivers/gpu/drm/xe/xe_devcoredump.c
+++ b/drivers/gpu/drm/xe/xe_devcoredump.c
@@ -25,6 +25,8 @@
#include "xe_pm.h"
#include "xe_sched_job.h"
#include "xe_vm.h"
+#include "xe_mmio.h"
+#include "regs/xe_gt_regs.h"
/**
* DOC: Xe device coredump
@@ -69,6 +71,233 @@
/* 1 hour timeout */
#define XE_COREDUMP_TIMEOUT_JIFFIES (60 * 60 * HZ)
+/**
+ * struct xe_reg_desc - Register descriptor struct to make reg list
+ *
+ * This struct is used as descriptor containting reg address and name
+ * of the register to dump its value during coredump for debug purpose.
+ */
+struct xe_reg_desc {
+ /** @reg: The register */
+ struct xe_reg reg;
+ /** @name: Name of the register */
+ const char *name;
+};
+
+#define XE_REG_DESC(_reg, _name) { .reg = (_reg), .name = (_name) }
+
+static const struct xe_reg_desc xe3p_gt_fuse_reglist[] = {
+ XE_REG_DESC(XELP_GT_GEOMETRY_DSS_ENABLE, "GT_GEOMETRY_DSS_ENABLE"),
+ XE_REG_DESC(XEHP_GT_COMPUTE_DSS_ENABLE, "GT_COMPUTE_DSS_ENABLE"),
+ XE_REG_DESC(XELP_EU_ENABLE, "EU_ENABLE"),
+ XE_REG_DESC(MIRROR_FUSE1, "MIRROR_FUSE1"),
+ XE_REG_DESC(GT_VEBOX_VDBOX_DISABLE, "GT_VEBOX_VDBOX_DISABLE"),
+ XE_REG_DESC(SERVICE_COPY_ENABLE, "SERVICE_COPY_ENABLE"),
+ XE_REG_DESC(COPY_ENABLE_GTFS_GCD, "COPY_ENABLE_GTFS_GCD"),
+ XE_REG_DESC(XE2_GT_GEOMETRY_DSS_1, "GT_GEOMETRY_DSS_1"),
+ XE_REG_DESC(XE2_GT_GEOMETRY_DSS_2, "GT_GEOMETRY_DSS_2"),
+ XE_REG_DESC(XE2_GT_COMPUTE_DSS_2, "GT_COMPUTE_DSS_2"),
+ XE_REG_DESC(XEHPC_GT_COMPUTE_DSS_ENABLE_EXT, "GT_COMPUTE_DSS_ENABLE_EXT"),
+ XE_REG_DESC(XE3P_XPC_GT_GEOMETRY_DSS_3, "GT_GEOMETRY_DSS_3"),
+ XE_REG_DESC(XE3P_XPC_GT_COMPUTE_DSS_3, "GT_COMPUTE_DSS_3"),
+};
+
+static const struct xe_reg_desc xe3p_media_gt_fuse_reglist[] = {
+ XE_REG_DESC(SERVICE_COPY_ENABLE, "SERVICE_COPY_ENABLE"),
+ XE_REG_DESC(COPY_ENABLE_GTFS_GCD, "COPY_ENABLE_GTFS_GCD"),
+};
+
+static const struct xe_reg_desc xe3p_gt_rpm_reglist[] = {
+ XE_REG_DESC(RPM_GCD, "RPM_GCD"),
+ XE_REG_DESC(POWERGATE_ENABLE, "POWERGATE_ENABLE"),
+};
+
+static const struct xe_reg_desc xe3p_media_gt_rpm_reglist[] = {
+ XE_REG_DESC(RPM_GCD, "RPM_GCD"),
+};
+
+/**
+ * struct xe_reg_desc_list - Struct for register descriptor list
+ *
+ * This struct is used to reference the corresponding reglist of
+ * various component
+ */
+struct xe_reg_desc_list {
+ /** @regs: Pointer to an array of register descriptors. */
+ const struct xe_reg_desc *regs;
+ /** @num_regs: refernce for num regs in reg descriptor*/
+ u32 num_regs;
+};
+
+/**
+ * struct xe_gt_regset - Struct for register descriptor list for GT
+ *
+ * This struct is used to reference the corresponding reglist of
+ * GT and media GT
+ */
+struct xe_gt_regset {
+ struct xe_reg_desc_list gt[XE_MAX_GT_PER_TILE + 1];
+};
+
+static const struct xe_gt_regset xe_fuse_regset = {
+ .gt[XE_GT_TYPE_MAIN] = {
+ .regs = xe3p_gt_fuse_reglist,
+ .num_regs = ARRAY_SIZE(xe3p_gt_fuse_reglist),
+ },
+ .gt[XE_GT_TYPE_MEDIA] = {
+ .regs = xe3p_media_gt_fuse_reglist,
+ .num_regs = ARRAY_SIZE(xe3p_media_gt_fuse_reglist),
+ },
+};
+
+static const struct xe_gt_regset xe_rpm_regset = {
+ .gt[XE_GT_TYPE_MAIN] = {
+ .regs = xe3p_gt_rpm_reglist,
+ .num_regs = ARRAY_SIZE(xe3p_gt_rpm_reglist),
+ },
+ .gt[XE_GT_TYPE_MEDIA] = {
+ .regs = xe3p_media_gt_rpm_reglist,
+ .num_regs = ARRAY_SIZE(xe3p_media_gt_rpm_reglist),
+ },
+};
+
+#define XE_GT_REG_LIST(_type, _gt_type) \
+ (&xe_##_type##_regset.gt[XE_GT_TYPE_##_gt_type])
+
+static void
+xe_capture_reg_desc_list(struct xe_gt *gt,
+ struct xe_reg_dump_snapshot *dst,
+ const struct xe_reg_desc *src,
+ u32 count)
+{
+ u32 i;
+
+ for (i = 0; i < count; i++) {
+ dst[i].reg = src[i].reg;
+ dst[i].value = xe_mmio_read32(>->mmio, src[i].reg);
+ dst[i].name = src[i].name;
+ }
+}
+
+static struct xe_dbg_reg_snapshot *
+xe_dbg_reg_snapshot_capture(struct xe_gt *gt,
+ const struct xe_reg_desc_list *reglist)
+{
+ struct xe_dbg_reg_snapshot *snap;
+
+ if (!gt || !xe_dbg_reg_snapshot_is_supported(gt_to_xe(gt)))
+ return NULL;
+
+ if (IS_SRIOV_VF(gt_to_xe(gt)))
+ return NULL;
+
+ if (!reglist->regs || !reglist->num_regs)
+ return NULL;
+
+ snap = kzalloc(struct_size(snap, regs, reglist->num_regs), GFP_ATOMIC);
+ if (!snap)
+ return NULL;
+
+ snap->num_regs = reglist->num_regs;
+
+ xe_capture_reg_desc_list(gt, snap->regs, reglist->regs, reglist->num_regs);
+
+ return snap;
+}
+
+static void xe_dbg_reg_snapshot_print(struct drm_printer *p,
+ const struct xe_dbg_reg_snapshot *snap)
+{
+ u32 i;
+
+ if (!snap)
+ return;
+
+ for (i = 0; i < snap->num_regs; i++)
+ drm_printf(p, " %s [0x%x] = 0x%08x\n",
+ snap->regs[i].name,
+ snap->regs[i].reg.addr,
+ snap->regs[i].value);
+}
+
+static void xe_dbg_reg_snapshot_free(struct xe_dbg_reg_snapshot *snap)
+{
+ kfree(snap);
+}
+
+static void xe_gt_rpm_snapshot_print(struct drm_printer *p,
+ const struct xe_dbg_reg_snapshot *snap)
+{
+ xe_dbg_reg_snapshot_print(p, snap);
+
+ if (snap && snap->num_regs >= 2 &&
+ !(snap->regs[1].value & RENDER_POWERGATE_ENABLE))
+ drm_puts(p, "render powergating appears not enabled\n");
+}
+
+static struct xe_dbg_reg_snapshot *
+xe_dbg_reg_snapshot_capture_target(struct xe_gt *fault_gt,
+ struct xe_gt *target_gt,
+ const struct xe_reg_desc_list *reglist)
+{
+ if (!fault_gt || !target_gt)
+ return NULL;
+
+ if (target_gt != fault_gt) {
+ CLASS(xe_force_wake, fw_ref)(gt_to_fw(target_gt),
+ XE_FORCEWAKE_ALL);
+ if (!xe_force_wake_ref_has_domain(fw_ref.domains, XE_FORCEWAKE_ALL))
+ return NULL;
+
+ return xe_dbg_reg_snapshot_capture(target_gt, reglist);
+ }
+
+ return xe_dbg_reg_snapshot_capture(target_gt, reglist);
+}
+
+static struct xe_dbg_reg_snapshot *
+xe_gt_fuse_snapshot_capture(struct xe_gt *gt)
+{
+ if (!gt || !gt->tile || !gt->tile->primary_gt)
+ return NULL;
+
+ return xe_dbg_reg_snapshot_capture_target(gt,
+ gt->tile->primary_gt,
+ XE_GT_REG_LIST(fuse, MAIN));
+}
+
+static struct xe_dbg_reg_snapshot *
+xe_media_gt_fuse_snapshot_capture(struct xe_gt *gt)
+{
+ if (!gt || !gt->tile || !gt->tile->media_gt)
+ return NULL;
+
+ return xe_dbg_reg_snapshot_capture_target(gt,
+ gt->tile->media_gt,
+ XE_GT_REG_LIST(fuse, MEDIA));
+}
+
+static struct xe_dbg_reg_snapshot *xe_gt_rpm_snapshot_capture(struct xe_gt *gt)
+{
+ if (!gt || !gt->tile || !gt->tile->primary_gt)
+ return NULL;
+
+ return xe_dbg_reg_snapshot_capture_target(gt,
+ gt->tile->primary_gt,
+ XE_GT_REG_LIST(rpm, MAIN));
+}
+
+static struct xe_dbg_reg_snapshot *
+xe_media_gt_rpm_snapshot_capture(struct xe_gt *gt)
+{
+ if (!gt || !gt->tile || !gt->tile->media_gt)
+ return NULL;
+
+ return xe_dbg_reg_snapshot_capture_target(gt,
+ gt->tile->media_gt,
+ XE_GT_REG_LIST(rpm, MEDIA));
+}
+
static struct xe_device *coredump_to_xe(const struct xe_devcoredump *coredump)
{
return container_of(coredump, struct xe_device, devcoredump);
@@ -114,6 +343,15 @@ static ssize_t __xe_devcoredump_read(char *buffer, ssize_t count,
drm_printf(&p, "\n**** GT #%d ****\n", ss->gt->info.id);
drm_printf(&p, "\tTile: %d\n", ss->gt->tile->id);
+ drm_printf(&p, "\n**** GT Fuse Register Dump ****\n");
+ xe_dbg_reg_snapshot_print(&p, ss->gt_fuse);
+ drm_printf(&p, "\n**** Media GT Fuse Register Dump ****\n");
+ xe_dbg_reg_snapshot_print(&p, ss->media_fuse);
+ drm_printf(&p, "\n**** GT RPM Register Dump ****\n");
+ xe_gt_rpm_snapshot_print(&p, ss->gt_rpm);
+ drm_printf(&p, "\n**** Media GT RPM Register Dump ****\n");
+ xe_dbg_reg_snapshot_print(&p, ss->media_gt_rpm);
+
drm_puts(&p, "\n**** GuC Log ****\n");
xe_guc_log_snapshot_print(ss->guc.log, &p);
drm_puts(&p, "\n**** GuC CT ****\n");
@@ -149,6 +387,18 @@ static void xe_devcoredump_snapshot_free(struct xe_devcoredump_snapshot *ss)
xe_guc_ct_snapshot_free(ss->guc.ct);
ss->guc.ct = NULL;
+ xe_dbg_reg_snapshot_free(ss->gt_fuse);
+ ss->gt_fuse = NULL;
+
+ xe_dbg_reg_snapshot_free(ss->media_fuse);
+ ss->media_fuse = NULL;
+
+ xe_dbg_reg_snapshot_free(ss->gt_rpm);
+ ss->gt_rpm = NULL;
+
+ xe_dbg_reg_snapshot_free(ss->media_gt_rpm);
+ ss->media_gt_rpm = NULL;
+
if (!IS_ERR_OR_NULL(ss->gt))
xe_guc_capture_put_matched_nodes(&ss->gt->uc.guc);
ss->matched_node = NULL;
@@ -349,6 +599,11 @@ static void devcoredump_snapshot(struct xe_devcoredump *coredump,
cookie = dma_fence_begin_signalling();
+ ss->gt_fuse = xe_gt_fuse_snapshot_capture(q->gt);
+ ss->media_fuse = xe_media_gt_fuse_snapshot_capture(q->gt);
+ ss->gt_rpm = xe_gt_rpm_snapshot_capture(q->gt);
+ ss->media_gt_rpm = xe_media_gt_rpm_snapshot_capture(q->gt);
+
ss->guc.log = xe_guc_log_snapshot_capture(&guc->log, true);
ss->guc.ct = xe_guc_ct_snapshot_capture(&guc->ct);
ss->ge = xe_guc_exec_queue_snapshot_capture(q);
diff --git a/drivers/gpu/drm/xe/xe_devcoredump_types.h b/drivers/gpu/drm/xe/xe_devcoredump_types.h
index a174385a6d83..75f317a5fe36 100644
--- a/drivers/gpu/drm/xe/xe_devcoredump_types.h
+++ b/drivers/gpu/drm/xe/xe_devcoredump_types.h
@@ -14,6 +14,35 @@
struct xe_device;
struct xe_gt;
+/**
+ * struct xe_reg_dump_snapshot - dump register snapshot
+ *
+ * This struct is used as generic reg dump snapshot in the format of
+ * register, its value and its name for human readable format.
+ */
+struct xe_reg_dump_snapshot {
+ /** @reg: xe register structure*/
+ struct xe_reg reg;
+ /** @value: Value of the register*/
+ u32 value;
+ /** @name: Name of the register */
+ const char *name;
+};
+
+/**
+ * struct xe_dbg_reg_snapshot - Register snapshot
+ *
+ * This struct contains the register values captured at the time of the crash.
+ * It is used to store the register values in a human-readable format for
+ * debugging purposes.
+ */
+struct xe_dbg_reg_snapshot {
+ /** @num_regs: Number of registers needed for capture. */
+ u32 num_regs;
+ /** @regs: Pointer to an array of register dump snapshot. */
+ struct xe_reg_dump_snapshot regs[];
+};
+
/**
* struct xe_devcoredump_snapshot - Crash snapshot
*
@@ -35,6 +64,16 @@ struct xe_devcoredump_snapshot {
/** @gt: Affected GT, used by forcewake for delayed capture */
struct xe_gt *gt;
+
+ /** @gt_fuse: Fuse snapshot */
+ struct xe_dbg_reg_snapshot *gt_fuse;
+ /** @media_fuse: Media Fuse snapshot */
+ struct xe_dbg_reg_snapshot *media_fuse;
+ /** @gt_rpm: GT RPM snapshot */
+ struct xe_dbg_reg_snapshot *gt_rpm;
+ /** @media_gt_rpm: Media GT RPM snapshot */
+ struct xe_dbg_reg_snapshot *media_gt_rpm;
+
/** @work: Workqueue for deferred capture outside of signaling context */
struct work_struct work;
diff --git a/drivers/gpu/drm/xe/xe_device.h b/drivers/gpu/drm/xe/xe_device.h
index 6c4cfaebc44a..e05951b6988b 100644
--- a/drivers/gpu/drm/xe/xe_device.h
+++ b/drivers/gpu/drm/xe/xe_device.h
@@ -260,6 +260,11 @@ static inline bool xe_debug_page_size_mode_is_mixed(struct xe_device *xe)
}
#endif
+static inline bool xe_dbg_reg_snapshot_is_supported(struct xe_device *xe)
+{
+ return (GRAPHICS_VER(xe) >= 35);
+}
+
void xe_device_set_wedged_method(struct xe_device *xe, unsigned long method);
void xe_device_declare_wedged(struct xe_device *xe);
int xe_device_validate_wedged_mode(struct xe_device *xe, unsigned int mode);
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH v3 2/7] drm/xe/devcoredump: Add GuC register snapshot to devcoredump
2026-09-03 14:18 [PATCH v3 0/7] drm/xe: Capture additional HW register state in devcoredump Nareshkumar Gollakoti
2026-09-03 14:18 ` [PATCH v3 1/7] drm/xe/devcoredump: Capture GT fuse registers " Nareshkumar Gollakoti
@ 2026-09-03 14:18 ` Nareshkumar Gollakoti
2026-09-03 14:18 ` [PATCH v3 3/7] drm/xe/guc: Print register addresses in capture snapshot output Nareshkumar Gollakoti
` (8 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Nareshkumar Gollakoti @ 2026-09-03 14:18 UTC (permalink / raw)
To: intel-xe
Cc: himal.prasad.ghimiray, arvind.yadav, tejas.upadhyay,
Nareshkumar Gollakoti
Add support for capturing GuC register state as part of the xe
devcoredump snapshot.
Define a dedicated GuC register snapshot structure, record selected
GT and media GuC status/error registers during devcoredump capture,
and free the snapshot during teardown.
Keeping these register values in the devcoredump helps with
post-mortem analysis of GuC-related failures.
v2:(Sashiko)
- Reuse the generic target GT snapshot helper for GuC register capture
- Capture primary and media GuC registers using correct GT MMIO context
- Avoid reading the same on SR-IOV VF
- skip reading media GT GuC registers when media is not present
- drop hardcoded media register address macros
Signed-off-by: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
---
drivers/gpu/drm/xe/regs/xe_guc_regs.h | 5 ++
drivers/gpu/drm/xe/xe_devcoredump.c | 58 +++++++++++++++++++++++
drivers/gpu/drm/xe/xe_devcoredump_types.h | 5 ++
3 files changed, 68 insertions(+)
diff --git a/drivers/gpu/drm/xe/regs/xe_guc_regs.h b/drivers/gpu/drm/xe/regs/xe_guc_regs.h
index 5faac8316b66..c13ee6e21e37 100644
--- a/drivers/gpu/drm/xe/regs/xe_guc_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_guc_regs.h
@@ -150,6 +150,11 @@
#define GUC_INTR_SW_INT_1 REG_BIT(1)
#define GUC_INTR_SW_INT_0 REG_BIT(0)
+#define GUC_DEVICEID XE_REG(0xc008)
+#define GUC_SHIM_ERR_TRAP XE_REG(0xc070)
+#define GUC_HW_FATL_ERR XE_REG(0xc598)
+#define GUC_HW_NOTIFY_ERR XE_REG(0xc59c)
+
#define GUC_NUM_DOORBELLS 256
/* format of the HW-monitored doorbell cacheline */
diff --git a/drivers/gpu/drm/xe/xe_devcoredump.c b/drivers/gpu/drm/xe/xe_devcoredump.c
index fe38bb2296be..5c89aa4f71df 100644
--- a/drivers/gpu/drm/xe/xe_devcoredump.c
+++ b/drivers/gpu/drm/xe/xe_devcoredump.c
@@ -27,6 +27,7 @@
#include "xe_vm.h"
#include "xe_mmio.h"
#include "regs/xe_gt_regs.h"
+#include "regs/xe_guc_regs.h"
/**
* DOC: Xe device coredump
@@ -86,6 +87,16 @@ struct xe_reg_desc {
#define XE_REG_DESC(_reg, _name) { .reg = (_reg), .name = (_name) }
+static const struct xe_reg_desc xe3p_gt_guc_reglist[] = {
+ XE_REG_DESC(GUC_STATUS, "GUC_STATUS"),
+ XE_REG_DESC(GUC_WOPCM_SIZE, "GUC_WOPCM_SIZE"),
+ XE_REG_DESC(GUC_DEVICEID, "GUC_DEVICEID"),
+ XE_REG_DESC(DMA_CTRL, "DMA_CTRL"),
+ XE_REG_DESC(GUC_HW_FATL_ERR, "GUC_HW_FATL_ERR"),
+ XE_REG_DESC(GUC_HW_NOTIFY_ERR, "GUC_HW_NOTIFY_ERR"),
+ XE_REG_DESC(GUC_SHIM_ERR_TRAP, "GUC_SHIM_ERR_TRAP"),
+};
+
static const struct xe_reg_desc xe3p_gt_fuse_reglist[] = {
XE_REG_DESC(XELP_GT_GEOMETRY_DSS_ENABLE, "GT_GEOMETRY_DSS_ENABLE"),
XE_REG_DESC(XEHP_GT_COMPUTE_DSS_ENABLE, "GT_COMPUTE_DSS_ENABLE"),
@@ -161,6 +172,17 @@ static const struct xe_gt_regset xe_rpm_regset = {
},
};
+static const struct xe_gt_regset xe_guc_regset = {
+ .gt[XE_GT_TYPE_MAIN] = {
+ .regs = xe3p_gt_guc_reglist,
+ .num_regs = ARRAY_SIZE(xe3p_gt_guc_reglist),
+ },
+ .gt[XE_GT_TYPE_MEDIA] = {
+ .regs = xe3p_gt_guc_reglist,
+ .num_regs = ARRAY_SIZE(xe3p_gt_guc_reglist),
+ },
+};
+
#define XE_GT_REG_LIST(_type, _gt_type) \
(&xe_##_type##_regset.gt[XE_GT_TYPE_##_gt_type])
@@ -298,6 +320,28 @@ xe_media_gt_rpm_snapshot_capture(struct xe_gt *gt)
XE_GT_REG_LIST(rpm, MEDIA));
}
+static struct xe_dbg_reg_snapshot *
+xe_gt_guc_reg_snapshot_capture(struct xe_gt *gt)
+{
+ if (!gt || !gt->tile || !gt->tile->primary_gt)
+ return NULL;
+
+ return xe_dbg_reg_snapshot_capture_target(gt,
+ gt->tile->primary_gt,
+ XE_GT_REG_LIST(guc, MAIN));
+}
+
+static struct xe_dbg_reg_snapshot *
+xe_media_gt_guc_reg_snapshot_capture(struct xe_gt *gt)
+{
+ if (!gt || !gt->tile || !gt->tile->media_gt)
+ return NULL;
+
+ return xe_dbg_reg_snapshot_capture_target(gt,
+ gt->tile->media_gt,
+ XE_GT_REG_LIST(guc, MEDIA));
+}
+
static struct xe_device *coredump_to_xe(const struct xe_devcoredump *coredump)
{
return container_of(coredump, struct xe_device, devcoredump);
@@ -352,6 +396,11 @@ static ssize_t __xe_devcoredump_read(char *buffer, ssize_t count,
drm_printf(&p, "\n**** Media GT RPM Register Dump ****\n");
xe_dbg_reg_snapshot_print(&p, ss->media_gt_rpm);
+ drm_printf(&p, "\n**** GT GuC Register Dump ****\n");
+ xe_dbg_reg_snapshot_print(&p, ss->gt_guc_reg);
+ drm_printf(&p, "\n**** Media GT GuC Register Dump ****\n");
+ xe_dbg_reg_snapshot_print(&p, ss->media_gt_guc_reg);
+
drm_puts(&p, "\n**** GuC Log ****\n");
xe_guc_log_snapshot_print(ss->guc.log, &p);
drm_puts(&p, "\n**** GuC CT ****\n");
@@ -399,6 +448,12 @@ static void xe_devcoredump_snapshot_free(struct xe_devcoredump_snapshot *ss)
xe_dbg_reg_snapshot_free(ss->media_gt_rpm);
ss->media_gt_rpm = NULL;
+ xe_dbg_reg_snapshot_free(ss->gt_guc_reg);
+ ss->gt_guc_reg = NULL;
+
+ xe_dbg_reg_snapshot_free(ss->media_gt_guc_reg);
+ ss->media_gt_guc_reg = NULL;
+
if (!IS_ERR_OR_NULL(ss->gt))
xe_guc_capture_put_matched_nodes(&ss->gt->uc.guc);
ss->matched_node = NULL;
@@ -604,6 +659,9 @@ static void devcoredump_snapshot(struct xe_devcoredump *coredump,
ss->gt_rpm = xe_gt_rpm_snapshot_capture(q->gt);
ss->media_gt_rpm = xe_media_gt_rpm_snapshot_capture(q->gt);
+ ss->gt_guc_reg = xe_gt_guc_reg_snapshot_capture(q->gt);
+ ss->media_gt_guc_reg = xe_media_gt_guc_reg_snapshot_capture(q->gt);
+
ss->guc.log = xe_guc_log_snapshot_capture(&guc->log, true);
ss->guc.ct = xe_guc_ct_snapshot_capture(&guc->ct);
ss->ge = xe_guc_exec_queue_snapshot_capture(q);
diff --git a/drivers/gpu/drm/xe/xe_devcoredump_types.h b/drivers/gpu/drm/xe/xe_devcoredump_types.h
index 75f317a5fe36..4671e00558db 100644
--- a/drivers/gpu/drm/xe/xe_devcoredump_types.h
+++ b/drivers/gpu/drm/xe/xe_devcoredump_types.h
@@ -74,6 +74,11 @@ struct xe_devcoredump_snapshot {
/** @media_gt_rpm: Media GT RPM snapshot */
struct xe_dbg_reg_snapshot *media_gt_rpm;
+ /** @gt_guc_reg: gt guc reg snapshot */
+ struct xe_dbg_reg_snapshot *gt_guc_reg;
+ /** @media_gt_guc_reg: media gt guc reg snapshot */
+ struct xe_dbg_reg_snapshot *media_gt_guc_reg;
+
/** @work: Workqueue for deferred capture outside of signaling context */
struct work_struct work;
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH v3 3/7] drm/xe/guc: Print register addresses in capture snapshot output
2026-09-03 14:18 [PATCH v3 0/7] drm/xe: Capture additional HW register state in devcoredump Nareshkumar Gollakoti
2026-09-03 14:18 ` [PATCH v3 1/7] drm/xe/devcoredump: Capture GT fuse registers " Nareshkumar Gollakoti
2026-09-03 14:18 ` [PATCH v3 2/7] drm/xe/devcoredump: Add GuC register snapshot to devcoredump Nareshkumar Gollakoti
@ 2026-09-03 14:18 ` Nareshkumar Gollakoti
2026-09-03 14:18 ` [PATCH v3 4/7] drm/xe: dump GAM page fault report registers in devcoredump Nareshkumar Gollakoti
` (7 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Nareshkumar Gollakoti @ 2026-09-03 14:18 UTC (permalink / raw)
To: intel-xe
Cc: himal.prasad.ghimiray, arvind.yadav, tejas.upadhyay,
Nareshkumar Gollakoti
Include register offsets in GuC capture snapshot print output for both
32-bit and 64-bit registers.
When dumping captured engine register state, print each register name
alongside its MMIO offset to make the snapshot output easier to
cross-reference with register definitions and hardware debug
documentation.
This improves postmortem analysis without changing capture contents.
v2:(Sashiko)
- Ensure lower DWORD prints
v3:(Sashiko)
- Use the LOW_DW MMIO offset(capture in last_address) when combined 64bit
register values in the dump instead of HI_SW offset
- preserve existing coredump register-name format and append register
address as trailing metadata as a debug info and avoids disrupting
existing format
Signed-off-by: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
---
drivers/gpu/drm/xe/xe_guc_capture.c | 18 ++++++++++++++----
1 file changed, 14 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_guc_capture.c b/drivers/gpu/drm/xe/xe_guc_capture.c
index 82df19b304e1..53171cf5e8b6 100644
--- a/drivers/gpu/drm/xe/xe_guc_capture.c
+++ b/drivers/gpu/drm/xe/xe_guc_capture.c
@@ -1716,6 +1716,7 @@ snapshot_print_by_list_order(struct xe_hw_engine_snapshot *snapshot, struct drm_
struct xe_devcoredump_snapshot *devcore_snapshot = &devcoredump->snapshot;
struct gcap_reg_list_info *reginfo = NULL;
u32 i, last_value = 0;
+ u32 last_address = 0;
bool low32_ready = false;
if (!list || !list->list || list->num_regs == 0)
@@ -1743,6 +1744,7 @@ snapshot_print_by_list_order(struct xe_hw_engine_snapshot *snapshot, struct drm_
switch (reg_desc->data_type) {
case REG_64BIT_LOW_DW:
last_value = value;
+ last_address = reg_desc->reg.addr;
/*
* A 64 bit register define requires 2 consecutive
@@ -1774,7 +1776,11 @@ snapshot_print_by_list_order(struct xe_hw_engine_snapshot *snapshot, struct drm_
XE_WARN_ON(!low32_ready);
low32_ready = false;
- drm_printf(p, "\t%s: 0x%016llx\n", reg_desc->regname, value_qw);
+ drm_printf(p, "\t%s: 0x%016llx [addr=0x%x]\n",
+ reg_desc->regname,
+ value_qw,
+ last_address);
+
break;
}
@@ -1788,10 +1794,14 @@ snapshot_print_by_list_order(struct xe_hw_engine_snapshot *snapshot, struct drm_
XE_WARN_ON(low32_ready);
if (FIELD_GET(GUC_REGSET_STEERING_NEEDED, reg_desc->flags))
- drm_printf(p, "\t%s[%u]: 0x%08x\n", reg_desc->regname,
- reg_desc->dss_id, value);
+ drm_printf(p, "\t%s[%u]: 0x%08x [addr=0x%x]\n",
+ reg_desc->regname,
+ reg_desc->dss_id, value, reg_desc->reg.addr);
+
else
- drm_printf(p, "\t%s: 0x%08x\n", reg_desc->regname, value);
+ drm_printf(p, "\t%s: 0x%08x [addr=0x%x]\n",
+ reg_desc->regname, value, reg_desc->reg.addr);
+
break;
}
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH v3 4/7] drm/xe: dump GAM page fault report registers in devcoredump
2026-09-03 14:18 [PATCH v3 0/7] drm/xe: Capture additional HW register state in devcoredump Nareshkumar Gollakoti
` (2 preceding siblings ...)
2026-09-03 14:18 ` [PATCH v3 3/7] drm/xe/guc: Print register addresses in capture snapshot output Nareshkumar Gollakoti
@ 2026-09-03 14:18 ` Nareshkumar Gollakoti
2026-09-03 14:18 ` [PATCH v3 5/7] drm/xe/guc: add TDL, SLICE gfx registers to capture list Nareshkumar Gollakoti
` (6 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Nareshkumar Gollakoti @ 2026-09-03 14:18 UTC (permalink / raw)
To: intel-xe
Cc: himal.prasad.ghimiray, arvind.yadav, tejas.upadhyay,
Nareshkumar Gollakoti
Add PAGE_FLTRPTQ_HEAD_GAMCTRL and PAGE_FLTRPTQ_TAIL_GAMCTRL to the Xe
register definitions and capture them as part of the devcoredump
snapshot.
Include the register dump in the devcoredump output and release the
snapshot during cleanup so page fault report state is available for
post-mortem debugging.
v2:
- As design change made for previous patches. refactored this patch
as well to accommodate those changes.
- Add PF occurred print when the two register values are not equal
Signed-off-by: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
---
drivers/gpu/drm/xe/regs/xe_gt_regs.h | 3 ++
drivers/gpu/drm/xe/xe_devcoredump.c | 39 +++++++++++++++++++++++
drivers/gpu/drm/xe/xe_devcoredump_types.h | 3 ++
3 files changed, 45 insertions(+)
diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
index 19f0a65cc3d2..05542f20c7b5 100644
--- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
@@ -501,6 +501,9 @@
#define LMEM_EN REG_BIT(31)
#define LMTT_DIR_PTR REG_GENMASK(30, 0) /* in multiples of 64KB */
+#define PAGE_FLTRPTQ_HEAD_GAMCTRL XE_REG(0xcf90)
+#define PAGE_FLTRPTQ_TAIL_GAMCTRL XE_REG(0xcf94)
+
#define HALF_SLICE_CHICKEN5 XE_REG_MCR(0xe188, XE_REG_OPTION_MASKED)
#define DISABLE_SAMPLE_G_PERFORMANCE REG_BIT(0)
diff --git a/drivers/gpu/drm/xe/xe_devcoredump.c b/drivers/gpu/drm/xe/xe_devcoredump.c
index 5c89aa4f71df..09e571e27660 100644
--- a/drivers/gpu/drm/xe/xe_devcoredump.c
+++ b/drivers/gpu/drm/xe/xe_devcoredump.c
@@ -127,6 +127,11 @@ static const struct xe_reg_desc xe3p_media_gt_rpm_reglist[] = {
XE_REG_DESC(RPM_GCD, "RPM_GCD"),
};
+static const struct xe_reg_desc xe3p_gam_pf_reglist[] = {
+ XE_REG_DESC(PAGE_FLTRPTQ_HEAD_GAMCTRL, "PAGE_FLTRPTQ_HEAD_GAMCTRL"),
+ XE_REG_DESC(PAGE_FLTRPTQ_TAIL_GAMCTRL, "PAGE_FLTRPTQ_TAIL_GAMCTRL"),
+};
+
/**
* struct xe_reg_desc_list - Struct for register descriptor list
*
@@ -183,6 +188,13 @@ static const struct xe_gt_regset xe_guc_regset = {
},
};
+static const struct xe_gt_regset xe_gam_pf_regset = {
+ .gt[XE_GT_TYPE_MAIN] = {
+ .regs = xe3p_gam_pf_reglist,
+ .num_regs = ARRAY_SIZE(xe3p_gam_pf_reglist),
+ },
+};
+
#define XE_GT_REG_LIST(_type, _gt_type) \
(&xe_##_type##_regset.gt[XE_GT_TYPE_##_gt_type])
@@ -257,6 +269,16 @@ static void xe_gt_rpm_snapshot_print(struct drm_printer *p,
drm_puts(p, "render powergating appears not enabled\n");
}
+static void xe_gam_pf_snapshot_print(struct drm_printer *p,
+ const struct xe_dbg_reg_snapshot *snap)
+{
+ xe_dbg_reg_snapshot_print(p, snap);
+
+ if (snap && snap->num_regs >= 2 &&
+ snap->regs[0].value != snap->regs[1].value)
+ drm_printf(p, "PF occurred, refer to dmesg log for PF info\n");
+}
+
static struct xe_dbg_reg_snapshot *
xe_dbg_reg_snapshot_capture_target(struct xe_gt *fault_gt,
struct xe_gt *target_gt,
@@ -342,6 +364,16 @@ xe_media_gt_guc_reg_snapshot_capture(struct xe_gt *gt)
XE_GT_REG_LIST(guc, MEDIA));
}
+static struct xe_dbg_reg_snapshot *xe_gam_pf_report_capture(struct xe_gt *gt)
+{
+ if (!gt || !gt->tile || !gt->tile->primary_gt)
+ return NULL;
+
+ return xe_dbg_reg_snapshot_capture_target(gt,
+ gt->tile->primary_gt,
+ XE_GT_REG_LIST(gam_pf, MAIN));
+}
+
static struct xe_device *coredump_to_xe(const struct xe_devcoredump *coredump)
{
return container_of(coredump, struct xe_device, devcoredump);
@@ -406,6 +438,9 @@ static ssize_t __xe_devcoredump_read(char *buffer, ssize_t count,
drm_puts(&p, "\n**** GuC CT ****\n");
xe_guc_ct_snapshot_print(ss->guc.ct, &p);
+ drm_printf(&p, "\n**** GAM PF Report ****\n");
+ xe_gam_pf_snapshot_print(&p, ss->gam_pf_report);
+
drm_puts(&p, "\n**** Contexts ****\n");
xe_guc_exec_queue_snapshot_print(ss->ge, &p);
@@ -458,6 +493,9 @@ static void xe_devcoredump_snapshot_free(struct xe_devcoredump_snapshot *ss)
xe_guc_capture_put_matched_nodes(&ss->gt->uc.guc);
ss->matched_node = NULL;
+ xe_dbg_reg_snapshot_free(ss->gam_pf_report);
+ ss->gam_pf_report = NULL;
+
xe_guc_exec_queue_snapshot_free(ss->ge);
ss->ge = NULL;
@@ -664,6 +702,7 @@ static void devcoredump_snapshot(struct xe_devcoredump *coredump,
ss->guc.log = xe_guc_log_snapshot_capture(&guc->log, true);
ss->guc.ct = xe_guc_ct_snapshot_capture(&guc->ct);
+ ss->gam_pf_report = xe_gam_pf_report_capture(q->gt);
ss->ge = xe_guc_exec_queue_snapshot_capture(q);
if (job)
ss->job = xe_sched_job_snapshot_capture(job);
diff --git a/drivers/gpu/drm/xe/xe_devcoredump_types.h b/drivers/gpu/drm/xe/xe_devcoredump_types.h
index 4671e00558db..ea7638d0a7a2 100644
--- a/drivers/gpu/drm/xe/xe_devcoredump_types.h
+++ b/drivers/gpu/drm/xe/xe_devcoredump_types.h
@@ -90,6 +90,9 @@ struct xe_devcoredump_snapshot {
struct xe_guc_log_snapshot *log;
} guc;
+ /** @gam_pf_report: GAM PF report snapshot */
+ struct xe_dbg_reg_snapshot *gam_pf_report;
+
/** @ge: GuC Submission Engine snapshot */
struct xe_guc_submit_exec_queue_snapshot *ge;
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH v3 5/7] drm/xe/guc: add TDL, SLICE gfx registers to capture list
2026-09-03 14:18 [PATCH v3 0/7] drm/xe: Capture additional HW register state in devcoredump Nareshkumar Gollakoti
` (3 preceding siblings ...)
2026-09-03 14:18 ` [PATCH v3 4/7] drm/xe: dump GAM page fault report registers in devcoredump Nareshkumar Gollakoti
@ 2026-09-03 14:18 ` Nareshkumar Gollakoti
2026-09-03 14:18 ` [PATCH v3 6/7] drm/xe: capture L3 node status registers in devcoredump Nareshkumar Gollakoti
` (5 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Nareshkumar Gollakoti @ 2026-09-03 14:18 UTC (permalink / raw)
To: intel-xe
Cc: himal.prasad.ghimiray, arvind.yadav, tejas.upadhyay,
Nareshkumar Gollakoti
Add ROW_INSTDONE_TDL_GFX, SS_LSC_HDC_IDLE_TDL_GFX and SLICE_ARB_STATUS
register definitions and include them in the XeHPG extended GuC capture
register list.
v2:(Sashiko)
- Refactored ROW_INSTDONE_TDL_GFX to ROW_INSTDONE_TDL_GFX
- Add SLICE_ARB_STATUS register to xeHP register list
- Refactor commit message
Signed-off-by: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
---
drivers/gpu/drm/xe/regs/xe_gt_regs.h | 5 +++++
drivers/gpu/drm/xe/xe_guc_capture.c | 5 ++++-
2 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
index 05542f20c7b5..b3ce7074f7d7 100644
--- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
@@ -504,6 +504,8 @@
#define PAGE_FLTRPTQ_HEAD_GAMCTRL XE_REG(0xcf90)
#define PAGE_FLTRPTQ_TAIL_GAMCTRL XE_REG(0xcf94)
+#define SLICE_ARB_STATUS XE_REG_MCR(0xd814)
+
#define HALF_SLICE_CHICKEN5 XE_REG_MCR(0xe188, XE_REG_OPTION_MASKED)
#define DISABLE_SAMPLE_G_PERFORMANCE REG_BIT(0)
@@ -568,6 +570,9 @@
#define EU_SYSTOLIC_LIC_THROTTLE_CTL_WITH_LOCK XE_REG_MCR(0xe534)
#define EU_SYSTOLIC_LIC_THROTTLE_CTL_LOCK_BIT REG_BIT(31)
+#define ROW_INSTDONE_TDL_GFX XE_REG_MCR(0xe580)
+#define SS_LSC_HDC_IDLE_TDL_GFX XE_REG_MCR(0xe584)
+
#define XEHP_HDC_CHICKEN0 XE_REG_MCR(0xe5f0, XE_REG_OPTION_MASKED)
#define LSC_L1_FLUSH_CTL_3D_DATAPORT_FLUSH_EVENTS_MASK REG_GENMASK(13, 11)
#define DIS_ATOMIC_CHAINING_TYPED_WRITES REG_BIT(3)
diff --git a/drivers/gpu/drm/xe/xe_guc_capture.c b/drivers/gpu/drm/xe/xe_guc_capture.c
index 53171cf5e8b6..026e8d628c30 100644
--- a/drivers/gpu/drm/xe/xe_guc_capture.c
+++ b/drivers/gpu/drm/xe/xe_guc_capture.c
@@ -376,7 +376,10 @@ static const struct __ext_steer_reg xehpg_extregs[] = {
{"SC_INSTDONE", XEHPG_SC_INSTDONE},
{"SC_INSTDONE_EXTRA", XEHPG_SC_INSTDONE_EXTRA},
{"SC_INSTDONE_EXTRA2", XEHPG_SC_INSTDONE_EXTRA2},
- {"INSTDONE_GEOM_SVGUNIT", XEHPG_INSTDONE_GEOM_SVGUNIT}
+ {"INSTDONE_GEOM_SVGUNIT", XEHPG_INSTDONE_GEOM_SVGUNIT},
+ {"ROW_INSTDONE_TDL_GFX", ROW_INSTDONE_TDL_GFX},
+ {"SS_LSC_HDC_IDLE_TDL_GFX", SS_LSC_HDC_IDLE_TDL_GFX},
+ {"SLICE_ARB_STATUS", SLICE_ARB_STATUS}
};
static void __fill_ext_reg(struct __guc_mmio_reg_descr *ext,
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH v3 6/7] drm/xe: capture L3 node status registers in devcoredump
2026-09-03 14:18 [PATCH v3 0/7] drm/xe: Capture additional HW register state in devcoredump Nareshkumar Gollakoti
` (4 preceding siblings ...)
2026-09-03 14:18 ` [PATCH v3 5/7] drm/xe/guc: add TDL, SLICE gfx registers to capture list Nareshkumar Gollakoti
@ 2026-09-03 14:18 ` Nareshkumar Gollakoti
2026-09-03 14:18 ` [PATCH v3 7/7] drm/xe/guc: capture additional engine state registers Nareshkumar Gollakoti
` (4 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Nareshkumar Gollakoti @ 2026-09-03 14:18 UTC (permalink / raw)
To: intel-xe
Cc: himal.prasad.ghimiray, arvind.yadav, tejas.upadhyay,
Nareshkumar Gollakoti
Add L3_NODE_IDLE and L3STAT_LBCF_GFX register definitions and include
them in the devcoredump snapshot as a node status section.
Extend the register descriptor to mark MCR registers so the snapshot
code can read them through xe_gt_mcr_unicast_read_any(), then print and
free the captured node status registers alongside the existing dump
sections.
v2:(Sashiko)
- change L3 node registers as XE_REG_MCR type
- identify mcr register type from reg.mcr
- As generic capture function ensure VF check this will not execute
on VF Mode.
Signed-off-by: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
---
drivers/gpu/drm/xe/regs/xe_gt_regs.h | 3 ++
drivers/gpu/drm/xe/xe_devcoredump.c | 46 +++++++++++++++++++++--
drivers/gpu/drm/xe/xe_devcoredump_types.h | 2 +
3 files changed, 48 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
index b3ce7074f7d7..213422063de3 100644
--- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
@@ -426,6 +426,9 @@
#define L3_ESC_MASK REG_BIT(0)
#define L3_ESC(value) REG_FIELD_PREP(L3_ESC_MASK, value)
+#define L3_NODE_IDLE XE_REG_MCR(0xb0b0)
+#define L3STAT_LBCF_GFX XE_REG_MCR(0xb128)
+
#define XEHP_L3NODEARBCFG XE_REG_MCR(0xb0b4)
#define XEHP_LNESPARE REG_BIT(19)
diff --git a/drivers/gpu/drm/xe/xe_devcoredump.c b/drivers/gpu/drm/xe/xe_devcoredump.c
index 09e571e27660..f10be2ae54db 100644
--- a/drivers/gpu/drm/xe/xe_devcoredump.c
+++ b/drivers/gpu/drm/xe/xe_devcoredump.c
@@ -28,6 +28,7 @@
#include "xe_mmio.h"
#include "regs/xe_gt_regs.h"
#include "regs/xe_guc_regs.h"
+#include "xe_gt_mcr.h"
/**
* DOC: Xe device coredump
@@ -79,13 +80,18 @@
* of the register to dump its value during coredump for debug purpose.
*/
struct xe_reg_desc {
- /** @reg: The register */
- struct xe_reg reg;
+ union {
+ /** @reg: The register */
+ struct xe_reg reg;
+ /** @mcr_reg: The mcr register */
+ struct xe_reg_mcr mcr_reg;
+ };
/** @name: Name of the register */
const char *name;
};
#define XE_REG_DESC(_reg, _name) { .reg = (_reg), .name = (_name) }
+#define XE_REG_DESC_MCR(_reg, _name) { .mcr_reg = (_reg), .name = (_name) }
static const struct xe_reg_desc xe3p_gt_guc_reglist[] = {
XE_REG_DESC(GUC_STATUS, "GUC_STATUS"),
@@ -132,6 +138,11 @@ static const struct xe_reg_desc xe3p_gam_pf_reglist[] = {
XE_REG_DESC(PAGE_FLTRPTQ_TAIL_GAMCTRL, "PAGE_FLTRPTQ_TAIL_GAMCTRL"),
};
+static const struct xe_reg_desc xe3p_l3_node_reglist[] = {
+ XE_REG_DESC_MCR(L3_NODE_IDLE, "L3_NODE_IDLE"),
+ XE_REG_DESC_MCR(L3STAT_LBCF_GFX, "L3STAT_LBCF_GFX"),
+};
+
/**
* struct xe_reg_desc_list - Struct for register descriptor list
*
@@ -195,6 +206,13 @@ static const struct xe_gt_regset xe_gam_pf_regset = {
},
};
+static const struct xe_gt_regset xe_l3_node_regset = {
+ .gt[XE_GT_TYPE_MAIN] = {
+ .regs = xe3p_l3_node_reglist,
+ .num_regs = ARRAY_SIZE(xe3p_l3_node_reglist),
+ },
+};
+
#define XE_GT_REG_LIST(_type, _gt_type) \
(&xe_##_type##_regset.gt[XE_GT_TYPE_##_gt_type])
@@ -208,7 +226,10 @@ xe_capture_reg_desc_list(struct xe_gt *gt,
for (i = 0; i < count; i++) {
dst[i].reg = src[i].reg;
- dst[i].value = xe_mmio_read32(>->mmio, src[i].reg);
+ if (src[i].reg.mcr)
+ dst[i].value = xe_gt_mcr_unicast_read_any(gt, src[i].mcr_reg);
+ else
+ dst[i].value = xe_mmio_read32(>->mmio, src[i].reg);
dst[i].name = src[i].name;
}
}
@@ -374,6 +395,16 @@ static struct xe_dbg_reg_snapshot *xe_gam_pf_report_capture(struct xe_gt *gt)
XE_GT_REG_LIST(gam_pf, MAIN));
}
+static struct xe_dbg_reg_snapshot *xe_node_status_capture(struct xe_gt *gt)
+{
+ if (!gt || !gt->tile || !gt->tile->primary_gt)
+ return NULL;
+
+ return xe_dbg_reg_snapshot_capture_target(gt,
+ gt->tile->primary_gt,
+ XE_GT_REG_LIST(l3_node, MAIN));
+}
+
static struct xe_device *coredump_to_xe(const struct xe_devcoredump *coredump)
{
return container_of(coredump, struct xe_device, devcoredump);
@@ -441,6 +472,9 @@ static ssize_t __xe_devcoredump_read(char *buffer, ssize_t count,
drm_printf(&p, "\n**** GAM PF Report ****\n");
xe_gam_pf_snapshot_print(&p, ss->gam_pf_report);
+ drm_printf(&p, "\n**** Node Status ****\n");
+ xe_dbg_reg_snapshot_print(&p, ss->ns);
+
drm_puts(&p, "\n**** Contexts ****\n");
xe_guc_exec_queue_snapshot_print(ss->ge, &p);
@@ -496,6 +530,9 @@ static void xe_devcoredump_snapshot_free(struct xe_devcoredump_snapshot *ss)
xe_dbg_reg_snapshot_free(ss->gam_pf_report);
ss->gam_pf_report = NULL;
+ xe_dbg_reg_snapshot_free(ss->ns);
+ ss->ns = NULL;
+
xe_guc_exec_queue_snapshot_free(ss->ge);
ss->ge = NULL;
@@ -703,6 +740,9 @@ static void devcoredump_snapshot(struct xe_devcoredump *coredump,
ss->guc.log = xe_guc_log_snapshot_capture(&guc->log, true);
ss->guc.ct = xe_guc_ct_snapshot_capture(&guc->ct);
ss->gam_pf_report = xe_gam_pf_report_capture(q->gt);
+
+ ss->ns = xe_node_status_capture(q->gt);
+
ss->ge = xe_guc_exec_queue_snapshot_capture(q);
if (job)
ss->job = xe_sched_job_snapshot_capture(job);
diff --git a/drivers/gpu/drm/xe/xe_devcoredump_types.h b/drivers/gpu/drm/xe/xe_devcoredump_types.h
index ea7638d0a7a2..6f6d1a80dbb6 100644
--- a/drivers/gpu/drm/xe/xe_devcoredump_types.h
+++ b/drivers/gpu/drm/xe/xe_devcoredump_types.h
@@ -92,6 +92,8 @@ struct xe_devcoredump_snapshot {
/** @gam_pf_report: GAM PF report snapshot */
struct xe_dbg_reg_snapshot *gam_pf_report;
+ /** @ns: Node status snapshot */
+ struct xe_dbg_reg_snapshot *ns;
/** @ge: GuC Submission Engine snapshot */
struct xe_guc_submit_exec_queue_snapshot *ge;
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH v3 7/7] drm/xe/guc: capture additional engine state registers
2026-09-03 14:18 [PATCH v3 0/7] drm/xe: Capture additional HW register state in devcoredump Nareshkumar Gollakoti
` (5 preceding siblings ...)
2026-09-03 14:18 ` [PATCH v3 6/7] drm/xe: capture L3 node status registers in devcoredump Nareshkumar Gollakoti
@ 2026-09-03 14:18 ` Nareshkumar Gollakoti
2026-09-03 14:33 ` sashiko-bot
2026-09-03 14:54 ` ✗ CI.checkpatch: warning for drm/xe: Capture additional HW register state in devcoredump (rev3) Patchwork
` (3 subsequent siblings)
10 siblings, 1 reply; 14+ messages in thread
From: Nareshkumar Gollakoti @ 2026-09-03 14:18 UTC (permalink / raw)
To: intel-xe
Cc: himal.prasad.ghimiray, arvind.yadav, tejas.upadhyay,
Nareshkumar Gollakoti
Add a wider set of engine state registers to GuC error capture to improve
post-mortem debugging of engine hangs and reset-related failures.
Define the missing register offsets in xe_engine_regs.h and include them in
the GuC capture list. The additional registers cover reset state, front-end
and back-end FSM state, power state, batch buffer state, instruction state,
preemption status, and related chicken/debug controls.
This provides more complete engine context in capture dumps, which should
help root-cause analysis when investigating GuC-reported engine failures.
v3:(Sashiko)
- Move FF_SLICE_CS_CHICKEN1/2 out of COMMON_BASE_ENGINE_INSTANCE
- Add XE3P_RC_SLICE_INSTANCE and include it only in xe3p_rc_inst_regs[]
- Add XE_BCS_RCS_ENGINE_INSTANCE for registers shared only by
BCS/RCS paths
- Include XE_BCS_RCS_ENGINE_INSTANCE only in
xe_blt_inst_regs[] and xe3p_rc_inst_regs[]
- Keep COMMON_BASE_ENGINE_INSTANCE limited to registers
valid across all engine classes
Signed-off-by: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
---
drivers/gpu/drm/xe/regs/xe_engine_regs.h | 22 +++++++++++++++
drivers/gpu/drm/xe/xe_guc_capture.c | 35 ++++++++++++++++++++----
2 files changed, 52 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/xe/regs/xe_engine_regs.h b/drivers/gpu/drm/xe/regs/xe_engine_regs.h
index 94033982e694..9f328b1b18f5 100644
--- a/drivers/gpu/drm/xe/regs/xe_engine_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_engine_regs.h
@@ -60,6 +60,8 @@
#define RING_START_UDW(base) XE_REG((base) + 0x48)
+#define RING_CSFE_GLB_CHICKEN3(base) XE_REG((base) + 0x4c)
+
#define RING_PSMI_CTL(base) XE_REG((base) + 0x50, XE_REG_OPTION_MASKED)
#define RC_SEMA_IDLE_MSG_DISABLE REG_BIT(12)
#define WAIT_FOR_EVENT_POWER_DOWN_DISABLE REG_BIT(7)
@@ -72,6 +74,7 @@
#define RING_DMA_FADD_UDW(base) XE_REG((base) + 0x60)
#define RING_IPEHR(base) XE_REG((base) + 0x68)
#define RING_INSTDONE(base) XE_REG((base) + 0x6c)
+#define RING_INSTPS(base) XE_REG((base) + 0x70)
#define RING_ACTHD(base) XE_REG((base) + 0x74)
#define RING_DMA_FADD(base) XE_REG((base) + 0x78)
#define RING_HWS_PGA(base) XE_REG((base) + 0x80)
@@ -102,6 +105,8 @@
#define SELECTIVE_READ_GROUP REG_GENMASK(29, 23)
#define SELECTIVE_READ_INSTANCE REG_GENMASK(22, 16)
+#define RESET_CTRL(base) XE_REG((base) + 0xd0)
+
/*
* CMD_CCTL read/write fields take a MOCS value and _not_ a table index.
* The lsb of each can be considered a separate enabling bit for encryption.
@@ -123,15 +128,21 @@
#define FF_SLICE_CS_CHICKEN1(base) XE_REG((base) + 0xe0, XE_REG_OPTION_MASKED)
#define FFSC_PERCTX_PREEMPT_CTRL REG_BIT(14)
+#define FF_SLICE_CS_CHICKEN2(base) XE_REG((base) + 0xe4, XE_REG_OPTION_MASKED)
+
#define CS_DEBUG_MODE1(base) XE_REG((base) + 0xec, XE_REG_OPTION_MASKED)
#define FF_DOP_CLOCK_GATE_DISABLE REG_BIT(1)
#define REPLAY_MODE_GRANULARITY REG_BIT(0)
#define INDIRECT_RING_STATE(base) XE_REG((base) + 0x108)
+#define RING_BB_STATE(base) XE_REG((base) + 0x110)
+
#define RING_BBADDR(base) XE_REG((base) + 0x140)
#define RING_BBADDR_UDW(base) XE_REG((base) + 0x168)
+#define RING_BB_ADDR_DIFF(base) XE_REG((base) + 0x154)
+
#define PR_CTR_CTRL(base) XE_REG((base) + 0x178)
#define CTR_COUNT_SELECT_FF REG_BIT(31)
#define CTR_LOGIC_OP_MASK REG_GENMASK(30, 0)
@@ -148,6 +159,8 @@
#define BLIT_CCTL_DST_MOCS_MASK REG_GENMASK(14, 9)
#define BLIT_CCTL_SRC_MOCS_MASK REG_GENMASK(6, 1)
+#define RING_CSBEFSM3(base) XE_REG((base) + 0x224)
+
#define RING_EXECLIST_STATUS_LO(base) XE_REG((base) + 0x234)
#define RING_EXECLIST_STATUS_HI(base) XE_REG((base) + 0x234 + 4)
@@ -169,9 +182,16 @@
#define GFX_MSIX_INTERRUPT_ENABLE REG_BIT(13)
#define GFX_DISABLE_LEGACY_MODE REG_BIT(3)
+#define RING_CSFESM(base) XE_REG((base) + 0x2a0)
+#define RING_CSFESM2(base) XE_REG((base) + 0x2a4)
+#define RING_CSFESM3(base) XE_REG((base) + 0x2a8)
+#define RING_CSPWRFSM(base) XE_REG((base) + 0x2ac)
+
#define RING_CSMQDEBUG(base) XE_REG((base) + 0x2b0)
#define CURRENT_ACTIVE_QUEUE_ID_MASK REG_GENMASK(7, 0)
+#define RING_CSBEFSM(base) XE_REG((base) + 0x2bc)
+
#define RING_QUEUE_TIMESTAMP(base) XE_REG((base) + 0x4c0)
#define RING_QUEUE_TIMESTAMP_UDW(base) XE_REG((base) + 0x4c0 + 4)
@@ -217,6 +237,8 @@
#define PREEMPT_GPGPU_LEVEL_MASK PREEMPT_GPGPU_LEVEL(1, 1)
#define PREEMPT_3D_OBJECT_LEVEL REG_BIT(0)
+#define CS_PREEMPTION_STATUS(base) XE_REG((base) + 0x5ac)
+
#define CS_GPR_DATA(base, n) XE_REG((base) + 0x600 + (n) * 4)
#define CS_GPR_REG(base, n) CS_GPR_DATA((base), (n) * 2)
#define CS_GPR_REG_UDW(base, n) CS_GPR_DATA((base), (n) * 2 + 1)
diff --git a/drivers/gpu/drm/xe/xe_guc_capture.c b/drivers/gpu/drm/xe/xe_guc_capture.c
index 026e8d628c30..7f8f9aaf8465 100644
--- a/drivers/gpu/drm/xe/xe_guc_capture.c
+++ b/drivers/gpu/drm/xe/xe_guc_capture.c
@@ -127,11 +127,7 @@ struct __guc_capture_parsed_output {
{ RING_START(0), REG_64BIT_LOW_DW, 0, 0, 0, NULL}, \
{ RING_START_UDW(0), REG_64BIT_HI_DW, 0, 0, 0, "RING_START"}, \
{ RING_DMA_FADD(0), REG_64BIT_LOW_DW, 0, 0, 0, NULL}, \
- { RING_DMA_FADD_UDW(0), REG_64BIT_HI_DW, 0, 0, 0, "RING_DMA_FADD"}, \
- { RING_EXECLIST_STATUS_LO(0), REG_64BIT_LOW_DW, 0, 0, 0, NULL}, \
- { RING_EXECLIST_STATUS_HI(0), REG_64BIT_HI_DW, 0, 0, 0, "RING_EXECLIST_STATUS"}, \
- { RING_EXECLIST_SQ_CONTENTS_LO(0), REG_64BIT_LOW_DW, 0, 0, 0, NULL}, \
- { RING_EXECLIST_SQ_CONTENTS_HI(0), REG_64BIT_HI_DW, 0, 0, 0, "RING_EXECLIST_SQ_CONTENTS"}
+ { RING_DMA_FADD_UDW(0), REG_64BIT_HI_DW, 0, 0, 0, "RING_DMA_FADD"}
#define COMMON_XELP_RC_CLASS \
{ RCU_MODE, REG_32BIT, 0, 0, 0, "RCU_MODE"}
@@ -150,6 +146,32 @@ struct __guc_capture_parsed_output {
#define XE3P_BASE_ENGINE_INSTANCE \
{ RING_CSMQDEBUG(0), REG_32BIT, 0, 0, 0, "CSMQDEBUG"}
+#define XE3P_RC_SLICE_INSTANCE \
+ { FF_SLICE_CS_CHICKEN1(0), REG_32BIT, 0, 0, 0, "FF_SLICE_CS_CHICKEN1"}, \
+ { FF_SLICE_CS_CHICKEN2(0), REG_32BIT, 0, 0, 0, "FF_SLICE_CS_CHICKEN2"}
+
+#define XE_BCS_RCS_ENGINE_INSTANCE \
+ { RING_EXECLIST_STATUS_LO(0), REG_64BIT_LOW_DW, 0, 0, 0, NULL}, \
+ { RING_EXECLIST_STATUS_HI(0), REG_64BIT_HI_DW, 0, 0, 0, "RING_EXECLIST_STATUS"}, \
+ { RING_EXECLIST_SQ_CONTENTS_LO(0), REG_64BIT_LOW_DW, 0, 0, 0, NULL}, \
+ { RING_EXECLIST_SQ_CONTENTS_HI(0), REG_64BIT_HI_DW, 0, 0, 0, "RING_EXECLIST_SQ_CONTENTS"}, \
+ { RESET_CTRL(0), REG_32BIT, 0, 0, 0, "RESET_CTRL"}, \
+ { RING_CSBEFSM3(0), REG_32BIT, 0, 0, 0, "RING_CSBEFSM3"}, \
+ { RING_CSFESM(0), REG_32BIT, 0, 0, 0, "RING_CSFESM"}, \
+ { RING_CSFESM2(0), REG_32BIT, 0, 0, 0, "RING_CSFESM2"}, \
+ { RING_CSFESM3(0), REG_32BIT, 0, 0, 0, "RING_CSFESM3"}, \
+ { RING_CSPWRFSM(0), REG_32BIT, 0, 0, 0, "RING_CSPWRFSM"}, \
+ { RING_CSBEFSM(0), REG_32BIT, 0, 0, 0, "RING_CSBEFSM"}, \
+ { BCS_SWCTRL(0), REG_32BIT, 0, 0, 0, "BCS_SWCTRL"}, \
+ { RING_CSFE_GLB_CHICKEN3(0), REG_32BIT, 0, 0, 0, "RING_CSFE_GLB_CHICKEN3"}, \
+ { RING_PSMI_CTL(0), REG_32BIT, 0, 0, 0, "RING_PSMI_CTL"}, \
+ { RING_INSTPS(0), REG_32BIT, 0, 0, 0, "RING_INSTPS"}, \
+ { RING_BB_ADDR_DIFF(0), REG_32BIT, 0, 0, 0, "RING_BB_ADDR_DIFF"}, \
+ { RING_BB_STATE(0), REG_32BIT, 0, 0, 0, "RING_BB_STATE"}, \
+ { CS_DEBUG_MODE1(0), REG_32BIT, 0, 0, 0, "CS_DEBUG_MODE1"}, \
+ { CS_CHICKEN1(0), REG_32BIT, 0, 0, 0, "CS_CHICKEN1"}, \
+ { CS_PREEMPTION_STATUS(0), REG_32BIT, 0, 0, 0, "CS_PREEMPTION_STATUS"}
+
/* XE_LP Global */
static const struct __guc_mmio_reg_descr xe_lp_global_regs[] = {
COMMON_XELP_BASE_GLOBAL,
@@ -189,6 +211,7 @@ static const struct __guc_mmio_reg_descr xe_vec_inst_regs[] = {
/* Blitter Per-Engine-Instance */
static const struct __guc_mmio_reg_descr xe_blt_inst_regs[] = {
COMMON_BASE_ENGINE_INSTANCE,
+ XE_BCS_RCS_ENGINE_INSTANCE,
};
/* XE_LP - GSC Per-Engine-Instance */
@@ -200,6 +223,8 @@ static const struct __guc_mmio_reg_descr xe_lp_gsc_inst_regs[] = {
static const struct __guc_mmio_reg_descr xe3p_rc_inst_regs[] = {
COMMON_BASE_ENGINE_INSTANCE,
XE3P_BASE_ENGINE_INSTANCE,
+ XE_BCS_RCS_ENGINE_INSTANCE,
+ XE3P_RC_SLICE_INSTANCE,
};
/*
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH v3 1/7] drm/xe/devcoredump: Capture GT fuse registers in devcoredump
2026-09-03 14:18 ` [PATCH v3 1/7] drm/xe/devcoredump: Capture GT fuse registers " Nareshkumar Gollakoti
@ 2026-09-03 14:32 ` sashiko-bot
0 siblings, 0 replies; 14+ messages in thread
From: sashiko-bot @ 2026-09-03 14:32 UTC (permalink / raw)
To: Nareshkumar Gollakoti; +Cc: intel-xe
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Low] Hardcoded array index used to check the POWERGATE_ENABLE register is fragile.
--
commit b7d03cc3b56be0544af3370f72a4384e4131de66
Author: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
drm/xe/devcoredump: Capture GT fuse registers in devcoredump
Capture fuse-related GT register state in the Xe devcoredump to preserve
additional hardware configuration information for postmortem debugging.
> diff --git a/drivers/gpu/drm/xe/xe_devcoredump.c b/drivers/gpu/drm/xe/xe_devcoredump.c
> --- a/drivers/gpu/drm/xe/xe_devcoredump.c
> +++ b/drivers/gpu/drm/xe/xe_devcoredump.c
[ ... ]
> +static const struct xe_reg_desc xe3p_gt_rpm_reglist[] = {
> + XE_REG_DESC(RPM_GCD, "RPM_GCD"),
> + XE_REG_DESC(POWERGATE_ENABLE, "POWERGATE_ENABLE"),
> +};
[ ... ]
> +static void xe_gt_rpm_snapshot_print(struct drm_printer *p,
> + const struct xe_dbg_reg_snapshot *snap)
> +{
> + xe_dbg_reg_snapshot_print(p, snap);
> +
> + if (snap && snap->num_regs >= 2 &&
> + !(snap->regs[1].value & RENDER_POWERGATE_ENABLE))
[Severity: Low]
Is it safe to use a hardcoded array index in xe_gt_rpm_snapshot_print() here?
This check tightly couples the print logic to the exact ordering of elements in
the xe3p_gt_rpm_reglist array, relying on POWERGATE_ENABLE remaining at index
1. If a future commit inserts or reorders elements in xe3p_gt_rpm_reglist,
it could silently break this print logic by evaluating the wrong register's
value.
Could this be made more robust against future modifications to the underlying
static register list?
> + drm_puts(p, "render powergating appears not enabled\n");
> +}
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260903141834.1315675-1-naresh.kumar.g@intel.com?part=1
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v3 7/7] drm/xe/guc: capture additional engine state registers
2026-09-03 14:18 ` [PATCH v3 7/7] drm/xe/guc: capture additional engine state registers Nareshkumar Gollakoti
@ 2026-09-03 14:33 ` sashiko-bot
0 siblings, 0 replies; 14+ messages in thread
From: sashiko-bot @ 2026-09-03 14:33 UTC (permalink / raw)
To: Nareshkumar Gollakoti; +Cc: intel-xe
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
- [Medium] Regression in pre-Xe3 Render error capture due to registers omitted from `xe_rc_inst_regs`.
- [Medium] Engine-specific registers are incorrectly grouped into a shared capture list, causing GuC to read invalid MMIO offsets during error capture for mismatched engines.
--
commit 8561ce6705d44fcd9f5bafeb5f1a5d85ebea0ebb
Author: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
drm/xe/guc: capture additional engine state registers
Add a wider set of engine state registers to GuC error capture to improve
post-mortem debugging of engine hangs and reset-related failures.
> diff --git a/drivers/gpu/drm/xe/xe_guc_capture.c b/drivers/gpu/drm/xe/xe_guc_capture.c
> index 026e8d628c30c..7f8f9aaf8465d 100644
> --- a/drivers/gpu/drm/xe/xe_guc_capture.c
> +++ b/drivers/gpu/drm/xe/xe_guc_capture.c
> @@ -127,11 +127,7 @@ struct __guc_capture_parsed_output {
> { RING_START(0), REG_64BIT_LOW_DW, 0, 0, 0, NULL}, \
> { RING_START_UDW(0), REG_64BIT_HI_DW, 0, 0, 0, "RING_START"}, \
> { RING_DMA_FADD(0), REG_64BIT_LOW_DW, 0, 0, 0, NULL}, \
> - { RING_DMA_FADD_UDW(0), REG_64BIT_HI_DW, 0, 0, 0, "RING_DMA_FADD"}, \
> - { RING_EXECLIST_STATUS_LO(0), REG_64BIT_LOW_DW, 0, 0, 0, NULL}, \
> - { RING_EXECLIST_STATUS_HI(0), REG_64BIT_HI_DW, 0, 0, 0, "RING_EXECLIST_STATUS"}, \
> - { RING_EXECLIST_SQ_CONTENTS_LO(0), REG_64BIT_LOW_DW, 0, 0, 0, NULL}, \
> - { RING_EXECLIST_SQ_CONTENTS_HI(0), REG_64BIT_HI_DW, 0, 0, 0, "RING_EXECLIST_SQ_CONTENTS"}
> + { RING_DMA_FADD_UDW(0), REG_64BIT_HI_DW, 0, 0, 0, "RING_DMA_FADD"}
[Severity: Medium]
Will this cause a regression in pre-Xe3 Render error capture?
By removing the RING_EXECLIST_STATUS and RING_EXECLIST_SQ_CONTENTS registers
from the COMMON_BASE_ENGINE_INSTANCE macro, they are no longer included in
xe_rc_inst_regs:
static const struct __guc_mmio_reg_descr xe_rc_inst_regs[] = {
COMMON_BASE_ENGINE_INSTANCE,
};
When a GPU hang occurs on a pre-Xe3 Render engine, GuC will now fail to
capture these critical registers because XE_BCS_RCS_ENGINE_INSTANCE is not
included in xe_rc_inst_regs.
[ ... ]
> +#define XE_BCS_RCS_ENGINE_INSTANCE \
> + { RING_EXECLIST_STATUS_LO(0), REG_64BIT_LOW_DW, 0, 0, 0, NULL}, \
> + { RING_EXECLIST_STATUS_HI(0), REG_64BIT_HI_DW, 0, 0, 0, "RING_EXECLIST_STATUS"}, \
> + { RING_EXECLIST_SQ_CONTENTS_LO(0), REG_64BIT_LOW_DW, 0, 0, 0, NULL}, \
> + { RING_EXECLIST_SQ_CONTENTS_HI(0), REG_64BIT_HI_DW, 0, 0, 0, "RING_EXECLIST_SQ_CONTENTS"}, \
> + { RESET_CTRL(0), REG_32BIT, 0, 0, 0, "RESET_CTRL"}, \
> + { RING_CSBEFSM3(0), REG_32BIT, 0, 0, 0, "RING_CSBEFSM3"}, \
> + { RING_CSFESM(0), REG_32BIT, 0, 0, 0, "RING_CSFESM"}, \
> + { RING_CSFESM2(0), REG_32BIT, 0, 0, 0, "RING_CSFESM2"}, \
> + { RING_CSFESM3(0), REG_32BIT, 0, 0, 0, "RING_CSFESM3"}, \
> + { RING_CSPWRFSM(0), REG_32BIT, 0, 0, 0, "RING_CSPWRFSM"}, \
> + { RING_CSBEFSM(0), REG_32BIT, 0, 0, 0, "RING_CSBEFSM"}, \
> + { BCS_SWCTRL(0), REG_32BIT, 0, 0, 0, "BCS_SWCTRL"}, \
> + { RING_CSFE_GLB_CHICKEN3(0), REG_32BIT, 0, 0, 0, "RING_CSFE_GLB_CHICKEN3"}, \
> + { RING_PSMI_CTL(0), REG_32BIT, 0, 0, 0, "RING_PSMI_CTL"}, \
> + { RING_INSTPS(0), REG_32BIT, 0, 0, 0, "RING_INSTPS"}, \
> + { RING_BB_ADDR_DIFF(0), REG_32BIT, 0, 0, 0, "RING_BB_ADDR_DIFF"}, \
> + { RING_BB_STATE(0), REG_32BIT, 0, 0, 0, "RING_BB_STATE"}, \
> + { CS_DEBUG_MODE1(0), REG_32BIT, 0, 0, 0, "CS_DEBUG_MODE1"}, \
> + { CS_CHICKEN1(0), REG_32BIT, 0, 0, 0, "CS_CHICKEN1"}, \
> + { CS_PREEMPTION_STATUS(0), REG_32BIT, 0, 0, 0, "CS_PREEMPTION_STATUS"}
[ ... ]
> @@ -189,6 +211,7 @@ static const struct __guc_mmio_reg_descr xe_vec_inst_regs[] = {
> /* Blitter Per-Engine-Instance */
> static const struct __guc_mmio_reg_descr xe_blt_inst_regs[] = {
> COMMON_BASE_ENGINE_INSTANCE,
> + XE_BCS_RCS_ENGINE_INSTANCE,
> };
>
> /* XE_LP - GSC Per-Engine-Instance */
> @@ -200,6 +223,8 @@ static const struct __guc_mmio_reg_descr xe_lp_gsc_inst_regs[] = {
> static const struct __guc_mmio_reg_descr xe3p_rc_inst_regs[] = {
> COMMON_BASE_ENGINE_INSTANCE,
> XE3P_BASE_ENGINE_INSTANCE,
> + XE_BCS_RCS_ENGINE_INSTANCE,
> + XE3P_RC_SLICE_INSTANCE,
> };
[Severity: Medium]
Will this mix engine-specific registers when capturing error state?
The XE_BCS_RCS_ENGINE_INSTANCE macro groups registers that belong exclusively
to different engine classes. For example, it includes BCS_SWCTRL
(Blitter-specific) alongside CS_CHICKEN1, CS_DEBUG_MODE1, and
CS_PREEMPTION_STATUS (Render-specific).
Because this macro is added to both xe_blt_inst_regs and xe3p_rc_inst_regs,
GuC will read Render-specific registers on Blitter engines, and
Blitter-specific registers on Render and Compute engines.
Could this corrupt the error capture dump with garbage data and potentially
cause speculative hardware timeouts or unclaimed register errors if the MMIO
offsets are unbacked on the mismatched engines?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260903141834.1315675-1-naresh.kumar.g@intel.com?part=7
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ CI.checkpatch: warning for drm/xe: Capture additional HW register state in devcoredump (rev3)
2026-09-03 14:18 [PATCH v3 0/7] drm/xe: Capture additional HW register state in devcoredump Nareshkumar Gollakoti
` (6 preceding siblings ...)
2026-09-03 14:18 ` [PATCH v3 7/7] drm/xe/guc: capture additional engine state registers Nareshkumar Gollakoti
@ 2026-09-03 14:54 ` Patchwork
2026-09-03 14:56 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-09-03 14:54 UTC (permalink / raw)
To: Nareshkumar Gollakoti; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Capture additional HW register state in devcoredump (rev3)
URL : https://patchwork.freedesktop.org/series/172150/
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
d875049d2b299159a272bd5151994970cdcd1e31
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit a5ed1c7f318f7b9052289b1c94ca3ee557c912c4
Author: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
Date: Thu Sep 3 19:48:34 2026 +0530
drm/xe/guc: capture additional engine state registers
Add a wider set of engine state registers to GuC error capture to improve
post-mortem debugging of engine hangs and reset-related failures.
Define the missing register offsets in xe_engine_regs.h and include them in
the GuC capture list. The additional registers cover reset state, front-end
and back-end FSM state, power state, batch buffer state, instruction state,
preemption status, and related chicken/debug controls.
This provides more complete engine context in capture dumps, which should
help root-cause analysis when investigating GuC-reported engine failures.
v3:(Sashiko)
- Move FF_SLICE_CS_CHICKEN1/2 out of COMMON_BASE_ENGINE_INSTANCE
- Add XE3P_RC_SLICE_INSTANCE and include it only in xe3p_rc_inst_regs[]
- Add XE_BCS_RCS_ENGINE_INSTANCE for registers shared only by
BCS/RCS paths
- Include XE_BCS_RCS_ENGINE_INSTANCE only in
xe_blt_inst_regs[] and xe3p_rc_inst_regs[]
- Keep COMMON_BASE_ENGINE_INSTANCE limited to registers
valid across all engine classes
Signed-off-by: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
+ /mt/dim checkpatch 76a34199970d93cfb3ed5dbbd745c23b6f0cff34 drm-intel
c08137418f3e drm/xe/devcoredump: Capture GT fuse registers in devcoredump
2a3811255451 drm/xe/devcoredump: Add GuC register snapshot to devcoredump
952e3a5bb435 drm/xe/guc: Print register addresses in capture snapshot output
d65976365811 drm/xe: dump GAM page fault report registers in devcoredump
10a7cea5c603 drm/xe/guc: add TDL, SLICE gfx registers to capture list
e1f1a334ac59 drm/xe: capture L3 node status registers in devcoredump
a5ed1c7f318f drm/xe/guc: capture additional engine state registers
-:137: ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#137: FILE: drivers/gpu/drm/xe/xe_guc_capture.c:149:
+#define XE3P_RC_SLICE_INSTANCE \
+ { FF_SLICE_CS_CHICKEN1(0), REG_32BIT, 0, 0, 0, "FF_SLICE_CS_CHICKEN1"}, \
+ { FF_SLICE_CS_CHICKEN2(0), REG_32BIT, 0, 0, 0, "FF_SLICE_CS_CHICKEN2"}
BUT SEE:
do {} while (0) advice is over-stated in a few situations:
The more obvious case is macros, like MODULE_PARM_DESC, invoked at
file-scope, where C disallows code (it must be in functions). See
$exceptions if you have one to add by name.
More troublesome is declarative macros used at top of new scope,
like DECLARE_PER_CPU. These might just compile with a do-while-0
wrapper, but would be incorrect. Most of these are handled by
detecting struct,union,etc declaration primitives in $exceptions.
Theres also macros called inside an if (block), which "return" an
expression. These cannot do-while, and need a ({}) wrapper.
Enjoy this qualification while we work to improve our heuristics.
-:141: ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#141: FILE: drivers/gpu/drm/xe/xe_guc_capture.c:153:
+#define XE_BCS_RCS_ENGINE_INSTANCE \
+ { RING_EXECLIST_STATUS_LO(0), REG_64BIT_LOW_DW, 0, 0, 0, NULL}, \
+ { RING_EXECLIST_STATUS_HI(0), REG_64BIT_HI_DW, 0, 0, 0, "RING_EXECLIST_STATUS"}, \
+ { RING_EXECLIST_SQ_CONTENTS_LO(0), REG_64BIT_LOW_DW, 0, 0, 0, NULL}, \
+ { RING_EXECLIST_SQ_CONTENTS_HI(0), REG_64BIT_HI_DW, 0, 0, 0, "RING_EXECLIST_SQ_CONTENTS"}, \
+ { RESET_CTRL(0), REG_32BIT, 0, 0, 0, "RESET_CTRL"}, \
+ { RING_CSBEFSM3(0), REG_32BIT, 0, 0, 0, "RING_CSBEFSM3"}, \
+ { RING_CSFESM(0), REG_32BIT, 0, 0, 0, "RING_CSFESM"}, \
+ { RING_CSFESM2(0), REG_32BIT, 0, 0, 0, "RING_CSFESM2"}, \
+ { RING_CSFESM3(0), REG_32BIT, 0, 0, 0, "RING_CSFESM3"}, \
+ { RING_CSPWRFSM(0), REG_32BIT, 0, 0, 0, "RING_CSPWRFSM"}, \
+ { RING_CSBEFSM(0), REG_32BIT, 0, 0, 0, "RING_CSBEFSM"}, \
+ { BCS_SWCTRL(0), REG_32BIT, 0, 0, 0, "BCS_SWCTRL"}, \
+ { RING_CSFE_GLB_CHICKEN3(0), REG_32BIT, 0, 0, 0, "RING_CSFE_GLB_CHICKEN3"}, \
+ { RING_PSMI_CTL(0), REG_32BIT, 0, 0, 0, "RING_PSMI_CTL"}, \
+ { RING_INSTPS(0), REG_32BIT, 0, 0, 0, "RING_INSTPS"}, \
+ { RING_BB_ADDR_DIFF(0), REG_32BIT, 0, 0, 0, "RING_BB_ADDR_DIFF"}, \
+ { RING_BB_STATE(0), REG_32BIT, 0, 0, 0, "RING_BB_STATE"}, \
+ { CS_DEBUG_MODE1(0), REG_32BIT, 0, 0, 0, "CS_DEBUG_MODE1"}, \
+ { CS_CHICKEN1(0), REG_32BIT, 0, 0, 0, "CS_CHICKEN1"}, \
+ { CS_PREEMPTION_STATUS(0), REG_32BIT, 0, 0, 0, "CS_PREEMPTION_STATUS"}
BUT SEE:
do {} while (0) advice is over-stated in a few situations:
The more obvious case is macros, like MODULE_PARM_DESC, invoked at
file-scope, where C disallows code (it must be in functions). See
$exceptions if you have one to add by name.
More troublesome is declarative macros used at top of new scope,
like DECLARE_PER_CPU. These might just compile with a do-while-0
wrapper, but would be incorrect. Most of these are handled by
detecting struct,union,etc declaration primitives in $exceptions.
Theres also macros called inside an if (block), which "return" an
expression. These cannot do-while, and need a ({}) wrapper.
Enjoy this qualification while we work to improve our heuristics.
total: 2 errors, 0 warnings, 0 checks, 135 lines checked
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ CI.KUnit: success for drm/xe: Capture additional HW register state in devcoredump (rev3)
2026-09-03 14:18 [PATCH v3 0/7] drm/xe: Capture additional HW register state in devcoredump Nareshkumar Gollakoti
` (7 preceding siblings ...)
2026-09-03 14:54 ` ✗ CI.checkpatch: warning for drm/xe: Capture additional HW register state in devcoredump (rev3) Patchwork
@ 2026-09-03 14:56 ` Patchwork
2026-09-03 15:39 ` ✓ Xe.CI.BAT: " Patchwork
2026-09-04 2:01 ` ✗ Xe.CI.FULL: failure " Patchwork
10 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-09-03 14:56 UTC (permalink / raw)
To: Nareshkumar Gollakoti; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Capture additional HW register state in devcoredump (rev3)
URL : https://patchwork.freedesktop.org/series/172150/
State : success
== Summary ==
+ trap cleanup EXIT
+ kunitconfigs=('/kernel/drivers/gpu/tests/.kunitconfig' '/kernel/drivers/gpu/drm/xe/.kunitconfig' '/kernel/drivers/gpu/drm/tests/.kunitconfig' '/kernel/drivers/gpu/drm/ttm/tests/.kunitconfig' '/kernel/drivers/dma-buf/.kunitconfig')
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/tests/.kunitconfig
[14:54:42] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:54:47] 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
[14:55:07] Starting KUnit Kernel (1/1)...
[14:55:07] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:55:07] ============= refcount_interrupt (4 subtests) ==============
[14:55:07] [PASSED] test_single_irq_change
[14:55:07] [PASSED] test_nested_irq_change
[14:55:07] [PASSED] test_multiple_irq_change
[14:55:07] [PASSED] test_irq_save
[14:55:07] =============== [PASSED] refcount_interrupt ================
[14:55:07] ================= gpu_buddy (14 subtests) ==================
[14:55:07] [PASSED] gpu_test_buddy_alloc_limit
[14:55:07] [PASSED] gpu_test_buddy_alloc_optimistic
[14:55:07] [PASSED] gpu_test_buddy_alloc_pessimistic
[14:55:07] [PASSED] gpu_test_buddy_alloc_pathological
[14:55:07] [PASSED] gpu_test_buddy_alloc_contiguous
[14:55:07] [PASSED] gpu_test_buddy_alloc_clear
[14:55:07] [PASSED] gpu_test_buddy_alloc_range
[14:55:08] [PASSED] gpu_test_buddy_alloc_range_bias
[14:55:09] [PASSED] gpu_test_buddy_fragmentation_performance
[14:55:09] [PASSED] gpu_test_buddy_dirty_tracker_performance
[14:55:09] [PASSED] gpu_test_buddy_alloc_exceeds_max_order
[14:55:09] [PASSED] gpu_test_buddy_offset_aligned_allocation
[14:55:09] [PASSED] gpu_test_buddy_subtree_offset_alignment_stress
[14:55:09] [PASSED] gpu_test_buddy_addr_to_block
[14:55:09] ==================== [PASSED] gpu_buddy ====================
[14:55:09] ============================================================
[14:55:09] Testing complete. Ran 18 tests: passed: 18
[14:55:09] Elapsed time: 27.118s total, 4.393s configuring, 20.607s building, 2.080s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/xe/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[14:55:10] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:55:11] 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
[14:55:46] Starting KUnit Kernel (1/1)...
[14:55:46] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:55:46] ============= refcount_interrupt (4 subtests) ==============
[14:55:46] [PASSED] test_single_irq_change
[14:55:46] [PASSED] test_nested_irq_change
[14:55:46] [PASSED] test_multiple_irq_change
[14:55:46] [PASSED] test_irq_save
[14:55:46] =============== [PASSED] refcount_interrupt ================
[14:55:46] ================== guc_buf (11 subtests) ===================
[14:55:46] [PASSED] test_smallest
[14:55:46] [PASSED] test_largest
[14:55:46] [PASSED] test_granular
[14:55:46] [PASSED] test_unique
[14:55:46] [PASSED] test_overlap
[14:55:46] [PASSED] test_reusable
[14:55:46] [PASSED] test_too_big
[14:55:46] [PASSED] test_flush
[14:55:46] [PASSED] test_lookup
[14:55:46] [PASSED] test_data
[14:55:46] [PASSED] test_class
[14:55:46] ===================== [PASSED] guc_buf =====================
[14:55:46] =================== guc_dbm (7 subtests) ===================
[14:55:46] [PASSED] test_empty
[14:55:46] [PASSED] test_default
[14:55:46] ======================== test_size ========================
[14:55:46] [PASSED] 4
[14:55:46] [PASSED] 8
[14:55:46] [PASSED] 32
[14:55:46] [PASSED] 256
[14:55:46] ==================== [PASSED] test_size ====================
[14:55:46] ======================= test_reuse ========================
[14:55:46] [PASSED] 4
[14:55:46] [PASSED] 8
[14:55:46] [PASSED] 32
[14:55:46] [PASSED] 256
[14:55:46] =================== [PASSED] test_reuse ====================
[14:55:46] =================== test_range_overlap ====================
[14:55:46] [PASSED] 4
[14:55:46] [PASSED] 8
[14:55:46] [PASSED] 32
[14:55:46] [PASSED] 256
[14:55:46] =============== [PASSED] test_range_overlap ================
[14:55:46] =================== test_range_compact ====================
[14:55:46] [PASSED] 4
[14:55:46] [PASSED] 8
[14:55:46] [PASSED] 32
[14:55:46] [PASSED] 256
[14:55:46] =============== [PASSED] test_range_compact ================
[14:55:46] ==================== test_range_spare =====================
[14:55:46] [PASSED] 4
[14:55:46] [PASSED] 8
[14:55:46] [PASSED] 32
[14:55:46] [PASSED] 256
[14:55:46] ================ [PASSED] test_range_spare =================
[14:55:46] ===================== [PASSED] guc_dbm =====================
[14:55:46] =================== guc_idm (6 subtests) ===================
[14:55:46] [PASSED] bad_init
[14:55:46] [PASSED] no_init
[14:55:46] [PASSED] init_fini
[14:55:46] [PASSED] check_used
[14:55:46] [PASSED] check_quota
[14:55:46] [PASSED] check_all
[14:55:46] ===================== [PASSED] guc_idm =====================
[14:55:46] =============== guc_klv_helpers (9 subtests) ===============
[14:55:46] [PASSED] test_count
[14:55:46] [PASSED] test_encode_u32
[14:55:46] [PASSED] test_encode_u64
[14:55:46] [PASSED] test_encode_string
[14:55:46] [PASSED] test_encode_object_raw
[14:55:46] [PASSED] test_encode_object_klv
[14:55:46] [PASSED] test_encode_object_nested
[14:55:46] [PASSED] test_encode_object_basic
[14:55:46] [PASSED] test_print
[14:55:46] ================= [PASSED] guc_klv_helpers =================
[14:55:46] =================== xe_log (4 subtests) ====================
[14:55:46] [PASSED] demo_cper
[14:55:46] [PASSED] demo_dmesg
[14:55:46] ======================= test_dmesg ========================
[14:55:46] [PASSED] test_fatal
[14:55:46] [PASSED] test_fatal_tile
[14:55:46] [PASSED] test_fatal_gt
[14:55:46] [PASSED] test_fatal_comp
[14:55:46] [PASSED] test_fatal_comp_tile
[14:55:46] [PASSED] test_fatal_comp_gt
[14:55:46] [PASSED] test_fatal_all
[14:55:46] [PASSED] test_recoverable
[14:55:46] [PASSED] test_recoverable_tile
[14:55:46] [PASSED] test_recoverable_gt
[14:55:46] [PASSED] test_recoverable_comp
[14:55:46] [PASSED] test_recoverable_comp_tile
[14:55:46] [PASSED] test_recoverable_comp_gt
[14:55:46] [PASSED] test_recoverable_all
[14:55:46] [PASSED] test_info
[14:55:46] [PASSED] test_info_tile
[14:55:46] [PASSED] test_info_gt
[14:55:46] [PASSED] test_info_err
[14:55:46] [PASSED] test_info_comp
[14:55:46] [PASSED] test_info_comp_tile
[14:55:46] [PASSED] test_info_comp_gt
[14:55:46] [PASSED] test_info_all
[14:55:46] [PASSED] test_hw_fatal
[14:55:46] [PASSED] test_hw_recoverable
[14:55:46] [PASSED] test_hw_corrected
[14:55:46] [PASSED] test_hw_informational
[14:55:46] =================== [PASSED] test_dmesg ====================
[14:55:46] ====================== test_invalid =======================
[14:55:46] [SKIPPED] no-component no-location no-warn (requires CONFIG_DRM_XE_DEBUG)
[14:55:46] [SKIPPED] reserved location (requires CONFIG_DRM_XE_DEBUG)
[14:55:46] [SKIPPED] unknown location (requires CONFIG_DRM_XE_DEBUG)
[14:55:46] [SKIPPED] nonzero-device-id location (requires CONFIG_DRM_XE_DEBUG)
[14:55:46] [SKIPPED] invalid-tile-id location (requires CONFIG_DRM_XE_DEBUG)
[14:55:46] [SKIPPED] invalid-gt-id location (requires CONFIG_DRM_XE_DEBUG)
[14:55:46] [SKIPPED] unknown component class (requires CONFIG_DRM_XE_DEBUG)
[14:55:46] [SKIPPED] unknown system component (requires CONFIG_DRM_XE_DEBUG)
[14:55:46] [SKIPPED] unknown hardware component (requires CONFIG_DRM_XE_DEBUG)
[14:55:46] [SKIPPED] unknown component and location (requires CONFIG_DRM_XE_DEBUG)
[14:55:46] ================== [SKIPPED] test_invalid ==================
[14:55:46] ===================== [PASSED] xe_log ======================
[14:55:46] ================== no_relay (3 subtests) ===================
[14:55:46] [PASSED] xe_drops_guc2pf_if_not_ready
[14:55:46] [PASSED] xe_drops_guc2vf_if_not_ready
[14:55:46] [PASSED] xe_rejects_send_if_not_ready
[14:55:46] ==================== [PASSED] no_relay =====================
[14:55:46] ================== pf_relay (14 subtests) ==================
[14:55:46] [PASSED] pf_rejects_guc2pf_too_short
[14:55:46] [PASSED] pf_rejects_guc2pf_too_long
[14:55:46] [PASSED] pf_rejects_guc2pf_no_payload
[14:55:46] [PASSED] pf_fails_no_payload
[14:55:46] [PASSED] pf_fails_bad_origin
[14:55:46] [PASSED] pf_fails_bad_type
[14:55:46] [PASSED] pf_txn_reports_error
[14:55:46] [PASSED] pf_txn_sends_pf2guc
[14:55:46] [PASSED] pf_sends_pf2guc
[14:55:46] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[14:55:46] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[14:55:46] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[14:55:46] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[14:55:46] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[14:55:46] ==================== [PASSED] pf_relay =====================
[14:55:46] ================== vf_relay (3 subtests) ===================
[14:55:46] [PASSED] vf_rejects_guc2vf_too_short
[14:55:46] [PASSED] vf_rejects_guc2vf_too_long
[14:55:46] [PASSED] vf_rejects_guc2vf_no_payload
[14:55:46] ==================== [PASSED] vf_relay =====================
[14:55:46] ================ pf_gt_config (9 subtests) =================
[14:55:46] [PASSED] fair_contexts_1vf
[14:55:46] [PASSED] fair_doorbells_1vf
[14:55:46] [PASSED] fair_ggtt_1vf
[14:55:46] ====================== fair_vram_1vf ======================
[14:55:46] [PASSED] 3.50 GiB
[14:55:46] [PASSED] 11.5 GiB
[14:55:46] [PASSED] 15.5 GiB
[14:55:46] [PASSED] 31.5 GiB
[14:55:46] [PASSED] 63.5 GiB
[14:55:46] [PASSED] 1.91 GiB
[14:55:46] ================== [PASSED] fair_vram_1vf ==================
[14:55:46] ================ fair_vram_1vf_admin_only =================
[14:55:46] [PASSED] 3.50 GiB
[14:55:46] [PASSED] 11.5 GiB
[14:55:46] [PASSED] 15.5 GiB
[14:55:46] [PASSED] 31.5 GiB
[14:55:46] [PASSED] 63.5 GiB
[14:55:46] [PASSED] 1.91 GiB
[14:55:46] ============ [PASSED] fair_vram_1vf_admin_only =============
[14:55:46] ====================== fair_contexts ======================
[14:55:46] [PASSED] 1 VF
[14:55:46] [PASSED] 2 VFs
[14:55:46] [PASSED] 3 VFs
[14:55:46] [PASSED] 4 VFs
[14:55:46] [PASSED] 5 VFs
[14:55:46] [PASSED] 6 VFs
[14:55:46] [PASSED] 7 VFs
[14:55:46] [PASSED] 8 VFs
[14:55:46] [PASSED] 9 VFs
[14:55:46] [PASSED] 10 VFs
[14:55:46] [PASSED] 11 VFs
[14:55:46] [PASSED] 12 VFs
[14:55:46] [PASSED] 13 VFs
[14:55:46] [PASSED] 14 VFs
[14:55:46] [PASSED] 15 VFs
[14:55:46] [PASSED] 16 VFs
[14:55:46] [PASSED] 17 VFs
[14:55:46] [PASSED] 18 VFs
[14:55:46] [PASSED] 19 VFs
[14:55:46] [PASSED] 20 VFs
[14:55:46] [PASSED] 21 VFs
[14:55:46] [PASSED] 22 VFs
[14:55:46] [PASSED] 23 VFs
[14:55:46] [PASSED] 24 VFs
[14:55:46] [PASSED] 25 VFs
[14:55:46] [PASSED] 26 VFs
[14:55:46] [PASSED] 27 VFs
[14:55:46] [PASSED] 28 VFs
[14:55:46] [PASSED] 29 VFs
[14:55:46] [PASSED] 30 VFs
[14:55:46] [PASSED] 31 VFs
[14:55:46] [PASSED] 32 VFs
[14:55:46] [PASSED] 33 VFs
[14:55:46] [PASSED] 34 VFs
[14:55:46] [PASSED] 35 VFs
[14:55:46] [PASSED] 36 VFs
[14:55:46] [PASSED] 37 VFs
[14:55:46] [PASSED] 38 VFs
[14:55:46] [PASSED] 39 VFs
[14:55:46] [PASSED] 40 VFs
[14:55:46] [PASSED] 41 VFs
[14:55:46] [PASSED] 42 VFs
[14:55:46] [PASSED] 43 VFs
[14:55:46] [PASSED] 44 VFs
[14:55:46] [PASSED] 45 VFs
[14:55:46] [PASSED] 46 VFs
[14:55:46] [PASSED] 47 VFs
[14:55:46] [PASSED] 48 VFs
[14:55:46] [PASSED] 49 VFs
[14:55:46] [PASSED] 50 VFs
[14:55:46] [PASSED] 51 VFs
[14:55:46] [PASSED] 52 VFs
[14:55:46] [PASSED] 53 VFs
[14:55:46] [PASSED] 54 VFs
[14:55:46] [PASSED] 55 VFs
[14:55:46] [PASSED] 56 VFs
[14:55:46] [PASSED] 57 VFs
[14:55:46] [PASSED] 58 VFs
[14:55:46] [PASSED] 59 VFs
[14:55:46] [PASSED] 60 VFs
[14:55:46] [PASSED] 61 VFs
[14:55:46] [PASSED] 62 VFs
[14:55:46] [PASSED] 63 VFs
[14:55:46] ================== [PASSED] fair_contexts ==================
[14:55:46] ===================== fair_doorbells ======================
[14:55:46] [PASSED] 1 VF
[14:55:46] [PASSED] 2 VFs
[14:55:46] [PASSED] 3 VFs
[14:55:46] [PASSED] 4 VFs
[14:55:46] [PASSED] 5 VFs
[14:55:46] [PASSED] 6 VFs
[14:55:46] [PASSED] 7 VFs
[14:55:46] [PASSED] 8 VFs
[14:55:46] [PASSED] 9 VFs
[14:55:46] [PASSED] 10 VFs
[14:55:46] [PASSED] 11 VFs
[14:55:46] [PASSED] 12 VFs
[14:55:46] [PASSED] 13 VFs
[14:55:46] [PASSED] 14 VFs
[14:55:46] [PASSED] 15 VFs
[14:55:46] [PASSED] 16 VFs
[14:55:46] [PASSED] 17 VFs
[14:55:46] [PASSED] 18 VFs
[14:55:46] [PASSED] 19 VFs
[14:55:46] [PASSED] 20 VFs
[14:55:46] [PASSED] 21 VFs
[14:55:46] [PASSED] 22 VFs
[14:55:46] [PASSED] 23 VFs
[14:55:46] [PASSED] 24 VFs
[14:55:46] [PASSED] 25 VFs
[14:55:46] [PASSED] 26 VFs
[14:55:46] [PASSED] 27 VFs
[14:55:46] [PASSED] 28 VFs
[14:55:46] [PASSED] 29 VFs
[14:55:46] [PASSED] 30 VFs
[14:55:46] [PASSED] 31 VFs
[14:55:46] [PASSED] 32 VFs
[14:55:46] [PASSED] 33 VFs
[14:55:46] [PASSED] 34 VFs
[14:55:46] [PASSED] 35 VFs
[14:55:46] [PASSED] 36 VFs
[14:55:46] [PASSED] 37 VFs
[14:55:46] [PASSED] 38 VFs
[14:55:46] [PASSED] 39 VFs
[14:55:46] [PASSED] 40 VFs
[14:55:46] [PASSED] 41 VFs
[14:55:46] [PASSED] 42 VFs
[14:55:46] [PASSED] 43 VFs
[14:55:46] [PASSED] 44 VFs
[14:55:46] [PASSED] 45 VFs
[14:55:46] [PASSED] 46 VFs
[14:55:46] [PASSED] 47 VFs
[14:55:46] [PASSED] 48 VFs
[14:55:46] [PASSED] 49 VFs
[14:55:46] [PASSED] 50 VFs
[14:55:46] [PASSED] 51 VFs
[14:55:46] [PASSED] 52 VFs
[14:55:46] [PASSED] 53 VFs
[14:55:46] [PASSED] 54 VFs
[14:55:46] [PASSED] 55 VFs
[14:55:46] [PASSED] 56 VFs
[14:55:46] [PASSED] 57 VFs
[14:55:46] [PASSED] 58 VFs
[14:55:46] [PASSED] 59 VFs
[14:55:46] [PASSED] 60 VFs
[14:55:46] [PASSED] 61 VFs
[14:55:46] [PASSED] 62 VFs
[14:55:46] [PASSED] 63 VFs
[14:55:46] ================= [PASSED] fair_doorbells ==================
[14:55:46] ======================== fair_ggtt ========================
[14:55:46] [PASSED] 1 VF
[14:55:46] [PASSED] 2 VFs
[14:55:46] [PASSED] 3 VFs
[14:55:46] [PASSED] 4 VFs
[14:55:46] [PASSED] 5 VFs
[14:55:46] [PASSED] 6 VFs
[14:55:46] [PASSED] 7 VFs
[14:55:46] [PASSED] 8 VFs
[14:55:46] [PASSED] 9 VFs
[14:55:46] [PASSED] 10 VFs
[14:55:46] [PASSED] 11 VFs
[14:55:46] [PASSED] 12 VFs
[14:55:46] [PASSED] 13 VFs
[14:55:46] [PASSED] 14 VFs
[14:55:46] [PASSED] 15 VFs
[14:55:46] [PASSED] 16 VFs
[14:55:46] [PASSED] 17 VFs
[14:55:46] [PASSED] 18 VFs
[14:55:46] [PASSED] 19 VFs
[14:55:46] [PASSED] 20 VFs
[14:55:46] [PASSED] 21 VFs
[14:55:46] [PASSED] 22 VFs
[14:55:46] [PASSED] 23 VFs
[14:55:46] [PASSED] 24 VFs
[14:55:46] [PASSED] 25 VFs
[14:55:46] [PASSED] 26 VFs
[14:55:46] [PASSED] 27 VFs
[14:55:46] [PASSED] 28 VFs
[14:55:46] [PASSED] 29 VFs
[14:55:46] [PASSED] 30 VFs
[14:55:46] [PASSED] 31 VFs
[14:55:46] [PASSED] 32 VFs
[14:55:46] [PASSED] 33 VFs
[14:55:46] [PASSED] 34 VFs
[14:55:46] [PASSED] 35 VFs
[14:55:46] [PASSED] 36 VFs
[14:55:46] [PASSED] 37 VFs
[14:55:46] [PASSED] 38 VFs
[14:55:46] [PASSED] 39 VFs
[14:55:46] [PASSED] 40 VFs
[14:55:46] [PASSED] 41 VFs
[14:55:46] [PASSED] 42 VFs
[14:55:46] [PASSED] 43 VFs
[14:55:46] [PASSED] 44 VFs
[14:55:46] [PASSED] 45 VFs
[14:55:46] [PASSED] 46 VFs
[14:55:46] [PASSED] 47 VFs
[14:55:46] [PASSED] 48 VFs
[14:55:46] [PASSED] 49 VFs
[14:55:46] [PASSED] 50 VFs
[14:55:46] [PASSED] 51 VFs
[14:55:46] [PASSED] 52 VFs
[14:55:46] [PASSED] 53 VFs
[14:55:46] [PASSED] 54 VFs
[14:55:46] [PASSED] 55 VFs
[14:55:46] [PASSED] 56 VFs
[14:55:46] [PASSED] 57 VFs
[14:55:46] [PASSED] 58 VFs
[14:55:46] [PASSED] 59 VFs
[14:55:46] [PASSED] 60 VFs
[14:55:46] [PASSED] 61 VFs
[14:55:46] [PASSED] 62 VFs
[14:55:46] [PASSED] 63 VFs
[14:55:46] ==================== [PASSED] fair_ggtt ====================
[14:55:46] ======================== fair_vram ========================
[14:55:46] [PASSED] 1 VF
[14:55:46] [PASSED] 2 VFs
[14:55:46] [PASSED] 3 VFs
[14:55:46] [PASSED] 4 VFs
[14:55:46] [PASSED] 5 VFs
[14:55:46] [PASSED] 6 VFs
[14:55:46] [PASSED] 7 VFs
[14:55:46] [PASSED] 8 VFs
[14:55:46] [PASSED] 9 VFs
[14:55:46] [PASSED] 10 VFs
[14:55:46] [PASSED] 11 VFs
[14:55:46] [PASSED] 12 VFs
[14:55:46] [PASSED] 13 VFs
[14:55:46] [PASSED] 14 VFs
[14:55:46] [PASSED] 15 VFs
[14:55:46] [PASSED] 16 VFs
[14:55:46] [PASSED] 17 VFs
[14:55:46] [PASSED] 18 VFs
[14:55:46] [PASSED] 19 VFs
[14:55:46] [PASSED] 20 VFs
[14:55:46] [PASSED] 21 VFs
[14:55:46] [PASSED] 22 VFs
[14:55:46] [PASSED] 23 VFs
[14:55:46] [PASSED] 24 VFs
[14:55:46] [PASSED] 25 VFs
[14:55:46] [PASSED] 26 VFs
[14:55:46] [PASSED] 27 VFs
[14:55:46] [PASSED] 28 VFs
[14:55:46] [PASSED] 29 VFs
[14:55:46] [PASSED] 30 VFs
[14:55:46] [PASSED] 31 VFs
[14:55:46] [PASSED] 32 VFs
[14:55:46] [PASSED] 33 VFs
[14:55:46] [PASSED] 34 VFs
[14:55:46] [PASSED] 35 VFs
[14:55:46] [PASSED] 36 VFs
[14:55:46] [PASSED] 37 VFs
[14:55:46] [PASSED] 38 VFs
[14:55:46] [PASSED] 39 VFs
[14:55:46] [PASSED] 40 VFs
[14:55:46] [PASSED] 41 VFs
[14:55:46] [PASSED] 42 VFs
[14:55:46] [PASSED] 43 VFs
[14:55:46] [PASSED] 44 VFs
[14:55:46] [PASSED] 45 VFs
[14:55:46] [PASSED] 46 VFs
[14:55:46] [PASSED] 47 VFs
[14:55:46] [PASSED] 48 VFs
[14:55:46] [PASSED] 49 VFs
[14:55:46] [PASSED] 50 VFs
[14:55:46] [PASSED] 51 VFs
[14:55:46] [PASSED] 52 VFs
[14:55:46] [PASSED] 53 VFs
[14:55:46] [PASSED] 54 VFs
[14:55:46] [PASSED] 55 VFs
[14:55:46] [PASSED] 56 VFs
[14:55:46] [PASSED] 57 VFs
[14:55:46] [PASSED] 58 VFs
[14:55:46] [PASSED] 59 VFs
[14:55:46] [PASSED] 60 VFs
[14:55:46] [PASSED] 61 VFs
[14:55:46] [PASSED] 62 VFs
[14:55:46] [PASSED] 63 VFs
[14:55:46] ==================== [PASSED] fair_vram ====================
[14:55:46] ================== [PASSED] pf_gt_config ===================
[14:55:46] ===================== lmtt (1 subtest) =====================
[14:55:46] ======================== test_ops =========================
[14:55:46] [PASSED] 2-level
[14:55:46] [PASSED] multi-level
[14:55:46] ==================== [PASSED] test_ops =====================
[14:55:46] ====================== [PASSED] lmtt =======================
[14:55:46] ================= sriov_packet (1 subtest) =================
[14:55:46] [PASSED] test_descriptor_init
[14:55:46] ================== [PASSED] sriov_packet ===================
[14:55:46] ================= pf_service (11 subtests) =================
[14:55:46] [PASSED] pf_negotiate_any
[14:55:46] [PASSED] pf_negotiate_base_match
[14:55:46] [PASSED] pf_negotiate_base_newer
[14:55:46] [PASSED] pf_negotiate_base_next
[14:55:46] [SKIPPED] pf_negotiate_base_older (no older minor)
[14:55:46] [PASSED] pf_negotiate_base_prev
[14:55:46] [PASSED] pf_negotiate_latest_match
[14:55:46] [PASSED] pf_negotiate_latest_newer
[14:55:46] [PASSED] pf_negotiate_latest_next
[14:55:46] [SKIPPED] pf_negotiate_latest_older (no older minor)
[14:55:46] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[14:55:46] =================== [PASSED] pf_service ====================
[14:55:46] ================= xe_guc_g2g (2 subtests) ==================
[14:55:46] ============== xe_live_guc_g2g_kunit_default ==============
[14:55:46] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[14:55:46] ============== xe_live_guc_g2g_kunit_allmem ===============
[14:55:46] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[14:55:46] =================== [SKIPPED] xe_guc_g2g ===================
[14:55:46] =================== xe_mocs (2 subtests) ===================
[14:55:46] ================ xe_live_mocs_kernel_kunit ================
[14:55:46] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[14:55:46] ================ xe_live_mocs_reset_kunit =================
[14:55:46] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[14:55:46] ==================== [SKIPPED] xe_mocs =====================
[14:55:46] ================= xe_migrate (2 subtests) ==================
[14:55:46] ================= xe_migrate_sanity_kunit =================
[14:55:46] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[14:55:46] ================== xe_validate_ccs_kunit ==================
[14:55:46] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[14:55:46] =================== [SKIPPED] xe_migrate ===================
[14:55:46] ================== xe_dma_buf (1 subtest) ==================
[14:55:46] ==================== xe_dma_buf_kunit =====================
[14:55:46] ================ [SKIPPED] xe_dma_buf_kunit ================
[14:55:46] =================== [SKIPPED] xe_dma_buf ===================
[14:55:46] ================= xe_bo_shrink (1 subtest) =================
[14:55:46] =================== xe_bo_shrink_kunit ====================
[14:55:46] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[14:55:46] ================== [SKIPPED] xe_bo_shrink ==================
[14:55:46] ==================== xe_bo (2 subtests) ====================
[14:55:46] ================== xe_ccs_migrate_kunit ===================
[14:55:46] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[14:55:46] ==================== xe_bo_evict_kunit ====================
[14:55:46] =============== [SKIPPED] xe_bo_evict_kunit ================
[14:55:46] ===================== [SKIPPED] xe_bo ======================
[14:55:46] =================== xe_any (9 subtests) ====================
[14:55:46] [PASSED] test_to_xe
[14:55:46] [PASSED] test_to_dev
[14:55:46] [PASSED] test_to_pdev
[14:55:46] [PASSED] test_to_drm
[14:55:46] [PASSED] test_if_pdev
[14:55:46] [PASSED] test_if_xe
[14:55:46] [PASSED] test_if_tile
[14:55:46] [PASSED] test_if_gt
[14:55:46] [PASSED] test_to_id
[14:55:46] ===================== [PASSED] xe_any ======================
[14:55:46] ==================== args (13 subtests) ====================
[14:55:46] [PASSED] count_args_test
[14:55:46] [PASSED] call_args_example
[14:55:46] [PASSED] call_args_test
[14:55:46] [PASSED] drop_first_arg_example
[14:55:46] [PASSED] drop_first_arg_test
[14:55:46] [PASSED] first_arg_example
[14:55:46] [PASSED] first_arg_test
[14:55:46] [PASSED] last_arg_example
[14:55:46] [PASSED] last_arg_test
[14:55:46] [PASSED] pick_arg_example
[14:55:46] [PASSED] if_args_example
[14:55:46] [PASSED] if_args_test
[14:55:46] [PASSED] sep_comma_example
[14:55:46] ====================== [PASSED] args =======================
[14:55:46] =================== xe_pci (3 subtests) ====================
[14:55:46] ==================== check_graphics_ip ====================
[14:55:46] [PASSED] 12.00 Xe_LP
[14:55:46] [PASSED] 12.10 Xe_LP+
[14:55:46] [PASSED] 12.55 Xe_HPG
[14:55:46] [PASSED] 12.60 Xe_HPC
[14:55:46] [PASSED] 12.70 Xe_LPG
[14:55:46] [PASSED] 12.71 Xe_LPG
[14:55:46] [PASSED] 12.74 Xe_LPG+
[14:55:46] [PASSED] 20.01 Xe2_HPG
[14:55:46] [PASSED] 20.02 Xe2_HPG
[14:55:46] [PASSED] 20.04 Xe2_LPG
[14:55:46] [PASSED] 30.00 Xe3_LPG
[14:55:46] [PASSED] 30.01 Xe3_LPG
[14:55:46] [PASSED] 30.03 Xe3_LPG
[14:55:46] [PASSED] 30.04 Xe3_LPG
[14:55:46] [PASSED] 30.05 Xe3_LPG
[14:55:46] [PASSED] 35.10 Xe3p_LPG
[14:55:46] [PASSED] 35.11 Xe3p_XPC
[14:55:46] ================ [PASSED] check_graphics_ip ================
[14:55:46] ===================== check_media_ip ======================
[14:55:46] [PASSED] 12.00 Xe_M
[14:55:46] [PASSED] 12.55 Xe_HPM
[14:55:46] [PASSED] 13.00 Xe_LPM+
[14:55:46] [PASSED] 13.01 Xe2_HPM
[14:55:46] [PASSED] 20.00 Xe2_LPM
[14:55:46] [PASSED] 30.00 Xe3_LPM
[14:55:46] [PASSED] 30.02 Xe3_LPM
[14:55:46] [PASSED] 35.00 Xe3p_LPM
[14:55:46] [PASSED] 35.03 Xe3p_HPM
[14:55:46] ================= [PASSED] check_media_ip ==================
[14:55:46] =================== check_platform_desc ===================
[14:55:46] [PASSED] 0x9A60 (TIGERLAKE)
[14:55:46] [PASSED] 0x9A68 (TIGERLAKE)
[14:55:46] [PASSED] 0x9A70 (TIGERLAKE)
[14:55:46] [PASSED] 0x9A40 (TIGERLAKE)
[14:55:46] [PASSED] 0x9A49 (TIGERLAKE)
[14:55:46] [PASSED] 0x9A59 (TIGERLAKE)
[14:55:46] [PASSED] 0x9A78 (TIGERLAKE)
[14:55:46] [PASSED] 0x9AC0 (TIGERLAKE)
[14:55:46] [PASSED] 0x9AC9 (TIGERLAKE)
[14:55:46] [PASSED] 0x9AD9 (TIGERLAKE)
[14:55:46] [PASSED] 0x9AF8 (TIGERLAKE)
[14:55:46] [PASSED] 0x4C80 (ROCKETLAKE)
[14:55:46] [PASSED] 0x4C8A (ROCKETLAKE)
[14:55:46] [PASSED] 0x4C8B (ROCKETLAKE)
[14:55:46] [PASSED] 0x4C8C (ROCKETLAKE)
[14:55:46] [PASSED] 0x4C90 (ROCKETLAKE)
[14:55:46] [PASSED] 0x4C9A (ROCKETLAKE)
[14:55:46] [PASSED] 0x4680 (ALDERLAKE_S)
[14:55:46] [PASSED] 0x4682 (ALDERLAKE_S)
[14:55:46] [PASSED] 0x4688 (ALDERLAKE_S)
[14:55:46] [PASSED] 0x468A (ALDERLAKE_S)
[14:55:46] [PASSED] 0x468B (ALDERLAKE_S)
[14:55:46] [PASSED] 0x4690 (ALDERLAKE_S)
[14:55:46] [PASSED] 0x4692 (ALDERLAKE_S)
[14:55:46] [PASSED] 0x4693 (ALDERLAKE_S)
[14:55:46] [PASSED] 0x46A0 (ALDERLAKE_P)
[14:55:46] [PASSED] 0x46A1 (ALDERLAKE_P)
[14:55:46] [PASSED] 0x46A2 (ALDERLAKE_P)
[14:55:46] [PASSED] 0x46A3 (ALDERLAKE_P)
[14:55:46] [PASSED] 0x46A6 (ALDERLAKE_P)
[14:55:46] [PASSED] 0x46A8 (ALDERLAKE_P)
[14:55:46] [PASSED] 0x46AA (ALDERLAKE_P)
[14:55:46] [PASSED] 0x462A (ALDERLAKE_P)
[14:55:46] [PASSED] 0x4626 (ALDERLAKE_P)
[14:55:46] [PASSED] 0x4628 (ALDERLAKE_P)
[14:55:46] [PASSED] 0x46B0 (ALDERLAKE_P)
[14:55:46] [PASSED] 0x46B1 (ALDERLAKE_P)
[14:55:46] [PASSED] 0x46B2 (ALDERLAKE_P)
[14:55:46] [PASSED] 0x46B3 (ALDERLAKE_P)
[14:55:46] [PASSED] 0x46C0 (ALDERLAKE_P)
[14:55:46] [PASSED] 0x46C1 (ALDERLAKE_P)
[14:55:46] [PASSED] 0x46C2 (ALDERLAKE_P)
[14:55:46] [PASSED] 0x46C3 (ALDERLAKE_P)
[14:55:46] [PASSED] 0x46D0 (ALDERLAKE_N)
[14:55:46] [PASSED] 0x46D1 (ALDERLAKE_N)
[14:55:46] [PASSED] 0x46D2 (ALDERLAKE_N)
[14:55:46] [PASSED] 0x46D3 (ALDERLAKE_N)
[14:55:46] [PASSED] 0x46D4 (ALDERLAKE_N)
[14:55:46] [PASSED] 0xA721 (ALDERLAKE_P)
[14:55:46] [PASSED] 0xA7A1 (ALDERLAKE_P)
[14:55:46] [PASSED] 0xA7A9 (ALDERLAKE_P)
[14:55:46] [PASSED] 0xA7AC (ALDERLAKE_P)
[14:55:46] [PASSED] 0xA7AD (ALDERLAKE_P)
[14:55:46] [PASSED] 0xA720 (ALDERLAKE_P)
[14:55:46] [PASSED] 0xA7A0 (ALDERLAKE_P)
[14:55:46] [PASSED] 0xA7A8 (ALDERLAKE_P)
[14:55:46] [PASSED] 0xA7AA (ALDERLAKE_P)
[14:55:46] [PASSED] 0xA7AB (ALDERLAKE_P)
[14:55:46] [PASSED] 0xA780 (ALDERLAKE_S)
[14:55:46] [PASSED] 0xA781 (ALDERLAKE_S)
[14:55:46] [PASSED] 0xA782 (ALDERLAKE_S)
[14:55:46] [PASSED] 0xA783 (ALDERLAKE_S)
[14:55:46] [PASSED] 0xA788 (ALDERLAKE_S)
[14:55:46] [PASSED] 0xA789 (ALDERLAKE_S)
[14:55:46] [PASSED] 0xA78A (ALDERLAKE_S)
[14:55:46] [PASSED] 0xA78B (ALDERLAKE_S)
[14:55:46] [PASSED] 0x4905 (DG1)
[14:55:46] [PASSED] 0x4906 (DG1)
[14:55:46] [PASSED] 0x4907 (DG1)
[14:55:46] [PASSED] 0x4908 (DG1)
[14:55:46] [PASSED] 0x4909 (DG1)
[14:55:46] [PASSED] 0x56C0 (DG2)
[14:55:46] [PASSED] 0x56C2 (DG2)
[14:55:46] [PASSED] 0x56C1 (DG2)
[14:55:46] [PASSED] 0x7D51 (METEORLAKE)
[14:55:46] [PASSED] 0x7DD1 (METEORLAKE)
[14:55:46] [PASSED] 0x7D41 (METEORLAKE)
[14:55:46] [PASSED] 0x7D67 (METEORLAKE)
[14:55:46] [PASSED] 0xB640 (METEORLAKE)
[14:55:46] [PASSED] 0x56A0 (DG2)
[14:55:46] [PASSED] 0x56A1 (DG2)
[14:55:46] [PASSED] 0x56A2 (DG2)
[14:55:46] [PASSED] 0x56BE (DG2)
[14:55:46] [PASSED] 0x56BF (DG2)
[14:55:46] [PASSED] 0x5690 (DG2)
[14:55:46] [PASSED] 0x5691 (DG2)
[14:55:46] [PASSED] 0x5692 (DG2)
[14:55:46] [PASSED] 0x56A5 (DG2)
[14:55:46] [PASSED] 0x56A6 (DG2)
[14:55:46] [PASSED] 0x56B0 (DG2)
[14:55:46] [PASSED] 0x56B1 (DG2)
[14:55:46] [PASSED] 0x56BA (DG2)
[14:55:46] [PASSED] 0x56BB (DG2)
[14:55:46] [PASSED] 0x56BC (DG2)
[14:55:46] [PASSED] 0x56BD (DG2)
[14:55:46] [PASSED] 0x5693 (DG2)
[14:55:46] [PASSED] 0x5694 (DG2)
[14:55:46] [PASSED] 0x5695 (DG2)
[14:55:46] [PASSED] 0x56A3 (DG2)
[14:55:46] [PASSED] 0x56A4 (DG2)
[14:55:46] [PASSED] 0x56B2 (DG2)
[14:55:46] [PASSED] 0x56B3 (DG2)
[14:55:46] [PASSED] 0x5696 (DG2)
[14:55:46] [PASSED] 0x5697 (DG2)
[14:55:46] [PASSED] 0xB69 (PVC)
[14:55:46] [PASSED] 0xB6E (PVC)
[14:55:46] [PASSED] 0xBD4 (PVC)
[14:55:46] [PASSED] 0xBD5 (PVC)
[14:55:46] [PASSED] 0xBD6 (PVC)
[14:55:46] [PASSED] 0xBD7 (PVC)
[14:55:46] [PASSED] 0xBD8 (PVC)
[14:55:46] [PASSED] 0xBD9 (PVC)
[14:55:46] [PASSED] 0xBDA (PVC)
[14:55:46] [PASSED] 0xBDB (PVC)
[14:55:46] [PASSED] 0xBE0 (PVC)
[14:55:46] [PASSED] 0xBE1 (PVC)
[14:55:46] [PASSED] 0xBE5 (PVC)
[14:55:46] [PASSED] 0x7D40 (METEORLAKE)
[14:55:46] [PASSED] 0x7D45 (METEORLAKE)
[14:55:46] [PASSED] 0x7D55 (METEORLAKE)
[14:55:46] [PASSED] 0x7D60 (METEORLAKE)
[14:55:46] [PASSED] 0x7DD5 (METEORLAKE)
[14:55:46] [PASSED] 0x6420 (LUNARLAKE)
[14:55:46] [PASSED] 0x64A0 (LUNARLAKE)
[14:55:46] [PASSED] 0x64B0 (LUNARLAKE)
[14:55:46] [PASSED] 0xE202 (BATTLEMAGE)
[14:55:46] [PASSED] 0xE209 (BATTLEMAGE)
[14:55:46] [PASSED] 0xE20B (BATTLEMAGE)
[14:55:46] [PASSED] 0xE20C (BATTLEMAGE)
[14:55:46] [PASSED] 0xE20D (BATTLEMAGE)
[14:55:46] [PASSED] 0xE210 (BATTLEMAGE)
[14:55:46] [PASSED] 0xE211 (BATTLEMAGE)
[14:55:46] [PASSED] 0xE212 (BATTLEMAGE)
[14:55:46] [PASSED] 0xE216 (BATTLEMAGE)
[14:55:46] [PASSED] 0xE220 (BATTLEMAGE)
[14:55:46] [PASSED] 0xE221 (BATTLEMAGE)
[14:55:46] [PASSED] 0xE222 (BATTLEMAGE)
[14:55:46] [PASSED] 0xE223 (BATTLEMAGE)
[14:55:46] [PASSED] 0xB080 (PANTHERLAKE)
[14:55:46] [PASSED] 0xB081 (PANTHERLAKE)
[14:55:46] [PASSED] 0xB082 (PANTHERLAKE)
[14:55:46] [PASSED] 0xB083 (PANTHERLAKE)
[14:55:46] [PASSED] 0xB084 (PANTHERLAKE)
[14:55:46] [PASSED] 0xB085 (PANTHERLAKE)
[14:55:46] [PASSED] 0xB086 (PANTHERLAKE)
[14:55:46] [PASSED] 0xB087 (PANTHERLAKE)
[14:55:46] [PASSED] 0xB08F (PANTHERLAKE)
[14:55:46] [PASSED] 0xB090 (PANTHERLAKE)
[14:55:46] [PASSED] 0xB0A0 (PANTHERLAKE)
[14:55:46] [PASSED] 0xB0B0 (PANTHERLAKE)
[14:55:46] [PASSED] 0xFD80 (PANTHERLAKE)
[14:55:46] [PASSED] 0xFD81 (PANTHERLAKE)
[14:55:46] [PASSED] 0xD740 (NOVALAKE_S)
[14:55:46] [PASSED] 0xD741 (NOVALAKE_S)
[14:55:46] [PASSED] 0xD742 (NOVALAKE_S)
[14:55:46] [PASSED] 0xD743 (NOVALAKE_S)
[14:55:46] [PASSED] 0xD745 (NOVALAKE_S)
[14:55:46] [PASSED] 0xD74A (NOVALAKE_S)
[14:55:46] [PASSED] 0xD74B (NOVALAKE_S)
[14:55:46] [PASSED] 0x674C (CRESCENTISLAND)
[14:55:46] [PASSED] 0x674D (CRESCENTISLAND)
[14:55:46] [PASSED] 0x674E (CRESCENTISLAND)
[14:55:46] [PASSED] 0x674F (CRESCENTISLAND)
[14:55:46] [PASSED] 0x6750 (CRESCENTISLAND)
[14:55:46] [PASSED] 0xD750 (NOVALAKE_P)
[14:55:46] [PASSED] 0xD751 (NOVALAKE_P)
[14:55:46] [PASSED] 0xD752 (NOVALAKE_P)
[14:55:46] [PASSED] 0xD753 (NOVALAKE_P)
[14:55:46] [PASSED] 0xD754 (NOVALAKE_P)
[14:55:46] [PASSED] 0xD755 (NOVALAKE_P)
[14:55:46] [PASSED] 0xD756 (NOVALAKE_P)
[14:55:46] [PASSED] 0xD757 (NOVALAKE_P)
[14:55:46] [PASSED] 0xD75F (NOVALAKE_P)
[14:55:46] =============== [PASSED] check_platform_desc ===============
[14:55:46] ===================== [PASSED] xe_pci ======================
[14:55:46] ============= xe_rtp_tables_test (5 subtests) ==============
[14:55:46] ================== xe_rtp_table_gt_test ===================
[14:55:46] [PASSED] gt_was/14011060649
[14:55:46] [PASSED] gt_was/14011059788
[14:55:46] [PASSED] gt_was/14015795083
[14:55:46] [PASSED] gt_was/16021867713
[14:55:46] [PASSED] gt_was/14019449301
[14:55:46] [PASSED] gt_was/16028005424
[14:55:46] [PASSED] gt_was/14026578760
[14:55:46] [PASSED] gt_was/1409420604
[14:55:46] [PASSED] gt_was/1408615072
[14:55:46] [PASSED] gt_was/22010523718
[14:55:46] [PASSED] gt_was/14011006942
[14:55:46] [PASSED] gt_was/14014830051
[14:55:46] [PASSED] gt_was/18018781329
[14:55:46] [PASSED] gt_was/1509235366
[14:55:46] [PASSED] gt_was/18018781329
[14:55:46] [PASSED] gt_was/16016694945
[14:55:46] [PASSED] gt_was/14018575942
[14:55:46] [PASSED] gt_was/22016670082
[14:55:46] [PASSED] gt_was/22016670082
[14:55:46] [PASSED] gt_was/14017421178
[14:55:46] [PASSED] gt_was/16025250150
[14:55:46] [PASSED] gt_was/14021871409
[14:55:46] [PASSED] gt_was/16021865536
[14:55:46] [PASSED] gt_was/14021486841
[14:55:46] [PASSED] gt_was/14025160223
[14:55:46] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[14:55:46] [PASSED] gt_was/14025635424
[14:55:46] [PASSED] gt_was/16028005424
[14:55:46] ============== [PASSED] xe_rtp_table_gt_test ===============
[14:55:46] ================== xe_rtp_table_gt_test ===================
[14:55:46] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[14:55:46] [PASSED] gt_tunings/Tuning: 32B Access Enable
[14:55:46] [PASSED] gt_tunings/Tuning: L3 cache
[14:55:46] [PASSED] gt_tunings/Tuning: L3 cache - media
[14:55:46] [PASSED] gt_tunings/Tuning: Compression Overfetch
[14:55:46] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[14:55:46] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[14:55:46] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[14:55:46] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[14:55:46] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[14:55:46] [PASSED] gt_tunings/Tuning: Stateless compression control
[14:55:46] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[14:55:46] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[14:55:46] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[14:55:46] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[14:55:46] ============== [PASSED] xe_rtp_table_gt_test ===============
[14:55:46] ================== xe_rtp_table_oob_test ==================
[14:55:46] [PASSED] oob_was/1607983814
[14:55:46] [PASSED] oob_was/16010904313
[14:55:46] [PASSED] oob_was/18022495364
[14:55:46] [PASSED] oob_was/22012773006
[14:55:46] [PASSED] oob_was/14014475959
[14:55:46] [PASSED] oob_was/22011391025
[14:55:46] [PASSED] oob_was/22012727170
[14:55:46] [PASSED] oob_was/22012727685
[14:55:46] [PASSED] oob_was/22016596838
[14:55:46] [PASSED] oob_was/18020744125
[14:55:46] [PASSED] oob_was/1409600907
[14:55:46] [PASSED] oob_was/22014953428
[14:55:46] [PASSED] oob_was/16017236439
[14:55:46] [PASSED] oob_was/14019821291
[14:55:46] [PASSED] oob_was/14015076503
[14:55:46] [PASSED] oob_was/14018913170
[14:55:46] [PASSED] oob_was/14018094691
[14:55:46] [PASSED] oob_was/18024947630
[14:55:46] [PASSED] oob_was/16022287689
[14:55:46] [PASSED] oob_was/13011645652
[14:55:46] [PASSED] oob_was/14022293748
[14:55:46] [PASSED] oob_was/22019794406
[14:55:46] [PASSED] oob_was/22019338487
[14:55:46] [PASSED] oob_was/16023588340
[14:55:46] [PASSED] oob_was/14019789679
[14:55:46] [PASSED] oob_was/14022866841
[14:55:46] [PASSED] oob_was/16021333562
[14:55:46] [PASSED] oob_was/14016712196
[14:55:46] [PASSED] oob_was/14015568240
[14:55:46] [PASSED] oob_was/18013179988
[14:55:46] [PASSED] oob_was/1508761755
[14:55:46] [PASSED] oob_was/16023105232
[14:55:46] [PASSED] oob_was/16026508708
[14:55:46] [PASSED] oob_was/14020001231
[14:55:46] [PASSED] oob_was/16023683509
[14:55:46] [PASSED] oob_was/14025515070
[14:55:46] [PASSED] oob_was/15015404425_disable
[14:55:46] [PASSED] oob_was/16026007364
[14:55:46] [PASSED] oob_was/14020316580
[14:55:46] [PASSED] oob_was/14025883347
[14:55:46] [PASSED] oob_was/16029380221
[14:55:46] [PASSED] oob_was/22022079272
[14:55:46] [PASSED] oob_was/16029897822
[14:55:46] [PASSED] oob_was/14027054324
[14:55:46] ============== [PASSED] xe_rtp_table_oob_test ==============
[14:55:46] ================ xe_rtp_table_dev_oob_test ================
[14:55:46] [PASSED] device_oob_was/22010954014
[14:55:46] [PASSED] device_oob_was/15015404425
[14:55:46] [PASSED] device_oob_was/22019338487_display
[14:55:46] [PASSED] device_oob_was/14022085890
[14:55:46] [PASSED] device_oob_was/14026539277
[14:55:46] [PASSED] device_oob_was/14026633728
[14:55:46] [PASSED] device_oob_was/14026746987
[14:55:46] [PASSED] device_oob_was/14026779378
[14:55:46] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[14:55:46] ========== xe_rtp_table_missing_upper_bound_test ==========
[14:55:46] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[14:55:46] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[14:55:46] [PASSED] register_whitelist/1806527549
[14:55:46] [PASSED] register_whitelist/allow_read_ctx_timestamp
[14:55:46] [PASSED] register_whitelist/allow_read_queue_timestamp
[14:55:46] [PASSED] register_whitelist/16014440446
[14:55:46] [PASSED] register_whitelist/16017236439
[14:55:46] [PASSED] register_whitelist/16020183090
[14:55:46] [PASSED] register_whitelist/14024997852
[14:55:46] [PASSED] register_whitelist/14024997852
[14:55:46] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[14:55:46] =============== [PASSED] xe_rtp_tables_test ================
[14:55:46] =================== xe_rtp (3 subtests) ====================
[14:55:46] =================== xe_rtp_rules_tests ====================
[14:55:46] [PASSED] no
[14:55:46] [PASSED] yes
[14:55:46] [PASSED] no-and-no
[14:55:46] [PASSED] no-and-yes
[14:55:46] [PASSED] yes-and-no
[14:55:46] [PASSED] yes-and-yes
[14:55:46] [PASSED] no-or-no
[14:55:46] [PASSED] no-or-yes
[14:55:46] [PASSED] yes-or-no
[14:55:46] [PASSED] yes-or-yes
[14:55:46] [PASSED] no-yes-or-yes-no
[14:55:46] [PASSED] no-yes-or-yes-yes
[14:55:46] [PASSED] yes-yes-or-no-yes
[14:55:46] [PASSED] yes-yes-or-yes-yes
[14:55:46] [PASSED] no-no-or-yes-or-no
[14:55:46] [PASSED] or
[14:55:46] [PASSED] or-yes
[14:55:46] [PASSED] or-no
[14:55:46] [PASSED] yes-or
[14:55:46] [PASSED] no-or
[14:55:46] [PASSED] no-or-or-yes
[14:55:46] [PASSED] yes-or-or-no
[14:55:46] [PASSED] no-or-or-no
[14:55:46] [PASSED] missing-context-engine-class
[14:55:46] [PASSED] missing-context-engine-class-or-yes
[14:55:46] [PASSED] missing-context-engine-class-or-or-yes
[14:55:46] =============== [PASSED] xe_rtp_rules_tests ================
[14:55:46] =============== xe_rtp_process_to_sr_tests ================
[14:55:46] [PASSED] coalesce-same-reg
[14:55:46] [PASSED] coalesce-same-reg-literal-and-func
[14:55:46] [PASSED] no-match-no-add
[14:55:46] [PASSED] two-regs-two-entries
[14:55:46] [PASSED] clr-one-set-other
[14:55:46] [PASSED] set-field
[14:55:46] [PASSED] conflict-duplicate
[14:55:46] [PASSED] conflict-not-disjoint
[14:55:46] [PASSED] conflict-not-disjoint-literal-and-func
[14:55:46] [PASSED] conflict-reg-type
[14:55:46] [PASSED] bad-mcr-reg-forced-to-regular
[14:55:46] [PASSED] bad-regular-reg-forced-to-mcr
[14:55:46] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[14:55:46] ================== xe_rtp_process_tests ===================
[14:55:46] [PASSED] active1
[14:55:46] [PASSED] active2
[14:55:46] [PASSED] active-inactive
[14:55:46] [PASSED] inactive-active
[14:55:46] [PASSED] inactive-active-inactive
[14:55:46] [PASSED] inactive-inactive-inactive
[14:55:46] ============== [PASSED] xe_rtp_process_tests ===============
[14:55:46] ===================== [PASSED] xe_rtp ======================
[14:55:46] ==================== xe_wa (1 subtest) =====================
[14:55:46] ======================== xe_wa_gt =========================
[14:55:46] [PASSED] TIGERLAKE B0
[14:55:46] [PASSED] DG1 A0
[14:55:46] [PASSED] DG1 B0
[14:55:46] [PASSED] ALDERLAKE_S A0
[14:55:46] [PASSED] ALDERLAKE_S B0
[14:55:46] [PASSED] ALDERLAKE_S C0
[14:55:46] [PASSED] ALDERLAKE_S D0
[14:55:46] [PASSED] ALDERLAKE_P A0
[14:55:46] [PASSED] ALDERLAKE_P B0
[14:55:46] [PASSED] ALDERLAKE_P C0
[14:55:46] [PASSED] ALDERLAKE_S RPLS D0
[14:55:46] [PASSED] ALDERLAKE_P RPLU E0
[14:55:46] [PASSED] DG2 G10 C0
[14:55:46] [PASSED] DG2 G11 B1
[14:55:46] [PASSED] DG2 G12 A1
[14:55:46] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[14:55:46] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[14:55:46] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[14:55:46] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[14:55:46] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[14:55:46] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[14:55:46] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[14:55:46] ==================== [PASSED] xe_wa_gt =====================
[14:55:46] ====================== [PASSED] xe_wa ======================
[14:55:46] ============================================================
[14:55:46] Testing complete. Ran 793 tests: passed: 765, skipped: 28
[14:55:46] Elapsed time: 36.857s total, 1.829s configuring, 34.312s building, 0.685s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[14:55:47] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:55:48] 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
[14:56:14] Starting KUnit Kernel (1/1)...
[14:56:14] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:56:14] ============= refcount_interrupt (4 subtests) ==============
[14:56:14] [PASSED] test_single_irq_change
[14:56:14] [PASSED] test_nested_irq_change
[14:56:14] [PASSED] test_multiple_irq_change
[14:56:14] [PASSED] test_irq_save
[14:56:14] =============== [PASSED] refcount_interrupt ================
[14:56:14] ============ drm_test_pick_cmdline (2 subtests) ============
[14:56:14] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[14:56:14] =============== drm_test_pick_cmdline_named ===============
[14:56:14] [PASSED] NTSC
[14:56:14] [PASSED] NTSC-J
[14:56:14] [PASSED] PAL
[14:56:14] [PASSED] PAL-M
[14:56:14] =========== [PASSED] drm_test_pick_cmdline_named ===========
[14:56:14] ============== [PASSED] drm_test_pick_cmdline ==============
[14:56:14] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[14:56:14] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[14:56:14] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[14:56:14] =========== drm_validate_clone_mode (2 subtests) ===========
[14:56:14] ============== drm_test_check_in_clone_mode ===============
[14:56:14] [PASSED] in_clone_mode
[14:56:14] [PASSED] not_in_clone_mode
[14:56:14] ========== [PASSED] drm_test_check_in_clone_mode ===========
[14:56:14] =============== drm_test_check_valid_clones ===============
[14:56:14] [PASSED] not_in_clone_mode
[14:56:14] [PASSED] valid_clone
[14:56:14] [PASSED] invalid_clone
[14:56:14] =========== [PASSED] drm_test_check_valid_clones ===========
[14:56:14] ============= [PASSED] drm_validate_clone_mode =============
[14:56:14] ============= drm_validate_modeset (1 subtest) =============
[14:56:14] [PASSED] drm_test_check_connector_changed_modeset
[14:56:14] ============== [PASSED] drm_validate_modeset ===============
[14:56:14] ====== drm_test_bridge_get_current_state (1 subtest) =======
[14:56:14] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[14:56:14] ======== [PASSED] drm_test_bridge_get_current_state ========
[14:56:14] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[14:56:14] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[14:56:14] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[14:56:14] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[14:56:14] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[14:56:14] ============== drm_bridge_alloc (2 subtests) ===============
[14:56:14] [PASSED] drm_test_drm_bridge_alloc_basic
[14:56:14] [PASSED] drm_test_drm_bridge_alloc_get_put
[14:56:14] ================ [PASSED] drm_bridge_alloc =================
[14:56:14] ============= drm_bridge_bus_fmt (5 subtests) ==============
[14:56:14] [PASSED] drm_test_bridge_rgb_yuv_rgb
[14:56:14] [PASSED] drm_test_bridge_must_convert_to_yuv444
[14:56:14] [PASSED] drm_test_bridge_hdmi_auto_rgb
[14:56:14] [PASSED] drm_test_bridge_auto_first
[14:56:14] [PASSED] drm_test_bridge_rgb_yuv_no_path
[14:56:14] =============== [PASSED] drm_bridge_bus_fmt ================
[14:56:14] ============= drm_cmdline_parser (40 subtests) =============
[14:56:14] [PASSED] drm_test_cmdline_force_d_only
[14:56:14] [PASSED] drm_test_cmdline_force_D_only_dvi
[14:56:14] [PASSED] drm_test_cmdline_force_D_only_hdmi
[14:56:14] [PASSED] drm_test_cmdline_force_D_only_not_digital
[14:56:14] [PASSED] drm_test_cmdline_force_e_only
[14:56:14] [PASSED] drm_test_cmdline_res
[14:56:14] [PASSED] drm_test_cmdline_res_vesa
[14:56:14] [PASSED] drm_test_cmdline_res_vesa_rblank
[14:56:14] [PASSED] drm_test_cmdline_res_rblank
[14:56:14] [PASSED] drm_test_cmdline_res_bpp
[14:56:14] [PASSED] drm_test_cmdline_res_refresh
[14:56:14] [PASSED] drm_test_cmdline_res_bpp_refresh
[14:56:14] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[14:56:14] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[14:56:14] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[14:56:14] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[14:56:14] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[14:56:14] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[14:56:14] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[14:56:14] [PASSED] drm_test_cmdline_res_margins_force_on
[14:56:14] [PASSED] drm_test_cmdline_res_vesa_margins
[14:56:14] [PASSED] drm_test_cmdline_name
[14:56:14] [PASSED] drm_test_cmdline_name_bpp
[14:56:14] [PASSED] drm_test_cmdline_name_option
[14:56:14] [PASSED] drm_test_cmdline_name_bpp_option
[14:56:14] [PASSED] drm_test_cmdline_rotate_0
[14:56:14] [PASSED] drm_test_cmdline_rotate_90
[14:56:14] [PASSED] drm_test_cmdline_rotate_180
[14:56:14] [PASSED] drm_test_cmdline_rotate_270
[14:56:14] [PASSED] drm_test_cmdline_hmirror
[14:56:14] [PASSED] drm_test_cmdline_vmirror
[14:56:14] [PASSED] drm_test_cmdline_margin_options
[14:56:14] [PASSED] drm_test_cmdline_multiple_options
[14:56:14] [PASSED] drm_test_cmdline_bpp_extra_and_option
[14:56:14] [PASSED] drm_test_cmdline_extra_and_option
[14:56:14] [PASSED] drm_test_cmdline_freestanding_options
[14:56:14] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[14:56:14] [PASSED] drm_test_cmdline_panel_orientation
[14:56:14] ================ drm_test_cmdline_invalid =================
[14:56:14] [PASSED] margin_only
[14:56:14] [PASSED] interlace_only
[14:56:14] [PASSED] res_missing_x
[14:56:14] [PASSED] res_missing_y
[14:56:14] [PASSED] res_bad_y
[14:56:14] [PASSED] res_missing_y_bpp
[14:56:14] [PASSED] res_bad_bpp
[14:56:14] [PASSED] res_bad_refresh
[14:56:14] [PASSED] res_bpp_refresh_force_on_off
[14:56:14] [PASSED] res_invalid_mode
[14:56:14] [PASSED] res_bpp_wrong_place_mode
[14:56:14] [PASSED] name_bpp_refresh
[14:56:14] [PASSED] name_refresh
[14:56:14] [PASSED] name_refresh_wrong_mode
[14:56:14] [PASSED] name_refresh_invalid_mode
[14:56:14] [PASSED] rotate_multiple
[14:56:14] [PASSED] rotate_invalid_val
[14:56:14] [PASSED] rotate_truncated
[14:56:14] [PASSED] invalid_option
[14:56:14] [PASSED] invalid_tv_option
[14:56:14] [PASSED] truncated_tv_option
[14:56:14] ============ [PASSED] drm_test_cmdline_invalid =============
[14:56:14] =============== drm_test_cmdline_tv_options ===============
[14:56:14] [PASSED] NTSC
[14:56:14] [PASSED] NTSC_443
[14:56:14] [PASSED] NTSC_J
[14:56:14] [PASSED] PAL
[14:56:14] [PASSED] PAL_M
[14:56:14] [PASSED] PAL_N
[14:56:14] [PASSED] SECAM
[14:56:14] [PASSED] MONO_525
[14:56:14] [PASSED] MONO_625
[14:56:14] =========== [PASSED] drm_test_cmdline_tv_options ===========
[14:56:14] =============== [PASSED] drm_cmdline_parser ================
[14:56:14] ========== drmm_connector_hdmi_init (20 subtests) ==========
[14:56:14] [PASSED] drm_test_connector_hdmi_init_valid
[14:56:14] [PASSED] drm_test_connector_hdmi_init_bpc_8
[14:56:14] [PASSED] drm_test_connector_hdmi_init_bpc_10
[14:56:14] [PASSED] drm_test_connector_hdmi_init_bpc_12
[14:56:14] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[14:56:14] [PASSED] drm_test_connector_hdmi_init_bpc_null
[14:56:14] [PASSED] drm_test_connector_hdmi_init_formats_empty
[14:56:14] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[14:56:14] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[14:56:14] [PASSED] supported_formats=0x9 yuv420_allowed=1
[14:56:14] [PASSED] supported_formats=0x9 yuv420_allowed=0
[14:56:14] [PASSED] supported_formats=0x5 yuv420_allowed=1
[14:56:14] [PASSED] supported_formats=0x5 yuv420_allowed=0
[14:56:14] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[14:56:14] [PASSED] drm_test_connector_hdmi_init_null_ddc
[14:56:14] [PASSED] drm_test_connector_hdmi_init_null_product
[14:56:14] [PASSED] drm_test_connector_hdmi_init_null_vendor
[14:56:14] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[14:56:14] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[14:56:14] [PASSED] drm_test_connector_hdmi_init_product_valid
[14:56:14] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[14:56:14] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[14:56:14] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[14:56:14] ========= drm_test_connector_hdmi_init_type_valid =========
[14:56:14] [PASSED] HDMI-A
[14:56:14] [PASSED] HDMI-B
[14:56:14] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[14:56:14] ======== drm_test_connector_hdmi_init_type_invalid ========
[14:56:14] [PASSED] Unknown
[14:56:14] [PASSED] VGA
[14:56:14] [PASSED] DVI-I
[14:56:14] [PASSED] DVI-D
[14:56:14] [PASSED] DVI-A
[14:56:14] [PASSED] Composite
[14:56:14] [PASSED] SVIDEO
[14:56:14] [PASSED] LVDS
[14:56:14] [PASSED] Component
[14:56:14] [PASSED] DIN
[14:56:14] [PASSED] DP
[14:56:14] [PASSED] TV
[14:56:14] [PASSED] eDP
[14:56:14] [PASSED] Virtual
[14:56:14] [PASSED] DSI
[14:56:14] [PASSED] DPI
[14:56:14] [PASSED] Writeback
[14:56:14] [PASSED] SPI
[14:56:14] [PASSED] USB
[14:56:14] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[14:56:14] ============ [PASSED] drmm_connector_hdmi_init =============
[14:56:14] ============= drmm_connector_init (3 subtests) =============
[14:56:14] [PASSED] drm_test_drmm_connector_init
[14:56:14] [PASSED] drm_test_drmm_connector_init_null_ddc
[14:56:14] ========= drm_test_drmm_connector_init_type_valid =========
[14:56:14] [PASSED] Unknown
[14:56:14] [PASSED] VGA
[14:56:14] [PASSED] DVI-I
[14:56:14] [PASSED] DVI-D
[14:56:14] [PASSED] DVI-A
[14:56:14] [PASSED] Composite
[14:56:14] [PASSED] SVIDEO
[14:56:14] [PASSED] LVDS
[14:56:14] [PASSED] Component
[14:56:14] [PASSED] DIN
[14:56:14] [PASSED] DP
[14:56:14] [PASSED] HDMI-A
[14:56:14] [PASSED] HDMI-B
[14:56:14] [PASSED] TV
[14:56:14] [PASSED] eDP
[14:56:14] [PASSED] Virtual
[14:56:14] [PASSED] DSI
[14:56:14] [PASSED] DPI
[14:56:14] [PASSED] Writeback
[14:56:14] [PASSED] SPI
[14:56:14] [PASSED] USB
[14:56:14] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[14:56:14] =============== [PASSED] drmm_connector_init ===============
[14:56:14] ========= drm_connector_dynamic_init (6 subtests) ==========
[14:56:14] [PASSED] drm_test_drm_connector_dynamic_init
[14:56:14] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[14:56:14] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[14:56:14] [PASSED] drm_test_drm_connector_dynamic_init_properties
[14:56:14] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[14:56:14] [PASSED] Unknown
[14:56:14] [PASSED] VGA
[14:56:14] [PASSED] DVI-I
[14:56:14] [PASSED] DVI-D
[14:56:14] [PASSED] DVI-A
[14:56:14] [PASSED] Composite
[14:56:14] [PASSED] SVIDEO
[14:56:14] [PASSED] LVDS
[14:56:14] [PASSED] Component
[14:56:14] [PASSED] DIN
[14:56:14] [PASSED] DP
[14:56:14] [PASSED] HDMI-A
[14:56:14] [PASSED] HDMI-B
[14:56:14] [PASSED] TV
[14:56:14] [PASSED] eDP
[14:56:14] [PASSED] Virtual
[14:56:14] [PASSED] DSI
[14:56:14] [PASSED] DPI
[14:56:14] [PASSED] Writeback
[14:56:14] [PASSED] SPI
[14:56:14] [PASSED] USB
[14:56:14] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[14:56:14] ======== drm_test_drm_connector_dynamic_init_name =========
[14:56:14] [PASSED] Unknown
[14:56:14] [PASSED] VGA
[14:56:14] [PASSED] DVI-I
[14:56:14] [PASSED] DVI-D
[14:56:14] [PASSED] DVI-A
[14:56:14] [PASSED] Composite
[14:56:14] [PASSED] SVIDEO
[14:56:14] [PASSED] LVDS
[14:56:14] [PASSED] Component
[14:56:14] [PASSED] DIN
[14:56:14] [PASSED] DP
[14:56:14] [PASSED] HDMI-A
[14:56:14] [PASSED] HDMI-B
[14:56:14] [PASSED] TV
[14:56:14] [PASSED] eDP
[14:56:14] [PASSED] Virtual
[14:56:14] [PASSED] DSI
[14:56:14] [PASSED] DPI
[14:56:14] [PASSED] Writeback
[14:56:14] [PASSED] SPI
[14:56:14] [PASSED] USB
[14:56:14] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[14:56:14] =========== [PASSED] drm_connector_dynamic_init ============
[14:56:14] ==== drm_connector_dynamic_register_early (4 subtests) =====
[14:56:14] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[14:56:14] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[14:56:14] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[14:56:14] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[14:56:14] ====== [PASSED] drm_connector_dynamic_register_early =======
[14:56:14] ======= drm_connector_dynamic_register (7 subtests) ========
[14:56:14] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[14:56:14] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[14:56:14] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[14:56:14] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[14:56:14] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[14:56:14] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[14:56:14] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[14:56:14] ========= [PASSED] drm_connector_dynamic_register ==========
[14:56:14] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[14:56:14] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[14:56:14] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[14:56:14] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[14:56:14] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[14:56:14] ========== drm_test_get_tv_mode_from_name_valid ===========
[14:56:14] [PASSED] NTSC
[14:56:14] [PASSED] NTSC-443
[14:56:14] [PASSED] NTSC-J
[14:56:14] [PASSED] PAL
[14:56:14] [PASSED] PAL-M
[14:56:14] [PASSED] PAL-N
[14:56:14] [PASSED] SECAM
[14:56:14] [PASSED] Mono
[14:56:14] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[14:56:14] [PASSED] drm_test_get_tv_mode_from_name_truncated
[14:56:14] ============ [PASSED] drm_get_tv_mode_from_name ============
[14:56:14] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[14:56:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[14:56:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[14:56:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[14:56:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[14:56:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[14:56:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[14:56:14] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[14:56:14] [PASSED] VIC 96
[14:56:14] [PASSED] VIC 97
[14:56:14] [PASSED] VIC 101
[14:56:14] [PASSED] VIC 102
[14:56:14] [PASSED] VIC 106
[14:56:14] [PASSED] VIC 107
[14:56:14] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[14:56:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[14:56:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[14:56:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[14:56:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[14:56:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[14:56:14] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[14:56:14] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[14:56:14] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[14:56:14] [PASSED] Automatic
[14:56:14] [PASSED] Full
[14:56:14] [PASSED] Limited 16:235
[14:56:14] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[14:56:14] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[14:56:14] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[14:56:14] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[14:56:14] === drm_test_drm_hdmi_connector_get_output_format_name ====
[14:56:14] [PASSED] RGB
[14:56:14] [PASSED] YUV 4:2:0
[14:56:14] [PASSED] YUV 4:2:2
[14:56:14] [PASSED] YUV 4:4:4
[14:56:14] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[14:56:14] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[14:56:14] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[14:56:14] ============= drm_damage_helper (21 subtests) ==============
[14:56:14] [PASSED] drm_test_damage_iter_no_damage
[14:56:14] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[14:56:14] [PASSED] drm_test_damage_iter_no_damage_src_moved
[14:56:14] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[14:56:14] [PASSED] drm_test_damage_iter_no_damage_not_visible
[14:56:14] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[14:56:14] [PASSED] drm_test_damage_iter_no_damage_no_fb
[14:56:14] [PASSED] drm_test_damage_iter_simple_damage
[14:56:14] [PASSED] drm_test_damage_iter_single_damage
[14:56:14] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[14:56:14] [PASSED] drm_test_damage_iter_single_damage_outside_src
[14:56:14] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[14:56:14] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[14:56:14] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[14:56:14] [PASSED] drm_test_damage_iter_single_damage_src_moved
[14:56:14] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[14:56:14] [PASSED] drm_test_damage_iter_damage
[14:56:14] [PASSED] drm_test_damage_iter_damage_one_intersect
[14:56:14] [PASSED] drm_test_damage_iter_damage_one_outside
[14:56:14] [PASSED] drm_test_damage_iter_damage_src_moved
[14:56:14] [PASSED] drm_test_damage_iter_damage_not_visible
[14:56:14] ================ [PASSED] drm_damage_helper ================
[14:56:14] ============== drm_dp_mst_helper (3 subtests) ==============
[14:56:14] ============== drm_test_dp_mst_calc_pbn_mode ==============
[14:56:14] [PASSED] Clock 154000 BPP 30 DSC disabled
[14:56:14] [PASSED] Clock 234000 BPP 30 DSC disabled
[14:56:14] [PASSED] Clock 297000 BPP 24 DSC disabled
[14:56:14] [PASSED] Clock 332880 BPP 24 DSC enabled
[14:56:14] [PASSED] Clock 324540 BPP 24 DSC enabled
[14:56:14] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[14:56:14] ============== drm_test_dp_mst_calc_pbn_div ===============
[14:56:14] [PASSED] Link rate 2000000 lane count 4
[14:56:14] [PASSED] Link rate 2000000 lane count 2
[14:56:14] [PASSED] Link rate 2000000 lane count 1
[14:56:14] [PASSED] Link rate 1350000 lane count 4
[14:56:14] [PASSED] Link rate 1350000 lane count 2
[14:56:14] [PASSED] Link rate 1350000 lane count 1
[14:56:14] [PASSED] Link rate 1000000 lane count 4
[14:56:14] [PASSED] Link rate 1000000 lane count 2
[14:56:14] [PASSED] Link rate 1000000 lane count 1
[14:56:14] [PASSED] Link rate 810000 lane count 4
[14:56:14] [PASSED] Link rate 810000 lane count 2
[14:56:14] [PASSED] Link rate 810000 lane count 1
[14:56:14] [PASSED] Link rate 540000 lane count 4
[14:56:14] [PASSED] Link rate 540000 lane count 2
[14:56:14] [PASSED] Link rate 540000 lane count 1
[14:56:14] [PASSED] Link rate 270000 lane count 4
[14:56:14] [PASSED] Link rate 270000 lane count 2
[14:56:14] [PASSED] Link rate 270000 lane count 1
[14:56:14] [PASSED] Link rate 162000 lane count 4
[14:56:14] [PASSED] Link rate 162000 lane count 2
[14:56:14] [PASSED] Link rate 162000 lane count 1
[14:56:14] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[14:56:14] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[14:56:14] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[14:56:14] [PASSED] DP_POWER_UP_PHY with port number
[14:56:14] [PASSED] DP_POWER_DOWN_PHY with port number
[14:56:14] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[14:56:14] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[14:56:14] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[14:56:14] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[14:56:14] [PASSED] DP_QUERY_PAYLOAD with port number
[14:56:14] [PASSED] DP_QUERY_PAYLOAD with VCPI
[14:56:14] [PASSED] DP_REMOTE_DPCD_READ with port number
[14:56:14] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[14:56:14] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[14:56:14] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[14:56:14] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[14:56:14] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[14:56:14] [PASSED] DP_REMOTE_I2C_READ with port number
[14:56:14] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[14:56:14] [PASSED] DP_REMOTE_I2C_READ with transactions array
[14:56:14] [PASSED] DP_REMOTE_I2C_WRITE with port number
[14:56:14] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[14:56:14] [PASSED] DP_REMOTE_I2C_WRITE with data array
[14:56:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[14:56:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[14:56:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[14:56:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[14:56:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[14:56:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[14:56:14] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[14:56:14] ================ [PASSED] drm_dp_mst_helper ================
[14:56:14] ================== drm_exec (7 subtests) ===================
[14:56:14] [PASSED] sanitycheck
[14:56:14] [PASSED] test_lock
[14:56:14] [PASSED] test_lock_unlock
[14:56:14] [PASSED] test_duplicates
[14:56:14] [PASSED] test_prepare
[14:56:14] [PASSED] test_prepare_array
[14:56:14] [PASSED] test_multiple_loops
[14:56:14] ==================== [PASSED] drm_exec =====================
[14:56:14] =========== drm_format_helper_test (17 subtests) ===========
[14:56:14] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[14:56:14] [PASSED] single_pixel_source_buffer
[14:56:14] [PASSED] single_pixel_clip_rectangle
[14:56:14] [PASSED] well_known_colors
[14:56:14] [PASSED] destination_pitch
[14:56:14] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[14:56:14] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[14:56:14] [PASSED] single_pixel_source_buffer
[14:56:14] [PASSED] single_pixel_clip_rectangle
[14:56:14] [PASSED] well_known_colors
[14:56:14] [PASSED] destination_pitch
[14:56:14] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[14:56:14] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[14:56:14] [PASSED] single_pixel_source_buffer
[14:56:14] [PASSED] single_pixel_clip_rectangle
[14:56:14] [PASSED] well_known_colors
[14:56:14] [PASSED] destination_pitch
[14:56:14] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[14:56:14] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[14:56:14] [PASSED] single_pixel_source_buffer
[14:56:14] [PASSED] single_pixel_clip_rectangle
[14:56:14] [PASSED] well_known_colors
[14:56:14] [PASSED] destination_pitch
[14:56:14] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[14:56:14] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[14:56:14] [PASSED] single_pixel_source_buffer
[14:56:14] [PASSED] single_pixel_clip_rectangle
[14:56:14] [PASSED] well_known_colors
[14:56:14] [PASSED] destination_pitch
[14:56:14] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[14:56:14] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[14:56:14] [PASSED] single_pixel_source_buffer
[14:56:14] [PASSED] single_pixel_clip_rectangle
[14:56:14] [PASSED] well_known_colors
[14:56:14] [PASSED] destination_pitch
[14:56:14] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[14:56:14] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[14:56:14] [PASSED] single_pixel_source_buffer
[14:56:14] [PASSED] single_pixel_clip_rectangle
[14:56:14] [PASSED] well_known_colors
[14:56:14] [PASSED] destination_pitch
[14:56:14] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[14:56:14] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[14:56:14] [PASSED] single_pixel_source_buffer
[14:56:14] [PASSED] single_pixel_clip_rectangle
[14:56:14] [PASSED] well_known_colors
[14:56:14] [PASSED] destination_pitch
[14:56:14] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[14:56:14] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[14:56:14] [PASSED] single_pixel_source_buffer
[14:56:14] [PASSED] single_pixel_clip_rectangle
[14:56:14] [PASSED] well_known_colors
[14:56:14] [PASSED] destination_pitch
[14:56:14] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[14:56:14] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[14:56:14] [PASSED] single_pixel_source_buffer
[14:56:14] [PASSED] single_pixel_clip_rectangle
[14:56:14] [PASSED] well_known_colors
[14:56:14] [PASSED] destination_pitch
[14:56:14] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[14:56:14] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[14:56:14] [PASSED] single_pixel_source_buffer
[14:56:14] [PASSED] single_pixel_clip_rectangle
[14:56:14] [PASSED] well_known_colors
[14:56:14] [PASSED] destination_pitch
[14:56:14] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[14:56:14] ============== drm_test_fb_xrgb8888_to_mono ===============
[14:56:14] [PASSED] single_pixel_source_buffer
[14:56:14] [PASSED] single_pixel_clip_rectangle
[14:56:14] [PASSED] well_known_colors
[14:56:14] [PASSED] destination_pitch
[14:56:14] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[14:56:14] ==================== drm_test_fb_swab =====================
[14:56:14] [PASSED] single_pixel_source_buffer
[14:56:14] [PASSED] single_pixel_clip_rectangle
[14:56:14] [PASSED] well_known_colors
[14:56:14] [PASSED] destination_pitch
[14:56:14] ================ [PASSED] drm_test_fb_swab =================
[14:56:14] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[14:56:14] [PASSED] single_pixel_source_buffer
[14:56:14] [PASSED] single_pixel_clip_rectangle
[14:56:14] [PASSED] well_known_colors
[14:56:14] [PASSED] destination_pitch
[14:56:14] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[14:56:14] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[14:56:14] [PASSED] single_pixel_source_buffer
[14:56:14] [PASSED] single_pixel_clip_rectangle
[14:56:14] [PASSED] well_known_colors
[14:56:14] [PASSED] destination_pitch
[14:56:14] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[14:56:14] ================= drm_test_fb_clip_offset =================
[14:56:14] [PASSED] pass through
[14:56:14] [PASSED] horizontal offset
[14:56:14] [PASSED] vertical offset
[14:56:14] [PASSED] horizontal and vertical offset
[14:56:14] [PASSED] horizontal offset (custom pitch)
[14:56:14] [PASSED] vertical offset (custom pitch)
[14:56:14] [PASSED] horizontal and vertical offset (custom pitch)
[14:56:14] ============= [PASSED] drm_test_fb_clip_offset =============
[14:56:14] =================== drm_test_fb_memcpy ====================
[14:56:14] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[14:56:14] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[14:56:14] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[14:56:14] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[14:56:14] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[14:56:14] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[14:56:14] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[14:56:14] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[14:56:14] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[14:56:14] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[14:56:14] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[14:56:14] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[14:56:14] =============== [PASSED] drm_test_fb_memcpy ================
[14:56:14] ============= [PASSED] drm_format_helper_test ==============
[14:56:14] ================= drm_format (18 subtests) =================
[14:56:14] [PASSED] drm_test_format_block_width_invalid
[14:56:14] [PASSED] drm_test_format_block_width_one_plane
[14:56:14] [PASSED] drm_test_format_block_width_two_plane
[14:56:14] [PASSED] drm_test_format_block_width_three_plane
[14:56:14] [PASSED] drm_test_format_block_width_tiled
[14:56:14] [PASSED] drm_test_format_block_height_invalid
[14:56:14] [PASSED] drm_test_format_block_height_one_plane
[14:56:14] [PASSED] drm_test_format_block_height_two_plane
[14:56:14] [PASSED] drm_test_format_block_height_three_plane
[14:56:14] [PASSED] drm_test_format_block_height_tiled
[14:56:14] [PASSED] drm_test_format_min_pitch_invalid
[14:56:14] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[14:56:14] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[14:56:14] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[14:56:14] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[14:56:14] [PASSED] drm_test_format_min_pitch_two_plane
[14:56:14] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[14:56:14] [PASSED] drm_test_format_min_pitch_tiled
[14:56:14] =================== [PASSED] drm_format ====================
[14:56:14] ============== drm_framebuffer (10 subtests) ===============
[14:56:14] ========== drm_test_framebuffer_check_src_coords ==========
[14:56:14] [PASSED] Success: source fits into fb
[14:56:14] [PASSED] Fail: overflowing fb with x-axis coordinate
[14:56:14] [PASSED] Fail: overflowing fb with y-axis coordinate
[14:56:14] [PASSED] Fail: overflowing fb with source width
[14:56:14] [PASSED] Fail: overflowing fb with source height
[14:56:14] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[14:56:14] [PASSED] drm_test_framebuffer_cleanup
[14:56:14] =============== drm_test_framebuffer_create ===============
[14:56:14] [PASSED] ABGR8888 normal sizes
[14:56:14] [PASSED] ABGR8888 max sizes
[14:56:14] [PASSED] ABGR8888 pitch greater than min required
[14:56:14] [PASSED] ABGR8888 pitch less than min required
[14:56:14] [PASSED] ABGR8888 Invalid width
[14:56:14] [PASSED] ABGR8888 Invalid buffer handle
[14:56:14] [PASSED] No pixel format
[14:56:14] [PASSED] ABGR8888 Width 0
[14:56:14] [PASSED] ABGR8888 Height 0
[14:56:14] [PASSED] ABGR8888 Out of bound height * pitch combination
[14:56:14] [PASSED] ABGR8888 Large buffer offset
[14:56:14] [PASSED] ABGR8888 Buffer offset for inexistent plane
[14:56:14] [PASSED] ABGR8888 Invalid flag
[14:56:14] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[14:56:14] [PASSED] ABGR8888 Valid buffer modifier
[14:56:14] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[14:56:14] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[14:56:14] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[14:56:14] [PASSED] NV12 Normal sizes
[14:56:14] [PASSED] NV12 Max sizes
[14:56:14] [PASSED] NV12 Invalid pitch
[14:56:14] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[14:56:14] [PASSED] NV12 different modifier per-plane
[14:56:14] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[14:56:14] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[14:56:14] [PASSED] NV12 Modifier for inexistent plane
[14:56:14] [PASSED] NV12 Handle for inexistent plane
[14:56:14] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[14:56:14] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[14:56:14] [PASSED] YVU420 Normal sizes
[14:56:14] [PASSED] YVU420 Max sizes
[14:56:14] [PASSED] YVU420 Invalid pitch
[14:56:14] [PASSED] YVU420 Different pitches
[14:56:14] [PASSED] YVU420 Different buffer offsets/pitches
[14:56:14] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[14:56:14] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[14:56:14] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[14:56:14] [PASSED] YVU420 Valid modifier
[14:56:14] [PASSED] YVU420 Different modifiers per plane
[14:56:14] [PASSED] YVU420 Modifier for inexistent plane
[14:56:14] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[14:56:14] [PASSED] X0L2 Normal sizes
[14:56:14] [PASSED] X0L2 Max sizes
[14:56:14] [PASSED] X0L2 Invalid pitch
[14:56:14] [PASSED] X0L2 Pitch greater than minimum required
[14:56:14] [PASSED] X0L2 Handle for inexistent plane
[14:56:14] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[14:56:14] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[14:56:14] [PASSED] X0L2 Valid modifier
[14:56:14] [PASSED] X0L2 Modifier for inexistent plane
[14:56:14] =========== [PASSED] drm_test_framebuffer_create ===========
[14:56:14] [PASSED] drm_test_framebuffer_free
[14:56:14] [PASSED] drm_test_framebuffer_init
[14:56:14] [PASSED] drm_test_framebuffer_init_bad_format
[14:56:14] [PASSED] drm_test_framebuffer_init_dev_mismatch
[14:56:14] [PASSED] drm_test_framebuffer_lookup
[14:56:14] [PASSED] drm_test_framebuffer_lookup_inexistent
[14:56:14] [PASSED] drm_test_framebuffer_modifiers_not_supported
[14:56:14] ================= [PASSED] drm_framebuffer =================
[14:56:14] ================ drm_gem_shmem (8 subtests) ================
[14:56:14] [PASSED] drm_gem_shmem_test_obj_create
[14:56:14] [PASSED] drm_gem_shmem_test_obj_create_private
[14:56:14] [PASSED] drm_gem_shmem_test_pin_pages
[14:56:14] [PASSED] drm_gem_shmem_test_vmap
[14:56:14] [PASSED] drm_gem_shmem_test_get_sg_table
[14:56:14] [PASSED] drm_gem_shmem_test_get_pages_sgt
[14:56:14] [PASSED] drm_gem_shmem_test_madvise
[14:56:14] [PASSED] drm_gem_shmem_test_purge
[14:56:14] ================== [PASSED] drm_gem_shmem ==================
[14:56:14] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[14:56:14] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[14:56:14] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[14:56:14] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[14:56:14] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[14:56:14] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[14:56:14] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[14:56:14] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[14:56:14] [PASSED] Automatic
[14:56:14] [PASSED] Full
[14:56:14] [PASSED] Limited 16:235
[14:56:14] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[14:56:14] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[14:56:14] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[14:56:14] [PASSED] drm_test_check_disable_connector
[14:56:14] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[14:56:14] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[14:56:14] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[14:56:14] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[14:56:14] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[14:56:14] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[14:56:14] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[14:56:14] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[14:56:14] [PASSED] drm_test_check_output_bpc_dvi
[14:56:14] [PASSED] drm_test_check_output_bpc_format_vic_1
[14:56:14] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[14:56:14] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[14:56:14] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[14:56:14] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[14:56:14] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[14:56:14] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[14:56:14] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[14:56:14] ============ drm_test_check_hdmi_color_format =============
[14:56:14] [PASSED] AUTO -> RGB
[14:56:14] [PASSED] YCBCR422 -> YUV422
[14:56:14] [PASSED] YCBCR420 -> YUV420
[14:56:14] [PASSED] YCBCR444 -> YUV444
[14:56:14] [PASSED] RGB -> RGB
[14:56:14] ======== [PASSED] drm_test_check_hdmi_color_format =========
[14:56:14] ======== drm_test_check_hdmi_color_format_420_only ========
[14:56:14] [PASSED] RGB should fail
[14:56:14] [PASSED] YUV444 should fail
[14:56:14] [PASSED] YUV422 should fail
[14:56:14] [PASSED] YUV420 should work
[14:56:14] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[14:56:14] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[14:56:14] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[14:56:14] [PASSED] drm_test_check_broadcast_rgb_value
[14:56:14] [PASSED] drm_test_check_bpc_8_value
[14:56:14] [PASSED] drm_test_check_bpc_10_value
[14:56:14] [PASSED] drm_test_check_bpc_12_value
[14:56:14] [PASSED] drm_test_check_format_value
[14:56:14] [PASSED] drm_test_check_tmds_char_value
[14:56:14] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[14:56:14] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[14:56:14] [PASSED] drm_test_check_mode_valid
[14:56:14] [PASSED] drm_test_check_mode_valid_reject
[14:56:14] [PASSED] drm_test_check_mode_valid_reject_rate
[14:56:14] [PASSED] drm_test_check_mode_valid_reject_max_clock
[14:56:14] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[14:56:14] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[14:56:14] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[14:56:14] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[14:56:14] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[14:56:14] [PASSED] drm_test_check_infoframes
[14:56:14] [PASSED] drm_test_check_reject_avi_infoframe
[14:56:14] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[14:56:14] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[14:56:14] [PASSED] drm_test_check_reject_audio_infoframe
[14:56:14] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[14:56:14] ================= drm_managed (2 subtests) =================
[14:56:14] [PASSED] drm_test_managed_release_action
[14:56:14] [PASSED] drm_test_managed_run_action
[14:56:14] =================== [PASSED] drm_managed ===================
[14:56:14] =================== drm_mm (6 subtests) ====================
[14:56:14] [PASSED] drm_test_mm_init
[14:56:14] [PASSED] drm_test_mm_debug
[14:56:14] [PASSED] drm_test_mm_align32
[14:56:14] [PASSED] drm_test_mm_align64
[14:56:14] [PASSED] drm_test_mm_lowest
[14:56:14] [PASSED] drm_test_mm_highest
[14:56:14] ===================== [PASSED] drm_mm ======================
[14:56:14] ============= drm_modes_analog_tv (5 subtests) =============
[14:56:14] [PASSED] drm_test_modes_analog_tv_mono_576i
[14:56:14] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[14:56:14] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[14:56:14] [PASSED] drm_test_modes_analog_tv_pal_576i
[14:56:14] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[14:56:14] =============== [PASSED] drm_modes_analog_tv ===============
[14:56:14] ============== drm_plane_helper (2 subtests) ===============
[14:56:14] =============== drm_test_check_plane_state ================
[14:56:14] [PASSED] clipping_simple
[14:56:14] [PASSED] clipping_rotate_reflect
[14:56:14] [PASSED] positioning_simple
[14:56:14] [PASSED] upscaling
[14:56:14] [PASSED] downscaling
[14:56:14] [PASSED] rounding1
[14:56:14] [PASSED] rounding2
[14:56:14] [PASSED] rounding3
[14:56:14] [PASSED] rounding4
[14:56:14] =========== [PASSED] drm_test_check_plane_state ============
[14:56:14] =========== drm_test_check_invalid_plane_state ============
[14:56:14] [PASSED] positioning_invalid
[14:56:14] [PASSED] upscaling_invalid
[14:56:14] [PASSED] downscaling_invalid
[14:56:14] ======= [PASSED] drm_test_check_invalid_plane_state ========
[14:56:14] ================ [PASSED] drm_plane_helper =================
[14:56:14] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[14:56:14] ====== drm_test_connector_helper_tv_get_modes_check =======
[14:56:14] [PASSED] None
[14:56:14] [PASSED] PAL
[14:56:14] [PASSED] NTSC
[14:56:14] [PASSED] Both, NTSC Default
[14:56:14] [PASSED] Both, PAL Default
[14:56:14] [PASSED] Both, NTSC Default, with PAL on command-line
[14:56:14] [PASSED] Both, PAL Default, with NTSC on command-line
[14:56:14] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[14:56:14] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[14:56:14] ================== drm_rect (9 subtests) ===================
[14:56:14] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[14:56:14] [PASSED] drm_test_rect_clip_scaled_not_clipped
[14:56:14] [PASSED] drm_test_rect_clip_scaled_clipped
[14:56:14] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[14:56:14] ================= drm_test_rect_intersect =================
[14:56:14] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[14:56:14] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[14:56:14] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[14:56:14] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[14:56:14] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[14:56:14] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[14:56:14] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[14:56:14] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[14:56:14] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[14:56:14] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[14:56:14] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[14:56:14] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[14:56:14] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[14:56:14] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[14:56:14] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[14:56:14] ============= [PASSED] drm_test_rect_intersect =============
[14:56:14] ================ drm_test_rect_calc_hscale ================
[14:56:14] [PASSED] normal use
[14:56:14] [PASSED] out of max range
[14:56:14] [PASSED] out of min range
[14:56:14] [PASSED] zero dst
[14:56:14] [PASSED] negative src
[14:56:14] [PASSED] negative dst
[14:56:14] ============ [PASSED] drm_test_rect_calc_hscale ============
[14:56:14] ================ drm_test_rect_calc_vscale ================
[14:56:14] [PASSED] normal use
[14:56:14] [PASSED] out of max range
[14:56:14] [PASSED] out of min range
[14:56:14] [PASSED] zero dst
[14:56:14] [PASSED] negative src
[14:56:14] [PASSED] negative dst
[14:56:14] ============ [PASSED] drm_test_rect_calc_vscale ============
[14:56:14] ================== drm_test_rect_rotate ===================
[14:56:14] [PASSED] reflect-x
[14:56:14] [PASSED] reflect-y
[14:56:14] [PASSED] rotate-0
[14:56:14] [PASSED] rotate-90
[14:56:14] [PASSED] rotate-180
[14:56:14] [PASSED] rotate-270
[14:56:14] ============== [PASSED] drm_test_rect_rotate ===============
[14:56:14] ================ drm_test_rect_rotate_inv =================
[14:56:14] [PASSED] reflect-x
[14:56:14] [PASSED] reflect-y
[14:56:14] [PASSED] rotate-0
[14:56:14] [PASSED] rotate-90
[14:56:14] [PASSED] rotate-180
[14:56:14] [PASSED] rotate-270
[14:56:14] ============ [PASSED] drm_test_rect_rotate_inv =============
[14:56:14] ==================== [PASSED] drm_rect =====================
[14:56:14] ============ drm_sysfb_modeset_test (1 subtest) ============
[14:56:14] ============ drm_test_sysfb_build_fourcc_list =============
[14:56:14] [PASSED] no native formats
[14:56:14] [PASSED] XRGB8888 as native format
[14:56:14] [PASSED] remove duplicates
[14:56:14] [PASSED] convert alpha formats
[14:56:14] [PASSED] random formats
[14:56:14] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[14:56:14] ============= [PASSED] drm_sysfb_modeset_test ==============
[14:56:14] ================== drm_fixp (2 subtests) ===================
[14:56:14] [PASSED] drm_test_int2fixp
[14:56:14] [PASSED] drm_test_sm2fixp
[14:56:14] ==================== [PASSED] drm_fixp =====================
[14:56:14] ============================================================
[14:56:14] Testing complete. Ran 641 tests: passed: 641
[14:56:14] Elapsed time: 27.411s total, 1.815s configuring, 25.382s building, 0.192s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[14:56:14] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:56:16] 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
[14:56:26] Starting KUnit Kernel (1/1)...
[14:56:26] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:56:26] ============= refcount_interrupt (4 subtests) ==============
[14:56:26] [PASSED] test_single_irq_change
[14:56:26] [PASSED] test_nested_irq_change
[14:56:26] [PASSED] test_multiple_irq_change
[14:56:26] [PASSED] test_irq_save
[14:56:26] =============== [PASSED] refcount_interrupt ================
[14:56:26] ================= ttm_device (5 subtests) ==================
[14:56:26] [PASSED] ttm_device_init_basic
[14:56:26] [PASSED] ttm_device_init_multiple
[14:56:26] [PASSED] ttm_device_fini_basic
[14:56:26] [PASSED] ttm_device_init_no_vma_man
[14:56:26] ================== ttm_device_init_pools ==================
[14:56:26] [PASSED] No DMA allocations, no DMA32 required
[14:56:26] [PASSED] DMA allocations, DMA32 required
[14:56:26] [PASSED] No DMA allocations, DMA32 required
[14:56:26] [PASSED] DMA allocations, no DMA32 required
[14:56:26] ============== [PASSED] ttm_device_init_pools ==============
[14:56:26] =================== [PASSED] ttm_device ====================
[14:56:26] ================== ttm_pool (8 subtests) ===================
[14:56:26] ================== ttm_pool_alloc_basic ===================
[14:56:26] [PASSED] One page
[14:56:26] [PASSED] More than one page
[14:56:26] [PASSED] Above the allocation limit
[14:56:26] [PASSED] One page, with coherent DMA mappings enabled
[14:56:26] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[14:56:26] ============== [PASSED] ttm_pool_alloc_basic ===============
[14:56:26] ============== ttm_pool_alloc_basic_dma_addr ==============
[14:56:26] [PASSED] One page
[14:56:26] [PASSED] More than one page
[14:56:26] [PASSED] Above the allocation limit
[14:56:26] [PASSED] One page, with coherent DMA mappings enabled
[14:56:26] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[14:56:26] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[14:56:26] [PASSED] ttm_pool_alloc_order_caching_match
[14:56:26] [PASSED] ttm_pool_alloc_caching_mismatch
[14:56:26] [PASSED] ttm_pool_alloc_order_mismatch
[14:56:26] [PASSED] ttm_pool_free_dma_alloc
[14:56:26] [PASSED] ttm_pool_free_no_dma_alloc
[14:56:26] [PASSED] ttm_pool_fini_basic
[14:56:26] ==================== [PASSED] ttm_pool =====================
[14:56:26] ================ ttm_resource (8 subtests) =================
[14:56:26] ================= ttm_resource_init_basic =================
[14:56:26] [PASSED] Init resource in TTM_PL_SYSTEM
[14:56:26] [PASSED] Init resource in TTM_PL_VRAM
[14:56:26] [PASSED] Init resource in a private placement
[14:56:26] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[14:56:26] ============= [PASSED] ttm_resource_init_basic =============
[14:56:26] [PASSED] ttm_resource_init_pinned
[14:56:26] [PASSED] ttm_resource_fini_basic
[14:56:26] [PASSED] ttm_resource_manager_init_basic
[14:56:26] [PASSED] ttm_resource_manager_usage_basic
[14:56:26] [PASSED] ttm_resource_manager_set_used_basic
[14:56:26] [PASSED] ttm_sys_man_alloc_basic
[14:56:26] [PASSED] ttm_sys_man_free_basic
[14:56:26] ================== [PASSED] ttm_resource ===================
[14:56:26] =================== ttm_tt (15 subtests) ===================
[14:56:26] ==================== ttm_tt_init_basic ====================
[14:56:26] [PASSED] Page-aligned size
[14:56:26] [PASSED] Extra pages requested
[14:56:26] ================ [PASSED] ttm_tt_init_basic ================
[14:56:26] [PASSED] ttm_tt_init_misaligned
[14:56:26] [PASSED] ttm_tt_fini_basic
[14:56:26] [PASSED] ttm_tt_fini_sg
[14:56:26] [PASSED] ttm_tt_fini_shmem
[14:56:26] [PASSED] ttm_tt_create_basic
[14:56:26] [PASSED] ttm_tt_create_invalid_bo_type
[14:56:26] [PASSED] ttm_tt_create_ttm_exists
[14:56:26] [PASSED] ttm_tt_create_failed
[14:56:26] [PASSED] ttm_tt_destroy_basic
[14:56:26] [PASSED] ttm_tt_populate_null_ttm
[14:56:26] [PASSED] ttm_tt_populate_populated_ttm
[14:56:26] [PASSED] ttm_tt_unpopulate_basic
[14:56:26] [PASSED] ttm_tt_unpopulate_empty_ttm
[14:56:26] [PASSED] ttm_tt_swapin_basic
[14:56:26] ===================== [PASSED] ttm_tt ======================
[14:56:26] =================== ttm_bo (14 subtests) ===================
[14:56:26] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[14:56:26] [PASSED] Cannot be interrupted and sleeps
[14:56:26] [PASSED] Cannot be interrupted, locks straight away
[14:56:26] [PASSED] Can be interrupted, sleeps
[14:56:26] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[14:56:26] [PASSED] ttm_bo_reserve_locked_no_sleep
[14:56:26] [PASSED] ttm_bo_reserve_no_wait_ticket
[14:56:26] [PASSED] ttm_bo_reserve_double_resv
[14:56:26] [PASSED] ttm_bo_reserve_interrupted
[14:56:26] [PASSED] ttm_bo_reserve_deadlock
[14:56:26] [PASSED] ttm_bo_unreserve_basic
[14:56:26] [PASSED] ttm_bo_unreserve_pinned
[14:56:26] [PASSED] ttm_bo_unreserve_bulk
[14:56:26] [PASSED] ttm_bo_fini_basic
[14:56:26] [PASSED] ttm_bo_fini_shared_resv
[14:56:26] [PASSED] ttm_bo_pin_basic
[14:56:26] [PASSED] ttm_bo_pin_unpin_resource
[14:56:26] [PASSED] ttm_bo_multiple_pin_one_unpin
[14:56:26] ===================== [PASSED] ttm_bo ======================
[14:56:26] ============== ttm_bo_validate (22 subtests) ===============
[14:56:26] ============== ttm_bo_init_reserved_sys_man ===============
[14:56:26] [PASSED] Buffer object for userspace
[14:56:26] [PASSED] Kernel buffer object
[14:56:26] [PASSED] Shared buffer object
[14:56:26] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[14:56:26] ============== ttm_bo_init_reserved_mock_man ==============
[14:56:26] [PASSED] Buffer object for userspace
[14:56:26] [PASSED] Kernel buffer object
[14:56:26] [PASSED] Shared buffer object
[14:56:26] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[14:56:26] [PASSED] ttm_bo_init_reserved_resv
[14:56:26] ================== ttm_bo_validate_basic ==================
[14:56:26] [PASSED] Buffer object for userspace
[14:56:26] [PASSED] Kernel buffer object
[14:56:26] [PASSED] Shared buffer object
[14:56:26] ============== [PASSED] ttm_bo_validate_basic ==============
[14:56:26] [PASSED] ttm_bo_validate_invalid_placement
[14:56:26] ============= ttm_bo_validate_same_placement ==============
[14:56:26] [PASSED] System manager
[14:56:26] [PASSED] VRAM manager
[14:56:26] ========= [PASSED] ttm_bo_validate_same_placement ==========
[14:56:26] [PASSED] ttm_bo_validate_failed_alloc
[14:56:26] [PASSED] ttm_bo_validate_pinned
[14:56:26] [PASSED] ttm_bo_validate_busy_placement
[14:56:26] ================ ttm_bo_validate_multihop =================
[14:56:26] [PASSED] Buffer object for userspace
[14:56:26] [PASSED] Kernel buffer object
[14:56:26] [PASSED] Shared buffer object
[14:56:26] ============ [PASSED] ttm_bo_validate_multihop =============
[14:56:26] ========== ttm_bo_validate_no_placement_signaled ==========
[14:56:26] [PASSED] Buffer object in system domain, no page vector
[14:56:26] [PASSED] Buffer object in system domain with an existing page vector
[14:56:26] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[14:56:26] ======== ttm_bo_validate_no_placement_not_signaled ========
[14:56:26] [PASSED] Buffer object for userspace
[14:56:26] [PASSED] Kernel buffer object
[14:56:26] [PASSED] Shared buffer object
[14:56:26] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[14:56:26] [PASSED] ttm_bo_validate_move_fence_signaled
[14:56:26] ========= ttm_bo_validate_move_fence_not_signaled =========
[14:56:26] [PASSED] Waits for GPU
[14:56:26] [PASSED] Tries to lock straight away
[14:56:26] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[14:56:26] [PASSED] ttm_bo_validate_swapout
[14:56:26] [PASSED] ttm_bo_validate_happy_evict
[14:56:26] [PASSED] ttm_bo_validate_all_pinned_evict
[14:56:26] [PASSED] ttm_bo_validate_allowed_only_evict
[14:56:26] [PASSED] ttm_bo_validate_deleted_evict
[14:56:26] [PASSED] ttm_bo_validate_busy_domain_evict
[14:56:26] [PASSED] ttm_bo_validate_evict_gutting
[14:56:26] [PASSED] ttm_bo_validate_recrusive_evict
[14:56:26] ================= [PASSED] ttm_bo_validate =================
[14:56:26] ============================================================
[14:56:26] Testing complete. Ran 106 tests: passed: 106
[14:56:26] Elapsed time: 11.966s total, 1.744s configuring, 9.957s building, 0.216s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/dma-buf/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/dma-buf/.kunitconfig
[14:56:26] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:56:28] 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
[14:56:37] Starting KUnit Kernel (1/1)...
[14:56:37] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:56:37] ============= refcount_interrupt (4 subtests) ==============
[14:56:37] [PASSED] test_single_irq_change
[14:56:37] [PASSED] test_nested_irq_change
[14:56:37] [PASSED] test_multiple_irq_change
[14:56:37] [PASSED] test_irq_save
[14:56:37] =============== [PASSED] refcount_interrupt ================
[14:56:37] =============== dma-buf-fence (12 subtests) ================
[14:56:37] [PASSED] test_sanitycheck
[14:56:37] [PASSED] test_signaling
[14:56:37] [PASSED] test_add_callback
[14:56:37] [PASSED] test_late_add_callback
[14:56:37] [PASSED] test_rm_callback
[14:56:37] [PASSED] test_late_rm_callback
[14:56:37] [PASSED] test_status
[14:56:37] [PASSED] test_error
[14:56:37] [PASSED] test_wait
[14:56:37] [PASSED] test_wait_timeout
[14:56:37] [PASSED] test_stub
[14:56:37] [SKIPPED] test_race_signal_callback (requires at least 2 CPUs)
[14:56:37] ================== [PASSED] dma-buf-fence ==================
[14:56:37] ============ dma-buf-fence-chain (11 subtests) =============
[14:56:37] [PASSED] test_sanitycheck
[14:56:37] [PASSED] test_find_seqno
[14:56:37] [PASSED] test_find_signaled
[14:56:37] [PASSED] test_find_out_of_order
[14:56:42] [PASSED] test_find_gap
[14:56:42] [PASSED] test_find_race
[14:56:42] [PASSED] test_signal_forward
[14:56:42] [PASSED] test_signal_backward
[14:56:42] [PASSED] test_wait_forward
[14:56:42] [PASSED] test_wait_backward
[14:56:42] [PASSED] test_wait_random
[14:56:42] =============== [PASSED] dma-buf-fence-chain ===============
[14:56:42] ============ dma-buf-fence-unwrap (10 subtests) ============
[14:56:42] [PASSED] test_sanitycheck
[14:56:42] [PASSED] test_unwrap_array
[14:56:42] [PASSED] test_unwrap_chain
[14:56:42] [PASSED] test_unwrap_chain_array
[14:56:42] [PASSED] test_unwrap_merge
[14:56:42] [PASSED] test_unwrap_merge_duplicate
[14:56:42] [PASSED] test_unwrap_merge_seqno
[14:56:42] [PASSED] test_unwrap_merge_order
[14:56:42] [PASSED] test_unwrap_merge_complex
[14:56:42] [PASSED] test_unwrap_merge_complex_seqno
[14:56:42] ============== [PASSED] dma-buf-fence-unwrap ===============
[14:56:42] ================ dma-buf-resv (5 subtests) =================
[14:56:42] [PASSED] test_sanitycheck
[14:56:42] ===================== test_signaling ======================
[14:56:42] [PASSED] kernel
[14:56:42] [PASSED] write
[14:56:42] [PASSED] read
[14:56:42] [PASSED] bookkeep
[14:56:42] ================= [PASSED] test_signaling ==================
[14:56:42] ====================== test_for_each ======================
[14:56:42] [PASSED] kernel
[14:56:42] [PASSED] write
[14:56:42] [PASSED] read
[14:56:42] [PASSED] bookkeep
[14:56:42] ================== [PASSED] test_for_each ==================
[14:56:42] ================= test_for_each_unlocked ==================
[14:56:42] [PASSED] kernel
[14:56:42] [PASSED] write
[14:56:42] [PASSED] read
[14:56:42] [PASSED] bookkeep
[14:56:42] ============= [PASSED] test_for_each_unlocked ==============
[14:56:42] ===================== test_get_fences =====================
[14:56:42] [PASSED] kernel
[14:56:42] [PASSED] write
[14:56:42] [PASSED] read
[14:56:42] [PASSED] bookkeep
[14:56:42] ================= [PASSED] test_get_fences =================
[14:56:42] ================== [PASSED] dma-buf-resv ===================
[14:56:42] ============================================================
[14:56:42] Testing complete. Ran 54 tests: passed: 53, skipped: 1
[14:56:42] Elapsed time: 15.780s total, 1.838s configuring, 8.570s building, 5.349s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe: Capture additional HW register state in devcoredump (rev3)
2026-09-03 14:18 [PATCH v3 0/7] drm/xe: Capture additional HW register state in devcoredump Nareshkumar Gollakoti
` (8 preceding siblings ...)
2026-09-03 14:56 ` ✓ CI.KUnit: success " Patchwork
@ 2026-09-03 15:39 ` Patchwork
2026-09-04 2:01 ` ✗ Xe.CI.FULL: failure " Patchwork
10 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-09-03 15:39 UTC (permalink / raw)
To: Nareshkumar Gollakoti; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 9510 bytes --]
== Series Details ==
Series: drm/xe: Capture additional HW register state in devcoredump (rev3)
URL : https://patchwork.freedesktop.org/series/172150/
State : success
== Summary ==
CI Bug Log - changes from xe-5685-b2fada7902896bce389c2b033688d18df36855fc_BAT -> xe-pw-172150v3_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 15)
------------------------------
Additional (2): bat-bmg-2 bat-nvls-1
Known issues
------------
Here are the changes found in xe-pw-172150v3_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@write:
- bat-bmg-2: NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-bmg-2/igt@fbdev@write.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][2] ([Intel XE#2233])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-nvls-1: NOTRUN -> [SKIP][3] ([Intel XE#8757])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-nvls-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][4] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-nvls-1: NOTRUN -> [SKIP][5] ([Intel XE#8759])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-nvls-1/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-modeset:
- bat-bmg-2: NOTRUN -> [SKIP][6] ([Intel XE#2482]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html
* igt@kms_frontbuffer_tracking@basic:
- bat-bmg-2: NOTRUN -> [SKIP][7] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-bmg-2: NOTRUN -> [SKIP][8] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@xe_evict@evict-small-multi-vm:
- bat-nvls-1: NOTRUN -> [SKIP][9] ([Intel XE#8777]) +9 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-nvls-1/igt@xe_evict@evict-small-multi-vm.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
- bat-nvls-1: NOTRUN -> [SKIP][10] ([Intel XE#8744]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-nvls-1/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
* igt@xe_exec_balancer@twice-virtual-userptr-invalidate:
- bat-nvls-1: NOTRUN -> [SKIP][11] ([Intel XE#8741]) +17 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-nvls-1/igt@xe_exec_balancer@twice-virtual-userptr-invalidate.html
* igt@xe_exec_multi_queue@many-queues-userptr-invalidate:
- bat-nvls-1: NOTRUN -> [SKIP][12] ([Intel XE#8377]) +13 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-nvls-1/igt@xe_exec_multi_queue@many-queues-userptr-invalidate.html
* igt@xe_exec_multi_queue@priority:
- bat-bmg-2: NOTRUN -> [SKIP][13] ([Intel XE#8364]) +13 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-bmg-2/igt@xe_exec_multi_queue@priority.html
* igt@xe_huc_copy@huc_copy:
- bat-nvls-1: NOTRUN -> [SKIP][14] ([Intel XE#8746])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-nvls-1/igt@xe_huc_copy@huc_copy.html
* igt@xe_live_ktest@xe_bo:
- bat-nvls-1: NOTRUN -> [SKIP][15] ([Intel XE#8792])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-nvls-1/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- bat-nvls-1: NOTRUN -> [SKIP][16] ([Intel XE#8791] / [Intel XE#8792])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-nvls-1/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-bmg-2: NOTRUN -> [SKIP][17] ([Intel XE#2229])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-nvls-1: NOTRUN -> [SKIP][18] ([Intel XE#8791])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-nvls-1/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@vram:
- bat-nvls-1: NOTRUN -> [SKIP][19] ([Intel XE#8747])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-nvls-1/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xehpc:
- bat-bmg-2: NOTRUN -> [SKIP][20] ([Intel XE#1420] / [Intel XE#7590])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html
- bat-nvls-1: NOTRUN -> [SKIP][21] ([Intel XE#8748])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-nvls-1/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-bmg-2: NOTRUN -> [SKIP][22] ([Intel XE#2245] / [Intel XE#7590])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-bmg-2/igt@xe_pat@pat-index-xelp.html
- bat-nvls-1: NOTRUN -> [SKIP][23] ([Intel XE#8743])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-nvls-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-bmg-2: NOTRUN -> [SKIP][24] ([Intel XE#2236] / [Intel XE#7590])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html
- bat-nvls-1: NOTRUN -> [SKIP][25] ([Intel XE#8745])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-nvls-1/igt@xe_pat@pat-index-xelpg.html
#### Possible fixes ####
* igt@xe_waitfence@reltime:
- bat-bmg-vm: [FAIL][26] ([Intel XE#9115]) -> [PASS][27]
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/bat-bmg-vm/igt@xe_waitfence@reltime.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/bat-bmg-vm/igt@xe_waitfence@reltime.html
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434
[Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
[Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489
[Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419
[Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8377
[Intel XE#8741]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8741
[Intel XE#8743]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8743
[Intel XE#8744]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8744
[Intel XE#8745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8745
[Intel XE#8746]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8746
[Intel XE#8747]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8747
[Intel XE#8748]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8748
[Intel XE#8757]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8757
[Intel XE#8759]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8759
[Intel XE#8777]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8777
[Intel XE#8791]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8791
[Intel XE#8792]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8792
[Intel XE#9115]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9115
Build changes
-------------
* Linux: xe-5685-b2fada7902896bce389c2b033688d18df36855fc -> xe-pw-172150v3
IGT_9082: 2d61f578d998115259b87f9fa27f597ce11a0c89 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5685-b2fada7902896bce389c2b033688d18df36855fc: b2fada7902896bce389c2b033688d18df36855fc
xe-pw-172150v3: 172150v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/index.html
[-- Attachment #2: Type: text/html, Size: 10797 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ Xe.CI.FULL: failure for drm/xe: Capture additional HW register state in devcoredump (rev3)
2026-09-03 14:18 [PATCH v3 0/7] drm/xe: Capture additional HW register state in devcoredump Nareshkumar Gollakoti
` (9 preceding siblings ...)
2026-09-03 15:39 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-09-04 2:01 ` Patchwork
10 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-09-04 2:01 UTC (permalink / raw)
To: Nareshkumar Gollakoti; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 89308 bytes --]
== Series Details ==
Series: drm/xe: Capture additional HW register state in devcoredump (rev3)
URL : https://patchwork.freedesktop.org/series/172150/
State : failure
== Summary ==
CI Bug Log - changes from xe-5685-b2fada7902896bce389c2b033688d18df36855fc_FULL -> xe-pw-172150v3_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-172150v3_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-172150v3_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-172150v3_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute:
- shard-bmg: [PASS][1] -> [ABORT][2] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-bmg-4/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-3/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html
Known issues
------------
Here are the changes found in xe-pw-172150v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@unaligned-read:
- shard-lnl: [PASS][3] -> [SKIP][4] ([Intel XE#2134])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-5/igt@fbdev@unaligned-read.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@fbdev@unaligned-read.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2370])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1407]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-1/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#7059] / [Intel XE#7085])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +5 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#610] / [Intel XE#7387])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#7679])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-target-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#367]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-target-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2887]) +6 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-1/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#2887]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#2669] / [Intel XE#7389]) +9 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#3432]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2652]) +17 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-9/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#373]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-4/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color_pipeline@plane-lut3d-green-only:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#7358])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-2/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2252]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-8/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_color@legacy-gamma:
- shard-lnl: [PASS][23] -> [SKIP][24] ([Intel XE#3297])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-5/igt@kms_color@legacy-gamma.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_color@legacy-gamma.html
* igt@kms_color_pipeline@plane-lut1d-lut1d:
- shard-lnl: [PASS][25] -> [SKIP][26] ([Intel XE#7006])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-4/igt@kms_color_pipeline@plane-lut1d-lut1d.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_color_pipeline@plane-lut1d-lut1d.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#307] / [Intel XE#6974])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@uevent:
- shard-bmg: NOTRUN -> [FAIL][28] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-4/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1424]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2320]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2321] / [Intel XE#7355])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#2321] / [Intel XE#7355])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#309] / [Intel XE#7343])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][34] -> [FAIL][35] ([Intel XE#7809])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2286] / [Intel XE#6035])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#4331] / [Intel XE#7227])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#8265]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-1/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#8265])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner.html
* igt@kms_feature_discovery@dsc:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#8586])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-2/igt@kms_feature_discovery@dsc.html
* igt@kms_flip@basic-flip-vs-modeset:
- shard-lnl: [PASS][41] -> [SKIP][42] ([Intel XE#2482]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-4/igt@kms_flip@basic-flip-vs-modeset.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_flip@basic-flip-vs-modeset.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
- shard-lnl: [PASS][43] -> [FAIL][44] ([Intel XE#301])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: NOTRUN -> [FAIL][45] ([Intel XE#301])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#7178] / [Intel XE#7351])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling:
- shard-lnl: [PASS][47] -> [SKIP][48] ([Intel XE#1745]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#6312] / [Intel XE#651]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2311]) +36 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#7061] / [Intel XE#7356])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-render:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#7061]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@drrshdr-shrfb-scaledprimary:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#6312]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_frontbuffer_tracking@drrshdr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#4141]) +4 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-lnl: [PASS][56] -> [SKIP][57] ([Intel XE#2548] / [Intel XE#7779]) +14 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#656] / [Intel XE#7905]) +7 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#7865]) +7 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-abgr161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#7061]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-cur-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#7905]) +9 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2350] / [Intel XE#7503])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2313]) +32 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-2/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#7308])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-4/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_invalid_mode@bad-vsync-end:
- shard-lnl: [PASS][66] -> [SKIP][67] ([Intel XE#2568]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-2/igt@kms_invalid_mode@bad-vsync-end.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_invalid_mode@bad-vsync-end.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#6911] / [Intel XE#7466])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-4/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2486])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-2/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-4/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#7283])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#7283]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-4/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-lnl: [PASS][73] -> [SKIP][74] ([Intel XE#9128]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-5/igt@kms_plane@plane-panning-bottom-right-suspend.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_cursor@primary:
- shard-lnl: [PASS][75] -> [SKIP][76] ([Intel XE#9125]) +44 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-4/igt@kms_plane_cursor@primary.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_plane_cursor@primary.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2393])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-1/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a:
- shard-lnl: [PASS][78] -> [SKIP][79] ([Intel XE#2763] / [Intel XE#6886]) +5 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- shard-lnl: [PASS][80] -> [SKIP][81] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) +5 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#2763] / [Intel XE#6886]) +7 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-2/igt@kms_pm_backlight@fade.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@i2c:
- shard-lnl: [PASS][85] -> [SKIP][86] ([Intel XE#7106])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-4/igt@kms_pm_rpm@i2c.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_pm_rpm@i2c.html
* igt@kms_properties@plane-properties-legacy:
- shard-lnl: [PASS][87] -> [SKIP][88] ([Intel XE#9129])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-2/igt@kms_properties@plane-properties-legacy.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_properties@plane-properties-legacy.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#4608])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#4608] / [Intel XE#7304])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#1489]) +4 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#2893] / [Intel XE#7304])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-lnl: [PASS][93] -> [SKIP][94] ([Intel XE#1489]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-psr2-sprite-blt@edp-1:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1406] / [Intel XE#4609] / [Intel XE#7345]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-5/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html
* igt@kms_psr@pr-sprite-plane-move:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1406]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_psr@pr-sprite-plane-move.html
* igt@kms_psr@psr2-sprite-blt:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-4/igt@kms_psr@psr2-sprite-blt.html
- shard-lnl: [PASS][98] -> [SKIP][99] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-2/igt@kms_psr@psr2-sprite-blt.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-1/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2413])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_sharpness_filter@filter-dpms:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#6503])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-4/igt@kms_sharpness_filter@filter-dpms.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#362] / [Intel XE#5848])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#1499])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-4/igt@kms_vrr@max-min.html
* igt@xe_compute_preempt@compute-preempt-many-vram:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#5191] / [Intel XE#7316] / [Intel XE#7346])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@xe_compute_preempt@compute-preempt-many-vram.html
* igt@xe_cw_post_sync@walker-post-sync:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#8608])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-2/igt@xe_cw_post_sync@walker-post-sync.html
* igt@xe_evict@evict-beng-threads-small:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#6540] / [Intel XE#688]) +3 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@xe_evict@evict-beng-threads-small.html
* igt@xe_evict@evict-small-external-multi-queue-cm:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#8370])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-2/igt@xe_evict@evict-small-external-multi-queue-cm.html
* igt@xe_exec_balancer@once-cm-parallel-userptr:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#7482]) +3 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@xe_exec_balancer@once-cm-parallel-userptr.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-8/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_basic@multigpu-once-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#1392]) +2 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#8374]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind-imm:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#8374]) +5 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-1/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind-imm.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-dyn-priority:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#8364]) +7 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-dyn-priority.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-dyn-priority-smem:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#8364]) +12 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-4/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-dyn-priority-smem.html
* igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-basic:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#8378]) +2 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-basic.html
* igt@xe_exec_threads@threads-multi-queue-mixed-rebind:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#8378]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-rebind.html
* igt@xe_multigpu_svm@mgpu-coherency-basic:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#6964])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@xe_multigpu_svm@mgpu-coherency-basic.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-basic:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#6964])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-1/igt@xe_multigpu_svm@mgpu-concurrent-access-basic.html
* igt@xe_page_reclaim@boundary-split:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#7793]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-4/igt@xe_page_reclaim@boundary-split.html
* igt@xe_page_reclaim@pde-vs-pd:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#7793])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@xe_page_reclaim@pde-vs-pd.html
* igt@xe_pat@pat-index-xehpc:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#1420] / [Intel XE#2838] / [Intel XE#7590])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_prefetch_fault@prefetch-fault:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#7599])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-2/igt@xe_prefetch_fault@prefetch-fault.html
* igt@xe_pxp@display-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#4733] / [Intel XE#7417])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-4/igt@xe_pxp@display-pxp-fb.html
* igt@xe_query@multigpu-query-config:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#944]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-1/igt@xe_query@multigpu-query-config.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#944])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_sriov_admin@bulk-preempt-timeout-vfs-disabled:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#7174])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@xe_sriov_admin@bulk-preempt-timeout-vfs-disabled.html
* igt@xe_sriov_vfio@region-info:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#7724])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@xe_sriov_vfio@region-info.html
#### Possible fixes ####
* igt@fbdev@pan:
- shard-lnl: [SKIP][129] ([Intel XE#2134]) -> [PASS][130]
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@fbdev@pan.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-5/igt@fbdev@pan.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-lnl: [SKIP][131] ([Intel XE#9125]) -> [PASS][132] +41 other tests pass
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_color@ctm-blue-to-red:
- shard-lnl: [SKIP][133] ([Intel XE#3297]) -> [PASS][134] +3 other tests pass
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_color@ctm-blue-to-red.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-5/igt@kms_color@ctm-blue-to-red.html
* igt@kms_color_pipeline@plane-ctm3x4-lut1d:
- shard-lnl: [SKIP][135] ([Intel XE#7006]) -> [PASS][136]
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_color_pipeline@plane-ctm3x4-lut1d.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-5/igt@kms_color_pipeline@plane-ctm3x4-lut1d.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-lnl: [SKIP][137] ([Intel XE#9127]) -> [PASS][138] +1 other test pass
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_fbcon_fbt@fbc-suspend.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-lnl: [SKIP][139] ([Intel XE#8680]) -> [PASS][140]
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_fbcon_fbt@psr.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-5/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-1x:
- shard-lnl: [SKIP][141] ([Intel XE#702]) -> [PASS][142]
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_feature_discovery@display-1x.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-5/igt@kms_feature_discovery@display-1x.html
* igt@kms_feature_discovery@vrr:
- shard-lnl: [SKIP][143] ([Intel XE#8586]) -> [PASS][144]
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_feature_discovery@vrr.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-3/igt@kms_feature_discovery@vrr.html
* igt@kms_flip@blocking-absolute-wf_vblank:
- shard-lnl: [SKIP][145] ([Intel XE#2482]) -> [PASS][146] +4 other tests pass
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_flip@blocking-absolute-wf_vblank.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_flip@blocking-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][147] ([Intel XE#301]) -> [PASS][148]
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-render:
- shard-lnl: [SKIP][149] ([Intel XE#7779]) -> [PASS][150] +3 other tests pass
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-render.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt:
- shard-lnl: [SKIP][151] ([Intel XE#2548] / [Intel XE#7779]) -> [PASS][152] +10 other tests pass
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html
* igt@kms_invalid_mode@zero-clock:
- shard-lnl: [SKIP][153] ([Intel XE#2568]) -> [PASS][154] +1 other test pass
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_invalid_mode@zero-clock.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_invalid_mode@zero-clock.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers:
- shard-lnl: [SKIP][155] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) -> [PASS][156] +11 other tests pass
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-b:
- shard-lnl: [SKIP][157] ([Intel XE#2763] / [Intel XE#6886]) -> [PASS][158] +11 other tests pass
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-b.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-3/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-b.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-lnl: [SKIP][159] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) -> [PASS][160] +1 other test pass
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-lnl: [SKIP][161] ([Intel XE#2850] / [Intel XE#929]) -> [PASS][162] +2 other tests pass
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_psr@psr2-sprite-plane-onoff.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-5/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_setmode@basic-no-cpu-idle:
- shard-lnl: [SKIP][163] -> [PASS][164]
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_setmode@basic-no-cpu-idle.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-3/igt@kms_setmode@basic-no-cpu-idle.html
* igt@kms_vblank@ts-continuation-modeset:
- shard-bmg: [INCOMPLETE][165] -> [PASS][166] +1 other test pass
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-bmg-3/igt@kms_vblank@ts-continuation-modeset.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-1/igt@kms_vblank@ts-continuation-modeset.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][167] ([Intel XE#6321] / [Intel XE#8355]) -> [PASS][168]
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-bmg-9/igt@xe_evict@evict-mixed-many-threads-small.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
#### Warnings ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-lnl: [SKIP][169] ([Intel XE#3279]) -> [SKIP][170] ([Intel XE#9125])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-lnl: [SKIP][171] ([Intel XE#1407]) -> [SKIP][172] ([Intel XE#9125])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-lnl: [SKIP][173] ([Intel XE#9125]) -> [SKIP][174] ([Intel XE#1407]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-lnl: [SKIP][175] ([Intel XE#9125]) -> [SKIP][176] ([Intel XE#3658] / [Intel XE#7360])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-lnl: [SKIP][177] ([Intel XE#7059] / [Intel XE#7085]) -> [SKIP][178] ([Intel XE#9125])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: [SKIP][179] ([Intel XE#9125]) -> [SKIP][180] ([Intel XE#7059] / [Intel XE#7085])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-lnl: [SKIP][181] ([Intel XE#9125]) -> [SKIP][182] ([Intel XE#1124]) +7 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-lnl: [SKIP][183] ([Intel XE#1467] / [Intel XE#7367]) -> [SKIP][184] ([Intel XE#9125]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-4/igt@kms_big_fb@yf-tiled-addfb.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-lnl: [SKIP][185] ([Intel XE#1124]) -> [SKIP][186] ([Intel XE#9125]) +5 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-target-3840x2160p:
- shard-lnl: [SKIP][187] ([Intel XE#7679]) -> [SKIP][188] ([Intel XE#9125]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-2/igt@kms_bw@connected-linear-tiling-2-displays-target-3840x2160p.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_bw@connected-linear-tiling-2-displays-target-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-target-1920x1080p:
- shard-lnl: [SKIP][189] ([Intel XE#367]) -> [SKIP][190] ([Intel XE#9125])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-5/igt@kms_bw@linear-tiling-3-displays-target-1920x1080p.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_bw@linear-tiling-3-displays-target-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-target-3840x2160p:
- shard-lnl: [SKIP][191] ([Intel XE#9125]) -> [SKIP][192] ([Intel XE#367]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_bw@linear-tiling-3-displays-target-3840x2160p.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_bw@linear-tiling-3-displays-target-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-lnl: [SKIP][193] ([Intel XE#2669] / [Intel XE#7389]) -> [SKIP][194] ([Intel XE#9125])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-lnl: [SKIP][195] ([Intel XE#9125]) -> [SKIP][196] ([Intel XE#3432])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-lnl: [SKIP][197] ([Intel XE#3432]) -> [SKIP][198] ([Intel XE#9125]) +2 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-lnl: [SKIP][199] ([Intel XE#9125]) -> [SKIP][200] ([Intel XE#2669] / [Intel XE#7389]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
- shard-lnl: [SKIP][201] ([Intel XE#2887]) -> [SKIP][202] ([Intel XE#9125]) +9 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: [SKIP][203] ([Intel XE#9125]) -> [SKIP][204] ([Intel XE#2887]) +9 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-5/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-lnl: [SKIP][205] ([Intel XE#9125]) -> [SKIP][206] ([Intel XE#307] / [Intel XE#6974])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_content_protection@dp-mst-type-0.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-5/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-lnl: [SKIP][207] ([Intel XE#9125]) -> [SKIP][208] ([Intel XE#6974])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@uevent:
- shard-lnl: [SKIP][209] ([Intel XE#7642]) -> [SKIP][210] ([Intel XE#9125]) +2 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-2/igt@kms_content_protection@uevent.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-lnl: [SKIP][211] ([Intel XE#9125]) -> [SKIP][212] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-lnl: [SKIP][213] ([Intel XE#9125]) -> [SKIP][214] ([Intel XE#1424]) +3 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_cursor_crc@cursor-random-32x10.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-3/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-lnl: [SKIP][215] ([Intel XE#1424]) -> [SKIP][216] ([Intel XE#9125]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-2/igt@kms_cursor_crc@cursor-sliding-32x32.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-lnl: [SKIP][217] ([Intel XE#309] / [Intel XE#7343]) -> [SKIP][218] ([Intel XE#9125]) +2 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-lnl: [SKIP][219] ([Intel XE#9125]) -> [SKIP][220] ([Intel XE#309] / [Intel XE#7343]) +4 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-3/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-lnl: [SKIP][221] ([Intel XE#9125]) -> [SKIP][222] ([Intel XE#323] / [Intel XE#6035])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-lnl: [SKIP][223] ([Intel XE#4302]) -> [SKIP][224] ([Intel XE#9125])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-4/igt@kms_display_modes@extended-mode-basic.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-lnl: [SKIP][225] ([Intel XE#9125]) -> [SKIP][226] ([Intel XE#4354] / [Intel XE#7450])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_dp_link_training@non-uhbr-sst.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dsc@dsc-with-bpc-formats-bigjoiner:
- shard-lnl: [SKIP][227] ([Intel XE#8265]) -> [SKIP][228] ([Intel XE#9125]) +1 other test skip
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-2/igt@kms_dsc@dsc-with-bpc-formats-bigjoiner.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_dsc@dsc-with-bpc-formats-bigjoiner.html
* igt@kms_dsc@dsc-with-bpc-ultrajoiner:
- shard-lnl: [SKIP][229] ([Intel XE#9125]) -> [SKIP][230] ([Intel XE#8265]) +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_dsc@dsc-with-bpc-ultrajoiner.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-5/igt@kms_dsc@dsc-with-bpc-ultrajoiner.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-lnl: [SKIP][231] ([Intel XE#9125]) -> [SKIP][232] ([Intel XE#4422] / [Intel XE#7442])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-lnl: [FAIL][233] ([Intel XE#7949]) -> [SKIP][234] ([Intel XE#8680])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-4/igt@kms_fbcon_fbt@psr-suspend.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-lnl: [SKIP][235] ([Intel XE#2482]) -> [FAIL][236] ([Intel XE#301])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_frontbuffer_tracking@drrs-2p-rte:
- shard-lnl: [SKIP][237] ([Intel XE#656] / [Intel XE#7905]) -> [SKIP][238] ([Intel XE#2548] / [Intel XE#7779]) +25 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-2p-rte.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-2p-rte.html
* igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc:
- shard-lnl: [SKIP][239] ([Intel XE#7779]) -> [SKIP][240] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
- shard-lnl: [SKIP][241] ([Intel XE#6312] / [Intel XE#651]) -> [SKIP][242] ([Intel XE#2548] / [Intel XE#7779]) +7 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-lnl: [SKIP][243] ([Intel XE#7779]) -> [SKIP][244] ([Intel XE#7905]) +29 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-pri-indfb-draw-mmap-wc.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-pri-shrfb-draw-blt:
- shard-lnl: [SKIP][245] ([Intel XE#7905]) -> [SKIP][246] ([Intel XE#7779]) +37 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-4/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-pri-shrfb-draw-blt.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-lnl: [SKIP][247] ([Intel XE#2548] / [Intel XE#7779]) -> [SKIP][248] ([Intel XE#656] / [Intel XE#7905]) +24 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt:
- shard-lnl: [SKIP][249] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][250] ([Intel XE#7779]) +4 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
- shard-lnl: [SKIP][251] ([Intel XE#2548] / [Intel XE#7779]) -> [SKIP][252] ([Intel XE#6312] / [Intel XE#651]) +9 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-modesetfrombusy:
- shard-lnl: [SKIP][253] ([Intel XE#6312]) -> [SKIP][254] ([Intel XE#7779]) +12 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-modesetfrombusy.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrshdr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-linear:
- shard-lnl: [SKIP][255] ([Intel XE#7779]) -> [SKIP][256] ([Intel XE#6312]) +12 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-linear.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y:
- shard-lnl: [SKIP][257] ([Intel XE#7399]) -> [SKIP][258] ([Intel XE#7779]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-lnl: [SKIP][259] ([Intel XE#2548] / [Intel XE#7779]) -> [SKIP][260] ([Intel XE#1469] / [Intel XE#7399])
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-abgr161616f-draw-blt:
- shard-lnl: [SKIP][261] ([Intel XE#7779]) -> [SKIP][262] ([Intel XE#7061]) +3 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-abgr161616f-draw-blt.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-slowdraw:
- shard-lnl: [SKIP][263] ([Intel XE#7865]) -> [SKIP][264] ([Intel XE#7779]) +15 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-slowdraw.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-slowdraw.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-render:
- shard-lnl: [SKIP][265] ([Intel XE#7779]) -> [SKIP][266] ([Intel XE#7865]) +24 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-render.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-blt:
- shard-lnl: [SKIP][267] ([Intel XE#7061]) -> [SKIP][268] ([Intel XE#7779]) +4 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-5/igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-blt.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-blt.html
* igt@kms_hdr@static-toggle:
- shard-lnl: [SKIP][269] ([Intel XE#9125]) -> [SKIP][270] ([Intel XE#1503])
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_hdr@static-toggle.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-5/igt@kms_hdr@static-toggle.html
* igt@kms_mst@mst-suspend-read-crc:
- shard-lnl: [SKIP][271] ([Intel XE#8348]) -> [SKIP][272] ([Intel XE#9125])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-5/igt@kms_mst@mst-suspend-read-crc.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_mst@mst-suspend-read-crc.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-lnl: [SKIP][273] ([Intel XE#9125]) -> [SKIP][274] ([Intel XE#6912] / [Intel XE#7375])
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-lnl: [SKIP][275] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375]) -> [SKIP][276] ([Intel XE#9125])
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-2/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-lnl: [SKIP][277] ([Intel XE#4596] / [Intel XE#5854]) -> [SKIP][278] ([Intel XE#9125])
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-5/igt@kms_plane_multiple@2x-tiling-4.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- shard-lnl: [SKIP][279] ([Intel XE#2763] / [Intel XE#6886]) -> [SKIP][280] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) +5 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [SKIP][281] ([Intel XE#7794]) -> [FAIL][282] ([Intel XE#8399])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-lnl: [SKIP][283] ([Intel XE#1489]) -> [SKIP][284] ([Intel XE#2893] / [Intel XE#7304]) +4 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-lnl: [SKIP][285] ([Intel XE#1489]) -> [SKIP][286] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304])
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-lnl: [SKIP][287] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) -> [SKIP][288] ([Intel XE#1489]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-lnl: [SKIP][289] ([Intel XE#2893] / [Intel XE#7304]) -> [SKIP][290] ([Intel XE#1489]) +1 other test skip
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-2/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: [SKIP][291] ([Intel XE#1122] / [Intel XE#7429]) -> [SKIP][292] ([Intel XE#1128] / [Intel XE#7413]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-lnl: [SKIP][293] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][294] ([Intel XE#1406] / [Intel XE#7345]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_psr@fbc-psr2-primary-render.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-3/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-lnl: [SKIP][295] ([Intel XE#1406] / [Intel XE#7345]) -> [SKIP][296] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-4/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@pr-no-drrs:
- shard-lnl: [SKIP][297] ([Intel XE#1406]) -> [SKIP][298] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-5/igt@kms_psr@pr-no-drrs.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_psr@pr-no-drrs.html
* igt@kms_psr@pr-primary-page-flip:
- shard-lnl: [SKIP][299] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][300] ([Intel XE#1406]) +3 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_psr@pr-primary-page-flip.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_psr@pr-primary-page-flip.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-lnl: [SKIP][301] ([Intel XE#9125]) -> [SKIP][302] ([Intel XE#1127] / [Intel XE#5813])
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-lnl: [SKIP][303] ([Intel XE#9125]) -> [SKIP][304] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_rotation_crc@sprite-rotation-90.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-3/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-lnl: [SKIP][305] ([Intel XE#362] / [Intel XE#5848]) -> [SKIP][306] ([Intel XE#9125])
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@lobf-dc3co:
- shard-lnl: [SKIP][307] ([Intel XE#9125]) -> [SKIP][308] ([Intel XE#8397])
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-6/igt@kms_vrr@lobf-dc3co.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-2/igt@kms_vrr@lobf-dc3co.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-lnl: [SKIP][309] ([Intel XE#1499]) -> [SKIP][310] ([Intel XE#9125]) +1 other test skip
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-vrr.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-lnl-6/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@xe_exec_reset@gt-reset-fault-injection:
- shard-bmg: [ABORT][311] ([Intel XE#9131]) -> [DMESG-WARN][312] ([Intel XE#9130])
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-bmg-5/igt@xe_exec_reset@gt-reset-fault-injection.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-2/igt@xe_exec_reset@gt-reset-fault-injection.html
* igt@xe_wedged@basic-wedged:
- shard-bmg: [ABORT][313] ([Intel XE#8591] / [Intel XE#8963]) -> [DMESG-WARN][314] ([Intel XE#8963])
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5685-b2fada7902896bce389c2b033688d18df36855fc/shard-bmg-10/igt@xe_wedged@basic-wedged.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/shard-bmg-4/igt@xe_wedged@basic-wedged.html
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[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#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
[Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[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#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3297]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3297
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[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#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[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#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[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#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[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#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7106]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7106
[Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7316
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
[Intel XE#7346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7346
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[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#7360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7360
[Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[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#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
[Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7402
[Intel XE#7413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7413
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7450
[Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503
[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#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7687
[Intel XE#7724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7724
[Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
[Intel XE#7779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7779
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7794
[Intel XE#7809]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7809
[Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7949]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7949
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8348
[Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8397
[Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399
[Intel XE#8586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8586
[Intel XE#8591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8591
[Intel XE#8608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8608
[Intel XE#8680]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8680
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#8963]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8963
[Intel XE#9125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9125
[Intel XE#9127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9127
[Intel XE#9128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9128
[Intel XE#9129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9129
[Intel XE#9130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9130
[Intel XE#9131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9131
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-5685-b2fada7902896bce389c2b033688d18df36855fc -> xe-pw-172150v3
IGT_9082: 2d61f578d998115259b87f9fa27f597ce11a0c89 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5685-b2fada7902896bce389c2b033688d18df36855fc: b2fada7902896bce389c2b033688d18df36855fc
xe-pw-172150v3: 172150v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172150v3/index.html
[-- Attachment #2: Type: text/html, Size: 109115 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2026-09-04 2:01 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-03 14:18 [PATCH v3 0/7] drm/xe: Capture additional HW register state in devcoredump Nareshkumar Gollakoti
2026-09-03 14:18 ` [PATCH v3 1/7] drm/xe/devcoredump: Capture GT fuse registers " Nareshkumar Gollakoti
2026-09-03 14:32 ` sashiko-bot
2026-09-03 14:18 ` [PATCH v3 2/7] drm/xe/devcoredump: Add GuC register snapshot to devcoredump Nareshkumar Gollakoti
2026-09-03 14:18 ` [PATCH v3 3/7] drm/xe/guc: Print register addresses in capture snapshot output Nareshkumar Gollakoti
2026-09-03 14:18 ` [PATCH v3 4/7] drm/xe: dump GAM page fault report registers in devcoredump Nareshkumar Gollakoti
2026-09-03 14:18 ` [PATCH v3 5/7] drm/xe/guc: add TDL, SLICE gfx registers to capture list Nareshkumar Gollakoti
2026-09-03 14:18 ` [PATCH v3 6/7] drm/xe: capture L3 node status registers in devcoredump Nareshkumar Gollakoti
2026-09-03 14:18 ` [PATCH v3 7/7] drm/xe/guc: capture additional engine state registers Nareshkumar Gollakoti
2026-09-03 14:33 ` sashiko-bot
2026-09-03 14:54 ` ✗ CI.checkpatch: warning for drm/xe: Capture additional HW register state in devcoredump (rev3) Patchwork
2026-09-03 14:56 ` ✓ CI.KUnit: success " Patchwork
2026-09-03 15:39 ` ✓ Xe.CI.BAT: " Patchwork
2026-09-04 2:01 ` ✗ 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