* [PATCH] drm/xe/wa: Steer RMW of MCR registers while building default LRC
@ 2026-02-06 22:30 Matt Roper
2026-02-06 22:37 ` ✓ CI.KUnit: success for " Patchwork
` (8 more replies)
0 siblings, 9 replies; 14+ messages in thread
From: Matt Roper @ 2026-02-06 22:30 UTC (permalink / raw)
To: intel-xe; +Cc: matthew.d.roper, Michal Wajdeczko
When generating the default LRC, if a register is not masked, we apply
any save-restore programming necessary via a read-modify-write sequence
that will ensure we only update the relevant bits/fields without
clobbering the rest of the register. However some of the registers that
need to be updated might be MCR registers which require steering to a
non-terminated instance to ensure we can read back a valid, non-zero
value. The steering of reads originating from a command streamer is
controlled by register CS_MMIO_GROUP_INSTANCE_SELECT. Emit additional
MI_LRI commands to update the steering before any RMW of an MCR register
to ensure the reads are performed properly.
Note that needing to perform a RMW of an MCR register while building the
default LRC is pretty rare. Most of the MCR registers that are part of
an engine's LRCs are also masked registers, so no MCR is necessary.
Fixes: f2f90989ccff ("drm/xe: Avoid reading RMW registers in emit_wa_job")
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
drivers/gpu/drm/xe/regs/xe_engine_regs.h | 6 +++
drivers/gpu/drm/xe/xe_gt.c | 66 +++++++++++++++++++-----
2 files changed, 60 insertions(+), 12 deletions(-)
diff --git a/drivers/gpu/drm/xe/regs/xe_engine_regs.h b/drivers/gpu/drm/xe/regs/xe_engine_regs.h
index 68172b0248a6..dc5a4fafa70c 100644
--- a/drivers/gpu/drm/xe/regs/xe_engine_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_engine_regs.h
@@ -96,6 +96,12 @@
#define ENABLE_SEMAPHORE_POLL_BIT REG_BIT(13)
#define RING_CMD_CCTL(base) XE_REG((base) + 0xc4, XE_REG_OPTION_MASKED)
+
+#define CS_MMIO_GROUP_INSTANCE_SELECT(base) XE_REG((base) + 0xcc)
+#define SELECTIVE_READ_ADDRESSING REG_BIT(30)
+#define SELECTIVE_READ_GROUP REG_GENMASK(29, 23)
+#define SELECTIVE_READ_INSTANCE REG_GENMASK(22, 16)
+
/*
* 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.
diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c
index 22132467ff4f..ae041168fabf 100644
--- a/drivers/gpu/drm/xe/xe_gt.c
+++ b/drivers/gpu/drm/xe/xe_gt.c
@@ -207,11 +207,15 @@ static int emit_nop_job(struct xe_gt *gt, struct xe_exec_queue *q)
return ret;
}
+/* Dwords required to emit a RMW of a register */
+#define EMIT_RMW_DW 20
+
static int emit_wa_job(struct xe_gt *gt, struct xe_exec_queue *q)
{
- struct xe_reg_sr *sr = &q->hwe->reg_lrc;
+ struct xe_hw_engine *hwe = q->hwe;
+ struct xe_reg_sr *sr = &hwe->reg_lrc;
struct xe_reg_sr_entry *entry;
- int count_rmw = 0, count = 0, ret;
+ int count_rmw = 0, count_rmw_mcr = 0, count = 0, ret;
unsigned long idx;
struct xe_bb *bb;
size_t bb_len = 0;
@@ -221,6 +225,8 @@ static int emit_wa_job(struct xe_gt *gt, struct xe_exec_queue *q)
xa_for_each(&sr->xa, idx, entry) {
if (entry->reg.masked || entry->clr_bits == ~0)
++count;
+ else if (entry->reg.mcr)
+ ++count_rmw_mcr;
else
++count_rmw;
}
@@ -228,17 +234,35 @@ static int emit_wa_job(struct xe_gt *gt, struct xe_exec_queue *q)
if (count)
bb_len += count * 2 + 1;
- if (count_rmw)
- bb_len += count_rmw * 20 + 7;
+ /*
+ * RMW of MCR registers is the same as a normal RMW, except an
+ * additional LRI (3 dwords) is required per register to steer the read
+ * to a nom-terminated instance.
+ *
+ * We could probably shorten the batch slightly by eliding the
+ * steering for consecutive MCR registers that have the same
+ * group/instance target, but it's not worth the extra complexity to do
+ * so.
+ */
+ bb_len += count_rmw * EMIT_RMW_DW;
+ bb_len += count_rmw_mcr * (EMIT_RMW_DW + 3);
- if (q->hwe->class == XE_ENGINE_CLASS_RENDER)
+ /*
+ * After doing all RMW, we need 7 trailing dwords to clean up,
+ * plus an additional 3 dwords to reset steering if any of the
+ * registers were MCR.
+ */
+ if (count_rmw || count_rmw_mcr)
+ bb_len += 7 + (count_rmw_mcr ? 3 : 0);
+
+ if (hwe->class == XE_ENGINE_CLASS_RENDER)
/*
* Big enough to emit all of the context's 3DSTATE via
* xe_lrc_emit_hwe_state_instructions()
*/
- bb_len += xe_gt_lrc_size(gt, q->hwe->class) / sizeof(u32);
+ bb_len += xe_gt_lrc_size(gt, hwe->class) / sizeof(u32);
- xe_gt_dbg(gt, "LRC %s WA job: %zu dwords\n", q->hwe->name, bb_len);
+ xe_gt_dbg(gt, "LRC %s WA job: %zu dwords\n", hwe->name, bb_len);
bb = xe_bb_new(gt, bb_len, false);
if (IS_ERR(bb))
@@ -273,13 +297,23 @@ static int emit_wa_job(struct xe_gt *gt, struct xe_exec_queue *q)
}
}
- if (count_rmw) {
- /* Emit MI_MATH for each RMW reg: 20dw per reg + 7 trailing dw */
-
+ if (count_rmw || count_rmw_mcr) {
xa_for_each(&sr->xa, idx, entry) {
if (entry->reg.masked || entry->clr_bits == ~0)
continue;
+ if (entry->reg.mcr) {
+ struct xe_reg_mcr reg = { .__reg.raw = entry->reg.raw };
+ u8 group, instance;
+
+ xe_gt_mcr_get_nonterminated_steering(gt, reg, &group, &instance);
+ *cs++ = MI_LOAD_REGISTER_IMM | MI_LRI_NUM_REGS(1);
+ *cs++ = CS_MMIO_GROUP_INSTANCE_SELECT(hwe->mmio_base).addr;
+ *cs++ = SELECTIVE_READ_ADDRESSING |
+ REG_FIELD_PREP(SELECTIVE_READ_GROUP, group) |
+ REG_FIELD_PREP(SELECTIVE_READ_INSTANCE, instance);
+ }
+
*cs++ = MI_LOAD_REGISTER_REG | MI_LRR_DST_CS_MMIO;
*cs++ = entry->reg.addr;
*cs++ = CS_GPR_REG(0, 0).addr;
@@ -305,8 +339,9 @@ static int emit_wa_job(struct xe_gt *gt, struct xe_exec_queue *q)
*cs++ = CS_GPR_REG(0, 0).addr;
*cs++ = entry->reg.addr;
- xe_gt_dbg(gt, "REG[%#x] = ~%#x|%#x\n",
- entry->reg.addr, entry->clr_bits, entry->set_bits);
+ xe_gt_dbg(gt, "REG[%#x] = ~%#x|%#x%s\n",
+ entry->reg.addr, entry->clr_bits, entry->set_bits,
+ entry->reg.mcr ? " (MCR)" : "");
}
/* reset used GPR */
@@ -318,6 +353,13 @@ static int emit_wa_job(struct xe_gt *gt, struct xe_exec_queue *q)
*cs++ = 0;
*cs++ = CS_GPR_REG(0, 2).addr;
*cs++ = 0;
+
+ /* reset steering */
+ if (count_rmw_mcr) {
+ *cs++ = MI_LOAD_REGISTER_IMM | MI_LRI_NUM_REGS(1);
+ *cs++ = CS_MMIO_GROUP_INSTANCE_SELECT(q->hwe->mmio_base).addr;
+ *cs++ = 0;
+ }
}
cs = xe_lrc_emit_hwe_state_instructions(q, cs);
--
2.52.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* ✓ CI.KUnit: success for drm/xe/wa: Steer RMW of MCR registers while building default LRC
2026-02-06 22:30 [PATCH] drm/xe/wa: Steer RMW of MCR registers while building default LRC Matt Roper
@ 2026-02-06 22:37 ` Patchwork
2026-02-06 23:15 ` ✗ Xe.CI.BAT: failure " Patchwork
` (7 subsequent siblings)
8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-02-06 22:37 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
== Series Details ==
Series: drm/xe/wa: Steer RMW of MCR registers while building default LRC
URL : https://patchwork.freedesktop.org/series/161300/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[22:36:38] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:36:42] 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
[22:37:14] Starting KUnit Kernel (1/1)...
[22:37:14] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:37:14] ================== guc_buf (11 subtests) ===================
[22:37:14] [PASSED] test_smallest
[22:37:14] [PASSED] test_largest
[22:37:14] [PASSED] test_granular
[22:37:14] [PASSED] test_unique
[22:37:14] [PASSED] test_overlap
[22:37:14] [PASSED] test_reusable
[22:37:14] [PASSED] test_too_big
[22:37:14] [PASSED] test_flush
[22:37:14] [PASSED] test_lookup
[22:37:14] [PASSED] test_data
[22:37:14] [PASSED] test_class
[22:37:14] ===================== [PASSED] guc_buf =====================
[22:37:14] =================== guc_dbm (7 subtests) ===================
[22:37:14] [PASSED] test_empty
[22:37:14] [PASSED] test_default
[22:37:14] ======================== test_size ========================
[22:37:14] [PASSED] 4
[22:37:14] [PASSED] 8
[22:37:14] [PASSED] 32
[22:37:14] [PASSED] 256
[22:37:14] ==================== [PASSED] test_size ====================
[22:37:14] ======================= test_reuse ========================
[22:37:14] [PASSED] 4
[22:37:14] [PASSED] 8
[22:37:14] [PASSED] 32
[22:37:14] [PASSED] 256
[22:37:14] =================== [PASSED] test_reuse ====================
[22:37:14] =================== test_range_overlap ====================
[22:37:14] [PASSED] 4
[22:37:14] [PASSED] 8
[22:37:14] [PASSED] 32
[22:37:14] [PASSED] 256
[22:37:14] =============== [PASSED] test_range_overlap ================
[22:37:14] =================== test_range_compact ====================
[22:37:14] [PASSED] 4
[22:37:14] [PASSED] 8
[22:37:14] [PASSED] 32
[22:37:14] [PASSED] 256
[22:37:14] =============== [PASSED] test_range_compact ================
[22:37:14] ==================== test_range_spare =====================
[22:37:14] [PASSED] 4
[22:37:14] [PASSED] 8
[22:37:14] [PASSED] 32
[22:37:14] [PASSED] 256
[22:37:14] ================ [PASSED] test_range_spare =================
[22:37:14] ===================== [PASSED] guc_dbm =====================
[22:37:14] =================== guc_idm (6 subtests) ===================
[22:37:14] [PASSED] bad_init
[22:37:14] [PASSED] no_init
[22:37:14] [PASSED] init_fini
[22:37:14] [PASSED] check_used
[22:37:14] [PASSED] check_quota
[22:37:14] [PASSED] check_all
[22:37:14] ===================== [PASSED] guc_idm =====================
[22:37:14] ================== no_relay (3 subtests) ===================
[22:37:14] [PASSED] xe_drops_guc2pf_if_not_ready
[22:37:14] [PASSED] xe_drops_guc2vf_if_not_ready
[22:37:14] [PASSED] xe_rejects_send_if_not_ready
[22:37:14] ==================== [PASSED] no_relay =====================
[22:37:14] ================== pf_relay (14 subtests) ==================
[22:37:14] [PASSED] pf_rejects_guc2pf_too_short
[22:37:14] [PASSED] pf_rejects_guc2pf_too_long
[22:37:14] [PASSED] pf_rejects_guc2pf_no_payload
[22:37:14] [PASSED] pf_fails_no_payload
[22:37:14] [PASSED] pf_fails_bad_origin
[22:37:14] [PASSED] pf_fails_bad_type
[22:37:14] [PASSED] pf_txn_reports_error
[22:37:14] [PASSED] pf_txn_sends_pf2guc
[22:37:14] [PASSED] pf_sends_pf2guc
[22:37:14] [SKIPPED] pf_loopback_nop
[22:37:14] [SKIPPED] pf_loopback_echo
[22:37:14] [SKIPPED] pf_loopback_fail
[22:37:14] [SKIPPED] pf_loopback_busy
[22:37:14] [SKIPPED] pf_loopback_retry
[22:37:14] ==================== [PASSED] pf_relay =====================
[22:37:14] ================== vf_relay (3 subtests) ===================
[22:37:14] [PASSED] vf_rejects_guc2vf_too_short
[22:37:14] [PASSED] vf_rejects_guc2vf_too_long
[22:37:14] [PASSED] vf_rejects_guc2vf_no_payload
[22:37:14] ==================== [PASSED] vf_relay =====================
[22:37:14] ================ pf_gt_config (6 subtests) =================
[22:37:14] [PASSED] fair_contexts_1vf
[22:37:14] [PASSED] fair_doorbells_1vf
[22:37:14] [PASSED] fair_ggtt_1vf
[22:37:14] ====================== fair_contexts ======================
[22:37:14] [PASSED] 1 VF
[22:37:14] [PASSED] 2 VFs
[22:37:14] [PASSED] 3 VFs
[22:37:14] [PASSED] 4 VFs
[22:37:14] [PASSED] 5 VFs
[22:37:14] [PASSED] 6 VFs
[22:37:14] [PASSED] 7 VFs
[22:37:14] [PASSED] 8 VFs
[22:37:14] [PASSED] 9 VFs
[22:37:14] [PASSED] 10 VFs
[22:37:14] [PASSED] 11 VFs
[22:37:14] [PASSED] 12 VFs
[22:37:14] [PASSED] 13 VFs
[22:37:14] [PASSED] 14 VFs
[22:37:14] [PASSED] 15 VFs
[22:37:14] [PASSED] 16 VFs
[22:37:14] [PASSED] 17 VFs
[22:37:14] [PASSED] 18 VFs
[22:37:14] [PASSED] 19 VFs
[22:37:14] [PASSED] 20 VFs
[22:37:14] [PASSED] 21 VFs
[22:37:14] [PASSED] 22 VFs
[22:37:14] [PASSED] 23 VFs
[22:37:14] [PASSED] 24 VFs
[22:37:14] [PASSED] 25 VFs
[22:37:14] [PASSED] 26 VFs
[22:37:14] [PASSED] 27 VFs
[22:37:14] [PASSED] 28 VFs
[22:37:14] [PASSED] 29 VFs
[22:37:14] [PASSED] 30 VFs
[22:37:14] [PASSED] 31 VFs
[22:37:14] [PASSED] 32 VFs
[22:37:14] [PASSED] 33 VFs
[22:37:14] [PASSED] 34 VFs
[22:37:14] [PASSED] 35 VFs
[22:37:14] [PASSED] 36 VFs
[22:37:14] [PASSED] 37 VFs
[22:37:14] [PASSED] 38 VFs
[22:37:14] [PASSED] 39 VFs
[22:37:14] [PASSED] 40 VFs
[22:37:14] [PASSED] 41 VFs
[22:37:14] [PASSED] 42 VFs
[22:37:14] [PASSED] 43 VFs
[22:37:14] [PASSED] 44 VFs
[22:37:14] [PASSED] 45 VFs
[22:37:14] [PASSED] 46 VFs
[22:37:14] [PASSED] 47 VFs
[22:37:14] [PASSED] 48 VFs
[22:37:14] [PASSED] 49 VFs
[22:37:14] [PASSED] 50 VFs
[22:37:14] [PASSED] 51 VFs
[22:37:14] [PASSED] 52 VFs
[22:37:14] [PASSED] 53 VFs
[22:37:14] [PASSED] 54 VFs
[22:37:14] [PASSED] 55 VFs
[22:37:14] [PASSED] 56 VFs
[22:37:14] [PASSED] 57 VFs
[22:37:14] [PASSED] 58 VFs
[22:37:14] [PASSED] 59 VFs
[22:37:14] [PASSED] 60 VFs
[22:37:14] [PASSED] 61 VFs
[22:37:14] [PASSED] 62 VFs
[22:37:14] [PASSED] 63 VFs
[22:37:14] ================== [PASSED] fair_contexts ==================
[22:37:14] ===================== fair_doorbells ======================
[22:37:14] [PASSED] 1 VF
[22:37:14] [PASSED] 2 VFs
[22:37:14] [PASSED] 3 VFs
[22:37:14] [PASSED] 4 VFs
[22:37:14] [PASSED] 5 VFs
[22:37:14] [PASSED] 6 VFs
[22:37:14] [PASSED] 7 VFs
[22:37:14] [PASSED] 8 VFs
[22:37:14] [PASSED] 9 VFs
[22:37:14] [PASSED] 10 VFs
[22:37:14] [PASSED] 11 VFs
[22:37:14] [PASSED] 12 VFs
[22:37:14] [PASSED] 13 VFs
[22:37:14] [PASSED] 14 VFs
[22:37:14] [PASSED] 15 VFs
[22:37:14] [PASSED] 16 VFs
[22:37:14] [PASSED] 17 VFs
[22:37:14] [PASSED] 18 VFs
[22:37:14] [PASSED] 19 VFs
[22:37:14] [PASSED] 20 VFs
[22:37:14] [PASSED] 21 VFs
[22:37:14] [PASSED] 22 VFs
[22:37:14] [PASSED] 23 VFs
[22:37:14] [PASSED] 24 VFs
[22:37:14] [PASSED] 25 VFs
[22:37:14] [PASSED] 26 VFs
[22:37:14] [PASSED] 27 VFs
[22:37:14] [PASSED] 28 VFs
[22:37:14] [PASSED] 29 VFs
[22:37:14] [PASSED] 30 VFs
[22:37:14] [PASSED] 31 VFs
[22:37:14] [PASSED] 32 VFs
[22:37:14] [PASSED] 33 VFs
[22:37:14] [PASSED] 34 VFs
[22:37:14] [PASSED] 35 VFs
[22:37:14] [PASSED] 36 VFs
[22:37:14] [PASSED] 37 VFs
[22:37:14] [PASSED] 38 VFs
[22:37:14] [PASSED] 39 VFs
[22:37:14] [PASSED] 40 VFs
[22:37:14] [PASSED] 41 VFs
[22:37:14] [PASSED] 42 VFs
[22:37:14] [PASSED] 43 VFs
[22:37:14] [PASSED] 44 VFs
[22:37:14] [PASSED] 45 VFs
[22:37:14] [PASSED] 46 VFs
[22:37:14] [PASSED] 47 VFs
[22:37:14] [PASSED] 48 VFs
[22:37:14] [PASSED] 49 VFs
[22:37:14] [PASSED] 50 VFs
[22:37:14] [PASSED] 51 VFs
[22:37:14] [PASSED] 52 VFs
[22:37:14] [PASSED] 53 VFs
[22:37:14] [PASSED] 54 VFs
[22:37:14] [PASSED] 55 VFs
[22:37:14] [PASSED] 56 VFs
[22:37:14] [PASSED] 57 VFs
[22:37:14] [PASSED] 58 VFs
[22:37:14] [PASSED] 59 VFs
[22:37:14] [PASSED] 60 VFs
[22:37:14] [PASSED] 61 VFs
[22:37:14] [PASSED] 62 VFs
[22:37:14] [PASSED] 63 VFs
[22:37:14] ================= [PASSED] fair_doorbells ==================
[22:37:14] ======================== fair_ggtt ========================
[22:37:14] [PASSED] 1 VF
[22:37:14] [PASSED] 2 VFs
[22:37:14] [PASSED] 3 VFs
[22:37:14] [PASSED] 4 VFs
[22:37:14] [PASSED] 5 VFs
[22:37:14] [PASSED] 6 VFs
[22:37:14] [PASSED] 7 VFs
[22:37:14] [PASSED] 8 VFs
[22:37:14] [PASSED] 9 VFs
[22:37:14] [PASSED] 10 VFs
[22:37:14] [PASSED] 11 VFs
[22:37:14] [PASSED] 12 VFs
[22:37:14] [PASSED] 13 VFs
[22:37:14] [PASSED] 14 VFs
[22:37:14] [PASSED] 15 VFs
[22:37:14] [PASSED] 16 VFs
[22:37:14] [PASSED] 17 VFs
[22:37:14] [PASSED] 18 VFs
[22:37:14] [PASSED] 19 VFs
[22:37:14] [PASSED] 20 VFs
[22:37:14] [PASSED] 21 VFs
[22:37:14] [PASSED] 22 VFs
[22:37:14] [PASSED] 23 VFs
[22:37:14] [PASSED] 24 VFs
[22:37:14] [PASSED] 25 VFs
[22:37:14] [PASSED] 26 VFs
[22:37:14] [PASSED] 27 VFs
[22:37:14] [PASSED] 28 VFs
[22:37:14] [PASSED] 29 VFs
[22:37:14] [PASSED] 30 VFs
[22:37:14] [PASSED] 31 VFs
[22:37:14] [PASSED] 32 VFs
[22:37:14] [PASSED] 33 VFs
[22:37:14] [PASSED] 34 VFs
[22:37:14] [PASSED] 35 VFs
[22:37:14] [PASSED] 36 VFs
[22:37:14] [PASSED] 37 VFs
[22:37:14] [PASSED] 38 VFs
[22:37:14] [PASSED] 39 VFs
[22:37:14] [PASSED] 40 VFs
[22:37:14] [PASSED] 41 VFs
[22:37:14] [PASSED] 42 VFs
[22:37:14] [PASSED] 43 VFs
[22:37:14] [PASSED] 44 VFs
[22:37:14] [PASSED] 45 VFs
[22:37:14] [PASSED] 46 VFs
[22:37:14] [PASSED] 47 VFs
[22:37:14] [PASSED] 48 VFs
[22:37:14] [PASSED] 49 VFs
[22:37:14] [PASSED] 50 VFs
[22:37:14] [PASSED] 51 VFs
[22:37:14] [PASSED] 52 VFs
[22:37:14] [PASSED] 53 VFs
[22:37:14] [PASSED] 54 VFs
[22:37:14] [PASSED] 55 VFs
[22:37:14] [PASSED] 56 VFs
[22:37:14] [PASSED] 57 VFs
[22:37:14] [PASSED] 58 VFs
[22:37:14] [PASSED] 59 VFs
[22:37:14] [PASSED] 60 VFs
[22:37:14] [PASSED] 61 VFs
[22:37:14] [PASSED] 62 VFs
[22:37:14] [PASSED] 63 VFs
[22:37:14] ==================== [PASSED] fair_ggtt ====================
[22:37:14] ================== [PASSED] pf_gt_config ===================
[22:37:14] ===================== lmtt (1 subtest) =====================
[22:37:14] ======================== test_ops =========================
[22:37:14] [PASSED] 2-level
[22:37:14] [PASSED] multi-level
[22:37:14] ==================== [PASSED] test_ops =====================
[22:37:14] ====================== [PASSED] lmtt =======================
[22:37:14] ================= pf_service (11 subtests) =================
[22:37:14] [PASSED] pf_negotiate_any
[22:37:14] [PASSED] pf_negotiate_base_match
[22:37:14] [PASSED] pf_negotiate_base_newer
[22:37:14] [PASSED] pf_negotiate_base_next
[22:37:14] [SKIPPED] pf_negotiate_base_older
[22:37:14] [PASSED] pf_negotiate_base_prev
[22:37:14] [PASSED] pf_negotiate_latest_match
[22:37:14] [PASSED] pf_negotiate_latest_newer
[22:37:14] [PASSED] pf_negotiate_latest_next
[22:37:14] [SKIPPED] pf_negotiate_latest_older
[22:37:14] [SKIPPED] pf_negotiate_latest_prev
[22:37:14] =================== [PASSED] pf_service ====================
[22:37:14] ================= xe_guc_g2g (2 subtests) ==================
[22:37:14] ============== xe_live_guc_g2g_kunit_default ==============
[22:37:14] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[22:37:14] ============== xe_live_guc_g2g_kunit_allmem ===============
[22:37:14] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[22:37:14] =================== [SKIPPED] xe_guc_g2g ===================
[22:37:14] =================== xe_mocs (2 subtests) ===================
[22:37:14] ================ xe_live_mocs_kernel_kunit ================
[22:37:14] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[22:37:14] ================ xe_live_mocs_reset_kunit =================
[22:37:14] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[22:37:14] ==================== [SKIPPED] xe_mocs =====================
[22:37:14] ================= xe_migrate (2 subtests) ==================
[22:37:14] ================= xe_migrate_sanity_kunit =================
[22:37:14] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[22:37:14] ================== xe_validate_ccs_kunit ==================
[22:37:14] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[22:37:14] =================== [SKIPPED] xe_migrate ===================
[22:37:14] ================== xe_dma_buf (1 subtest) ==================
[22:37:14] ==================== xe_dma_buf_kunit =====================
[22:37:14] ================ [SKIPPED] xe_dma_buf_kunit ================
[22:37:14] =================== [SKIPPED] xe_dma_buf ===================
[22:37:14] ================= xe_bo_shrink (1 subtest) =================
[22:37:14] =================== xe_bo_shrink_kunit ====================
[22:37:14] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[22:37:14] ================== [SKIPPED] xe_bo_shrink ==================
[22:37:14] ==================== xe_bo (2 subtests) ====================
[22:37:14] ================== xe_ccs_migrate_kunit ===================
[22:37:14] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[22:37:14] ==================== xe_bo_evict_kunit ====================
[22:37:14] =============== [SKIPPED] xe_bo_evict_kunit ================
[22:37:14] ===================== [SKIPPED] xe_bo ======================
[22:37:14] ==================== args (13 subtests) ====================
[22:37:14] [PASSED] count_args_test
[22:37:14] [PASSED] call_args_example
[22:37:14] [PASSED] call_args_test
[22:37:14] [PASSED] drop_first_arg_example
[22:37:14] [PASSED] drop_first_arg_test
[22:37:14] [PASSED] first_arg_example
[22:37:14] [PASSED] first_arg_test
[22:37:14] [PASSED] last_arg_example
[22:37:14] [PASSED] last_arg_test
[22:37:14] [PASSED] pick_arg_example
[22:37:14] [PASSED] if_args_example
[22:37:14] [PASSED] if_args_test
[22:37:14] [PASSED] sep_comma_example
[22:37:14] ====================== [PASSED] args =======================
[22:37:14] =================== xe_pci (3 subtests) ====================
[22:37:14] ==================== check_graphics_ip ====================
[22:37:14] [PASSED] 12.00 Xe_LP
[22:37:14] [PASSED] 12.10 Xe_LP+
[22:37:14] [PASSED] 12.55 Xe_HPG
[22:37:14] [PASSED] 12.60 Xe_HPC
[22:37:14] [PASSED] 12.70 Xe_LPG
[22:37:14] [PASSED] 12.71 Xe_LPG
[22:37:14] [PASSED] 12.74 Xe_LPG+
[22:37:14] [PASSED] 20.01 Xe2_HPG
[22:37:14] [PASSED] 20.02 Xe2_HPG
[22:37:14] [PASSED] 20.04 Xe2_LPG
[22:37:14] [PASSED] 30.00 Xe3_LPG
[22:37:14] [PASSED] 30.01 Xe3_LPG
[22:37:14] [PASSED] 30.03 Xe3_LPG
[22:37:14] [PASSED] 30.04 Xe3_LPG
[22:37:14] [PASSED] 30.05 Xe3_LPG
[22:37:14] [PASSED] 35.11 Xe3p_XPC
[22:37:14] ================ [PASSED] check_graphics_ip ================
[22:37:14] ===================== check_media_ip ======================
[22:37:14] [PASSED] 12.00 Xe_M
[22:37:14] [PASSED] 12.55 Xe_HPM
[22:37:14] [PASSED] 13.00 Xe_LPM+
[22:37:14] [PASSED] 13.01 Xe2_HPM
[22:37:14] [PASSED] 20.00 Xe2_LPM
[22:37:14] [PASSED] 30.00 Xe3_LPM
[22:37:14] [PASSED] 30.02 Xe3_LPM
[22:37:14] [PASSED] 35.00 Xe3p_LPM
[22:37:14] [PASSED] 35.03 Xe3p_HPM
[22:37:14] ================= [PASSED] check_media_ip ==================
[22:37:14] =================== check_platform_desc ===================
[22:37:14] [PASSED] 0x9A60 (TIGERLAKE)
[22:37:14] [PASSED] 0x9A68 (TIGERLAKE)
[22:37:14] [PASSED] 0x9A70 (TIGERLAKE)
[22:37:14] [PASSED] 0x9A40 (TIGERLAKE)
[22:37:14] [PASSED] 0x9A49 (TIGERLAKE)
[22:37:14] [PASSED] 0x9A59 (TIGERLAKE)
[22:37:14] [PASSED] 0x9A78 (TIGERLAKE)
[22:37:14] [PASSED] 0x9AC0 (TIGERLAKE)
[22:37:14] [PASSED] 0x9AC9 (TIGERLAKE)
[22:37:14] [PASSED] 0x9AD9 (TIGERLAKE)
[22:37:14] [PASSED] 0x9AF8 (TIGERLAKE)
[22:37:14] [PASSED] 0x4C80 (ROCKETLAKE)
[22:37:14] [PASSED] 0x4C8A (ROCKETLAKE)
[22:37:14] [PASSED] 0x4C8B (ROCKETLAKE)
[22:37:14] [PASSED] 0x4C8C (ROCKETLAKE)
[22:37:14] [PASSED] 0x4C90 (ROCKETLAKE)
[22:37:14] [PASSED] 0x4C9A (ROCKETLAKE)
[22:37:14] [PASSED] 0x4680 (ALDERLAKE_S)
[22:37:14] [PASSED] 0x4682 (ALDERLAKE_S)
[22:37:14] [PASSED] 0x4688 (ALDERLAKE_S)
[22:37:14] [PASSED] 0x468A (ALDERLAKE_S)
[22:37:14] [PASSED] 0x468B (ALDERLAKE_S)
[22:37:14] [PASSED] 0x4690 (ALDERLAKE_S)
[22:37:14] [PASSED] 0x4692 (ALDERLAKE_S)
[22:37:14] [PASSED] 0x4693 (ALDERLAKE_S)
[22:37:14] [PASSED] 0x46A0 (ALDERLAKE_P)
[22:37:14] [PASSED] 0x46A1 (ALDERLAKE_P)
[22:37:14] [PASSED] 0x46A2 (ALDERLAKE_P)
[22:37:14] [PASSED] 0x46A3 (ALDERLAKE_P)
[22:37:14] [PASSED] 0x46A6 (ALDERLAKE_P)
[22:37:14] [PASSED] 0x46A8 (ALDERLAKE_P)
[22:37:14] [PASSED] 0x46AA (ALDERLAKE_P)
[22:37:14] [PASSED] 0x462A (ALDERLAKE_P)
[22:37:14] [PASSED] 0x4626 (ALDERLAKE_P)
[22:37:14] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[22:37:14] [PASSED] 0x46B0 (ALDERLAKE_P)
[22:37:14] [PASSED] 0x46B1 (ALDERLAKE_P)
[22:37:14] [PASSED] 0x46B2 (ALDERLAKE_P)
[22:37:14] [PASSED] 0x46B3 (ALDERLAKE_P)
[22:37:14] [PASSED] 0x46C0 (ALDERLAKE_P)
[22:37:14] [PASSED] 0x46C1 (ALDERLAKE_P)
[22:37:14] [PASSED] 0x46C2 (ALDERLAKE_P)
[22:37:14] [PASSED] 0x46C3 (ALDERLAKE_P)
[22:37:14] [PASSED] 0x46D0 (ALDERLAKE_N)
[22:37:14] [PASSED] 0x46D1 (ALDERLAKE_N)
[22:37:14] [PASSED] 0x46D2 (ALDERLAKE_N)
[22:37:14] [PASSED] 0x46D3 (ALDERLAKE_N)
[22:37:14] [PASSED] 0x46D4 (ALDERLAKE_N)
[22:37:14] [PASSED] 0xA721 (ALDERLAKE_P)
[22:37:14] [PASSED] 0xA7A1 (ALDERLAKE_P)
[22:37:14] [PASSED] 0xA7A9 (ALDERLAKE_P)
[22:37:14] [PASSED] 0xA7AC (ALDERLAKE_P)
[22:37:14] [PASSED] 0xA7AD (ALDERLAKE_P)
[22:37:14] [PASSED] 0xA720 (ALDERLAKE_P)
[22:37:14] [PASSED] 0xA7A0 (ALDERLAKE_P)
[22:37:14] [PASSED] 0xA7A8 (ALDERLAKE_P)
[22:37:14] [PASSED] 0xA7AA (ALDERLAKE_P)
[22:37:14] [PASSED] 0xA7AB (ALDERLAKE_P)
[22:37:14] [PASSED] 0xA780 (ALDERLAKE_S)
[22:37:14] [PASSED] 0xA781 (ALDERLAKE_S)
[22:37:14] [PASSED] 0xA782 (ALDERLAKE_S)
[22:37:14] [PASSED] 0xA783 (ALDERLAKE_S)
[22:37:14] [PASSED] 0xA788 (ALDERLAKE_S)
[22:37:14] [PASSED] 0xA789 (ALDERLAKE_S)
[22:37:14] [PASSED] 0xA78A (ALDERLAKE_S)
[22:37:14] [PASSED] 0xA78B (ALDERLAKE_S)
[22:37:14] [PASSED] 0x4905 (DG1)
[22:37:14] [PASSED] 0x4906 (DG1)
[22:37:14] [PASSED] 0x4907 (DG1)
[22:37:14] [PASSED] 0x4908 (DG1)
[22:37:14] [PASSED] 0x4909 (DG1)
[22:37:14] [PASSED] 0x56C0 (DG2)
[22:37:14] [PASSED] 0x56C2 (DG2)
[22:37:14] [PASSED] 0x56C1 (DG2)
[22:37:14] [PASSED] 0x7D51 (METEORLAKE)
[22:37:14] [PASSED] 0x7DD1 (METEORLAKE)
[22:37:14] [PASSED] 0x7D41 (METEORLAKE)
[22:37:14] [PASSED] 0x7D67 (METEORLAKE)
[22:37:14] [PASSED] 0xB640 (METEORLAKE)
[22:37:14] [PASSED] 0x56A0 (DG2)
[22:37:14] [PASSED] 0x56A1 (DG2)
[22:37:14] [PASSED] 0x56A2 (DG2)
[22:37:14] [PASSED] 0x56BE (DG2)
[22:37:14] [PASSED] 0x56BF (DG2)
[22:37:14] [PASSED] 0x5690 (DG2)
[22:37:14] [PASSED] 0x5691 (DG2)
[22:37:14] [PASSED] 0x5692 (DG2)
[22:37:14] [PASSED] 0x56A5 (DG2)
[22:37:14] [PASSED] 0x56A6 (DG2)
[22:37:14] [PASSED] 0x56B0 (DG2)
[22:37:14] [PASSED] 0x56B1 (DG2)
[22:37:14] [PASSED] 0x56BA (DG2)
[22:37:14] [PASSED] 0x56BB (DG2)
[22:37:14] [PASSED] 0x56BC (DG2)
[22:37:14] [PASSED] 0x56BD (DG2)
[22:37:14] [PASSED] 0x5693 (DG2)
[22:37:14] [PASSED] 0x5694 (DG2)
[22:37:14] [PASSED] 0x5695 (DG2)
[22:37:14] [PASSED] 0x56A3 (DG2)
[22:37:14] [PASSED] 0x56A4 (DG2)
[22:37:14] [PASSED] 0x56B2 (DG2)
[22:37:14] [PASSED] 0x56B3 (DG2)
[22:37:14] [PASSED] 0x5696 (DG2)
[22:37:14] [PASSED] 0x5697 (DG2)
[22:37:14] [PASSED] 0xB69 (PVC)
[22:37:14] [PASSED] 0xB6E (PVC)
[22:37:14] [PASSED] 0xBD4 (PVC)
[22:37:14] [PASSED] 0xBD5 (PVC)
[22:37:14] [PASSED] 0xBD6 (PVC)
[22:37:14] [PASSED] 0xBD7 (PVC)
[22:37:14] [PASSED] 0xBD8 (PVC)
[22:37:14] [PASSED] 0xBD9 (PVC)
[22:37:14] [PASSED] 0xBDA (PVC)
[22:37:14] [PASSED] 0xBDB (PVC)
[22:37:14] [PASSED] 0xBE0 (PVC)
[22:37:14] [PASSED] 0xBE1 (PVC)
[22:37:14] [PASSED] 0xBE5 (PVC)
[22:37:14] [PASSED] 0x7D40 (METEORLAKE)
[22:37:14] [PASSED] 0x7D45 (METEORLAKE)
[22:37:14] [PASSED] 0x7D55 (METEORLAKE)
[22:37:14] [PASSED] 0x7D60 (METEORLAKE)
[22:37:14] [PASSED] 0x7DD5 (METEORLAKE)
[22:37:14] [PASSED] 0x6420 (LUNARLAKE)
[22:37:14] [PASSED] 0x64A0 (LUNARLAKE)
[22:37:14] [PASSED] 0x64B0 (LUNARLAKE)
[22:37:14] [PASSED] 0xE202 (BATTLEMAGE)
[22:37:14] [PASSED] 0xE209 (BATTLEMAGE)
[22:37:14] [PASSED] 0xE20B (BATTLEMAGE)
[22:37:14] [PASSED] 0xE20C (BATTLEMAGE)
[22:37:14] [PASSED] 0xE20D (BATTLEMAGE)
[22:37:14] [PASSED] 0xE210 (BATTLEMAGE)
[22:37:14] [PASSED] 0xE211 (BATTLEMAGE)
[22:37:14] [PASSED] 0xE212 (BATTLEMAGE)
[22:37:14] [PASSED] 0xE216 (BATTLEMAGE)
[22:37:14] [PASSED] 0xE220 (BATTLEMAGE)
[22:37:14] [PASSED] 0xE221 (BATTLEMAGE)
[22:37:14] [PASSED] 0xE222 (BATTLEMAGE)
[22:37:14] [PASSED] 0xE223 (BATTLEMAGE)
[22:37:14] [PASSED] 0xB080 (PANTHERLAKE)
[22:37:14] [PASSED] 0xB081 (PANTHERLAKE)
[22:37:14] [PASSED] 0xB082 (PANTHERLAKE)
[22:37:14] [PASSED] 0xB083 (PANTHERLAKE)
[22:37:14] [PASSED] 0xB084 (PANTHERLAKE)
[22:37:14] [PASSED] 0xB085 (PANTHERLAKE)
[22:37:14] [PASSED] 0xB086 (PANTHERLAKE)
[22:37:14] [PASSED] 0xB087 (PANTHERLAKE)
[22:37:14] [PASSED] 0xB08F (PANTHERLAKE)
[22:37:14] [PASSED] 0xB090 (PANTHERLAKE)
[22:37:14] [PASSED] 0xB0A0 (PANTHERLAKE)
[22:37:14] [PASSED] 0xB0B0 (PANTHERLAKE)
[22:37:14] [PASSED] 0xFD80 (PANTHERLAKE)
[22:37:14] [PASSED] 0xFD81 (PANTHERLAKE)
[22:37:14] [PASSED] 0xD740 (NOVALAKE_S)
[22:37:14] [PASSED] 0xD741 (NOVALAKE_S)
[22:37:14] [PASSED] 0xD742 (NOVALAKE_S)
[22:37:14] [PASSED] 0xD743 (NOVALAKE_S)
[22:37:14] [PASSED] 0xD744 (NOVALAKE_S)
[22:37:14] [PASSED] 0xD745 (NOVALAKE_S)
[22:37:14] [PASSED] 0x674C (CRESCENTISLAND)
[22:37:14] =============== [PASSED] check_platform_desc ===============
[22:37:14] ===================== [PASSED] xe_pci ======================
[22:37:14] =================== xe_rtp (2 subtests) ====================
[22:37:14] =============== xe_rtp_process_to_sr_tests ================
[22:37:14] [PASSED] coalesce-same-reg
[22:37:14] [PASSED] no-match-no-add
[22:37:14] [PASSED] match-or
[22:37:14] [PASSED] match-or-xfail
[22:37:14] [PASSED] no-match-no-add-multiple-rules
[22:37:14] [PASSED] two-regs-two-entries
[22:37:14] [PASSED] clr-one-set-other
[22:37:14] [PASSED] set-field
[22:37:14] [PASSED] conflict-duplicate
[22:37:14] [PASSED] conflict-not-disjoint
[22:37:14] [PASSED] conflict-reg-type
[22:37:14] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[22:37:14] ================== xe_rtp_process_tests ===================
[22:37:14] [PASSED] active1
[22:37:14] [PASSED] active2
[22:37:14] [PASSED] active-inactive
[22:37:14] [PASSED] inactive-active
[22:37:14] [PASSED] inactive-1st_or_active-inactive
[22:37:14] [PASSED] inactive-2nd_or_active-inactive
[22:37:14] [PASSED] inactive-last_or_active-inactive
[22:37:14] [PASSED] inactive-no_or_active-inactive
[22:37:14] ============== [PASSED] xe_rtp_process_tests ===============
[22:37:14] ===================== [PASSED] xe_rtp ======================
[22:37:14] ==================== xe_wa (1 subtest) =====================
[22:37:14] ======================== xe_wa_gt =========================
[22:37:14] [PASSED] TIGERLAKE B0
[22:37:14] [PASSED] DG1 A0
[22:37:14] [PASSED] DG1 B0
[22:37:14] [PASSED] ALDERLAKE_S A0
[22:37:14] [PASSED] ALDERLAKE_S B0
[22:37:14] [PASSED] ALDERLAKE_S C0
[22:37:14] [PASSED] ALDERLAKE_S D0
[22:37:14] [PASSED] ALDERLAKE_P A0
[22:37:14] [PASSED] ALDERLAKE_P B0
[22:37:14] [PASSED] ALDERLAKE_P C0
[22:37:14] [PASSED] ALDERLAKE_S RPLS D0
[22:37:14] [PASSED] ALDERLAKE_P RPLU E0
[22:37:14] [PASSED] DG2 G10 C0
[22:37:14] [PASSED] DG2 G11 B1
[22:37:14] [PASSED] DG2 G12 A1
[22:37:14] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[22:37:14] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[22:37:14] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[22:37:14] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[22:37:14] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[22:37:14] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[22:37:14] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[22:37:14] ==================== [PASSED] xe_wa_gt =====================
[22:37:14] ====================== [PASSED] xe_wa ======================
[22:37:14] ============================================================
[22:37:14] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[22:37:14] Elapsed time: 36.449s total, 4.222s configuring, 31.710s building, 0.476s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[22:37:14] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:37: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
[22:37:41] Starting KUnit Kernel (1/1)...
[22:37:41] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:37:41] ============ drm_test_pick_cmdline (2 subtests) ============
[22:37:41] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[22:37:41] =============== drm_test_pick_cmdline_named ===============
[22:37:41] [PASSED] NTSC
[22:37:41] [PASSED] NTSC-J
[22:37:41] [PASSED] PAL
[22:37:41] [PASSED] PAL-M
[22:37:41] =========== [PASSED] drm_test_pick_cmdline_named ===========
[22:37:41] ============== [PASSED] drm_test_pick_cmdline ==============
[22:37:41] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[22:37:41] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[22:37:41] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[22:37:41] =========== drm_validate_clone_mode (2 subtests) ===========
[22:37:41] ============== drm_test_check_in_clone_mode ===============
[22:37:41] [PASSED] in_clone_mode
[22:37:41] [PASSED] not_in_clone_mode
[22:37:41] ========== [PASSED] drm_test_check_in_clone_mode ===========
[22:37:41] =============== drm_test_check_valid_clones ===============
[22:37:41] [PASSED] not_in_clone_mode
[22:37:41] [PASSED] valid_clone
[22:37:41] [PASSED] invalid_clone
[22:37:41] =========== [PASSED] drm_test_check_valid_clones ===========
[22:37:41] ============= [PASSED] drm_validate_clone_mode =============
[22:37:41] ============= drm_validate_modeset (1 subtest) =============
[22:37:41] [PASSED] drm_test_check_connector_changed_modeset
[22:37:41] ============== [PASSED] drm_validate_modeset ===============
[22:37:41] ====== drm_test_bridge_get_current_state (2 subtests) ======
[22:37:41] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[22:37:41] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[22:37:41] ======== [PASSED] drm_test_bridge_get_current_state ========
[22:37:41] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[22:37:41] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[22:37:41] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[22:37:41] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[22:37:41] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[22:37:41] ============== drm_bridge_alloc (2 subtests) ===============
[22:37:41] [PASSED] drm_test_drm_bridge_alloc_basic
[22:37:41] [PASSED] drm_test_drm_bridge_alloc_get_put
[22:37:41] ================ [PASSED] drm_bridge_alloc =================
[22:37:41] ============= drm_cmdline_parser (40 subtests) =============
[22:37:41] [PASSED] drm_test_cmdline_force_d_only
[22:37:41] [PASSED] drm_test_cmdline_force_D_only_dvi
[22:37:41] [PASSED] drm_test_cmdline_force_D_only_hdmi
[22:37:41] [PASSED] drm_test_cmdline_force_D_only_not_digital
[22:37:41] [PASSED] drm_test_cmdline_force_e_only
[22:37:41] [PASSED] drm_test_cmdline_res
[22:37:41] [PASSED] drm_test_cmdline_res_vesa
[22:37:41] [PASSED] drm_test_cmdline_res_vesa_rblank
[22:37:41] [PASSED] drm_test_cmdline_res_rblank
[22:37:41] [PASSED] drm_test_cmdline_res_bpp
[22:37:41] [PASSED] drm_test_cmdline_res_refresh
[22:37:41] [PASSED] drm_test_cmdline_res_bpp_refresh
[22:37:41] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[22:37:41] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[22:37:41] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[22:37:41] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[22:37:41] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[22:37:41] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[22:37:41] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[22:37:41] [PASSED] drm_test_cmdline_res_margins_force_on
[22:37:41] [PASSED] drm_test_cmdline_res_vesa_margins
[22:37:41] [PASSED] drm_test_cmdline_name
[22:37:41] [PASSED] drm_test_cmdline_name_bpp
[22:37:41] [PASSED] drm_test_cmdline_name_option
[22:37:41] [PASSED] drm_test_cmdline_name_bpp_option
[22:37:41] [PASSED] drm_test_cmdline_rotate_0
[22:37:41] [PASSED] drm_test_cmdline_rotate_90
[22:37:41] [PASSED] drm_test_cmdline_rotate_180
[22:37:41] [PASSED] drm_test_cmdline_rotate_270
[22:37:41] [PASSED] drm_test_cmdline_hmirror
[22:37:41] [PASSED] drm_test_cmdline_vmirror
[22:37:41] [PASSED] drm_test_cmdline_margin_options
[22:37:41] [PASSED] drm_test_cmdline_multiple_options
[22:37:41] [PASSED] drm_test_cmdline_bpp_extra_and_option
[22:37:41] [PASSED] drm_test_cmdline_extra_and_option
[22:37:41] [PASSED] drm_test_cmdline_freestanding_options
[22:37:41] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[22:37:41] [PASSED] drm_test_cmdline_panel_orientation
[22:37:41] ================ drm_test_cmdline_invalid =================
[22:37:41] [PASSED] margin_only
[22:37:41] [PASSED] interlace_only
[22:37:41] [PASSED] res_missing_x
[22:37:41] [PASSED] res_missing_y
[22:37:41] [PASSED] res_bad_y
[22:37:41] [PASSED] res_missing_y_bpp
[22:37:41] [PASSED] res_bad_bpp
[22:37:41] [PASSED] res_bad_refresh
[22:37:41] [PASSED] res_bpp_refresh_force_on_off
[22:37:41] [PASSED] res_invalid_mode
[22:37:41] [PASSED] res_bpp_wrong_place_mode
[22:37:41] [PASSED] name_bpp_refresh
[22:37:41] [PASSED] name_refresh
[22:37:41] [PASSED] name_refresh_wrong_mode
[22:37:41] [PASSED] name_refresh_invalid_mode
[22:37:41] [PASSED] rotate_multiple
[22:37:41] [PASSED] rotate_invalid_val
[22:37:41] [PASSED] rotate_truncated
[22:37:41] [PASSED] invalid_option
[22:37:41] [PASSED] invalid_tv_option
[22:37:41] [PASSED] truncated_tv_option
[22:37:41] ============ [PASSED] drm_test_cmdline_invalid =============
[22:37:41] =============== drm_test_cmdline_tv_options ===============
[22:37:41] [PASSED] NTSC
[22:37:41] [PASSED] NTSC_443
[22:37:41] [PASSED] NTSC_J
[22:37:41] [PASSED] PAL
[22:37:41] [PASSED] PAL_M
[22:37:41] [PASSED] PAL_N
[22:37:41] [PASSED] SECAM
[22:37:41] [PASSED] MONO_525
[22:37:41] [PASSED] MONO_625
[22:37:41] =========== [PASSED] drm_test_cmdline_tv_options ===========
[22:37:41] =============== [PASSED] drm_cmdline_parser ================
[22:37:41] ========== drmm_connector_hdmi_init (20 subtests) ==========
[22:37:41] [PASSED] drm_test_connector_hdmi_init_valid
[22:37:41] [PASSED] drm_test_connector_hdmi_init_bpc_8
[22:37:41] [PASSED] drm_test_connector_hdmi_init_bpc_10
[22:37:41] [PASSED] drm_test_connector_hdmi_init_bpc_12
[22:37:41] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[22:37:41] [PASSED] drm_test_connector_hdmi_init_bpc_null
[22:37:41] [PASSED] drm_test_connector_hdmi_init_formats_empty
[22:37:41] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[22:37:41] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[22:37:41] [PASSED] supported_formats=0x9 yuv420_allowed=1
[22:37:41] [PASSED] supported_formats=0x9 yuv420_allowed=0
[22:37:41] [PASSED] supported_formats=0x3 yuv420_allowed=1
[22:37:41] [PASSED] supported_formats=0x3 yuv420_allowed=0
[22:37:41] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[22:37:41] [PASSED] drm_test_connector_hdmi_init_null_ddc
[22:37:41] [PASSED] drm_test_connector_hdmi_init_null_product
[22:37:41] [PASSED] drm_test_connector_hdmi_init_null_vendor
[22:37:41] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[22:37:41] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[22:37:41] [PASSED] drm_test_connector_hdmi_init_product_valid
[22:37:41] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[22:37:41] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[22:37:41] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[22:37:41] ========= drm_test_connector_hdmi_init_type_valid =========
[22:37:41] [PASSED] HDMI-A
[22:37:41] [PASSED] HDMI-B
[22:37:41] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[22:37:41] ======== drm_test_connector_hdmi_init_type_invalid ========
[22:37:41] [PASSED] Unknown
[22:37:41] [PASSED] VGA
[22:37:41] [PASSED] DVI-I
[22:37:41] [PASSED] DVI-D
[22:37:41] [PASSED] DVI-A
[22:37:41] [PASSED] Composite
[22:37:41] [PASSED] SVIDEO
[22:37:41] [PASSED] LVDS
[22:37:41] [PASSED] Component
[22:37:41] [PASSED] DIN
[22:37:41] [PASSED] DP
[22:37:41] [PASSED] TV
[22:37:41] [PASSED] eDP
[22:37:41] [PASSED] Virtual
[22:37:41] [PASSED] DSI
[22:37:41] [PASSED] DPI
[22:37:41] [PASSED] Writeback
[22:37:41] [PASSED] SPI
[22:37:41] [PASSED] USB
[22:37:41] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[22:37:41] ============ [PASSED] drmm_connector_hdmi_init =============
[22:37:41] ============= drmm_connector_init (3 subtests) =============
[22:37:41] [PASSED] drm_test_drmm_connector_init
[22:37:41] [PASSED] drm_test_drmm_connector_init_null_ddc
[22:37:41] ========= drm_test_drmm_connector_init_type_valid =========
[22:37:41] [PASSED] Unknown
[22:37:41] [PASSED] VGA
[22:37:41] [PASSED] DVI-I
[22:37:41] [PASSED] DVI-D
[22:37:41] [PASSED] DVI-A
[22:37:41] [PASSED] Composite
[22:37:41] [PASSED] SVIDEO
[22:37:41] [PASSED] LVDS
[22:37:41] [PASSED] Component
[22:37:41] [PASSED] DIN
[22:37:41] [PASSED] DP
[22:37:41] [PASSED] HDMI-A
[22:37:41] [PASSED] HDMI-B
[22:37:41] [PASSED] TV
[22:37:41] [PASSED] eDP
[22:37:41] [PASSED] Virtual
[22:37:41] [PASSED] DSI
[22:37:41] [PASSED] DPI
[22:37:41] [PASSED] Writeback
[22:37:41] [PASSED] SPI
[22:37:41] [PASSED] USB
[22:37:41] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[22:37:41] =============== [PASSED] drmm_connector_init ===============
[22:37:41] ========= drm_connector_dynamic_init (6 subtests) ==========
[22:37:41] [PASSED] drm_test_drm_connector_dynamic_init
[22:37:41] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[22:37:41] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[22:37:41] [PASSED] drm_test_drm_connector_dynamic_init_properties
[22:37:41] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[22:37:41] [PASSED] Unknown
[22:37:41] [PASSED] VGA
[22:37:41] [PASSED] DVI-I
[22:37:41] [PASSED] DVI-D
[22:37:41] [PASSED] DVI-A
[22:37:41] [PASSED] Composite
[22:37:41] [PASSED] SVIDEO
[22:37:41] [PASSED] LVDS
[22:37:41] [PASSED] Component
[22:37:41] [PASSED] DIN
[22:37:41] [PASSED] DP
[22:37:41] [PASSED] HDMI-A
[22:37:41] [PASSED] HDMI-B
[22:37:41] [PASSED] TV
[22:37:41] [PASSED] eDP
[22:37:41] [PASSED] Virtual
[22:37:41] [PASSED] DSI
[22:37:41] [PASSED] DPI
[22:37:41] [PASSED] Writeback
[22:37:41] [PASSED] SPI
[22:37:41] [PASSED] USB
[22:37:41] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[22:37:41] ======== drm_test_drm_connector_dynamic_init_name =========
[22:37:41] [PASSED] Unknown
[22:37:41] [PASSED] VGA
[22:37:41] [PASSED] DVI-I
[22:37:41] [PASSED] DVI-D
[22:37:41] [PASSED] DVI-A
[22:37:41] [PASSED] Composite
[22:37:41] [PASSED] SVIDEO
[22:37:41] [PASSED] LVDS
[22:37:41] [PASSED] Component
[22:37:41] [PASSED] DIN
[22:37:41] [PASSED] DP
[22:37:41] [PASSED] HDMI-A
[22:37:41] [PASSED] HDMI-B
[22:37:41] [PASSED] TV
[22:37:41] [PASSED] eDP
[22:37:41] [PASSED] Virtual
[22:37:41] [PASSED] DSI
[22:37:41] [PASSED] DPI
[22:37:41] [PASSED] Writeback
[22:37:41] [PASSED] SPI
[22:37:41] [PASSED] USB
[22:37:41] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[22:37:41] =========== [PASSED] drm_connector_dynamic_init ============
[22:37:41] ==== drm_connector_dynamic_register_early (4 subtests) =====
[22:37:41] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[22:37:41] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[22:37:41] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[22:37:41] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[22:37:41] ====== [PASSED] drm_connector_dynamic_register_early =======
[22:37:41] ======= drm_connector_dynamic_register (7 subtests) ========
[22:37:41] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[22:37:41] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[22:37:41] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[22:37:41] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[22:37:41] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[22:37:41] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[22:37:41] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[22:37:41] ========= [PASSED] drm_connector_dynamic_register ==========
[22:37:41] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[22:37:41] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[22:37:41] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[22:37:41] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[22:37:41] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[22:37:41] ========== drm_test_get_tv_mode_from_name_valid ===========
[22:37:41] [PASSED] NTSC
[22:37:41] [PASSED] NTSC-443
[22:37:41] [PASSED] NTSC-J
[22:37:41] [PASSED] PAL
[22:37:41] [PASSED] PAL-M
[22:37:41] [PASSED] PAL-N
[22:37:41] [PASSED] SECAM
[22:37:41] [PASSED] Mono
[22:37:41] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[22:37:41] [PASSED] drm_test_get_tv_mode_from_name_truncated
[22:37:41] ============ [PASSED] drm_get_tv_mode_from_name ============
[22:37:41] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[22:37:41] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[22:37:41] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[22:37:41] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[22:37:41] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[22:37:41] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[22:37:41] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[22:37:41] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[22:37:41] [PASSED] VIC 96
[22:37:41] [PASSED] VIC 97
[22:37:41] [PASSED] VIC 101
[22:37:41] [PASSED] VIC 102
[22:37:41] [PASSED] VIC 106
[22:37:41] [PASSED] VIC 107
[22:37:41] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[22:37:41] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[22:37:41] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[22:37:41] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[22:37:41] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[22:37:41] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[22:37:41] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[22:37:41] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[22:37:41] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[22:37:41] [PASSED] Automatic
[22:37:41] [PASSED] Full
[22:37:41] [PASSED] Limited 16:235
[22:37:41] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[22:37:41] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[22:37:41] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[22:37:41] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[22:37:41] === drm_test_drm_hdmi_connector_get_output_format_name ====
[22:37:41] [PASSED] RGB
[22:37:41] [PASSED] YUV 4:2:0
[22:37:41] [PASSED] YUV 4:2:2
[22:37:41] [PASSED] YUV 4:4:4
[22:37:41] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[22:37:41] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[22:37:41] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[22:37:41] ============= drm_damage_helper (21 subtests) ==============
[22:37:41] [PASSED] drm_test_damage_iter_no_damage
[22:37:41] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[22:37:41] [PASSED] drm_test_damage_iter_no_damage_src_moved
[22:37:41] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[22:37:41] [PASSED] drm_test_damage_iter_no_damage_not_visible
[22:37:41] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[22:37:41] [PASSED] drm_test_damage_iter_no_damage_no_fb
[22:37:41] [PASSED] drm_test_damage_iter_simple_damage
[22:37:41] [PASSED] drm_test_damage_iter_single_damage
[22:37:41] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[22:37:41] [PASSED] drm_test_damage_iter_single_damage_outside_src
[22:37:41] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[22:37:41] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[22:37:41] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[22:37:41] [PASSED] drm_test_damage_iter_single_damage_src_moved
[22:37:41] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[22:37:41] [PASSED] drm_test_damage_iter_damage
[22:37:41] [PASSED] drm_test_damage_iter_damage_one_intersect
[22:37:41] [PASSED] drm_test_damage_iter_damage_one_outside
[22:37:41] [PASSED] drm_test_damage_iter_damage_src_moved
[22:37:41] [PASSED] drm_test_damage_iter_damage_not_visible
[22:37:41] ================ [PASSED] drm_damage_helper ================
[22:37:41] ============== drm_dp_mst_helper (3 subtests) ==============
[22:37:41] ============== drm_test_dp_mst_calc_pbn_mode ==============
[22:37:41] [PASSED] Clock 154000 BPP 30 DSC disabled
[22:37:41] [PASSED] Clock 234000 BPP 30 DSC disabled
[22:37:41] [PASSED] Clock 297000 BPP 24 DSC disabled
[22:37:41] [PASSED] Clock 332880 BPP 24 DSC enabled
[22:37:41] [PASSED] Clock 324540 BPP 24 DSC enabled
[22:37:41] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[22:37:41] ============== drm_test_dp_mst_calc_pbn_div ===============
[22:37:41] [PASSED] Link rate 2000000 lane count 4
[22:37:41] [PASSED] Link rate 2000000 lane count 2
[22:37:41] [PASSED] Link rate 2000000 lane count 1
[22:37:41] [PASSED] Link rate 1350000 lane count 4
[22:37:41] [PASSED] Link rate 1350000 lane count 2
[22:37:41] [PASSED] Link rate 1350000 lane count 1
[22:37:41] [PASSED] Link rate 1000000 lane count 4
[22:37:41] [PASSED] Link rate 1000000 lane count 2
[22:37:41] [PASSED] Link rate 1000000 lane count 1
[22:37:41] [PASSED] Link rate 810000 lane count 4
[22:37:41] [PASSED] Link rate 810000 lane count 2
[22:37:41] [PASSED] Link rate 810000 lane count 1
[22:37:41] [PASSED] Link rate 540000 lane count 4
[22:37:41] [PASSED] Link rate 540000 lane count 2
[22:37:41] [PASSED] Link rate 540000 lane count 1
[22:37:41] [PASSED] Link rate 270000 lane count 4
[22:37:41] [PASSED] Link rate 270000 lane count 2
[22:37:41] [PASSED] Link rate 270000 lane count 1
[22:37:41] [PASSED] Link rate 162000 lane count 4
[22:37:41] [PASSED] Link rate 162000 lane count 2
[22:37:41] [PASSED] Link rate 162000 lane count 1
[22:37:41] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[22:37:41] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[22:37:41] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[22:37:41] [PASSED] DP_POWER_UP_PHY with port number
[22:37:41] [PASSED] DP_POWER_DOWN_PHY with port number
[22:37:41] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[22:37:41] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[22:37:41] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[22:37:41] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[22:37:41] [PASSED] DP_QUERY_PAYLOAD with port number
[22:37:41] [PASSED] DP_QUERY_PAYLOAD with VCPI
[22:37:41] [PASSED] DP_REMOTE_DPCD_READ with port number
[22:37:41] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[22:37:41] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[22:37:41] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[22:37:41] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[22:37:41] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[22:37:41] [PASSED] DP_REMOTE_I2C_READ with port number
[22:37:41] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[22:37:41] [PASSED] DP_REMOTE_I2C_READ with transactions array
[22:37:41] [PASSED] DP_REMOTE_I2C_WRITE with port number
[22:37:41] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[22:37:41] [PASSED] DP_REMOTE_I2C_WRITE with data array
[22:37:41] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[22:37:41] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[22:37:41] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[22:37:41] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[22:37:41] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[22:37:41] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[22:37:41] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[22:37:41] ================ [PASSED] drm_dp_mst_helper ================
[22:37:41] ================== drm_exec (7 subtests) ===================
[22:37:41] [PASSED] sanitycheck
[22:37:41] [PASSED] test_lock
[22:37:41] [PASSED] test_lock_unlock
[22:37:41] [PASSED] test_duplicates
[22:37:41] [PASSED] test_prepare
[22:37:41] [PASSED] test_prepare_array
[22:37:41] [PASSED] test_multiple_loops
[22:37:41] ==================== [PASSED] drm_exec =====================
[22:37:41] =========== drm_format_helper_test (17 subtests) ===========
[22:37:41] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[22:37:41] [PASSED] single_pixel_source_buffer
[22:37:41] [PASSED] single_pixel_clip_rectangle
[22:37:41] [PASSED] well_known_colors
[22:37:41] [PASSED] destination_pitch
[22:37:41] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[22:37:41] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[22:37:41] [PASSED] single_pixel_source_buffer
[22:37:41] [PASSED] single_pixel_clip_rectangle
[22:37:41] [PASSED] well_known_colors
[22:37:41] [PASSED] destination_pitch
[22:37:41] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[22:37:41] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[22:37:41] [PASSED] single_pixel_source_buffer
[22:37:41] [PASSED] single_pixel_clip_rectangle
[22:37:41] [PASSED] well_known_colors
[22:37:41] [PASSED] destination_pitch
[22:37:41] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[22:37:41] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[22:37:41] [PASSED] single_pixel_source_buffer
[22:37:41] [PASSED] single_pixel_clip_rectangle
[22:37:41] [PASSED] well_known_colors
[22:37:41] [PASSED] destination_pitch
[22:37:41] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[22:37:41] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[22:37:41] [PASSED] single_pixel_source_buffer
[22:37:41] [PASSED] single_pixel_clip_rectangle
[22:37:41] [PASSED] well_known_colors
[22:37:41] [PASSED] destination_pitch
[22:37:41] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[22:37:41] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[22:37:41] [PASSED] single_pixel_source_buffer
[22:37:41] [PASSED] single_pixel_clip_rectangle
[22:37:41] [PASSED] well_known_colors
[22:37:41] [PASSED] destination_pitch
[22:37:41] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[22:37:41] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[22:37:41] [PASSED] single_pixel_source_buffer
[22:37:41] [PASSED] single_pixel_clip_rectangle
[22:37:41] [PASSED] well_known_colors
[22:37:41] [PASSED] destination_pitch
[22:37:41] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[22:37:41] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[22:37:41] [PASSED] single_pixel_source_buffer
[22:37:41] [PASSED] single_pixel_clip_rectangle
[22:37:41] [PASSED] well_known_colors
[22:37:41] [PASSED] destination_pitch
[22:37:41] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[22:37:41] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[22:37:41] [PASSED] single_pixel_source_buffer
[22:37:41] [PASSED] single_pixel_clip_rectangle
[22:37:41] [PASSED] well_known_colors
[22:37:41] [PASSED] destination_pitch
[22:37:41] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[22:37:41] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[22:37:41] [PASSED] single_pixel_source_buffer
[22:37:41] [PASSED] single_pixel_clip_rectangle
[22:37:41] [PASSED] well_known_colors
[22:37:41] [PASSED] destination_pitch
[22:37:41] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[22:37:41] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[22:37:41] [PASSED] single_pixel_source_buffer
[22:37:41] [PASSED] single_pixel_clip_rectangle
[22:37:41] [PASSED] well_known_colors
[22:37:41] [PASSED] destination_pitch
[22:37:41] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[22:37:41] ============== drm_test_fb_xrgb8888_to_mono ===============
[22:37:41] [PASSED] single_pixel_source_buffer
[22:37:41] [PASSED] single_pixel_clip_rectangle
[22:37:41] [PASSED] well_known_colors
[22:37:41] [PASSED] destination_pitch
[22:37:41] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[22:37:41] ==================== drm_test_fb_swab =====================
[22:37:41] [PASSED] single_pixel_source_buffer
[22:37:41] [PASSED] single_pixel_clip_rectangle
[22:37:41] [PASSED] well_known_colors
[22:37:41] [PASSED] destination_pitch
[22:37:41] ================ [PASSED] drm_test_fb_swab =================
[22:37:41] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[22:37:41] [PASSED] single_pixel_source_buffer
[22:37:41] [PASSED] single_pixel_clip_rectangle
[22:37:41] [PASSED] well_known_colors
[22:37:41] [PASSED] destination_pitch
[22:37:41] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[22:37:41] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[22:37:41] [PASSED] single_pixel_source_buffer
[22:37:41] [PASSED] single_pixel_clip_rectangle
[22:37:41] [PASSED] well_known_colors
[22:37:41] [PASSED] destination_pitch
[22:37:41] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[22:37:41] ================= drm_test_fb_clip_offset =================
[22:37:41] [PASSED] pass through
[22:37:41] [PASSED] horizontal offset
[22:37:41] [PASSED] vertical offset
[22:37:41] [PASSED] horizontal and vertical offset
[22:37:41] [PASSED] horizontal offset (custom pitch)
[22:37:41] [PASSED] vertical offset (custom pitch)
[22:37:41] [PASSED] horizontal and vertical offset (custom pitch)
[22:37:41] ============= [PASSED] drm_test_fb_clip_offset =============
[22:37:41] =================== drm_test_fb_memcpy ====================
[22:37:41] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[22:37:41] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[22:37:41] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[22:37:41] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[22:37:41] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[22:37:41] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[22:37:41] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[22:37:41] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[22:37:41] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[22:37:41] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[22:37:41] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[22:37:41] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[22:37:41] =============== [PASSED] drm_test_fb_memcpy ================
[22:37:41] ============= [PASSED] drm_format_helper_test ==============
[22:37:41] ================= drm_format (18 subtests) =================
[22:37:41] [PASSED] drm_test_format_block_width_invalid
[22:37:41] [PASSED] drm_test_format_block_width_one_plane
[22:37:41] [PASSED] drm_test_format_block_width_two_plane
[22:37:41] [PASSED] drm_test_format_block_width_three_plane
[22:37:41] [PASSED] drm_test_format_block_width_tiled
[22:37:41] [PASSED] drm_test_format_block_height_invalid
[22:37:41] [PASSED] drm_test_format_block_height_one_plane
[22:37:41] [PASSED] drm_test_format_block_height_two_plane
[22:37:41] [PASSED] drm_test_format_block_height_three_plane
[22:37:41] [PASSED] drm_test_format_block_height_tiled
[22:37:41] [PASSED] drm_test_format_min_pitch_invalid
[22:37:41] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[22:37:41] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[22:37:41] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[22:37:41] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[22:37:41] [PASSED] drm_test_format_min_pitch_two_plane
[22:37:41] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[22:37:41] [PASSED] drm_test_format_min_pitch_tiled
[22:37:41] =================== [PASSED] drm_format ====================
[22:37:41] ============== drm_framebuffer (10 subtests) ===============
[22:37:41] ========== drm_test_framebuffer_check_src_coords ==========
[22:37:41] [PASSED] Success: source fits into fb
[22:37:41] [PASSED] Fail: overflowing fb with x-axis coordinate
[22:37:41] [PASSED] Fail: overflowing fb with y-axis coordinate
[22:37:41] [PASSED] Fail: overflowing fb with source width
[22:37:41] [PASSED] Fail: overflowing fb with source height
[22:37:41] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[22:37:41] [PASSED] drm_test_framebuffer_cleanup
[22:37:41] =============== drm_test_framebuffer_create ===============
[22:37:41] [PASSED] ABGR8888 normal sizes
[22:37:41] [PASSED] ABGR8888 max sizes
[22:37:41] [PASSED] ABGR8888 pitch greater than min required
[22:37:41] [PASSED] ABGR8888 pitch less than min required
[22:37:41] [PASSED] ABGR8888 Invalid width
[22:37:41] [PASSED] ABGR8888 Invalid buffer handle
[22:37:41] [PASSED] No pixel format
[22:37:41] [PASSED] ABGR8888 Width 0
[22:37:41] [PASSED] ABGR8888 Height 0
[22:37:41] [PASSED] ABGR8888 Out of bound height * pitch combination
[22:37:41] [PASSED] ABGR8888 Large buffer offset
[22:37:41] [PASSED] ABGR8888 Buffer offset for inexistent plane
[22:37:41] [PASSED] ABGR8888 Invalid flag
[22:37:41] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[22:37:41] [PASSED] ABGR8888 Valid buffer modifier
[22:37:41] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[22:37:41] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[22:37:41] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[22:37:41] [PASSED] NV12 Normal sizes
[22:37:41] [PASSED] NV12 Max sizes
[22:37:41] [PASSED] NV12 Invalid pitch
[22:37:41] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[22:37:41] [PASSED] NV12 different modifier per-plane
[22:37:41] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[22:37:41] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[22:37:41] [PASSED] NV12 Modifier for inexistent plane
[22:37:41] [PASSED] NV12 Handle for inexistent plane
[22:37:41] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[22:37:41] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[22:37:41] [PASSED] YVU420 Normal sizes
[22:37:41] [PASSED] YVU420 Max sizes
[22:37:41] [PASSED] YVU420 Invalid pitch
[22:37:41] [PASSED] YVU420 Different pitches
[22:37:41] [PASSED] YVU420 Different buffer offsets/pitches
[22:37:41] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[22:37:41] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[22:37:41] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[22:37:41] [PASSED] YVU420 Valid modifier
[22:37:41] [PASSED] YVU420 Different modifiers per plane
[22:37:41] [PASSED] YVU420 Modifier for inexistent plane
[22:37:41] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[22:37:41] [PASSED] X0L2 Normal sizes
[22:37:41] [PASSED] X0L2 Max sizes
[22:37:41] [PASSED] X0L2 Invalid pitch
[22:37:41] [PASSED] X0L2 Pitch greater than minimum required
[22:37:41] [PASSED] X0L2 Handle for inexistent plane
[22:37:41] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[22:37:41] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[22:37:41] [PASSED] X0L2 Valid modifier
[22:37:41] [PASSED] X0L2 Modifier for inexistent plane
[22:37:41] =========== [PASSED] drm_test_framebuffer_create ===========
[22:37:41] [PASSED] drm_test_framebuffer_free
[22:37:41] [PASSED] drm_test_framebuffer_init
[22:37:41] [PASSED] drm_test_framebuffer_init_bad_format
[22:37:41] [PASSED] drm_test_framebuffer_init_dev_mismatch
[22:37:41] [PASSED] drm_test_framebuffer_lookup
[22:37:41] [PASSED] drm_test_framebuffer_lookup_inexistent
[22:37:41] [PASSED] drm_test_framebuffer_modifiers_not_supported
[22:37:41] ================= [PASSED] drm_framebuffer =================
[22:37:41] ================ drm_gem_shmem (8 subtests) ================
[22:37:41] [PASSED] drm_gem_shmem_test_obj_create
[22:37:41] [PASSED] drm_gem_shmem_test_obj_create_private
[22:37:41] [PASSED] drm_gem_shmem_test_pin_pages
[22:37:41] [PASSED] drm_gem_shmem_test_vmap
[22:37:41] [PASSED] drm_gem_shmem_test_get_sg_table
[22:37:41] [PASSED] drm_gem_shmem_test_get_pages_sgt
[22:37:41] [PASSED] drm_gem_shmem_test_madvise
[22:37:41] [PASSED] drm_gem_shmem_test_purge
[22:37:41] ================== [PASSED] drm_gem_shmem ==================
[22:37:41] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[22:37:41] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[22:37:41] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[22:37:41] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[22:37:41] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[22:37:41] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[22:37:41] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[22:37:41] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[22:37:41] [PASSED] Automatic
[22:37:41] [PASSED] Full
[22:37:41] [PASSED] Limited 16:235
[22:37:41] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[22:37:41] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[22:37:41] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[22:37:41] [PASSED] drm_test_check_disable_connector
[22:37:41] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[22:37:41] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[22:37:41] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[22:37:41] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[22:37:41] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[22:37:41] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[22:37:41] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[22:37:41] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[22:37:41] [PASSED] drm_test_check_output_bpc_dvi
[22:37:41] [PASSED] drm_test_check_output_bpc_format_vic_1
[22:37:41] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[22:37:41] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[22:37:41] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[22:37:41] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[22:37:41] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[22:37:41] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[22:37:41] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[22:37:41] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[22:37:41] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[22:37:41] [PASSED] drm_test_check_broadcast_rgb_value
[22:37:41] [PASSED] drm_test_check_bpc_8_value
[22:37:41] [PASSED] drm_test_check_bpc_10_value
[22:37:41] [PASSED] drm_test_check_bpc_12_value
[22:37:41] [PASSED] drm_test_check_format_value
[22:37:41] [PASSED] drm_test_check_tmds_char_value
[22:37:41] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[22:37:41] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[22:37:41] [PASSED] drm_test_check_mode_valid
[22:37:41] [PASSED] drm_test_check_mode_valid_reject
[22:37:41] [PASSED] drm_test_check_mode_valid_reject_rate
[22:37:41] [PASSED] drm_test_check_mode_valid_reject_max_clock
[22:37:41] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[22:37:41] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[22:37:41] [PASSED] drm_test_check_infoframes
[22:37:41] [PASSED] drm_test_check_reject_avi_infoframe
[22:37:41] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[22:37:41] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[22:37:41] [PASSED] drm_test_check_reject_audio_infoframe
[22:37:41] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[22:37:41] ================= drm_managed (2 subtests) =================
[22:37:41] [PASSED] drm_test_managed_release_action
[22:37:41] [PASSED] drm_test_managed_run_action
[22:37:41] =================== [PASSED] drm_managed ===================
[22:37:41] =================== drm_mm (6 subtests) ====================
[22:37:41] [PASSED] drm_test_mm_init
[22:37:41] [PASSED] drm_test_mm_debug
[22:37:41] [PASSED] drm_test_mm_align32
[22:37:41] [PASSED] drm_test_mm_align64
[22:37:41] [PASSED] drm_test_mm_lowest
[22:37:41] [PASSED] drm_test_mm_highest
[22:37:41] ===================== [PASSED] drm_mm ======================
[22:37:41] ============= drm_modes_analog_tv (5 subtests) =============
[22:37:41] [PASSED] drm_test_modes_analog_tv_mono_576i
[22:37:41] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[22:37:41] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[22:37:41] [PASSED] drm_test_modes_analog_tv_pal_576i
[22:37:41] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[22:37:41] =============== [PASSED] drm_modes_analog_tv ===============
[22:37:41] ============== drm_plane_helper (2 subtests) ===============
[22:37:41] =============== drm_test_check_plane_state ================
[22:37:41] [PASSED] clipping_simple
[22:37:41] [PASSED] clipping_rotate_reflect
[22:37:41] [PASSED] positioning_simple
[22:37:41] [PASSED] upscaling
[22:37:41] [PASSED] downscaling
[22:37:41] [PASSED] rounding1
[22:37:41] [PASSED] rounding2
[22:37:41] [PASSED] rounding3
[22:37:41] [PASSED] rounding4
[22:37:41] =========== [PASSED] drm_test_check_plane_state ============
[22:37:41] =========== drm_test_check_invalid_plane_state ============
[22:37:41] [PASSED] positioning_invalid
[22:37:41] [PASSED] upscaling_invalid
[22:37:41] [PASSED] downscaling_invalid
[22:37:41] ======= [PASSED] drm_test_check_invalid_plane_state ========
[22:37:41] ================ [PASSED] drm_plane_helper =================
[22:37:41] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[22:37:41] ====== drm_test_connector_helper_tv_get_modes_check =======
[22:37:41] [PASSED] None
[22:37:41] [PASSED] PAL
[22:37:41] [PASSED] NTSC
[22:37:41] [PASSED] Both, NTSC Default
[22:37:41] [PASSED] Both, PAL Default
[22:37:41] [PASSED] Both, NTSC Default, with PAL on command-line
[22:37:41] [PASSED] Both, PAL Default, with NTSC on command-line
[22:37:41] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[22:37:41] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[22:37:41] ================== drm_rect (9 subtests) ===================
[22:37:41] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[22:37:41] [PASSED] drm_test_rect_clip_scaled_not_clipped
[22:37:41] [PASSED] drm_test_rect_clip_scaled_clipped
[22:37:41] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[22:37:41] ================= drm_test_rect_intersect =================
[22:37:41] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[22:37:41] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[22:37:41] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[22:37:41] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[22:37:41] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[22:37:41] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[22:37:41] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[22:37:41] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[22:37:41] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[22:37:41] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[22:37:41] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[22:37:41] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[22:37:41] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[22:37:41] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[22:37:41] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[22:37:41] ============= [PASSED] drm_test_rect_intersect =============
[22:37:41] ================ drm_test_rect_calc_hscale ================
[22:37:41] [PASSED] normal use
[22:37:41] [PASSED] out of max range
[22:37:41] [PASSED] out of min range
[22:37:41] [PASSED] zero dst
[22:37:41] [PASSED] negative src
[22:37:41] [PASSED] negative dst
[22:37:41] ============ [PASSED] drm_test_rect_calc_hscale ============
[22:37:41] ================ drm_test_rect_calc_vscale ================
[22:37:41] [PASSED] normal use
[22:37:41] [PASSED] out of max range
[22:37:41] [PASSED] out of min range
[22:37:41] [PASSED] zero dst
[22:37:41] [PASSED] negative src
[22:37:41] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[22:37:41] ============ [PASSED] drm_test_rect_calc_vscale ============
[22:37:41] ================== drm_test_rect_rotate ===================
[22:37:41] [PASSED] reflect-x
[22:37:41] [PASSED] reflect-y
[22:37:41] [PASSED] rotate-0
[22:37:41] [PASSED] rotate-90
[22:37:41] [PASSED] rotate-180
[22:37:41] [PASSED] rotate-270
[22:37:41] ============== [PASSED] drm_test_rect_rotate ===============
[22:37:41] ================ drm_test_rect_rotate_inv =================
[22:37:41] [PASSED] reflect-x
[22:37:41] [PASSED] reflect-y
[22:37:41] [PASSED] rotate-0
[22:37:41] [PASSED] rotate-90
[22:37:41] [PASSED] rotate-180
[22:37:41] [PASSED] rotate-270
[22:37:41] ============ [PASSED] drm_test_rect_rotate_inv =============
[22:37:41] ==================== [PASSED] drm_rect =====================
[22:37:41] ============ drm_sysfb_modeset_test (1 subtest) ============
[22:37:41] ============ drm_test_sysfb_build_fourcc_list =============
[22:37:41] [PASSED] no native formats
[22:37:41] [PASSED] XRGB8888 as native format
[22:37:41] [PASSED] remove duplicates
[22:37:41] [PASSED] convert alpha formats
[22:37:41] [PASSED] random formats
[22:37:41] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[22:37:41] ============= [PASSED] drm_sysfb_modeset_test ==============
[22:37:41] ================== drm_fixp (2 subtests) ===================
[22:37:41] [PASSED] drm_test_int2fixp
[22:37:41] [PASSED] drm_test_sm2fixp
[22:37:41] ==================== [PASSED] drm_fixp =====================
[22:37:41] ============================================================
[22:37:41] Testing complete. Ran 621 tests: passed: 621
[22:37:41] Elapsed time: 27.211s total, 1.688s configuring, 25.355s building, 0.131s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[22:37:42] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:37:43] 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
[22:37:53] Starting KUnit Kernel (1/1)...
[22:37:53] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:37:53] ================= ttm_device (5 subtests) ==================
[22:37:53] [PASSED] ttm_device_init_basic
[22:37:53] [PASSED] ttm_device_init_multiple
[22:37:53] [PASSED] ttm_device_fini_basic
[22:37:53] [PASSED] ttm_device_init_no_vma_man
[22:37:53] ================== ttm_device_init_pools ==================
[22:37:53] [PASSED] No DMA allocations, no DMA32 required
[22:37:53] [PASSED] DMA allocations, DMA32 required
[22:37:53] [PASSED] No DMA allocations, DMA32 required
[22:37:53] [PASSED] DMA allocations, no DMA32 required
[22:37:53] ============== [PASSED] ttm_device_init_pools ==============
[22:37:53] =================== [PASSED] ttm_device ====================
[22:37:53] ================== ttm_pool (8 subtests) ===================
[22:37:53] ================== ttm_pool_alloc_basic ===================
[22:37:53] [PASSED] One page
[22:37:53] [PASSED] More than one page
[22:37:53] [PASSED] Above the allocation limit
[22:37:53] [PASSED] One page, with coherent DMA mappings enabled
[22:37:53] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[22:37:53] ============== [PASSED] ttm_pool_alloc_basic ===============
[22:37:53] ============== ttm_pool_alloc_basic_dma_addr ==============
[22:37:53] [PASSED] One page
[22:37:53] [PASSED] More than one page
[22:37:53] [PASSED] Above the allocation limit
[22:37:53] [PASSED] One page, with coherent DMA mappings enabled
[22:37:53] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[22:37:53] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[22:37:53] [PASSED] ttm_pool_alloc_order_caching_match
[22:37:53] [PASSED] ttm_pool_alloc_caching_mismatch
[22:37:53] [PASSED] ttm_pool_alloc_order_mismatch
[22:37:53] [PASSED] ttm_pool_free_dma_alloc
[22:37:53] [PASSED] ttm_pool_free_no_dma_alloc
[22:37:53] [PASSED] ttm_pool_fini_basic
[22:37:53] ==================== [PASSED] ttm_pool =====================
[22:37:53] ================ ttm_resource (8 subtests) =================
[22:37:53] ================= ttm_resource_init_basic =================
[22:37:53] [PASSED] Init resource in TTM_PL_SYSTEM
[22:37:53] [PASSED] Init resource in TTM_PL_VRAM
[22:37:53] [PASSED] Init resource in a private placement
[22:37:53] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[22:37:53] ============= [PASSED] ttm_resource_init_basic =============
[22:37:53] [PASSED] ttm_resource_init_pinned
[22:37:53] [PASSED] ttm_resource_fini_basic
[22:37:53] [PASSED] ttm_resource_manager_init_basic
[22:37:53] [PASSED] ttm_resource_manager_usage_basic
[22:37:53] [PASSED] ttm_resource_manager_set_used_basic
[22:37:53] [PASSED] ttm_sys_man_alloc_basic
[22:37:53] [PASSED] ttm_sys_man_free_basic
[22:37:53] ================== [PASSED] ttm_resource ===================
[22:37:53] =================== ttm_tt (15 subtests) ===================
[22:37:53] ==================== ttm_tt_init_basic ====================
[22:37:53] [PASSED] Page-aligned size
[22:37:53] [PASSED] Extra pages requested
[22:37:53] ================ [PASSED] ttm_tt_init_basic ================
[22:37:53] [PASSED] ttm_tt_init_misaligned
[22:37:53] [PASSED] ttm_tt_fini_basic
[22:37:53] [PASSED] ttm_tt_fini_sg
[22:37:53] [PASSED] ttm_tt_fini_shmem
[22:37:53] [PASSED] ttm_tt_create_basic
[22:37:53] [PASSED] ttm_tt_create_invalid_bo_type
[22:37:53] [PASSED] ttm_tt_create_ttm_exists
[22:37:53] [PASSED] ttm_tt_create_failed
[22:37:53] [PASSED] ttm_tt_destroy_basic
[22:37:53] [PASSED] ttm_tt_populate_null_ttm
[22:37:53] [PASSED] ttm_tt_populate_populated_ttm
[22:37:53] [PASSED] ttm_tt_unpopulate_basic
[22:37:53] [PASSED] ttm_tt_unpopulate_empty_ttm
[22:37:53] [PASSED] ttm_tt_swapin_basic
[22:37:53] ===================== [PASSED] ttm_tt ======================
[22:37:53] =================== ttm_bo (14 subtests) ===================
[22:37:53] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[22:37:53] [PASSED] Cannot be interrupted and sleeps
[22:37:53] [PASSED] Cannot be interrupted, locks straight away
[22:37:53] [PASSED] Can be interrupted, sleeps
[22:37:53] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[22:37:53] [PASSED] ttm_bo_reserve_locked_no_sleep
[22:37:53] [PASSED] ttm_bo_reserve_no_wait_ticket
[22:37:53] [PASSED] ttm_bo_reserve_double_resv
[22:37:53] [PASSED] ttm_bo_reserve_interrupted
[22:37:53] [PASSED] ttm_bo_reserve_deadlock
[22:37:53] [PASSED] ttm_bo_unreserve_basic
[22:37:53] [PASSED] ttm_bo_unreserve_pinned
[22:37:53] [PASSED] ttm_bo_unreserve_bulk
[22:37:53] [PASSED] ttm_bo_fini_basic
[22:37:53] [PASSED] ttm_bo_fini_shared_resv
[22:37:53] [PASSED] ttm_bo_pin_basic
[22:37:53] [PASSED] ttm_bo_pin_unpin_resource
[22:37:53] [PASSED] ttm_bo_multiple_pin_one_unpin
[22:37:53] ===================== [PASSED] ttm_bo ======================
[22:37:53] ============== ttm_bo_validate (21 subtests) ===============
[22:37:53] ============== ttm_bo_init_reserved_sys_man ===============
[22:37:53] [PASSED] Buffer object for userspace
[22:37:53] [PASSED] Kernel buffer object
[22:37:53] [PASSED] Shared buffer object
[22:37:53] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[22:37:53] ============== ttm_bo_init_reserved_mock_man ==============
[22:37:53] [PASSED] Buffer object for userspace
[22:37:53] [PASSED] Kernel buffer object
[22:37:53] [PASSED] Shared buffer object
[22:37:53] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[22:37:53] [PASSED] ttm_bo_init_reserved_resv
[22:37:53] ================== ttm_bo_validate_basic ==================
[22:37:53] [PASSED] Buffer object for userspace
[22:37:53] [PASSED] Kernel buffer object
[22:37:53] [PASSED] Shared buffer object
[22:37:53] ============== [PASSED] ttm_bo_validate_basic ==============
[22:37:53] [PASSED] ttm_bo_validate_invalid_placement
[22:37:53] ============= ttm_bo_validate_same_placement ==============
[22:37:53] [PASSED] System manager
[22:37:53] [PASSED] VRAM manager
[22:37:53] ========= [PASSED] ttm_bo_validate_same_placement ==========
[22:37:53] [PASSED] ttm_bo_validate_failed_alloc
[22:37:53] [PASSED] ttm_bo_validate_pinned
[22:37:53] [PASSED] ttm_bo_validate_busy_placement
[22:37:53] ================ ttm_bo_validate_multihop =================
[22:37:53] [PASSED] Buffer object for userspace
[22:37:53] [PASSED] Kernel buffer object
[22:37:53] [PASSED] Shared buffer object
[22:37:53] ============ [PASSED] ttm_bo_validate_multihop =============
[22:37:53] ========== ttm_bo_validate_no_placement_signaled ==========
[22:37:53] [PASSED] Buffer object in system domain, no page vector
[22:37:53] [PASSED] Buffer object in system domain with an existing page vector
[22:37:53] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[22:37:53] ======== ttm_bo_validate_no_placement_not_signaled ========
[22:37:53] [PASSED] Buffer object for userspace
[22:37:53] [PASSED] Kernel buffer object
[22:37:53] [PASSED] Shared buffer object
[22:37:53] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[22:37:53] [PASSED] ttm_bo_validate_move_fence_signaled
[22:37:53] ========= ttm_bo_validate_move_fence_not_signaled =========
[22:37:53] [PASSED] Waits for GPU
[22:37:53] [PASSED] Tries to lock straight away
[22:37:53] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[22:37:53] [PASSED] ttm_bo_validate_happy_evict
[22:37:53] [PASSED] ttm_bo_validate_all_pinned_evict
[22:37:53] [PASSED] ttm_bo_validate_allowed_only_evict
[22:37:53] [PASSED] ttm_bo_validate_deleted_evict
[22:37:53] [PASSED] ttm_bo_validate_busy_domain_evict
[22:37:53] [PASSED] ttm_bo_validate_evict_gutting
[22:37:53] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[22:37:53] ================= [PASSED] ttm_bo_validate =================
[22:37:53] ============================================================
[22:37:53] Testing complete. Ran 101 tests: passed: 101
[22:37:53] Elapsed time: 11.526s total, 1.680s configuring, 9.631s building, 0.186s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ Xe.CI.BAT: failure for drm/xe/wa: Steer RMW of MCR registers while building default LRC
2026-02-06 22:30 [PATCH] drm/xe/wa: Steer RMW of MCR registers while building default LRC Matt Roper
2026-02-06 22:37 ` ✓ CI.KUnit: success for " Patchwork
@ 2026-02-06 23:15 ` Patchwork
2026-02-06 23:57 ` Matt Roper
2026-02-07 19:53 ` ✗ Xe.CI.FULL: " Patchwork
` (6 subsequent siblings)
8 siblings, 1 reply; 14+ messages in thread
From: Patchwork @ 2026-02-06 23:15 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 2541 bytes --]
== Series Details ==
Series: drm/xe/wa: Steer RMW of MCR registers while building default LRC
URL : https://patchwork.freedesktop.org/series/161300/
State : failure
== Summary ==
CI Bug Log - changes from xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5_BAT -> xe-pw-161300v1_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-161300v1_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-161300v1_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (12 -> 11)
------------------------------
Missing (1): bat-bmg-3
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-161300v1_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@sriov_basic@enable-vfs-autoprobe-on:
- bat-bmg-2: [PASS][1] -> [ABORT][2] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/bat-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/bat-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1:
- bat-bmg-1: [PASS][3] -> [ABORT][4] +1 other test abort
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/bat-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/bat-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
- bat-atsm-2: [PASS][5] -> [ABORT][6] +1 other test abort
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/bat-atsm-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/bat-atsm-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
Build changes
-------------
* Linux: xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5 -> xe-pw-161300v1
IGT_8742: 8742
xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5: ab5b6da7d4879640bce3197597e0bc707bd60ab5
xe-pw-161300v1: 161300v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/index.html
[-- Attachment #2: Type: text/html, Size: 3175 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: ✗ Xe.CI.BAT: failure for drm/xe/wa: Steer RMW of MCR registers while building default LRC
2026-02-06 23:15 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2026-02-06 23:57 ` Matt Roper
2026-02-07 22:05 ` Michal Wajdeczko
0 siblings, 1 reply; 14+ messages in thread
From: Matt Roper @ 2026-02-06 23:57 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko
On Fri, Feb 06, 2026 at 11:15:16PM +0000, Patchwork wrote:
> == Series Details ==
>
> Series: drm/xe/wa: Steer RMW of MCR registers while building default LRC
> URL : https://patchwork.freedesktop.org/series/161300/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5_BAT -> xe-pw-161300v1_BAT
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
Hmm, it looks like this is problematic in SRIOV VF environments because
the VF doesn't know how to steer (because it doesn't have access to the
fuse registers that provide the necessary details). Lack of steering
knowledge usually isn't a problem since the VF also doesn't need to do
any CPU-originated MCR accesses (steered via 0xFD4). But in this case
to do a CS-originated RMW operation on an MCR register, the ability to
steer properly does become important, and the VF just doesn't have a way
to get the information it needs.
I'm not sure how to fix that gap. Michal, any thoughts?
Matt
>
> Serious unknown changes coming with xe-pw-161300v1_BAT absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in xe-pw-161300v1_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
> to document this new failure mode, which will reduce false positives in CI.
>
>
>
> Participating hosts (12 -> 11)
> ------------------------------
>
> Missing (1): bat-bmg-3
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in xe-pw-161300v1_BAT:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@sriov_basic@enable-vfs-autoprobe-on:
> - bat-bmg-2: [PASS][1] -> [ABORT][2] +1 other test abort
> [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/bat-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
> [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/bat-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
>
> * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1:
> - bat-bmg-1: [PASS][3] -> [ABORT][4] +1 other test abort
> [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/bat-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
> [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/bat-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
> - bat-atsm-2: [PASS][5] -> [ABORT][6] +1 other test abort
> [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/bat-atsm-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
> [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/bat-atsm-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
>
>
>
>
> Build changes
> -------------
>
> * Linux: xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5 -> xe-pw-161300v1
>
> IGT_8742: 8742
> xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5: ab5b6da7d4879640bce3197597e0bc707bd60ab5
> xe-pw-161300v1: 161300v1
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/index.html
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ Xe.CI.FULL: failure for drm/xe/wa: Steer RMW of MCR registers while building default LRC
2026-02-06 22:30 [PATCH] drm/xe/wa: Steer RMW of MCR registers while building default LRC Matt Roper
2026-02-06 22:37 ` ✓ CI.KUnit: success for " Patchwork
2026-02-06 23:15 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2026-02-07 19:53 ` Patchwork
2026-02-09 20:40 ` ✓ CI.KUnit: success for drm/xe/wa: Steer RMW of MCR registers while building default LRC (rev2) Patchwork
` (5 subsequent siblings)
8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-02-07 19:53 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 33707 bytes --]
== Series Details ==
Series: drm/xe/wa: Steer RMW of MCR registers while building default LRC
URL : https://patchwork.freedesktop.org/series/161300/
State : failure
== Summary ==
CI Bug Log - changes from xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5_FULL -> xe-pw-161300v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-161300v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-161300v1_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-161300v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_pmu@engine-activity-multi-client@engine-drm_xe_engine_class_video_enhance1:
- shard-bmg: NOTRUN -> [ABORT][1] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-6/igt@xe_pmu@engine-activity-multi-client@engine-drm_xe_engine_class_video_enhance1.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
- shard-bmg: [PASS][2] -> [ABORT][3] +28 other tests abort
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/shard-bmg-10/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-7/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
Known issues
------------
Here are the changes found in xe-pw-161300v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2370])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-8/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#7059])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#610])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +8 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2314] / [Intel XE#2894])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#367]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#3432]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2887]) +7 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2724])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-6/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2325])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-6/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2252]) +4 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][17] ([Intel XE#3304]) +1 other test fail
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-8/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@atomic@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][18] ([Intel XE#1178] / [Intel XE#3304])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-2/igt@kms_content_protection@atomic@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2390] / [Intel XE#6974])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-8/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2320]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2291]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-bmg: [PASS][22] -> [SKIP][23] ([Intel XE#2291]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: NOTRUN -> [FAIL][24] ([Intel XE#4633])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-bmg: [PASS][25] -> [FAIL][26] ([Intel XE#5299])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2244])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-8/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2316]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [PASS][29] -> [SKIP][30] ([Intel XE#2316]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/shard-bmg-1/igt@kms_flip@2x-nonexisting-fb.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
- shard-lnl: [PASS][31] -> [FAIL][32] ([Intel XE#301])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7179])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7178]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#4141]) +5 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#7061]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2311]) +12 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2313]) +12 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2352])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2312]) +14 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#4090])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#7111] / [Intel XE#7130] / [Intel XE#7131])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-8/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-5:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7131])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-8/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#7111] / [Intel XE#7131])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-8/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier@pipe-a-plane-0:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#7130]) +13 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier@pipe-a-plane-0.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#7111] / [Intel XE#7130]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-bmg: [PASS][47] -> [SKIP][48] ([Intel XE#4596])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-x.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#4596])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#6886]) +4 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#870])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2391])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#1439] / [Intel XE#836])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +8 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#1406] / [Intel XE#2414])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#3414] / [Intel XE#3904]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#1435])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_sharpness_filter@filter-tap:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#6503])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_sharpness_filter@filter-tap.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2426])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#1499])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-6/igt@kms_vrr@max-min.html
* igt@xe_eudebug@basic-client-th:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#4837])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-8/igt@xe_eudebug@basic-client-th.html
* igt@xe_eudebug_online@set-breakpoint-faultable:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#4837] / [Intel XE#6665]) +4 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@xe_eudebug_online@set-breakpoint-faultable.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: NOTRUN -> [INCOMPLETE][65] ([Intel XE#6321])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2322]) +4 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#7136]) +7 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch.html
* igt@xe_exec_multi_queue@two-queues-priority:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#6874]) +16 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@xe_exec_multi_queue@two-queues-priority.html
* igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#5007])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset.html
* igt@xe_exec_system_allocator@once-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#4943]) +11 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@xe_exec_system_allocator@once-mmap-huge-nomemset.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#7138]) +4 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html
* igt@xe_multigpu_svm@mgpu-coherency-conflict:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#6964])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-6/igt@xe_multigpu_svm@mgpu-coherency-conflict.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2284])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pxp@pxp-stale-queue-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#4733])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@xe_pxp@pxp-stale-queue-post-termination-irq.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#944]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-6/igt@xe_query@multigpu-query-invalid-extension.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-transition-nonblocking:
- shard-bmg: [DMESG-WARN][76] -> [PASS][77] +1 other test pass
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/shard-bmg-2/igt@kms_atomic_transition@plane-all-transition-nonblocking.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-9/igt@kms_atomic_transition@plane-all-transition-nonblocking.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-bmg: [SKIP][78] ([Intel XE#2316]) -> [PASS][79] +3 other tests pass
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/shard-bmg-6/igt@kms_flip@2x-flip-vs-wf_vblank.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-10/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][80] ([Intel XE#301]) -> [PASS][81] +2 other tests pass
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [INCOMPLETE][82] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][83] +1 other test pass
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [SKIP][84] ([Intel XE#1435]) -> [PASS][85]
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][86] ([Intel XE#4459]) -> [PASS][87] +1 other test pass
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@flipline:
- shard-lnl: [FAIL][88] ([Intel XE#4227]) -> [PASS][89] +1 other test pass
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/shard-lnl-6/igt@kms_vrr@flipline.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-lnl-3/igt@kms_vrr@flipline.html
* igt@xe_configfs@gt-types-allowed:
- shard-bmg: [ABORT][90] -> [PASS][91]
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/shard-bmg-2/igt@xe_configfs@gt-types-allowed.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@xe_configfs@gt-types-allowed.html
#### Warnings ####
* igt@kms_content_protection@atomic:
- shard-bmg: [SKIP][92] ([Intel XE#2341]) -> [FAIL][93] ([Intel XE#1178] / [Intel XE#3304])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/shard-bmg-5/igt@kms_content_protection@atomic.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-2/igt@kms_content_protection@atomic.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][94] ([Intel XE#2312]) -> [SKIP][95] ([Intel XE#4141]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: [SKIP][96] ([Intel XE#2311]) -> [SKIP][97] ([Intel XE#2312])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][98] ([Intel XE#2312]) -> [SKIP][99] ([Intel XE#2311]) +11 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-rte:
- shard-bmg: [SKIP][100] ([Intel XE#2312]) -> [SKIP][101] ([Intel XE#2313]) +9 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
- shard-bmg: [SKIP][102] ([Intel XE#2313]) -> [SKIP][103] ([Intel XE#2312]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-bmg: [ABORT][104] ([Intel XE#5466]) -> [ABORT][105] ([Intel XE#5466] / [Intel XE#6652])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/shard-bmg-5/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/shard-bmg-2/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[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#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[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#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[Intel XE#7131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5 -> xe-pw-161300v1
IGT_8742: 8742
xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5: ab5b6da7d4879640bce3197597e0bc707bd60ab5
xe-pw-161300v1: 161300v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/index.html
[-- Attachment #2: Type: text/html, Size: 38319 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: ✗ Xe.CI.BAT: failure for drm/xe/wa: Steer RMW of MCR registers while building default LRC
2026-02-06 23:57 ` Matt Roper
@ 2026-02-07 22:05 ` Michal Wajdeczko
2026-02-09 20:35 ` Matt Roper
0 siblings, 1 reply; 14+ messages in thread
From: Michal Wajdeczko @ 2026-02-07 22:05 UTC (permalink / raw)
To: Matt Roper, intel-xe
On 2/7/2026 12:57 AM, Matt Roper wrote:
> On Fri, Feb 06, 2026 at 11:15:16PM +0000, Patchwork wrote:
>> == Series Details ==
>>
>> Series: drm/xe/wa: Steer RMW of MCR registers while building default LRC
>> URL : https://patchwork.freedesktop.org/series/161300/
>> State : failure
>>
>> == Summary ==
>>
>> CI Bug Log - changes from xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5_BAT -> xe-pw-161300v1_BAT
>> ====================================================
>>
>> Summary
>> -------
>>
>> **FAILURE**
>
> Hmm, it looks like this is problematic in SRIOV VF environments because
> the VF doesn't know how to steer (because it doesn't have access to the
> fuse registers that provide the necessary details). Lack of steering
> knowledge usually isn't a problem since the VF also doesn't need to do
> any CPU-originated MCR accesses (steered via 0xFD4). But in this case
> to do a CS-originated RMW operation on an MCR register, the ability to
> steer properly does become important, and the VF just doesn't have a way
> to get the information it needs.
>
> I'm not sure how to fix that gap. Michal, any thoughts?
It looks that VFs already know the fuses at the time of mcr_init() just
we didn't let them run any initialization since we didn't need that.
We can let them do that now and with [1] I didn't see any WARNs.
Michal
[1] https://patchwork.freedesktop.org/series/161319/
>
>
> Matt
>
>>
>> Serious unknown changes coming with xe-pw-161300v1_BAT absolutely need to be
>> verified manually.
>>
>> If you think the reported changes have nothing to do with the changes
>> introduced in xe-pw-161300v1_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
>> to document this new failure mode, which will reduce false positives in CI.
>>
>>
>>
>> Participating hosts (12 -> 11)
>> ------------------------------
>>
>> Missing (1): bat-bmg-3
>>
>> Possible new issues
>> -------------------
>>
>> Here are the unknown changes that may have been introduced in xe-pw-161300v1_BAT:
>>
>> ### IGT changes ###
>>
>> #### Possible regressions ####
>>
>> * igt@sriov_basic@enable-vfs-autoprobe-on:
>> - bat-bmg-2: [PASS][1] -> [ABORT][2] +1 other test abort
>> [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/bat-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
>> [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/bat-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
>>
>> * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1:
>> - bat-bmg-1: [PASS][3] -> [ABORT][4] +1 other test abort
>> [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/bat-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
>> [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/bat-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
>> - bat-atsm-2: [PASS][5] -> [ABORT][6] +1 other test abort
>> [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/bat-atsm-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
>> [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/bat-atsm-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
>>
>>
>>
>>
>> Build changes
>> -------------
>>
>> * Linux: xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5 -> xe-pw-161300v1
>>
>> IGT_8742: 8742
>> xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5: ab5b6da7d4879640bce3197597e0bc707bd60ab5
>> xe-pw-161300v1: 161300v1
>>
>> == Logs ==
>>
>> For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/index.html
>
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: ✗ Xe.CI.BAT: failure for drm/xe/wa: Steer RMW of MCR registers while building default LRC
2026-02-07 22:05 ` Michal Wajdeczko
@ 2026-02-09 20:35 ` Matt Roper
0 siblings, 0 replies; 14+ messages in thread
From: Matt Roper @ 2026-02-09 20:35 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
On Sat, Feb 07, 2026 at 11:05:06PM +0100, Michal Wajdeczko wrote:
>
>
> On 2/7/2026 12:57 AM, Matt Roper wrote:
> > On Fri, Feb 06, 2026 at 11:15:16PM +0000, Patchwork wrote:
> >> == Series Details ==
> >>
> >> Series: drm/xe/wa: Steer RMW of MCR registers while building default LRC
> >> URL : https://patchwork.freedesktop.org/series/161300/
> >> State : failure
> >>
> >> == Summary ==
> >>
> >> CI Bug Log - changes from xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5_BAT -> xe-pw-161300v1_BAT
> >> ====================================================
> >>
> >> Summary
> >> -------
> >>
> >> **FAILURE**
> >
> > Hmm, it looks like this is problematic in SRIOV VF environments because
> > the VF doesn't know how to steer (because it doesn't have access to the
> > fuse registers that provide the necessary details). Lack of steering
> > knowledge usually isn't a problem since the VF also doesn't need to do
> > any CPU-originated MCR accesses (steered via 0xFD4). But in this case
> > to do a CS-originated RMW operation on an MCR register, the ability to
> > steer properly does become important, and the VF just doesn't have a way
> > to get the information it needs.
> >
> > I'm not sure how to fix that gap. Michal, any thoughts?
>
> It looks that VFs already know the fuses at the time of mcr_init() just
> we didn't let them run any initialization since we didn't need that.
>
> We can let them do that now and with [1] I didn't see any WARNs.
>
> Michal
>
> [1] https://patchwork.freedesktop.org/series/161319/
Makes sense. I just reviewed+applied your series, and started a re-test
on this patch to get a new set of CI results.
Matt
>
> >
> >
> > Matt
> >
> >>
> >> Serious unknown changes coming with xe-pw-161300v1_BAT absolutely need to be
> >> verified manually.
> >>
> >> If you think the reported changes have nothing to do with the changes
> >> introduced in xe-pw-161300v1_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
> >> to document this new failure mode, which will reduce false positives in CI.
> >>
> >>
> >>
> >> Participating hosts (12 -> 11)
> >> ------------------------------
> >>
> >> Missing (1): bat-bmg-3
> >>
> >> Possible new issues
> >> -------------------
> >>
> >> Here are the unknown changes that may have been introduced in xe-pw-161300v1_BAT:
> >>
> >> ### IGT changes ###
> >>
> >> #### Possible regressions ####
> >>
> >> * igt@sriov_basic@enable-vfs-autoprobe-on:
> >> - bat-bmg-2: [PASS][1] -> [ABORT][2] +1 other test abort
> >> [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/bat-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
> >> [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/bat-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
> >>
> >> * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1:
> >> - bat-bmg-1: [PASS][3] -> [ABORT][4] +1 other test abort
> >> [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/bat-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
> >> [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/bat-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
> >> - bat-atsm-2: [PASS][5] -> [ABORT][6] +1 other test abort
> >> [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5/bat-atsm-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
> >> [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/bat-atsm-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
> >>
> >>
> >>
> >>
> >> Build changes
> >> -------------
> >>
> >> * Linux: xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5 -> xe-pw-161300v1
> >>
> >> IGT_8742: 8742
> >> xe-4520-ab5b6da7d4879640bce3197597e0bc707bd60ab5: ab5b6da7d4879640bce3197597e0bc707bd60ab5
> >> xe-pw-161300v1: 161300v1
> >>
> >> == Logs ==
> >>
> >> For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v1/index.html
> >
>
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ CI.KUnit: success for drm/xe/wa: Steer RMW of MCR registers while building default LRC (rev2)
2026-02-06 22:30 [PATCH] drm/xe/wa: Steer RMW of MCR registers while building default LRC Matt Roper
` (2 preceding siblings ...)
2026-02-07 19:53 ` ✗ Xe.CI.FULL: " Patchwork
@ 2026-02-09 20:40 ` Patchwork
2026-02-09 21:19 ` ✓ Xe.CI.BAT: " Patchwork
` (4 subsequent siblings)
8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-02-09 20:40 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
== Series Details ==
Series: drm/xe/wa: Steer RMW of MCR registers while building default LRC (rev2)
URL : https://patchwork.freedesktop.org/series/161300/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[20:38:57] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[20:39:03] 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=25
[20:39:41] Starting KUnit Kernel (1/1)...
[20:39:41] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[20:39:41] ================== guc_buf (11 subtests) ===================
[20:39:41] [PASSED] test_smallest
[20:39:41] [PASSED] test_largest
[20:39:41] [PASSED] test_granular
[20:39:41] [PASSED] test_unique
[20:39:41] [PASSED] test_overlap
[20:39:41] [PASSED] test_reusable
[20:39:41] [PASSED] test_too_big
[20:39:41] [PASSED] test_flush
[20:39:41] [PASSED] test_lookup
[20:39:41] [PASSED] test_data
[20:39:41] [PASSED] test_class
[20:39:41] ===================== [PASSED] guc_buf =====================
[20:39:41] =================== guc_dbm (7 subtests) ===================
[20:39:41] [PASSED] test_empty
[20:39:41] [PASSED] test_default
[20:39:41] ======================== test_size ========================
[20:39:41] [PASSED] 4
[20:39:41] [PASSED] 8
[20:39:41] [PASSED] 32
[20:39:41] [PASSED] 256
[20:39:41] ==================== [PASSED] test_size ====================
[20:39:41] ======================= test_reuse ========================
[20:39:41] [PASSED] 4
[20:39:41] [PASSED] 8
[20:39:41] [PASSED] 32
[20:39:41] [PASSED] 256
[20:39:41] =================== [PASSED] test_reuse ====================
[20:39:41] =================== test_range_overlap ====================
[20:39:41] [PASSED] 4
[20:39:41] [PASSED] 8
[20:39:41] [PASSED] 32
[20:39:41] [PASSED] 256
[20:39:41] =============== [PASSED] test_range_overlap ================
[20:39:41] =================== test_range_compact ====================
[20:39:41] [PASSED] 4
[20:39:41] [PASSED] 8
[20:39:41] [PASSED] 32
[20:39:41] [PASSED] 256
[20:39:41] =============== [PASSED] test_range_compact ================
[20:39:41] ==================== test_range_spare =====================
[20:39:41] [PASSED] 4
[20:39:41] [PASSED] 8
[20:39:41] [PASSED] 32
[20:39:41] [PASSED] 256
[20:39:41] ================ [PASSED] test_range_spare =================
[20:39:41] ===================== [PASSED] guc_dbm =====================
[20:39:41] =================== guc_idm (6 subtests) ===================
[20:39:41] [PASSED] bad_init
[20:39:41] [PASSED] no_init
[20:39:41] [PASSED] init_fini
[20:39:41] [PASSED] check_used
[20:39:41] [PASSED] check_quota
[20:39:41] [PASSED] check_all
[20:39:41] ===================== [PASSED] guc_idm =====================
[20:39:41] ================== no_relay (3 subtests) ===================
[20:39:41] [PASSED] xe_drops_guc2pf_if_not_ready
[20:39:41] [PASSED] xe_drops_guc2vf_if_not_ready
[20:39:41] [PASSED] xe_rejects_send_if_not_ready
[20:39:41] ==================== [PASSED] no_relay =====================
[20:39:41] ================== pf_relay (14 subtests) ==================
[20:39:41] [PASSED] pf_rejects_guc2pf_too_short
[20:39:41] [PASSED] pf_rejects_guc2pf_too_long
[20:39:41] [PASSED] pf_rejects_guc2pf_no_payload
[20:39:41] [PASSED] pf_fails_no_payload
[20:39:41] [PASSED] pf_fails_bad_origin
[20:39:41] [PASSED] pf_fails_bad_type
[20:39:41] [PASSED] pf_txn_reports_error
[20:39:41] [PASSED] pf_txn_sends_pf2guc
[20:39:41] [PASSED] pf_sends_pf2guc
[20:39:41] [SKIPPED] pf_loopback_nop
[20:39:41] [SKIPPED] pf_loopback_echo
[20:39:41] [SKIPPED] pf_loopback_fail
[20:39:41] [SKIPPED] pf_loopback_busy
[20:39:41] [SKIPPED] pf_loopback_retry
[20:39:41] ==================== [PASSED] pf_relay =====================
[20:39:41] ================== vf_relay (3 subtests) ===================
[20:39:41] [PASSED] vf_rejects_guc2vf_too_short
[20:39:41] [PASSED] vf_rejects_guc2vf_too_long
[20:39:41] [PASSED] vf_rejects_guc2vf_no_payload
[20:39:41] ==================== [PASSED] vf_relay =====================
[20:39:41] ================ pf_gt_config (6 subtests) =================
[20:39:41] [PASSED] fair_contexts_1vf
[20:39:41] [PASSED] fair_doorbells_1vf
[20:39:41] [PASSED] fair_ggtt_1vf
[20:39:41] ====================== fair_contexts ======================
[20:39:41] [PASSED] 1 VF
[20:39:41] [PASSED] 2 VFs
[20:39:41] [PASSED] 3 VFs
[20:39:41] [PASSED] 4 VFs
[20:39:41] [PASSED] 5 VFs
[20:39:41] [PASSED] 6 VFs
[20:39:41] [PASSED] 7 VFs
[20:39:41] [PASSED] 8 VFs
[20:39:41] [PASSED] 9 VFs
[20:39:41] [PASSED] 10 VFs
[20:39:41] [PASSED] 11 VFs
[20:39:41] [PASSED] 12 VFs
[20:39:41] [PASSED] 13 VFs
[20:39:41] [PASSED] 14 VFs
[20:39:41] [PASSED] 15 VFs
[20:39:41] [PASSED] 16 VFs
[20:39:41] [PASSED] 17 VFs
[20:39:41] [PASSED] 18 VFs
[20:39:42] [PASSED] 19 VFs
[20:39:42] [PASSED] 20 VFs
[20:39:42] [PASSED] 21 VFs
[20:39:42] [PASSED] 22 VFs
[20:39:42] [PASSED] 23 VFs
[20:39:42] [PASSED] 24 VFs
[20:39:42] [PASSED] 25 VFs
[20:39:42] [PASSED] 26 VFs
[20:39:42] [PASSED] 27 VFs
[20:39:42] [PASSED] 28 VFs
[20:39:42] [PASSED] 29 VFs
[20:39:42] [PASSED] 30 VFs
[20:39:42] [PASSED] 31 VFs
[20:39:42] [PASSED] 32 VFs
[20:39:42] [PASSED] 33 VFs
[20:39:42] [PASSED] 34 VFs
[20:39:42] [PASSED] 35 VFs
[20:39:42] [PASSED] 36 VFs
[20:39:42] [PASSED] 37 VFs
[20:39:42] [PASSED] 38 VFs
[20:39:42] [PASSED] 39 VFs
[20:39:42] [PASSED] 40 VFs
[20:39:42] [PASSED] 41 VFs
[20:39:42] [PASSED] 42 VFs
[20:39:42] [PASSED] 43 VFs
[20:39:42] [PASSED] 44 VFs
[20:39:42] [PASSED] 45 VFs
[20:39:42] [PASSED] 46 VFs
[20:39:42] [PASSED] 47 VFs
[20:39:42] [PASSED] 48 VFs
[20:39:42] [PASSED] 49 VFs
[20:39:42] [PASSED] 50 VFs
[20:39:42] [PASSED] 51 VFs
[20:39:42] [PASSED] 52 VFs
[20:39:42] [PASSED] 53 VFs
[20:39:42] [PASSED] 54 VFs
[20:39:42] [PASSED] 55 VFs
[20:39:42] [PASSED] 56 VFs
[20:39:42] [PASSED] 57 VFs
[20:39:42] [PASSED] 58 VFs
[20:39:42] [PASSED] 59 VFs
[20:39:42] [PASSED] 60 VFs
[20:39:42] [PASSED] 61 VFs
[20:39:42] [PASSED] 62 VFs
[20:39:42] [PASSED] 63 VFs
[20:39:42] ================== [PASSED] fair_contexts ==================
[20:39:42] ===================== fair_doorbells ======================
[20:39:42] [PASSED] 1 VF
[20:39:42] [PASSED] 2 VFs
[20:39:42] [PASSED] 3 VFs
[20:39:42] [PASSED] 4 VFs
[20:39:42] [PASSED] 5 VFs
[20:39:42] [PASSED] 6 VFs
[20:39:42] [PASSED] 7 VFs
[20:39:42] [PASSED] 8 VFs
[20:39:42] [PASSED] 9 VFs
[20:39:42] [PASSED] 10 VFs
[20:39:42] [PASSED] 11 VFs
[20:39:42] [PASSED] 12 VFs
[20:39:42] [PASSED] 13 VFs
[20:39:42] [PASSED] 14 VFs
[20:39:42] [PASSED] 15 VFs
[20:39:42] [PASSED] 16 VFs
[20:39:42] [PASSED] 17 VFs
[20:39:42] [PASSED] 18 VFs
[20:39:42] [PASSED] 19 VFs
[20:39:42] [PASSED] 20 VFs
[20:39:42] [PASSED] 21 VFs
[20:39:42] [PASSED] 22 VFs
[20:39:42] [PASSED] 23 VFs
[20:39:42] [PASSED] 24 VFs
[20:39:42] [PASSED] 25 VFs
[20:39:42] [PASSED] 26 VFs
[20:39:42] [PASSED] 27 VFs
[20:39:42] [PASSED] 28 VFs
[20:39:42] [PASSED] 29 VFs
[20:39:42] [PASSED] 30 VFs
[20:39:42] [PASSED] 31 VFs
[20:39:42] [PASSED] 32 VFs
[20:39:42] [PASSED] 33 VFs
[20:39:42] [PASSED] 34 VFs
[20:39:42] [PASSED] 35 VFs
[20:39:42] [PASSED] 36 VFs
[20:39:42] [PASSED] 37 VFs
[20:39:42] [PASSED] 38 VFs
[20:39:42] [PASSED] 39 VFs
[20:39:42] [PASSED] 40 VFs
[20:39:42] [PASSED] 41 VFs
[20:39:42] [PASSED] 42 VFs
[20:39:42] [PASSED] 43 VFs
[20:39:42] [PASSED] 44 VFs
[20:39:42] [PASSED] 45 VFs
[20:39:42] [PASSED] 46 VFs
[20:39:42] [PASSED] 47 VFs
[20:39:42] [PASSED] 48 VFs
[20:39:42] [PASSED] 49 VFs
[20:39:42] [PASSED] 50 VFs
[20:39:42] [PASSED] 51 VFs
[20:39:42] [PASSED] 52 VFs
[20:39:42] [PASSED] 53 VFs
[20:39:42] [PASSED] 54 VFs
[20:39:42] [PASSED] 55 VFs
[20:39:42] [PASSED] 56 VFs
[20:39:42] [PASSED] 57 VFs
[20:39:42] [PASSED] 58 VFs
[20:39:42] [PASSED] 59 VFs
[20:39:42] [PASSED] 60 VFs
[20:39:42] [PASSED] 61 VFs
[20:39:42] [PASSED] 62 VFs
[20:39:42] [PASSED] 63 VFs
[20:39:42] ================= [PASSED] fair_doorbells ==================
[20:39:42] ======================== fair_ggtt ========================
[20:39:42] [PASSED] 1 VF
[20:39:42] [PASSED] 2 VFs
[20:39:42] [PASSED] 3 VFs
[20:39:42] [PASSED] 4 VFs
[20:39:42] [PASSED] 5 VFs
[20:39:42] [PASSED] 6 VFs
[20:39:42] [PASSED] 7 VFs
[20:39:42] [PASSED] 8 VFs
[20:39:42] [PASSED] 9 VFs
[20:39:42] [PASSED] 10 VFs
[20:39:42] [PASSED] 11 VFs
[20:39:42] [PASSED] 12 VFs
[20:39:42] [PASSED] 13 VFs
[20:39:42] [PASSED] 14 VFs
[20:39:42] [PASSED] 15 VFs
[20:39:42] [PASSED] 16 VFs
[20:39:42] [PASSED] 17 VFs
[20:39:42] [PASSED] 18 VFs
[20:39:42] [PASSED] 19 VFs
[20:39:42] [PASSED] 20 VFs
[20:39:42] [PASSED] 21 VFs
[20:39:42] [PASSED] 22 VFs
[20:39:42] [PASSED] 23 VFs
[20:39:42] [PASSED] 24 VFs
[20:39:42] [PASSED] 25 VFs
[20:39:42] [PASSED] 26 VFs
[20:39:42] [PASSED] 27 VFs
[20:39:42] [PASSED] 28 VFs
[20:39:42] [PASSED] 29 VFs
[20:39:42] [PASSED] 30 VFs
[20:39:42] [PASSED] 31 VFs
[20:39:42] [PASSED] 32 VFs
[20:39:42] [PASSED] 33 VFs
[20:39:42] [PASSED] 34 VFs
[20:39:42] [PASSED] 35 VFs
[20:39:42] [PASSED] 36 VFs
[20:39:42] [PASSED] 37 VFs
[20:39:42] [PASSED] 38 VFs
[20:39:42] [PASSED] 39 VFs
[20:39:42] [PASSED] 40 VFs
[20:39:42] [PASSED] 41 VFs
[20:39:42] [PASSED] 42 VFs
[20:39:42] [PASSED] 43 VFs
[20:39:42] [PASSED] 44 VFs
[20:39:42] [PASSED] 45 VFs
[20:39:42] [PASSED] 46 VFs
[20:39:42] [PASSED] 47 VFs
[20:39:42] [PASSED] 48 VFs
[20:39:42] [PASSED] 49 VFs
[20:39:42] [PASSED] 50 VFs
[20:39:42] [PASSED] 51 VFs
[20:39:42] [PASSED] 52 VFs
[20:39:42] [PASSED] 53 VFs
[20:39:42] [PASSED] 54 VFs
[20:39:42] [PASSED] 55 VFs
[20:39:42] [PASSED] 56 VFs
[20:39:42] [PASSED] 57 VFs
[20:39:42] [PASSED] 58 VFs
[20:39:42] [PASSED] 59 VFs
[20:39:42] [PASSED] 60 VFs
[20:39:42] [PASSED] 61 VFs
[20:39:42] [PASSED] 62 VFs
[20:39:42] [PASSED] 63 VFs
[20:39:42] ==================== [PASSED] fair_ggtt ====================
[20:39:42] ================== [PASSED] pf_gt_config ===================
[20:39:42] ===================== lmtt (1 subtest) =====================
[20:39:42] ======================== test_ops =========================
[20:39:42] [PASSED] 2-level
[20:39:42] [PASSED] multi-level
[20:39:42] ==================== [PASSED] test_ops =====================
[20:39:42] ====================== [PASSED] lmtt =======================
[20:39:42] ================= pf_service (11 subtests) =================
[20:39:42] [PASSED] pf_negotiate_any
[20:39:42] [PASSED] pf_negotiate_base_match
[20:39:42] [PASSED] pf_negotiate_base_newer
[20:39:42] [PASSED] pf_negotiate_base_next
[20:39:42] [SKIPPED] pf_negotiate_base_older
[20:39:42] [PASSED] pf_negotiate_base_prev
[20:39:42] [PASSED] pf_negotiate_latest_match
[20:39:42] [PASSED] pf_negotiate_latest_newer
[20:39:42] [PASSED] pf_negotiate_latest_next
[20:39:42] [SKIPPED] pf_negotiate_latest_older
[20:39:42] [SKIPPED] pf_negotiate_latest_prev
[20:39:42] =================== [PASSED] pf_service ====================
[20:39:42] ================= xe_guc_g2g (2 subtests) ==================
[20:39:42] ============== xe_live_guc_g2g_kunit_default ==============
[20:39:42] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[20:39:42] ============== xe_live_guc_g2g_kunit_allmem ===============
[20:39:42] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[20:39:42] =================== [SKIPPED] xe_guc_g2g ===================
[20:39:42] =================== xe_mocs (2 subtests) ===================
[20:39:42] ================ xe_live_mocs_kernel_kunit ================
[20:39:42] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[20:39:42] ================ xe_live_mocs_reset_kunit =================
[20:39:42] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[20:39:42] ==================== [SKIPPED] xe_mocs =====================
[20:39:42] ================= xe_migrate (2 subtests) ==================
[20:39:42] ================= xe_migrate_sanity_kunit =================
[20:39:42] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[20:39:42] ================== xe_validate_ccs_kunit ==================
[20:39:42] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[20:39:42] =================== [SKIPPED] xe_migrate ===================
[20:39:42] ================== xe_dma_buf (1 subtest) ==================
[20:39:42] ==================== xe_dma_buf_kunit =====================
[20:39:42] ================ [SKIPPED] xe_dma_buf_kunit ================
[20:39:42] =================== [SKIPPED] xe_dma_buf ===================
[20:39:42] ================= xe_bo_shrink (1 subtest) =================
[20:39:42] =================== xe_bo_shrink_kunit ====================
[20:39:42] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[20:39:42] ================== [SKIPPED] xe_bo_shrink ==================
[20:39:42] ==================== xe_bo (2 subtests) ====================
[20:39:42] ================== xe_ccs_migrate_kunit ===================
[20:39:42] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[20:39:42] ==================== xe_bo_evict_kunit ====================
[20:39:42] =============== [SKIPPED] xe_bo_evict_kunit ================
[20:39:42] ===================== [SKIPPED] xe_bo ======================
[20:39:42] ==================== args (13 subtests) ====================
[20:39:42] [PASSED] count_args_test
[20:39:42] [PASSED] call_args_example
[20:39:42] [PASSED] call_args_test
[20:39:42] [PASSED] drop_first_arg_example
[20:39:42] [PASSED] drop_first_arg_test
[20:39:42] [PASSED] first_arg_example
[20:39:42] [PASSED] first_arg_test
[20:39:42] [PASSED] last_arg_example
[20:39:42] [PASSED] last_arg_test
[20:39:42] [PASSED] pick_arg_example
[20:39:42] [PASSED] if_args_example
[20:39:42] [PASSED] if_args_test
[20:39:42] [PASSED] sep_comma_example
[20:39:42] ====================== [PASSED] args =======================
[20:39:42] =================== xe_pci (3 subtests) ====================
[20:39:42] ==================== check_graphics_ip ====================
[20:39:42] [PASSED] 12.00 Xe_LP
[20:39:42] [PASSED] 12.10 Xe_LP+
[20:39:42] [PASSED] 12.55 Xe_HPG
[20:39:42] [PASSED] 12.60 Xe_HPC
[20:39:42] [PASSED] 12.70 Xe_LPG
[20:39:42] [PASSED] 12.71 Xe_LPG
[20:39:42] [PASSED] 12.74 Xe_LPG+
[20:39:42] [PASSED] 20.01 Xe2_HPG
[20:39:42] [PASSED] 20.02 Xe2_HPG
[20:39:42] [PASSED] 20.04 Xe2_LPG
[20:39:42] [PASSED] 30.00 Xe3_LPG
[20:39:42] [PASSED] 30.01 Xe3_LPG
[20:39:42] [PASSED] 30.03 Xe3_LPG
[20:39:42] [PASSED] 30.04 Xe3_LPG
[20:39:42] [PASSED] 30.05 Xe3_LPG
[20:39:42] [PASSED] 35.11 Xe3p_XPC
[20:39:42] ================ [PASSED] check_graphics_ip ================
[20:39:42] ===================== check_media_ip ======================
[20:39:42] [PASSED] 12.00 Xe_M
[20:39:42] [PASSED] 12.55 Xe_HPM
[20:39:42] [PASSED] 13.00 Xe_LPM+
[20:39:42] [PASSED] 13.01 Xe2_HPM
[20:39:42] [PASSED] 20.00 Xe2_LPM
[20:39:42] [PASSED] 30.00 Xe3_LPM
[20:39:42] [PASSED] 30.02 Xe3_LPM
[20:39:42] [PASSED] 35.00 Xe3p_LPM
[20:39:42] [PASSED] 35.03 Xe3p_HPM
[20:39:42] ================= [PASSED] check_media_ip ==================
[20:39:42] =================== check_platform_desc ===================
[20:39:42] [PASSED] 0x9A60 (TIGERLAKE)
[20:39:42] [PASSED] 0x9A68 (TIGERLAKE)
[20:39:42] [PASSED] 0x9A70 (TIGERLAKE)
[20:39:42] [PASSED] 0x9A40 (TIGERLAKE)
[20:39:42] [PASSED] 0x9A49 (TIGERLAKE)
[20:39:42] [PASSED] 0x9A59 (TIGERLAKE)
[20:39:42] [PASSED] 0x9A78 (TIGERLAKE)
[20:39:42] [PASSED] 0x9AC0 (TIGERLAKE)
[20:39:42] [PASSED] 0x9AC9 (TIGERLAKE)
[20:39:42] [PASSED] 0x9AD9 (TIGERLAKE)
[20:39:42] [PASSED] 0x9AF8 (TIGERLAKE)
[20:39:42] [PASSED] 0x4C80 (ROCKETLAKE)
[20:39:42] [PASSED] 0x4C8A (ROCKETLAKE)
[20:39:42] [PASSED] 0x4C8B (ROCKETLAKE)
[20:39:42] [PASSED] 0x4C8C (ROCKETLAKE)
[20:39:42] [PASSED] 0x4C90 (ROCKETLAKE)
[20:39:42] [PASSED] 0x4C9A (ROCKETLAKE)
[20:39:42] [PASSED] 0x4680 (ALDERLAKE_S)
[20:39:42] [PASSED] 0x4682 (ALDERLAKE_S)
[20:39:42] [PASSED] 0x4688 (ALDERLAKE_S)
[20:39:42] [PASSED] 0x468A (ALDERLAKE_S)
[20:39:42] [PASSED] 0x468B (ALDERLAKE_S)
[20:39:42] [PASSED] 0x4690 (ALDERLAKE_S)
[20:39:42] [PASSED] 0x4692 (ALDERLAKE_S)
[20:39:42] [PASSED] 0x4693 (ALDERLAKE_S)
[20:39:42] [PASSED] 0x46A0 (ALDERLAKE_P)
[20:39:42] [PASSED] 0x46A1 (ALDERLAKE_P)
[20:39:42] [PASSED] 0x46A2 (ALDERLAKE_P)
[20:39:42] [PASSED] 0x46A3 (ALDERLAKE_P)
[20:39:42] [PASSED] 0x46A6 (ALDERLAKE_P)
[20:39:42] [PASSED] 0x46A8 (ALDERLAKE_P)
[20:39:42] [PASSED] 0x46AA (ALDERLAKE_P)
[20:39:42] [PASSED] 0x462A (ALDERLAKE_P)
[20:39:42] [PASSED] 0x4626 (ALDERLAKE_P)
[20:39:42] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[20:39:42] [PASSED] 0x46B0 (ALDERLAKE_P)
[20:39:42] [PASSED] 0x46B1 (ALDERLAKE_P)
[20:39:42] [PASSED] 0x46B2 (ALDERLAKE_P)
[20:39:42] [PASSED] 0x46B3 (ALDERLAKE_P)
[20:39:42] [PASSED] 0x46C0 (ALDERLAKE_P)
[20:39:42] [PASSED] 0x46C1 (ALDERLAKE_P)
[20:39:42] [PASSED] 0x46C2 (ALDERLAKE_P)
[20:39:42] [PASSED] 0x46C3 (ALDERLAKE_P)
[20:39:42] [PASSED] 0x46D0 (ALDERLAKE_N)
[20:39:42] [PASSED] 0x46D1 (ALDERLAKE_N)
[20:39:42] [PASSED] 0x46D2 (ALDERLAKE_N)
[20:39:42] [PASSED] 0x46D3 (ALDERLAKE_N)
[20:39:42] [PASSED] 0x46D4 (ALDERLAKE_N)
[20:39:42] [PASSED] 0xA721 (ALDERLAKE_P)
[20:39:42] [PASSED] 0xA7A1 (ALDERLAKE_P)
[20:39:42] [PASSED] 0xA7A9 (ALDERLAKE_P)
[20:39:42] [PASSED] 0xA7AC (ALDERLAKE_P)
[20:39:42] [PASSED] 0xA7AD (ALDERLAKE_P)
[20:39:42] [PASSED] 0xA720 (ALDERLAKE_P)
[20:39:42] [PASSED] 0xA7A0 (ALDERLAKE_P)
[20:39:42] [PASSED] 0xA7A8 (ALDERLAKE_P)
[20:39:42] [PASSED] 0xA7AA (ALDERLAKE_P)
[20:39:42] [PASSED] 0xA7AB (ALDERLAKE_P)
[20:39:42] [PASSED] 0xA780 (ALDERLAKE_S)
[20:39:42] [PASSED] 0xA781 (ALDERLAKE_S)
[20:39:42] [PASSED] 0xA782 (ALDERLAKE_S)
[20:39:42] [PASSED] 0xA783 (ALDERLAKE_S)
[20:39:42] [PASSED] 0xA788 (ALDERLAKE_S)
[20:39:42] [PASSED] 0xA789 (ALDERLAKE_S)
[20:39:42] [PASSED] 0xA78A (ALDERLAKE_S)
[20:39:42] [PASSED] 0xA78B (ALDERLAKE_S)
[20:39:42] [PASSED] 0x4905 (DG1)
[20:39:42] [PASSED] 0x4906 (DG1)
[20:39:42] [PASSED] 0x4907 (DG1)
[20:39:42] [PASSED] 0x4908 (DG1)
[20:39:42] [PASSED] 0x4909 (DG1)
[20:39:42] [PASSED] 0x56C0 (DG2)
[20:39:42] [PASSED] 0x56C2 (DG2)
[20:39:42] [PASSED] 0x56C1 (DG2)
[20:39:42] [PASSED] 0x7D51 (METEORLAKE)
[20:39:42] [PASSED] 0x7DD1 (METEORLAKE)
[20:39:42] [PASSED] 0x7D41 (METEORLAKE)
[20:39:42] [PASSED] 0x7D67 (METEORLAKE)
[20:39:42] [PASSED] 0xB640 (METEORLAKE)
[20:39:42] [PASSED] 0x56A0 (DG2)
[20:39:42] [PASSED] 0x56A1 (DG2)
[20:39:42] [PASSED] 0x56A2 (DG2)
[20:39:42] [PASSED] 0x56BE (DG2)
[20:39:42] [PASSED] 0x56BF (DG2)
[20:39:42] [PASSED] 0x5690 (DG2)
[20:39:42] [PASSED] 0x5691 (DG2)
[20:39:42] [PASSED] 0x5692 (DG2)
[20:39:42] [PASSED] 0x56A5 (DG2)
[20:39:42] [PASSED] 0x56A6 (DG2)
[20:39:42] [PASSED] 0x56B0 (DG2)
[20:39:42] [PASSED] 0x56B1 (DG2)
[20:39:42] [PASSED] 0x56BA (DG2)
[20:39:42] [PASSED] 0x56BB (DG2)
[20:39:42] [PASSED] 0x56BC (DG2)
[20:39:42] [PASSED] 0x56BD (DG2)
[20:39:42] [PASSED] 0x5693 (DG2)
[20:39:42] [PASSED] 0x5694 (DG2)
[20:39:42] [PASSED] 0x5695 (DG2)
[20:39:42] [PASSED] 0x56A3 (DG2)
[20:39:42] [PASSED] 0x56A4 (DG2)
[20:39:42] [PASSED] 0x56B2 (DG2)
[20:39:42] [PASSED] 0x56B3 (DG2)
[20:39:42] [PASSED] 0x5696 (DG2)
[20:39:42] [PASSED] 0x5697 (DG2)
[20:39:42] [PASSED] 0xB69 (PVC)
[20:39:42] [PASSED] 0xB6E (PVC)
[20:39:42] [PASSED] 0xBD4 (PVC)
[20:39:42] [PASSED] 0xBD5 (PVC)
[20:39:42] [PASSED] 0xBD6 (PVC)
[20:39:42] [PASSED] 0xBD7 (PVC)
[20:39:42] [PASSED] 0xBD8 (PVC)
[20:39:42] [PASSED] 0xBD9 (PVC)
[20:39:42] [PASSED] 0xBDA (PVC)
[20:39:42] [PASSED] 0xBDB (PVC)
[20:39:42] [PASSED] 0xBE0 (PVC)
[20:39:42] [PASSED] 0xBE1 (PVC)
[20:39:42] [PASSED] 0xBE5 (PVC)
[20:39:42] [PASSED] 0x7D40 (METEORLAKE)
[20:39:42] [PASSED] 0x7D45 (METEORLAKE)
[20:39:42] [PASSED] 0x7D55 (METEORLAKE)
[20:39:42] [PASSED] 0x7D60 (METEORLAKE)
[20:39:42] [PASSED] 0x7DD5 (METEORLAKE)
[20:39:42] [PASSED] 0x6420 (LUNARLAKE)
[20:39:42] [PASSED] 0x64A0 (LUNARLAKE)
[20:39:42] [PASSED] 0x64B0 (LUNARLAKE)
[20:39:42] [PASSED] 0xE202 (BATTLEMAGE)
[20:39:42] [PASSED] 0xE209 (BATTLEMAGE)
[20:39:42] [PASSED] 0xE20B (BATTLEMAGE)
[20:39:42] [PASSED] 0xE20C (BATTLEMAGE)
[20:39:42] [PASSED] 0xE20D (BATTLEMAGE)
[20:39:42] [PASSED] 0xE210 (BATTLEMAGE)
[20:39:42] [PASSED] 0xE211 (BATTLEMAGE)
[20:39:42] [PASSED] 0xE212 (BATTLEMAGE)
[20:39:42] [PASSED] 0xE216 (BATTLEMAGE)
[20:39:42] [PASSED] 0xE220 (BATTLEMAGE)
[20:39:42] [PASSED] 0xE221 (BATTLEMAGE)
[20:39:42] [PASSED] 0xE222 (BATTLEMAGE)
[20:39:42] [PASSED] 0xE223 (BATTLEMAGE)
[20:39:42] [PASSED] 0xB080 (PANTHERLAKE)
[20:39:42] [PASSED] 0xB081 (PANTHERLAKE)
[20:39:42] [PASSED] 0xB082 (PANTHERLAKE)
[20:39:42] [PASSED] 0xB083 (PANTHERLAKE)
[20:39:42] [PASSED] 0xB084 (PANTHERLAKE)
[20:39:42] [PASSED] 0xB085 (PANTHERLAKE)
[20:39:42] [PASSED] 0xB086 (PANTHERLAKE)
[20:39:42] [PASSED] 0xB087 (PANTHERLAKE)
[20:39:42] [PASSED] 0xB08F (PANTHERLAKE)
[20:39:42] [PASSED] 0xB090 (PANTHERLAKE)
[20:39:42] [PASSED] 0xB0A0 (PANTHERLAKE)
[20:39:42] [PASSED] 0xB0B0 (PANTHERLAKE)
[20:39:42] [PASSED] 0xFD80 (PANTHERLAKE)
[20:39:42] [PASSED] 0xFD81 (PANTHERLAKE)
[20:39:42] [PASSED] 0xD740 (NOVALAKE_S)
[20:39:42] [PASSED] 0xD741 (NOVALAKE_S)
[20:39:42] [PASSED] 0xD742 (NOVALAKE_S)
[20:39:42] [PASSED] 0xD743 (NOVALAKE_S)
[20:39:42] [PASSED] 0xD744 (NOVALAKE_S)
[20:39:42] [PASSED] 0xD745 (NOVALAKE_S)
[20:39:42] [PASSED] 0x674C (CRESCENTISLAND)
[20:39:42] =============== [PASSED] check_platform_desc ===============
[20:39:42] ===================== [PASSED] xe_pci ======================
[20:39:42] =================== xe_rtp (2 subtests) ====================
[20:39:42] =============== xe_rtp_process_to_sr_tests ================
[20:39:42] [PASSED] coalesce-same-reg
[20:39:42] [PASSED] no-match-no-add
[20:39:42] [PASSED] match-or
[20:39:42] [PASSED] match-or-xfail
[20:39:42] [PASSED] no-match-no-add-multiple-rules
[20:39:42] [PASSED] two-regs-two-entries
[20:39:42] [PASSED] clr-one-set-other
[20:39:42] [PASSED] set-field
[20:39:42] [PASSED] conflict-duplicate
[20:39:42] [PASSED] conflict-not-disjoint
[20:39:42] [PASSED] conflict-reg-type
[20:39:42] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[20:39:42] ================== xe_rtp_process_tests ===================
[20:39:42] [PASSED] active1
[20:39:42] [PASSED] active2
[20:39:42] [PASSED] active-inactive
[20:39:42] [PASSED] inactive-active
[20:39:42] [PASSED] inactive-1st_or_active-inactive
[20:39:42] [PASSED] inactive-2nd_or_active-inactive
[20:39:42] [PASSED] inactive-last_or_active-inactive
[20:39:42] [PASSED] inactive-no_or_active-inactive
[20:39:42] ============== [PASSED] xe_rtp_process_tests ===============
[20:39:42] ===================== [PASSED] xe_rtp ======================
[20:39:42] ==================== xe_wa (1 subtest) =====================
[20:39:42] ======================== xe_wa_gt =========================
[20:39:42] [PASSED] TIGERLAKE B0
[20:39:42] [PASSED] DG1 A0
[20:39:42] [PASSED] DG1 B0
[20:39:42] [PASSED] ALDERLAKE_S A0
[20:39:42] [PASSED] ALDERLAKE_S B0
[20:39:42] [PASSED] ALDERLAKE_S C0
[20:39:42] [PASSED] ALDERLAKE_S D0
[20:39:42] [PASSED] ALDERLAKE_P A0
[20:39:42] [PASSED] ALDERLAKE_P B0
[20:39:42] [PASSED] ALDERLAKE_P C0
[20:39:42] [PASSED] ALDERLAKE_S RPLS D0
[20:39:42] [PASSED] ALDERLAKE_P RPLU E0
[20:39:42] [PASSED] DG2 G10 C0
[20:39:42] [PASSED] DG2 G11 B1
[20:39:42] [PASSED] DG2 G12 A1
[20:39:42] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[20:39:42] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[20:39:42] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[20:39:42] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[20:39:42] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[20:39:42] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[20:39:42] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[20:39:42] ==================== [PASSED] xe_wa_gt =====================
[20:39:42] ====================== [PASSED] xe_wa ======================
[20:39:42] ============================================================
[20:39:42] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[20:39:42] Elapsed time: 44.406s total, 5.252s configuring, 38.636s building, 0.499s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[20:39:42] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[20:39:43] 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=25
[20:40:14] Starting KUnit Kernel (1/1)...
[20:40:14] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[20:40:14] ============ drm_test_pick_cmdline (2 subtests) ============
[20:40:14] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[20:40:14] =============== drm_test_pick_cmdline_named ===============
[20:40:14] [PASSED] NTSC
[20:40:14] [PASSED] NTSC-J
[20:40:14] [PASSED] PAL
[20:40:14] [PASSED] PAL-M
[20:40:14] =========== [PASSED] drm_test_pick_cmdline_named ===========
[20:40:14] ============== [PASSED] drm_test_pick_cmdline ==============
[20:40:14] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[20:40:14] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[20:40:14] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[20:40:14] =========== drm_validate_clone_mode (2 subtests) ===========
[20:40:14] ============== drm_test_check_in_clone_mode ===============
[20:40:14] [PASSED] in_clone_mode
[20:40:14] [PASSED] not_in_clone_mode
[20:40:14] ========== [PASSED] drm_test_check_in_clone_mode ===========
[20:40:14] =============== drm_test_check_valid_clones ===============
[20:40:14] [PASSED] not_in_clone_mode
[20:40:14] [PASSED] valid_clone
[20:40:14] [PASSED] invalid_clone
[20:40:14] =========== [PASSED] drm_test_check_valid_clones ===========
[20:40:14] ============= [PASSED] drm_validate_clone_mode =============
[20:40:14] ============= drm_validate_modeset (1 subtest) =============
[20:40:14] [PASSED] drm_test_check_connector_changed_modeset
[20:40:14] ============== [PASSED] drm_validate_modeset ===============
[20:40:14] ====== drm_test_bridge_get_current_state (2 subtests) ======
[20:40:14] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[20:40:14] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[20:40:14] ======== [PASSED] drm_test_bridge_get_current_state ========
[20:40:14] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[20:40:14] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[20:40:14] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[20:40:14] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[20:40:14] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[20:40:14] ============== drm_bridge_alloc (2 subtests) ===============
[20:40:14] [PASSED] drm_test_drm_bridge_alloc_basic
[20:40:14] [PASSED] drm_test_drm_bridge_alloc_get_put
[20:40:14] ================ [PASSED] drm_bridge_alloc =================
[20:40:14] ============= drm_cmdline_parser (40 subtests) =============
[20:40:14] [PASSED] drm_test_cmdline_force_d_only
[20:40:14] [PASSED] drm_test_cmdline_force_D_only_dvi
[20:40:14] [PASSED] drm_test_cmdline_force_D_only_hdmi
[20:40:14] [PASSED] drm_test_cmdline_force_D_only_not_digital
[20:40:14] [PASSED] drm_test_cmdline_force_e_only
[20:40:14] [PASSED] drm_test_cmdline_res
[20:40:14] [PASSED] drm_test_cmdline_res_vesa
[20:40:14] [PASSED] drm_test_cmdline_res_vesa_rblank
[20:40:14] [PASSED] drm_test_cmdline_res_rblank
[20:40:14] [PASSED] drm_test_cmdline_res_bpp
[20:40:14] [PASSED] drm_test_cmdline_res_refresh
[20:40:14] [PASSED] drm_test_cmdline_res_bpp_refresh
[20:40:14] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[20:40:14] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[20:40:14] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[20:40:14] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[20:40:14] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[20:40:14] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[20:40:14] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[20:40:14] [PASSED] drm_test_cmdline_res_margins_force_on
[20:40:14] [PASSED] drm_test_cmdline_res_vesa_margins
[20:40:14] [PASSED] drm_test_cmdline_name
[20:40:14] [PASSED] drm_test_cmdline_name_bpp
[20:40:14] [PASSED] drm_test_cmdline_name_option
[20:40:14] [PASSED] drm_test_cmdline_name_bpp_option
[20:40:14] [PASSED] drm_test_cmdline_rotate_0
[20:40:14] [PASSED] drm_test_cmdline_rotate_90
[20:40:14] [PASSED] drm_test_cmdline_rotate_180
[20:40:14] [PASSED] drm_test_cmdline_rotate_270
[20:40:14] [PASSED] drm_test_cmdline_hmirror
[20:40:14] [PASSED] drm_test_cmdline_vmirror
[20:40:14] [PASSED] drm_test_cmdline_margin_options
[20:40:14] [PASSED] drm_test_cmdline_multiple_options
[20:40:14] [PASSED] drm_test_cmdline_bpp_extra_and_option
[20:40:14] [PASSED] drm_test_cmdline_extra_and_option
[20:40:14] [PASSED] drm_test_cmdline_freestanding_options
[20:40:14] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[20:40:14] [PASSED] drm_test_cmdline_panel_orientation
[20:40:14] ================ drm_test_cmdline_invalid =================
[20:40:14] [PASSED] margin_only
[20:40:14] [PASSED] interlace_only
[20:40:14] [PASSED] res_missing_x
[20:40:14] [PASSED] res_missing_y
[20:40:14] [PASSED] res_bad_y
[20:40:14] [PASSED] res_missing_y_bpp
[20:40:14] [PASSED] res_bad_bpp
[20:40:14] [PASSED] res_bad_refresh
[20:40:14] [PASSED] res_bpp_refresh_force_on_off
[20:40:14] [PASSED] res_invalid_mode
[20:40:14] [PASSED] res_bpp_wrong_place_mode
[20:40:14] [PASSED] name_bpp_refresh
[20:40:14] [PASSED] name_refresh
[20:40:14] [PASSED] name_refresh_wrong_mode
[20:40:14] [PASSED] name_refresh_invalid_mode
[20:40:14] [PASSED] rotate_multiple
[20:40:14] [PASSED] rotate_invalid_val
[20:40:14] [PASSED] rotate_truncated
[20:40:14] [PASSED] invalid_option
[20:40:14] [PASSED] invalid_tv_option
[20:40:14] [PASSED] truncated_tv_option
[20:40:14] ============ [PASSED] drm_test_cmdline_invalid =============
[20:40:14] =============== drm_test_cmdline_tv_options ===============
[20:40:14] [PASSED] NTSC
[20:40:14] [PASSED] NTSC_443
[20:40:14] [PASSED] NTSC_J
[20:40:14] [PASSED] PAL
[20:40:14] [PASSED] PAL_M
[20:40:14] [PASSED] PAL_N
[20:40:14] [PASSED] SECAM
[20:40:14] [PASSED] MONO_525
[20:40:14] [PASSED] MONO_625
[20:40:14] =========== [PASSED] drm_test_cmdline_tv_options ===========
[20:40:14] =============== [PASSED] drm_cmdline_parser ================
[20:40:14] ========== drmm_connector_hdmi_init (20 subtests) ==========
[20:40:14] [PASSED] drm_test_connector_hdmi_init_valid
[20:40:14] [PASSED] drm_test_connector_hdmi_init_bpc_8
[20:40:14] [PASSED] drm_test_connector_hdmi_init_bpc_10
[20:40:14] [PASSED] drm_test_connector_hdmi_init_bpc_12
[20:40:14] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[20:40:14] [PASSED] drm_test_connector_hdmi_init_bpc_null
[20:40:14] [PASSED] drm_test_connector_hdmi_init_formats_empty
[20:40:14] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[20:40:14] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[20:40:14] [PASSED] supported_formats=0x9 yuv420_allowed=1
[20:40:14] [PASSED] supported_formats=0x9 yuv420_allowed=0
[20:40:14] [PASSED] supported_formats=0x3 yuv420_allowed=1
[20:40:14] [PASSED] supported_formats=0x3 yuv420_allowed=0
[20:40:14] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[20:40:14] [PASSED] drm_test_connector_hdmi_init_null_ddc
[20:40:14] [PASSED] drm_test_connector_hdmi_init_null_product
[20:40:14] [PASSED] drm_test_connector_hdmi_init_null_vendor
[20:40:14] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[20:40:14] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[20:40:14] [PASSED] drm_test_connector_hdmi_init_product_valid
[20:40:14] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[20:40:14] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[20:40:14] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[20:40:14] ========= drm_test_connector_hdmi_init_type_valid =========
[20:40:14] [PASSED] HDMI-A
[20:40:14] [PASSED] HDMI-B
[20:40:14] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[20:40:14] ======== drm_test_connector_hdmi_init_type_invalid ========
[20:40:14] [PASSED] Unknown
[20:40:14] [PASSED] VGA
[20:40:14] [PASSED] DVI-I
[20:40:14] [PASSED] DVI-D
[20:40:14] [PASSED] DVI-A
[20:40:14] [PASSED] Composite
[20:40:14] [PASSED] SVIDEO
[20:40:14] [PASSED] LVDS
[20:40:14] [PASSED] Component
[20:40:14] [PASSED] DIN
[20:40:14] [PASSED] DP
[20:40:14] [PASSED] TV
[20:40:14] [PASSED] eDP
[20:40:14] [PASSED] Virtual
[20:40:14] [PASSED] DSI
[20:40:14] [PASSED] DPI
[20:40:14] [PASSED] Writeback
[20:40:14] [PASSED] SPI
[20:40:14] [PASSED] USB
[20:40:14] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[20:40:14] ============ [PASSED] drmm_connector_hdmi_init =============
[20:40:14] ============= drmm_connector_init (3 subtests) =============
[20:40:14] [PASSED] drm_test_drmm_connector_init
[20:40:14] [PASSED] drm_test_drmm_connector_init_null_ddc
[20:40:14] ========= drm_test_drmm_connector_init_type_valid =========
[20:40:14] [PASSED] Unknown
[20:40:14] [PASSED] VGA
[20:40:14] [PASSED] DVI-I
[20:40:14] [PASSED] DVI-D
[20:40:14] [PASSED] DVI-A
[20:40:14] [PASSED] Composite
[20:40:14] [PASSED] SVIDEO
[20:40:14] [PASSED] LVDS
[20:40:14] [PASSED] Component
[20:40:14] [PASSED] DIN
[20:40:14] [PASSED] DP
[20:40:14] [PASSED] HDMI-A
[20:40:14] [PASSED] HDMI-B
[20:40:14] [PASSED] TV
[20:40:14] [PASSED] eDP
[20:40:14] [PASSED] Virtual
[20:40:14] [PASSED] DSI
[20:40:14] [PASSED] DPI
[20:40:14] [PASSED] Writeback
[20:40:14] [PASSED] SPI
[20:40:14] [PASSED] USB
[20:40:14] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[20:40:14] =============== [PASSED] drmm_connector_init ===============
[20:40:14] ========= drm_connector_dynamic_init (6 subtests) ==========
[20:40:14] [PASSED] drm_test_drm_connector_dynamic_init
[20:40:14] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[20:40:14] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[20:40:14] [PASSED] drm_test_drm_connector_dynamic_init_properties
[20:40:14] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[20:40:14] [PASSED] Unknown
[20:40:14] [PASSED] VGA
[20:40:14] [PASSED] DVI-I
[20:40:14] [PASSED] DVI-D
[20:40:14] [PASSED] DVI-A
[20:40:14] [PASSED] Composite
[20:40:14] [PASSED] SVIDEO
[20:40:14] [PASSED] LVDS
[20:40:14] [PASSED] Component
[20:40:14] [PASSED] DIN
[20:40:14] [PASSED] DP
[20:40:14] [PASSED] HDMI-A
[20:40:14] [PASSED] HDMI-B
[20:40:14] [PASSED] TV
[20:40:14] [PASSED] eDP
[20:40:14] [PASSED] Virtual
[20:40:14] [PASSED] DSI
[20:40:14] [PASSED] DPI
[20:40:14] [PASSED] Writeback
[20:40:14] [PASSED] SPI
[20:40:14] [PASSED] USB
[20:40:14] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[20:40:14] ======== drm_test_drm_connector_dynamic_init_name =========
[20:40:14] [PASSED] Unknown
[20:40:14] [PASSED] VGA
[20:40:14] [PASSED] DVI-I
[20:40:14] [PASSED] DVI-D
[20:40:14] [PASSED] DVI-A
[20:40:14] [PASSED] Composite
[20:40:14] [PASSED] SVIDEO
[20:40:14] [PASSED] LVDS
[20:40:14] [PASSED] Component
[20:40:14] [PASSED] DIN
[20:40:14] [PASSED] DP
[20:40:14] [PASSED] HDMI-A
[20:40:14] [PASSED] HDMI-B
[20:40:14] [PASSED] TV
[20:40:14] [PASSED] eDP
[20:40:14] [PASSED] Virtual
[20:40:14] [PASSED] DSI
[20:40:14] [PASSED] DPI
[20:40:14] [PASSED] Writeback
[20:40:14] [PASSED] SPI
[20:40:14] [PASSED] USB
[20:40:14] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[20:40:14] =========== [PASSED] drm_connector_dynamic_init ============
[20:40:14] ==== drm_connector_dynamic_register_early (4 subtests) =====
[20:40:14] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[20:40:14] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[20:40:14] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[20:40:14] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[20:40:14] ====== [PASSED] drm_connector_dynamic_register_early =======
[20:40:14] ======= drm_connector_dynamic_register (7 subtests) ========
[20:40:14] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[20:40:14] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[20:40:14] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[20:40:14] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[20:40:14] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[20:40:14] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[20:40:14] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[20:40:14] ========= [PASSED] drm_connector_dynamic_register ==========
[20:40:14] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[20:40:14] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[20:40:14] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[20:40:14] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[20:40:14] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[20:40:14] ========== drm_test_get_tv_mode_from_name_valid ===========
[20:40:14] [PASSED] NTSC
[20:40:14] [PASSED] NTSC-443
[20:40:14] [PASSED] NTSC-J
[20:40:14] [PASSED] PAL
[20:40:14] [PASSED] PAL-M
[20:40:14] [PASSED] PAL-N
[20:40:14] [PASSED] SECAM
[20:40:14] [PASSED] Mono
[20:40:14] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[20:40:14] [PASSED] drm_test_get_tv_mode_from_name_truncated
[20:40:14] ============ [PASSED] drm_get_tv_mode_from_name ============
[20:40:14] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[20:40:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[20:40:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[20:40:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[20:40:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[20:40:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[20:40:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[20:40:14] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[20:40:14] [PASSED] VIC 96
[20:40:14] [PASSED] VIC 97
[20:40:14] [PASSED] VIC 101
[20:40:14] [PASSED] VIC 102
[20:40:14] [PASSED] VIC 106
[20:40:14] [PASSED] VIC 107
[20:40:14] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[20:40:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[20:40:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[20:40:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[20:40:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[20:40:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[20:40:14] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[20:40:14] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[20:40:14] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[20:40:14] [PASSED] Automatic
[20:40:14] [PASSED] Full
[20:40:14] [PASSED] Limited 16:235
[20:40:14] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[20:40:14] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[20:40:14] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[20:40:14] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[20:40:14] === drm_test_drm_hdmi_connector_get_output_format_name ====
[20:40:14] [PASSED] RGB
[20:40:14] [PASSED] YUV 4:2:0
[20:40:14] [PASSED] YUV 4:2:2
[20:40:14] [PASSED] YUV 4:4:4
[20:40:14] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[20:40:14] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[20:40:14] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[20:40:14] ============= drm_damage_helper (21 subtests) ==============
[20:40:14] [PASSED] drm_test_damage_iter_no_damage
[20:40:14] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[20:40:14] [PASSED] drm_test_damage_iter_no_damage_src_moved
[20:40:14] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[20:40:14] [PASSED] drm_test_damage_iter_no_damage_not_visible
[20:40:14] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[20:40:14] [PASSED] drm_test_damage_iter_no_damage_no_fb
[20:40:14] [PASSED] drm_test_damage_iter_simple_damage
[20:40:14] [PASSED] drm_test_damage_iter_single_damage
[20:40:14] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[20:40:14] [PASSED] drm_test_damage_iter_single_damage_outside_src
[20:40:14] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[20:40:14] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[20:40:14] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[20:40:14] [PASSED] drm_test_damage_iter_single_damage_src_moved
[20:40:14] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[20:40:14] [PASSED] drm_test_damage_iter_damage
[20:40:14] [PASSED] drm_test_damage_iter_damage_one_intersect
[20:40:14] [PASSED] drm_test_damage_iter_damage_one_outside
[20:40:14] [PASSED] drm_test_damage_iter_damage_src_moved
[20:40:14] [PASSED] drm_test_damage_iter_damage_not_visible
[20:40:14] ================ [PASSED] drm_damage_helper ================
[20:40:14] ============== drm_dp_mst_helper (3 subtests) ==============
[20:40:14] ============== drm_test_dp_mst_calc_pbn_mode ==============
[20:40:14] [PASSED] Clock 154000 BPP 30 DSC disabled
[20:40:14] [PASSED] Clock 234000 BPP 30 DSC disabled
[20:40:14] [PASSED] Clock 297000 BPP 24 DSC disabled
[20:40:14] [PASSED] Clock 332880 BPP 24 DSC enabled
[20:40:14] [PASSED] Clock 324540 BPP 24 DSC enabled
[20:40:14] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[20:40:14] ============== drm_test_dp_mst_calc_pbn_div ===============
[20:40:14] [PASSED] Link rate 2000000 lane count 4
[20:40:14] [PASSED] Link rate 2000000 lane count 2
[20:40:14] [PASSED] Link rate 2000000 lane count 1
[20:40:14] [PASSED] Link rate 1350000 lane count 4
[20:40:14] [PASSED] Link rate 1350000 lane count 2
[20:40:14] [PASSED] Link rate 1350000 lane count 1
[20:40:14] [PASSED] Link rate 1000000 lane count 4
[20:40:14] [PASSED] Link rate 1000000 lane count 2
[20:40:14] [PASSED] Link rate 1000000 lane count 1
[20:40:14] [PASSED] Link rate 810000 lane count 4
[20:40:14] [PASSED] Link rate 810000 lane count 2
[20:40:14] [PASSED] Link rate 810000 lane count 1
[20:40:14] [PASSED] Link rate 540000 lane count 4
[20:40:14] [PASSED] Link rate 540000 lane count 2
[20:40:14] [PASSED] Link rate 540000 lane count 1
[20:40:14] [PASSED] Link rate 270000 lane count 4
[20:40:14] [PASSED] Link rate 270000 lane count 2
[20:40:14] [PASSED] Link rate 270000 lane count 1
[20:40:14] [PASSED] Link rate 162000 lane count 4
[20:40:14] [PASSED] Link rate 162000 lane count 2
[20:40:14] [PASSED] Link rate 162000 lane count 1
[20:40:14] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[20:40:14] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[20:40:14] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[20:40:14] [PASSED] DP_POWER_UP_PHY with port number
[20:40:14] [PASSED] DP_POWER_DOWN_PHY with port number
[20:40:14] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[20:40:14] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[20:40:14] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[20:40:14] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[20:40:14] [PASSED] DP_QUERY_PAYLOAD with port number
[20:40:14] [PASSED] DP_QUERY_PAYLOAD with VCPI
[20:40:14] [PASSED] DP_REMOTE_DPCD_READ with port number
[20:40:14] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[20:40:14] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[20:40:14] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[20:40:14] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[20:40:14] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[20:40:14] [PASSED] DP_REMOTE_I2C_READ with port number
[20:40:14] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[20:40:14] [PASSED] DP_REMOTE_I2C_READ with transactions array
[20:40:14] [PASSED] DP_REMOTE_I2C_WRITE with port number
[20:40:14] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[20:40:14] [PASSED] DP_REMOTE_I2C_WRITE with data array
[20:40:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[20:40:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[20:40:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[20:40:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[20:40:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[20:40:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[20:40:14] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[20:40:14] ================ [PASSED] drm_dp_mst_helper ================
[20:40:14] ================== drm_exec (7 subtests) ===================
[20:40:14] [PASSED] sanitycheck
[20:40:14] [PASSED] test_lock
[20:40:14] [PASSED] test_lock_unlock
[20:40:14] [PASSED] test_duplicates
[20:40:14] [PASSED] test_prepare
[20:40:14] [PASSED] test_prepare_array
[20:40:14] [PASSED] test_multiple_loops
[20:40:14] ==================== [PASSED] drm_exec =====================
[20:40:14] =========== drm_format_helper_test (17 subtests) ===========
[20:40:14] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[20:40:14] [PASSED] single_pixel_source_buffer
[20:40:14] [PASSED] single_pixel_clip_rectangle
[20:40:14] [PASSED] well_known_colors
[20:40:14] [PASSED] destination_pitch
[20:40:14] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[20:40:14] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[20:40:14] [PASSED] single_pixel_source_buffer
[20:40:14] [PASSED] single_pixel_clip_rectangle
[20:40:14] [PASSED] well_known_colors
[20:40:14] [PASSED] destination_pitch
[20:40:14] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[20:40:14] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[20:40:14] [PASSED] single_pixel_source_buffer
[20:40:14] [PASSED] single_pixel_clip_rectangle
[20:40:14] [PASSED] well_known_colors
[20:40:14] [PASSED] destination_pitch
[20:40:14] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[20:40:14] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[20:40:14] [PASSED] single_pixel_source_buffer
[20:40:14] [PASSED] single_pixel_clip_rectangle
[20:40:14] [PASSED] well_known_colors
[20:40:14] [PASSED] destination_pitch
[20:40:14] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[20:40:14] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[20:40:14] [PASSED] single_pixel_source_buffer
[20:40:14] [PASSED] single_pixel_clip_rectangle
[20:40:14] [PASSED] well_known_colors
[20:40:14] [PASSED] destination_pitch
[20:40:14] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[20:40:14] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[20:40:14] [PASSED] single_pixel_source_buffer
[20:40:14] [PASSED] single_pixel_clip_rectangle
[20:40:14] [PASSED] well_known_colors
[20:40:14] [PASSED] destination_pitch
[20:40:14] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[20:40:14] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[20:40:14] [PASSED] single_pixel_source_buffer
[20:40:14] [PASSED] single_pixel_clip_rectangle
[20:40:14] [PASSED] well_known_colors
[20:40:14] [PASSED] destination_pitch
[20:40:14] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[20:40:14] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[20:40:14] [PASSED] single_pixel_source_buffer
[20:40:14] [PASSED] single_pixel_clip_rectangle
[20:40:14] [PASSED] well_known_colors
[20:40:14] [PASSED] destination_pitch
[20:40:14] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[20:40:14] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[20:40:14] [PASSED] single_pixel_source_buffer
[20:40:14] [PASSED] single_pixel_clip_rectangle
[20:40:14] [PASSED] well_known_colors
[20:40:14] [PASSED] destination_pitch
[20:40:14] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[20:40:14] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[20:40:14] [PASSED] single_pixel_source_buffer
[20:40:14] [PASSED] single_pixel_clip_rectangle
[20:40:14] [PASSED] well_known_colors
[20:40:14] [PASSED] destination_pitch
[20:40:14] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[20:40:14] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[20:40:14] [PASSED] single_pixel_source_buffer
[20:40:14] [PASSED] single_pixel_clip_rectangle
[20:40:14] [PASSED] well_known_colors
[20:40:14] [PASSED] destination_pitch
[20:40:14] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[20:40:14] ============== drm_test_fb_xrgb8888_to_mono ===============
[20:40:14] [PASSED] single_pixel_source_buffer
[20:40:14] [PASSED] single_pixel_clip_rectangle
[20:40:14] [PASSED] well_known_colors
[20:40:14] [PASSED] destination_pitch
[20:40:14] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[20:40:14] ==================== drm_test_fb_swab =====================
[20:40:14] [PASSED] single_pixel_source_buffer
[20:40:14] [PASSED] single_pixel_clip_rectangle
[20:40:14] [PASSED] well_known_colors
[20:40:14] [PASSED] destination_pitch
[20:40:14] ================ [PASSED] drm_test_fb_swab =================
[20:40:14] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[20:40:14] [PASSED] single_pixel_source_buffer
[20:40:14] [PASSED] single_pixel_clip_rectangle
[20:40:14] [PASSED] well_known_colors
[20:40:14] [PASSED] destination_pitch
[20:40:14] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[20:40:14] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[20:40:14] [PASSED] single_pixel_source_buffer
[20:40:14] [PASSED] single_pixel_clip_rectangle
[20:40:14] [PASSED] well_known_colors
[20:40:14] [PASSED] destination_pitch
[20:40:14] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[20:40:14] ================= drm_test_fb_clip_offset =================
[20:40:14] [PASSED] pass through
[20:40:14] [PASSED] horizontal offset
[20:40:14] [PASSED] vertical offset
[20:40:14] [PASSED] horizontal and vertical offset
[20:40:14] [PASSED] horizontal offset (custom pitch)
[20:40:14] [PASSED] vertical offset (custom pitch)
[20:40:14] [PASSED] horizontal and vertical offset (custom pitch)
[20:40:14] ============= [PASSED] drm_test_fb_clip_offset =============
[20:40:14] =================== drm_test_fb_memcpy ====================
[20:40:14] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[20:40:14] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[20:40:14] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[20:40:14] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[20:40:14] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[20:40:14] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[20:40:14] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[20:40:14] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[20:40:14] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[20:40:14] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[20:40:14] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[20:40:14] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[20:40:14] =============== [PASSED] drm_test_fb_memcpy ================
[20:40:14] ============= [PASSED] drm_format_helper_test ==============
[20:40:14] ================= drm_format (18 subtests) =================
[20:40:14] [PASSED] drm_test_format_block_width_invalid
[20:40:14] [PASSED] drm_test_format_block_width_one_plane
[20:40:14] [PASSED] drm_test_format_block_width_two_plane
[20:40:14] [PASSED] drm_test_format_block_width_three_plane
[20:40:14] [PASSED] drm_test_format_block_width_tiled
[20:40:14] [PASSED] drm_test_format_block_height_invalid
[20:40:14] [PASSED] drm_test_format_block_height_one_plane
[20:40:14] [PASSED] drm_test_format_block_height_two_plane
[20:40:14] [PASSED] drm_test_format_block_height_three_plane
[20:40:14] [PASSED] drm_test_format_block_height_tiled
[20:40:14] [PASSED] drm_test_format_min_pitch_invalid
[20:40:14] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[20:40:14] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[20:40:14] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[20:40:14] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[20:40:14] [PASSED] drm_test_format_min_pitch_two_plane
[20:40:14] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[20:40:14] [PASSED] drm_test_format_min_pitch_tiled
[20:40:14] =================== [PASSED] drm_format ====================
[20:40:14] ============== drm_framebuffer (10 subtests) ===============
[20:40:14] ========== drm_test_framebuffer_check_src_coords ==========
[20:40:14] [PASSED] Success: source fits into fb
[20:40:14] [PASSED] Fail: overflowing fb with x-axis coordinate
[20:40:14] [PASSED] Fail: overflowing fb with y-axis coordinate
[20:40:14] [PASSED] Fail: overflowing fb with source width
[20:40:14] [PASSED] Fail: overflowing fb with source height
[20:40:14] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[20:40:14] [PASSED] drm_test_framebuffer_cleanup
[20:40:14] =============== drm_test_framebuffer_create ===============
[20:40:14] [PASSED] ABGR8888 normal sizes
[20:40:14] [PASSED] ABGR8888 max sizes
[20:40:14] [PASSED] ABGR8888 pitch greater than min required
[20:40:14] [PASSED] ABGR8888 pitch less than min required
[20:40:14] [PASSED] ABGR8888 Invalid width
[20:40:14] [PASSED] ABGR8888 Invalid buffer handle
[20:40:14] [PASSED] No pixel format
[20:40:14] [PASSED] ABGR8888 Width 0
[20:40:14] [PASSED] ABGR8888 Height 0
[20:40:14] [PASSED] ABGR8888 Out of bound height * pitch combination
[20:40:14] [PASSED] ABGR8888 Large buffer offset
[20:40:14] [PASSED] ABGR8888 Buffer offset for inexistent plane
[20:40:14] [PASSED] ABGR8888 Invalid flag
[20:40:14] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[20:40:14] [PASSED] ABGR8888 Valid buffer modifier
[20:40:14] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[20:40:14] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[20:40:14] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[20:40:14] [PASSED] NV12 Normal sizes
[20:40:14] [PASSED] NV12 Max sizes
[20:40:14] [PASSED] NV12 Invalid pitch
[20:40:14] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[20:40:14] [PASSED] NV12 different modifier per-plane
[20:40:14] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[20:40:14] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[20:40:14] [PASSED] NV12 Modifier for inexistent plane
[20:40:14] [PASSED] NV12 Handle for inexistent plane
[20:40:14] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[20:40:14] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[20:40:14] [PASSED] YVU420 Normal sizes
[20:40:14] [PASSED] YVU420 Max sizes
[20:40:14] [PASSED] YVU420 Invalid pitch
[20:40:14] [PASSED] YVU420 Different pitches
[20:40:14] [PASSED] YVU420 Different buffer offsets/pitches
[20:40:14] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[20:40:14] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[20:40:14] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[20:40:14] [PASSED] YVU420 Valid modifier
[20:40:14] [PASSED] YVU420 Different modifiers per plane
[20:40:14] [PASSED] YVU420 Modifier for inexistent plane
[20:40:14] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[20:40:14] [PASSED] X0L2 Normal sizes
[20:40:14] [PASSED] X0L2 Max sizes
[20:40:14] [PASSED] X0L2 Invalid pitch
[20:40:14] [PASSED] X0L2 Pitch greater than minimum required
[20:40:14] [PASSED] X0L2 Handle for inexistent plane
[20:40:14] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[20:40:14] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[20:40:14] [PASSED] X0L2 Valid modifier
[20:40:14] [PASSED] X0L2 Modifier for inexistent plane
[20:40:14] =========== [PASSED] drm_test_framebuffer_create ===========
[20:40:14] [PASSED] drm_test_framebuffer_free
[20:40:14] [PASSED] drm_test_framebuffer_init
[20:40:14] [PASSED] drm_test_framebuffer_init_bad_format
[20:40:14] [PASSED] drm_test_framebuffer_init_dev_mismatch
[20:40:14] [PASSED] drm_test_framebuffer_lookup
[20:40:14] [PASSED] drm_test_framebuffer_lookup_inexistent
[20:40:14] [PASSED] drm_test_framebuffer_modifiers_not_supported
[20:40:14] ================= [PASSED] drm_framebuffer =================
[20:40:14] ================ drm_gem_shmem (8 subtests) ================
[20:40:14] [PASSED] drm_gem_shmem_test_obj_create
[20:40:14] [PASSED] drm_gem_shmem_test_obj_create_private
[20:40:14] [PASSED] drm_gem_shmem_test_pin_pages
[20:40:14] [PASSED] drm_gem_shmem_test_vmap
[20:40:14] [PASSED] drm_gem_shmem_test_get_sg_table
[20:40:14] [PASSED] drm_gem_shmem_test_get_pages_sgt
[20:40:14] [PASSED] drm_gem_shmem_test_madvise
[20:40:14] [PASSED] drm_gem_shmem_test_purge
[20:40:14] ================== [PASSED] drm_gem_shmem ==================
[20:40:14] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[20:40:14] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[20:40:14] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[20:40:14] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[20:40:14] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[20:40:14] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[20:40:14] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[20:40:14] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[20:40:14] [PASSED] Automatic
[20:40:14] [PASSED] Full
[20:40:14] [PASSED] Limited 16:235
[20:40:14] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[20:40:14] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[20:40:14] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[20:40:14] [PASSED] drm_test_check_disable_connector
[20:40:14] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[20:40:14] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[20:40:14] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[20:40:14] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[20:40:14] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[20:40:14] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[20:40:14] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[20:40:14] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[20:40:14] [PASSED] drm_test_check_output_bpc_dvi
[20:40:14] [PASSED] drm_test_check_output_bpc_format_vic_1
[20:40:14] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[20:40:14] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[20:40:14] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[20:40:14] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[20:40:14] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[20:40:14] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[20:40:14] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[20:40:14] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[20:40:14] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[20:40:14] [PASSED] drm_test_check_broadcast_rgb_value
[20:40:14] [PASSED] drm_test_check_bpc_8_value
[20:40:14] [PASSED] drm_test_check_bpc_10_value
[20:40:14] [PASSED] drm_test_check_bpc_12_value
[20:40:14] [PASSED] drm_test_check_format_value
[20:40:14] [PASSED] drm_test_check_tmds_char_value
[20:40:14] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[20:40:14] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[20:40:14] [PASSED] drm_test_check_mode_valid
[20:40:14] [PASSED] drm_test_check_mode_valid_reject
[20:40:14] [PASSED] drm_test_check_mode_valid_reject_rate
[20:40:14] [PASSED] drm_test_check_mode_valid_reject_max_clock
[20:40:14] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[20:40:14] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[20:40:14] [PASSED] drm_test_check_infoframes
[20:40:14] [PASSED] drm_test_check_reject_avi_infoframe
[20:40:14] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[20:40:14] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[20:40:14] [PASSED] drm_test_check_reject_audio_infoframe
[20:40:14] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[20:40:14] ================= drm_managed (2 subtests) =================
[20:40:14] [PASSED] drm_test_managed_release_action
[20:40:14] [PASSED] drm_test_managed_run_action
[20:40:14] =================== [PASSED] drm_managed ===================
[20:40:14] =================== drm_mm (6 subtests) ====================
[20:40:14] [PASSED] drm_test_mm_init
[20:40:14] [PASSED] drm_test_mm_debug
[20:40:14] [PASSED] drm_test_mm_align32
[20:40:14] [PASSED] drm_test_mm_align64
[20:40:14] [PASSED] drm_test_mm_lowest
[20:40:14] [PASSED] drm_test_mm_highest
[20:40:14] ===================== [PASSED] drm_mm ======================
[20:40:14] ============= drm_modes_analog_tv (5 subtests) =============
[20:40:14] [PASSED] drm_test_modes_analog_tv_mono_576i
[20:40:14] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[20:40:14] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[20:40:14] [PASSED] drm_test_modes_analog_tv_pal_576i
[20:40:14] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[20:40:14] =============== [PASSED] drm_modes_analog_tv ===============
[20:40:14] ============== drm_plane_helper (2 subtests) ===============
[20:40:14] =============== drm_test_check_plane_state ================
[20:40:14] [PASSED] clipping_simple
[20:40:14] [PASSED] clipping_rotate_reflect
[20:40:14] [PASSED] positioning_simple
[20:40:14] [PASSED] upscaling
[20:40:14] [PASSED] downscaling
[20:40:14] [PASSED] rounding1
[20:40:14] [PASSED] rounding2
[20:40:14] [PASSED] rounding3
[20:40:14] [PASSED] rounding4
[20:40:14] =========== [PASSED] drm_test_check_plane_state ============
[20:40:14] =========== drm_test_check_invalid_plane_state ============
[20:40:14] [PASSED] positioning_invalid
[20:40:14] [PASSED] upscaling_invalid
[20:40:14] [PASSED] downscaling_invalid
[20:40:14] ======= [PASSED] drm_test_check_invalid_plane_state ========
[20:40:14] ================ [PASSED] drm_plane_helper =================
[20:40:14] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[20:40:14] ====== drm_test_connector_helper_tv_get_modes_check =======
[20:40:14] [PASSED] None
[20:40:14] [PASSED] PAL
[20:40:14] [PASSED] NTSC
[20:40:14] [PASSED] Both, NTSC Default
[20:40:14] [PASSED] Both, PAL Default
[20:40:14] [PASSED] Both, NTSC Default, with PAL on command-line
[20:40:14] [PASSED] Both, PAL Default, with NTSC on command-line
[20:40:14] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[20:40:14] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[20:40:14] ================== drm_rect (9 subtests) ===================
[20:40:14] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[20:40:14] [PASSED] drm_test_rect_clip_scaled_not_clipped
[20:40:14] [PASSED] drm_test_rect_clip_scaled_clipped
[20:40:14] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[20:40:14] ================= drm_test_rect_intersect =================
[20:40:14] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[20:40:14] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[20:40:14] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[20:40:14] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[20:40:14] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[20:40:14] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[20:40:14] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[20:40:14] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[20:40:14] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[20:40:14] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[20:40:14] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[20:40:14] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[20:40:14] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[20:40:14] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[20:40:14] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[20:40:14] ============= [PASSED] drm_test_rect_intersect =============
[20:40:14] ================ drm_test_rect_calc_hscale ================
[20:40:14] [PASSED] normal use
[20:40:14] [PASSED] out of max range
[20:40:14] [PASSED] out of min range
[20:40:14] [PASSED] zero dst
[20:40:14] [PASSED] negative src
[20:40:14] [PASSED] negative dst
[20:40:14] ============ [PASSED] drm_test_rect_calc_hscale ============
[20:40:14] ================ drm_test_rect_calc_vscale ================
[20:40:14] [PASSED] normal use
[20:40:14] [PASSED] out of max range
[20:40:14] [PASSED] out of min range
[20:40:14] [PASSED] zero dst
[20:40:14] [PASSED] negative src
[20:40:14] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[20:40:14] ============ [PASSED] drm_test_rect_calc_vscale ============
[20:40:14] ================== drm_test_rect_rotate ===================
[20:40:14] [PASSED] reflect-x
[20:40:14] [PASSED] reflect-y
[20:40:14] [PASSED] rotate-0
[20:40:14] [PASSED] rotate-90
[20:40:14] [PASSED] rotate-180
[20:40:14] [PASSED] rotate-270
[20:40:14] ============== [PASSED] drm_test_rect_rotate ===============
[20:40:14] ================ drm_test_rect_rotate_inv =================
[20:40:14] [PASSED] reflect-x
[20:40:14] [PASSED] reflect-y
[20:40:14] [PASSED] rotate-0
[20:40:14] [PASSED] rotate-90
[20:40:14] [PASSED] rotate-180
[20:40:14] [PASSED] rotate-270
[20:40:14] ============ [PASSED] drm_test_rect_rotate_inv =============
[20:40:14] ==================== [PASSED] drm_rect =====================
[20:40:14] ============ drm_sysfb_modeset_test (1 subtest) ============
[20:40:14] ============ drm_test_sysfb_build_fourcc_list =============
[20:40:14] [PASSED] no native formats
[20:40:14] [PASSED] XRGB8888 as native format
[20:40:14] [PASSED] remove duplicates
[20:40:14] [PASSED] convert alpha formats
[20:40:14] [PASSED] random formats
[20:40:14] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[20:40:14] ============= [PASSED] drm_sysfb_modeset_test ==============
[20:40:14] ================== drm_fixp (2 subtests) ===================
[20:40:14] [PASSED] drm_test_int2fixp
[20:40:14] [PASSED] drm_test_sm2fixp
[20:40:14] ==================== [PASSED] drm_fixp =====================
[20:40:14] ============================================================
[20:40:14] Testing complete. Ran 621 tests: passed: 621
[20:40:14] Elapsed time: 32.127s total, 1.593s configuring, 30.367s building, 0.120s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[20:40:14] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[20:40: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=25
[20:40:25] Starting KUnit Kernel (1/1)...
[20:40:25] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[20:40:25] ================= ttm_device (5 subtests) ==================
[20:40:25] [PASSED] ttm_device_init_basic
[20:40:25] [PASSED] ttm_device_init_multiple
[20:40:25] [PASSED] ttm_device_fini_basic
[20:40:25] [PASSED] ttm_device_init_no_vma_man
[20:40:25] ================== ttm_device_init_pools ==================
[20:40:25] [PASSED] No DMA allocations, no DMA32 required
[20:40:25] [PASSED] DMA allocations, DMA32 required
[20:40:25] [PASSED] No DMA allocations, DMA32 required
[20:40:25] [PASSED] DMA allocations, no DMA32 required
[20:40:25] ============== [PASSED] ttm_device_init_pools ==============
[20:40:25] =================== [PASSED] ttm_device ====================
[20:40:25] ================== ttm_pool (8 subtests) ===================
[20:40:25] ================== ttm_pool_alloc_basic ===================
[20:40:25] [PASSED] One page
[20:40:25] [PASSED] More than one page
[20:40:25] [PASSED] Above the allocation limit
[20:40:25] [PASSED] One page, with coherent DMA mappings enabled
[20:40:25] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[20:40:25] ============== [PASSED] ttm_pool_alloc_basic ===============
[20:40:25] ============== ttm_pool_alloc_basic_dma_addr ==============
[20:40:25] [PASSED] One page
[20:40:25] [PASSED] More than one page
[20:40:25] [PASSED] Above the allocation limit
[20:40:25] [PASSED] One page, with coherent DMA mappings enabled
[20:40:25] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[20:40:25] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[20:40:25] [PASSED] ttm_pool_alloc_order_caching_match
[20:40:25] [PASSED] ttm_pool_alloc_caching_mismatch
[20:40:25] [PASSED] ttm_pool_alloc_order_mismatch
[20:40:25] [PASSED] ttm_pool_free_dma_alloc
[20:40:25] [PASSED] ttm_pool_free_no_dma_alloc
[20:40:25] [PASSED] ttm_pool_fini_basic
[20:40:25] ==================== [PASSED] ttm_pool =====================
[20:40:25] ================ ttm_resource (8 subtests) =================
[20:40:25] ================= ttm_resource_init_basic =================
[20:40:25] [PASSED] Init resource in TTM_PL_SYSTEM
[20:40:25] [PASSED] Init resource in TTM_PL_VRAM
[20:40:25] [PASSED] Init resource in a private placement
[20:40:25] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[20:40:25] ============= [PASSED] ttm_resource_init_basic =============
[20:40:25] [PASSED] ttm_resource_init_pinned
[20:40:25] [PASSED] ttm_resource_fini_basic
[20:40:25] [PASSED] ttm_resource_manager_init_basic
[20:40:25] [PASSED] ttm_resource_manager_usage_basic
[20:40:25] [PASSED] ttm_resource_manager_set_used_basic
[20:40:25] [PASSED] ttm_sys_man_alloc_basic
[20:40:25] [PASSED] ttm_sys_man_free_basic
[20:40:25] ================== [PASSED] ttm_resource ===================
[20:40:25] =================== ttm_tt (15 subtests) ===================
[20:40:25] ==================== ttm_tt_init_basic ====================
[20:40:25] [PASSED] Page-aligned size
[20:40:25] [PASSED] Extra pages requested
[20:40:25] ================ [PASSED] ttm_tt_init_basic ================
[20:40:25] [PASSED] ttm_tt_init_misaligned
[20:40:25] [PASSED] ttm_tt_fini_basic
[20:40:25] [PASSED] ttm_tt_fini_sg
[20:40:25] [PASSED] ttm_tt_fini_shmem
[20:40:25] [PASSED] ttm_tt_create_basic
[20:40:25] [PASSED] ttm_tt_create_invalid_bo_type
[20:40:25] [PASSED] ttm_tt_create_ttm_exists
[20:40:25] [PASSED] ttm_tt_create_failed
[20:40:25] [PASSED] ttm_tt_destroy_basic
[20:40:25] [PASSED] ttm_tt_populate_null_ttm
[20:40:25] [PASSED] ttm_tt_populate_populated_ttm
[20:40:25] [PASSED] ttm_tt_unpopulate_basic
[20:40:25] [PASSED] ttm_tt_unpopulate_empty_ttm
[20:40:25] [PASSED] ttm_tt_swapin_basic
[20:40:25] ===================== [PASSED] ttm_tt ======================
[20:40:25] =================== ttm_bo (14 subtests) ===================
[20:40:25] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[20:40:25] [PASSED] Cannot be interrupted and sleeps
[20:40:25] [PASSED] Cannot be interrupted, locks straight away
[20:40:25] [PASSED] Can be interrupted, sleeps
[20:40:25] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[20:40:25] [PASSED] ttm_bo_reserve_locked_no_sleep
[20:40:25] [PASSED] ttm_bo_reserve_no_wait_ticket
[20:40:25] [PASSED] ttm_bo_reserve_double_resv
[20:40:25] [PASSED] ttm_bo_reserve_interrupted
[20:40:25] [PASSED] ttm_bo_reserve_deadlock
[20:40:25] [PASSED] ttm_bo_unreserve_basic
[20:40:25] [PASSED] ttm_bo_unreserve_pinned
[20:40:25] [PASSED] ttm_bo_unreserve_bulk
[20:40:25] [PASSED] ttm_bo_fini_basic
[20:40:25] [PASSED] ttm_bo_fini_shared_resv
[20:40:25] [PASSED] ttm_bo_pin_basic
[20:40:25] [PASSED] ttm_bo_pin_unpin_resource
[20:40:25] [PASSED] ttm_bo_multiple_pin_one_unpin
[20:40:25] ===================== [PASSED] ttm_bo ======================
[20:40:25] ============== ttm_bo_validate (21 subtests) ===============
[20:40:25] ============== ttm_bo_init_reserved_sys_man ===============
[20:40:25] [PASSED] Buffer object for userspace
[20:40:25] [PASSED] Kernel buffer object
[20:40:25] [PASSED] Shared buffer object
[20:40:25] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[20:40:25] ============== ttm_bo_init_reserved_mock_man ==============
[20:40:25] [PASSED] Buffer object for userspace
[20:40:25] [PASSED] Kernel buffer object
[20:40:25] [PASSED] Shared buffer object
[20:40:25] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[20:40:25] [PASSED] ttm_bo_init_reserved_resv
[20:40:25] ================== ttm_bo_validate_basic ==================
[20:40:25] [PASSED] Buffer object for userspace
[20:40:25] [PASSED] Kernel buffer object
[20:40:25] [PASSED] Shared buffer object
[20:40:25] ============== [PASSED] ttm_bo_validate_basic ==============
[20:40:25] [PASSED] ttm_bo_validate_invalid_placement
[20:40:25] ============= ttm_bo_validate_same_placement ==============
[20:40:25] [PASSED] System manager
[20:40:25] [PASSED] VRAM manager
[20:40:25] ========= [PASSED] ttm_bo_validate_same_placement ==========
[20:40:25] [PASSED] ttm_bo_validate_failed_alloc
[20:40:25] [PASSED] ttm_bo_validate_pinned
[20:40:25] [PASSED] ttm_bo_validate_busy_placement
[20:40:25] ================ ttm_bo_validate_multihop =================
[20:40:25] [PASSED] Buffer object for userspace
[20:40:25] [PASSED] Kernel buffer object
[20:40:25] [PASSED] Shared buffer object
[20:40:25] ============ [PASSED] ttm_bo_validate_multihop =============
[20:40:25] ========== ttm_bo_validate_no_placement_signaled ==========
[20:40:25] [PASSED] Buffer object in system domain, no page vector
[20:40:25] [PASSED] Buffer object in system domain with an existing page vector
[20:40:25] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[20:40:25] ======== ttm_bo_validate_no_placement_not_signaled ========
[20:40:25] [PASSED] Buffer object for userspace
[20:40:25] [PASSED] Kernel buffer object
[20:40:25] [PASSED] Shared buffer object
[20:40:25] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[20:40:25] [PASSED] ttm_bo_validate_move_fence_signaled
[20:40:25] ========= ttm_bo_validate_move_fence_not_signaled =========
[20:40:25] [PASSED] Waits for GPU
[20:40:25] [PASSED] Tries to lock straight away
[20:40:25] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[20:40:25] [PASSED] ttm_bo_validate_happy_evict
[20:40:25] [PASSED] ttm_bo_validate_all_pinned_evict
[20:40:25] [PASSED] ttm_bo_validate_allowed_only_evict
[20:40:25] [PASSED] ttm_bo_validate_deleted_evict
[20:40:25] [PASSED] ttm_bo_validate_busy_domain_evict
[20:40:25] [PASSED] ttm_bo_validate_evict_gutting
[20:40:25] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[20:40:25] ================= [PASSED] ttm_bo_validate =================
[20:40:25] ============================================================
[20:40:25] Testing complete. Ran 101 tests: passed: 101
[20:40:25] Elapsed time: 11.150s total, 1.600s configuring, 9.283s building, 0.232s 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/wa: Steer RMW of MCR registers while building default LRC (rev2)
2026-02-06 22:30 [PATCH] drm/xe/wa: Steer RMW of MCR registers while building default LRC Matt Roper
` (3 preceding siblings ...)
2026-02-09 20:40 ` ✓ CI.KUnit: success for drm/xe/wa: Steer RMW of MCR registers while building default LRC (rev2) Patchwork
@ 2026-02-09 21:19 ` Patchwork
2026-02-09 21:25 ` ✓ CI.KUnit: success for drm/xe/wa: Steer RMW of MCR registers while building default LRC (rev3) Patchwork
` (3 subsequent siblings)
8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-02-09 21:19 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 941 bytes --]
== Series Details ==
Series: drm/xe/wa: Steer RMW of MCR registers while building default LRC (rev2)
URL : https://patchwork.freedesktop.org/series/161300/
State : success
== Summary ==
CI Bug Log - changes from xe-4529-5e0595fbb024e9b7e243a7ca8a028f93a37883f2_BAT -> xe-pw-161300v2_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8745 -> IGT_8746
* Linux: xe-4529-5e0595fbb024e9b7e243a7ca8a028f93a37883f2 -> xe-pw-161300v2
IGT_8745: 8745
IGT_8746: 8746
xe-4529-5e0595fbb024e9b7e243a7ca8a028f93a37883f2: 5e0595fbb024e9b7e243a7ca8a028f93a37883f2
xe-pw-161300v2: 161300v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v2/index.html
[-- Attachment #2: Type: text/html, Size: 1503 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ CI.KUnit: success for drm/xe/wa: Steer RMW of MCR registers while building default LRC (rev3)
2026-02-06 22:30 [PATCH] drm/xe/wa: Steer RMW of MCR registers while building default LRC Matt Roper
` (4 preceding siblings ...)
2026-02-09 21:19 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-02-09 21:25 ` Patchwork
2026-02-09 22:21 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-02-09 21:25 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
== Series Details ==
Series: drm/xe/wa: Steer RMW of MCR registers while building default LRC (rev3)
URL : https://patchwork.freedesktop.org/series/161300/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[21:24:25] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:24:29] 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=25
[21:25:08] Starting KUnit Kernel (1/1)...
[21:25:08] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:25:08] ================== guc_buf (11 subtests) ===================
[21:25:08] [PASSED] test_smallest
[21:25:08] [PASSED] test_largest
[21:25:08] [PASSED] test_granular
[21:25:08] [PASSED] test_unique
[21:25:08] [PASSED] test_overlap
[21:25:08] [PASSED] test_reusable
[21:25:08] [PASSED] test_too_big
[21:25:08] [PASSED] test_flush
[21:25:08] [PASSED] test_lookup
[21:25:08] [PASSED] test_data
[21:25:08] [PASSED] test_class
[21:25:08] ===================== [PASSED] guc_buf =====================
[21:25:08] =================== guc_dbm (7 subtests) ===================
[21:25:08] [PASSED] test_empty
[21:25:08] [PASSED] test_default
[21:25:08] ======================== test_size ========================
[21:25:08] [PASSED] 4
[21:25:08] [PASSED] 8
[21:25:08] [PASSED] 32
[21:25:08] [PASSED] 256
[21:25:08] ==================== [PASSED] test_size ====================
[21:25:08] ======================= test_reuse ========================
[21:25:08] [PASSED] 4
[21:25:08] [PASSED] 8
[21:25:08] [PASSED] 32
[21:25:08] [PASSED] 256
[21:25:08] =================== [PASSED] test_reuse ====================
[21:25:08] =================== test_range_overlap ====================
[21:25:08] [PASSED] 4
[21:25:08] [PASSED] 8
[21:25:08] [PASSED] 32
[21:25:08] [PASSED] 256
[21:25:08] =============== [PASSED] test_range_overlap ================
[21:25:08] =================== test_range_compact ====================
[21:25:08] [PASSED] 4
[21:25:08] [PASSED] 8
[21:25:08] [PASSED] 32
[21:25:08] [PASSED] 256
[21:25:08] =============== [PASSED] test_range_compact ================
[21:25:08] ==================== test_range_spare =====================
[21:25:08] [PASSED] 4
[21:25:08] [PASSED] 8
[21:25:08] [PASSED] 32
[21:25:08] [PASSED] 256
[21:25:08] ================ [PASSED] test_range_spare =================
[21:25:08] ===================== [PASSED] guc_dbm =====================
[21:25:08] =================== guc_idm (6 subtests) ===================
[21:25:08] [PASSED] bad_init
[21:25:08] [PASSED] no_init
[21:25:08] [PASSED] init_fini
[21:25:08] [PASSED] check_used
[21:25:08] [PASSED] check_quota
[21:25:08] [PASSED] check_all
[21:25:08] ===================== [PASSED] guc_idm =====================
[21:25:08] ================== no_relay (3 subtests) ===================
[21:25:08] [PASSED] xe_drops_guc2pf_if_not_ready
[21:25:08] [PASSED] xe_drops_guc2vf_if_not_ready
[21:25:08] [PASSED] xe_rejects_send_if_not_ready
[21:25:08] ==================== [PASSED] no_relay =====================
[21:25:08] ================== pf_relay (14 subtests) ==================
[21:25:08] [PASSED] pf_rejects_guc2pf_too_short
[21:25:08] [PASSED] pf_rejects_guc2pf_too_long
[21:25:08] [PASSED] pf_rejects_guc2pf_no_payload
[21:25:08] [PASSED] pf_fails_no_payload
[21:25:08] [PASSED] pf_fails_bad_origin
[21:25:08] [PASSED] pf_fails_bad_type
[21:25:08] [PASSED] pf_txn_reports_error
[21:25:08] [PASSED] pf_txn_sends_pf2guc
[21:25:08] [PASSED] pf_sends_pf2guc
[21:25:08] [SKIPPED] pf_loopback_nop
[21:25:08] [SKIPPED] pf_loopback_echo
[21:25:08] [SKIPPED] pf_loopback_fail
[21:25:08] [SKIPPED] pf_loopback_busy
[21:25:08] [SKIPPED] pf_loopback_retry
[21:25:08] ==================== [PASSED] pf_relay =====================
[21:25:08] ================== vf_relay (3 subtests) ===================
[21:25:08] [PASSED] vf_rejects_guc2vf_too_short
[21:25:08] [PASSED] vf_rejects_guc2vf_too_long
[21:25:08] [PASSED] vf_rejects_guc2vf_no_payload
[21:25:08] ==================== [PASSED] vf_relay =====================
[21:25:08] ================ pf_gt_config (6 subtests) =================
[21:25:08] [PASSED] fair_contexts_1vf
[21:25:08] [PASSED] fair_doorbells_1vf
[21:25:08] [PASSED] fair_ggtt_1vf
[21:25:08] ====================== fair_contexts ======================
[21:25:08] [PASSED] 1 VF
[21:25:08] [PASSED] 2 VFs
[21:25:08] [PASSED] 3 VFs
[21:25:08] [PASSED] 4 VFs
[21:25:08] [PASSED] 5 VFs
[21:25:08] [PASSED] 6 VFs
[21:25:08] [PASSED] 7 VFs
[21:25:08] [PASSED] 8 VFs
[21:25:08] [PASSED] 9 VFs
[21:25:08] [PASSED] 10 VFs
[21:25:08] [PASSED] 11 VFs
[21:25:08] [PASSED] 12 VFs
[21:25:08] [PASSED] 13 VFs
[21:25:08] [PASSED] 14 VFs
[21:25:08] [PASSED] 15 VFs
[21:25:08] [PASSED] 16 VFs
[21:25:08] [PASSED] 17 VFs
[21:25:08] [PASSED] 18 VFs
[21:25:08] [PASSED] 19 VFs
[21:25:08] [PASSED] 20 VFs
[21:25:08] [PASSED] 21 VFs
[21:25:08] [PASSED] 22 VFs
[21:25:08] [PASSED] 23 VFs
[21:25:08] [PASSED] 24 VFs
[21:25:08] [PASSED] 25 VFs
[21:25:08] [PASSED] 26 VFs
[21:25:08] [PASSED] 27 VFs
[21:25:08] [PASSED] 28 VFs
[21:25:08] [PASSED] 29 VFs
[21:25:08] [PASSED] 30 VFs
[21:25:08] [PASSED] 31 VFs
[21:25:08] [PASSED] 32 VFs
[21:25:08] [PASSED] 33 VFs
[21:25:08] [PASSED] 34 VFs
[21:25:08] [PASSED] 35 VFs
[21:25:08] [PASSED] 36 VFs
[21:25:08] [PASSED] 37 VFs
[21:25:08] [PASSED] 38 VFs
[21:25:08] [PASSED] 39 VFs
[21:25:08] [PASSED] 40 VFs
[21:25:08] [PASSED] 41 VFs
[21:25:08] [PASSED] 42 VFs
[21:25:08] [PASSED] 43 VFs
[21:25:08] [PASSED] 44 VFs
[21:25:08] [PASSED] 45 VFs
[21:25:08] [PASSED] 46 VFs
[21:25:08] [PASSED] 47 VFs
[21:25:08] [PASSED] 48 VFs
[21:25:08] [PASSED] 49 VFs
[21:25:08] [PASSED] 50 VFs
[21:25:08] [PASSED] 51 VFs
[21:25:08] [PASSED] 52 VFs
[21:25:08] [PASSED] 53 VFs
[21:25:08] [PASSED] 54 VFs
[21:25:08] [PASSED] 55 VFs
[21:25:08] [PASSED] 56 VFs
[21:25:08] [PASSED] 57 VFs
[21:25:08] [PASSED] 58 VFs
[21:25:08] [PASSED] 59 VFs
[21:25:08] [PASSED] 60 VFs
[21:25:08] [PASSED] 61 VFs
[21:25:08] [PASSED] 62 VFs
[21:25:08] [PASSED] 63 VFs
[21:25:08] ================== [PASSED] fair_contexts ==================
[21:25:08] ===================== fair_doorbells ======================
[21:25:08] [PASSED] 1 VF
[21:25:08] [PASSED] 2 VFs
[21:25:08] [PASSED] 3 VFs
[21:25:08] [PASSED] 4 VFs
[21:25:08] [PASSED] 5 VFs
[21:25:08] [PASSED] 6 VFs
[21:25:08] [PASSED] 7 VFs
[21:25:08] [PASSED] 8 VFs
[21:25:08] [PASSED] 9 VFs
[21:25:08] [PASSED] 10 VFs
[21:25:08] [PASSED] 11 VFs
[21:25:08] [PASSED] 12 VFs
[21:25:08] [PASSED] 13 VFs
[21:25:08] [PASSED] 14 VFs
[21:25:08] [PASSED] 15 VFs
[21:25:08] [PASSED] 16 VFs
[21:25:08] [PASSED] 17 VFs
[21:25:08] [PASSED] 18 VFs
[21:25:08] [PASSED] 19 VFs
[21:25:08] [PASSED] 20 VFs
[21:25:08] [PASSED] 21 VFs
[21:25:08] [PASSED] 22 VFs
[21:25:08] [PASSED] 23 VFs
[21:25:08] [PASSED] 24 VFs
[21:25:08] [PASSED] 25 VFs
[21:25:08] [PASSED] 26 VFs
[21:25:08] [PASSED] 27 VFs
[21:25:08] [PASSED] 28 VFs
[21:25:08] [PASSED] 29 VFs
[21:25:08] [PASSED] 30 VFs
[21:25:08] [PASSED] 31 VFs
[21:25:08] [PASSED] 32 VFs
[21:25:08] [PASSED] 33 VFs
[21:25:08] [PASSED] 34 VFs
[21:25:08] [PASSED] 35 VFs
[21:25:08] [PASSED] 36 VFs
[21:25:08] [PASSED] 37 VFs
[21:25:08] [PASSED] 38 VFs
[21:25:08] [PASSED] 39 VFs
[21:25:08] [PASSED] 40 VFs
[21:25:08] [PASSED] 41 VFs
[21:25:08] [PASSED] 42 VFs
[21:25:08] [PASSED] 43 VFs
[21:25:08] [PASSED] 44 VFs
[21:25:08] [PASSED] 45 VFs
[21:25:08] [PASSED] 46 VFs
[21:25:08] [PASSED] 47 VFs
[21:25:08] [PASSED] 48 VFs
[21:25:08] [PASSED] 49 VFs
[21:25:08] [PASSED] 50 VFs
[21:25:08] [PASSED] 51 VFs
[21:25:08] [PASSED] 52 VFs
[21:25:08] [PASSED] 53 VFs
[21:25:08] [PASSED] 54 VFs
[21:25:08] [PASSED] 55 VFs
[21:25:08] [PASSED] 56 VFs
[21:25:08] [PASSED] 57 VFs
[21:25:08] [PASSED] 58 VFs
[21:25:08] [PASSED] 59 VFs
[21:25:08] [PASSED] 60 VFs
[21:25:08] [PASSED] 61 VFs
[21:25:08] [PASSED] 62 VFs
[21:25:08] [PASSED] 63 VFs
[21:25:08] ================= [PASSED] fair_doorbells ==================
[21:25:08] ======================== fair_ggtt ========================
[21:25:08] [PASSED] 1 VF
[21:25:08] [PASSED] 2 VFs
[21:25:08] [PASSED] 3 VFs
[21:25:08] [PASSED] 4 VFs
[21:25:08] [PASSED] 5 VFs
[21:25:08] [PASSED] 6 VFs
[21:25:08] [PASSED] 7 VFs
[21:25:08] [PASSED] 8 VFs
[21:25:08] [PASSED] 9 VFs
[21:25:08] [PASSED] 10 VFs
[21:25:08] [PASSED] 11 VFs
[21:25:08] [PASSED] 12 VFs
[21:25:08] [PASSED] 13 VFs
[21:25:08] [PASSED] 14 VFs
[21:25:08] [PASSED] 15 VFs
[21:25:08] [PASSED] 16 VFs
[21:25:08] [PASSED] 17 VFs
[21:25:08] [PASSED] 18 VFs
[21:25:08] [PASSED] 19 VFs
[21:25:08] [PASSED] 20 VFs
[21:25:08] [PASSED] 21 VFs
[21:25:08] [PASSED] 22 VFs
[21:25:08] [PASSED] 23 VFs
[21:25:08] [PASSED] 24 VFs
[21:25:08] [PASSED] 25 VFs
[21:25:08] [PASSED] 26 VFs
[21:25:08] [PASSED] 27 VFs
[21:25:08] [PASSED] 28 VFs
[21:25:08] [PASSED] 29 VFs
[21:25:08] [PASSED] 30 VFs
[21:25:08] [PASSED] 31 VFs
[21:25:08] [PASSED] 32 VFs
[21:25:08] [PASSED] 33 VFs
[21:25:08] [PASSED] 34 VFs
[21:25:08] [PASSED] 35 VFs
[21:25:08] [PASSED] 36 VFs
[21:25:08] [PASSED] 37 VFs
[21:25:08] [PASSED] 38 VFs
[21:25:08] [PASSED] 39 VFs
[21:25:08] [PASSED] 40 VFs
[21:25:08] [PASSED] 41 VFs
[21:25:08] [PASSED] 42 VFs
[21:25:08] [PASSED] 43 VFs
[21:25:08] [PASSED] 44 VFs
[21:25:08] [PASSED] 45 VFs
[21:25:08] [PASSED] 46 VFs
[21:25:08] [PASSED] 47 VFs
[21:25:08] [PASSED] 48 VFs
[21:25:08] [PASSED] 49 VFs
[21:25:08] [PASSED] 50 VFs
[21:25:08] [PASSED] 51 VFs
[21:25:08] [PASSED] 52 VFs
[21:25:08] [PASSED] 53 VFs
[21:25:08] [PASSED] 54 VFs
[21:25:08] [PASSED] 55 VFs
[21:25:08] [PASSED] 56 VFs
[21:25:08] [PASSED] 57 VFs
[21:25:08] [PASSED] 58 VFs
[21:25:08] [PASSED] 59 VFs
[21:25:08] [PASSED] 60 VFs
[21:25:08] [PASSED] 61 VFs
[21:25:08] [PASSED] 62 VFs
[21:25:08] [PASSED] 63 VFs
[21:25:08] ==================== [PASSED] fair_ggtt ====================
[21:25:08] ================== [PASSED] pf_gt_config ===================
[21:25:08] ===================== lmtt (1 subtest) =====================
[21:25:08] ======================== test_ops =========================
[21:25:08] [PASSED] 2-level
[21:25:08] [PASSED] multi-level
[21:25:08] ==================== [PASSED] test_ops =====================
[21:25:08] ====================== [PASSED] lmtt =======================
[21:25:08] ================= pf_service (11 subtests) =================
[21:25:08] [PASSED] pf_negotiate_any
[21:25:08] [PASSED] pf_negotiate_base_match
[21:25:08] [PASSED] pf_negotiate_base_newer
[21:25:08] [PASSED] pf_negotiate_base_next
[21:25:08] [SKIPPED] pf_negotiate_base_older
[21:25:08] [PASSED] pf_negotiate_base_prev
[21:25:08] [PASSED] pf_negotiate_latest_match
[21:25:08] [PASSED] pf_negotiate_latest_newer
[21:25:08] [PASSED] pf_negotiate_latest_next
[21:25:08] [SKIPPED] pf_negotiate_latest_older
[21:25:08] [SKIPPED] pf_negotiate_latest_prev
[21:25:08] =================== [PASSED] pf_service ====================
[21:25:08] ================= xe_guc_g2g (2 subtests) ==================
[21:25:08] ============== xe_live_guc_g2g_kunit_default ==============
[21:25:08] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[21:25:08] ============== xe_live_guc_g2g_kunit_allmem ===============
[21:25:08] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[21:25:08] =================== [SKIPPED] xe_guc_g2g ===================
[21:25:08] =================== xe_mocs (2 subtests) ===================
[21:25:08] ================ xe_live_mocs_kernel_kunit ================
[21:25:08] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[21:25:08] ================ xe_live_mocs_reset_kunit =================
[21:25:08] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[21:25:08] ==================== [SKIPPED] xe_mocs =====================
[21:25:08] ================= xe_migrate (2 subtests) ==================
[21:25:08] ================= xe_migrate_sanity_kunit =================
[21:25:08] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[21:25:08] ================== xe_validate_ccs_kunit ==================
[21:25:08] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[21:25:08] =================== [SKIPPED] xe_migrate ===================
[21:25:08] ================== xe_dma_buf (1 subtest) ==================
[21:25:08] ==================== xe_dma_buf_kunit =====================
[21:25:08] ================ [SKIPPED] xe_dma_buf_kunit ================
[21:25:08] =================== [SKIPPED] xe_dma_buf ===================
[21:25:08] ================= xe_bo_shrink (1 subtest) =================
[21:25:08] =================== xe_bo_shrink_kunit ====================
[21:25:08] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[21:25:08] ================== [SKIPPED] xe_bo_shrink ==================
[21:25:08] ==================== xe_bo (2 subtests) ====================
[21:25:08] ================== xe_ccs_migrate_kunit ===================
[21:25:08] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[21:25:08] ==================== xe_bo_evict_kunit ====================
[21:25:08] =============== [SKIPPED] xe_bo_evict_kunit ================
[21:25:08] ===================== [SKIPPED] xe_bo ======================
[21:25:08] ==================== args (13 subtests) ====================
[21:25:08] [PASSED] count_args_test
[21:25:08] [PASSED] call_args_example
[21:25:08] [PASSED] call_args_test
[21:25:08] [PASSED] drop_first_arg_example
[21:25:08] [PASSED] drop_first_arg_test
[21:25:08] [PASSED] first_arg_example
[21:25:08] [PASSED] first_arg_test
[21:25:08] [PASSED] last_arg_example
[21:25:08] [PASSED] last_arg_test
[21:25:08] [PASSED] pick_arg_example
[21:25:08] [PASSED] if_args_example
[21:25:08] [PASSED] if_args_test
[21:25:08] [PASSED] sep_comma_example
[21:25:08] ====================== [PASSED] args =======================
[21:25:08] =================== xe_pci (3 subtests) ====================
[21:25:08] ==================== check_graphics_ip ====================
[21:25:08] [PASSED] 12.00 Xe_LP
[21:25:08] [PASSED] 12.10 Xe_LP+
[21:25:08] [PASSED] 12.55 Xe_HPG
[21:25:08] [PASSED] 12.60 Xe_HPC
[21:25:08] [PASSED] 12.70 Xe_LPG
[21:25:08] [PASSED] 12.71 Xe_LPG
[21:25:08] [PASSED] 12.74 Xe_LPG+
[21:25:08] [PASSED] 20.01 Xe2_HPG
[21:25:08] [PASSED] 20.02 Xe2_HPG
[21:25:08] [PASSED] 20.04 Xe2_LPG
[21:25:08] [PASSED] 30.00 Xe3_LPG
[21:25:08] [PASSED] 30.01 Xe3_LPG
[21:25:08] [PASSED] 30.03 Xe3_LPG
[21:25:08] [PASSED] 30.04 Xe3_LPG
[21:25:08] [PASSED] 30.05 Xe3_LPG
[21:25:08] [PASSED] 35.11 Xe3p_XPC
[21:25:08] ================ [PASSED] check_graphics_ip ================
[21:25:08] ===================== check_media_ip ======================
[21:25:08] [PASSED] 12.00 Xe_M
[21:25:08] [PASSED] 12.55 Xe_HPM
[21:25:08] [PASSED] 13.00 Xe_LPM+
[21:25:08] [PASSED] 13.01 Xe2_HPM
[21:25:08] [PASSED] 20.00 Xe2_LPM
[21:25:08] [PASSED] 30.00 Xe3_LPM
[21:25:08] [PASSED] 30.02 Xe3_LPM
[21:25:08] [PASSED] 35.00 Xe3p_LPM
[21:25:08] [PASSED] 35.03 Xe3p_HPM
[21:25:08] ================= [PASSED] check_media_ip ==================
[21:25:08] =================== check_platform_desc ===================
[21:25:08] [PASSED] 0x9A60 (TIGERLAKE)
[21:25:08] [PASSED] 0x9A68 (TIGERLAKE)
[21:25:08] [PASSED] 0x9A70 (TIGERLAKE)
[21:25:08] [PASSED] 0x9A40 (TIGERLAKE)
[21:25:08] [PASSED] 0x9A49 (TIGERLAKE)
[21:25:08] [PASSED] 0x9A59 (TIGERLAKE)
[21:25:08] [PASSED] 0x9A78 (TIGERLAKE)
[21:25:08] [PASSED] 0x9AC0 (TIGERLAKE)
[21:25:08] [PASSED] 0x9AC9 (TIGERLAKE)
[21:25:08] [PASSED] 0x9AD9 (TIGERLAKE)
[21:25:08] [PASSED] 0x9AF8 (TIGERLAKE)
[21:25:08] [PASSED] 0x4C80 (ROCKETLAKE)
[21:25:08] [PASSED] 0x4C8A (ROCKETLAKE)
[21:25:08] [PASSED] 0x4C8B (ROCKETLAKE)
[21:25:08] [PASSED] 0x4C8C (ROCKETLAKE)
[21:25:08] [PASSED] 0x4C90 (ROCKETLAKE)
[21:25:08] [PASSED] 0x4C9A (ROCKETLAKE)
[21:25:08] [PASSED] 0x4680 (ALDERLAKE_S)
[21:25:08] [PASSED] 0x4682 (ALDERLAKE_S)
[21:25:08] [PASSED] 0x4688 (ALDERLAKE_S)
[21:25:08] [PASSED] 0x468A (ALDERLAKE_S)
[21:25:08] [PASSED] 0x468B (ALDERLAKE_S)
[21:25:08] [PASSED] 0x4690 (ALDERLAKE_S)
[21:25:08] [PASSED] 0x4692 (ALDERLAKE_S)
[21:25:08] [PASSED] 0x4693 (ALDERLAKE_S)
[21:25:08] [PASSED] 0x46A0 (ALDERLAKE_P)
[21:25:08] [PASSED] 0x46A1 (ALDERLAKE_P)
[21:25:08] [PASSED] 0x46A2 (ALDERLAKE_P)
[21:25:08] [PASSED] 0x46A3 (ALDERLAKE_P)
[21:25:08] [PASSED] 0x46A6 (ALDERLAKE_P)
[21:25:08] [PASSED] 0x46A8 (ALDERLAKE_P)
[21:25:08] [PASSED] 0x46AA (ALDERLAKE_P)
[21:25:08] [PASSED] 0x462A (ALDERLAKE_P)
[21:25:08] [PASSED] 0x4626 (ALDERLAKE_P)
[21:25:08] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[21:25:08] [PASSED] 0x46B0 (ALDERLAKE_P)
[21:25:08] [PASSED] 0x46B1 (ALDERLAKE_P)
[21:25:08] [PASSED] 0x46B2 (ALDERLAKE_P)
[21:25:08] [PASSED] 0x46B3 (ALDERLAKE_P)
[21:25:08] [PASSED] 0x46C0 (ALDERLAKE_P)
[21:25:08] [PASSED] 0x46C1 (ALDERLAKE_P)
[21:25:08] [PASSED] 0x46C2 (ALDERLAKE_P)
[21:25:08] [PASSED] 0x46C3 (ALDERLAKE_P)
[21:25:08] [PASSED] 0x46D0 (ALDERLAKE_N)
[21:25:08] [PASSED] 0x46D1 (ALDERLAKE_N)
[21:25:08] [PASSED] 0x46D2 (ALDERLAKE_N)
[21:25:08] [PASSED] 0x46D3 (ALDERLAKE_N)
[21:25:08] [PASSED] 0x46D4 (ALDERLAKE_N)
[21:25:08] [PASSED] 0xA721 (ALDERLAKE_P)
[21:25:08] [PASSED] 0xA7A1 (ALDERLAKE_P)
[21:25:08] [PASSED] 0xA7A9 (ALDERLAKE_P)
[21:25:08] [PASSED] 0xA7AC (ALDERLAKE_P)
[21:25:08] [PASSED] 0xA7AD (ALDERLAKE_P)
[21:25:08] [PASSED] 0xA720 (ALDERLAKE_P)
[21:25:08] [PASSED] 0xA7A0 (ALDERLAKE_P)
[21:25:08] [PASSED] 0xA7A8 (ALDERLAKE_P)
[21:25:08] [PASSED] 0xA7AA (ALDERLAKE_P)
[21:25:08] [PASSED] 0xA7AB (ALDERLAKE_P)
[21:25:08] [PASSED] 0xA780 (ALDERLAKE_S)
[21:25:08] [PASSED] 0xA781 (ALDERLAKE_S)
[21:25:08] [PASSED] 0xA782 (ALDERLAKE_S)
[21:25:08] [PASSED] 0xA783 (ALDERLAKE_S)
[21:25:08] [PASSED] 0xA788 (ALDERLAKE_S)
[21:25:08] [PASSED] 0xA789 (ALDERLAKE_S)
[21:25:08] [PASSED] 0xA78A (ALDERLAKE_S)
[21:25:08] [PASSED] 0xA78B (ALDERLAKE_S)
[21:25:08] [PASSED] 0x4905 (DG1)
[21:25:08] [PASSED] 0x4906 (DG1)
[21:25:08] [PASSED] 0x4907 (DG1)
[21:25:08] [PASSED] 0x4908 (DG1)
[21:25:08] [PASSED] 0x4909 (DG1)
[21:25:08] [PASSED] 0x56C0 (DG2)
[21:25:08] [PASSED] 0x56C2 (DG2)
[21:25:08] [PASSED] 0x56C1 (DG2)
[21:25:08] [PASSED] 0x7D51 (METEORLAKE)
[21:25:08] [PASSED] 0x7DD1 (METEORLAKE)
[21:25:08] [PASSED] 0x7D41 (METEORLAKE)
[21:25:08] [PASSED] 0x7D67 (METEORLAKE)
[21:25:08] [PASSED] 0xB640 (METEORLAKE)
[21:25:08] [PASSED] 0x56A0 (DG2)
[21:25:08] [PASSED] 0x56A1 (DG2)
[21:25:08] [PASSED] 0x56A2 (DG2)
[21:25:08] [PASSED] 0x56BE (DG2)
[21:25:08] [PASSED] 0x56BF (DG2)
[21:25:08] [PASSED] 0x5690 (DG2)
[21:25:08] [PASSED] 0x5691 (DG2)
[21:25:08] [PASSED] 0x5692 (DG2)
[21:25:08] [PASSED] 0x56A5 (DG2)
[21:25:08] [PASSED] 0x56A6 (DG2)
[21:25:08] [PASSED] 0x56B0 (DG2)
[21:25:08] [PASSED] 0x56B1 (DG2)
[21:25:08] [PASSED] 0x56BA (DG2)
[21:25:08] [PASSED] 0x56BB (DG2)
[21:25:08] [PASSED] 0x56BC (DG2)
[21:25:08] [PASSED] 0x56BD (DG2)
[21:25:08] [PASSED] 0x5693 (DG2)
[21:25:08] [PASSED] 0x5694 (DG2)
[21:25:08] [PASSED] 0x5695 (DG2)
[21:25:08] [PASSED] 0x56A3 (DG2)
[21:25:08] [PASSED] 0x56A4 (DG2)
[21:25:08] [PASSED] 0x56B2 (DG2)
[21:25:08] [PASSED] 0x56B3 (DG2)
[21:25:08] [PASSED] 0x5696 (DG2)
[21:25:08] [PASSED] 0x5697 (DG2)
[21:25:08] [PASSED] 0xB69 (PVC)
[21:25:08] [PASSED] 0xB6E (PVC)
[21:25:08] [PASSED] 0xBD4 (PVC)
[21:25:08] [PASSED] 0xBD5 (PVC)
[21:25:08] [PASSED] 0xBD6 (PVC)
[21:25:08] [PASSED] 0xBD7 (PVC)
[21:25:08] [PASSED] 0xBD8 (PVC)
[21:25:08] [PASSED] 0xBD9 (PVC)
[21:25:08] [PASSED] 0xBDA (PVC)
[21:25:08] [PASSED] 0xBDB (PVC)
[21:25:08] [PASSED] 0xBE0 (PVC)
[21:25:08] [PASSED] 0xBE1 (PVC)
[21:25:08] [PASSED] 0xBE5 (PVC)
[21:25:08] [PASSED] 0x7D40 (METEORLAKE)
[21:25:08] [PASSED] 0x7D45 (METEORLAKE)
[21:25:08] [PASSED] 0x7D55 (METEORLAKE)
[21:25:08] [PASSED] 0x7D60 (METEORLAKE)
[21:25:08] [PASSED] 0x7DD5 (METEORLAKE)
[21:25:08] [PASSED] 0x6420 (LUNARLAKE)
[21:25:08] [PASSED] 0x64A0 (LUNARLAKE)
[21:25:08] [PASSED] 0x64B0 (LUNARLAKE)
[21:25:08] [PASSED] 0xE202 (BATTLEMAGE)
[21:25:08] [PASSED] 0xE209 (BATTLEMAGE)
[21:25:08] [PASSED] 0xE20B (BATTLEMAGE)
[21:25:08] [PASSED] 0xE20C (BATTLEMAGE)
[21:25:08] [PASSED] 0xE20D (BATTLEMAGE)
[21:25:08] [PASSED] 0xE210 (BATTLEMAGE)
[21:25:08] [PASSED] 0xE211 (BATTLEMAGE)
[21:25:08] [PASSED] 0xE212 (BATTLEMAGE)
[21:25:08] [PASSED] 0xE216 (BATTLEMAGE)
[21:25:08] [PASSED] 0xE220 (BATTLEMAGE)
[21:25:08] [PASSED] 0xE221 (BATTLEMAGE)
[21:25:08] [PASSED] 0xE222 (BATTLEMAGE)
[21:25:08] [PASSED] 0xE223 (BATTLEMAGE)
[21:25:08] [PASSED] 0xB080 (PANTHERLAKE)
[21:25:08] [PASSED] 0xB081 (PANTHERLAKE)
[21:25:08] [PASSED] 0xB082 (PANTHERLAKE)
[21:25:08] [PASSED] 0xB083 (PANTHERLAKE)
[21:25:08] [PASSED] 0xB084 (PANTHERLAKE)
[21:25:08] [PASSED] 0xB085 (PANTHERLAKE)
[21:25:08] [PASSED] 0xB086 (PANTHERLAKE)
[21:25:08] [PASSED] 0xB087 (PANTHERLAKE)
[21:25:08] [PASSED] 0xB08F (PANTHERLAKE)
[21:25:08] [PASSED] 0xB090 (PANTHERLAKE)
[21:25:08] [PASSED] 0xB0A0 (PANTHERLAKE)
[21:25:08] [PASSED] 0xB0B0 (PANTHERLAKE)
[21:25:08] [PASSED] 0xFD80 (PANTHERLAKE)
[21:25:08] [PASSED] 0xFD81 (PANTHERLAKE)
[21:25:08] [PASSED] 0xD740 (NOVALAKE_S)
[21:25:08] [PASSED] 0xD741 (NOVALAKE_S)
[21:25:08] [PASSED] 0xD742 (NOVALAKE_S)
[21:25:08] [PASSED] 0xD743 (NOVALAKE_S)
[21:25:08] [PASSED] 0xD744 (NOVALAKE_S)
[21:25:08] [PASSED] 0xD745 (NOVALAKE_S)
[21:25:08] [PASSED] 0x674C (CRESCENTISLAND)
[21:25:08] =============== [PASSED] check_platform_desc ===============
[21:25:08] ===================== [PASSED] xe_pci ======================
[21:25:08] =================== xe_rtp (2 subtests) ====================
[21:25:08] =============== xe_rtp_process_to_sr_tests ================
[21:25:08] [PASSED] coalesce-same-reg
[21:25:08] [PASSED] no-match-no-add
[21:25:08] [PASSED] match-or
[21:25:08] [PASSED] match-or-xfail
[21:25:08] [PASSED] no-match-no-add-multiple-rules
[21:25:08] [PASSED] two-regs-two-entries
[21:25:08] [PASSED] clr-one-set-other
[21:25:08] [PASSED] set-field
[21:25:08] [PASSED] conflict-duplicate
[21:25:08] [PASSED] conflict-not-disjoint
[21:25:08] [PASSED] conflict-reg-type
[21:25:08] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[21:25:08] ================== xe_rtp_process_tests ===================
[21:25:08] [PASSED] active1
[21:25:08] [PASSED] active2
[21:25:08] [PASSED] active-inactive
[21:25:08] [PASSED] inactive-active
[21:25:08] [PASSED] inactive-1st_or_active-inactive
[21:25:08] [PASSED] inactive-2nd_or_active-inactive
[21:25:08] [PASSED] inactive-last_or_active-inactive
[21:25:08] [PASSED] inactive-no_or_active-inactive
[21:25:08] ============== [PASSED] xe_rtp_process_tests ===============
[21:25:08] ===================== [PASSED] xe_rtp ======================
[21:25:08] ==================== xe_wa (1 subtest) =====================
[21:25:08] ======================== xe_wa_gt =========================
[21:25:08] [PASSED] TIGERLAKE B0
[21:25:08] [PASSED] DG1 A0
[21:25:08] [PASSED] DG1 B0
[21:25:08] [PASSED] ALDERLAKE_S A0
[21:25:08] [PASSED] ALDERLAKE_S B0
[21:25:08] [PASSED] ALDERLAKE_S C0
[21:25:08] [PASSED] ALDERLAKE_S D0
[21:25:08] [PASSED] ALDERLAKE_P A0
[21:25:08] [PASSED] ALDERLAKE_P B0
[21:25:08] [PASSED] ALDERLAKE_P C0
[21:25:08] [PASSED] ALDERLAKE_S RPLS D0
[21:25:08] [PASSED] ALDERLAKE_P RPLU E0
[21:25:08] [PASSED] DG2 G10 C0
[21:25:08] [PASSED] DG2 G11 B1
[21:25:08] [PASSED] DG2 G12 A1
[21:25:08] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[21:25:08] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[21:25:08] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[21:25:08] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[21:25:08] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[21:25:08] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[21:25:08] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[21:25:08] ==================== [PASSED] xe_wa_gt =====================
[21:25:08] ====================== [PASSED] xe_wa ======================
[21:25:08] ============================================================
[21:25:08] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[21:25:08] Elapsed time: 43.597s total, 4.335s configuring, 38.745s building, 0.497s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[21:25:08] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:25:10] 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=25
[21:25:40] Starting KUnit Kernel (1/1)...
[21:25:40] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:25:40] ============ drm_test_pick_cmdline (2 subtests) ============
[21:25:40] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[21:25:40] =============== drm_test_pick_cmdline_named ===============
[21:25:40] [PASSED] NTSC
[21:25:40] [PASSED] NTSC-J
[21:25:40] [PASSED] PAL
[21:25:40] [PASSED] PAL-M
[21:25:40] =========== [PASSED] drm_test_pick_cmdline_named ===========
[21:25:40] ============== [PASSED] drm_test_pick_cmdline ==============
[21:25:40] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[21:25:40] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[21:25:40] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[21:25:40] =========== drm_validate_clone_mode (2 subtests) ===========
[21:25:40] ============== drm_test_check_in_clone_mode ===============
[21:25:40] [PASSED] in_clone_mode
[21:25:40] [PASSED] not_in_clone_mode
[21:25:40] ========== [PASSED] drm_test_check_in_clone_mode ===========
[21:25:40] =============== drm_test_check_valid_clones ===============
[21:25:40] [PASSED] not_in_clone_mode
[21:25:40] [PASSED] valid_clone
[21:25:40] [PASSED] invalid_clone
[21:25:40] =========== [PASSED] drm_test_check_valid_clones ===========
[21:25:40] ============= [PASSED] drm_validate_clone_mode =============
[21:25:40] ============= drm_validate_modeset (1 subtest) =============
[21:25:40] [PASSED] drm_test_check_connector_changed_modeset
[21:25:40] ============== [PASSED] drm_validate_modeset ===============
[21:25:40] ====== drm_test_bridge_get_current_state (2 subtests) ======
[21:25:40] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[21:25:40] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[21:25:40] ======== [PASSED] drm_test_bridge_get_current_state ========
[21:25:40] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[21:25:40] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[21:25:40] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[21:25:40] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[21:25:40] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[21:25:40] ============== drm_bridge_alloc (2 subtests) ===============
[21:25:40] [PASSED] drm_test_drm_bridge_alloc_basic
[21:25:40] [PASSED] drm_test_drm_bridge_alloc_get_put
[21:25:40] ================ [PASSED] drm_bridge_alloc =================
[21:25:40] ============= drm_cmdline_parser (40 subtests) =============
[21:25:40] [PASSED] drm_test_cmdline_force_d_only
[21:25:40] [PASSED] drm_test_cmdline_force_D_only_dvi
[21:25:40] [PASSED] drm_test_cmdline_force_D_only_hdmi
[21:25:40] [PASSED] drm_test_cmdline_force_D_only_not_digital
[21:25:40] [PASSED] drm_test_cmdline_force_e_only
[21:25:40] [PASSED] drm_test_cmdline_res
[21:25:40] [PASSED] drm_test_cmdline_res_vesa
[21:25:40] [PASSED] drm_test_cmdline_res_vesa_rblank
[21:25:40] [PASSED] drm_test_cmdline_res_rblank
[21:25:40] [PASSED] drm_test_cmdline_res_bpp
[21:25:40] [PASSED] drm_test_cmdline_res_refresh
[21:25:40] [PASSED] drm_test_cmdline_res_bpp_refresh
[21:25:40] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[21:25:40] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[21:25:40] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[21:25:40] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[21:25:40] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[21:25:40] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[21:25:40] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[21:25:40] [PASSED] drm_test_cmdline_res_margins_force_on
[21:25:40] [PASSED] drm_test_cmdline_res_vesa_margins
[21:25:40] [PASSED] drm_test_cmdline_name
[21:25:40] [PASSED] drm_test_cmdline_name_bpp
[21:25:40] [PASSED] drm_test_cmdline_name_option
[21:25:40] [PASSED] drm_test_cmdline_name_bpp_option
[21:25:40] [PASSED] drm_test_cmdline_rotate_0
[21:25:40] [PASSED] drm_test_cmdline_rotate_90
[21:25:40] [PASSED] drm_test_cmdline_rotate_180
[21:25:40] [PASSED] drm_test_cmdline_rotate_270
[21:25:40] [PASSED] drm_test_cmdline_hmirror
[21:25:40] [PASSED] drm_test_cmdline_vmirror
[21:25:40] [PASSED] drm_test_cmdline_margin_options
[21:25:40] [PASSED] drm_test_cmdline_multiple_options
[21:25:40] [PASSED] drm_test_cmdline_bpp_extra_and_option
[21:25:40] [PASSED] drm_test_cmdline_extra_and_option
[21:25:40] [PASSED] drm_test_cmdline_freestanding_options
[21:25:40] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[21:25:40] [PASSED] drm_test_cmdline_panel_orientation
[21:25:40] ================ drm_test_cmdline_invalid =================
[21:25:40] [PASSED] margin_only
[21:25:40] [PASSED] interlace_only
[21:25:40] [PASSED] res_missing_x
[21:25:40] [PASSED] res_missing_y
[21:25:40] [PASSED] res_bad_y
[21:25:40] [PASSED] res_missing_y_bpp
[21:25:40] [PASSED] res_bad_bpp
[21:25:40] [PASSED] res_bad_refresh
[21:25:40] [PASSED] res_bpp_refresh_force_on_off
[21:25:40] [PASSED] res_invalid_mode
[21:25:40] [PASSED] res_bpp_wrong_place_mode
[21:25:40] [PASSED] name_bpp_refresh
[21:25:40] [PASSED] name_refresh
[21:25:40] [PASSED] name_refresh_wrong_mode
[21:25:40] [PASSED] name_refresh_invalid_mode
[21:25:40] [PASSED] rotate_multiple
[21:25:40] [PASSED] rotate_invalid_val
[21:25:40] [PASSED] rotate_truncated
[21:25:40] [PASSED] invalid_option
[21:25:40] [PASSED] invalid_tv_option
[21:25:40] [PASSED] truncated_tv_option
[21:25:40] ============ [PASSED] drm_test_cmdline_invalid =============
[21:25:40] =============== drm_test_cmdline_tv_options ===============
[21:25:40] [PASSED] NTSC
[21:25:40] [PASSED] NTSC_443
[21:25:40] [PASSED] NTSC_J
[21:25:40] [PASSED] PAL
[21:25:40] [PASSED] PAL_M
[21:25:40] [PASSED] PAL_N
[21:25:40] [PASSED] SECAM
[21:25:40] [PASSED] MONO_525
[21:25:40] [PASSED] MONO_625
[21:25:40] =========== [PASSED] drm_test_cmdline_tv_options ===========
[21:25:40] =============== [PASSED] drm_cmdline_parser ================
[21:25:40] ========== drmm_connector_hdmi_init (20 subtests) ==========
[21:25:40] [PASSED] drm_test_connector_hdmi_init_valid
[21:25:40] [PASSED] drm_test_connector_hdmi_init_bpc_8
[21:25:40] [PASSED] drm_test_connector_hdmi_init_bpc_10
[21:25:40] [PASSED] drm_test_connector_hdmi_init_bpc_12
[21:25:40] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[21:25:40] [PASSED] drm_test_connector_hdmi_init_bpc_null
[21:25:40] [PASSED] drm_test_connector_hdmi_init_formats_empty
[21:25:40] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[21:25:40] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[21:25:40] [PASSED] supported_formats=0x9 yuv420_allowed=1
[21:25:40] [PASSED] supported_formats=0x9 yuv420_allowed=0
[21:25:40] [PASSED] supported_formats=0x3 yuv420_allowed=1
[21:25:40] [PASSED] supported_formats=0x3 yuv420_allowed=0
[21:25:40] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[21:25:40] [PASSED] drm_test_connector_hdmi_init_null_ddc
[21:25:40] [PASSED] drm_test_connector_hdmi_init_null_product
[21:25:40] [PASSED] drm_test_connector_hdmi_init_null_vendor
[21:25:40] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[21:25:40] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[21:25:40] [PASSED] drm_test_connector_hdmi_init_product_valid
[21:25:40] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[21:25:40] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[21:25:40] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[21:25:40] ========= drm_test_connector_hdmi_init_type_valid =========
[21:25:40] [PASSED] HDMI-A
[21:25:40] [PASSED] HDMI-B
[21:25:40] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[21:25:40] ======== drm_test_connector_hdmi_init_type_invalid ========
[21:25:40] [PASSED] Unknown
[21:25:40] [PASSED] VGA
[21:25:40] [PASSED] DVI-I
[21:25:40] [PASSED] DVI-D
[21:25:40] [PASSED] DVI-A
[21:25:40] [PASSED] Composite
[21:25:40] [PASSED] SVIDEO
[21:25:40] [PASSED] LVDS
[21:25:40] [PASSED] Component
[21:25:40] [PASSED] DIN
[21:25:40] [PASSED] DP
[21:25:40] [PASSED] TV
[21:25:40] [PASSED] eDP
[21:25:40] [PASSED] Virtual
[21:25:40] [PASSED] DSI
[21:25:40] [PASSED] DPI
[21:25:40] [PASSED] Writeback
[21:25:40] [PASSED] SPI
[21:25:40] [PASSED] USB
[21:25:40] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[21:25:40] ============ [PASSED] drmm_connector_hdmi_init =============
[21:25:40] ============= drmm_connector_init (3 subtests) =============
[21:25:40] [PASSED] drm_test_drmm_connector_init
[21:25:40] [PASSED] drm_test_drmm_connector_init_null_ddc
[21:25:40] ========= drm_test_drmm_connector_init_type_valid =========
[21:25:40] [PASSED] Unknown
[21:25:40] [PASSED] VGA
[21:25:40] [PASSED] DVI-I
[21:25:40] [PASSED] DVI-D
[21:25:40] [PASSED] DVI-A
[21:25:40] [PASSED] Composite
[21:25:40] [PASSED] SVIDEO
[21:25:40] [PASSED] LVDS
[21:25:40] [PASSED] Component
[21:25:40] [PASSED] DIN
[21:25:40] [PASSED] DP
[21:25:40] [PASSED] HDMI-A
[21:25:40] [PASSED] HDMI-B
[21:25:40] [PASSED] TV
[21:25:40] [PASSED] eDP
[21:25:40] [PASSED] Virtual
[21:25:40] [PASSED] DSI
[21:25:40] [PASSED] DPI
[21:25:40] [PASSED] Writeback
[21:25:40] [PASSED] SPI
[21:25:40] [PASSED] USB
[21:25:40] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[21:25:40] =============== [PASSED] drmm_connector_init ===============
[21:25:40] ========= drm_connector_dynamic_init (6 subtests) ==========
[21:25:40] [PASSED] drm_test_drm_connector_dynamic_init
[21:25:40] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[21:25:40] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[21:25:40] [PASSED] drm_test_drm_connector_dynamic_init_properties
[21:25:40] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[21:25:40] [PASSED] Unknown
[21:25:40] [PASSED] VGA
[21:25:40] [PASSED] DVI-I
[21:25:40] [PASSED] DVI-D
[21:25:40] [PASSED] DVI-A
[21:25:40] [PASSED] Composite
[21:25:40] [PASSED] SVIDEO
[21:25:40] [PASSED] LVDS
[21:25:40] [PASSED] Component
[21:25:40] [PASSED] DIN
[21:25:40] [PASSED] DP
[21:25:40] [PASSED] HDMI-A
[21:25:40] [PASSED] HDMI-B
[21:25:40] [PASSED] TV
[21:25:40] [PASSED] eDP
[21:25:40] [PASSED] Virtual
[21:25:40] [PASSED] DSI
[21:25:40] [PASSED] DPI
[21:25:40] [PASSED] Writeback
[21:25:40] [PASSED] SPI
[21:25:40] [PASSED] USB
[21:25:40] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[21:25:40] ======== drm_test_drm_connector_dynamic_init_name =========
[21:25:40] [PASSED] Unknown
[21:25:40] [PASSED] VGA
[21:25:40] [PASSED] DVI-I
[21:25:40] [PASSED] DVI-D
[21:25:40] [PASSED] DVI-A
[21:25:40] [PASSED] Composite
[21:25:40] [PASSED] SVIDEO
[21:25:40] [PASSED] LVDS
[21:25:40] [PASSED] Component
[21:25:40] [PASSED] DIN
[21:25:40] [PASSED] DP
[21:25:40] [PASSED] HDMI-A
[21:25:40] [PASSED] HDMI-B
[21:25:40] [PASSED] TV
[21:25:40] [PASSED] eDP
[21:25:40] [PASSED] Virtual
[21:25:40] [PASSED] DSI
[21:25:40] [PASSED] DPI
[21:25:40] [PASSED] Writeback
[21:25:40] [PASSED] SPI
[21:25:40] [PASSED] USB
[21:25:40] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[21:25:40] =========== [PASSED] drm_connector_dynamic_init ============
[21:25:40] ==== drm_connector_dynamic_register_early (4 subtests) =====
[21:25:40] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[21:25:40] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[21:25:40] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[21:25:40] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[21:25:40] ====== [PASSED] drm_connector_dynamic_register_early =======
[21:25:40] ======= drm_connector_dynamic_register (7 subtests) ========
[21:25:40] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[21:25:40] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[21:25:40] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[21:25:40] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[21:25:40] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[21:25:40] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[21:25:40] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[21:25:40] ========= [PASSED] drm_connector_dynamic_register ==========
[21:25:40] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[21:25:40] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[21:25:40] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[21:25:40] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[21:25:40] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[21:25:40] ========== drm_test_get_tv_mode_from_name_valid ===========
[21:25:40] [PASSED] NTSC
[21:25:40] [PASSED] NTSC-443
[21:25:40] [PASSED] NTSC-J
[21:25:40] [PASSED] PAL
[21:25:40] [PASSED] PAL-M
[21:25:40] [PASSED] PAL-N
[21:25:40] [PASSED] SECAM
[21:25:40] [PASSED] Mono
[21:25:40] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[21:25:40] [PASSED] drm_test_get_tv_mode_from_name_truncated
[21:25:40] ============ [PASSED] drm_get_tv_mode_from_name ============
[21:25:40] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[21:25:40] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[21:25:40] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[21:25:40] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[21:25:40] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[21:25:40] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[21:25:40] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[21:25:40] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[21:25:40] [PASSED] VIC 96
[21:25:40] [PASSED] VIC 97
[21:25:40] [PASSED] VIC 101
[21:25:40] [PASSED] VIC 102
[21:25:40] [PASSED] VIC 106
[21:25:40] [PASSED] VIC 107
[21:25:40] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[21:25:40] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[21:25:40] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[21:25:40] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[21:25:40] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[21:25:40] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[21:25:40] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[21:25:40] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[21:25:40] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[21:25:40] [PASSED] Automatic
[21:25:40] [PASSED] Full
[21:25:40] [PASSED] Limited 16:235
[21:25:40] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[21:25:40] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[21:25:40] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[21:25:40] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[21:25:40] === drm_test_drm_hdmi_connector_get_output_format_name ====
[21:25:40] [PASSED] RGB
[21:25:40] [PASSED] YUV 4:2:0
[21:25:40] [PASSED] YUV 4:2:2
[21:25:40] [PASSED] YUV 4:4:4
[21:25:40] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[21:25:40] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[21:25:40] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[21:25:40] ============= drm_damage_helper (21 subtests) ==============
[21:25:40] [PASSED] drm_test_damage_iter_no_damage
[21:25:40] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[21:25:40] [PASSED] drm_test_damage_iter_no_damage_src_moved
[21:25:40] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[21:25:40] [PASSED] drm_test_damage_iter_no_damage_not_visible
[21:25:40] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[21:25:40] [PASSED] drm_test_damage_iter_no_damage_no_fb
[21:25:40] [PASSED] drm_test_damage_iter_simple_damage
[21:25:40] [PASSED] drm_test_damage_iter_single_damage
[21:25:40] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[21:25:40] [PASSED] drm_test_damage_iter_single_damage_outside_src
[21:25:40] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[21:25:40] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[21:25:40] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[21:25:40] [PASSED] drm_test_damage_iter_single_damage_src_moved
[21:25:40] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[21:25:40] [PASSED] drm_test_damage_iter_damage
[21:25:40] [PASSED] drm_test_damage_iter_damage_one_intersect
[21:25:40] [PASSED] drm_test_damage_iter_damage_one_outside
[21:25:40] [PASSED] drm_test_damage_iter_damage_src_moved
[21:25:40] [PASSED] drm_test_damage_iter_damage_not_visible
[21:25:40] ================ [PASSED] drm_damage_helper ================
[21:25:40] ============== drm_dp_mst_helper (3 subtests) ==============
[21:25:40] ============== drm_test_dp_mst_calc_pbn_mode ==============
[21:25:40] [PASSED] Clock 154000 BPP 30 DSC disabled
[21:25:40] [PASSED] Clock 234000 BPP 30 DSC disabled
[21:25:40] [PASSED] Clock 297000 BPP 24 DSC disabled
[21:25:40] [PASSED] Clock 332880 BPP 24 DSC enabled
[21:25:40] [PASSED] Clock 324540 BPP 24 DSC enabled
[21:25:40] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[21:25:40] ============== drm_test_dp_mst_calc_pbn_div ===============
[21:25:40] [PASSED] Link rate 2000000 lane count 4
[21:25:40] [PASSED] Link rate 2000000 lane count 2
[21:25:40] [PASSED] Link rate 2000000 lane count 1
[21:25:40] [PASSED] Link rate 1350000 lane count 4
[21:25:40] [PASSED] Link rate 1350000 lane count 2
[21:25:40] [PASSED] Link rate 1350000 lane count 1
[21:25:40] [PASSED] Link rate 1000000 lane count 4
[21:25:40] [PASSED] Link rate 1000000 lane count 2
[21:25:40] [PASSED] Link rate 1000000 lane count 1
[21:25:40] [PASSED] Link rate 810000 lane count 4
[21:25:40] [PASSED] Link rate 810000 lane count 2
[21:25:40] [PASSED] Link rate 810000 lane count 1
[21:25:40] [PASSED] Link rate 540000 lane count 4
[21:25:40] [PASSED] Link rate 540000 lane count 2
[21:25:40] [PASSED] Link rate 540000 lane count 1
[21:25:40] [PASSED] Link rate 270000 lane count 4
[21:25:40] [PASSED] Link rate 270000 lane count 2
[21:25:40] [PASSED] Link rate 270000 lane count 1
[21:25:40] [PASSED] Link rate 162000 lane count 4
[21:25:40] [PASSED] Link rate 162000 lane count 2
[21:25:40] [PASSED] Link rate 162000 lane count 1
[21:25:40] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[21:25:40] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[21:25:40] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[21:25:40] [PASSED] DP_POWER_UP_PHY with port number
[21:25:40] [PASSED] DP_POWER_DOWN_PHY with port number
[21:25:40] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[21:25:40] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[21:25:40] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[21:25:40] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[21:25:40] [PASSED] DP_QUERY_PAYLOAD with port number
[21:25:40] [PASSED] DP_QUERY_PAYLOAD with VCPI
[21:25:40] [PASSED] DP_REMOTE_DPCD_READ with port number
[21:25:40] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[21:25:40] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[21:25:40] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[21:25:40] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[21:25:40] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[21:25:40] [PASSED] DP_REMOTE_I2C_READ with port number
[21:25:40] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[21:25:40] [PASSED] DP_REMOTE_I2C_READ with transactions array
[21:25:40] [PASSED] DP_REMOTE_I2C_WRITE with port number
[21:25:40] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[21:25:40] [PASSED] DP_REMOTE_I2C_WRITE with data array
[21:25:40] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[21:25:40] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[21:25:40] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[21:25:40] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[21:25:40] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[21:25:40] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[21:25:40] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[21:25:40] ================ [PASSED] drm_dp_mst_helper ================
[21:25:40] ================== drm_exec (7 subtests) ===================
[21:25:40] [PASSED] sanitycheck
[21:25:40] [PASSED] test_lock
[21:25:40] [PASSED] test_lock_unlock
[21:25:40] [PASSED] test_duplicates
[21:25:40] [PASSED] test_prepare
[21:25:40] [PASSED] test_prepare_array
[21:25:40] [PASSED] test_multiple_loops
[21:25:40] ==================== [PASSED] drm_exec =====================
[21:25:40] =========== drm_format_helper_test (17 subtests) ===========
[21:25:40] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[21:25:40] [PASSED] single_pixel_source_buffer
[21:25:40] [PASSED] single_pixel_clip_rectangle
[21:25:40] [PASSED] well_known_colors
[21:25:40] [PASSED] destination_pitch
[21:25:40] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[21:25:40] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[21:25:40] [PASSED] single_pixel_source_buffer
[21:25:40] [PASSED] single_pixel_clip_rectangle
[21:25:40] [PASSED] well_known_colors
[21:25:40] [PASSED] destination_pitch
[21:25:40] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[21:25:40] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[21:25:40] [PASSED] single_pixel_source_buffer
[21:25:40] [PASSED] single_pixel_clip_rectangle
[21:25:40] [PASSED] well_known_colors
[21:25:40] [PASSED] destination_pitch
[21:25:40] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[21:25:40] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[21:25:40] [PASSED] single_pixel_source_buffer
[21:25:40] [PASSED] single_pixel_clip_rectangle
[21:25:40] [PASSED] well_known_colors
[21:25:40] [PASSED] destination_pitch
[21:25:40] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[21:25:40] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[21:25:40] [PASSED] single_pixel_source_buffer
[21:25:40] [PASSED] single_pixel_clip_rectangle
[21:25:40] [PASSED] well_known_colors
[21:25:40] [PASSED] destination_pitch
[21:25:40] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[21:25:40] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[21:25:40] [PASSED] single_pixel_source_buffer
[21:25:40] [PASSED] single_pixel_clip_rectangle
[21:25:40] [PASSED] well_known_colors
[21:25:40] [PASSED] destination_pitch
[21:25:40] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[21:25:40] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[21:25:40] [PASSED] single_pixel_source_buffer
[21:25:40] [PASSED] single_pixel_clip_rectangle
[21:25:40] [PASSED] well_known_colors
[21:25:40] [PASSED] destination_pitch
[21:25:40] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[21:25:40] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[21:25:40] [PASSED] single_pixel_source_buffer
[21:25:40] [PASSED] single_pixel_clip_rectangle
[21:25:40] [PASSED] well_known_colors
[21:25:40] [PASSED] destination_pitch
[21:25:40] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[21:25:40] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[21:25:40] [PASSED] single_pixel_source_buffer
[21:25:40] [PASSED] single_pixel_clip_rectangle
[21:25:40] [PASSED] well_known_colors
[21:25:40] [PASSED] destination_pitch
[21:25:40] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[21:25:40] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[21:25:40] [PASSED] single_pixel_source_buffer
[21:25:40] [PASSED] single_pixel_clip_rectangle
[21:25:40] [PASSED] well_known_colors
[21:25:40] [PASSED] destination_pitch
[21:25:40] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[21:25:40] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[21:25:40] [PASSED] single_pixel_source_buffer
[21:25:40] [PASSED] single_pixel_clip_rectangle
[21:25:40] [PASSED] well_known_colors
[21:25:40] [PASSED] destination_pitch
[21:25:40] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[21:25:40] ============== drm_test_fb_xrgb8888_to_mono ===============
[21:25:40] [PASSED] single_pixel_source_buffer
[21:25:40] [PASSED] single_pixel_clip_rectangle
[21:25:40] [PASSED] well_known_colors
[21:25:40] [PASSED] destination_pitch
[21:25:40] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[21:25:40] ==================== drm_test_fb_swab =====================
[21:25:40] [PASSED] single_pixel_source_buffer
[21:25:40] [PASSED] single_pixel_clip_rectangle
[21:25:40] [PASSED] well_known_colors
[21:25:40] [PASSED] destination_pitch
[21:25:40] ================ [PASSED] drm_test_fb_swab =================
[21:25:40] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[21:25:40] [PASSED] single_pixel_source_buffer
[21:25:40] [PASSED] single_pixel_clip_rectangle
[21:25:40] [PASSED] well_known_colors
[21:25:40] [PASSED] destination_pitch
[21:25:40] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[21:25:40] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[21:25:40] [PASSED] single_pixel_source_buffer
[21:25:40] [PASSED] single_pixel_clip_rectangle
[21:25:40] [PASSED] well_known_colors
[21:25:40] [PASSED] destination_pitch
[21:25:40] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[21:25:40] ================= drm_test_fb_clip_offset =================
[21:25:40] [PASSED] pass through
[21:25:40] [PASSED] horizontal offset
[21:25:40] [PASSED] vertical offset
[21:25:40] [PASSED] horizontal and vertical offset
[21:25:40] [PASSED] horizontal offset (custom pitch)
[21:25:40] [PASSED] vertical offset (custom pitch)
[21:25:40] [PASSED] horizontal and vertical offset (custom pitch)
[21:25:40] ============= [PASSED] drm_test_fb_clip_offset =============
[21:25:40] =================== drm_test_fb_memcpy ====================
[21:25:40] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[21:25:40] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[21:25:40] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[21:25:40] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[21:25:40] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[21:25:40] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[21:25:40] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[21:25:40] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[21:25:40] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[21:25:40] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[21:25:40] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[21:25:40] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[21:25:40] =============== [PASSED] drm_test_fb_memcpy ================
[21:25:40] ============= [PASSED] drm_format_helper_test ==============
[21:25:40] ================= drm_format (18 subtests) =================
[21:25:40] [PASSED] drm_test_format_block_width_invalid
[21:25:40] [PASSED] drm_test_format_block_width_one_plane
[21:25:40] [PASSED] drm_test_format_block_width_two_plane
[21:25:40] [PASSED] drm_test_format_block_width_three_plane
[21:25:40] [PASSED] drm_test_format_block_width_tiled
[21:25:40] [PASSED] drm_test_format_block_height_invalid
[21:25:40] [PASSED] drm_test_format_block_height_one_plane
[21:25:40] [PASSED] drm_test_format_block_height_two_plane
[21:25:40] [PASSED] drm_test_format_block_height_three_plane
[21:25:40] [PASSED] drm_test_format_block_height_tiled
[21:25:40] [PASSED] drm_test_format_min_pitch_invalid
[21:25:40] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[21:25:40] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[21:25:40] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[21:25:40] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[21:25:40] [PASSED] drm_test_format_min_pitch_two_plane
[21:25:40] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[21:25:40] [PASSED] drm_test_format_min_pitch_tiled
[21:25:40] =================== [PASSED] drm_format ====================
[21:25:40] ============== drm_framebuffer (10 subtests) ===============
[21:25:40] ========== drm_test_framebuffer_check_src_coords ==========
[21:25:40] [PASSED] Success: source fits into fb
[21:25:40] [PASSED] Fail: overflowing fb with x-axis coordinate
[21:25:40] [PASSED] Fail: overflowing fb with y-axis coordinate
[21:25:40] [PASSED] Fail: overflowing fb with source width
[21:25:40] [PASSED] Fail: overflowing fb with source height
[21:25:40] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[21:25:40] [PASSED] drm_test_framebuffer_cleanup
[21:25:40] =============== drm_test_framebuffer_create ===============
[21:25:40] [PASSED] ABGR8888 normal sizes
[21:25:40] [PASSED] ABGR8888 max sizes
[21:25:40] [PASSED] ABGR8888 pitch greater than min required
[21:25:40] [PASSED] ABGR8888 pitch less than min required
[21:25:40] [PASSED] ABGR8888 Invalid width
[21:25:40] [PASSED] ABGR8888 Invalid buffer handle
[21:25:40] [PASSED] No pixel format
[21:25:40] [PASSED] ABGR8888 Width 0
[21:25:40] [PASSED] ABGR8888 Height 0
[21:25:40] [PASSED] ABGR8888 Out of bound height * pitch combination
[21:25:40] [PASSED] ABGR8888 Large buffer offset
[21:25:40] [PASSED] ABGR8888 Buffer offset for inexistent plane
[21:25:40] [PASSED] ABGR8888 Invalid flag
[21:25:40] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[21:25:40] [PASSED] ABGR8888 Valid buffer modifier
[21:25:40] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[21:25:40] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[21:25:40] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[21:25:40] [PASSED] NV12 Normal sizes
[21:25:40] [PASSED] NV12 Max sizes
[21:25:40] [PASSED] NV12 Invalid pitch
[21:25:40] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[21:25:40] [PASSED] NV12 different modifier per-plane
[21:25:40] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[21:25:40] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[21:25:40] [PASSED] NV12 Modifier for inexistent plane
[21:25:40] [PASSED] NV12 Handle for inexistent plane
[21:25:40] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[21:25:40] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[21:25:40] [PASSED] YVU420 Normal sizes
[21:25:40] [PASSED] YVU420 Max sizes
[21:25:40] [PASSED] YVU420 Invalid pitch
[21:25:40] [PASSED] YVU420 Different pitches
[21:25:40] [PASSED] YVU420 Different buffer offsets/pitches
[21:25:40] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[21:25:40] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[21:25:40] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[21:25:40] [PASSED] YVU420 Valid modifier
[21:25:40] [PASSED] YVU420 Different modifiers per plane
[21:25:40] [PASSED] YVU420 Modifier for inexistent plane
[21:25:40] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[21:25:40] [PASSED] X0L2 Normal sizes
[21:25:40] [PASSED] X0L2 Max sizes
[21:25:40] [PASSED] X0L2 Invalid pitch
[21:25:40] [PASSED] X0L2 Pitch greater than minimum required
[21:25:40] [PASSED] X0L2 Handle for inexistent plane
[21:25:40] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[21:25:40] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[21:25:40] [PASSED] X0L2 Valid modifier
[21:25:40] [PASSED] X0L2 Modifier for inexistent plane
[21:25:40] =========== [PASSED] drm_test_framebuffer_create ===========
[21:25:40] [PASSED] drm_test_framebuffer_free
[21:25:40] [PASSED] drm_test_framebuffer_init
[21:25:40] [PASSED] drm_test_framebuffer_init_bad_format
[21:25:40] [PASSED] drm_test_framebuffer_init_dev_mismatch
[21:25:40] [PASSED] drm_test_framebuffer_lookup
[21:25:40] [PASSED] drm_test_framebuffer_lookup_inexistent
[21:25:40] [PASSED] drm_test_framebuffer_modifiers_not_supported
[21:25:40] ================= [PASSED] drm_framebuffer =================
[21:25:40] ================ drm_gem_shmem (8 subtests) ================
[21:25:40] [PASSED] drm_gem_shmem_test_obj_create
[21:25:40] [PASSED] drm_gem_shmem_test_obj_create_private
[21:25:40] [PASSED] drm_gem_shmem_test_pin_pages
[21:25:40] [PASSED] drm_gem_shmem_test_vmap
[21:25:40] [PASSED] drm_gem_shmem_test_get_sg_table
[21:25:40] [PASSED] drm_gem_shmem_test_get_pages_sgt
[21:25:40] [PASSED] drm_gem_shmem_test_madvise
[21:25:40] [PASSED] drm_gem_shmem_test_purge
[21:25:40] ================== [PASSED] drm_gem_shmem ==================
[21:25:40] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[21:25:40] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[21:25:40] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[21:25:40] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[21:25:40] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[21:25:40] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[21:25:40] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[21:25:40] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[21:25:40] [PASSED] Automatic
[21:25:40] [PASSED] Full
[21:25:40] [PASSED] Limited 16:235
[21:25:40] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[21:25:40] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[21:25:40] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[21:25:40] [PASSED] drm_test_check_disable_connector
[21:25:40] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[21:25:40] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[21:25:40] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[21:25:40] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[21:25:40] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[21:25:40] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[21:25:40] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[21:25:40] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[21:25:40] [PASSED] drm_test_check_output_bpc_dvi
[21:25:40] [PASSED] drm_test_check_output_bpc_format_vic_1
[21:25:40] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[21:25:40] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[21:25:40] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[21:25:40] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[21:25:40] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[21:25:40] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[21:25:40] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[21:25:40] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[21:25:40] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[21:25:40] [PASSED] drm_test_check_broadcast_rgb_value
[21:25:40] [PASSED] drm_test_check_bpc_8_value
[21:25:40] [PASSED] drm_test_check_bpc_10_value
[21:25:40] [PASSED] drm_test_check_bpc_12_value
[21:25:40] [PASSED] drm_test_check_format_value
[21:25:40] [PASSED] drm_test_check_tmds_char_value
[21:25:40] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[21:25:40] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[21:25:40] [PASSED] drm_test_check_mode_valid
[21:25:40] [PASSED] drm_test_check_mode_valid_reject
[21:25:40] [PASSED] drm_test_check_mode_valid_reject_rate
[21:25:40] [PASSED] drm_test_check_mode_valid_reject_max_clock
[21:25:40] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[21:25:40] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[21:25:40] [PASSED] drm_test_check_infoframes
[21:25:40] [PASSED] drm_test_check_reject_avi_infoframe
[21:25:40] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[21:25:40] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[21:25:40] [PASSED] drm_test_check_reject_audio_infoframe
[21:25:40] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[21:25:40] ================= drm_managed (2 subtests) =================
[21:25:40] [PASSED] drm_test_managed_release_action
[21:25:40] [PASSED] drm_test_managed_run_action
[21:25:40] =================== [PASSED] drm_managed ===================
[21:25:40] =================== drm_mm (6 subtests) ====================
[21:25:40] [PASSED] drm_test_mm_init
[21:25:40] [PASSED] drm_test_mm_debug
[21:25:40] [PASSED] drm_test_mm_align32
[21:25:40] [PASSED] drm_test_mm_align64
[21:25:40] [PASSED] drm_test_mm_lowest
[21:25:40] [PASSED] drm_test_mm_highest
[21:25:40] ===================== [PASSED] drm_mm ======================
[21:25:40] ============= drm_modes_analog_tv (5 subtests) =============
[21:25:40] [PASSED] drm_test_modes_analog_tv_mono_576i
[21:25:40] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[21:25:40] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[21:25:40] [PASSED] drm_test_modes_analog_tv_pal_576i
[21:25:40] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[21:25:40] =============== [PASSED] drm_modes_analog_tv ===============
[21:25:40] ============== drm_plane_helper (2 subtests) ===============
[21:25:40] =============== drm_test_check_plane_state ================
[21:25:40] [PASSED] clipping_simple
[21:25:40] [PASSED] clipping_rotate_reflect
[21:25:40] [PASSED] positioning_simple
[21:25:40] [PASSED] upscaling
[21:25:40] [PASSED] downscaling
[21:25:40] [PASSED] rounding1
[21:25:40] [PASSED] rounding2
[21:25:40] [PASSED] rounding3
[21:25:40] [PASSED] rounding4
[21:25:40] =========== [PASSED] drm_test_check_plane_state ============
[21:25:40] =========== drm_test_check_invalid_plane_state ============
[21:25:40] [PASSED] positioning_invalid
[21:25:40] [PASSED] upscaling_invalid
[21:25:40] [PASSED] downscaling_invalid
[21:25:40] ======= [PASSED] drm_test_check_invalid_plane_state ========
[21:25:40] ================ [PASSED] drm_plane_helper =================
[21:25:40] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[21:25:40] ====== drm_test_connector_helper_tv_get_modes_check =======
[21:25:40] [PASSED] None
[21:25:40] [PASSED] PAL
[21:25:40] [PASSED] NTSC
[21:25:40] [PASSED] Both, NTSC Default
[21:25:40] [PASSED] Both, PAL Default
[21:25:40] [PASSED] Both, NTSC Default, with PAL on command-line
[21:25:40] [PASSED] Both, PAL Default, with NTSC on command-line
[21:25:40] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[21:25:40] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[21:25:40] ================== drm_rect (9 subtests) ===================
[21:25:40] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[21:25:40] [PASSED] drm_test_rect_clip_scaled_not_clipped
[21:25:40] [PASSED] drm_test_rect_clip_scaled_clipped
[21:25:40] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[21:25:40] ================= drm_test_rect_intersect =================
[21:25:40] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[21:25:40] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[21:25:40] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[21:25:40] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[21:25:40] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[21:25:40] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[21:25:40] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[21:25:40] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[21:25:40] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[21:25:40] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[21:25:40] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[21:25:40] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[21:25:40] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[21:25:40] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[21:25:40] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[21:25:40] ============= [PASSED] drm_test_rect_intersect =============
[21:25:40] ================ drm_test_rect_calc_hscale ================
[21:25:40] [PASSED] normal use
[21:25:40] [PASSED] out of max range
[21:25:40] [PASSED] out of min range
[21:25:40] [PASSED] zero dst
[21:25:40] [PASSED] negative src
[21:25:40] [PASSED] negative dst
[21:25:40] ============ [PASSED] drm_test_rect_calc_hscale ============
[21:25:40] ================ drm_test_rect_calc_vscale ================
[21:25:40] [PASSED] normal use
[21:25:40] [PASSED] out of max range
[21:25:40] [PASSED] out of min range
[21:25:40] [PASSED] zero dst
[21:25:40] [PASSED] negative src
[21:25:40] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[21:25:40] ============ [PASSED] drm_test_rect_calc_vscale ============
[21:25:40] ================== drm_test_rect_rotate ===================
[21:25:40] [PASSED] reflect-x
[21:25:40] [PASSED] reflect-y
[21:25:40] [PASSED] rotate-0
[21:25:40] [PASSED] rotate-90
[21:25:40] [PASSED] rotate-180
[21:25:40] [PASSED] rotate-270
[21:25:40] ============== [PASSED] drm_test_rect_rotate ===============
[21:25:40] ================ drm_test_rect_rotate_inv =================
[21:25:40] [PASSED] reflect-x
[21:25:40] [PASSED] reflect-y
[21:25:40] [PASSED] rotate-0
[21:25:40] [PASSED] rotate-90
[21:25:40] [PASSED] rotate-180
[21:25:40] [PASSED] rotate-270
[21:25:40] ============ [PASSED] drm_test_rect_rotate_inv =============
[21:25:40] ==================== [PASSED] drm_rect =====================
[21:25:40] ============ drm_sysfb_modeset_test (1 subtest) ============
[21:25:40] ============ drm_test_sysfb_build_fourcc_list =============
[21:25:40] [PASSED] no native formats
[21:25:40] [PASSED] XRGB8888 as native format
[21:25:40] [PASSED] remove duplicates
[21:25:40] [PASSED] convert alpha formats
[21:25:40] [PASSED] random formats
[21:25:40] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[21:25:40] ============= [PASSED] drm_sysfb_modeset_test ==============
[21:25:40] ================== drm_fixp (2 subtests) ===================
[21:25:40] [PASSED] drm_test_int2fixp
[21:25:40] [PASSED] drm_test_sm2fixp
[21:25:40] ==================== [PASSED] drm_fixp =====================
[21:25:40] ============================================================
[21:25:40] Testing complete. Ran 621 tests: passed: 621
[21:25:41] Elapsed time: 32.152s total, 1.629s configuring, 30.306s building, 0.166s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[21:25:41] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:25:42] 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=25
[21:25:51] Starting KUnit Kernel (1/1)...
[21:25:51] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:25:52] ================= ttm_device (5 subtests) ==================
[21:25:52] [PASSED] ttm_device_init_basic
[21:25:52] [PASSED] ttm_device_init_multiple
[21:25:52] [PASSED] ttm_device_fini_basic
[21:25:52] [PASSED] ttm_device_init_no_vma_man
[21:25:52] ================== ttm_device_init_pools ==================
[21:25:52] [PASSED] No DMA allocations, no DMA32 required
[21:25:52] [PASSED] DMA allocations, DMA32 required
[21:25:52] [PASSED] No DMA allocations, DMA32 required
[21:25:52] [PASSED] DMA allocations, no DMA32 required
[21:25:52] ============== [PASSED] ttm_device_init_pools ==============
[21:25:52] =================== [PASSED] ttm_device ====================
[21:25:52] ================== ttm_pool (8 subtests) ===================
[21:25:52] ================== ttm_pool_alloc_basic ===================
[21:25:52] [PASSED] One page
[21:25:52] [PASSED] More than one page
[21:25:52] [PASSED] Above the allocation limit
[21:25:52] [PASSED] One page, with coherent DMA mappings enabled
[21:25:52] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[21:25:52] ============== [PASSED] ttm_pool_alloc_basic ===============
[21:25:52] ============== ttm_pool_alloc_basic_dma_addr ==============
[21:25:52] [PASSED] One page
[21:25:52] [PASSED] More than one page
[21:25:52] [PASSED] Above the allocation limit
[21:25:52] [PASSED] One page, with coherent DMA mappings enabled
[21:25:52] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[21:25:52] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[21:25:52] [PASSED] ttm_pool_alloc_order_caching_match
[21:25:52] [PASSED] ttm_pool_alloc_caching_mismatch
[21:25:52] [PASSED] ttm_pool_alloc_order_mismatch
[21:25:52] [PASSED] ttm_pool_free_dma_alloc
[21:25:52] [PASSED] ttm_pool_free_no_dma_alloc
[21:25:52] [PASSED] ttm_pool_fini_basic
[21:25:52] ==================== [PASSED] ttm_pool =====================
[21:25:52] ================ ttm_resource (8 subtests) =================
[21:25:52] ================= ttm_resource_init_basic =================
[21:25:52] [PASSED] Init resource in TTM_PL_SYSTEM
[21:25:52] [PASSED] Init resource in TTM_PL_VRAM
[21:25:52] [PASSED] Init resource in a private placement
[21:25:52] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[21:25:52] ============= [PASSED] ttm_resource_init_basic =============
[21:25:52] [PASSED] ttm_resource_init_pinned
[21:25:52] [PASSED] ttm_resource_fini_basic
[21:25:52] [PASSED] ttm_resource_manager_init_basic
[21:25:52] [PASSED] ttm_resource_manager_usage_basic
[21:25:52] [PASSED] ttm_resource_manager_set_used_basic
[21:25:52] [PASSED] ttm_sys_man_alloc_basic
[21:25:52] [PASSED] ttm_sys_man_free_basic
[21:25:52] ================== [PASSED] ttm_resource ===================
[21:25:52] =================== ttm_tt (15 subtests) ===================
[21:25:52] ==================== ttm_tt_init_basic ====================
[21:25:52] [PASSED] Page-aligned size
[21:25:52] [PASSED] Extra pages requested
[21:25:52] ================ [PASSED] ttm_tt_init_basic ================
[21:25:52] [PASSED] ttm_tt_init_misaligned
[21:25:52] [PASSED] ttm_tt_fini_basic
[21:25:52] [PASSED] ttm_tt_fini_sg
[21:25:52] [PASSED] ttm_tt_fini_shmem
[21:25:52] [PASSED] ttm_tt_create_basic
[21:25:52] [PASSED] ttm_tt_create_invalid_bo_type
[21:25:52] [PASSED] ttm_tt_create_ttm_exists
[21:25:52] [PASSED] ttm_tt_create_failed
[21:25:52] [PASSED] ttm_tt_destroy_basic
[21:25:52] [PASSED] ttm_tt_populate_null_ttm
[21:25:52] [PASSED] ttm_tt_populate_populated_ttm
[21:25:52] [PASSED] ttm_tt_unpopulate_basic
[21:25:52] [PASSED] ttm_tt_unpopulate_empty_ttm
[21:25:52] [PASSED] ttm_tt_swapin_basic
[21:25:52] ===================== [PASSED] ttm_tt ======================
[21:25:52] =================== ttm_bo (14 subtests) ===================
[21:25:52] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[21:25:52] [PASSED] Cannot be interrupted and sleeps
[21:25:52] [PASSED] Cannot be interrupted, locks straight away
[21:25:52] [PASSED] Can be interrupted, sleeps
[21:25:52] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[21:25:52] [PASSED] ttm_bo_reserve_locked_no_sleep
[21:25:52] [PASSED] ttm_bo_reserve_no_wait_ticket
[21:25:52] [PASSED] ttm_bo_reserve_double_resv
[21:25:52] [PASSED] ttm_bo_reserve_interrupted
[21:25:52] [PASSED] ttm_bo_reserve_deadlock
[21:25:52] [PASSED] ttm_bo_unreserve_basic
[21:25:52] [PASSED] ttm_bo_unreserve_pinned
[21:25:52] [PASSED] ttm_bo_unreserve_bulk
[21:25:52] [PASSED] ttm_bo_fini_basic
[21:25:52] [PASSED] ttm_bo_fini_shared_resv
[21:25:52] [PASSED] ttm_bo_pin_basic
[21:25:52] [PASSED] ttm_bo_pin_unpin_resource
[21:25:52] [PASSED] ttm_bo_multiple_pin_one_unpin
[21:25:52] ===================== [PASSED] ttm_bo ======================
[21:25:52] ============== ttm_bo_validate (21 subtests) ===============
[21:25:52] ============== ttm_bo_init_reserved_sys_man ===============
[21:25:52] [PASSED] Buffer object for userspace
[21:25:52] [PASSED] Kernel buffer object
[21:25:52] [PASSED] Shared buffer object
[21:25:52] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[21:25:52] ============== ttm_bo_init_reserved_mock_man ==============
[21:25:52] [PASSED] Buffer object for userspace
[21:25:52] [PASSED] Kernel buffer object
[21:25:52] [PASSED] Shared buffer object
[21:25:52] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[21:25:52] [PASSED] ttm_bo_init_reserved_resv
[21:25:52] ================== ttm_bo_validate_basic ==================
[21:25:52] [PASSED] Buffer object for userspace
[21:25:52] [PASSED] Kernel buffer object
[21:25:52] [PASSED] Shared buffer object
[21:25:52] ============== [PASSED] ttm_bo_validate_basic ==============
[21:25:52] [PASSED] ttm_bo_validate_invalid_placement
[21:25:52] ============= ttm_bo_validate_same_placement ==============
[21:25:52] [PASSED] System manager
[21:25:52] [PASSED] VRAM manager
[21:25:52] ========= [PASSED] ttm_bo_validate_same_placement ==========
[21:25:52] [PASSED] ttm_bo_validate_failed_alloc
[21:25:52] [PASSED] ttm_bo_validate_pinned
[21:25:52] [PASSED] ttm_bo_validate_busy_placement
[21:25:52] ================ ttm_bo_validate_multihop =================
[21:25:52] [PASSED] Buffer object for userspace
[21:25:52] [PASSED] Kernel buffer object
[21:25:52] [PASSED] Shared buffer object
[21:25:52] ============ [PASSED] ttm_bo_validate_multihop =============
[21:25:52] ========== ttm_bo_validate_no_placement_signaled ==========
[21:25:52] [PASSED] Buffer object in system domain, no page vector
[21:25:52] [PASSED] Buffer object in system domain with an existing page vector
[21:25:52] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[21:25:52] ======== ttm_bo_validate_no_placement_not_signaled ========
[21:25:52] [PASSED] Buffer object for userspace
[21:25:52] [PASSED] Kernel buffer object
[21:25:52] [PASSED] Shared buffer object
[21:25:52] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[21:25:52] [PASSED] ttm_bo_validate_move_fence_signaled
[21:25:52] ========= ttm_bo_validate_move_fence_not_signaled =========
[21:25:52] [PASSED] Waits for GPU
[21:25:52] [PASSED] Tries to lock straight away
[21:25:52] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[21:25:52] [PASSED] ttm_bo_validate_happy_evict
[21:25:52] [PASSED] ttm_bo_validate_all_pinned_evict
[21:25:52] [PASSED] ttm_bo_validate_allowed_only_evict
[21:25:52] [PASSED] ttm_bo_validate_deleted_evict
[21:25:52] [PASSED] ttm_bo_validate_busy_domain_evict
[21:25:52] [PASSED] ttm_bo_validate_evict_gutting
[21:25:52] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[21:25:52] ================= [PASSED] ttm_bo_validate =================
[21:25:52] ============================================================
[21:25:52] Testing complete. Ran 101 tests: passed: 101
[21:25:52] Elapsed time: 11.173s total, 1.617s configuring, 9.239s building, 0.294s 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/wa: Steer RMW of MCR registers while building default LRC (rev3)
2026-02-06 22:30 [PATCH] drm/xe/wa: Steer RMW of MCR registers while building default LRC Matt Roper
` (5 preceding siblings ...)
2026-02-09 21:25 ` ✓ CI.KUnit: success for drm/xe/wa: Steer RMW of MCR registers while building default LRC (rev3) Patchwork
@ 2026-02-09 22:21 ` Patchwork
2026-02-10 1:13 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-02-19 11:30 ` drm/xe/wa: Steer RMW of MCR registers while building default LRC Vivekanandan, Balasubramani
8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-02-09 22:21 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1781 bytes --]
== Series Details ==
Series: drm/xe/wa: Steer RMW of MCR registers while building default LRC (rev3)
URL : https://patchwork.freedesktop.org/series/161300/
State : success
== Summary ==
CI Bug Log - changes from xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266_BAT -> xe-pw-161300v3_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 12)
------------------------------
Additional (1): bat-bmg-3
Known issues
------------
Here are the changes found in xe-pw-161300v3_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-vram01-p2p:
- bat-bmg-3: NOTRUN -> [SKIP][1] ([Intel XE#6566]) +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/bat-bmg-3/igt@xe_peer2peer@read@read-gpua-vram01-gpub-vram01-p2p.html
* igt@xe_waitfence@engine:
- bat-dg2-oem2: [PASS][2] -> [FAIL][3] ([Intel XE#6519])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/bat-dg2-oem2/igt@xe_waitfence@engine.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/bat-dg2-oem2/igt@xe_waitfence@engine.html
[Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519
[Intel XE#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566
Build changes
-------------
* Linux: xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266 -> xe-pw-161300v3
IGT_8746: 8746
xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266: 51b5b2d82487a590ad0bfd8c3908f82fa8277266
xe-pw-161300v3: 161300v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/index.html
[-- Attachment #2: Type: text/html, Size: 2379 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ Xe.CI.FULL: failure for drm/xe/wa: Steer RMW of MCR registers while building default LRC (rev3)
2026-02-06 22:30 [PATCH] drm/xe/wa: Steer RMW of MCR registers while building default LRC Matt Roper
` (6 preceding siblings ...)
2026-02-09 22:21 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-02-10 1:13 ` Patchwork
2026-02-19 15:23 ` Matt Roper
2026-02-19 11:30 ` drm/xe/wa: Steer RMW of MCR registers while building default LRC Vivekanandan, Balasubramani
8 siblings, 1 reply; 14+ messages in thread
From: Patchwork @ 2026-02-10 1:13 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 19107 bytes --]
== Series Details ==
Series: drm/xe/wa: Steer RMW of MCR registers while building default LRC (rev3)
URL : https://patchwork.freedesktop.org/series/161300/
State : failure
== Summary ==
CI Bug Log - changes from xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266_FULL -> xe-pw-161300v3_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-161300v3_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-161300v3_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-161300v3_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-c-edp-1:
- shard-lnl: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-c-edp-1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-c-edp-1.html
* igt@xe_exec_system_allocator@process-many-execqueues-mmap-remap-madvise:
- shard-bmg: [PASS][3] -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-3/igt@xe_exec_system_allocator@process-many-execqueues-mmap-remap-madvise.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-1/igt@xe_exec_system_allocator@process-many-execqueues-mmap-remap-madvise.html
Known issues
------------
Here are the changes found in xe-pw-161300v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2233])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2887]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-bmg: [PASS][9] -> [SKIP][10] ([Intel XE#2291]) +3 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-4/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [PASS][11] -> [FAIL][12] ([Intel XE#4633])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [PASS][13] -> [SKIP][14] ([Intel XE#4294])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-lnl: [PASS][15] -> [FAIL][16] ([i915#4767])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-lnl-8/igt@kms_fbcon_fbt@fbc-suspend.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-lnl-3/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [PASS][17] -> [SKIP][18] ([Intel XE#2316]) +6 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2311]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#7061])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2313])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#1435])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-3/igt@kms_setmode@clone-exclusive-crtc.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-5/igt@kms_setmode@clone-exclusive-crtc.html
* igt@xe_eudebug@discovery-race-sigint:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#4837])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@xe_eudebug@discovery-race-sigint.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][26] -> [INCOMPLETE][27] ([Intel XE#6321]) +1 other test incomplete
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-10/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2322])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic.html
* igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-prefetch:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#7136]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-prefetch.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
- shard-lnl: [PASS][30] -> [FAIL][31] ([Intel XE#5625])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
* igt@xe_multigpu_svm@mgpu-migration-prefetch:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#6964])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@xe_multigpu_svm@mgpu-migration-prefetch.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [SKIP][33] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][34]
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-10/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-bmg: [SKIP][35] ([Intel XE#2291]) -> [PASS][36] +3 other tests pass
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-10/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-bmg: [FAIL][37] ([Intel XE#5299]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-bmg: [SKIP][39] ([Intel XE#4354]) -> [PASS][40]
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-1/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: [SKIP][41] ([Intel XE#2373]) -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-6/igt@kms_feature_discovery@display-2x.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-10/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][43] ([Intel XE#2316]) -> [PASS][44] +7 other tests pass
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-10/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_plane_lowres@tiling-4@pipe-d-dp-2:
- shard-bmg: [ABORT][45] -> [PASS][46] +1 other test pass
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-8/igt@kms_plane_lowres@tiling-4@pipe-d-dp-2.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@kms_plane_lowres@tiling-4@pipe-d-dp-2.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][47] ([Intel XE#2311]) -> [SKIP][48] ([Intel XE#2312]) +16 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][49] ([Intel XE#4141]) -> [SKIP][50] ([Intel XE#2312]) +4 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][51] ([Intel XE#2312]) -> [SKIP][52] ([Intel XE#4141]) +9 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][53] ([Intel XE#2312]) -> [SKIP][54] ([Intel XE#2311]) +15 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][55] ([Intel XE#2312]) -> [SKIP][56] ([Intel XE#2313]) +13 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][57] ([Intel XE#2313]) -> [SKIP][58] ([Intel XE#2312]) +13 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][59] ([Intel XE#5021]) -> [SKIP][60] ([Intel XE#4596])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-yf.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][61] ([Intel XE#1729]) -> [SKIP][62] ([Intel XE#2426])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-bmg: [ABORT][63] ([Intel XE#5466] / [Intel XE#6652]) -> [ABORT][64] ([Intel XE#5466])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[i915#4767]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4767
Build changes
-------------
* Linux: xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266 -> xe-pw-161300v3
IGT_8746: 8746
xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266: 51b5b2d82487a590ad0bfd8c3908f82fa8277266
xe-pw-161300v3: 161300v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/index.html
[-- Attachment #2: Type: text/html, Size: 21431 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: drm/xe/wa: Steer RMW of MCR registers while building default LRC
2026-02-06 22:30 [PATCH] drm/xe/wa: Steer RMW of MCR registers while building default LRC Matt Roper
` (7 preceding siblings ...)
2026-02-10 1:13 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-02-19 11:30 ` Vivekanandan, Balasubramani
8 siblings, 0 replies; 14+ messages in thread
From: Vivekanandan, Balasubramani @ 2026-02-19 11:30 UTC (permalink / raw)
To: Matt Roper, intel-xe; +Cc: Michal Wajdeczko
On 06.02.2026 14:30, Matt Roper wrote:
> When generating the default LRC, if a register is not masked, we apply
> any save-restore programming necessary via a read-modify-write sequence
> that will ensure we only update the relevant bits/fields without
> clobbering the rest of the register. However some of the registers that
> need to be updated might be MCR registers which require steering to a
> non-terminated instance to ensure we can read back a valid, non-zero
> value. The steering of reads originating from a command streamer is
> controlled by register CS_MMIO_GROUP_INSTANCE_SELECT. Emit additional
> MI_LRI commands to update the steering before any RMW of an MCR register
> to ensure the reads are performed properly.
>
> Note that needing to perform a RMW of an MCR register while building the
> default LRC is pretty rare. Most of the MCR registers that are part of
> an engine's LRCs are also masked registers, so no MCR is necessary.
>
> Fixes: f2f90989ccff ("drm/xe: Avoid reading RMW registers in emit_wa_job")
> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
> ---
> drivers/gpu/drm/xe/regs/xe_engine_regs.h | 6 +++
> drivers/gpu/drm/xe/xe_gt.c | 66 +++++++++++++++++++-----
> 2 files changed, 60 insertions(+), 12 deletions(-)
Looks good to me.
Reviewed-by: Balasubramani Vivekanandan <balasubramani.vivekanandan@intel.com>
Regards,
Bala
>
> diff --git a/drivers/gpu/drm/xe/regs/xe_engine_regs.h b/drivers/gpu/drm/xe/regs/xe_engine_regs.h
> index 68172b0248a6..dc5a4fafa70c 100644
> --- a/drivers/gpu/drm/xe/regs/xe_engine_regs.h
> +++ b/drivers/gpu/drm/xe/regs/xe_engine_regs.h
> @@ -96,6 +96,12 @@
> #define ENABLE_SEMAPHORE_POLL_BIT REG_BIT(13)
>
> #define RING_CMD_CCTL(base) XE_REG((base) + 0xc4, XE_REG_OPTION_MASKED)
> +
> +#define CS_MMIO_GROUP_INSTANCE_SELECT(base) XE_REG((base) + 0xcc)
> +#define SELECTIVE_READ_ADDRESSING REG_BIT(30)
> +#define SELECTIVE_READ_GROUP REG_GENMASK(29, 23)
> +#define SELECTIVE_READ_INSTANCE REG_GENMASK(22, 16)
> +
> /*
> * 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.
> diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c
> index 22132467ff4f..ae041168fabf 100644
> --- a/drivers/gpu/drm/xe/xe_gt.c
> +++ b/drivers/gpu/drm/xe/xe_gt.c
> @@ -207,11 +207,15 @@ static int emit_nop_job(struct xe_gt *gt, struct xe_exec_queue *q)
> return ret;
> }
>
> +/* Dwords required to emit a RMW of a register */
> +#define EMIT_RMW_DW 20
> +
> static int emit_wa_job(struct xe_gt *gt, struct xe_exec_queue *q)
> {
> - struct xe_reg_sr *sr = &q->hwe->reg_lrc;
> + struct xe_hw_engine *hwe = q->hwe;
> + struct xe_reg_sr *sr = &hwe->reg_lrc;
> struct xe_reg_sr_entry *entry;
> - int count_rmw = 0, count = 0, ret;
> + int count_rmw = 0, count_rmw_mcr = 0, count = 0, ret;
> unsigned long idx;
> struct xe_bb *bb;
> size_t bb_len = 0;
> @@ -221,6 +225,8 @@ static int emit_wa_job(struct xe_gt *gt, struct xe_exec_queue *q)
> xa_for_each(&sr->xa, idx, entry) {
> if (entry->reg.masked || entry->clr_bits == ~0)
> ++count;
> + else if (entry->reg.mcr)
> + ++count_rmw_mcr;
> else
> ++count_rmw;
> }
> @@ -228,17 +234,35 @@ static int emit_wa_job(struct xe_gt *gt, struct xe_exec_queue *q)
> if (count)
> bb_len += count * 2 + 1;
>
> - if (count_rmw)
> - bb_len += count_rmw * 20 + 7;
> + /*
> + * RMW of MCR registers is the same as a normal RMW, except an
> + * additional LRI (3 dwords) is required per register to steer the read
> + * to a nom-terminated instance.
> + *
> + * We could probably shorten the batch slightly by eliding the
> + * steering for consecutive MCR registers that have the same
> + * group/instance target, but it's not worth the extra complexity to do
> + * so.
> + */
> + bb_len += count_rmw * EMIT_RMW_DW;
> + bb_len += count_rmw_mcr * (EMIT_RMW_DW + 3);
>
> - if (q->hwe->class == XE_ENGINE_CLASS_RENDER)
> + /*
> + * After doing all RMW, we need 7 trailing dwords to clean up,
> + * plus an additional 3 dwords to reset steering if any of the
> + * registers were MCR.
> + */
> + if (count_rmw || count_rmw_mcr)
> + bb_len += 7 + (count_rmw_mcr ? 3 : 0);
> +
> + if (hwe->class == XE_ENGINE_CLASS_RENDER)
> /*
> * Big enough to emit all of the context's 3DSTATE via
> * xe_lrc_emit_hwe_state_instructions()
> */
> - bb_len += xe_gt_lrc_size(gt, q->hwe->class) / sizeof(u32);
> + bb_len += xe_gt_lrc_size(gt, hwe->class) / sizeof(u32);
>
> - xe_gt_dbg(gt, "LRC %s WA job: %zu dwords\n", q->hwe->name, bb_len);
> + xe_gt_dbg(gt, "LRC %s WA job: %zu dwords\n", hwe->name, bb_len);
>
> bb = xe_bb_new(gt, bb_len, false);
> if (IS_ERR(bb))
> @@ -273,13 +297,23 @@ static int emit_wa_job(struct xe_gt *gt, struct xe_exec_queue *q)
> }
> }
>
> - if (count_rmw) {
> - /* Emit MI_MATH for each RMW reg: 20dw per reg + 7 trailing dw */
> -
> + if (count_rmw || count_rmw_mcr) {
> xa_for_each(&sr->xa, idx, entry) {
> if (entry->reg.masked || entry->clr_bits == ~0)
> continue;
>
> + if (entry->reg.mcr) {
> + struct xe_reg_mcr reg = { .__reg.raw = entry->reg.raw };
> + u8 group, instance;
> +
> + xe_gt_mcr_get_nonterminated_steering(gt, reg, &group, &instance);
> + *cs++ = MI_LOAD_REGISTER_IMM | MI_LRI_NUM_REGS(1);
> + *cs++ = CS_MMIO_GROUP_INSTANCE_SELECT(hwe->mmio_base).addr;
> + *cs++ = SELECTIVE_READ_ADDRESSING |
> + REG_FIELD_PREP(SELECTIVE_READ_GROUP, group) |
> + REG_FIELD_PREP(SELECTIVE_READ_INSTANCE, instance);
> + }
> +
> *cs++ = MI_LOAD_REGISTER_REG | MI_LRR_DST_CS_MMIO;
> *cs++ = entry->reg.addr;
> *cs++ = CS_GPR_REG(0, 0).addr;
> @@ -305,8 +339,9 @@ static int emit_wa_job(struct xe_gt *gt, struct xe_exec_queue *q)
> *cs++ = CS_GPR_REG(0, 0).addr;
> *cs++ = entry->reg.addr;
>
> - xe_gt_dbg(gt, "REG[%#x] = ~%#x|%#x\n",
> - entry->reg.addr, entry->clr_bits, entry->set_bits);
> + xe_gt_dbg(gt, "REG[%#x] = ~%#x|%#x%s\n",
> + entry->reg.addr, entry->clr_bits, entry->set_bits,
> + entry->reg.mcr ? " (MCR)" : "");
> }
>
> /* reset used GPR */
> @@ -318,6 +353,13 @@ static int emit_wa_job(struct xe_gt *gt, struct xe_exec_queue *q)
> *cs++ = 0;
> *cs++ = CS_GPR_REG(0, 2).addr;
> *cs++ = 0;
> +
> + /* reset steering */
> + if (count_rmw_mcr) {
> + *cs++ = MI_LOAD_REGISTER_IMM | MI_LRI_NUM_REGS(1);
> + *cs++ = CS_MMIO_GROUP_INSTANCE_SELECT(q->hwe->mmio_base).addr;
> + *cs++ = 0;
> + }
> }
>
> cs = xe_lrc_emit_hwe_state_instructions(q, cs);
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: ✗ Xe.CI.FULL: failure for drm/xe/wa: Steer RMW of MCR registers while building default LRC (rev3)
2026-02-10 1:13 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-02-19 15:23 ` Matt Roper
0 siblings, 0 replies; 14+ messages in thread
From: Matt Roper @ 2026-02-19 15:23 UTC (permalink / raw)
To: intel-xe
On Tue, Feb 10, 2026 at 01:13:57AM +0000, Patchwork wrote:
> == Series Details ==
>
> Series: drm/xe/wa: Steer RMW of MCR registers while building default LRC (rev3)
> URL : https://patchwork.freedesktop.org/series/161300/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266_FULL -> xe-pw-161300v3_FULL
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with xe-pw-161300v3_FULL absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in xe-pw-161300v3_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-161300v3_FULL:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-c-edp-1:
> - shard-lnl: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
> [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-c-edp-1.html
> [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-c-edp-1.html
System never came back from suspend. Unrelated to this patch.
>
> * igt@xe_exec_system_allocator@process-many-execqueues-mmap-remap-madvise:
> - shard-bmg: [PASS][3] -> [ABORT][4]
> [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-3/igt@xe_exec_system_allocator@process-many-execqueues-mmap-remap-madvise.html
> [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-1/igt@xe_exec_system_allocator@process-many-execqueues-mmap-remap-madvise.html
>
It looks like there was a GuC job timeout on BCS8 (a KMD-reserved
engine), and the error handling eventually descended down to
get_ctx_timestamp(), which asserts that it isn't used on reserved
engines. No previous hits on this specific test, but it has been very
rarely seen on other random tests, e.g.,
https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/7226 Not related
to this patch. I haven't traced all the way through, but I suspect that
commit bb63e7257e63 ("drm/xe: Avoid toggling schedule state to check LRC
timestamp in TDR") may have introduced this.
Applied to drm-xe-next. Thanks Bala for the review.
Matt
>
> Known issues
> ------------
>
> Here are the changes found in xe-pw-161300v3_FULL that come from known issues:
>
> ### IGT changes ###
>
> #### Issues hit ####
>
> * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
> - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2233])
> [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
>
> * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
> - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124])
> [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
>
> * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
> - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
> [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html
>
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
> - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2887]) +2 other tests skip
> [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
>
> * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
> - shard-bmg: [PASS][9] -> [SKIP][10] ([Intel XE#2291]) +3 other tests skip
> [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-4/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
> [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
>
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
> - shard-bmg: [PASS][11] -> [FAIL][12] ([Intel XE#4633])
> [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
> [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
>
> * igt@kms_dp_linktrain_fallback@dp-fallback:
> - shard-bmg: [PASS][13] -> [SKIP][14] ([Intel XE#4294])
> [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
> [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
>
> * igt@kms_fbcon_fbt@fbc-suspend:
> - shard-lnl: [PASS][15] -> [FAIL][16] ([i915#4767])
> [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-lnl-8/igt@kms_fbcon_fbt@fbc-suspend.html
> [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-lnl-3/igt@kms_fbcon_fbt@fbc-suspend.html
>
> * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
> - shard-bmg: [PASS][17] -> [SKIP][18] ([Intel XE#2316]) +6 other tests skip
> [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
> [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
>
> * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render:
> - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2311]) +1 other test skip
> [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-mmap-wc:
> - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#7061])
> [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@psr-1p-rte:
> - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2313])
> [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-1p-rte.html
>
> * igt@kms_pm_rpm@modeset-lpsp:
> - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
> [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@kms_pm_rpm@modeset-lpsp.html
>
> * igt@kms_setmode@clone-exclusive-crtc:
> - shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#1435])
> [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-3/igt@kms_setmode@clone-exclusive-crtc.html
> [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-5/igt@kms_setmode@clone-exclusive-crtc.html
>
> * igt@xe_eudebug@discovery-race-sigint:
> - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#4837])
> [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@xe_eudebug@discovery-race-sigint.html
>
> * igt@xe_evict@evict-mixed-many-threads-small:
> - shard-bmg: [PASS][26] -> [INCOMPLETE][27] ([Intel XE#6321]) +1 other test incomplete
> [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
> [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-10/igt@xe_evict@evict-mixed-many-threads-small.html
>
> * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic:
> - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2322])
> [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic.html
>
> * igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-prefetch:
> - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#7136]) +1 other test skip
> [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-prefetch.html
>
> * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
> - shard-lnl: [PASS][30] -> [FAIL][31] ([Intel XE#5625])
> [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
> [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
>
> * igt@xe_multigpu_svm@mgpu-migration-prefetch:
> - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#6964])
> [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@xe_multigpu_svm@mgpu-migration-prefetch.html
>
>
> #### Possible fixes ####
>
> * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
> - shard-bmg: [SKIP][33] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][34]
> [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
> [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-10/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
>
> * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
> - shard-bmg: [SKIP][35] ([Intel XE#2291]) -> [PASS][36] +3 other tests pass
> [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
> [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-10/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
>
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
> - shard-bmg: [FAIL][37] ([Intel XE#5299]) -> [PASS][38]
> [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
> [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
>
> * igt@kms_dp_link_training@non-uhbr-sst:
> - shard-bmg: [SKIP][39] ([Intel XE#4354]) -> [PASS][40]
> [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html
> [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-1/igt@kms_dp_link_training@non-uhbr-sst.html
>
> * igt@kms_feature_discovery@display-2x:
> - shard-bmg: [SKIP][41] ([Intel XE#2373]) -> [PASS][42]
> [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-6/igt@kms_feature_discovery@display-2x.html
> [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-10/igt@kms_feature_discovery@display-2x.html
>
> * igt@kms_flip@2x-nonexisting-fb:
> - shard-bmg: [SKIP][43] ([Intel XE#2316]) -> [PASS][44] +7 other tests pass
> [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
> [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-10/igt@kms_flip@2x-nonexisting-fb.html
>
> * igt@kms_plane_lowres@tiling-4@pipe-d-dp-2:
> - shard-bmg: [ABORT][45] -> [PASS][46] +1 other test pass
> [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-8/igt@kms_plane_lowres@tiling-4@pipe-d-dp-2.html
> [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@kms_plane_lowres@tiling-4@pipe-d-dp-2.html
>
>
> #### Warnings ####
>
> * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
> - shard-bmg: [SKIP][47] ([Intel XE#2311]) -> [SKIP][48] ([Intel XE#2312]) +16 other tests skip
> [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
> [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
> - shard-bmg: [SKIP][49] ([Intel XE#4141]) -> [SKIP][50] ([Intel XE#2312]) +4 other tests skip
> [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
> [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
> - shard-bmg: [SKIP][51] ([Intel XE#2312]) -> [SKIP][52] ([Intel XE#4141]) +9 other tests skip
> [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
> [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
>
> * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
> - shard-bmg: [SKIP][53] ([Intel XE#2312]) -> [SKIP][54] ([Intel XE#2311]) +15 other tests skip
> [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
> [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
> - shard-bmg: [SKIP][55] ([Intel XE#2312]) -> [SKIP][56] ([Intel XE#2313]) +13 other tests skip
> [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
> [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
>
> * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
> - shard-bmg: [SKIP][57] ([Intel XE#2313]) -> [SKIP][58] ([Intel XE#2312]) +13 other tests skip
> [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
> [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
>
> * igt@kms_plane_multiple@2x-tiling-yf:
> - shard-bmg: [SKIP][59] ([Intel XE#5021]) -> [SKIP][60] ([Intel XE#4596])
> [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-yf.html
> [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-yf.html
>
> * igt@kms_tiled_display@basic-test-pattern:
> - shard-bmg: [FAIL][61] ([Intel XE#1729]) -> [SKIP][62] ([Intel XE#2426])
> [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
> [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
>
> * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
> - shard-bmg: [ABORT][63] ([Intel XE#5466] / [Intel XE#6652]) -> [ABORT][64] ([Intel XE#5466])
> [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266/shard-bmg-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
> [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/shard-bmg-9/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
>
>
> [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
> [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
> [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
> [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
> [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
> [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
> [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
> [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
> [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
> [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
> [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
> [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
> [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
> [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
> [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
> [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
> [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
> [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
> [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
> [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
> [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
> [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
> [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
> [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
> [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
> [Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
> [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
> [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
> [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
> [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
> [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
> [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
> [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
> [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
> [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
> [i915#4767]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4767
>
>
> Build changes
> -------------
>
> * Linux: xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266 -> xe-pw-161300v3
>
> IGT_8746: 8746
> xe-4530-51b5b2d82487a590ad0bfd8c3908f82fa8277266: 51b5b2d82487a590ad0bfd8c3908f82fa8277266
> xe-pw-161300v3: 161300v3
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161300v3/index.html
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2026-02-19 15:23 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-06 22:30 [PATCH] drm/xe/wa: Steer RMW of MCR registers while building default LRC Matt Roper
2026-02-06 22:37 ` ✓ CI.KUnit: success for " Patchwork
2026-02-06 23:15 ` ✗ Xe.CI.BAT: failure " Patchwork
2026-02-06 23:57 ` Matt Roper
2026-02-07 22:05 ` Michal Wajdeczko
2026-02-09 20:35 ` Matt Roper
2026-02-07 19:53 ` ✗ Xe.CI.FULL: " Patchwork
2026-02-09 20:40 ` ✓ CI.KUnit: success for drm/xe/wa: Steer RMW of MCR registers while building default LRC (rev2) Patchwork
2026-02-09 21:19 ` ✓ Xe.CI.BAT: " Patchwork
2026-02-09 21:25 ` ✓ CI.KUnit: success for drm/xe/wa: Steer RMW of MCR registers while building default LRC (rev3) Patchwork
2026-02-09 22:21 ` ✓ Xe.CI.BAT: " Patchwork
2026-02-10 1:13 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-02-19 15:23 ` Matt Roper
2026-02-19 11:30 ` drm/xe/wa: Steer RMW of MCR registers while building default LRC Vivekanandan, Balasubramani
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox