* [PATCH 2/2] drm/xe/lnl: Drop pre-production workaround support
2025-11-19 22:05 [PATCH 1/2] drm/xe: Track pre-production workaround support Matt Roper
@ 2025-11-19 22:05 ` Matt Roper
2025-11-20 1:46 ` ✓ CI.KUnit: success for series starting with [1/2] drm/xe: Track " Patchwork
` (8 subsequent siblings)
9 siblings, 0 replies; 16+ messages in thread
From: Matt Roper @ 2025-11-19 22:05 UTC (permalink / raw)
To: intel-xe; +Cc: matthew.d.roper
LNL has been out long enough that all of our internal usage of
pre-production hardware has been phased out and we no longer need to
maintain workarounds that were exclusive to pre-production parts.
Production LNL hardware always has B0 or later steppings for both
graphics and media IP. Eliminate all workarounds that were exclusive to
A-step hardware and set the 'has_prod_wa_only' device flag for LNL to
make sure we warn and taint if someone tries to load the driver on an
old pre-production part.
Bspec: 70821
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
drivers/gpu/drm/xe/xe_guc_ads.c | 2 +-
drivers/gpu/drm/xe/xe_pci.c | 1 +
drivers/gpu/drm/xe/xe_ring_ops.c | 14 ----------
drivers/gpu/drm/xe/xe_wa.c | 45 ------------------------------
drivers/gpu/drm/xe/xe_wa_oob.rules | 6 +---
5 files changed, 3 insertions(+), 65 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_guc_ads.c b/drivers/gpu/drm/xe/xe_guc_ads.c
index bcb85a1bf26d..e06c6aa335bf 100644
--- a/drivers/gpu/drm/xe/xe_guc_ads.c
+++ b/drivers/gpu/drm/xe/xe_guc_ads.c
@@ -317,7 +317,7 @@ static void guc_waklv_init(struct xe_guc_ads *ads)
offset = guc_ads_waklv_offset(ads);
remain = guc_ads_waklv_size(ads);
- if (XE_GT_WA(gt, 14019882105) || XE_GT_WA(gt, 16021333562))
+ if (XE_GT_WA(gt, 16021333562))
guc_waklv_enable(ads, NULL, 0, &offset, &remain,
GUC_WORKAROUND_KLV_BLOCK_INTERRUPTS_WHEN_MGSR_BLOCKED);
if (XE_GT_WA(gt, 18024947630))
diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
index 25365a891f9d..368d4e72df8a 100644
--- a/drivers/gpu/drm/xe/xe_pci.c
+++ b/drivers/gpu/drm/xe/xe_pci.c
@@ -343,6 +343,7 @@ static const struct xe_device_desc lnl_desc = {
.has_flat_ccs = 1,
.has_pxp = true,
.has_mem_copy_instr = true,
+ .has_prod_wa_only = true,
.max_gt_per_tile = 2,
.needs_scratch = true,
.va_bits = 48,
diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
index ac0c6dcffe15..2c0ce6b5f9cd 100644
--- a/drivers/gpu/drm/xe/xe_ring_ops.c
+++ b/drivers/gpu/drm/xe/xe_ring_ops.c
@@ -201,18 +201,6 @@ static int emit_render_cache_flush(struct xe_sched_job *job, u32 *dw, int i)
return emit_pipe_control(dw, i, PIPE_CONTROL0_HDC_PIPELINE_FLUSH, flags, 0, 0);
}
-static int emit_pipe_control_to_ring_end(struct xe_hw_engine *hwe, u32 *dw, int i)
-{
- if (hwe->class != XE_ENGINE_CLASS_RENDER)
- return i;
-
- if (XE_GT_WA(hwe->gt, 16020292621))
- i = emit_pipe_control(dw, i, 0, PIPE_CONTROL_LRI_POST_SYNC,
- RING_NOPID(hwe->mmio_base).addr, 0);
-
- return i;
-}
-
static int emit_pipe_imm_ggtt(u32 addr, u32 value, bool stall_only, u32 *dw,
int i)
{
@@ -395,8 +383,6 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
i = emit_user_interrupt(dw, i);
- i = emit_pipe_control_to_ring_end(job->q->hwe, dw, i);
-
xe_gt_assert(gt, i <= MAX_JOB_SIZE_DW);
xe_lrc_write_ring(lrc, dw, i * sizeof(*dw));
diff --git a/drivers/gpu/drm/xe/xe_wa.c b/drivers/gpu/drm/xe/xe_wa.c
index 3764abca3d4f..199c1a6ff8a2 100644
--- a/drivers/gpu/drm/xe/xe_wa.c
+++ b/drivers/gpu/drm/xe/xe_wa.c
@@ -216,20 +216,6 @@ static const struct xe_rtp_entry_sr gt_was[] = {
XE_RTP_ACTIONS(SET(XELPMP_SQCNT1, ENFORCE_RAR))
},
- /* Xe2_LPG */
-
- { XE_RTP_NAME("16020975621"),
- XE_RTP_RULES(GRAPHICS_VERSION(2004), GRAPHICS_STEP(A0, B0)),
- XE_RTP_ACTIONS(SET(XEHP_SLICE_UNIT_LEVEL_CLKGATE, SBEUNIT_CLKGATE_DIS))
- },
- { XE_RTP_NAME("14018157293"),
- XE_RTP_RULES(GRAPHICS_VERSION(2004), GRAPHICS_STEP(A0, B0)),
- XE_RTP_ACTIONS(SET(XEHPC_L3CLOS_MASK(0), ~0),
- SET(XEHPC_L3CLOS_MASK(1), ~0),
- SET(XEHPC_L3CLOS_MASK(2), ~0),
- SET(XEHPC_L3CLOS_MASK(3), ~0))
- },
-
/* Xe2_LPM */
{ XE_RTP_NAME("14017421178"),
@@ -512,11 +498,6 @@ static const struct xe_rtp_entry_sr engine_was[] = {
XE_RTP_RULES(GRAPHICS_VERSION(2004), FUNC(xe_rtp_match_first_render_or_compute)),
XE_RTP_ACTIONS(SET(LSC_CHICKEN_BIT_0_UDW, XE2_ALLOC_DPA_STARVE_FIX_DIS))
},
- { XE_RTP_NAME("14018957109"),
- XE_RTP_RULES(GRAPHICS_VERSION(2004), GRAPHICS_STEP(A0, B0),
- FUNC(xe_rtp_match_first_render_or_compute)),
- XE_RTP_ACTIONS(SET(HALF_SLICE_CHICKEN5, DISABLE_SAMPLE_G_PERFORMANCE))
- },
{ XE_RTP_NAME("14020338487"),
XE_RTP_RULES(GRAPHICS_VERSION(2004), FUNC(xe_rtp_match_first_render_or_compute)),
XE_RTP_ACTIONS(SET(ROW_CHICKEN3, XE2_EUPEND_CHK_FLUSH_DIS))
@@ -526,11 +507,6 @@ static const struct xe_rtp_entry_sr engine_was[] = {
FUNC(xe_rtp_match_first_render_or_compute)),
XE_RTP_ACTIONS(SET(ROW_CHICKEN4, DISABLE_TDL_PUSH))
},
- { XE_RTP_NAME("14019322943"),
- XE_RTP_RULES(GRAPHICS_VERSION(2004), GRAPHICS_STEP(A0, B0),
- FUNC(xe_rtp_match_first_render_or_compute)),
- XE_RTP_ACTIONS(SET(LSC_CHICKEN_BIT_0, TGM_WRITE_EOM_FORCE))
- },
{ XE_RTP_NAME("14018471104"),
XE_RTP_RULES(GRAPHICS_VERSION(2004), FUNC(xe_rtp_match_first_render_or_compute)),
XE_RTP_ACTIONS(SET(LSC_CHICKEN_BIT_0_UDW, ENABLE_SMP_LD_RENDER_SURFACE_CONTROL))
@@ -807,17 +783,6 @@ static const struct xe_rtp_entry_sr lrc_was[] = {
/* Xe2_LPG */
- { XE_RTP_NAME("16020518922"),
- XE_RTP_RULES(GRAPHICS_VERSION(2004), GRAPHICS_STEP(A0, B0),
- ENGINE_CLASS(RENDER)),
- XE_RTP_ACTIONS(SET(FF_MODE,
- DIS_TE_AUTOSTRIP |
- DIS_MESH_PARTIAL_AUTOSTRIP |
- DIS_MESH_AUTOSTRIP),
- SET(VFLSKPD,
- DIS_PARTIAL_AUTOSTRIP |
- DIS_AUTOSTRIP))
- },
{ XE_RTP_NAME("14019386621"),
XE_RTP_RULES(GRAPHICS_VERSION(2004), ENGINE_CLASS(RENDER)),
XE_RTP_ACTIONS(SET(VF_SCRATCHPAD, XE2_VFG_TED_CREDIT_INTERFACE_DISABLE))
@@ -826,20 +791,10 @@ static const struct xe_rtp_entry_sr lrc_was[] = {
XE_RTP_RULES(GRAPHICS_VERSION(2004), ENGINE_CLASS(RENDER)),
XE_RTP_ACTIONS(SET(XEHP_PSS_CHICKEN, FD_END_COLLECT))
},
- { XE_RTP_NAME("14020013138"),
- XE_RTP_RULES(GRAPHICS_VERSION(2004), GRAPHICS_STEP(A0, B0),
- ENGINE_CLASS(RENDER)),
- XE_RTP_ACTIONS(SET(WM_CHICKEN3, HIZ_PLANE_COMPRESSION_DIS))
- },
{ XE_RTP_NAME("14019988906"),
XE_RTP_RULES(GRAPHICS_VERSION(2004), ENGINE_CLASS(RENDER)),
XE_RTP_ACTIONS(SET(XEHP_PSS_CHICKEN, FLSH_IGNORES_PSD))
},
- { XE_RTP_NAME("16020183090"),
- XE_RTP_RULES(GRAPHICS_VERSION(2004), GRAPHICS_STEP(A0, B0),
- ENGINE_CLASS(RENDER)),
- XE_RTP_ACTIONS(SET(INSTPM(RENDER_RING_BASE), ENABLE_SEMAPHORE_POLL_BIT))
- },
{ XE_RTP_NAME("18033852989"),
XE_RTP_RULES(GRAPHICS_VERSION(2004), ENGINE_CLASS(RENDER)),
XE_RTP_ACTIONS(SET(COMMON_SLICE_CHICKEN1, DISABLE_BOTTOM_CLIP_RECTANGLE_TEST))
diff --git a/drivers/gpu/drm/xe/xe_wa_oob.rules b/drivers/gpu/drm/xe/xe_wa_oob.rules
index fb38eb3d6e9a..fac6191708da 100644
--- a/drivers/gpu/drm/xe/xe_wa_oob.rules
+++ b/drivers/gpu/drm/xe/xe_wa_oob.rules
@@ -16,15 +16,11 @@
16017236439 PLATFORM(PVC)
14019821291 MEDIA_VERSION_RANGE(1300, 2000)
14015076503 MEDIA_VERSION(1300)
-16020292621 GRAPHICS_VERSION(2004), GRAPHICS_STEP(A0, B0)
-14018913170 GRAPHICS_VERSION(2004), GRAPHICS_STEP(A0, B0)
- MEDIA_VERSION(2000), GRAPHICS_STEP(A0, A1)
- GRAPHICS_VERSION_RANGE(1270, 1274)
+14018913170 GRAPHICS_VERSION_RANGE(1270, 1274)
MEDIA_VERSION(1300)
PLATFORM(DG2)
14018094691 GRAPHICS_VERSION_RANGE(2001, 2002)
GRAPHICS_VERSION(2004)
-14019882105 GRAPHICS_VERSION(2004), GRAPHICS_STEP(A0, B0)
18024947630 GRAPHICS_VERSION(2001)
GRAPHICS_VERSION(2004)
MEDIA_VERSION(2000)
--
2.51.1
^ permalink raw reply related [flat|nested] 16+ messages in thread* ✓ CI.KUnit: success for series starting with [1/2] drm/xe: Track pre-production workaround support
2025-11-19 22:05 [PATCH 1/2] drm/xe: Track pre-production workaround support Matt Roper
2025-11-19 22:05 ` [PATCH 2/2] drm/xe/lnl: Drop " Matt Roper
@ 2025-11-20 1:46 ` Patchwork
2025-11-20 2:36 ` ✗ Xe.CI.BAT: failure " Patchwork
` (7 subsequent siblings)
9 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-11-20 1:46 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
== Series Details ==
Series: series starting with [1/2] drm/xe: Track pre-production workaround support
URL : https://patchwork.freedesktop.org/series/157804/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[01:45:22] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:45:27] 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
[01:45:57] Starting KUnit Kernel (1/1)...
[01:45:57] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:45:57] ================== guc_buf (11 subtests) ===================
[01:45:57] [PASSED] test_smallest
[01:45:57] [PASSED] test_largest
[01:45:57] [PASSED] test_granular
[01:45:57] [PASSED] test_unique
[01:45:57] [PASSED] test_overlap
[01:45:57] [PASSED] test_reusable
[01:45:57] [PASSED] test_too_big
[01:45:57] [PASSED] test_flush
[01:45:57] [PASSED] test_lookup
[01:45:57] [PASSED] test_data
[01:45:57] [PASSED] test_class
[01:45:57] ===================== [PASSED] guc_buf =====================
[01:45:57] =================== guc_dbm (7 subtests) ===================
[01:45:57] [PASSED] test_empty
[01:45:57] [PASSED] test_default
[01:45:57] ======================== test_size ========================
[01:45:57] [PASSED] 4
[01:45:57] [PASSED] 8
[01:45:57] [PASSED] 32
[01:45:57] [PASSED] 256
[01:45:57] ==================== [PASSED] test_size ====================
[01:45:57] ======================= test_reuse ========================
[01:45:57] [PASSED] 4
[01:45:57] [PASSED] 8
[01:45:57] [PASSED] 32
[01:45:57] [PASSED] 256
[01:45:57] =================== [PASSED] test_reuse ====================
[01:45:57] =================== test_range_overlap ====================
[01:45:57] [PASSED] 4
[01:45:57] [PASSED] 8
[01:45:57] [PASSED] 32
[01:45:57] [PASSED] 256
[01:45:57] =============== [PASSED] test_range_overlap ================
[01:45:57] =================== test_range_compact ====================
[01:45:57] [PASSED] 4
[01:45:57] [PASSED] 8
[01:45:57] [PASSED] 32
[01:45:57] [PASSED] 256
[01:45:57] =============== [PASSED] test_range_compact ================
[01:45:57] ==================== test_range_spare =====================
[01:45:57] [PASSED] 4
[01:45:57] [PASSED] 8
[01:45:57] [PASSED] 32
[01:45:57] [PASSED] 256
[01:45:57] ================ [PASSED] test_range_spare =================
[01:45:57] ===================== [PASSED] guc_dbm =====================
[01:45:57] =================== guc_idm (6 subtests) ===================
[01:45:57] [PASSED] bad_init
[01:45:57] [PASSED] no_init
[01:45:57] [PASSED] init_fini
[01:45:57] [PASSED] check_used
[01:45:57] [PASSED] check_quota
[01:45:57] [PASSED] check_all
[01:45:57] ===================== [PASSED] guc_idm =====================
[01:45:57] ================== no_relay (3 subtests) ===================
[01:45:57] [PASSED] xe_drops_guc2pf_if_not_ready
[01:45:57] [PASSED] xe_drops_guc2vf_if_not_ready
[01:45:57] [PASSED] xe_rejects_send_if_not_ready
[01:45:57] ==================== [PASSED] no_relay =====================
[01:45:57] ================== pf_relay (14 subtests) ==================
[01:45:57] [PASSED] pf_rejects_guc2pf_too_short
[01:45:57] [PASSED] pf_rejects_guc2pf_too_long
[01:45:57] [PASSED] pf_rejects_guc2pf_no_payload
[01:45:57] [PASSED] pf_fails_no_payload
[01:45:57] [PASSED] pf_fails_bad_origin
[01:45:57] [PASSED] pf_fails_bad_type
[01:45:57] [PASSED] pf_txn_reports_error
[01:45:57] [PASSED] pf_txn_sends_pf2guc
[01:45:57] [PASSED] pf_sends_pf2guc
[01:45:57] [SKIPPED] pf_loopback_nop
[01:45:57] [SKIPPED] pf_loopback_echo
[01:45:57] [SKIPPED] pf_loopback_fail
[01:45:57] [SKIPPED] pf_loopback_busy
[01:45:57] [SKIPPED] pf_loopback_retry
[01:45:57] ==================== [PASSED] pf_relay =====================
[01:45:57] ================== vf_relay (3 subtests) ===================
[01:45:57] [PASSED] vf_rejects_guc2vf_too_short
[01:45:57] [PASSED] vf_rejects_guc2vf_too_long
[01:45:57] [PASSED] vf_rejects_guc2vf_no_payload
[01:45:57] ==================== [PASSED] vf_relay =====================
[01:45:57] ================ pf_gt_config (6 subtests) =================
[01:45:57] [PASSED] fair_contexts_1vf
[01:45:57] [PASSED] fair_doorbells_1vf
[01:45:57] [PASSED] fair_ggtt_1vf
[01:45:57] ====================== fair_contexts ======================
[01:45:57] [PASSED] 1 VF
[01:45:57] [PASSED] 2 VFs
[01:45:57] [PASSED] 3 VFs
[01:45:57] [PASSED] 4 VFs
[01:45:57] [PASSED] 5 VFs
[01:45:57] [PASSED] 6 VFs
[01:45:57] [PASSED] 7 VFs
[01:45:57] [PASSED] 8 VFs
[01:45:57] [PASSED] 9 VFs
[01:45:57] [PASSED] 10 VFs
[01:45:57] [PASSED] 11 VFs
[01:45:57] [PASSED] 12 VFs
[01:45:57] [PASSED] 13 VFs
[01:45:57] [PASSED] 14 VFs
[01:45:57] [PASSED] 15 VFs
[01:45:57] [PASSED] 16 VFs
[01:45:57] [PASSED] 17 VFs
[01:45:57] [PASSED] 18 VFs
[01:45:57] [PASSED] 19 VFs
[01:45:57] [PASSED] 20 VFs
[01:45:57] [PASSED] 21 VFs
[01:45:57] [PASSED] 22 VFs
[01:45:57] [PASSED] 23 VFs
[01:45:57] [PASSED] 24 VFs
[01:45:57] [PASSED] 25 VFs
[01:45:57] [PASSED] 26 VFs
[01:45:57] [PASSED] 27 VFs
[01:45:57] [PASSED] 28 VFs
[01:45:57] [PASSED] 29 VFs
[01:45:57] [PASSED] 30 VFs
[01:45:57] [PASSED] 31 VFs
[01:45:57] [PASSED] 32 VFs
[01:45:57] [PASSED] 33 VFs
[01:45:57] [PASSED] 34 VFs
[01:45:57] [PASSED] 35 VFs
[01:45:57] [PASSED] 36 VFs
[01:45:57] [PASSED] 37 VFs
[01:45:57] [PASSED] 38 VFs
[01:45:57] [PASSED] 39 VFs
[01:45:57] [PASSED] 40 VFs
[01:45:57] [PASSED] 41 VFs
[01:45:57] [PASSED] 42 VFs
[01:45:57] [PASSED] 43 VFs
[01:45:57] [PASSED] 44 VFs
[01:45:57] [PASSED] 45 VFs
[01:45:57] [PASSED] 46 VFs
[01:45:57] [PASSED] 47 VFs
[01:45:57] [PASSED] 48 VFs
[01:45:57] [PASSED] 49 VFs
[01:45:57] [PASSED] 50 VFs
[01:45:57] [PASSED] 51 VFs
[01:45:57] [PASSED] 52 VFs
[01:45:57] [PASSED] 53 VFs
[01:45:57] [PASSED] 54 VFs
[01:45:57] [PASSED] 55 VFs
[01:45:57] [PASSED] 56 VFs
[01:45:57] [PASSED] 57 VFs
[01:45:57] [PASSED] 58 VFs
[01:45:57] [PASSED] 59 VFs
[01:45:57] [PASSED] 60 VFs
[01:45:57] [PASSED] 61 VFs
[01:45:57] [PASSED] 62 VFs
[01:45:57] [PASSED] 63 VFs
[01:45:57] ================== [PASSED] fair_contexts ==================
[01:45:57] ===================== fair_doorbells ======================
[01:45:57] [PASSED] 1 VF
[01:45:57] [PASSED] 2 VFs
[01:45:57] [PASSED] 3 VFs
[01:45:57] [PASSED] 4 VFs
[01:45:57] [PASSED] 5 VFs
[01:45:57] [PASSED] 6 VFs
[01:45:57] [PASSED] 7 VFs
[01:45:57] [PASSED] 8 VFs
[01:45:57] [PASSED] 9 VFs
[01:45:57] [PASSED] 10 VFs
[01:45:57] [PASSED] 11 VFs
[01:45:57] [PASSED] 12 VFs
[01:45:57] [PASSED] 13 VFs
[01:45:57] [PASSED] 14 VFs
[01:45:57] [PASSED] 15 VFs
[01:45:57] [PASSED] 16 VFs
[01:45:57] [PASSED] 17 VFs
[01:45:57] [PASSED] 18 VFs
[01:45:57] [PASSED] 19 VFs
[01:45:57] [PASSED] 20 VFs
[01:45:57] [PASSED] 21 VFs
[01:45:57] [PASSED] 22 VFs
[01:45:57] [PASSED] 23 VFs
[01:45:57] [PASSED] 24 VFs
[01:45:57] [PASSED] 25 VFs
[01:45:57] [PASSED] 26 VFs
[01:45:57] [PASSED] 27 VFs
[01:45:57] [PASSED] 28 VFs
[01:45:57] [PASSED] 29 VFs
[01:45:57] [PASSED] 30 VFs
[01:45:57] [PASSED] 31 VFs
[01:45:57] [PASSED] 32 VFs
[01:45:57] [PASSED] 33 VFs
[01:45:57] [PASSED] 34 VFs
[01:45:57] [PASSED] 35 VFs
[01:45:57] [PASSED] 36 VFs
[01:45:57] [PASSED] 37 VFs
[01:45:57] [PASSED] 38 VFs
[01:45:57] [PASSED] 39 VFs
[01:45:57] [PASSED] 40 VFs
[01:45:57] [PASSED] 41 VFs
[01:45:57] [PASSED] 42 VFs
[01:45:57] [PASSED] 43 VFs
[01:45:57] [PASSED] 44 VFs
[01:45:57] [PASSED] 45 VFs
[01:45:57] [PASSED] 46 VFs
[01:45:57] [PASSED] 47 VFs
[01:45:57] [PASSED] 48 VFs
[01:45:57] [PASSED] 49 VFs
[01:45:57] [PASSED] 50 VFs
[01:45:57] [PASSED] 51 VFs
[01:45:57] [PASSED] 52 VFs
[01:45:57] [PASSED] 53 VFs
[01:45:57] [PASSED] 54 VFs
[01:45:57] [PASSED] 55 VFs
[01:45:57] [PASSED] 56 VFs
[01:45:57] [PASSED] 57 VFs
[01:45:57] [PASSED] 58 VFs
[01:45:57] [PASSED] 59 VFs
[01:45:57] [PASSED] 60 VFs
[01:45:57] [PASSED] 61 VFs
[01:45:57] [PASSED] 62 VFs
[01:45:57] [PASSED] 63 VFs
[01:45:57] ================= [PASSED] fair_doorbells ==================
[01:45:57] ======================== fair_ggtt ========================
[01:45:57] [PASSED] 1 VF
[01:45:57] [PASSED] 2 VFs
[01:45:57] [PASSED] 3 VFs
[01:45:57] [PASSED] 4 VFs
[01:45:57] [PASSED] 5 VFs
[01:45:57] [PASSED] 6 VFs
[01:45:57] [PASSED] 7 VFs
[01:45:57] [PASSED] 8 VFs
[01:45:57] [PASSED] 9 VFs
[01:45:57] [PASSED] 10 VFs
[01:45:57] [PASSED] 11 VFs
[01:45:57] [PASSED] 12 VFs
[01:45:57] [PASSED] 13 VFs
[01:45:57] [PASSED] 14 VFs
[01:45:57] [PASSED] 15 VFs
[01:45:57] [PASSED] 16 VFs
[01:45:57] [PASSED] 17 VFs
[01:45:57] [PASSED] 18 VFs
[01:45:57] [PASSED] 19 VFs
[01:45:57] [PASSED] 20 VFs
[01:45:57] [PASSED] 21 VFs
[01:45:57] [PASSED] 22 VFs
[01:45:57] [PASSED] 23 VFs
[01:45:57] [PASSED] 24 VFs
[01:45:57] [PASSED] 25 VFs
[01:45:57] [PASSED] 26 VFs
[01:45:57] [PASSED] 27 VFs
[01:45:57] [PASSED] 28 VFs
[01:45:57] [PASSED] 29 VFs
[01:45:57] [PASSED] 30 VFs
[01:45:57] [PASSED] 31 VFs
[01:45:57] [PASSED] 32 VFs
[01:45:57] [PASSED] 33 VFs
[01:45:57] [PASSED] 34 VFs
[01:45:57] [PASSED] 35 VFs
[01:45:57] [PASSED] 36 VFs
[01:45:57] [PASSED] 37 VFs
[01:45:57] [PASSED] 38 VFs
[01:45:57] [PASSED] 39 VFs
[01:45:57] [PASSED] 40 VFs
[01:45:57] [PASSED] 41 VFs
[01:45:57] [PASSED] 42 VFs
[01:45:57] [PASSED] 43 VFs
[01:45:57] [PASSED] 44 VFs
[01:45:57] [PASSED] 45 VFs
[01:45:57] [PASSED] 46 VFs
[01:45:57] [PASSED] 47 VFs
[01:45:57] [PASSED] 48 VFs
[01:45:57] [PASSED] 49 VFs
[01:45:57] [PASSED] 50 VFs
[01:45:57] [PASSED] 51 VFs
[01:45:57] [PASSED] 52 VFs
[01:45:57] [PASSED] 53 VFs
[01:45:57] [PASSED] 54 VFs
[01:45:57] [PASSED] 55 VFs
[01:45:57] [PASSED] 56 VFs
[01:45:57] [PASSED] 57 VFs
[01:45:57] [PASSED] 58 VFs
[01:45:57] [PASSED] 59 VFs
[01:45:57] [PASSED] 60 VFs
[01:45:57] [PASSED] 61 VFs
[01:45:57] [PASSED] 62 VFs
[01:45:57] [PASSED] 63 VFs
[01:45:57] ==================== [PASSED] fair_ggtt ====================
[01:45:57] ================== [PASSED] pf_gt_config ===================
[01:45:57] ===================== lmtt (1 subtest) =====================
[01:45:57] ======================== test_ops =========================
[01:45:57] [PASSED] 2-level
[01:45:57] [PASSED] multi-level
[01:45:57] ==================== [PASSED] test_ops =====================
[01:45:57] ====================== [PASSED] lmtt =======================
[01:45:57] ================= pf_service (11 subtests) =================
[01:45:57] [PASSED] pf_negotiate_any
[01:45:57] [PASSED] pf_negotiate_base_match
[01:45:57] [PASSED] pf_negotiate_base_newer
[01:45:57] [PASSED] pf_negotiate_base_next
[01:45:57] [SKIPPED] pf_negotiate_base_older
[01:45:57] [PASSED] pf_negotiate_base_prev
[01:45:57] [PASSED] pf_negotiate_latest_match
[01:45:57] [PASSED] pf_negotiate_latest_newer
[01:45:57] [PASSED] pf_negotiate_latest_next
[01:45:57] [SKIPPED] pf_negotiate_latest_older
[01:45:57] [SKIPPED] pf_negotiate_latest_prev
[01:45:57] =================== [PASSED] pf_service ====================
[01:45:57] ================= xe_guc_g2g (2 subtests) ==================
[01:45:57] ============== xe_live_guc_g2g_kunit_default ==============
[01:45:57] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[01:45:57] ============== xe_live_guc_g2g_kunit_allmem ===============
[01:45:57] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[01:45:57] =================== [SKIPPED] xe_guc_g2g ===================
[01:45:57] =================== xe_mocs (2 subtests) ===================
[01:45:57] ================ xe_live_mocs_kernel_kunit ================
[01:45:57] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[01:45:57] ================ xe_live_mocs_reset_kunit =================
[01:45:57] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[01:45:57] ==================== [SKIPPED] xe_mocs =====================
[01:45:57] ================= xe_migrate (2 subtests) ==================
[01:45:57] ================= xe_migrate_sanity_kunit =================
[01:45:57] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[01:45:57] ================== xe_validate_ccs_kunit ==================
[01:45:57] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[01:45:57] =================== [SKIPPED] xe_migrate ===================
[01:45:57] ================== xe_dma_buf (1 subtest) ==================
[01:45:57] ==================== xe_dma_buf_kunit =====================
[01:45:57] ================ [SKIPPED] xe_dma_buf_kunit ================
[01:45:57] =================== [SKIPPED] xe_dma_buf ===================
[01:45:57] ================= xe_bo_shrink (1 subtest) =================
[01:45:57] =================== xe_bo_shrink_kunit ====================
[01:45:57] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[01:45:57] ================== [SKIPPED] xe_bo_shrink ==================
[01:45:57] ==================== xe_bo (2 subtests) ====================
[01:45:57] ================== xe_ccs_migrate_kunit ===================
[01:45:57] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[01:45:57] ==================== xe_bo_evict_kunit ====================
[01:45:57] =============== [SKIPPED] xe_bo_evict_kunit ================
[01:45:57] ===================== [SKIPPED] xe_bo ======================
[01:45:57] ==================== args (11 subtests) ====================
[01:45:57] [PASSED] count_args_test
[01:45:57] [PASSED] call_args_example
[01:45:57] [PASSED] call_args_test
[01:45:57] [PASSED] drop_first_arg_example
[01:45:57] [PASSED] drop_first_arg_test
[01:45:57] [PASSED] first_arg_example
[01:45:57] [PASSED] first_arg_test
[01:45:57] [PASSED] last_arg_example
[01:45:57] [PASSED] last_arg_test
[01:45:57] [PASSED] pick_arg_example
[01:45:57] [PASSED] sep_comma_example
[01:45:57] ====================== [PASSED] args =======================
[01:45:57] =================== xe_pci (3 subtests) ====================
[01:45:57] ==================== check_graphics_ip ====================
[01:45:57] [PASSED] 12.00 Xe_LP
[01:45:57] [PASSED] 12.10 Xe_LP+
[01:45:57] [PASSED] 12.55 Xe_HPG
[01:45:57] [PASSED] 12.60 Xe_HPC
[01:45:57] [PASSED] 12.70 Xe_LPG
[01:45:57] [PASSED] 12.71 Xe_LPG
[01:45:57] [PASSED] 12.74 Xe_LPG+
[01:45:57] [PASSED] 20.01 Xe2_HPG
[01:45:57] [PASSED] 20.02 Xe2_HPG
[01:45:57] [PASSED] 20.04 Xe2_LPG
[01:45:57] [PASSED] 30.00 Xe3_LPG
[01:45:57] [PASSED] 30.01 Xe3_LPG
[01:45:57] [PASSED] 30.03 Xe3_LPG
[01:45:57] [PASSED] 30.04 Xe3_LPG
[01:45:57] [PASSED] 30.05 Xe3_LPG
[01:45:57] [PASSED] 35.11 Xe3p_XPC
[01:45:57] ================ [PASSED] check_graphics_ip ================
[01:45:57] ===================== check_media_ip ======================
[01:45:57] [PASSED] 12.00 Xe_M
[01:45:57] [PASSED] 12.55 Xe_HPM
[01:45:57] [PASSED] 13.00 Xe_LPM+
[01:45:57] [PASSED] 13.01 Xe2_HPM
[01:45:57] [PASSED] 20.00 Xe2_LPM
[01:45:57] [PASSED] 30.00 Xe3_LPM
[01:45:57] [PASSED] 30.02 Xe3_LPM
[01:45:57] [PASSED] 35.00 Xe3p_LPM
[01:45:57] [PASSED] 35.03 Xe3p_HPM
[01:45:57] ================= [PASSED] check_media_ip ==================
[01:45:57] =================== check_platform_desc ===================
[01:45:57] [PASSED] 0x9A60 (TIGERLAKE)
[01:45:57] [PASSED] 0x9A68 (TIGERLAKE)
[01:45:57] [PASSED] 0x9A70 (TIGERLAKE)
[01:45:57] [PASSED] 0x9A40 (TIGERLAKE)
[01:45:57] [PASSED] 0x9A49 (TIGERLAKE)
[01:45:57] [PASSED] 0x9A59 (TIGERLAKE)
[01:45:57] [PASSED] 0x9A78 (TIGERLAKE)
[01:45:57] [PASSED] 0x9AC0 (TIGERLAKE)
[01:45:57] [PASSED] 0x9AC9 (TIGERLAKE)
[01:45:57] [PASSED] 0x9AD9 (TIGERLAKE)
[01:45:57] [PASSED] 0x9AF8 (TIGERLAKE)
[01:45:57] [PASSED] 0x4C80 (ROCKETLAKE)
[01:45:57] [PASSED] 0x4C8A (ROCKETLAKE)
[01:45:57] [PASSED] 0x4C8B (ROCKETLAKE)
[01:45:57] [PASSED] 0x4C8C (ROCKETLAKE)
[01:45:57] [PASSED] 0x4C90 (ROCKETLAKE)
[01:45:57] [PASSED] 0x4C9A (ROCKETLAKE)
[01:45:57] [PASSED] 0x4680 (ALDERLAKE_S)
[01:45:57] [PASSED] 0x4682 (ALDERLAKE_S)
[01:45:57] [PASSED] 0x4688 (ALDERLAKE_S)
[01:45:57] [PASSED] 0x468A (ALDERLAKE_S)
[01:45:57] [PASSED] 0x468B (ALDERLAKE_S)
[01:45:57] [PASSED] 0x4690 (ALDERLAKE_S)
[01:45:57] [PASSED] 0x4692 (ALDERLAKE_S)
[01:45:57] [PASSED] 0x4693 (ALDERLAKE_S)
[01:45:57] [PASSED] 0x46A0 (ALDERLAKE_P)
[01:45:57] [PASSED] 0x46A1 (ALDERLAKE_P)
[01:45:57] [PASSED] 0x46A2 (ALDERLAKE_P)
[01:45:57] [PASSED] 0x46A3 (ALDERLAKE_P)
[01:45:57] [PASSED] 0x46A6 (ALDERLAKE_P)
[01:45:57] [PASSED] 0x46A8 (ALDERLAKE_P)
[01:45:57] [PASSED] 0x46AA (ALDERLAKE_P)
[01:45:57] [PASSED] 0x462A (ALDERLAKE_P)
[01:45:57] [PASSED] 0x4626 (ALDERLAKE_P)
[01:45:57] [PASSED] 0x4628 (ALDERLAKE_P)
[01:45:57] [PASSED] 0x46B0 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[01:45:57] [PASSED] 0x46B1 (ALDERLAKE_P)
[01:45:57] [PASSED] 0x46B2 (ALDERLAKE_P)
[01:45:57] [PASSED] 0x46B3 (ALDERLAKE_P)
[01:45:57] [PASSED] 0x46C0 (ALDERLAKE_P)
[01:45:57] [PASSED] 0x46C1 (ALDERLAKE_P)
[01:45:57] [PASSED] 0x46C2 (ALDERLAKE_P)
[01:45:57] [PASSED] 0x46C3 (ALDERLAKE_P)
[01:45:57] [PASSED] 0x46D0 (ALDERLAKE_N)
[01:45:57] [PASSED] 0x46D1 (ALDERLAKE_N)
[01:45:57] [PASSED] 0x46D2 (ALDERLAKE_N)
[01:45:57] [PASSED] 0x46D3 (ALDERLAKE_N)
[01:45:57] [PASSED] 0x46D4 (ALDERLAKE_N)
[01:45:57] [PASSED] 0xA721 (ALDERLAKE_P)
[01:45:57] [PASSED] 0xA7A1 (ALDERLAKE_P)
[01:45:57] [PASSED] 0xA7A9 (ALDERLAKE_P)
[01:45:57] [PASSED] 0xA7AC (ALDERLAKE_P)
[01:45:57] [PASSED] 0xA7AD (ALDERLAKE_P)
[01:45:57] [PASSED] 0xA720 (ALDERLAKE_P)
[01:45:57] [PASSED] 0xA7A0 (ALDERLAKE_P)
[01:45:57] [PASSED] 0xA7A8 (ALDERLAKE_P)
[01:45:57] [PASSED] 0xA7AA (ALDERLAKE_P)
[01:45:57] [PASSED] 0xA7AB (ALDERLAKE_P)
[01:45:57] [PASSED] 0xA780 (ALDERLAKE_S)
[01:45:57] [PASSED] 0xA781 (ALDERLAKE_S)
[01:45:57] [PASSED] 0xA782 (ALDERLAKE_S)
[01:45:57] [PASSED] 0xA783 (ALDERLAKE_S)
[01:45:57] [PASSED] 0xA788 (ALDERLAKE_S)
[01:45:57] [PASSED] 0xA789 (ALDERLAKE_S)
[01:45:57] [PASSED] 0xA78A (ALDERLAKE_S)
[01:45:57] [PASSED] 0xA78B (ALDERLAKE_S)
[01:45:57] [PASSED] 0x4905 (DG1)
[01:45:57] [PASSED] 0x4906 (DG1)
[01:45:57] [PASSED] 0x4907 (DG1)
[01:45:57] [PASSED] 0x4908 (DG1)
[01:45:57] [PASSED] 0x4909 (DG1)
[01:45:57] [PASSED] 0x56C0 (DG2)
[01:45:57] [PASSED] 0x56C2 (DG2)
[01:45:57] [PASSED] 0x56C1 (DG2)
[01:45:57] [PASSED] 0x7D51 (METEORLAKE)
[01:45:57] [PASSED] 0x7DD1 (METEORLAKE)
[01:45:57] [PASSED] 0x7D41 (METEORLAKE)
[01:45:57] [PASSED] 0x7D67 (METEORLAKE)
[01:45:57] [PASSED] 0xB640 (METEORLAKE)
[01:45:57] [PASSED] 0x56A0 (DG2)
[01:45:57] [PASSED] 0x56A1 (DG2)
[01:45:57] [PASSED] 0x56A2 (DG2)
[01:45:57] [PASSED] 0x56BE (DG2)
[01:45:57] [PASSED] 0x56BF (DG2)
[01:45:57] [PASSED] 0x5690 (DG2)
[01:45:57] [PASSED] 0x5691 (DG2)
[01:45:57] [PASSED] 0x5692 (DG2)
[01:45:57] [PASSED] 0x56A5 (DG2)
[01:45:57] [PASSED] 0x56A6 (DG2)
[01:45:57] [PASSED] 0x56B0 (DG2)
[01:45:57] [PASSED] 0x56B1 (DG2)
[01:45:57] [PASSED] 0x56BA (DG2)
[01:45:57] [PASSED] 0x56BB (DG2)
[01:45:57] [PASSED] 0x56BC (DG2)
[01:45:57] [PASSED] 0x56BD (DG2)
[01:45:57] [PASSED] 0x5693 (DG2)
[01:45:57] [PASSED] 0x5694 (DG2)
[01:45:57] [PASSED] 0x5695 (DG2)
[01:45:57] [PASSED] 0x56A3 (DG2)
[01:45:57] [PASSED] 0x56A4 (DG2)
[01:45:57] [PASSED] 0x56B2 (DG2)
[01:45:57] [PASSED] 0x56B3 (DG2)
[01:45:57] [PASSED] 0x5696 (DG2)
[01:45:57] [PASSED] 0x5697 (DG2)
[01:45:57] [PASSED] 0xB69 (PVC)
[01:45:57] [PASSED] 0xB6E (PVC)
[01:45:57] [PASSED] 0xBD4 (PVC)
[01:45:57] [PASSED] 0xBD5 (PVC)
[01:45:57] [PASSED] 0xBD6 (PVC)
[01:45:57] [PASSED] 0xBD7 (PVC)
[01:45:57] [PASSED] 0xBD8 (PVC)
[01:45:57] [PASSED] 0xBD9 (PVC)
[01:45:57] [PASSED] 0xBDA (PVC)
[01:45:57] [PASSED] 0xBDB (PVC)
[01:45:57] [PASSED] 0xBE0 (PVC)
[01:45:57] [PASSED] 0xBE1 (PVC)
[01:45:57] [PASSED] 0xBE5 (PVC)
[01:45:57] [PASSED] 0x7D40 (METEORLAKE)
[01:45:57] [PASSED] 0x7D45 (METEORLAKE)
[01:45:57] [PASSED] 0x7D55 (METEORLAKE)
[01:45:57] [PASSED] 0x7D60 (METEORLAKE)
[01:45:57] [PASSED] 0x7DD5 (METEORLAKE)
[01:45:57] [PASSED] 0x6420 (LUNARLAKE)
[01:45:57] [PASSED] 0x64A0 (LUNARLAKE)
[01:45:57] [PASSED] 0x64B0 (LUNARLAKE)
[01:45:57] [PASSED] 0xE202 (BATTLEMAGE)
[01:45:57] [PASSED] 0xE209 (BATTLEMAGE)
[01:45:57] [PASSED] 0xE20B (BATTLEMAGE)
[01:45:57] [PASSED] 0xE20C (BATTLEMAGE)
[01:45:57] [PASSED] 0xE20D (BATTLEMAGE)
[01:45:57] [PASSED] 0xE210 (BATTLEMAGE)
[01:45:57] [PASSED] 0xE211 (BATTLEMAGE)
[01:45:57] [PASSED] 0xE212 (BATTLEMAGE)
[01:45:57] [PASSED] 0xE216 (BATTLEMAGE)
[01:45:57] [PASSED] 0xE220 (BATTLEMAGE)
[01:45:57] [PASSED] 0xE221 (BATTLEMAGE)
[01:45:57] [PASSED] 0xE222 (BATTLEMAGE)
[01:45:57] [PASSED] 0xE223 (BATTLEMAGE)
[01:45:57] [PASSED] 0xB080 (PANTHERLAKE)
[01:45:57] [PASSED] 0xB081 (PANTHERLAKE)
[01:45:57] [PASSED] 0xB082 (PANTHERLAKE)
[01:45:57] [PASSED] 0xB083 (PANTHERLAKE)
[01:45:57] [PASSED] 0xB084 (PANTHERLAKE)
[01:45:57] [PASSED] 0xB085 (PANTHERLAKE)
[01:45:57] [PASSED] 0xB086 (PANTHERLAKE)
[01:45:57] [PASSED] 0xB087 (PANTHERLAKE)
[01:45:57] [PASSED] 0xB08F (PANTHERLAKE)
[01:45:57] [PASSED] 0xB090 (PANTHERLAKE)
[01:45:57] [PASSED] 0xB0A0 (PANTHERLAKE)
[01:45:57] [PASSED] 0xB0B0 (PANTHERLAKE)
[01:45:57] [PASSED] 0xD740 (NOVALAKE_S)
[01:45:57] [PASSED] 0xD741 (NOVALAKE_S)
[01:45:57] [PASSED] 0xD742 (NOVALAKE_S)
[01:45:57] [PASSED] 0xD743 (NOVALAKE_S)
[01:45:57] [PASSED] 0xD744 (NOVALAKE_S)
[01:45:57] [PASSED] 0xD745 (NOVALAKE_S)
[01:45:57] [PASSED] 0x674C (CRESCENTISLAND)
[01:45:57] [PASSED] 0xFD80 (PANTHERLAKE)
[01:45:57] [PASSED] 0xFD81 (PANTHERLAKE)
[01:45:57] =============== [PASSED] check_platform_desc ===============
[01:45:57] ===================== [PASSED] xe_pci ======================
[01:45:57] =================== xe_rtp (2 subtests) ====================
[01:45:57] =============== xe_rtp_process_to_sr_tests ================
[01:45:57] [PASSED] coalesce-same-reg
[01:45:57] [PASSED] no-match-no-add
[01:45:57] [PASSED] match-or
[01:45:57] [PASSED] match-or-xfail
[01:45:57] [PASSED] no-match-no-add-multiple-rules
[01:45:57] [PASSED] two-regs-two-entries
[01:45:57] [PASSED] clr-one-set-other
[01:45:57] [PASSED] set-field
[01:45:57] [PASSED] conflict-duplicate
[01:45:57] [PASSED] conflict-not-disjoint
[01:45:57] [PASSED] conflict-reg-type
[01:45:57] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[01:45:57] ================== xe_rtp_process_tests ===================
[01:45:57] [PASSED] active1
[01:45:57] [PASSED] active2
[01:45:57] [PASSED] active-inactive
[01:45:57] [PASSED] inactive-active
[01:45:57] [PASSED] inactive-1st_or_active-inactive
[01:45:57] [PASSED] inactive-2nd_or_active-inactive
[01:45:57] [PASSED] inactive-last_or_active-inactive
[01:45:57] [PASSED] inactive-no_or_active-inactive
[01:45:57] ============== [PASSED] xe_rtp_process_tests ===============
[01:45:57] ===================== [PASSED] xe_rtp ======================
[01:45:57] ==================== xe_wa (1 subtest) =====================
[01:45:57] ======================== xe_wa_gt =========================
[01:45:57] [PASSED] TIGERLAKE B0
[01:45:57] [PASSED] DG1 A0
[01:45:57] [PASSED] DG1 B0
[01:45:57] [PASSED] ALDERLAKE_S A0
[01:45:57] [PASSED] ALDERLAKE_S B0
[01:45:57] [PASSED] ALDERLAKE_S C0
[01:45:57] [PASSED] ALDERLAKE_S D0
[01:45:57] [PASSED] ALDERLAKE_P A0
[01:45:57] [PASSED] ALDERLAKE_P B0
[01:45:57] [PASSED] ALDERLAKE_P C0
[01:45:57] [PASSED] ALDERLAKE_S RPLS D0
[01:45:57] [PASSED] ALDERLAKE_P RPLU E0
[01:45:57] [PASSED] DG2 G10 C0
[01:45:57] [PASSED] DG2 G11 B1
[01:45:57] [PASSED] DG2 G12 A1
[01:45:57] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[01:45:57] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[01:45:57] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[01:45:57] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[01:45:57] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[01:45:57] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[01:45:57] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[01:45:57] ==================== [PASSED] xe_wa_gt =====================
[01:45:57] ====================== [PASSED] xe_wa ======================
[01:45:57] ============================================================
[01:45:57] Testing complete. Ran 510 tests: passed: 492, skipped: 18
[01:45:57] Elapsed time: 34.962s total, 4.254s configuring, 30.239s building, 0.450s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[01:45:57] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:45:59] 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
[01:46:24] Starting KUnit Kernel (1/1)...
[01:46:24] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:46:24] ============ drm_test_pick_cmdline (2 subtests) ============
[01:46:24] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[01:46:24] =============== drm_test_pick_cmdline_named ===============
[01:46:24] [PASSED] NTSC
[01:46:24] [PASSED] NTSC-J
[01:46:24] [PASSED] PAL
[01:46:24] [PASSED] PAL-M
[01:46:24] =========== [PASSED] drm_test_pick_cmdline_named ===========
[01:46:24] ============== [PASSED] drm_test_pick_cmdline ==============
[01:46:24] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[01:46:24] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[01:46:24] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[01:46:24] =========== drm_validate_clone_mode (2 subtests) ===========
[01:46:24] ============== drm_test_check_in_clone_mode ===============
[01:46:24] [PASSED] in_clone_mode
[01:46:24] [PASSED] not_in_clone_mode
[01:46:24] ========== [PASSED] drm_test_check_in_clone_mode ===========
[01:46:24] =============== drm_test_check_valid_clones ===============
[01:46:24] [PASSED] not_in_clone_mode
[01:46:24] [PASSED] valid_clone
[01:46:24] [PASSED] invalid_clone
[01:46:24] =========== [PASSED] drm_test_check_valid_clones ===========
[01:46:24] ============= [PASSED] drm_validate_clone_mode =============
[01:46:24] ============= drm_validate_modeset (1 subtest) =============
[01:46:24] [PASSED] drm_test_check_connector_changed_modeset
[01:46:24] ============== [PASSED] drm_validate_modeset ===============
[01:46:24] ====== drm_test_bridge_get_current_state (2 subtests) ======
[01:46:24] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[01:46:24] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[01:46:24] ======== [PASSED] drm_test_bridge_get_current_state ========
[01:46:24] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[01:46:24] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[01:46:24] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[01:46:24] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[01:46:24] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[01:46:24] ============== drm_bridge_alloc (2 subtests) ===============
[01:46:24] [PASSED] drm_test_drm_bridge_alloc_basic
[01:46:24] [PASSED] drm_test_drm_bridge_alloc_get_put
[01:46:24] ================ [PASSED] drm_bridge_alloc =================
[01:46:24] ================== drm_buddy (8 subtests) ==================
[01:46:24] [PASSED] drm_test_buddy_alloc_limit
[01:46:24] [PASSED] drm_test_buddy_alloc_optimistic
[01:46:24] [PASSED] drm_test_buddy_alloc_pessimistic
[01:46:24] [PASSED] drm_test_buddy_alloc_pathological
[01:46:24] [PASSED] drm_test_buddy_alloc_contiguous
[01:46:24] [PASSED] drm_test_buddy_alloc_clear
[01:46:24] [PASSED] drm_test_buddy_alloc_range_bias
[01:46:24] [PASSED] drm_test_buddy_fragmentation_performance
[01:46:24] ==================== [PASSED] drm_buddy ====================
[01:46:24] ============= drm_cmdline_parser (40 subtests) =============
[01:46:24] [PASSED] drm_test_cmdline_force_d_only
[01:46:24] [PASSED] drm_test_cmdline_force_D_only_dvi
[01:46:24] [PASSED] drm_test_cmdline_force_D_only_hdmi
[01:46:24] [PASSED] drm_test_cmdline_force_D_only_not_digital
[01:46:24] [PASSED] drm_test_cmdline_force_e_only
[01:46:24] [PASSED] drm_test_cmdline_res
[01:46:24] [PASSED] drm_test_cmdline_res_vesa
[01:46:24] [PASSED] drm_test_cmdline_res_vesa_rblank
[01:46:24] [PASSED] drm_test_cmdline_res_rblank
[01:46:24] [PASSED] drm_test_cmdline_res_bpp
[01:46:24] [PASSED] drm_test_cmdline_res_refresh
[01:46:24] [PASSED] drm_test_cmdline_res_bpp_refresh
[01:46:24] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[01:46:24] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[01:46:24] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[01:46:24] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[01:46:24] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[01:46:24] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[01:46:24] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[01:46:24] [PASSED] drm_test_cmdline_res_margins_force_on
[01:46:24] [PASSED] drm_test_cmdline_res_vesa_margins
[01:46:24] [PASSED] drm_test_cmdline_name
[01:46:24] [PASSED] drm_test_cmdline_name_bpp
[01:46:24] [PASSED] drm_test_cmdline_name_option
[01:46:24] [PASSED] drm_test_cmdline_name_bpp_option
[01:46:24] [PASSED] drm_test_cmdline_rotate_0
[01:46:24] [PASSED] drm_test_cmdline_rotate_90
[01:46:24] [PASSED] drm_test_cmdline_rotate_180
[01:46:24] [PASSED] drm_test_cmdline_rotate_270
[01:46:24] [PASSED] drm_test_cmdline_hmirror
[01:46:24] [PASSED] drm_test_cmdline_vmirror
[01:46:24] [PASSED] drm_test_cmdline_margin_options
[01:46:24] [PASSED] drm_test_cmdline_multiple_options
[01:46:24] [PASSED] drm_test_cmdline_bpp_extra_and_option
[01:46:24] [PASSED] drm_test_cmdline_extra_and_option
[01:46:24] [PASSED] drm_test_cmdline_freestanding_options
[01:46:24] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[01:46:24] [PASSED] drm_test_cmdline_panel_orientation
[01:46:24] ================ drm_test_cmdline_invalid =================
[01:46:24] [PASSED] margin_only
[01:46:24] [PASSED] interlace_only
[01:46:24] [PASSED] res_missing_x
[01:46:24] [PASSED] res_missing_y
[01:46:24] [PASSED] res_bad_y
[01:46:24] [PASSED] res_missing_y_bpp
[01:46:24] [PASSED] res_bad_bpp
[01:46:24] [PASSED] res_bad_refresh
[01:46:24] [PASSED] res_bpp_refresh_force_on_off
[01:46:24] [PASSED] res_invalid_mode
[01:46:24] [PASSED] res_bpp_wrong_place_mode
[01:46:24] [PASSED] name_bpp_refresh
[01:46:24] [PASSED] name_refresh
[01:46:24] [PASSED] name_refresh_wrong_mode
[01:46:24] [PASSED] name_refresh_invalid_mode
[01:46:24] [PASSED] rotate_multiple
[01:46:24] [PASSED] rotate_invalid_val
[01:46:24] [PASSED] rotate_truncated
[01:46:24] [PASSED] invalid_option
[01:46:24] [PASSED] invalid_tv_option
[01:46:24] [PASSED] truncated_tv_option
[01:46:24] ============ [PASSED] drm_test_cmdline_invalid =============
[01:46:24] =============== drm_test_cmdline_tv_options ===============
[01:46:24] [PASSED] NTSC
[01:46:24] [PASSED] NTSC_443
[01:46:24] [PASSED] NTSC_J
[01:46:24] [PASSED] PAL
[01:46:24] [PASSED] PAL_M
[01:46:24] [PASSED] PAL_N
[01:46:24] [PASSED] SECAM
[01:46:24] [PASSED] MONO_525
[01:46:24] [PASSED] MONO_625
[01:46:24] =========== [PASSED] drm_test_cmdline_tv_options ===========
[01:46:24] =============== [PASSED] drm_cmdline_parser ================
[01:46:24] ========== drmm_connector_hdmi_init (20 subtests) ==========
[01:46:24] [PASSED] drm_test_connector_hdmi_init_valid
[01:46:24] [PASSED] drm_test_connector_hdmi_init_bpc_8
[01:46:24] [PASSED] drm_test_connector_hdmi_init_bpc_10
[01:46:24] [PASSED] drm_test_connector_hdmi_init_bpc_12
[01:46:24] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[01:46:24] [PASSED] drm_test_connector_hdmi_init_bpc_null
[01:46:24] [PASSED] drm_test_connector_hdmi_init_formats_empty
[01:46:24] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[01:46:24] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[01:46:24] [PASSED] supported_formats=0x9 yuv420_allowed=1
[01:46:24] [PASSED] supported_formats=0x9 yuv420_allowed=0
[01:46:24] [PASSED] supported_formats=0x3 yuv420_allowed=1
[01:46:24] [PASSED] supported_formats=0x3 yuv420_allowed=0
[01:46:24] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[01:46:24] [PASSED] drm_test_connector_hdmi_init_null_ddc
[01:46:24] [PASSED] drm_test_connector_hdmi_init_null_product
[01:46:24] [PASSED] drm_test_connector_hdmi_init_null_vendor
[01:46:24] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[01:46:24] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[01:46:24] [PASSED] drm_test_connector_hdmi_init_product_valid
[01:46:24] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[01:46:24] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[01:46:24] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[01:46:24] ========= drm_test_connector_hdmi_init_type_valid =========
[01:46:24] [PASSED] HDMI-A
[01:46:24] [PASSED] HDMI-B
[01:46:24] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[01:46:24] ======== drm_test_connector_hdmi_init_type_invalid ========
[01:46:24] [PASSED] Unknown
[01:46:24] [PASSED] VGA
[01:46:24] [PASSED] DVI-I
[01:46:24] [PASSED] DVI-D
[01:46:24] [PASSED] DVI-A
[01:46:24] [PASSED] Composite
[01:46:24] [PASSED] SVIDEO
[01:46:24] [PASSED] LVDS
[01:46:24] [PASSED] Component
[01:46:24] [PASSED] DIN
[01:46:24] [PASSED] DP
[01:46:24] [PASSED] TV
[01:46:24] [PASSED] eDP
[01:46:24] [PASSED] Virtual
[01:46:24] [PASSED] DSI
[01:46:24] [PASSED] DPI
[01:46:24] [PASSED] Writeback
[01:46:24] [PASSED] SPI
[01:46:24] [PASSED] USB
[01:46:24] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[01:46:24] ============ [PASSED] drmm_connector_hdmi_init =============
[01:46:24] ============= drmm_connector_init (3 subtests) =============
[01:46:24] [PASSED] drm_test_drmm_connector_init
[01:46:24] [PASSED] drm_test_drmm_connector_init_null_ddc
[01:46:24] ========= drm_test_drmm_connector_init_type_valid =========
[01:46:24] [PASSED] Unknown
[01:46:24] [PASSED] VGA
[01:46:24] [PASSED] DVI-I
[01:46:24] [PASSED] DVI-D
[01:46:24] [PASSED] DVI-A
[01:46:24] [PASSED] Composite
[01:46:24] [PASSED] SVIDEO
[01:46:24] [PASSED] LVDS
[01:46:24] [PASSED] Component
[01:46:24] [PASSED] DIN
[01:46:24] [PASSED] DP
[01:46:24] [PASSED] HDMI-A
[01:46:24] [PASSED] HDMI-B
[01:46:24] [PASSED] TV
[01:46:24] [PASSED] eDP
[01:46:24] [PASSED] Virtual
[01:46:24] [PASSED] DSI
[01:46:24] [PASSED] DPI
[01:46:24] [PASSED] Writeback
[01:46:24] [PASSED] SPI
[01:46:24] [PASSED] USB
[01:46:24] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[01:46:24] =============== [PASSED] drmm_connector_init ===============
[01:46:24] ========= drm_connector_dynamic_init (6 subtests) ==========
[01:46:24] [PASSED] drm_test_drm_connector_dynamic_init
[01:46:24] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[01:46:24] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[01:46:24] [PASSED] drm_test_drm_connector_dynamic_init_properties
[01:46:24] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[01:46:24] [PASSED] Unknown
[01:46:24] [PASSED] VGA
[01:46:24] [PASSED] DVI-I
[01:46:24] [PASSED] DVI-D
[01:46:24] [PASSED] DVI-A
[01:46:24] [PASSED] Composite
[01:46:24] [PASSED] SVIDEO
[01:46:24] [PASSED] LVDS
[01:46:24] [PASSED] Component
[01:46:24] [PASSED] DIN
[01:46:24] [PASSED] DP
[01:46:24] [PASSED] HDMI-A
[01:46:24] [PASSED] HDMI-B
[01:46:24] [PASSED] TV
[01:46:24] [PASSED] eDP
[01:46:24] [PASSED] Virtual
[01:46:24] [PASSED] DSI
[01:46:24] [PASSED] DPI
[01:46:24] [PASSED] Writeback
[01:46:24] [PASSED] SPI
[01:46:24] [PASSED] USB
[01:46:24] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[01:46:24] ======== drm_test_drm_connector_dynamic_init_name =========
[01:46:24] [PASSED] Unknown
[01:46:24] [PASSED] VGA
[01:46:24] [PASSED] DVI-I
[01:46:24] [PASSED] DVI-D
[01:46:24] [PASSED] DVI-A
[01:46:24] [PASSED] Composite
[01:46:24] [PASSED] SVIDEO
[01:46:24] [PASSED] LVDS
[01:46:24] [PASSED] Component
[01:46:24] [PASSED] DIN
[01:46:24] [PASSED] DP
[01:46:24] [PASSED] HDMI-A
[01:46:24] [PASSED] HDMI-B
[01:46:24] [PASSED] TV
[01:46:24] [PASSED] eDP
[01:46:24] [PASSED] Virtual
[01:46:24] [PASSED] DSI
[01:46:24] [PASSED] DPI
[01:46:24] [PASSED] Writeback
[01:46:24] [PASSED] SPI
[01:46:24] [PASSED] USB
[01:46:24] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[01:46:24] =========== [PASSED] drm_connector_dynamic_init ============
[01:46:24] ==== drm_connector_dynamic_register_early (4 subtests) =====
[01:46:24] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[01:46:24] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[01:46:24] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[01:46:24] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[01:46:24] ====== [PASSED] drm_connector_dynamic_register_early =======
[01:46:24] ======= drm_connector_dynamic_register (7 subtests) ========
[01:46:24] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[01:46:24] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[01:46:24] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[01:46:24] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[01:46:24] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[01:46:24] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[01:46:24] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[01:46:24] ========= [PASSED] drm_connector_dynamic_register ==========
[01:46:24] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[01:46:24] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[01:46:24] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[01:46:24] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[01:46:24] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[01:46:24] ========== drm_test_get_tv_mode_from_name_valid ===========
[01:46:24] [PASSED] NTSC
[01:46:24] [PASSED] NTSC-443
[01:46:24] [PASSED] NTSC-J
[01:46:24] [PASSED] PAL
[01:46:24] [PASSED] PAL-M
[01:46:24] [PASSED] PAL-N
[01:46:24] [PASSED] SECAM
[01:46:24] [PASSED] Mono
[01:46:24] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[01:46:24] [PASSED] drm_test_get_tv_mode_from_name_truncated
[01:46:24] ============ [PASSED] drm_get_tv_mode_from_name ============
[01:46:24] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[01:46:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[01:46:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[01:46:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[01:46:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[01:46:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[01:46:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[01:46:24] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[01:46:24] [PASSED] VIC 96
[01:46:24] [PASSED] VIC 97
[01:46:24] [PASSED] VIC 101
[01:46:24] [PASSED] VIC 102
[01:46:24] [PASSED] VIC 106
[01:46:24] [PASSED] VIC 107
[01:46:24] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[01:46:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[01:46:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[01:46:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[01:46:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[01:46:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[01:46:24] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[01:46:24] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[01:46:24] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[01:46:24] [PASSED] Automatic
[01:46:24] [PASSED] Full
[01:46:24] [PASSED] Limited 16:235
[01:46:24] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[01:46:24] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[01:46:24] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[01:46:24] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[01:46:24] === drm_test_drm_hdmi_connector_get_output_format_name ====
[01:46:24] [PASSED] RGB
[01:46:24] [PASSED] YUV 4:2:0
[01:46:24] [PASSED] YUV 4:2:2
[01:46:24] [PASSED] YUV 4:4:4
[01:46:24] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[01:46:24] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[01:46:24] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[01:46:24] ============= drm_damage_helper (21 subtests) ==============
[01:46:24] [PASSED] drm_test_damage_iter_no_damage
[01:46:24] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[01:46:24] [PASSED] drm_test_damage_iter_no_damage_src_moved
[01:46:24] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[01:46:24] [PASSED] drm_test_damage_iter_no_damage_not_visible
[01:46:24] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[01:46:24] [PASSED] drm_test_damage_iter_no_damage_no_fb
[01:46:24] [PASSED] drm_test_damage_iter_simple_damage
[01:46:24] [PASSED] drm_test_damage_iter_single_damage
[01:46:24] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[01:46:24] [PASSED] drm_test_damage_iter_single_damage_outside_src
[01:46:24] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[01:46:24] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[01:46:24] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[01:46:24] [PASSED] drm_test_damage_iter_single_damage_src_moved
[01:46:24] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[01:46:24] [PASSED] drm_test_damage_iter_damage
[01:46:24] [PASSED] drm_test_damage_iter_damage_one_intersect
[01:46:24] [PASSED] drm_test_damage_iter_damage_one_outside
[01:46:24] [PASSED] drm_test_damage_iter_damage_src_moved
[01:46:24] [PASSED] drm_test_damage_iter_damage_not_visible
[01:46:24] ================ [PASSED] drm_damage_helper ================
[01:46:24] ============== drm_dp_mst_helper (3 subtests) ==============
[01:46:24] ============== drm_test_dp_mst_calc_pbn_mode ==============
[01:46:24] [PASSED] Clock 154000 BPP 30 DSC disabled
[01:46:24] [PASSED] Clock 234000 BPP 30 DSC disabled
[01:46:24] [PASSED] Clock 297000 BPP 24 DSC disabled
[01:46:24] [PASSED] Clock 332880 BPP 24 DSC enabled
[01:46:24] [PASSED] Clock 324540 BPP 24 DSC enabled
[01:46:24] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[01:46:24] ============== drm_test_dp_mst_calc_pbn_div ===============
[01:46:24] [PASSED] Link rate 2000000 lane count 4
[01:46:24] [PASSED] Link rate 2000000 lane count 2
[01:46:24] [PASSED] Link rate 2000000 lane count 1
[01:46:24] [PASSED] Link rate 1350000 lane count 4
[01:46:24] [PASSED] Link rate 1350000 lane count 2
[01:46:24] [PASSED] Link rate 1350000 lane count 1
[01:46:24] [PASSED] Link rate 1000000 lane count 4
[01:46:24] [PASSED] Link rate 1000000 lane count 2
[01:46:24] [PASSED] Link rate 1000000 lane count 1
[01:46:24] [PASSED] Link rate 810000 lane count 4
[01:46:24] [PASSED] Link rate 810000 lane count 2
[01:46:24] [PASSED] Link rate 810000 lane count 1
[01:46:24] [PASSED] Link rate 540000 lane count 4
[01:46:24] [PASSED] Link rate 540000 lane count 2
[01:46:24] [PASSED] Link rate 540000 lane count 1
[01:46:24] [PASSED] Link rate 270000 lane count 4
[01:46:24] [PASSED] Link rate 270000 lane count 2
[01:46:24] [PASSED] Link rate 270000 lane count 1
[01:46:24] [PASSED] Link rate 162000 lane count 4
[01:46:24] [PASSED] Link rate 162000 lane count 2
[01:46:24] [PASSED] Link rate 162000 lane count 1
[01:46:24] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[01:46:24] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[01:46:24] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[01:46:24] [PASSED] DP_POWER_UP_PHY with port number
[01:46:24] [PASSED] DP_POWER_DOWN_PHY with port number
[01:46:24] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[01:46:24] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[01:46:24] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[01:46:24] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[01:46:24] [PASSED] DP_QUERY_PAYLOAD with port number
[01:46:24] [PASSED] DP_QUERY_PAYLOAD with VCPI
[01:46:24] [PASSED] DP_REMOTE_DPCD_READ with port number
[01:46:24] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[01:46:24] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[01:46:24] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[01:46:24] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[01:46:24] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[01:46:24] [PASSED] DP_REMOTE_I2C_READ with port number
[01:46:24] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[01:46:24] [PASSED] DP_REMOTE_I2C_READ with transactions array
[01:46:24] [PASSED] DP_REMOTE_I2C_WRITE with port number
[01:46:24] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[01:46:24] [PASSED] DP_REMOTE_I2C_WRITE with data array
[01:46:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[01:46:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[01:46:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[01:46:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[01:46:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[01:46:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[01:46:24] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[01:46:24] ================ [PASSED] drm_dp_mst_helper ================
[01:46:24] ================== drm_exec (7 subtests) ===================
[01:46:24] [PASSED] sanitycheck
[01:46:24] [PASSED] test_lock
[01:46:24] [PASSED] test_lock_unlock
[01:46:24] [PASSED] test_duplicates
[01:46:24] [PASSED] test_prepare
[01:46:24] [PASSED] test_prepare_array
[01:46:24] [PASSED] test_multiple_loops
[01:46:24] ==================== [PASSED] drm_exec =====================
[01:46:24] =========== drm_format_helper_test (17 subtests) ===========
[01:46:24] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[01:46:24] [PASSED] single_pixel_source_buffer
[01:46:24] [PASSED] single_pixel_clip_rectangle
[01:46:24] [PASSED] well_known_colors
[01:46:24] [PASSED] destination_pitch
[01:46:24] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[01:46:24] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[01:46:24] [PASSED] single_pixel_source_buffer
[01:46:24] [PASSED] single_pixel_clip_rectangle
[01:46:24] [PASSED] well_known_colors
[01:46:24] [PASSED] destination_pitch
[01:46:24] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[01:46:24] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[01:46:24] [PASSED] single_pixel_source_buffer
[01:46:24] [PASSED] single_pixel_clip_rectangle
[01:46:24] [PASSED] well_known_colors
[01:46:24] [PASSED] destination_pitch
[01:46:24] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[01:46:24] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[01:46:24] [PASSED] single_pixel_source_buffer
[01:46:24] [PASSED] single_pixel_clip_rectangle
[01:46:24] [PASSED] well_known_colors
[01:46:24] [PASSED] destination_pitch
[01:46:24] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[01:46:24] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[01:46:24] [PASSED] single_pixel_source_buffer
[01:46:24] [PASSED] single_pixel_clip_rectangle
[01:46:24] [PASSED] well_known_colors
[01:46:24] [PASSED] destination_pitch
[01:46:24] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[01:46:24] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[01:46:24] [PASSED] single_pixel_source_buffer
[01:46:24] [PASSED] single_pixel_clip_rectangle
[01:46:24] [PASSED] well_known_colors
[01:46:24] [PASSED] destination_pitch
[01:46:24] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[01:46:24] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[01:46:24] [PASSED] single_pixel_source_buffer
[01:46:24] [PASSED] single_pixel_clip_rectangle
[01:46:24] [PASSED] well_known_colors
[01:46:24] [PASSED] destination_pitch
[01:46:24] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[01:46:24] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[01:46:24] [PASSED] single_pixel_source_buffer
[01:46:24] [PASSED] single_pixel_clip_rectangle
[01:46:24] [PASSED] well_known_colors
[01:46:24] [PASSED] destination_pitch
[01:46:24] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[01:46:24] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[01:46:24] [PASSED] single_pixel_source_buffer
[01:46:24] [PASSED] single_pixel_clip_rectangle
[01:46:24] [PASSED] well_known_colors
[01:46:24] [PASSED] destination_pitch
[01:46:24] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[01:46:24] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[01:46:24] [PASSED] single_pixel_source_buffer
[01:46:24] [PASSED] single_pixel_clip_rectangle
[01:46:24] [PASSED] well_known_colors
[01:46:24] [PASSED] destination_pitch
[01:46:24] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[01:46:24] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[01:46:24] [PASSED] single_pixel_source_buffer
[01:46:24] [PASSED] single_pixel_clip_rectangle
[01:46:24] [PASSED] well_known_colors
[01:46:24] [PASSED] destination_pitch
[01:46:24] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[01:46:24] ============== drm_test_fb_xrgb8888_to_mono ===============
[01:46:24] [PASSED] single_pixel_source_buffer
[01:46:24] [PASSED] single_pixel_clip_rectangle
[01:46:24] [PASSED] well_known_colors
[01:46:24] [PASSED] destination_pitch
[01:46:24] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[01:46:24] ==================== drm_test_fb_swab =====================
[01:46:24] [PASSED] single_pixel_source_buffer
[01:46:24] [PASSED] single_pixel_clip_rectangle
[01:46:24] [PASSED] well_known_colors
[01:46:24] [PASSED] destination_pitch
[01:46:24] ================ [PASSED] drm_test_fb_swab =================
[01:46:24] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[01:46:24] [PASSED] single_pixel_source_buffer
[01:46:24] [PASSED] single_pixel_clip_rectangle
[01:46:24] [PASSED] well_known_colors
[01:46:24] [PASSED] destination_pitch
[01:46:24] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[01:46:24] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[01:46:24] [PASSED] single_pixel_source_buffer
[01:46:24] [PASSED] single_pixel_clip_rectangle
[01:46:24] [PASSED] well_known_colors
[01:46:24] [PASSED] destination_pitch
[01:46:24] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[01:46:24] ================= drm_test_fb_clip_offset =================
[01:46:24] [PASSED] pass through
[01:46:24] [PASSED] horizontal offset
[01:46:24] [PASSED] vertical offset
[01:46:24] [PASSED] horizontal and vertical offset
[01:46:24] [PASSED] horizontal offset (custom pitch)
[01:46:24] [PASSED] vertical offset (custom pitch)
[01:46:24] [PASSED] horizontal and vertical offset (custom pitch)
[01:46:24] ============= [PASSED] drm_test_fb_clip_offset =============
[01:46:24] =================== drm_test_fb_memcpy ====================
[01:46:24] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[01:46:24] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[01:46:24] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[01:46:24] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[01:46:24] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[01:46:24] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[01:46:24] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[01:46:24] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[01:46:24] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[01:46:24] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[01:46:24] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[01:46:24] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[01:46:24] =============== [PASSED] drm_test_fb_memcpy ================
[01:46:24] ============= [PASSED] drm_format_helper_test ==============
[01:46:24] ================= drm_format (18 subtests) =================
[01:46:24] [PASSED] drm_test_format_block_width_invalid
[01:46:24] [PASSED] drm_test_format_block_width_one_plane
[01:46:24] [PASSED] drm_test_format_block_width_two_plane
[01:46:24] [PASSED] drm_test_format_block_width_three_plane
[01:46:24] [PASSED] drm_test_format_block_width_tiled
[01:46:24] [PASSED] drm_test_format_block_height_invalid
[01:46:24] [PASSED] drm_test_format_block_height_one_plane
[01:46:24] [PASSED] drm_test_format_block_height_two_plane
[01:46:24] [PASSED] drm_test_format_block_height_three_plane
[01:46:24] [PASSED] drm_test_format_block_height_tiled
[01:46:24] [PASSED] drm_test_format_min_pitch_invalid
[01:46:24] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[01:46:24] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[01:46:24] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[01:46:24] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[01:46:24] [PASSED] drm_test_format_min_pitch_two_plane
[01:46:24] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[01:46:24] [PASSED] drm_test_format_min_pitch_tiled
[01:46:24] =================== [PASSED] drm_format ====================
[01:46:24] ============== drm_framebuffer (10 subtests) ===============
[01:46:24] ========== drm_test_framebuffer_check_src_coords ==========
[01:46:24] [PASSED] Success: source fits into fb
[01:46:24] [PASSED] Fail: overflowing fb with x-axis coordinate
[01:46:24] [PASSED] Fail: overflowing fb with y-axis coordinate
[01:46:24] [PASSED] Fail: overflowing fb with source width
[01:46:24] [PASSED] Fail: overflowing fb with source height
[01:46:24] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[01:46:24] [PASSED] drm_test_framebuffer_cleanup
[01:46:24] =============== drm_test_framebuffer_create ===============
[01:46:24] [PASSED] ABGR8888 normal sizes
[01:46:24] [PASSED] ABGR8888 max sizes
[01:46:24] [PASSED] ABGR8888 pitch greater than min required
[01:46:24] [PASSED] ABGR8888 pitch less than min required
[01:46:24] [PASSED] ABGR8888 Invalid width
[01:46:24] [PASSED] ABGR8888 Invalid buffer handle
[01:46:24] [PASSED] No pixel format
[01:46:24] [PASSED] ABGR8888 Width 0
[01:46:24] [PASSED] ABGR8888 Height 0
[01:46:24] [PASSED] ABGR8888 Out of bound height * pitch combination
[01:46:24] [PASSED] ABGR8888 Large buffer offset
[01:46:24] [PASSED] ABGR8888 Buffer offset for inexistent plane
[01:46:24] [PASSED] ABGR8888 Invalid flag
[01:46:24] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[01:46:24] [PASSED] ABGR8888 Valid buffer modifier
[01:46:24] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[01:46:24] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[01:46:24] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[01:46:24] [PASSED] NV12 Normal sizes
[01:46:24] [PASSED] NV12 Max sizes
[01:46:24] [PASSED] NV12 Invalid pitch
[01:46:24] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[01:46:24] [PASSED] NV12 different modifier per-plane
[01:46:24] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[01:46:24] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[01:46:24] [PASSED] NV12 Modifier for inexistent plane
[01:46:24] [PASSED] NV12 Handle for inexistent plane
[01:46:24] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[01:46:24] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[01:46:24] [PASSED] YVU420 Normal sizes
[01:46:24] [PASSED] YVU420 Max sizes
[01:46:24] [PASSED] YVU420 Invalid pitch
[01:46:24] [PASSED] YVU420 Different pitches
[01:46:24] [PASSED] YVU420 Different buffer offsets/pitches
[01:46:24] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[01:46:24] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[01:46:24] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[01:46:24] [PASSED] YVU420 Valid modifier
[01:46:24] [PASSED] YVU420 Different modifiers per plane
[01:46:24] [PASSED] YVU420 Modifier for inexistent plane
[01:46:24] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[01:46:24] [PASSED] X0L2 Normal sizes
[01:46:24] [PASSED] X0L2 Max sizes
[01:46:24] [PASSED] X0L2 Invalid pitch
[01:46:24] [PASSED] X0L2 Pitch greater than minimum required
[01:46:24] [PASSED] X0L2 Handle for inexistent plane
[01:46:24] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[01:46:24] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[01:46:24] [PASSED] X0L2 Valid modifier
[01:46:24] [PASSED] X0L2 Modifier for inexistent plane
[01:46:24] =========== [PASSED] drm_test_framebuffer_create ===========
[01:46:24] [PASSED] drm_test_framebuffer_free
[01:46:24] [PASSED] drm_test_framebuffer_init
[01:46:24] [PASSED] drm_test_framebuffer_init_bad_format
[01:46:24] [PASSED] drm_test_framebuffer_init_dev_mismatch
[01:46:24] [PASSED] drm_test_framebuffer_lookup
[01:46:24] [PASSED] drm_test_framebuffer_lookup_inexistent
[01:46:24] [PASSED] drm_test_framebuffer_modifiers_not_supported
[01:46:24] ================= [PASSED] drm_framebuffer =================
[01:46:24] ================ drm_gem_shmem (8 subtests) ================
[01:46:24] [PASSED] drm_gem_shmem_test_obj_create
[01:46:24] [PASSED] drm_gem_shmem_test_obj_create_private
[01:46:24] [PASSED] drm_gem_shmem_test_pin_pages
[01:46:24] [PASSED] drm_gem_shmem_test_vmap
[01:46:24] [PASSED] drm_gem_shmem_test_get_pages_sgt
[01:46:24] [PASSED] drm_gem_shmem_test_get_sg_table
[01:46:24] [PASSED] drm_gem_shmem_test_madvise
[01:46:24] [PASSED] drm_gem_shmem_test_purge
[01:46:24] ================== [PASSED] drm_gem_shmem ==================
[01:46:24] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[01:46:24] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[01:46:24] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[01:46:24] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[01:46:24] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[01:46:24] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[01:46:24] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[01:46:24] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[01:46:24] [PASSED] Automatic
[01:46:24] [PASSED] Full
[01:46:24] [PASSED] Limited 16:235
[01:46:24] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[01:46:24] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[01:46:24] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[01:46:24] [PASSED] drm_test_check_disable_connector
[01:46:24] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[01:46:24] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[01:46:24] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[01:46:24] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[01:46:24] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[01:46:24] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[01:46:24] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[01:46:24] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[01:46:24] [PASSED] drm_test_check_output_bpc_dvi
[01:46:24] [PASSED] drm_test_check_output_bpc_format_vic_1
[01:46:24] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[01:46:24] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[01:46:24] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[01:46:24] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[01:46:24] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[01:46:24] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[01:46:24] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[01:46:24] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[01:46:24] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[01:46:24] [PASSED] drm_test_check_broadcast_rgb_value
[01:46:24] [PASSED] drm_test_check_bpc_8_value
[01:46:24] [PASSED] drm_test_check_bpc_10_value
[01:46:24] [PASSED] drm_test_check_bpc_12_value
[01:46:24] [PASSED] drm_test_check_format_value
[01:46:24] [PASSED] drm_test_check_tmds_char_value
[01:46:24] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[01:46:24] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[01:46:24] [PASSED] drm_test_check_mode_valid
[01:46:24] [PASSED] drm_test_check_mode_valid_reject
[01:46:24] [PASSED] drm_test_check_mode_valid_reject_rate
[01:46:24] [PASSED] drm_test_check_mode_valid_reject_max_clock
[01:46:24] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[01:46:24] ================= drm_managed (2 subtests) =================
[01:46:24] [PASSED] drm_test_managed_release_action
[01:46:24] [PASSED] drm_test_managed_run_action
[01:46:24] =================== [PASSED] drm_managed ===================
[01:46:24] =================== drm_mm (6 subtests) ====================
[01:46:24] [PASSED] drm_test_mm_init
[01:46:24] [PASSED] drm_test_mm_debug
[01:46:24] [PASSED] drm_test_mm_align32
[01:46:24] [PASSED] drm_test_mm_align64
[01:46:24] [PASSED] drm_test_mm_lowest
[01:46:24] [PASSED] drm_test_mm_highest
[01:46:24] ===================== [PASSED] drm_mm ======================
[01:46:24] ============= drm_modes_analog_tv (5 subtests) =============
[01:46:24] [PASSED] drm_test_modes_analog_tv_mono_576i
[01:46:24] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[01:46:24] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[01:46:24] [PASSED] drm_test_modes_analog_tv_pal_576i
[01:46:24] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[01:46:24] =============== [PASSED] drm_modes_analog_tv ===============
[01:46:24] ============== drm_plane_helper (2 subtests) ===============
[01:46:24] =============== drm_test_check_plane_state ================
[01:46:24] [PASSED] clipping_simple
[01:46:24] [PASSED] clipping_rotate_reflect
[01:46:24] [PASSED] positioning_simple
[01:46:24] [PASSED] upscaling
[01:46:24] [PASSED] downscaling
[01:46:24] [PASSED] rounding1
[01:46:24] [PASSED] rounding2
[01:46:24] [PASSED] rounding3
[01:46:24] [PASSED] rounding4
[01:46:24] =========== [PASSED] drm_test_check_plane_state ============
[01:46:24] =========== drm_test_check_invalid_plane_state ============
[01:46:24] [PASSED] positioning_invalid
[01:46:24] [PASSED] upscaling_invalid
[01:46:24] [PASSED] downscaling_invalid
[01:46:24] ======= [PASSED] drm_test_check_invalid_plane_state ========
[01:46:24] ================ [PASSED] drm_plane_helper =================
[01:46:24] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[01:46:24] ====== drm_test_connector_helper_tv_get_modes_check =======
[01:46:24] [PASSED] None
[01:46:24] [PASSED] PAL
[01:46:24] [PASSED] NTSC
[01:46:24] [PASSED] Both, NTSC Default
[01:46:24] [PASSED] Both, PAL Default
[01:46:24] [PASSED] Both, NTSC Default, with PAL on command-line
[01:46:24] [PASSED] Both, PAL Default, with NTSC on command-line
[01:46:24] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[01:46:24] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[01:46:24] ================== drm_rect (9 subtests) ===================
[01:46:24] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[01:46:24] [PASSED] drm_test_rect_clip_scaled_not_clipped
[01:46:24] [PASSED] drm_test_rect_clip_scaled_clipped
[01:46:24] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[01:46:24] ================= drm_test_rect_intersect =================
[01:46:24] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[01:46:24] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[01:46:24] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[01:46:24] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[01:46:24] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[01:46:24] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[01:46:24] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[01:46:24] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[01:46:24] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[01:46:24] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[01:46:24] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[01:46:24] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[01:46:24] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[01:46:24] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[01:46:24] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[01:46:24] ============= [PASSED] drm_test_rect_intersect =============
[01:46:24] ================ drm_test_rect_calc_hscale ================
[01:46:24] [PASSED] normal use
[01:46:24] [PASSED] out of max range
[01:46:24] [PASSED] out of min range
[01:46:24] [PASSED] zero dst
[01:46:24] [PASSED] negative src
[01:46:24] [PASSED] negative dst
[01:46:24] ============ [PASSED] drm_test_rect_calc_hscale ============
[01:46:24] ================ drm_test_rect_calc_vscale ================
[01:46:24] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[01:46:24] [PASSED] out of max range
[01:46:24] [PASSED] out of min range
[01:46:24] [PASSED] zero dst
[01:46:24] [PASSED] negative src
[01:46:24] [PASSED] negative dst
[01:46:24] ============ [PASSED] drm_test_rect_calc_vscale ============
[01:46:24] ================== drm_test_rect_rotate ===================
[01:46:24] [PASSED] reflect-x
[01:46:24] [PASSED] reflect-y
[01:46:24] [PASSED] rotate-0
[01:46:24] [PASSED] rotate-90
[01:46:24] [PASSED] rotate-180
[01:46:24] [PASSED] rotate-270
[01:46:24] ============== [PASSED] drm_test_rect_rotate ===============
[01:46:24] ================ drm_test_rect_rotate_inv =================
[01:46:24] [PASSED] reflect-x
[01:46:24] [PASSED] reflect-y
[01:46:24] [PASSED] rotate-0
[01:46:24] [PASSED] rotate-90
[01:46:24] [PASSED] rotate-180
[01:46:24] [PASSED] rotate-270
[01:46:24] ============ [PASSED] drm_test_rect_rotate_inv =============
[01:46:24] ==================== [PASSED] drm_rect =====================
[01:46:24] ============ drm_sysfb_modeset_test (1 subtest) ============
[01:46:24] ============ drm_test_sysfb_build_fourcc_list =============
[01:46:24] [PASSED] no native formats
[01:46:24] [PASSED] XRGB8888 as native format
[01:46:24] [PASSED] remove duplicates
[01:46:24] [PASSED] convert alpha formats
[01:46:24] [PASSED] random formats
[01:46:24] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[01:46:24] ============= [PASSED] drm_sysfb_modeset_test ==============
[01:46:24] ============================================================
[01:46:24] Testing complete. Ran 622 tests: passed: 622
[01:46:24] Elapsed time: 26.792s total, 1.701s configuring, 24.674s building, 0.377s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[01:46:24] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:46:26] 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
[01:46:35] Starting KUnit Kernel (1/1)...
[01:46:35] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:46:35] ================= ttm_device (5 subtests) ==================
[01:46:35] [PASSED] ttm_device_init_basic
[01:46:35] [PASSED] ttm_device_init_multiple
[01:46:35] [PASSED] ttm_device_fini_basic
[01:46:35] [PASSED] ttm_device_init_no_vma_man
[01:46:35] ================== ttm_device_init_pools ==================
[01:46:35] [PASSED] No DMA allocations, no DMA32 required
[01:46:35] [PASSED] DMA allocations, DMA32 required
[01:46:35] [PASSED] No DMA allocations, DMA32 required
[01:46:35] [PASSED] DMA allocations, no DMA32 required
[01:46:35] ============== [PASSED] ttm_device_init_pools ==============
[01:46:35] =================== [PASSED] ttm_device ====================
[01:46:35] ================== ttm_pool (8 subtests) ===================
[01:46:35] ================== ttm_pool_alloc_basic ===================
[01:46:35] [PASSED] One page
[01:46:35] [PASSED] More than one page
[01:46:35] [PASSED] Above the allocation limit
[01:46:35] [PASSED] One page, with coherent DMA mappings enabled
[01:46:35] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[01:46:35] ============== [PASSED] ttm_pool_alloc_basic ===============
[01:46:35] ============== ttm_pool_alloc_basic_dma_addr ==============
[01:46:35] [PASSED] One page
[01:46:35] [PASSED] More than one page
[01:46:35] [PASSED] Above the allocation limit
[01:46:35] [PASSED] One page, with coherent DMA mappings enabled
[01:46:35] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[01:46:35] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[01:46:35] [PASSED] ttm_pool_alloc_order_caching_match
[01:46:35] [PASSED] ttm_pool_alloc_caching_mismatch
[01:46:35] [PASSED] ttm_pool_alloc_order_mismatch
[01:46:35] [PASSED] ttm_pool_free_dma_alloc
[01:46:35] [PASSED] ttm_pool_free_no_dma_alloc
[01:46:35] [PASSED] ttm_pool_fini_basic
[01:46:35] ==================== [PASSED] ttm_pool =====================
[01:46:35] ================ ttm_resource (8 subtests) =================
[01:46:35] ================= ttm_resource_init_basic =================
[01:46:35] [PASSED] Init resource in TTM_PL_SYSTEM
[01:46:35] [PASSED] Init resource in TTM_PL_VRAM
[01:46:35] [PASSED] Init resource in a private placement
[01:46:35] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[01:46:35] ============= [PASSED] ttm_resource_init_basic =============
[01:46:35] [PASSED] ttm_resource_init_pinned
[01:46:35] [PASSED] ttm_resource_fini_basic
[01:46:35] [PASSED] ttm_resource_manager_init_basic
[01:46:35] [PASSED] ttm_resource_manager_usage_basic
[01:46:35] [PASSED] ttm_resource_manager_set_used_basic
[01:46:35] [PASSED] ttm_sys_man_alloc_basic
[01:46:35] [PASSED] ttm_sys_man_free_basic
[01:46:35] ================== [PASSED] ttm_resource ===================
[01:46:35] =================== ttm_tt (15 subtests) ===================
[01:46:35] ==================== ttm_tt_init_basic ====================
[01:46:35] [PASSED] Page-aligned size
[01:46:35] [PASSED] Extra pages requested
[01:46:35] ================ [PASSED] ttm_tt_init_basic ================
[01:46:35] [PASSED] ttm_tt_init_misaligned
[01:46:35] [PASSED] ttm_tt_fini_basic
[01:46:35] [PASSED] ttm_tt_fini_sg
[01:46:35] [PASSED] ttm_tt_fini_shmem
[01:46:35] [PASSED] ttm_tt_create_basic
[01:46:35] [PASSED] ttm_tt_create_invalid_bo_type
[01:46:35] [PASSED] ttm_tt_create_ttm_exists
[01:46:35] [PASSED] ttm_tt_create_failed
[01:46:35] [PASSED] ttm_tt_destroy_basic
[01:46:35] [PASSED] ttm_tt_populate_null_ttm
[01:46:35] [PASSED] ttm_tt_populate_populated_ttm
[01:46:35] [PASSED] ttm_tt_unpopulate_basic
[01:46:35] [PASSED] ttm_tt_unpopulate_empty_ttm
[01:46:35] [PASSED] ttm_tt_swapin_basic
[01:46:35] ===================== [PASSED] ttm_tt ======================
[01:46:35] =================== ttm_bo (14 subtests) ===================
[01:46:35] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[01:46:35] [PASSED] Cannot be interrupted and sleeps
[01:46:35] [PASSED] Cannot be interrupted, locks straight away
[01:46:35] [PASSED] Can be interrupted, sleeps
[01:46:35] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[01:46:35] [PASSED] ttm_bo_reserve_locked_no_sleep
[01:46:35] [PASSED] ttm_bo_reserve_no_wait_ticket
[01:46:35] [PASSED] ttm_bo_reserve_double_resv
[01:46:35] [PASSED] ttm_bo_reserve_interrupted
[01:46:35] [PASSED] ttm_bo_reserve_deadlock
[01:46:35] [PASSED] ttm_bo_unreserve_basic
[01:46:35] [PASSED] ttm_bo_unreserve_pinned
[01:46:35] [PASSED] ttm_bo_unreserve_bulk
[01:46:35] [PASSED] ttm_bo_fini_basic
[01:46:35] [PASSED] ttm_bo_fini_shared_resv
[01:46:35] [PASSED] ttm_bo_pin_basic
[01:46:35] [PASSED] ttm_bo_pin_unpin_resource
[01:46:35] [PASSED] ttm_bo_multiple_pin_one_unpin
[01:46:35] ===================== [PASSED] ttm_bo ======================
[01:46:35] ============== ttm_bo_validate (21 subtests) ===============
[01:46:35] ============== ttm_bo_init_reserved_sys_man ===============
[01:46:35] [PASSED] Buffer object for userspace
[01:46:35] [PASSED] Kernel buffer object
[01:46:35] [PASSED] Shared buffer object
[01:46:35] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[01:46:35] ============== ttm_bo_init_reserved_mock_man ==============
[01:46:35] [PASSED] Buffer object for userspace
[01:46:35] [PASSED] Kernel buffer object
[01:46:35] [PASSED] Shared buffer object
[01:46:35] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[01:46:35] [PASSED] ttm_bo_init_reserved_resv
[01:46:35] ================== ttm_bo_validate_basic ==================
[01:46:35] [PASSED] Buffer object for userspace
[01:46:35] [PASSED] Kernel buffer object
[01:46:35] [PASSED] Shared buffer object
[01:46:35] ============== [PASSED] ttm_bo_validate_basic ==============
[01:46:35] [PASSED] ttm_bo_validate_invalid_placement
[01:46:35] ============= ttm_bo_validate_same_placement ==============
[01:46:35] [PASSED] System manager
[01:46:35] [PASSED] VRAM manager
[01:46:35] ========= [PASSED] ttm_bo_validate_same_placement ==========
[01:46:35] [PASSED] ttm_bo_validate_failed_alloc
[01:46:35] [PASSED] ttm_bo_validate_pinned
[01:46:35] [PASSED] ttm_bo_validate_busy_placement
[01:46:35] ================ ttm_bo_validate_multihop =================
[01:46:35] [PASSED] Buffer object for userspace
[01:46:35] [PASSED] Kernel buffer object
[01:46:35] [PASSED] Shared buffer object
[01:46:35] ============ [PASSED] ttm_bo_validate_multihop =============
[01:46:35] ========== ttm_bo_validate_no_placement_signaled ==========
[01:46:35] [PASSED] Buffer object in system domain, no page vector
[01:46:35] [PASSED] Buffer object in system domain with an existing page vector
[01:46:35] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[01:46:35] ======== ttm_bo_validate_no_placement_not_signaled ========
[01:46:35] [PASSED] Buffer object for userspace
[01:46:35] [PASSED] Kernel buffer object
[01:46:35] [PASSED] Shared buffer object
[01:46:35] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[01:46:35] [PASSED] ttm_bo_validate_move_fence_signaled
[01:46:36] ========= ttm_bo_validate_move_fence_not_signaled =========
[01:46:36] [PASSED] Waits for GPU
[01:46:36] [PASSED] Tries to lock straight away
[01:46:36] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[01:46:36] [PASSED] ttm_bo_validate_happy_evict
[01:46:36] [PASSED] ttm_bo_validate_all_pinned_evict
[01:46:36] [PASSED] ttm_bo_validate_allowed_only_evict
[01:46:36] [PASSED] ttm_bo_validate_deleted_evict
[01:46:36] [PASSED] ttm_bo_validate_busy_domain_evict
[01:46:36] [PASSED] ttm_bo_validate_evict_gutting
[01:46:36] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[01:46:36] ================= [PASSED] ttm_bo_validate =================
[01:46:36] ============================================================
[01:46:36] Testing complete. Ran 101 tests: passed: 101
[01:46:36] Elapsed time: 11.340s total, 1.712s configuring, 9.361s building, 0.226s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 16+ messages in thread* ✗ Xe.CI.BAT: failure for series starting with [1/2] drm/xe: Track pre-production workaround support
2025-11-19 22:05 [PATCH 1/2] drm/xe: Track pre-production workaround support Matt Roper
2025-11-19 22:05 ` [PATCH 2/2] drm/xe/lnl: Drop " Matt Roper
2025-11-20 1:46 ` ✓ CI.KUnit: success for series starting with [1/2] drm/xe: Track " Patchwork
@ 2025-11-20 2:36 ` Patchwork
2025-11-20 7:45 ` ✗ Xe.CI.Full: " Patchwork
` (6 subsequent siblings)
9 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-11-20 2:36 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 7552 bytes --]
== Series Details ==
Series: series starting with [1/2] drm/xe: Track pre-production workaround support
URL : https://patchwork.freedesktop.org/series/157804/
State : failure
== Summary ==
CI Bug Log - changes from xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8_BAT -> xe-pw-157804v1_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-157804v1_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-157804v1_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 (13 -> 13)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-157804v1_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@core_hotunplug@unbind-rebind:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] +3 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html
- bat-lnl-2: [PASS][3] -> [DMESG-WARN][4] +1 other test dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/bat-lnl-2/igt@core_hotunplug@unbind-rebind.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/bat-lnl-2/igt@core_hotunplug@unbind-rebind.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- bat-ptl-1: [PASS][5] -> [DMESG-WARN][6] +3 other tests dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/bat-ptl-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/bat-ptl-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@xe_module_load@load:
- bat-ptl-2: [PASS][7] -> [DMESG-WARN][8] +3 other tests dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/bat-ptl-2/igt@xe_module_load@load.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/bat-ptl-2/igt@xe_module_load@load.html
- bat-dg2-oem2: [PASS][9] -> [DMESG-WARN][10] +1 other test dmesg-warn
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/bat-dg2-oem2/igt@xe_module_load@load.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/bat-dg2-oem2/igt@xe_module_load@load.html
- bat-atsm-2: [PASS][11] -> [DMESG-WARN][12] +3 other tests dmesg-warn
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/bat-atsm-2/igt@xe_module_load@load.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/bat-atsm-2/igt@xe_module_load@load.html
- bat-adlp-vm: [PASS][13] -> [DMESG-WARN][14] +1 other test dmesg-warn
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/bat-adlp-vm/igt@xe_module_load@load.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/bat-adlp-vm/igt@xe_module_load@load.html
- bat-ptl-vm: [PASS][15] -> [DMESG-WARN][16] +1 other test dmesg-warn
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/bat-ptl-vm/igt@xe_module_load@load.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/bat-ptl-vm/igt@xe_module_load@load.html
- bat-lnl-1: [PASS][17] -> [DMESG-WARN][18] +1 other test dmesg-warn
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/bat-lnl-1/igt@xe_module_load@load.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/bat-lnl-1/igt@xe_module_load@load.html
- bat-pvc-2: [PASS][19] -> [DMESG-WARN][20]
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/bat-pvc-2/igt@xe_module_load@load.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/bat-pvc-2/igt@xe_module_load@load.html
- bat-bmg-2: [PASS][21] -> [DMESG-WARN][22]
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/bat-bmg-2/igt@xe_module_load@load.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/bat-bmg-2/igt@xe_module_load@load.html
- bat-bmg-3: [PASS][23] -> [DMESG-WARN][24]
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/bat-bmg-3/igt@xe_module_load@load.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/bat-bmg-3/igt@xe_module_load@load.html
Known issues
------------
Here are the changes found in xe-pw-157804v1_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-plain-flip@b-edp1:
- bat-adlp-7: [PASS][25] -> [DMESG-WARN][26] ([Intel XE#4543]) +1 other test dmesg-warn
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/bat-adlp-7/igt@kms_flip@basic-plain-flip@b-edp1.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/bat-adlp-7/igt@kms_flip@basic-plain-flip@b-edp1.html
* igt@kms_force_connector_basic@force-connector-state:
- bat-bmg-2: [PASS][27] -> [ABORT][28] ([Intel XE#1727] / [Intel XE#4760])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/bat-bmg-2/igt@kms_force_connector_basic@force-connector-state.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/bat-bmg-2/igt@kms_force_connector_basic@force-connector-state.html
* igt@xe_waitfence@engine:
- bat-dg2-oem2: [PASS][29] -> [FAIL][30] ([Intel XE#6519])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/bat-dg2-oem2/igt@xe_waitfence@engine.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/bat-dg2-oem2/igt@xe_waitfence@engine.html
* igt@xe_waitfence@reltime:
- bat-dg2-oem2: [PASS][31] -> [FAIL][32] ([Intel XE#6520])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760
[Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519
[Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
Build changes
-------------
* IGT: IGT_8633 -> IGT_8635
* Linux: xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8 -> xe-pw-157804v1
IGT_8633: 8633
IGT_8635: 8635
xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8: a95032b2166b5ae428c065917b843a1caf1e82b8
xe-pw-157804v1: 157804v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/index.html
[-- Attachment #2: Type: text/html, Size: 8348 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread* ✗ Xe.CI.Full: failure for series starting with [1/2] drm/xe: Track pre-production workaround support
2025-11-19 22:05 [PATCH 1/2] drm/xe: Track pre-production workaround support Matt Roper
` (2 preceding siblings ...)
2025-11-20 2:36 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2025-11-20 7:45 ` Patchwork
2025-11-20 16:21 ` [PATCH v2 1/2] " Matt Roper
` (5 subsequent siblings)
9 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-11-20 7:45 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 22895 bytes --]
== Series Details ==
Series: series starting with [1/2] drm/xe: Track pre-production workaround support
URL : https://patchwork.freedesktop.org/series/157804/
State : failure
== Summary ==
CI Bug Log - changes from xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8_FULL -> xe-pw-157804v1_FULL
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with xe-pw-157804v1_FULL need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-157804v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-157804v1_FULL:
### IGT changes ###
#### Warnings ####
* igt@xe_module_load@load:
- shard-lnl: ([PASS][1], [PASS][2], [PASS][3], [PASS][4], [PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [SKIP][23], [PASS][24], [PASS][25], [PASS][26]) ([Intel XE#378]) -> ([DMESG-WARN][27], [DMESG-WARN][28], [DMESG-WARN][29], [DMESG-WARN][30], [DMESG-WARN][31], [DMESG-WARN][32], [DMESG-WARN][33], [DMESG-WARN][34], [DMESG-WARN][35], [DMESG-WARN][36], [DMESG-WARN][37], [DMESG-WARN][38], [DMESG-WARN][39], [DMESG-WARN][40], [DMESG-WARN][41], [DMESG-WARN][42], [DMESG-WARN][43], [DMESG-WARN][44], [DMESG-WARN][45], [DMESG-WARN][46], [DMESG-WARN][47], [DMESG-WARN][48], [DMESG-WARN][49], [DMESG-WARN][50])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-5/igt@xe_module_load@load.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-5/igt@xe_module_load@load.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-8/igt@xe_module_load@load.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-8/igt@xe_module_load@load.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-8/igt@xe_module_load@load.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-8/igt@xe_module_load@load.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-3/igt@xe_module_load@load.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-4/igt@xe_module_load@load.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-4/igt@xe_module_load@load.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-4/igt@xe_module_load@load.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-3/igt@xe_module_load@load.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-1/igt@xe_module_load@load.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-1/igt@xe_module_load@load.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-5/igt@xe_module_load@load.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-5/igt@xe_module_load@load.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-1/igt@xe_module_load@load.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-3/igt@xe_module_load@load.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-7/igt@xe_module_load@load.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-7/igt@xe_module_load@load.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-7/igt@xe_module_load@load.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-1/igt@xe_module_load@load.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-2/igt@xe_module_load@load.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-1/igt@xe_module_load@load.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-3/igt@xe_module_load@load.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-2/igt@xe_module_load@load.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-lnl-2/igt@xe_module_load@load.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-lnl-1/igt@xe_module_load@load.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-lnl-1/igt@xe_module_load@load.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-lnl-1/igt@xe_module_load@load.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-lnl-8/igt@xe_module_load@load.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-lnl-8/igt@xe_module_load@load.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-lnl-8/igt@xe_module_load@load.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-lnl-8/igt@xe_module_load@load.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-lnl-4/igt@xe_module_load@load.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-lnl-4/igt@xe_module_load@load.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-lnl-4/igt@xe_module_load@load.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-lnl-3/igt@xe_module_load@load.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-lnl-3/igt@xe_module_load@load.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-lnl-3/igt@xe_module_load@load.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-lnl-3/igt@xe_module_load@load.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-lnl-2/igt@xe_module_load@load.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-lnl-2/igt@xe_module_load@load.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-lnl-2/igt@xe_module_load@load.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-lnl-2/igt@xe_module_load@load.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-lnl-7/igt@xe_module_load@load.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-lnl-7/igt@xe_module_load@load.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-lnl-7/igt@xe_module_load@load.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-lnl-5/igt@xe_module_load@load.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-lnl-5/igt@xe_module_load@load.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-lnl-5/igt@xe_module_load@load.html
- shard-adlp: ([PASS][51], [PASS][52], [PASS][53], [SKIP][54], [PASS][55], [PASS][56], [PASS][57], [PASS][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75]) ([Intel XE#378] / [Intel XE#5612]) -> ([DMESG-WARN][76], [DMESG-WARN][77], [DMESG-WARN][78], [DMESG-WARN][79], [DMESG-WARN][80], [DMESG-WARN][81], [DMESG-WARN][82], [DMESG-WARN][83], [DMESG-WARN][84], [DMESG-WARN][85], [DMESG-WARN][86], [DMESG-WARN][87], [DMESG-WARN][88], [DMESG-WARN][89], [DMESG-WARN][90], [DMESG-WARN][91], [DMESG-WARN][92], [DMESG-WARN][93], [DMESG-WARN][94], [DMESG-WARN][95], [DMESG-WARN][96], [DMESG-WARN][97], [DMESG-WARN][98], [DMESG-WARN][99])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-6/igt@xe_module_load@load.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-4/igt@xe_module_load@load.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-2/igt@xe_module_load@load.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-6/igt@xe_module_load@load.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-4/igt@xe_module_load@load.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-4/igt@xe_module_load@load.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-3/igt@xe_module_load@load.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-9/igt@xe_module_load@load.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-9/igt@xe_module_load@load.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-9/igt@xe_module_load@load.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-9/igt@xe_module_load@load.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-4/igt@xe_module_load@load.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-8/igt@xe_module_load@load.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-8/igt@xe_module_load@load.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-2/igt@xe_module_load@load.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-2/igt@xe_module_load@load.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-8/igt@xe_module_load@load.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-8/igt@xe_module_load@load.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-6/igt@xe_module_load@load.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-6/igt@xe_module_load@load.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-6/igt@xe_module_load@load.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-2/igt@xe_module_load@load.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-3/igt@xe_module_load@load.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-3/igt@xe_module_load@load.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-adlp-3/igt@xe_module_load@load.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-adlp-6/igt@xe_module_load@load.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-adlp-6/igt@xe_module_load@load.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-adlp-9/igt@xe_module_load@load.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-adlp-9/igt@xe_module_load@load.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-adlp-9/igt@xe_module_load@load.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-adlp-9/igt@xe_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-adlp-8/igt@xe_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-adlp-8/igt@xe_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-adlp-8/igt@xe_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-adlp-8/igt@xe_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-adlp-2/igt@xe_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-adlp-2/igt@xe_module_load@load.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-adlp-2/igt@xe_module_load@load.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-adlp-3/igt@xe_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-adlp-3/igt@xe_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-adlp-3/igt@xe_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-adlp-4/igt@xe_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-adlp-4/igt@xe_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-adlp-4/igt@xe_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-adlp-4/igt@xe_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-adlp-1/igt@xe_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-adlp-1/igt@xe_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-adlp-1/igt@xe_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-adlp-1/igt@xe_module_load@load.html
- shard-dg2-set2: ([PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [SKIP][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125]) ([Intel XE#378]) -> ([DMESG-WARN][126], [DMESG-WARN][127], [DMESG-WARN][128], [DMESG-WARN][129], [DMESG-WARN][130], [DMESG-WARN][131], [DMESG-WARN][132], [DMESG-WARN][133], [DMESG-WARN][134], [DMESG-WARN][135], [DMESG-WARN][136], [DMESG-WARN][137], [DMESG-WARN][138], [DMESG-WARN][139], [DMESG-WARN][140], [DMESG-WARN][141], [DMESG-WARN][142], [DMESG-WARN][143], [DMESG-WARN][144], [DMESG-WARN][145], [DMESG-WARN][146], [DMESG-WARN][147], [DMESG-WARN][148], [DMESG-WARN][149], [DMESG-WARN][150])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-432/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-466/igt@xe_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-466/igt@xe_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-436/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-436/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-433/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-433/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-433/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-433/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-464/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-435/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-435/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-464/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-464/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-466/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-463/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-432/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-436/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-436/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-433/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-435/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-463/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-463/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-432/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-434/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8/shard-dg2-434/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-434/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-434/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-434/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-434/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-434/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-464/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-464/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-464/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-464/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-433/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-433/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-433/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-436/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-436/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-436/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-466/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-466/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-466/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-435/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-435/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-435/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-432/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-432/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-432/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/shard-dg2-432/igt@xe_module_load@load.html
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#5612]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5612
Build changes
-------------
* IGT: IGT_8633 -> IGT_8635
* Linux: xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8 -> xe-pw-157804v1
IGT_8633: 8633
IGT_8635: 8635
xe-4131-a95032b2166b5ae428c065917b843a1caf1e82b8: a95032b2166b5ae428c065917b843a1caf1e82b8
xe-pw-157804v1: 157804v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v1/index.html
[-- Attachment #2: Type: text/html, Size: 23451 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread* [PATCH v2 1/2] drm/xe: Track pre-production workaround support
2025-11-19 22:05 [PATCH 1/2] drm/xe: Track pre-production workaround support Matt Roper
` (3 preceding siblings ...)
2025-11-20 7:45 ` ✗ Xe.CI.Full: " Patchwork
@ 2025-11-20 16:21 ` Matt Roper
2025-11-20 17:00 ` [PATCH " Jani Nikula
` (4 subsequent siblings)
9 siblings, 0 replies; 16+ messages in thread
From: Matt Roper @ 2025-11-20 16:21 UTC (permalink / raw)
To: intel-xe; +Cc: matthew.d.roper
When we're initially enabling driver support for a new platform/IP, we
usually implement all workarounds documented in the WA database in the
driver. Many of those workarounds are restricted to early steppings
that only showed up in pre-production hardware (i.e., internal test
chips that are not available to the general public). Since the
workarounds for early, pre-production steppings tend to be some of the
ugliest and most complicated workarounds, we generally want to eliminate
them and simplify the code once the platform has launched and our
internal usage of those pre-production parts have been phased out.
Let's add a flag to the device info that tracks which platforms we've
removed pre-production workarounds for so that we can print a warning
and taint if someone tries to load the driver on a pre-production part.
This will help our internal users understand the likely problems they'll
encounter if they try to load the driver on an old pre-production
device.
The Xe behavior here is similar to what we've done for many years on
i915 (see intel_detect_preproduction_hw()), except that instead of
manually coding up ranges of device steppings that we believe to be
pre-production hardware, Xe will use the hardware's own production vs
pre-production fusing status, which we can read from the FUSE2 register.
This fuse didn't exist on older Intel hardware, but should be present on
all platforms supported by the Xe driver.
Going forward, let's set the expectation that we'll start looking into
removing pre-production workarounds for a platform around the time that
platforms of the next major IP stepping are having their force_probe
requirement lifted. This timing is just a rough guideline; there may be
cases where some instances of pre-production parts are still being
actively used in CI farms, internal device pools, etc. and we'll need to
wait a bit longer for those to be swapped out.
v2:
- Fix inverted forcewake check
Bspec: 78271, 52544
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
drivers/gpu/drm/xe/regs/xe_gt_regs.h | 3 ++
drivers/gpu/drm/xe/xe_device.c | 48 ++++++++++++++++++++++++++++
drivers/gpu/drm/xe/xe_device_types.h | 2 ++
drivers/gpu/drm/xe/xe_pci.c | 1 +
drivers/gpu/drm/xe/xe_pci_types.h | 1 +
5 files changed, 55 insertions(+)
diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
index 917a088c28f2..93643da57428 100644
--- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
@@ -227,6 +227,9 @@
#define MIRROR_FUSE1 XE_REG(0x911c)
+#define FUSE2 XE_REG(0x9120)
+#define PRODUCTION_HW REG_BIT(2)
+
#define MIRROR_L3BANK_ENABLE XE_REG(0x9130)
#define XE3_L3BANK_ENABLE REG_GENMASK(31, 0)
diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
index 1197f914ef77..cb8d01814a55 100644
--- a/drivers/gpu/drm/xe/xe_device.c
+++ b/drivers/gpu/drm/xe/xe_device.c
@@ -797,6 +797,52 @@ static int probe_has_flat_ccs(struct xe_device *xe)
return 0;
}
+/*
+ * Detect if the driver is being run on pre-production hardware. We don't
+ * keep workarounds for pre-production hardware long term, so print an
+ * error and add taint if we're being loaded on a pre-production platform
+ * for which the pre-prod workarounds have already been removed.
+ *
+ * The general policy is that we'll remove any workarounds that only apply to
+ * pre-production hardware around the time force_probe restrictions are lifted
+ * for a platform of the next major IP generation (for example, Xe2 pre-prod
+ * workarounds should be removed around the time the first Xe3 platforms have
+ * force_probe lifted).
+ */
+static void detect_preproduction_hw(struct xe_device *xe)
+{
+ struct xe_gt *gt;
+ int id;
+
+ /*
+ * The "SW_CAP" fuse contains a bit indicating whether the device is a
+ * production or pre-production device. This fuse is reflected through
+ * the GT "FUSE2" register, even though the contents of the fuse are
+ * not GT-specific. Every GT's reflection of this fuse should show the
+ * same value, so we'll just use the first available GT for lookup.
+ */
+ for_each_gt(gt, xe, id)
+ break;
+
+ if (!gt)
+ return;
+
+ CLASS(xe_force_wake, fw_ref)(gt_to_fw(gt), XE_FW_GT);
+ if (!xe_force_wake_ref_has_domain(fw_ref.domains, XE_FW_GT)) {
+ xe_gt_err(gt, "Forcewake failure; cannot determine production/pre-production hw status.\n");
+ return;
+ }
+
+ if (xe_mmio_read32(>->mmio, FUSE2) & PRODUCTION_HW)
+ return;
+
+ xe_info(xe, "Pre-production hardware detected.\n");
+ if (xe->info.has_prod_wa_only) {
+ xe_err(xe, "Pre-production workarounds for this platform have already been removed.\n");
+ add_taint(TAINT_MACHINE_CHECK, LOCKDEP_STILL_OK);
+ }
+}
+
int xe_device_probe(struct xe_device *xe)
{
struct xe_tile *tile;
@@ -967,6 +1013,8 @@ int xe_device_probe(struct xe_device *xe)
if (err)
goto err_unregister_display;
+ detect_preproduction_hw(xe);
+
return devm_add_action_or_reset(xe->drm.dev, xe_device_sanitize, xe);
err_unregister_display:
diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
index 0b2fa7c56d38..fe76640db859 100644
--- a/drivers/gpu/drm/xe/xe_device_types.h
+++ b/drivers/gpu/drm/xe/xe_device_types.h
@@ -308,6 +308,8 @@ struct xe_device {
u8 has_mbx_power_limits:1;
/** @info.has_mem_copy_instr: Device supports MEM_COPY instruction */
u8 has_mem_copy_instr:1;
+ /** @info.has_prod_wa_only: Only production hardware workarounds supported */
+ u8 has_prod_wa_only:1;
/** @info.has_pxp: Device has PXP support */
u8 has_pxp:1;
/** @info.has_range_tlb_inval: Has range based TLB invalidations */
diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
index cd03b4b3ebdb..25365a891f9d 100644
--- a/drivers/gpu/drm/xe/xe_pci.c
+++ b/drivers/gpu/drm/xe/xe_pci.c
@@ -673,6 +673,7 @@ static int xe_info_init_early(struct xe_device *xe,
xe->info.has_heci_cscfi = desc->has_heci_cscfi;
xe->info.has_late_bind = desc->has_late_bind;
xe->info.has_llc = desc->has_llc;
+ xe->info.has_prod_wa_only = desc->has_prod_wa_only;
xe->info.has_pxp = desc->has_pxp;
xe->info.has_sriov = xe_configfs_primary_gt_allowed(to_pci_dev(xe->drm.dev)) &&
desc->has_sriov;
diff --git a/drivers/gpu/drm/xe/xe_pci_types.h b/drivers/gpu/drm/xe/xe_pci_types.h
index 9892c063a9c5..3045e860221c 100644
--- a/drivers/gpu/drm/xe/xe_pci_types.h
+++ b/drivers/gpu/drm/xe/xe_pci_types.h
@@ -47,6 +47,7 @@ struct xe_device_desc {
u8 has_llc:1;
u8 has_mbx_power_limits:1;
u8 has_mem_copy_instr:1;
+ u8 has_prod_wa_only:1;
u8 has_pxp:1;
u8 has_sriov:1;
u8 needs_scratch:1;
--
2.51.1
^ permalink raw reply related [flat|nested] 16+ messages in thread* Re: [PATCH 1/2] drm/xe: Track pre-production workaround support
2025-11-19 22:05 [PATCH 1/2] drm/xe: Track pre-production workaround support Matt Roper
` (4 preceding siblings ...)
2025-11-20 16:21 ` [PATCH v2 1/2] " Matt Roper
@ 2025-11-20 17:00 ` Jani Nikula
2025-11-20 18:07 ` Lucas De Marchi
` (3 subsequent siblings)
9 siblings, 0 replies; 16+ messages in thread
From: Jani Nikula @ 2025-11-20 17:00 UTC (permalink / raw)
To: Matt Roper, intel-xe; +Cc: matthew.d.roper
On Wed, 19 Nov 2025, Matt Roper <matthew.d.roper@intel.com> wrote:
> When we're initially enabling driver support for a new platform/IP, we
> usually implement all workarounds documented in the WA database in the
> driver. Many of those workarounds are restricted to early steppings
> that only showed up in pre-production hardware (i.e., internal test
> chips that are not available to the general public). Since the
> workarounds for early, pre-production steppings tend to be some of the
> ugliest and most complicated workarounds, we generally want to eliminate
> them and simplify the code once the platform has launched and our
> internal usage of those pre-production parts have been phased out.
>
> Let's add a flag to the device info that tracks which platforms we've
> removed pre-production workarounds for so that we can print a warning
> and taint if someone tries to load the driver on a pre-production part.
> This will help our internal users understand the likely problems they'll
> encounter if they try to load the driver on an old pre-production
> device.
>
> The Xe behavior here is similar to what we've done for many years on
> i915 (see intel_detect_preproduction_hw()), except that instead of
> manually coding up ranges of device steppings that we believe to be
> pre-production hardware, Xe will use the hardware's own production vs
> pre-production fusing status, which we can read from the FUSE2 register.
> This fuse didn't exist on older Intel hardware, but should be present on
> all platforms supported by the Xe driver.
>
> Going forward, let's set the expectation that we'll start looking into
> removing pre-production workarounds for a platform around the time that
> platforms of the next major IP stepping are having their force_probe
> requirement lifted. This timing is just a rough guideline; there may be
> cases where some instances of pre-production parts are still being
> actively used in CI farms, internal device pools, etc. and we'll need to
> wait a bit longer for those to be swapped out.
Nice!
I fear the i915 checks have pretty much gone stale, and not all old
workarounds have been removed.
> Bspec: 78271, 52544
> Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
> ---
> drivers/gpu/drm/xe/regs/xe_gt_regs.h | 3 ++
> drivers/gpu/drm/xe/xe_device.c | 48 ++++++++++++++++++++++++++++
> drivers/gpu/drm/xe/xe_device_types.h | 2 ++
> drivers/gpu/drm/xe/xe_pci.c | 1 +
> drivers/gpu/drm/xe/xe_pci_types.h | 1 +
> 5 files changed, 55 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> index 917a088c28f2..93643da57428 100644
> --- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> +++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> @@ -227,6 +227,9 @@
>
> #define MIRROR_FUSE1 XE_REG(0x911c)
>
> +#define FUSE2 XE_REG(0x9120)
> +#define PRODUCTION_HW REG_BIT(2)
> +
> #define MIRROR_L3BANK_ENABLE XE_REG(0x9130)
> #define XE3_L3BANK_ENABLE REG_GENMASK(31, 0)
>
> diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
> index 1197f914ef77..ed758888cfa1 100644
> --- a/drivers/gpu/drm/xe/xe_device.c
> +++ b/drivers/gpu/drm/xe/xe_device.c
> @@ -797,6 +797,52 @@ static int probe_has_flat_ccs(struct xe_device *xe)
> return 0;
> }
>
> +/*
> + * Detect if the driver is being run on pre-production hardware. We don't
> + * keep workarounds for pre-production hardware long term, so print an
> + * error and add taint if we're being loaded on a pre-production platform
> + * for which the pre-prod workarounds have already been removed.
> + *
> + * The general policy is that we'll remove any workarounds that only apply to
> + * pre-production hardware around the time force_probe restrictions are lifted
> + * for a platform of the next major IP generation (for example, Xe2 pre-prod
> + * workarounds should be removed around the time the first Xe3 platforms have
> + * force_probe lifted).
> + */
> +static void detect_preproduction_hw(struct xe_device *xe)
> +{
> + struct xe_gt *gt;
> + int id;
> +
> + /*
> + * The "SW_CAP" fuse contains a bit indicating whether the device is a
> + * production or pre-production device. This fuse is reflected through
> + * the GT "FUSE2" register, even though the contents of the fuse are
> + * not GT-specific. Every GT's reflection of this fuse should show the
> + * same value, so we'll just use the first available GT for lookup.
> + */
> + for_each_gt(gt, xe, id)
> + break;
> +
> + if (!gt)
> + return;
> +
> + CLASS(xe_force_wake, fw_ref)(gt_to_fw(gt), XE_FW_GT);
> + if (xe_force_wake_ref_has_domain(fw_ref.domains, XE_FW_GT)) {
> + xe_gt_err(gt, "Forcewake failure; cannot determine production/pre-production hw status.\n");
> + return;
> + }
> +
> + if (xe_mmio_read32(>->mmio, FUSE2) & PRODUCTION_HW)
> + return;
> +
> + xe_info(xe, "Pre-production hardware detected.\n");
> + if (xe->info.has_prod_wa_only) {
Would it make sense to flip this flag around? Otherwise you'll need to
keep the flag indefinitely for production hardware.
Say, if you had .has_pre_production_wa, you'd initially set that and
.require_force_probe, then at some point drop .require_force_probe, and
later still drop .has_pre_production_wa.
BR,
Jani.
> + xe_err(xe, "Pre-production workarounds for this platform have already been removed.\n");
> + add_taint(TAINT_MACHINE_CHECK, LOCKDEP_STILL_OK);
> + }
> +}
> +
> int xe_device_probe(struct xe_device *xe)
> {
> struct xe_tile *tile;
> @@ -967,6 +1013,8 @@ int xe_device_probe(struct xe_device *xe)
> if (err)
> goto err_unregister_display;
>
> + detect_preproduction_hw(xe);
> +
> return devm_add_action_or_reset(xe->drm.dev, xe_device_sanitize, xe);
>
> err_unregister_display:
> diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
> index 0b2fa7c56d38..fe76640db859 100644
> --- a/drivers/gpu/drm/xe/xe_device_types.h
> +++ b/drivers/gpu/drm/xe/xe_device_types.h
> @@ -308,6 +308,8 @@ struct xe_device {
> u8 has_mbx_power_limits:1;
> /** @info.has_mem_copy_instr: Device supports MEM_COPY instruction */
> u8 has_mem_copy_instr:1;
> + /** @info.has_prod_wa_only: Only production hardware workarounds supported */
> + u8 has_prod_wa_only:1;
> /** @info.has_pxp: Device has PXP support */
> u8 has_pxp:1;
> /** @info.has_range_tlb_inval: Has range based TLB invalidations */
> diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
> index cd03b4b3ebdb..25365a891f9d 100644
> --- a/drivers/gpu/drm/xe/xe_pci.c
> +++ b/drivers/gpu/drm/xe/xe_pci.c
> @@ -673,6 +673,7 @@ static int xe_info_init_early(struct xe_device *xe,
> xe->info.has_heci_cscfi = desc->has_heci_cscfi;
> xe->info.has_late_bind = desc->has_late_bind;
> xe->info.has_llc = desc->has_llc;
> + xe->info.has_prod_wa_only = desc->has_prod_wa_only;
> xe->info.has_pxp = desc->has_pxp;
> xe->info.has_sriov = xe_configfs_primary_gt_allowed(to_pci_dev(xe->drm.dev)) &&
> desc->has_sriov;
> diff --git a/drivers/gpu/drm/xe/xe_pci_types.h b/drivers/gpu/drm/xe/xe_pci_types.h
> index 9892c063a9c5..3045e860221c 100644
> --- a/drivers/gpu/drm/xe/xe_pci_types.h
> +++ b/drivers/gpu/drm/xe/xe_pci_types.h
> @@ -47,6 +47,7 @@ struct xe_device_desc {
> u8 has_llc:1;
> u8 has_mbx_power_limits:1;
> u8 has_mem_copy_instr:1;
> + u8 has_prod_wa_only:1;
> u8 has_pxp:1;
> u8 has_sriov:1;
> u8 needs_scratch:1;
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 16+ messages in thread* Re: [PATCH 1/2] drm/xe: Track pre-production workaround support
2025-11-19 22:05 [PATCH 1/2] drm/xe: Track pre-production workaround support Matt Roper
` (5 preceding siblings ...)
2025-11-20 17:00 ` [PATCH " Jani Nikula
@ 2025-11-20 18:07 ` Lucas De Marchi
2025-11-20 18:35 ` Matt Roper
2025-11-20 20:31 ` ✓ CI.KUnit: success for series starting with [v2,1/2] drm/xe: Track pre-production workaround support (rev2) Patchwork
` (2 subsequent siblings)
9 siblings, 1 reply; 16+ messages in thread
From: Lucas De Marchi @ 2025-11-20 18:07 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
On Wed, Nov 19, 2025 at 02:05:00PM -0800, Matt Roper wrote:
>When we're initially enabling driver support for a new platform/IP, we
>usually implement all workarounds documented in the WA database in the
>driver. Many of those workarounds are restricted to early steppings
>that only showed up in pre-production hardware (i.e., internal test
>chips that are not available to the general public). Since the
>workarounds for early, pre-production steppings tend to be some of the
>ugliest and most complicated workarounds, we generally want to eliminate
>them and simplify the code once the platform has launched and our
>internal usage of those pre-production parts have been phased out.
>
>Let's add a flag to the device info that tracks which platforms we've
>removed pre-production workarounds for so that we can print a warning
>and taint if someone tries to load the driver on a pre-production part.
>This will help our internal users understand the likely problems they'll
>encounter if they try to load the driver on an old pre-production
>device.
>
>The Xe behavior here is similar to what we've done for many years on
>i915 (see intel_detect_preproduction_hw()), except that instead of
>manually coding up ranges of device steppings that we believe to be
>pre-production hardware, Xe will use the hardware's own production vs
>pre-production fusing status, which we can read from the FUSE2 register.
>This fuse didn't exist on older Intel hardware, but should be present on
>all platforms supported by the Xe driver.
another difference it seems is that intel_detect_preproduction_hw() is
executed for any platform, there isn't a flag... but maybe that's
because the platform/revid check is only added on the flag day.
>Going forward, let's set the expectation that we'll start looking into
>removing pre-production workarounds for a platform around the time that
>platforms of the next major IP stepping are having their force_probe
>requirement lifted. This timing is just a rough guideline; there may be
>cases where some instances of pre-production parts are still being
>actively used in CI farms, internal device pools, etc. and we'll need to
>wait a bit longer for those to be swapped out.
>
>Bspec: 78271, 52544
>Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
>---
> drivers/gpu/drm/xe/regs/xe_gt_regs.h | 3 ++
> drivers/gpu/drm/xe/xe_device.c | 48 ++++++++++++++++++++++++++++
> drivers/gpu/drm/xe/xe_device_types.h | 2 ++
> drivers/gpu/drm/xe/xe_pci.c | 1 +
> drivers/gpu/drm/xe/xe_pci_types.h | 1 +
> 5 files changed, 55 insertions(+)
>
>diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
>index 917a088c28f2..93643da57428 100644
>--- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
>+++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
>@@ -227,6 +227,9 @@
>
> #define MIRROR_FUSE1 XE_REG(0x911c)
>
>+#define FUSE2 XE_REG(0x9120)
>+#define PRODUCTION_HW REG_BIT(2)
>+
> #define MIRROR_L3BANK_ENABLE XE_REG(0x9130)
> #define XE3_L3BANK_ENABLE REG_GENMASK(31, 0)
>
>diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
>index 1197f914ef77..ed758888cfa1 100644
>--- a/drivers/gpu/drm/xe/xe_device.c
>+++ b/drivers/gpu/drm/xe/xe_device.c
>@@ -797,6 +797,52 @@ static int probe_has_flat_ccs(struct xe_device *xe)
> return 0;
> }
>
>+/*
>+ * Detect if the driver is being run on pre-production hardware. We don't
>+ * keep workarounds for pre-production hardware long term, so print an
>+ * error and add taint if we're being loaded on a pre-production platform
>+ * for which the pre-prod workarounds have already been removed.
>+ *
>+ * The general policy is that we'll remove any workarounds that only apply to
>+ * pre-production hardware around the time force_probe restrictions are lifted
>+ * for a platform of the next major IP generation (for example, Xe2 pre-prod
>+ * workarounds should be removed around the time the first Xe3 platforms have
>+ * force_probe lifted).
>+ */
>+static void detect_preproduction_hw(struct xe_device *xe)
>+{
>+ struct xe_gt *gt;
>+ int id;
>+
>+ /*
>+ * The "SW_CAP" fuse contains a bit indicating whether the device is a
>+ * production or pre-production device. This fuse is reflected through
>+ * the GT "FUSE2" register, even though the contents of the fuse are
>+ * not GT-specific. Every GT's reflection of this fuse should show the
>+ * same value, so we'll just use the first available GT for lookup.
>+ */
>+ for_each_gt(gt, xe, id)
>+ break;
>+
>+ if (!gt)
>+ return;
>+
>+ CLASS(xe_force_wake, fw_ref)(gt_to_fw(gt), XE_FW_GT);
>+ if (xe_force_wake_ref_has_domain(fw_ref.domains, XE_FW_GT)) {
>+ xe_gt_err(gt, "Forcewake failure; cannot determine production/pre-production hw status.\n");
>+ return;
>+ }
>+
>+ if (xe_mmio_read32(>->mmio, FUSE2) & PRODUCTION_HW)
>+ return;
>+
>+ xe_info(xe, "Pre-production hardware detected.\n");
>+ if (xe->info.has_prod_wa_only) {
should we annotate the WA themselves? I was thinking sometime ago that
we could have a configfs to force WAs in/out, so we have a quick path to
test a) dropping the WAs when they are not needed; and b) extending the
WA, with the same action, to a new platform.
This patch itself lgtm and if we decided to extend, it can be done on
top.
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
thanks
Lucas De Marchi
^ permalink raw reply [flat|nested] 16+ messages in thread* Re: [PATCH 1/2] drm/xe: Track pre-production workaround support
2025-11-20 18:07 ` Lucas De Marchi
@ 2025-11-20 18:35 ` Matt Roper
2025-11-20 19:13 ` Lucas De Marchi
0 siblings, 1 reply; 16+ messages in thread
From: Matt Roper @ 2025-11-20 18:35 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-xe
On Thu, Nov 20, 2025 at 12:07:45PM -0600, Lucas De Marchi wrote:
> On Wed, Nov 19, 2025 at 02:05:00PM -0800, Matt Roper wrote:
> > When we're initially enabling driver support for a new platform/IP, we
> > usually implement all workarounds documented in the WA database in the
> > driver. Many of those workarounds are restricted to early steppings
> > that only showed up in pre-production hardware (i.e., internal test
> > chips that are not available to the general public). Since the
> > workarounds for early, pre-production steppings tend to be some of the
> > ugliest and most complicated workarounds, we generally want to eliminate
> > them and simplify the code once the platform has launched and our
> > internal usage of those pre-production parts have been phased out.
> >
> > Let's add a flag to the device info that tracks which platforms we've
> > removed pre-production workarounds for so that we can print a warning
> > and taint if someone tries to load the driver on a pre-production part.
> > This will help our internal users understand the likely problems they'll
> > encounter if they try to load the driver on an old pre-production
> > device.
> >
> > The Xe behavior here is similar to what we've done for many years on
> > i915 (see intel_detect_preproduction_hw()), except that instead of
> > manually coding up ranges of device steppings that we believe to be
> > pre-production hardware, Xe will use the hardware's own production vs
> > pre-production fusing status, which we can read from the FUSE2 register.
> > This fuse didn't exist on older Intel hardware, but should be present on
> > all platforms supported by the Xe driver.
>
> another difference it seems is that intel_detect_preproduction_hw() is
> executed for any platform, there isn't a flag... but maybe that's
> because the platform/revid check is only added on the flag day.
>
> > Going forward, let's set the expectation that we'll start looking into
> > removing pre-production workarounds for a platform around the time that
> > platforms of the next major IP stepping are having their force_probe
> > requirement lifted. This timing is just a rough guideline; there may be
> > cases where some instances of pre-production parts are still being
> > actively used in CI farms, internal device pools, etc. and we'll need to
> > wait a bit longer for those to be swapped out.
> >
> > Bspec: 78271, 52544
> > Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
> > ---
> > drivers/gpu/drm/xe/regs/xe_gt_regs.h | 3 ++
> > drivers/gpu/drm/xe/xe_device.c | 48 ++++++++++++++++++++++++++++
> > drivers/gpu/drm/xe/xe_device_types.h | 2 ++
> > drivers/gpu/drm/xe/xe_pci.c | 1 +
> > drivers/gpu/drm/xe/xe_pci_types.h | 1 +
> > 5 files changed, 55 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> > index 917a088c28f2..93643da57428 100644
> > --- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> > +++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> > @@ -227,6 +227,9 @@
> >
> > #define MIRROR_FUSE1 XE_REG(0x911c)
> >
> > +#define FUSE2 XE_REG(0x9120)
> > +#define PRODUCTION_HW REG_BIT(2)
> > +
> > #define MIRROR_L3BANK_ENABLE XE_REG(0x9130)
> > #define XE3_L3BANK_ENABLE REG_GENMASK(31, 0)
> >
> > diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
> > index 1197f914ef77..ed758888cfa1 100644
> > --- a/drivers/gpu/drm/xe/xe_device.c
> > +++ b/drivers/gpu/drm/xe/xe_device.c
> > @@ -797,6 +797,52 @@ static int probe_has_flat_ccs(struct xe_device *xe)
> > return 0;
> > }
> >
> > +/*
> > + * Detect if the driver is being run on pre-production hardware. We don't
> > + * keep workarounds for pre-production hardware long term, so print an
> > + * error and add taint if we're being loaded on a pre-production platform
> > + * for which the pre-prod workarounds have already been removed.
> > + *
> > + * The general policy is that we'll remove any workarounds that only apply to
> > + * pre-production hardware around the time force_probe restrictions are lifted
> > + * for a platform of the next major IP generation (for example, Xe2 pre-prod
> > + * workarounds should be removed around the time the first Xe3 platforms have
> > + * force_probe lifted).
> > + */
> > +static void detect_preproduction_hw(struct xe_device *xe)
> > +{
> > + struct xe_gt *gt;
> > + int id;
> > +
> > + /*
> > + * The "SW_CAP" fuse contains a bit indicating whether the device is a
> > + * production or pre-production device. This fuse is reflected through
> > + * the GT "FUSE2" register, even though the contents of the fuse are
> > + * not GT-specific. Every GT's reflection of this fuse should show the
> > + * same value, so we'll just use the first available GT for lookup.
> > + */
> > + for_each_gt(gt, xe, id)
> > + break;
> > +
> > + if (!gt)
> > + return;
> > +
> > + CLASS(xe_force_wake, fw_ref)(gt_to_fw(gt), XE_FW_GT);
> > + if (xe_force_wake_ref_has_domain(fw_ref.domains, XE_FW_GT)) {
> > + xe_gt_err(gt, "Forcewake failure; cannot determine production/pre-production hw status.\n");
> > + return;
> > + }
> > +
> > + if (xe_mmio_read32(>->mmio, FUSE2) & PRODUCTION_HW)
> > + return;
> > +
> > + xe_info(xe, "Pre-production hardware detected.\n");
> > + if (xe->info.has_prod_wa_only) {
>
> should we annotate the WA themselves? I was thinking sometime ago that
> we could have a configfs to force WAs in/out, so we have a quick path to
> test a) dropping the WAs when they are not needed; and b) extending the
> WA, with the same action, to a new platform.
I think the main problem here is that during early development when
we're first implementing the workarounds and sending them upstream we
don't know yet which steppings are going to be production vs
pre-production. Some (rare) platforms wind up having production parts
using A0, others have several steppings before being used in production.
The decision and documentation that "all production parts will have XX
stepping or later" is something that comes a bit too late for us.
We could go back and annotate them later once the information about
production steppings does get documented, but at that point we're
usually around the point where we're just ready to drop them anyway so
I'm not sure it's really worth it.
>
> This patch itself lgtm and if we decided to extend, it can be done on
> top.
>
> Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Jani suggested that I invert the device flag to indicate that a platform
*does* still has pre-prod workarounds, and then we drop the flag later.
What are your thoughts on that suggestion?
Matt
>
> thanks
> Lucas De Marchi
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 16+ messages in thread* Re: [PATCH 1/2] drm/xe: Track pre-production workaround support
2025-11-20 18:35 ` Matt Roper
@ 2025-11-20 19:13 ` Lucas De Marchi
0 siblings, 0 replies; 16+ messages in thread
From: Lucas De Marchi @ 2025-11-20 19:13 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
On Thu, Nov 20, 2025 at 10:35:59AM -0800, Matt Roper wrote:
>> This patch itself lgtm and if we decided to extend, it can be done on
>> top.
>>
>> Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
>
>Jani suggested that I invert the device flag to indicate that a platform
>*does* still has pre-prod workarounds, and then we drop the flag later.
>What are your thoughts on that suggestion?
I think it's good so it matches the require_force_probe semantics.
Lucas De Marchi
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✓ CI.KUnit: success for series starting with [v2,1/2] drm/xe: Track pre-production workaround support (rev2)
2025-11-19 22:05 [PATCH 1/2] drm/xe: Track pre-production workaround support Matt Roper
` (6 preceding siblings ...)
2025-11-20 18:07 ` Lucas De Marchi
@ 2025-11-20 20:31 ` Patchwork
2025-11-20 21:14 ` ✗ Xe.CI.BAT: failure " Patchwork
2025-11-21 2:13 ` ✗ Xe.CI.Full: " Patchwork
9 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-11-20 20:31 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
== Series Details ==
Series: series starting with [v2,1/2] drm/xe: Track pre-production workaround support (rev2)
URL : https://patchwork.freedesktop.org/series/157804/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[20:30:28] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[20:30:32] 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
[20:31:03] Starting KUnit Kernel (1/1)...
[20:31:03] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[20:31:03] ================== guc_buf (11 subtests) ===================
[20:31:03] [PASSED] test_smallest
[20:31:03] [PASSED] test_largest
[20:31:03] [PASSED] test_granular
[20:31:03] [PASSED] test_unique
[20:31:03] [PASSED] test_overlap
[20:31:03] [PASSED] test_reusable
[20:31:03] [PASSED] test_too_big
[20:31:03] [PASSED] test_flush
[20:31:03] [PASSED] test_lookup
[20:31:03] [PASSED] test_data
[20:31:03] [PASSED] test_class
[20:31:03] ===================== [PASSED] guc_buf =====================
[20:31:03] =================== guc_dbm (7 subtests) ===================
[20:31:03] [PASSED] test_empty
[20:31:03] [PASSED] test_default
[20:31:03] ======================== test_size ========================
[20:31:03] [PASSED] 4
[20:31:03] [PASSED] 8
[20:31:03] [PASSED] 32
[20:31:03] [PASSED] 256
[20:31:03] ==================== [PASSED] test_size ====================
[20:31:03] ======================= test_reuse ========================
[20:31:03] [PASSED] 4
[20:31:03] [PASSED] 8
[20:31:03] [PASSED] 32
[20:31:03] [PASSED] 256
[20:31:03] =================== [PASSED] test_reuse ====================
[20:31:03] =================== test_range_overlap ====================
[20:31:03] [PASSED] 4
[20:31:03] [PASSED] 8
[20:31:03] [PASSED] 32
[20:31:03] [PASSED] 256
[20:31:03] =============== [PASSED] test_range_overlap ================
[20:31:03] =================== test_range_compact ====================
[20:31:03] [PASSED] 4
[20:31:03] [PASSED] 8
[20:31:03] [PASSED] 32
[20:31:03] [PASSED] 256
[20:31:03] =============== [PASSED] test_range_compact ================
[20:31:03] ==================== test_range_spare =====================
[20:31:03] [PASSED] 4
[20:31:03] [PASSED] 8
[20:31:03] [PASSED] 32
[20:31:03] [PASSED] 256
[20:31:03] ================ [PASSED] test_range_spare =================
[20:31:03] ===================== [PASSED] guc_dbm =====================
[20:31:03] =================== guc_idm (6 subtests) ===================
[20:31:03] [PASSED] bad_init
[20:31:03] [PASSED] no_init
[20:31:03] [PASSED] init_fini
[20:31:03] [PASSED] check_used
[20:31:03] [PASSED] check_quota
[20:31:03] [PASSED] check_all
[20:31:03] ===================== [PASSED] guc_idm =====================
[20:31:03] ================== no_relay (3 subtests) ===================
[20:31:03] [PASSED] xe_drops_guc2pf_if_not_ready
[20:31:03] [PASSED] xe_drops_guc2vf_if_not_ready
[20:31:03] [PASSED] xe_rejects_send_if_not_ready
[20:31:03] ==================== [PASSED] no_relay =====================
[20:31:03] ================== pf_relay (14 subtests) ==================
[20:31:03] [PASSED] pf_rejects_guc2pf_too_short
[20:31:03] [PASSED] pf_rejects_guc2pf_too_long
[20:31:03] [PASSED] pf_rejects_guc2pf_no_payload
[20:31:03] [PASSED] pf_fails_no_payload
[20:31:03] [PASSED] pf_fails_bad_origin
[20:31:03] [PASSED] pf_fails_bad_type
[20:31:03] [PASSED] pf_txn_reports_error
[20:31:03] [PASSED] pf_txn_sends_pf2guc
[20:31:03] [PASSED] pf_sends_pf2guc
[20:31:03] [SKIPPED] pf_loopback_nop
[20:31:03] [SKIPPED] pf_loopback_echo
[20:31:03] [SKIPPED] pf_loopback_fail
[20:31:03] [SKIPPED] pf_loopback_busy
[20:31:03] [SKIPPED] pf_loopback_retry
[20:31:03] ==================== [PASSED] pf_relay =====================
[20:31:03] ================== vf_relay (3 subtests) ===================
[20:31:03] [PASSED] vf_rejects_guc2vf_too_short
[20:31:03] [PASSED] vf_rejects_guc2vf_too_long
[20:31:03] [PASSED] vf_rejects_guc2vf_no_payload
[20:31:03] ==================== [PASSED] vf_relay =====================
[20:31:03] ================ pf_gt_config (6 subtests) =================
[20:31:03] [PASSED] fair_contexts_1vf
[20:31:03] [PASSED] fair_doorbells_1vf
[20:31:03] [PASSED] fair_ggtt_1vf
[20:31:03] ====================== fair_contexts ======================
[20:31:03] [PASSED] 1 VF
[20:31:03] [PASSED] 2 VFs
[20:31:03] [PASSED] 3 VFs
[20:31:03] [PASSED] 4 VFs
[20:31:03] [PASSED] 5 VFs
[20:31:03] [PASSED] 6 VFs
[20:31:03] [PASSED] 7 VFs
[20:31:03] [PASSED] 8 VFs
[20:31:03] [PASSED] 9 VFs
[20:31:03] [PASSED] 10 VFs
[20:31:03] [PASSED] 11 VFs
[20:31:03] [PASSED] 12 VFs
[20:31:03] [PASSED] 13 VFs
[20:31:03] [PASSED] 14 VFs
[20:31:03] [PASSED] 15 VFs
[20:31:03] [PASSED] 16 VFs
[20:31:03] [PASSED] 17 VFs
[20:31:03] [PASSED] 18 VFs
[20:31:03] [PASSED] 19 VFs
[20:31:03] [PASSED] 20 VFs
[20:31:03] [PASSED] 21 VFs
[20:31:03] [PASSED] 22 VFs
[20:31:03] [PASSED] 23 VFs
[20:31:03] [PASSED] 24 VFs
[20:31:03] [PASSED] 25 VFs
[20:31:03] [PASSED] 26 VFs
[20:31:03] [PASSED] 27 VFs
[20:31:03] [PASSED] 28 VFs
[20:31:03] [PASSED] 29 VFs
[20:31:03] [PASSED] 30 VFs
[20:31:03] [PASSED] 31 VFs
[20:31:03] [PASSED] 32 VFs
[20:31:03] [PASSED] 33 VFs
[20:31:03] [PASSED] 34 VFs
[20:31:03] [PASSED] 35 VFs
[20:31:03] [PASSED] 36 VFs
[20:31:03] [PASSED] 37 VFs
[20:31:03] [PASSED] 38 VFs
[20:31:03] [PASSED] 39 VFs
[20:31:03] [PASSED] 40 VFs
[20:31:03] [PASSED] 41 VFs
[20:31:03] [PASSED] 42 VFs
[20:31:03] [PASSED] 43 VFs
[20:31:03] [PASSED] 44 VFs
[20:31:03] [PASSED] 45 VFs
[20:31:03] [PASSED] 46 VFs
[20:31:03] [PASSED] 47 VFs
[20:31:03] [PASSED] 48 VFs
[20:31:03] [PASSED] 49 VFs
[20:31:03] [PASSED] 50 VFs
[20:31:03] [PASSED] 51 VFs
[20:31:03] [PASSED] 52 VFs
[20:31:03] [PASSED] 53 VFs
[20:31:03] [PASSED] 54 VFs
[20:31:03] [PASSED] 55 VFs
[20:31:03] [PASSED] 56 VFs
[20:31:03] [PASSED] 57 VFs
[20:31:03] [PASSED] 58 VFs
[20:31:03] [PASSED] 59 VFs
[20:31:03] [PASSED] 60 VFs
[20:31:03] [PASSED] 61 VFs
[20:31:03] [PASSED] 62 VFs
[20:31:03] [PASSED] 63 VFs
[20:31:03] ================== [PASSED] fair_contexts ==================
[20:31:03] ===================== fair_doorbells ======================
[20:31:03] [PASSED] 1 VF
[20:31:03] [PASSED] 2 VFs
[20:31:03] [PASSED] 3 VFs
[20:31:03] [PASSED] 4 VFs
[20:31:03] [PASSED] 5 VFs
[20:31:03] [PASSED] 6 VFs
[20:31:03] [PASSED] 7 VFs
[20:31:03] [PASSED] 8 VFs
[20:31:03] [PASSED] 9 VFs
[20:31:03] [PASSED] 10 VFs
[20:31:03] [PASSED] 11 VFs
[20:31:03] [PASSED] 12 VFs
[20:31:03] [PASSED] 13 VFs
[20:31:03] [PASSED] 14 VFs
[20:31:03] [PASSED] 15 VFs
[20:31:03] [PASSED] 16 VFs
[20:31:03] [PASSED] 17 VFs
[20:31:03] [PASSED] 18 VFs
[20:31:03] [PASSED] 19 VFs
[20:31:03] [PASSED] 20 VFs
[20:31:03] [PASSED] 21 VFs
[20:31:03] [PASSED] 22 VFs
[20:31:03] [PASSED] 23 VFs
[20:31:03] [PASSED] 24 VFs
[20:31:03] [PASSED] 25 VFs
[20:31:03] [PASSED] 26 VFs
[20:31:03] [PASSED] 27 VFs
[20:31:03] [PASSED] 28 VFs
[20:31:03] [PASSED] 29 VFs
[20:31:03] [PASSED] 30 VFs
[20:31:03] [PASSED] 31 VFs
[20:31:03] [PASSED] 32 VFs
[20:31:03] [PASSED] 33 VFs
[20:31:03] [PASSED] 34 VFs
[20:31:03] [PASSED] 35 VFs
[20:31:03] [PASSED] 36 VFs
[20:31:03] [PASSED] 37 VFs
[20:31:03] [PASSED] 38 VFs
[20:31:03] [PASSED] 39 VFs
[20:31:03] [PASSED] 40 VFs
[20:31:03] [PASSED] 41 VFs
[20:31:03] [PASSED] 42 VFs
[20:31:03] [PASSED] 43 VFs
[20:31:03] [PASSED] 44 VFs
[20:31:03] [PASSED] 45 VFs
[20:31:03] [PASSED] 46 VFs
[20:31:03] [PASSED] 47 VFs
[20:31:03] [PASSED] 48 VFs
[20:31:03] [PASSED] 49 VFs
[20:31:03] [PASSED] 50 VFs
[20:31:03] [PASSED] 51 VFs
[20:31:03] [PASSED] 52 VFs
[20:31:03] [PASSED] 53 VFs
[20:31:03] [PASSED] 54 VFs
[20:31:03] [PASSED] 55 VFs
[20:31:03] [PASSED] 56 VFs
[20:31:03] [PASSED] 57 VFs
[20:31:03] [PASSED] 58 VFs
[20:31:03] [PASSED] 59 VFs
[20:31:03] [PASSED] 60 VFs
[20:31:03] [PASSED] 61 VFs
[20:31:03] [PASSED] 62 VFs
[20:31:03] [PASSED] 63 VFs
[20:31:03] ================= [PASSED] fair_doorbells ==================
[20:31:03] ======================== fair_ggtt ========================
[20:31:03] [PASSED] 1 VF
[20:31:03] [PASSED] 2 VFs
[20:31:03] [PASSED] 3 VFs
[20:31:03] [PASSED] 4 VFs
[20:31:03] [PASSED] 5 VFs
[20:31:03] [PASSED] 6 VFs
[20:31:03] [PASSED] 7 VFs
[20:31:03] [PASSED] 8 VFs
[20:31:03] [PASSED] 9 VFs
[20:31:03] [PASSED] 10 VFs
[20:31:03] [PASSED] 11 VFs
[20:31:03] [PASSED] 12 VFs
[20:31:03] [PASSED] 13 VFs
[20:31:03] [PASSED] 14 VFs
[20:31:03] [PASSED] 15 VFs
[20:31:03] [PASSED] 16 VFs
[20:31:03] [PASSED] 17 VFs
[20:31:03] [PASSED] 18 VFs
[20:31:03] [PASSED] 19 VFs
[20:31:03] [PASSED] 20 VFs
[20:31:03] [PASSED] 21 VFs
[20:31:03] [PASSED] 22 VFs
[20:31:03] [PASSED] 23 VFs
[20:31:03] [PASSED] 24 VFs
[20:31:03] [PASSED] 25 VFs
[20:31:03] [PASSED] 26 VFs
[20:31:03] [PASSED] 27 VFs
[20:31:03] [PASSED] 28 VFs
[20:31:03] [PASSED] 29 VFs
[20:31:03] [PASSED] 30 VFs
[20:31:03] [PASSED] 31 VFs
[20:31:03] [PASSED] 32 VFs
[20:31:03] [PASSED] 33 VFs
[20:31:03] [PASSED] 34 VFs
[20:31:03] [PASSED] 35 VFs
[20:31:03] [PASSED] 36 VFs
[20:31:03] [PASSED] 37 VFs
[20:31:03] [PASSED] 38 VFs
[20:31:03] [PASSED] 39 VFs
[20:31:03] [PASSED] 40 VFs
[20:31:03] [PASSED] 41 VFs
[20:31:03] [PASSED] 42 VFs
[20:31:03] [PASSED] 43 VFs
[20:31:03] [PASSED] 44 VFs
[20:31:03] [PASSED] 45 VFs
[20:31:03] [PASSED] 46 VFs
[20:31:03] [PASSED] 47 VFs
[20:31:03] [PASSED] 48 VFs
[20:31:03] [PASSED] 49 VFs
[20:31:03] [PASSED] 50 VFs
[20:31:03] [PASSED] 51 VFs
[20:31:03] [PASSED] 52 VFs
[20:31:03] [PASSED] 53 VFs
[20:31:03] [PASSED] 54 VFs
[20:31:03] [PASSED] 55 VFs
[20:31:03] [PASSED] 56 VFs
[20:31:03] [PASSED] 57 VFs
[20:31:03] [PASSED] 58 VFs
[20:31:03] [PASSED] 59 VFs
[20:31:03] [PASSED] 60 VFs
[20:31:03] [PASSED] 61 VFs
[20:31:03] [PASSED] 62 VFs
[20:31:03] [PASSED] 63 VFs
[20:31:03] ==================== [PASSED] fair_ggtt ====================
[20:31:03] ================== [PASSED] pf_gt_config ===================
[20:31:03] ===================== lmtt (1 subtest) =====================
[20:31:03] ======================== test_ops =========================
[20:31:03] [PASSED] 2-level
[20:31:03] [PASSED] multi-level
[20:31:03] ==================== [PASSED] test_ops =====================
[20:31:03] ====================== [PASSED] lmtt =======================
[20:31:03] ================= pf_service (11 subtests) =================
[20:31:03] [PASSED] pf_negotiate_any
[20:31:03] [PASSED] pf_negotiate_base_match
[20:31:03] [PASSED] pf_negotiate_base_newer
[20:31:03] [PASSED] pf_negotiate_base_next
[20:31:03] [SKIPPED] pf_negotiate_base_older
[20:31:03] [PASSED] pf_negotiate_base_prev
[20:31:03] [PASSED] pf_negotiate_latest_match
[20:31:03] [PASSED] pf_negotiate_latest_newer
[20:31:03] [PASSED] pf_negotiate_latest_next
[20:31:03] [SKIPPED] pf_negotiate_latest_older
[20:31:03] [SKIPPED] pf_negotiate_latest_prev
[20:31:03] =================== [PASSED] pf_service ====================
[20:31:03] ================= xe_guc_g2g (2 subtests) ==================
[20:31:03] ============== xe_live_guc_g2g_kunit_default ==============
[20:31:03] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[20:31:03] ============== xe_live_guc_g2g_kunit_allmem ===============
[20:31:03] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[20:31:03] =================== [SKIPPED] xe_guc_g2g ===================
[20:31:03] =================== xe_mocs (2 subtests) ===================
[20:31:03] ================ xe_live_mocs_kernel_kunit ================
[20:31:03] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[20:31:03] ================ xe_live_mocs_reset_kunit =================
[20:31:03] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[20:31:03] ==================== [SKIPPED] xe_mocs =====================
[20:31:03] ================= xe_migrate (2 subtests) ==================
[20:31:03] ================= xe_migrate_sanity_kunit =================
[20:31:03] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[20:31:03] ================== xe_validate_ccs_kunit ==================
[20:31:03] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[20:31:03] =================== [SKIPPED] xe_migrate ===================
[20:31:03] ================== xe_dma_buf (1 subtest) ==================
[20:31:03] ==================== xe_dma_buf_kunit =====================
[20:31:03] ================ [SKIPPED] xe_dma_buf_kunit ================
[20:31:03] =================== [SKIPPED] xe_dma_buf ===================
[20:31:03] ================= xe_bo_shrink (1 subtest) =================
[20:31:03] =================== xe_bo_shrink_kunit ====================
[20:31:03] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[20:31:03] ================== [SKIPPED] xe_bo_shrink ==================
[20:31:03] ==================== xe_bo (2 subtests) ====================
[20:31:03] ================== xe_ccs_migrate_kunit ===================
[20:31:03] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[20:31:03] ==================== xe_bo_evict_kunit ====================
[20:31:03] =============== [SKIPPED] xe_bo_evict_kunit ================
[20:31:03] ===================== [SKIPPED] xe_bo ======================
[20:31:03] ==================== args (11 subtests) ====================
[20:31:03] [PASSED] count_args_test
[20:31:03] [PASSED] call_args_example
[20:31:03] [PASSED] call_args_test
[20:31:03] [PASSED] drop_first_arg_example
[20:31:03] [PASSED] drop_first_arg_test
[20:31:03] [PASSED] first_arg_example
[20:31:03] [PASSED] first_arg_test
[20:31:03] [PASSED] last_arg_example
[20:31:03] [PASSED] last_arg_test
[20:31:03] [PASSED] pick_arg_example
[20:31:03] [PASSED] sep_comma_example
[20:31:03] ====================== [PASSED] args =======================
[20:31:03] =================== xe_pci (3 subtests) ====================
[20:31:03] ==================== check_graphics_ip ====================
[20:31:03] [PASSED] 12.00 Xe_LP
[20:31:03] [PASSED] 12.10 Xe_LP+
[20:31:03] [PASSED] 12.55 Xe_HPG
[20:31:03] [PASSED] 12.60 Xe_HPC
[20:31:03] [PASSED] 12.70 Xe_LPG
[20:31:03] [PASSED] 12.71 Xe_LPG
[20:31:03] [PASSED] 12.74 Xe_LPG+
[20:31:03] [PASSED] 20.01 Xe2_HPG
[20:31:03] [PASSED] 20.02 Xe2_HPG
[20:31:03] [PASSED] 20.04 Xe2_LPG
[20:31:03] [PASSED] 30.00 Xe3_LPG
[20:31:03] [PASSED] 30.01 Xe3_LPG
[20:31:03] [PASSED] 30.03 Xe3_LPG
[20:31:03] [PASSED] 30.04 Xe3_LPG
[20:31:03] [PASSED] 30.05 Xe3_LPG
[20:31:03] [PASSED] 35.11 Xe3p_XPC
[20:31:03] ================ [PASSED] check_graphics_ip ================
[20:31:03] ===================== check_media_ip ======================
[20:31:03] [PASSED] 12.00 Xe_M
[20:31:03] [PASSED] 12.55 Xe_HPM
[20:31:03] [PASSED] 13.00 Xe_LPM+
[20:31:03] [PASSED] 13.01 Xe2_HPM
[20:31:03] [PASSED] 20.00 Xe2_LPM
[20:31:03] [PASSED] 30.00 Xe3_LPM
[20:31:03] [PASSED] 30.02 Xe3_LPM
[20:31:03] [PASSED] 35.00 Xe3p_LPM
[20:31:03] [PASSED] 35.03 Xe3p_HPM
[20:31:03] ================= [PASSED] check_media_ip ==================
[20:31:03] =================== check_platform_desc ===================
[20:31:03] [PASSED] 0x9A60 (TIGERLAKE)
[20:31:03] [PASSED] 0x9A68 (TIGERLAKE)
[20:31:03] [PASSED] 0x9A70 (TIGERLAKE)
[20:31:03] [PASSED] 0x9A40 (TIGERLAKE)
[20:31:03] [PASSED] 0x9A49 (TIGERLAKE)
[20:31:03] [PASSED] 0x9A59 (TIGERLAKE)
[20:31:03] [PASSED] 0x9A78 (TIGERLAKE)
[20:31:03] [PASSED] 0x9AC0 (TIGERLAKE)
[20:31:03] [PASSED] 0x9AC9 (TIGERLAKE)
[20:31:03] [PASSED] 0x9AD9 (TIGERLAKE)
[20:31:03] [PASSED] 0x9AF8 (TIGERLAKE)
[20:31:03] [PASSED] 0x4C80 (ROCKETLAKE)
[20:31:03] [PASSED] 0x4C8A (ROCKETLAKE)
[20:31:03] [PASSED] 0x4C8B (ROCKETLAKE)
[20:31:03] [PASSED] 0x4C8C (ROCKETLAKE)
[20:31:03] [PASSED] 0x4C90 (ROCKETLAKE)
[20:31:03] [PASSED] 0x4C9A (ROCKETLAKE)
[20:31:03] [PASSED] 0x4680 (ALDERLAKE_S)
[20:31:03] [PASSED] 0x4682 (ALDERLAKE_S)
[20:31:03] [PASSED] 0x4688 (ALDERLAKE_S)
[20:31:03] [PASSED] 0x468A (ALDERLAKE_S)
[20:31:03] [PASSED] 0x468B (ALDERLAKE_S)
[20:31:03] [PASSED] 0x4690 (ALDERLAKE_S)
[20:31:03] [PASSED] 0x4692 (ALDERLAKE_S)
[20:31:03] [PASSED] 0x4693 (ALDERLAKE_S)
[20:31:03] [PASSED] 0x46A0 (ALDERLAKE_P)
[20:31:03] [PASSED] 0x46A1 (ALDERLAKE_P)
[20:31:03] [PASSED] 0x46A2 (ALDERLAKE_P)
[20:31:03] [PASSED] 0x46A3 (ALDERLAKE_P)
[20:31:03] [PASSED] 0x46A6 (ALDERLAKE_P)
[20:31:03] [PASSED] 0x46A8 (ALDERLAKE_P)
[20:31:03] [PASSED] 0x46AA (ALDERLAKE_P)
[20:31:03] [PASSED] 0x462A (ALDERLAKE_P)
[20:31:03] [PASSED] 0x4626 (ALDERLAKE_P)
[20:31:03] [PASSED] 0x4628 (ALDERLAKE_P)
[20:31:03] [PASSED] 0x46B0 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[20:31:03] [PASSED] 0x46B1 (ALDERLAKE_P)
[20:31:03] [PASSED] 0x46B2 (ALDERLAKE_P)
[20:31:03] [PASSED] 0x46B3 (ALDERLAKE_P)
[20:31:03] [PASSED] 0x46C0 (ALDERLAKE_P)
[20:31:03] [PASSED] 0x46C1 (ALDERLAKE_P)
[20:31:03] [PASSED] 0x46C2 (ALDERLAKE_P)
[20:31:03] [PASSED] 0x46C3 (ALDERLAKE_P)
[20:31:03] [PASSED] 0x46D0 (ALDERLAKE_N)
[20:31:03] [PASSED] 0x46D1 (ALDERLAKE_N)
[20:31:03] [PASSED] 0x46D2 (ALDERLAKE_N)
[20:31:03] [PASSED] 0x46D3 (ALDERLAKE_N)
[20:31:03] [PASSED] 0x46D4 (ALDERLAKE_N)
[20:31:03] [PASSED] 0xA721 (ALDERLAKE_P)
[20:31:03] [PASSED] 0xA7A1 (ALDERLAKE_P)
[20:31:03] [PASSED] 0xA7A9 (ALDERLAKE_P)
[20:31:03] [PASSED] 0xA7AC (ALDERLAKE_P)
[20:31:03] [PASSED] 0xA7AD (ALDERLAKE_P)
[20:31:03] [PASSED] 0xA720 (ALDERLAKE_P)
[20:31:03] [PASSED] 0xA7A0 (ALDERLAKE_P)
[20:31:03] [PASSED] 0xA7A8 (ALDERLAKE_P)
[20:31:03] [PASSED] 0xA7AA (ALDERLAKE_P)
[20:31:03] [PASSED] 0xA7AB (ALDERLAKE_P)
[20:31:03] [PASSED] 0xA780 (ALDERLAKE_S)
[20:31:03] [PASSED] 0xA781 (ALDERLAKE_S)
[20:31:03] [PASSED] 0xA782 (ALDERLAKE_S)
[20:31:03] [PASSED] 0xA783 (ALDERLAKE_S)
[20:31:03] [PASSED] 0xA788 (ALDERLAKE_S)
[20:31:03] [PASSED] 0xA789 (ALDERLAKE_S)
[20:31:03] [PASSED] 0xA78A (ALDERLAKE_S)
[20:31:03] [PASSED] 0xA78B (ALDERLAKE_S)
[20:31:03] [PASSED] 0x4905 (DG1)
[20:31:03] [PASSED] 0x4906 (DG1)
[20:31:03] [PASSED] 0x4907 (DG1)
[20:31:03] [PASSED] 0x4908 (DG1)
[20:31:03] [PASSED] 0x4909 (DG1)
[20:31:03] [PASSED] 0x56C0 (DG2)
[20:31:03] [PASSED] 0x56C2 (DG2)
[20:31:03] [PASSED] 0x56C1 (DG2)
[20:31:03] [PASSED] 0x7D51 (METEORLAKE)
[20:31:03] [PASSED] 0x7DD1 (METEORLAKE)
[20:31:03] [PASSED] 0x7D41 (METEORLAKE)
[20:31:03] [PASSED] 0x7D67 (METEORLAKE)
[20:31:03] [PASSED] 0xB640 (METEORLAKE)
[20:31:03] [PASSED] 0x56A0 (DG2)
[20:31:03] [PASSED] 0x56A1 (DG2)
[20:31:03] [PASSED] 0x56A2 (DG2)
[20:31:03] [PASSED] 0x56BE (DG2)
[20:31:03] [PASSED] 0x56BF (DG2)
[20:31:03] [PASSED] 0x5690 (DG2)
[20:31:03] [PASSED] 0x5691 (DG2)
[20:31:03] [PASSED] 0x5692 (DG2)
[20:31:03] [PASSED] 0x56A5 (DG2)
[20:31:03] [PASSED] 0x56A6 (DG2)
[20:31:03] [PASSED] 0x56B0 (DG2)
[20:31:03] [PASSED] 0x56B1 (DG2)
[20:31:03] [PASSED] 0x56BA (DG2)
[20:31:03] [PASSED] 0x56BB (DG2)
[20:31:03] [PASSED] 0x56BC (DG2)
[20:31:03] [PASSED] 0x56BD (DG2)
[20:31:03] [PASSED] 0x5693 (DG2)
[20:31:03] [PASSED] 0x5694 (DG2)
[20:31:03] [PASSED] 0x5695 (DG2)
[20:31:03] [PASSED] 0x56A3 (DG2)
[20:31:03] [PASSED] 0x56A4 (DG2)
[20:31:03] [PASSED] 0x56B2 (DG2)
[20:31:03] [PASSED] 0x56B3 (DG2)
[20:31:03] [PASSED] 0x5696 (DG2)
[20:31:03] [PASSED] 0x5697 (DG2)
[20:31:03] [PASSED] 0xB69 (PVC)
[20:31:03] [PASSED] 0xB6E (PVC)
[20:31:03] [PASSED] 0xBD4 (PVC)
[20:31:03] [PASSED] 0xBD5 (PVC)
[20:31:03] [PASSED] 0xBD6 (PVC)
[20:31:03] [PASSED] 0xBD7 (PVC)
[20:31:03] [PASSED] 0xBD8 (PVC)
[20:31:03] [PASSED] 0xBD9 (PVC)
[20:31:03] [PASSED] 0xBDA (PVC)
[20:31:03] [PASSED] 0xBDB (PVC)
[20:31:03] [PASSED] 0xBE0 (PVC)
[20:31:03] [PASSED] 0xBE1 (PVC)
[20:31:03] [PASSED] 0xBE5 (PVC)
[20:31:03] [PASSED] 0x7D40 (METEORLAKE)
[20:31:03] [PASSED] 0x7D45 (METEORLAKE)
[20:31:03] [PASSED] 0x7D55 (METEORLAKE)
[20:31:03] [PASSED] 0x7D60 (METEORLAKE)
[20:31:03] [PASSED] 0x7DD5 (METEORLAKE)
[20:31:03] [PASSED] 0x6420 (LUNARLAKE)
[20:31:03] [PASSED] 0x64A0 (LUNARLAKE)
[20:31:03] [PASSED] 0x64B0 (LUNARLAKE)
[20:31:03] [PASSED] 0xE202 (BATTLEMAGE)
[20:31:03] [PASSED] 0xE209 (BATTLEMAGE)
[20:31:03] [PASSED] 0xE20B (BATTLEMAGE)
[20:31:03] [PASSED] 0xE20C (BATTLEMAGE)
[20:31:03] [PASSED] 0xE20D (BATTLEMAGE)
[20:31:03] [PASSED] 0xE210 (BATTLEMAGE)
[20:31:03] [PASSED] 0xE211 (BATTLEMAGE)
[20:31:03] [PASSED] 0xE212 (BATTLEMAGE)
[20:31:03] [PASSED] 0xE216 (BATTLEMAGE)
[20:31:03] [PASSED] 0xE220 (BATTLEMAGE)
[20:31:03] [PASSED] 0xE221 (BATTLEMAGE)
[20:31:03] [PASSED] 0xE222 (BATTLEMAGE)
[20:31:03] [PASSED] 0xE223 (BATTLEMAGE)
[20:31:03] [PASSED] 0xB080 (PANTHERLAKE)
[20:31:03] [PASSED] 0xB081 (PANTHERLAKE)
[20:31:03] [PASSED] 0xB082 (PANTHERLAKE)
[20:31:03] [PASSED] 0xB083 (PANTHERLAKE)
[20:31:03] [PASSED] 0xB084 (PANTHERLAKE)
[20:31:03] [PASSED] 0xB085 (PANTHERLAKE)
[20:31:03] [PASSED] 0xB086 (PANTHERLAKE)
[20:31:03] [PASSED] 0xB087 (PANTHERLAKE)
[20:31:03] [PASSED] 0xB08F (PANTHERLAKE)
[20:31:03] [PASSED] 0xB090 (PANTHERLAKE)
[20:31:03] [PASSED] 0xB0A0 (PANTHERLAKE)
[20:31:03] [PASSED] 0xB0B0 (PANTHERLAKE)
[20:31:03] [PASSED] 0xD740 (NOVALAKE_S)
[20:31:03] [PASSED] 0xD741 (NOVALAKE_S)
[20:31:03] [PASSED] 0xD742 (NOVALAKE_S)
[20:31:03] [PASSED] 0xD743 (NOVALAKE_S)
[20:31:03] [PASSED] 0xD744 (NOVALAKE_S)
[20:31:03] [PASSED] 0xD745 (NOVALAKE_S)
[20:31:03] [PASSED] 0x674C (CRESCENTISLAND)
[20:31:03] [PASSED] 0xFD80 (PANTHERLAKE)
[20:31:03] [PASSED] 0xFD81 (PANTHERLAKE)
[20:31:03] =============== [PASSED] check_platform_desc ===============
[20:31:03] ===================== [PASSED] xe_pci ======================
[20:31:03] =================== xe_rtp (2 subtests) ====================
[20:31:03] =============== xe_rtp_process_to_sr_tests ================
[20:31:03] [PASSED] coalesce-same-reg
[20:31:03] [PASSED] no-match-no-add
[20:31:03] [PASSED] match-or
[20:31:03] [PASSED] match-or-xfail
[20:31:03] [PASSED] no-match-no-add-multiple-rules
[20:31:03] [PASSED] two-regs-two-entries
[20:31:03] [PASSED] clr-one-set-other
[20:31:03] [PASSED] set-field
[20:31:03] [PASSED] conflict-duplicate
[20:31:03] [PASSED] conflict-not-disjoint
[20:31:03] [PASSED] conflict-reg-type
[20:31:03] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[20:31:03] ================== xe_rtp_process_tests ===================
[20:31:03] [PASSED] active1
[20:31:03] [PASSED] active2
[20:31:03] [PASSED] active-inactive
[20:31:03] [PASSED] inactive-active
[20:31:03] [PASSED] inactive-1st_or_active-inactive
[20:31:03] [PASSED] inactive-2nd_or_active-inactive
[20:31:03] [PASSED] inactive-last_or_active-inactive
[20:31:03] [PASSED] inactive-no_or_active-inactive
[20:31:03] ============== [PASSED] xe_rtp_process_tests ===============
[20:31:03] ===================== [PASSED] xe_rtp ======================
[20:31:03] ==================== xe_wa (1 subtest) =====================
[20:31:03] ======================== xe_wa_gt =========================
[20:31:03] [PASSED] TIGERLAKE B0
[20:31:03] [PASSED] DG1 A0
[20:31:03] [PASSED] DG1 B0
[20:31:03] [PASSED] ALDERLAKE_S A0
[20:31:03] [PASSED] ALDERLAKE_S B0
[20:31:03] [PASSED] ALDERLAKE_S C0
[20:31:03] [PASSED] ALDERLAKE_S D0
[20:31:03] [PASSED] ALDERLAKE_P A0
[20:31:03] [PASSED] ALDERLAKE_P B0
[20:31:03] [PASSED] ALDERLAKE_P C0
[20:31:03] [PASSED] ALDERLAKE_S RPLS D0
[20:31:03] [PASSED] ALDERLAKE_P RPLU E0
[20:31:03] [PASSED] DG2 G10 C0
[20:31:03] [PASSED] DG2 G11 B1
[20:31:03] [PASSED] DG2 G12 A1
[20:31:03] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[20:31:03] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[20:31:03] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[20:31:03] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[20:31:03] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[20:31:03] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[20:31:03] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[20:31:03] ==================== [PASSED] xe_wa_gt =====================
[20:31:03] ====================== [PASSED] xe_wa ======================
[20:31:03] ============================================================
[20:31:03] Testing complete. Ran 510 tests: passed: 492, skipped: 18
[20:31:03] Elapsed time: 35.188s total, 4.286s configuring, 30.435s building, 0.451s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[20:31:03] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[20:31:05] 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
[20:31:30] Starting KUnit Kernel (1/1)...
[20:31:30] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[20:31:30] ============ drm_test_pick_cmdline (2 subtests) ============
[20:31:30] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[20:31:30] =============== drm_test_pick_cmdline_named ===============
[20:31:30] [PASSED] NTSC
[20:31:30] [PASSED] NTSC-J
[20:31:30] [PASSED] PAL
[20:31:30] [PASSED] PAL-M
[20:31:30] =========== [PASSED] drm_test_pick_cmdline_named ===========
[20:31:30] ============== [PASSED] drm_test_pick_cmdline ==============
[20:31:30] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[20:31:30] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[20:31:30] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[20:31:30] =========== drm_validate_clone_mode (2 subtests) ===========
[20:31:30] ============== drm_test_check_in_clone_mode ===============
[20:31:30] [PASSED] in_clone_mode
[20:31:30] [PASSED] not_in_clone_mode
[20:31:30] ========== [PASSED] drm_test_check_in_clone_mode ===========
[20:31:30] =============== drm_test_check_valid_clones ===============
[20:31:30] [PASSED] not_in_clone_mode
[20:31:30] [PASSED] valid_clone
[20:31:30] [PASSED] invalid_clone
[20:31:30] =========== [PASSED] drm_test_check_valid_clones ===========
[20:31:30] ============= [PASSED] drm_validate_clone_mode =============
[20:31:30] ============= drm_validate_modeset (1 subtest) =============
[20:31:30] [PASSED] drm_test_check_connector_changed_modeset
[20:31:30] ============== [PASSED] drm_validate_modeset ===============
[20:31:30] ====== drm_test_bridge_get_current_state (2 subtests) ======
[20:31:30] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[20:31:30] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[20:31:30] ======== [PASSED] drm_test_bridge_get_current_state ========
[20:31:30] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[20:31:30] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[20:31:30] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[20:31:30] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[20:31:30] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[20:31:30] ============== drm_bridge_alloc (2 subtests) ===============
[20:31:30] [PASSED] drm_test_drm_bridge_alloc_basic
[20:31:30] [PASSED] drm_test_drm_bridge_alloc_get_put
[20:31:30] ================ [PASSED] drm_bridge_alloc =================
[20:31:30] ================== drm_buddy (8 subtests) ==================
[20:31:30] [PASSED] drm_test_buddy_alloc_limit
[20:31:30] [PASSED] drm_test_buddy_alloc_optimistic
[20:31:30] [PASSED] drm_test_buddy_alloc_pessimistic
[20:31:30] [PASSED] drm_test_buddy_alloc_pathological
[20:31:30] [PASSED] drm_test_buddy_alloc_contiguous
[20:31:30] [PASSED] drm_test_buddy_alloc_clear
[20:31:30] [PASSED] drm_test_buddy_alloc_range_bias
[20:31:30] [PASSED] drm_test_buddy_fragmentation_performance
[20:31:30] ==================== [PASSED] drm_buddy ====================
[20:31:30] ============= drm_cmdline_parser (40 subtests) =============
[20:31:30] [PASSED] drm_test_cmdline_force_d_only
[20:31:30] [PASSED] drm_test_cmdline_force_D_only_dvi
[20:31:30] [PASSED] drm_test_cmdline_force_D_only_hdmi
[20:31:30] [PASSED] drm_test_cmdline_force_D_only_not_digital
[20:31:30] [PASSED] drm_test_cmdline_force_e_only
[20:31:30] [PASSED] drm_test_cmdline_res
[20:31:30] [PASSED] drm_test_cmdline_res_vesa
[20:31:30] [PASSED] drm_test_cmdline_res_vesa_rblank
[20:31:30] [PASSED] drm_test_cmdline_res_rblank
[20:31:30] [PASSED] drm_test_cmdline_res_bpp
[20:31:30] [PASSED] drm_test_cmdline_res_refresh
[20:31:30] [PASSED] drm_test_cmdline_res_bpp_refresh
[20:31:30] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[20:31:30] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[20:31:30] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[20:31:30] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[20:31:30] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[20:31:30] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[20:31:30] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[20:31:30] [PASSED] drm_test_cmdline_res_margins_force_on
[20:31:30] [PASSED] drm_test_cmdline_res_vesa_margins
[20:31:30] [PASSED] drm_test_cmdline_name
[20:31:30] [PASSED] drm_test_cmdline_name_bpp
[20:31:30] [PASSED] drm_test_cmdline_name_option
[20:31:30] [PASSED] drm_test_cmdline_name_bpp_option
[20:31:30] [PASSED] drm_test_cmdline_rotate_0
[20:31:30] [PASSED] drm_test_cmdline_rotate_90
[20:31:30] [PASSED] drm_test_cmdline_rotate_180
[20:31:30] [PASSED] drm_test_cmdline_rotate_270
[20:31:30] [PASSED] drm_test_cmdline_hmirror
[20:31:30] [PASSED] drm_test_cmdline_vmirror
[20:31:30] [PASSED] drm_test_cmdline_margin_options
[20:31:30] [PASSED] drm_test_cmdline_multiple_options
[20:31:30] [PASSED] drm_test_cmdline_bpp_extra_and_option
[20:31:30] [PASSED] drm_test_cmdline_extra_and_option
[20:31:30] [PASSED] drm_test_cmdline_freestanding_options
[20:31:30] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[20:31:30] [PASSED] drm_test_cmdline_panel_orientation
[20:31:30] ================ drm_test_cmdline_invalid =================
[20:31:30] [PASSED] margin_only
[20:31:30] [PASSED] interlace_only
[20:31:30] [PASSED] res_missing_x
[20:31:30] [PASSED] res_missing_y
[20:31:30] [PASSED] res_bad_y
[20:31:30] [PASSED] res_missing_y_bpp
[20:31:30] [PASSED] res_bad_bpp
[20:31:30] [PASSED] res_bad_refresh
[20:31:30] [PASSED] res_bpp_refresh_force_on_off
[20:31:30] [PASSED] res_invalid_mode
[20:31:30] [PASSED] res_bpp_wrong_place_mode
[20:31:30] [PASSED] name_bpp_refresh
[20:31:30] [PASSED] name_refresh
[20:31:30] [PASSED] name_refresh_wrong_mode
[20:31:30] [PASSED] name_refresh_invalid_mode
[20:31:30] [PASSED] rotate_multiple
[20:31:30] [PASSED] rotate_invalid_val
[20:31:30] [PASSED] rotate_truncated
[20:31:30] [PASSED] invalid_option
[20:31:30] [PASSED] invalid_tv_option
[20:31:30] [PASSED] truncated_tv_option
[20:31:30] ============ [PASSED] drm_test_cmdline_invalid =============
[20:31:30] =============== drm_test_cmdline_tv_options ===============
[20:31:30] [PASSED] NTSC
[20:31:30] [PASSED] NTSC_443
[20:31:30] [PASSED] NTSC_J
[20:31:30] [PASSED] PAL
[20:31:30] [PASSED] PAL_M
[20:31:30] [PASSED] PAL_N
[20:31:30] [PASSED] SECAM
[20:31:30] [PASSED] MONO_525
[20:31:30] [PASSED] MONO_625
[20:31:30] =========== [PASSED] drm_test_cmdline_tv_options ===========
[20:31:30] =============== [PASSED] drm_cmdline_parser ================
[20:31:30] ========== drmm_connector_hdmi_init (20 subtests) ==========
[20:31:30] [PASSED] drm_test_connector_hdmi_init_valid
[20:31:30] [PASSED] drm_test_connector_hdmi_init_bpc_8
[20:31:30] [PASSED] drm_test_connector_hdmi_init_bpc_10
[20:31:30] [PASSED] drm_test_connector_hdmi_init_bpc_12
[20:31:30] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[20:31:30] [PASSED] drm_test_connector_hdmi_init_bpc_null
[20:31:30] [PASSED] drm_test_connector_hdmi_init_formats_empty
[20:31:30] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[20:31:30] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[20:31:30] [PASSED] supported_formats=0x9 yuv420_allowed=1
[20:31:30] [PASSED] supported_formats=0x9 yuv420_allowed=0
[20:31:30] [PASSED] supported_formats=0x3 yuv420_allowed=1
[20:31:30] [PASSED] supported_formats=0x3 yuv420_allowed=0
[20:31:30] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[20:31:30] [PASSED] drm_test_connector_hdmi_init_null_ddc
[20:31:30] [PASSED] drm_test_connector_hdmi_init_null_product
[20:31:30] [PASSED] drm_test_connector_hdmi_init_null_vendor
[20:31:30] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[20:31:30] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[20:31:30] [PASSED] drm_test_connector_hdmi_init_product_valid
[20:31:30] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[20:31:30] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[20:31:30] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[20:31:30] ========= drm_test_connector_hdmi_init_type_valid =========
[20:31:30] [PASSED] HDMI-A
[20:31:30] [PASSED] HDMI-B
[20:31:30] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[20:31:30] ======== drm_test_connector_hdmi_init_type_invalid ========
[20:31:30] [PASSED] Unknown
[20:31:30] [PASSED] VGA
[20:31:30] [PASSED] DVI-I
[20:31:30] [PASSED] DVI-D
[20:31:30] [PASSED] DVI-A
[20:31:30] [PASSED] Composite
[20:31:30] [PASSED] SVIDEO
[20:31:30] [PASSED] LVDS
[20:31:30] [PASSED] Component
[20:31:30] [PASSED] DIN
[20:31:30] [PASSED] DP
[20:31:30] [PASSED] TV
[20:31:30] [PASSED] eDP
[20:31:30] [PASSED] Virtual
[20:31:30] [PASSED] DSI
[20:31:30] [PASSED] DPI
[20:31:30] [PASSED] Writeback
[20:31:30] [PASSED] SPI
[20:31:30] [PASSED] USB
[20:31:30] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[20:31:30] ============ [PASSED] drmm_connector_hdmi_init =============
[20:31:30] ============= drmm_connector_init (3 subtests) =============
[20:31:30] [PASSED] drm_test_drmm_connector_init
[20:31:30] [PASSED] drm_test_drmm_connector_init_null_ddc
[20:31:30] ========= drm_test_drmm_connector_init_type_valid =========
[20:31:30] [PASSED] Unknown
[20:31:30] [PASSED] VGA
[20:31:30] [PASSED] DVI-I
[20:31:30] [PASSED] DVI-D
[20:31:30] [PASSED] DVI-A
[20:31:30] [PASSED] Composite
[20:31:30] [PASSED] SVIDEO
[20:31:30] [PASSED] LVDS
[20:31:30] [PASSED] Component
[20:31:30] [PASSED] DIN
[20:31:30] [PASSED] DP
[20:31:30] [PASSED] HDMI-A
[20:31:30] [PASSED] HDMI-B
[20:31:30] [PASSED] TV
[20:31:30] [PASSED] eDP
[20:31:30] [PASSED] Virtual
[20:31:30] [PASSED] DSI
[20:31:30] [PASSED] DPI
[20:31:30] [PASSED] Writeback
[20:31:30] [PASSED] SPI
[20:31:30] [PASSED] USB
[20:31:30] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[20:31:30] =============== [PASSED] drmm_connector_init ===============
[20:31:30] ========= drm_connector_dynamic_init (6 subtests) ==========
[20:31:30] [PASSED] drm_test_drm_connector_dynamic_init
[20:31:30] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[20:31:30] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[20:31:30] [PASSED] drm_test_drm_connector_dynamic_init_properties
[20:31:30] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[20:31:30] [PASSED] Unknown
[20:31:30] [PASSED] VGA
[20:31:30] [PASSED] DVI-I
[20:31:30] [PASSED] DVI-D
[20:31:30] [PASSED] DVI-A
[20:31:30] [PASSED] Composite
[20:31:30] [PASSED] SVIDEO
[20:31:30] [PASSED] LVDS
[20:31:30] [PASSED] Component
[20:31:30] [PASSED] DIN
[20:31:30] [PASSED] DP
[20:31:30] [PASSED] HDMI-A
[20:31:30] [PASSED] HDMI-B
[20:31:30] [PASSED] TV
[20:31:30] [PASSED] eDP
[20:31:30] [PASSED] Virtual
[20:31:30] [PASSED] DSI
[20:31:30] [PASSED] DPI
[20:31:30] [PASSED] Writeback
[20:31:30] [PASSED] SPI
[20:31:30] [PASSED] USB
[20:31:30] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[20:31:30] ======== drm_test_drm_connector_dynamic_init_name =========
[20:31:30] [PASSED] Unknown
[20:31:30] [PASSED] VGA
[20:31:30] [PASSED] DVI-I
[20:31:30] [PASSED] DVI-D
[20:31:30] [PASSED] DVI-A
[20:31:30] [PASSED] Composite
[20:31:30] [PASSED] SVIDEO
[20:31:30] [PASSED] LVDS
[20:31:30] [PASSED] Component
[20:31:30] [PASSED] DIN
[20:31:30] [PASSED] DP
[20:31:30] [PASSED] HDMI-A
[20:31:30] [PASSED] HDMI-B
[20:31:30] [PASSED] TV
[20:31:30] [PASSED] eDP
[20:31:30] [PASSED] Virtual
[20:31:30] [PASSED] DSI
[20:31:30] [PASSED] DPI
[20:31:30] [PASSED] Writeback
[20:31:30] [PASSED] SPI
[20:31:30] [PASSED] USB
[20:31:30] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[20:31:30] =========== [PASSED] drm_connector_dynamic_init ============
[20:31:30] ==== drm_connector_dynamic_register_early (4 subtests) =====
[20:31:30] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[20:31:30] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[20:31:30] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[20:31:30] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[20:31:30] ====== [PASSED] drm_connector_dynamic_register_early =======
[20:31:30] ======= drm_connector_dynamic_register (7 subtests) ========
[20:31:30] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[20:31:30] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[20:31:30] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[20:31:30] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[20:31:30] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[20:31:30] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[20:31:30] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[20:31:30] ========= [PASSED] drm_connector_dynamic_register ==========
[20:31:30] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[20:31:30] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[20:31:30] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[20:31:30] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[20:31:30] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[20:31:30] ========== drm_test_get_tv_mode_from_name_valid ===========
[20:31:30] [PASSED] NTSC
[20:31:30] [PASSED] NTSC-443
[20:31:30] [PASSED] NTSC-J
[20:31:30] [PASSED] PAL
[20:31:30] [PASSED] PAL-M
[20:31:30] [PASSED] PAL-N
[20:31:30] [PASSED] SECAM
[20:31:30] [PASSED] Mono
[20:31:30] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[20:31:30] [PASSED] drm_test_get_tv_mode_from_name_truncated
[20:31:30] ============ [PASSED] drm_get_tv_mode_from_name ============
[20:31:30] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[20:31:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[20:31:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[20:31:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[20:31:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[20:31:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[20:31:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[20:31:30] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[20:31:30] [PASSED] VIC 96
[20:31:30] [PASSED] VIC 97
[20:31:30] [PASSED] VIC 101
[20:31:30] [PASSED] VIC 102
[20:31:30] [PASSED] VIC 106
[20:31:30] [PASSED] VIC 107
[20:31:30] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[20:31:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[20:31:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[20:31:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[20:31:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[20:31:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[20:31:30] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[20:31:30] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[20:31:30] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[20:31:30] [PASSED] Automatic
[20:31:30] [PASSED] Full
[20:31:30] [PASSED] Limited 16:235
[20:31:30] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[20:31:30] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[20:31:30] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[20:31:30] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[20:31:30] === drm_test_drm_hdmi_connector_get_output_format_name ====
[20:31:30] [PASSED] RGB
[20:31:30] [PASSED] YUV 4:2:0
[20:31:30] [PASSED] YUV 4:2:2
[20:31:30] [PASSED] YUV 4:4:4
[20:31:30] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[20:31:30] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[20:31:30] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[20:31:30] ============= drm_damage_helper (21 subtests) ==============
[20:31:30] [PASSED] drm_test_damage_iter_no_damage
[20:31:30] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[20:31:30] [PASSED] drm_test_damage_iter_no_damage_src_moved
[20:31:30] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[20:31:30] [PASSED] drm_test_damage_iter_no_damage_not_visible
[20:31:30] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[20:31:30] [PASSED] drm_test_damage_iter_no_damage_no_fb
[20:31:30] [PASSED] drm_test_damage_iter_simple_damage
[20:31:30] [PASSED] drm_test_damage_iter_single_damage
[20:31:30] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[20:31:30] [PASSED] drm_test_damage_iter_single_damage_outside_src
[20:31:30] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[20:31:30] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[20:31:30] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[20:31:30] [PASSED] drm_test_damage_iter_single_damage_src_moved
[20:31:30] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[20:31:30] [PASSED] drm_test_damage_iter_damage
[20:31:30] [PASSED] drm_test_damage_iter_damage_one_intersect
[20:31:30] [PASSED] drm_test_damage_iter_damage_one_outside
[20:31:30] [PASSED] drm_test_damage_iter_damage_src_moved
[20:31:30] [PASSED] drm_test_damage_iter_damage_not_visible
[20:31:30] ================ [PASSED] drm_damage_helper ================
[20:31:30] ============== drm_dp_mst_helper (3 subtests) ==============
[20:31:30] ============== drm_test_dp_mst_calc_pbn_mode ==============
[20:31:30] [PASSED] Clock 154000 BPP 30 DSC disabled
[20:31:30] [PASSED] Clock 234000 BPP 30 DSC disabled
[20:31:30] [PASSED] Clock 297000 BPP 24 DSC disabled
[20:31:30] [PASSED] Clock 332880 BPP 24 DSC enabled
[20:31:30] [PASSED] Clock 324540 BPP 24 DSC enabled
[20:31:30] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[20:31:30] ============== drm_test_dp_mst_calc_pbn_div ===============
[20:31:30] [PASSED] Link rate 2000000 lane count 4
[20:31:30] [PASSED] Link rate 2000000 lane count 2
[20:31:30] [PASSED] Link rate 2000000 lane count 1
[20:31:30] [PASSED] Link rate 1350000 lane count 4
[20:31:30] [PASSED] Link rate 1350000 lane count 2
[20:31:30] [PASSED] Link rate 1350000 lane count 1
[20:31:30] [PASSED] Link rate 1000000 lane count 4
[20:31:30] [PASSED] Link rate 1000000 lane count 2
[20:31:30] [PASSED] Link rate 1000000 lane count 1
[20:31:30] [PASSED] Link rate 810000 lane count 4
[20:31:30] [PASSED] Link rate 810000 lane count 2
[20:31:30] [PASSED] Link rate 810000 lane count 1
[20:31:30] [PASSED] Link rate 540000 lane count 4
[20:31:30] [PASSED] Link rate 540000 lane count 2
[20:31:30] [PASSED] Link rate 540000 lane count 1
[20:31:30] [PASSED] Link rate 270000 lane count 4
[20:31:30] [PASSED] Link rate 270000 lane count 2
[20:31:30] [PASSED] Link rate 270000 lane count 1
[20:31:30] [PASSED] Link rate 162000 lane count 4
[20:31:30] [PASSED] Link rate 162000 lane count 2
[20:31:30] [PASSED] Link rate 162000 lane count 1
[20:31:30] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[20:31:30] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[20:31:30] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[20:31:30] [PASSED] DP_POWER_UP_PHY with port number
[20:31:30] [PASSED] DP_POWER_DOWN_PHY with port number
[20:31:30] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[20:31:30] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[20:31:30] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[20:31:30] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[20:31:30] [PASSED] DP_QUERY_PAYLOAD with port number
[20:31:30] [PASSED] DP_QUERY_PAYLOAD with VCPI
[20:31:30] [PASSED] DP_REMOTE_DPCD_READ with port number
[20:31:30] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[20:31:30] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[20:31:30] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[20:31:30] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[20:31:30] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[20:31:30] [PASSED] DP_REMOTE_I2C_READ with port number
[20:31:30] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[20:31:30] [PASSED] DP_REMOTE_I2C_READ with transactions array
[20:31:30] [PASSED] DP_REMOTE_I2C_WRITE with port number
[20:31:30] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[20:31:30] [PASSED] DP_REMOTE_I2C_WRITE with data array
[20:31:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[20:31:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[20:31:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[20:31:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[20:31:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[20:31:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[20:31:30] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[20:31:30] ================ [PASSED] drm_dp_mst_helper ================
[20:31:30] ================== drm_exec (7 subtests) ===================
[20:31:30] [PASSED] sanitycheck
[20:31:30] [PASSED] test_lock
[20:31:30] [PASSED] test_lock_unlock
[20:31:30] [PASSED] test_duplicates
[20:31:30] [PASSED] test_prepare
[20:31:30] [PASSED] test_prepare_array
[20:31:30] [PASSED] test_multiple_loops
[20:31:30] ==================== [PASSED] drm_exec =====================
[20:31:30] =========== drm_format_helper_test (17 subtests) ===========
[20:31:30] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[20:31:30] [PASSED] single_pixel_source_buffer
[20:31:30] [PASSED] single_pixel_clip_rectangle
[20:31:30] [PASSED] well_known_colors
[20:31:30] [PASSED] destination_pitch
[20:31:30] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[20:31:30] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[20:31:30] [PASSED] single_pixel_source_buffer
[20:31:30] [PASSED] single_pixel_clip_rectangle
[20:31:30] [PASSED] well_known_colors
[20:31:30] [PASSED] destination_pitch
[20:31:30] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[20:31:30] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[20:31:30] [PASSED] single_pixel_source_buffer
[20:31:30] [PASSED] single_pixel_clip_rectangle
[20:31:30] [PASSED] well_known_colors
[20:31:30] [PASSED] destination_pitch
[20:31:30] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[20:31:30] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[20:31:30] [PASSED] single_pixel_source_buffer
[20:31:30] [PASSED] single_pixel_clip_rectangle
[20:31:30] [PASSED] well_known_colors
[20:31:30] [PASSED] destination_pitch
[20:31:30] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[20:31:30] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[20:31:30] [PASSED] single_pixel_source_buffer
[20:31:30] [PASSED] single_pixel_clip_rectangle
[20:31:30] [PASSED] well_known_colors
[20:31:30] [PASSED] destination_pitch
[20:31:30] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[20:31:30] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[20:31:30] [PASSED] single_pixel_source_buffer
[20:31:30] [PASSED] single_pixel_clip_rectangle
[20:31:30] [PASSED] well_known_colors
[20:31:30] [PASSED] destination_pitch
[20:31:30] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[20:31:30] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[20:31:30] [PASSED] single_pixel_source_buffer
[20:31:30] [PASSED] single_pixel_clip_rectangle
[20:31:30] [PASSED] well_known_colors
[20:31:30] [PASSED] destination_pitch
[20:31:30] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[20:31:30] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[20:31:30] [PASSED] single_pixel_source_buffer
[20:31:30] [PASSED] single_pixel_clip_rectangle
[20:31:30] [PASSED] well_known_colors
[20:31:30] [PASSED] destination_pitch
[20:31:30] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[20:31:30] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[20:31:30] [PASSED] single_pixel_source_buffer
[20:31:30] [PASSED] single_pixel_clip_rectangle
[20:31:30] [PASSED] well_known_colors
[20:31:30] [PASSED] destination_pitch
[20:31:30] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[20:31:30] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[20:31:30] [PASSED] single_pixel_source_buffer
[20:31:30] [PASSED] single_pixel_clip_rectangle
[20:31:30] [PASSED] well_known_colors
[20:31:30] [PASSED] destination_pitch
[20:31:30] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[20:31:30] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[20:31:30] [PASSED] single_pixel_source_buffer
[20:31:30] [PASSED] single_pixel_clip_rectangle
[20:31:30] [PASSED] well_known_colors
[20:31:30] [PASSED] destination_pitch
[20:31:30] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[20:31:30] ============== drm_test_fb_xrgb8888_to_mono ===============
[20:31:30] [PASSED] single_pixel_source_buffer
[20:31:30] [PASSED] single_pixel_clip_rectangle
[20:31:30] [PASSED] well_known_colors
[20:31:30] [PASSED] destination_pitch
[20:31:30] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[20:31:30] ==================== drm_test_fb_swab =====================
[20:31:30] [PASSED] single_pixel_source_buffer
[20:31:30] [PASSED] single_pixel_clip_rectangle
[20:31:30] [PASSED] well_known_colors
[20:31:30] [PASSED] destination_pitch
[20:31:30] ================ [PASSED] drm_test_fb_swab =================
[20:31:30] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[20:31:30] [PASSED] single_pixel_source_buffer
[20:31:30] [PASSED] single_pixel_clip_rectangle
[20:31:30] [PASSED] well_known_colors
[20:31:30] [PASSED] destination_pitch
[20:31:30] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[20:31:30] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[20:31:30] [PASSED] single_pixel_source_buffer
[20:31:30] [PASSED] single_pixel_clip_rectangle
[20:31:30] [PASSED] well_known_colors
[20:31:30] [PASSED] destination_pitch
[20:31:30] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[20:31:30] ================= drm_test_fb_clip_offset =================
[20:31:30] [PASSED] pass through
[20:31:30] [PASSED] horizontal offset
[20:31:30] [PASSED] vertical offset
[20:31:30] [PASSED] horizontal and vertical offset
[20:31:30] [PASSED] horizontal offset (custom pitch)
[20:31:30] [PASSED] vertical offset (custom pitch)
[20:31:30] [PASSED] horizontal and vertical offset (custom pitch)
[20:31:30] ============= [PASSED] drm_test_fb_clip_offset =============
[20:31:30] =================== drm_test_fb_memcpy ====================
[20:31:30] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[20:31:30] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[20:31:30] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[20:31:30] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[20:31:30] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[20:31:30] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[20:31:30] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[20:31:30] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[20:31:30] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[20:31:30] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[20:31:30] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[20:31:30] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[20:31:30] =============== [PASSED] drm_test_fb_memcpy ================
[20:31:30] ============= [PASSED] drm_format_helper_test ==============
[20:31:30] ================= drm_format (18 subtests) =================
[20:31:30] [PASSED] drm_test_format_block_width_invalid
[20:31:30] [PASSED] drm_test_format_block_width_one_plane
[20:31:30] [PASSED] drm_test_format_block_width_two_plane
[20:31:30] [PASSED] drm_test_format_block_width_three_plane
[20:31:30] [PASSED] drm_test_format_block_width_tiled
[20:31:30] [PASSED] drm_test_format_block_height_invalid
[20:31:30] [PASSED] drm_test_format_block_height_one_plane
[20:31:30] [PASSED] drm_test_format_block_height_two_plane
[20:31:30] [PASSED] drm_test_format_block_height_three_plane
[20:31:30] [PASSED] drm_test_format_block_height_tiled
[20:31:30] [PASSED] drm_test_format_min_pitch_invalid
[20:31:30] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[20:31:30] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[20:31:30] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[20:31:30] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[20:31:30] [PASSED] drm_test_format_min_pitch_two_plane
[20:31:30] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[20:31:30] [PASSED] drm_test_format_min_pitch_tiled
[20:31:30] =================== [PASSED] drm_format ====================
[20:31:30] ============== drm_framebuffer (10 subtests) ===============
[20:31:30] ========== drm_test_framebuffer_check_src_coords ==========
[20:31:30] [PASSED] Success: source fits into fb
[20:31:30] [PASSED] Fail: overflowing fb with x-axis coordinate
[20:31:30] [PASSED] Fail: overflowing fb with y-axis coordinate
[20:31:30] [PASSED] Fail: overflowing fb with source width
[20:31:30] [PASSED] Fail: overflowing fb with source height
[20:31:30] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[20:31:30] [PASSED] drm_test_framebuffer_cleanup
[20:31:30] =============== drm_test_framebuffer_create ===============
[20:31:30] [PASSED] ABGR8888 normal sizes
[20:31:30] [PASSED] ABGR8888 max sizes
[20:31:30] [PASSED] ABGR8888 pitch greater than min required
[20:31:30] [PASSED] ABGR8888 pitch less than min required
[20:31:30] [PASSED] ABGR8888 Invalid width
[20:31:30] [PASSED] ABGR8888 Invalid buffer handle
[20:31:30] [PASSED] No pixel format
[20:31:30] [PASSED] ABGR8888 Width 0
[20:31:30] [PASSED] ABGR8888 Height 0
[20:31:30] [PASSED] ABGR8888 Out of bound height * pitch combination
[20:31:30] [PASSED] ABGR8888 Large buffer offset
[20:31:30] [PASSED] ABGR8888 Buffer offset for inexistent plane
[20:31:30] [PASSED] ABGR8888 Invalid flag
[20:31:30] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[20:31:30] [PASSED] ABGR8888 Valid buffer modifier
[20:31:30] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[20:31:30] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[20:31:30] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[20:31:30] [PASSED] NV12 Normal sizes
[20:31:30] [PASSED] NV12 Max sizes
[20:31:30] [PASSED] NV12 Invalid pitch
[20:31:30] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[20:31:30] [PASSED] NV12 different modifier per-plane
[20:31:30] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[20:31:30] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[20:31:30] [PASSED] NV12 Modifier for inexistent plane
[20:31:30] [PASSED] NV12 Handle for inexistent plane
[20:31:30] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[20:31:30] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[20:31:30] [PASSED] YVU420 Normal sizes
[20:31:30] [PASSED] YVU420 Max sizes
[20:31:30] [PASSED] YVU420 Invalid pitch
[20:31:30] [PASSED] YVU420 Different pitches
[20:31:30] [PASSED] YVU420 Different buffer offsets/pitches
[20:31:30] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[20:31:30] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[20:31:30] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[20:31:30] [PASSED] YVU420 Valid modifier
[20:31:30] [PASSED] YVU420 Different modifiers per plane
[20:31:30] [PASSED] YVU420 Modifier for inexistent plane
[20:31:30] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[20:31:30] [PASSED] X0L2 Normal sizes
[20:31:30] [PASSED] X0L2 Max sizes
[20:31:30] [PASSED] X0L2 Invalid pitch
[20:31:30] [PASSED] X0L2 Pitch greater than minimum required
[20:31:30] [PASSED] X0L2 Handle for inexistent plane
[20:31:30] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[20:31:30] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[20:31:30] [PASSED] X0L2 Valid modifier
[20:31:30] [PASSED] X0L2 Modifier for inexistent plane
[20:31:30] =========== [PASSED] drm_test_framebuffer_create ===========
[20:31:30] [PASSED] drm_test_framebuffer_free
[20:31:30] [PASSED] drm_test_framebuffer_init
[20:31:30] [PASSED] drm_test_framebuffer_init_bad_format
[20:31:30] [PASSED] drm_test_framebuffer_init_dev_mismatch
[20:31:30] [PASSED] drm_test_framebuffer_lookup
[20:31:30] [PASSED] drm_test_framebuffer_lookup_inexistent
[20:31:30] [PASSED] drm_test_framebuffer_modifiers_not_supported
[20:31:30] ================= [PASSED] drm_framebuffer =================
[20:31:30] ================ drm_gem_shmem (8 subtests) ================
[20:31:30] [PASSED] drm_gem_shmem_test_obj_create
[20:31:30] [PASSED] drm_gem_shmem_test_obj_create_private
[20:31:30] [PASSED] drm_gem_shmem_test_pin_pages
[20:31:30] [PASSED] drm_gem_shmem_test_vmap
[20:31:30] [PASSED] drm_gem_shmem_test_get_pages_sgt
[20:31:30] [PASSED] drm_gem_shmem_test_get_sg_table
[20:31:30] [PASSED] drm_gem_shmem_test_madvise
[20:31:30] [PASSED] drm_gem_shmem_test_purge
[20:31:30] ================== [PASSED] drm_gem_shmem ==================
[20:31:30] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[20:31:30] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[20:31:30] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[20:31:30] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[20:31:30] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[20:31:30] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[20:31:30] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[20:31:30] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[20:31:30] [PASSED] Automatic
[20:31:30] [PASSED] Full
[20:31:30] [PASSED] Limited 16:235
[20:31:30] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[20:31:30] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[20:31:30] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[20:31:30] [PASSED] drm_test_check_disable_connector
[20:31:30] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[20:31:30] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[20:31:30] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[20:31:30] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[20:31:30] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[20:31:30] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[20:31:30] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[20:31:30] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[20:31:30] [PASSED] drm_test_check_output_bpc_dvi
[20:31:30] [PASSED] drm_test_check_output_bpc_format_vic_1
[20:31:30] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[20:31:30] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[20:31:30] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[20:31:30] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[20:31:30] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[20:31:30] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[20:31:30] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[20:31:30] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[20:31:30] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[20:31:30] [PASSED] drm_test_check_broadcast_rgb_value
[20:31:30] [PASSED] drm_test_check_bpc_8_value
[20:31:30] [PASSED] drm_test_check_bpc_10_value
[20:31:30] [PASSED] drm_test_check_bpc_12_value
[20:31:30] [PASSED] drm_test_check_format_value
[20:31:30] [PASSED] drm_test_check_tmds_char_value
[20:31:30] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[20:31:30] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[20:31:30] [PASSED] drm_test_check_mode_valid
[20:31:30] [PASSED] drm_test_check_mode_valid_reject
[20:31:30] [PASSED] drm_test_check_mode_valid_reject_rate
[20:31:30] [PASSED] drm_test_check_mode_valid_reject_max_clock
[20:31:30] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[20:31:30] ================= drm_managed (2 subtests) =================
[20:31:30] [PASSED] drm_test_managed_release_action
[20:31:30] [PASSED] drm_test_managed_run_action
[20:31:30] =================== [PASSED] drm_managed ===================
[20:31:30] =================== drm_mm (6 subtests) ====================
[20:31:30] [PASSED] drm_test_mm_init
[20:31:30] [PASSED] drm_test_mm_debug
[20:31:30] [PASSED] drm_test_mm_align32
[20:31:30] [PASSED] drm_test_mm_align64
[20:31:30] [PASSED] drm_test_mm_lowest
[20:31:30] [PASSED] drm_test_mm_highest
[20:31:30] ===================== [PASSED] drm_mm ======================
[20:31:30] ============= drm_modes_analog_tv (5 subtests) =============
[20:31:30] [PASSED] drm_test_modes_analog_tv_mono_576i
[20:31:30] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[20:31:30] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[20:31:30] [PASSED] drm_test_modes_analog_tv_pal_576i
[20:31:30] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[20:31:30] =============== [PASSED] drm_modes_analog_tv ===============
[20:31:30] ============== drm_plane_helper (2 subtests) ===============
[20:31:30] =============== drm_test_check_plane_state ================
[20:31:30] [PASSED] clipping_simple
[20:31:30] [PASSED] clipping_rotate_reflect
[20:31:30] [PASSED] positioning_simple
[20:31:30] [PASSED] upscaling
[20:31:30] [PASSED] downscaling
[20:31:30] [PASSED] rounding1
[20:31:30] [PASSED] rounding2
[20:31:30] [PASSED] rounding3
[20:31:30] [PASSED] rounding4
[20:31:30] =========== [PASSED] drm_test_check_plane_state ============
[20:31:30] =========== drm_test_check_invalid_plane_state ============
[20:31:30] [PASSED] positioning_invalid
[20:31:30] [PASSED] upscaling_invalid
[20:31:30] [PASSED] downscaling_invalid
[20:31:30] ======= [PASSED] drm_test_check_invalid_plane_state ========
[20:31:30] ================ [PASSED] drm_plane_helper =================
[20:31:30] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[20:31:30] ====== drm_test_connector_helper_tv_get_modes_check =======
[20:31:30] [PASSED] None
[20:31:30] [PASSED] PAL
[20:31:30] [PASSED] NTSC
[20:31:30] [PASSED] Both, NTSC Default
[20:31:30] [PASSED] Both, PAL Default
[20:31:30] [PASSED] Both, NTSC Default, with PAL on command-line
[20:31:30] [PASSED] Both, PAL Default, with NTSC on command-line
[20:31:30] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[20:31:30] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[20:31:30] ================== drm_rect (9 subtests) ===================
[20:31:30] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[20:31:30] [PASSED] drm_test_rect_clip_scaled_not_clipped
[20:31:30] [PASSED] drm_test_rect_clip_scaled_clipped
[20:31:30] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[20:31:30] ================= drm_test_rect_intersect =================
[20:31:30] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[20:31:30] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[20:31:30] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[20:31:30] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[20:31:30] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[20:31:30] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[20:31:30] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[20:31:30] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[20:31:30] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[20:31:30] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[20:31:30] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[20:31:30] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[20:31:30] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[20:31:30] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[20:31:30] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[20:31:30] ============= [PASSED] drm_test_rect_intersect =============
[20:31:30] ================ drm_test_rect_calc_hscale ================
[20:31:30] [PASSED] normal use
[20:31:30] [PASSED] out of max range
[20:31:30] [PASSED] out of min range
[20:31:30] [PASSED] zero dst
[20:31:30] [PASSED] negative src
[20:31:30] [PASSED] negative dst
[20:31:30] ============ [PASSED] drm_test_rect_calc_hscale ============
[20:31:30] ================ drm_test_rect_calc_vscale ================
[20:31:30] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[20:31:30] [PASSED] out of max range
[20:31:30] [PASSED] out of min range
[20:31:30] [PASSED] zero dst
[20:31:30] [PASSED] negative src
[20:31:30] [PASSED] negative dst
[20:31:30] ============ [PASSED] drm_test_rect_calc_vscale ============
[20:31:30] ================== drm_test_rect_rotate ===================
[20:31:30] [PASSED] reflect-x
[20:31:30] [PASSED] reflect-y
[20:31:30] [PASSED] rotate-0
[20:31:30] [PASSED] rotate-90
[20:31:30] [PASSED] rotate-180
[20:31:30] [PASSED] rotate-270
[20:31:30] ============== [PASSED] drm_test_rect_rotate ===============
[20:31:30] ================ drm_test_rect_rotate_inv =================
[20:31:30] [PASSED] reflect-x
[20:31:30] [PASSED] reflect-y
[20:31:30] [PASSED] rotate-0
[20:31:30] [PASSED] rotate-90
[20:31:30] [PASSED] rotate-180
[20:31:30] [PASSED] rotate-270
[20:31:30] ============ [PASSED] drm_test_rect_rotate_inv =============
[20:31:30] ==================== [PASSED] drm_rect =====================
[20:31:30] ============ drm_sysfb_modeset_test (1 subtest) ============
[20:31:30] ============ drm_test_sysfb_build_fourcc_list =============
[20:31:30] [PASSED] no native formats
[20:31:30] [PASSED] XRGB8888 as native format
[20:31:30] [PASSED] remove duplicates
[20:31:30] [PASSED] convert alpha formats
[20:31:30] [PASSED] random formats
[20:31:30] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[20:31:30] ============= [PASSED] drm_sysfb_modeset_test ==============
[20:31:30] ============================================================
[20:31:30] Testing complete. Ran 622 tests: passed: 622
[20:31:30] Elapsed time: 26.794s total, 1.735s configuring, 24.641s building, 0.387s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[20:31:30] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[20:31:32] 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
[20:31:42] Starting KUnit Kernel (1/1)...
[20:31:42] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[20:31:42] ================= ttm_device (5 subtests) ==================
[20:31:42] [PASSED] ttm_device_init_basic
[20:31:42] [PASSED] ttm_device_init_multiple
[20:31:42] [PASSED] ttm_device_fini_basic
[20:31:42] [PASSED] ttm_device_init_no_vma_man
[20:31:42] ================== ttm_device_init_pools ==================
[20:31:42] [PASSED] No DMA allocations, no DMA32 required
[20:31:42] [PASSED] DMA allocations, DMA32 required
[20:31:42] [PASSED] No DMA allocations, DMA32 required
[20:31:42] [PASSED] DMA allocations, no DMA32 required
[20:31:42] ============== [PASSED] ttm_device_init_pools ==============
[20:31:42] =================== [PASSED] ttm_device ====================
[20:31:42] ================== ttm_pool (8 subtests) ===================
[20:31:42] ================== ttm_pool_alloc_basic ===================
[20:31:42] [PASSED] One page
[20:31:42] [PASSED] More than one page
[20:31:42] [PASSED] Above the allocation limit
[20:31:42] [PASSED] One page, with coherent DMA mappings enabled
[20:31:42] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[20:31:42] ============== [PASSED] ttm_pool_alloc_basic ===============
[20:31:42] ============== ttm_pool_alloc_basic_dma_addr ==============
[20:31:42] [PASSED] One page
[20:31:42] [PASSED] More than one page
[20:31:42] [PASSED] Above the allocation limit
[20:31:42] [PASSED] One page, with coherent DMA mappings enabled
[20:31:42] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[20:31:42] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[20:31:42] [PASSED] ttm_pool_alloc_order_caching_match
[20:31:42] [PASSED] ttm_pool_alloc_caching_mismatch
[20:31:42] [PASSED] ttm_pool_alloc_order_mismatch
[20:31:42] [PASSED] ttm_pool_free_dma_alloc
[20:31:42] [PASSED] ttm_pool_free_no_dma_alloc
[20:31:42] [PASSED] ttm_pool_fini_basic
[20:31:42] ==================== [PASSED] ttm_pool =====================
[20:31:42] ================ ttm_resource (8 subtests) =================
[20:31:42] ================= ttm_resource_init_basic =================
[20:31:42] [PASSED] Init resource in TTM_PL_SYSTEM
[20:31:42] [PASSED] Init resource in TTM_PL_VRAM
[20:31:42] [PASSED] Init resource in a private placement
[20:31:42] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[20:31:42] ============= [PASSED] ttm_resource_init_basic =============
[20:31:42] [PASSED] ttm_resource_init_pinned
[20:31:42] [PASSED] ttm_resource_fini_basic
[20:31:42] [PASSED] ttm_resource_manager_init_basic
[20:31:42] [PASSED] ttm_resource_manager_usage_basic
[20:31:42] [PASSED] ttm_resource_manager_set_used_basic
[20:31:42] [PASSED] ttm_sys_man_alloc_basic
[20:31:42] [PASSED] ttm_sys_man_free_basic
[20:31:42] ================== [PASSED] ttm_resource ===================
[20:31:42] =================== ttm_tt (15 subtests) ===================
[20:31:42] ==================== ttm_tt_init_basic ====================
[20:31:42] [PASSED] Page-aligned size
[20:31:42] [PASSED] Extra pages requested
[20:31:42] ================ [PASSED] ttm_tt_init_basic ================
[20:31:42] [PASSED] ttm_tt_init_misaligned
[20:31:42] [PASSED] ttm_tt_fini_basic
[20:31:42] [PASSED] ttm_tt_fini_sg
[20:31:42] [PASSED] ttm_tt_fini_shmem
[20:31:42] [PASSED] ttm_tt_create_basic
[20:31:42] [PASSED] ttm_tt_create_invalid_bo_type
[20:31:42] [PASSED] ttm_tt_create_ttm_exists
[20:31:42] [PASSED] ttm_tt_create_failed
[20:31:42] [PASSED] ttm_tt_destroy_basic
[20:31:42] [PASSED] ttm_tt_populate_null_ttm
[20:31:42] [PASSED] ttm_tt_populate_populated_ttm
[20:31:42] [PASSED] ttm_tt_unpopulate_basic
[20:31:42] [PASSED] ttm_tt_unpopulate_empty_ttm
[20:31:42] [PASSED] ttm_tt_swapin_basic
[20:31:42] ===================== [PASSED] ttm_tt ======================
[20:31:42] =================== ttm_bo (14 subtests) ===================
[20:31:42] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[20:31:42] [PASSED] Cannot be interrupted and sleeps
[20:31:42] [PASSED] Cannot be interrupted, locks straight away
[20:31:42] [PASSED] Can be interrupted, sleeps
[20:31:42] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[20:31:42] [PASSED] ttm_bo_reserve_locked_no_sleep
[20:31:42] [PASSED] ttm_bo_reserve_no_wait_ticket
[20:31:42] [PASSED] ttm_bo_reserve_double_resv
[20:31:42] [PASSED] ttm_bo_reserve_interrupted
[20:31:42] [PASSED] ttm_bo_reserve_deadlock
[20:31:42] [PASSED] ttm_bo_unreserve_basic
[20:31:42] [PASSED] ttm_bo_unreserve_pinned
[20:31:42] [PASSED] ttm_bo_unreserve_bulk
[20:31:42] [PASSED] ttm_bo_fini_basic
[20:31:42] [PASSED] ttm_bo_fini_shared_resv
[20:31:42] [PASSED] ttm_bo_pin_basic
[20:31:42] [PASSED] ttm_bo_pin_unpin_resource
[20:31:42] [PASSED] ttm_bo_multiple_pin_one_unpin
[20:31:42] ===================== [PASSED] ttm_bo ======================
[20:31:42] ============== ttm_bo_validate (21 subtests) ===============
[20:31:42] ============== ttm_bo_init_reserved_sys_man ===============
[20:31:42] [PASSED] Buffer object for userspace
[20:31:42] [PASSED] Kernel buffer object
[20:31:42] [PASSED] Shared buffer object
[20:31:42] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[20:31:42] ============== ttm_bo_init_reserved_mock_man ==============
[20:31:42] [PASSED] Buffer object for userspace
[20:31:42] [PASSED] Kernel buffer object
[20:31:42] [PASSED] Shared buffer object
[20:31:42] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[20:31:42] [PASSED] ttm_bo_init_reserved_resv
[20:31:42] ================== ttm_bo_validate_basic ==================
[20:31:42] [PASSED] Buffer object for userspace
[20:31:42] [PASSED] Kernel buffer object
[20:31:42] [PASSED] Shared buffer object
[20:31:42] ============== [PASSED] ttm_bo_validate_basic ==============
[20:31:42] [PASSED] ttm_bo_validate_invalid_placement
[20:31:42] ============= ttm_bo_validate_same_placement ==============
[20:31:42] [PASSED] System manager
[20:31:42] [PASSED] VRAM manager
[20:31:42] ========= [PASSED] ttm_bo_validate_same_placement ==========
[20:31:42] [PASSED] ttm_bo_validate_failed_alloc
[20:31:42] [PASSED] ttm_bo_validate_pinned
[20:31:42] [PASSED] ttm_bo_validate_busy_placement
[20:31:42] ================ ttm_bo_validate_multihop =================
[20:31:42] [PASSED] Buffer object for userspace
[20:31:42] [PASSED] Kernel buffer object
[20:31:42] [PASSED] Shared buffer object
[20:31:42] ============ [PASSED] ttm_bo_validate_multihop =============
[20:31:42] ========== ttm_bo_validate_no_placement_signaled ==========
[20:31:42] [PASSED] Buffer object in system domain, no page vector
[20:31:42] [PASSED] Buffer object in system domain with an existing page vector
[20:31:42] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[20:31:42] ======== ttm_bo_validate_no_placement_not_signaled ========
[20:31:42] [PASSED] Buffer object for userspace
[20:31:42] [PASSED] Kernel buffer object
[20:31:42] [PASSED] Shared buffer object
[20:31:42] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[20:31:42] [PASSED] ttm_bo_validate_move_fence_signaled
[20:31:42] ========= ttm_bo_validate_move_fence_not_signaled =========
[20:31:42] [PASSED] Waits for GPU
[20:31:42] [PASSED] Tries to lock straight away
[20:31:42] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[20:31:42] [PASSED] ttm_bo_validate_happy_evict
[20:31:42] [PASSED] ttm_bo_validate_all_pinned_evict
[20:31:42] [PASSED] ttm_bo_validate_allowed_only_evict
[20:31:42] [PASSED] ttm_bo_validate_deleted_evict
[20:31:42] [PASSED] ttm_bo_validate_busy_domain_evict
[20:31:42] [PASSED] ttm_bo_validate_evict_gutting
[20:31:42] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[20:31:42] ================= [PASSED] ttm_bo_validate =================
[20:31:42] ============================================================
[20:31:42] Testing complete. Ran 101 tests: passed: 101
[20:31:42] Elapsed time: 11.498s total, 1.701s configuring, 9.531s building, 0.230s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 16+ messages in thread* ✗ Xe.CI.BAT: failure for series starting with [v2,1/2] drm/xe: Track pre-production workaround support (rev2)
2025-11-19 22:05 [PATCH 1/2] drm/xe: Track pre-production workaround support Matt Roper
` (7 preceding siblings ...)
2025-11-20 20:31 ` ✓ CI.KUnit: success for series starting with [v2,1/2] drm/xe: Track pre-production workaround support (rev2) Patchwork
@ 2025-11-20 21:14 ` Patchwork
2025-11-20 21:18 ` Matt Roper
2025-11-21 2:13 ` ✗ Xe.CI.Full: " Patchwork
9 siblings, 1 reply; 16+ messages in thread
From: Patchwork @ 2025-11-20 21:14 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 4217 bytes --]
== Series Details ==
Series: series starting with [v2,1/2] drm/xe: Track pre-production workaround support (rev2)
URL : https://patchwork.freedesktop.org/series/157804/
State : failure
== Summary ==
CI Bug Log - changes from xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7_BAT -> xe-pw-157804v2_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-157804v2_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-157804v2_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 (13 -> 13)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-157804v2_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@sriov_basic@enable-vfs-autoprobe-on:
- bat-ptl-1: [PASS][1] -> [ABORT][2] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-ptl-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-ptl-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
- bat-adlp-7: [PASS][3] -> [ABORT][4] +1 other test abort
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-adlp-7/igt@sriov_basic@enable-vfs-autoprobe-on.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-adlp-7/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1:
- bat-ptl-2: [PASS][5] -> [ABORT][6] +1 other test abort
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-ptl-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-ptl-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
- bat-atsm-2: [PASS][7] -> [ABORT][8] +1 other test abort
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-atsm-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-atsm-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
* igt@xe_module_load@load:
- bat-adlp-vm: [PASS][9] -> [ABORT][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-adlp-vm/igt@xe_module_load@load.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-adlp-vm/igt@xe_module_load@load.html
- bat-ptl-vm: [PASS][11] -> [ABORT][12]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-ptl-vm/igt@xe_module_load@load.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-ptl-vm/igt@xe_module_load@load.html
Known issues
------------
Here are the changes found in xe-pw-157804v2_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@xe_waitfence@reltime:
- bat-dg2-oem2: [FAIL][13] ([Intel XE#6520]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
Build changes
-------------
* Linux: xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7 -> xe-pw-157804v2
IGT_8636: 254cd102396ff95d61f2ebe49fc09128878bf483 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7: 3d718db04a365cc44a3bc81ffa4db7bbd2e645d7
xe-pw-157804v2: 157804v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/index.html
[-- Attachment #2: Type: text/html, Size: 4910 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread* Re: ✗ Xe.CI.BAT: failure for series starting with [v2,1/2] drm/xe: Track pre-production workaround support (rev2)
2025-11-20 21:14 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2025-11-20 21:18 ` Matt Roper
2025-11-20 21:59 ` Michal Wajdeczko
0 siblings, 1 reply; 16+ messages in thread
From: Matt Roper @ 2025-11-20 21:18 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko
On Thu, Nov 20, 2025 at 09:14:40PM +0000, Patchwork wrote:
> == Series Details ==
>
> Series: series starting with [v2,1/2] drm/xe: Track pre-production workaround support (rev2)
> URL : https://patchwork.freedesktop.org/series/157804/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7_BAT -> xe-pw-157804v2_BAT
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with xe-pw-157804v2_BAT absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in xe-pw-157804v2_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 (13 -> 13)
> ------------------------------
>
> No changes in participating hosts
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in xe-pw-157804v2_BAT:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@sriov_basic@enable-vfs-autoprobe-on:
> - bat-ptl-1: [PASS][1] -> [ABORT][2] +1 other test abort
> [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-ptl-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
> [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-ptl-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
Looks like I'll need to add a !sriov check in the next version as well
since VFs don't have access to this register.
Michal, we don't have any other means of determining production vs
pre-production status on a VF, right?
Matt
> - bat-adlp-7: [PASS][3] -> [ABORT][4] +1 other test abort
> [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-adlp-7/igt@sriov_basic@enable-vfs-autoprobe-on.html
> [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-adlp-7/igt@sriov_basic@enable-vfs-autoprobe-on.html
>
> * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1:
> - bat-ptl-2: [PASS][5] -> [ABORT][6] +1 other test abort
> [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-ptl-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
> [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-ptl-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
> - bat-atsm-2: [PASS][7] -> [ABORT][8] +1 other test abort
> [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-atsm-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
> [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-atsm-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
>
> * igt@xe_module_load@load:
> - bat-adlp-vm: [PASS][9] -> [ABORT][10]
> [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-adlp-vm/igt@xe_module_load@load.html
> [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-adlp-vm/igt@xe_module_load@load.html
> - bat-ptl-vm: [PASS][11] -> [ABORT][12]
> [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-ptl-vm/igt@xe_module_load@load.html
> [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-ptl-vm/igt@xe_module_load@load.html
>
>
> Known issues
> ------------
>
> Here are the changes found in xe-pw-157804v2_BAT that come from known issues:
>
> ### IGT changes ###
>
> #### Possible fixes ####
>
> * igt@xe_waitfence@reltime:
> - bat-dg2-oem2: [FAIL][13] ([Intel XE#6520]) -> [PASS][14]
> [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-dg2-oem2/igt@xe_waitfence@reltime.html
> [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-dg2-oem2/igt@xe_waitfence@reltime.html
>
>
> [Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
>
>
> Build changes
> -------------
>
> * Linux: xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7 -> xe-pw-157804v2
>
> IGT_8636: 254cd102396ff95d61f2ebe49fc09128878bf483 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7: 3d718db04a365cc44a3bc81ffa4db7bbd2e645d7
> xe-pw-157804v2: 157804v2
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/index.html
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: ✗ Xe.CI.BAT: failure for series starting with [v2,1/2] drm/xe: Track pre-production workaround support (rev2)
2025-11-20 21:18 ` Matt Roper
@ 2025-11-20 21:59 ` Michal Wajdeczko
2025-11-20 22:05 ` Matt Roper
0 siblings, 1 reply; 16+ messages in thread
From: Michal Wajdeczko @ 2025-11-20 21:59 UTC (permalink / raw)
To: Matt Roper, intel-xe
On 11/20/2025 10:18 PM, Matt Roper wrote:
> On Thu, Nov 20, 2025 at 09:14:40PM +0000, Patchwork wrote:
>> == Series Details ==
>>
>> Series: series starting with [v2,1/2] drm/xe: Track pre-production workaround support (rev2)
>> URL : https://patchwork.freedesktop.org/series/157804/
>> State : failure
>>
>> == Summary ==
>>
>> CI Bug Log - changes from xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7_BAT -> xe-pw-157804v2_BAT
>> ====================================================
>>
>> Summary
>> -------
>>
>> **FAILURE**
>>
>> Serious unknown changes coming with xe-pw-157804v2_BAT absolutely need to be
>> verified manually.
>>
>> If you think the reported changes have nothing to do with the changes
>> introduced in xe-pw-157804v2_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 (13 -> 13)
>> ------------------------------
>>
>> No changes in participating hosts
>>
>> Possible new issues
>> -------------------
>>
>> Here are the unknown changes that may have been introduced in xe-pw-157804v2_BAT:
>>
>> ### IGT changes ###
>>
>> #### Possible regressions ####
>>
>> * igt@sriov_basic@enable-vfs-autoprobe-on:
>> - bat-ptl-1: [PASS][1] -> [ABORT][2] +1 other test abort
>> [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-ptl-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
>> [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-ptl-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
>
> Looks like I'll need to add a !sriov check in the next version as well
> since VFs don't have access to this register.
>
> Michal, we don't have any other means of determining production vs
> pre-production status on a VF, right?
we could try to add 0x9120 register to the runtime_regs, but that would be unofficial hack
so I guess it's easier to assume that VFs will be enabled only on production parts
>
>
> Matt
>
>> - bat-adlp-7: [PASS][3] -> [ABORT][4] +1 other test abort
>> [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-adlp-7/igt@sriov_basic@enable-vfs-autoprobe-on.html
>> [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-adlp-7/igt@sriov_basic@enable-vfs-autoprobe-on.html
>>
>> * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1:
>> - bat-ptl-2: [PASS][5] -> [ABORT][6] +1 other test abort
>> [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-ptl-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
>> [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-ptl-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
>> - bat-atsm-2: [PASS][7] -> [ABORT][8] +1 other test abort
>> [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-atsm-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
>> [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-atsm-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
>>
>> * igt@xe_module_load@load:
>> - bat-adlp-vm: [PASS][9] -> [ABORT][10]
>> [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-adlp-vm/igt@xe_module_load@load.html
>> [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-adlp-vm/igt@xe_module_load@load.html
>> - bat-ptl-vm: [PASS][11] -> [ABORT][12]
>> [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-ptl-vm/igt@xe_module_load@load.html
>> [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-ptl-vm/igt@xe_module_load@load.html
>>
>>
>> Known issues
>> ------------
>>
>> Here are the changes found in xe-pw-157804v2_BAT that come from known issues:
>>
>> ### IGT changes ###
>>
>> #### Possible fixes ####
>>
>> * igt@xe_waitfence@reltime:
>> - bat-dg2-oem2: [FAIL][13] ([Intel XE#6520]) -> [PASS][14]
>> [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-dg2-oem2/igt@xe_waitfence@reltime.html
>> [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-dg2-oem2/igt@xe_waitfence@reltime.html
>>
>>
>> [Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
>>
>>
>> Build changes
>> -------------
>>
>> * Linux: xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7 -> xe-pw-157804v2
>>
>> IGT_8636: 254cd102396ff95d61f2ebe49fc09128878bf483 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>> xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7: 3d718db04a365cc44a3bc81ffa4db7bbd2e645d7
>> xe-pw-157804v2: 157804v2
>>
>> == Logs ==
>>
>> For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/index.html
>
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: ✗ Xe.CI.BAT: failure for series starting with [v2,1/2] drm/xe: Track pre-production workaround support (rev2)
2025-11-20 21:59 ` Michal Wajdeczko
@ 2025-11-20 22:05 ` Matt Roper
0 siblings, 0 replies; 16+ messages in thread
From: Matt Roper @ 2025-11-20 22:05 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
On Thu, Nov 20, 2025 at 10:59:46PM +0100, Michal Wajdeczko wrote:
>
>
> On 11/20/2025 10:18 PM, Matt Roper wrote:
> > On Thu, Nov 20, 2025 at 09:14:40PM +0000, Patchwork wrote:
> >> == Series Details ==
> >>
> >> Series: series starting with [v2,1/2] drm/xe: Track pre-production workaround support (rev2)
> >> URL : https://patchwork.freedesktop.org/series/157804/
> >> State : failure
> >>
> >> == Summary ==
> >>
> >> CI Bug Log - changes from xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7_BAT -> xe-pw-157804v2_BAT
> >> ====================================================
> >>
> >> Summary
> >> -------
> >>
> >> **FAILURE**
> >>
> >> Serious unknown changes coming with xe-pw-157804v2_BAT absolutely need to be
> >> verified manually.
> >>
> >> If you think the reported changes have nothing to do with the changes
> >> introduced in xe-pw-157804v2_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 (13 -> 13)
> >> ------------------------------
> >>
> >> No changes in participating hosts
> >>
> >> Possible new issues
> >> -------------------
> >>
> >> Here are the unknown changes that may have been introduced in xe-pw-157804v2_BAT:
> >>
> >> ### IGT changes ###
> >>
> >> #### Possible regressions ####
> >>
> >> * igt@sriov_basic@enable-vfs-autoprobe-on:
> >> - bat-ptl-1: [PASS][1] -> [ABORT][2] +1 other test abort
> >> [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-ptl-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
> >> [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-ptl-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
> >
> > Looks like I'll need to add a !sriov check in the next version as well
> > since VFs don't have access to this register.
> >
> > Michal, we don't have any other means of determining production vs
> > pre-production status on a VF, right?
>
> we could try to add 0x9120 register to the runtime_regs, but that would be unofficial hack
>
> so I guess it's easier to assume that VFs will be enabled only on production parts
Yeah. Since this is mostly a matter of catching cases where there's
still a pre-production part still sitting in an internal CI farm or
something, those settings will almost always be using the same
kernel+driver version for both the PF and VF. So we'll already get the
warning when the PF driver is loaded and a warning from the VF's driver
would just be redundant.
Matt
>
> >
> >
> > Matt
> >
> >> - bat-adlp-7: [PASS][3] -> [ABORT][4] +1 other test abort
> >> [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-adlp-7/igt@sriov_basic@enable-vfs-autoprobe-on.html
> >> [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-adlp-7/igt@sriov_basic@enable-vfs-autoprobe-on.html
> >>
> >> * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1:
> >> - bat-ptl-2: [PASS][5] -> [ABORT][6] +1 other test abort
> >> [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-ptl-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
> >> [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-ptl-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
> >> - bat-atsm-2: [PASS][7] -> [ABORT][8] +1 other test abort
> >> [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-atsm-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
> >> [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-atsm-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
> >>
> >> * igt@xe_module_load@load:
> >> - bat-adlp-vm: [PASS][9] -> [ABORT][10]
> >> [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-adlp-vm/igt@xe_module_load@load.html
> >> [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-adlp-vm/igt@xe_module_load@load.html
> >> - bat-ptl-vm: [PASS][11] -> [ABORT][12]
> >> [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-ptl-vm/igt@xe_module_load@load.html
> >> [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-ptl-vm/igt@xe_module_load@load.html
> >>
> >>
> >> Known issues
> >> ------------
> >>
> >> Here are the changes found in xe-pw-157804v2_BAT that come from known issues:
> >>
> >> ### IGT changes ###
> >>
> >> #### Possible fixes ####
> >>
> >> * igt@xe_waitfence@reltime:
> >> - bat-dg2-oem2: [FAIL][13] ([Intel XE#6520]) -> [PASS][14]
> >> [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/bat-dg2-oem2/igt@xe_waitfence@reltime.html
> >> [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/bat-dg2-oem2/igt@xe_waitfence@reltime.html
> >>
> >>
> >> [Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
> >>
> >>
> >> Build changes
> >> -------------
> >>
> >> * Linux: xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7 -> xe-pw-157804v2
> >>
> >> IGT_8636: 254cd102396ff95d61f2ebe49fc09128878bf483 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> >> xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7: 3d718db04a365cc44a3bc81ffa4db7bbd2e645d7
> >> xe-pw-157804v2: 157804v2
> >>
> >> == Logs ==
> >>
> >> For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/index.html
> >
>
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ Xe.CI.Full: failure for series starting with [v2,1/2] drm/xe: Track pre-production workaround support (rev2)
2025-11-19 22:05 [PATCH 1/2] drm/xe: Track pre-production workaround support Matt Roper
` (8 preceding siblings ...)
2025-11-20 21:14 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2025-11-21 2:13 ` Patchwork
9 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-11-21 2:13 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 27256 bytes --]
== Series Details ==
Series: series starting with [v2,1/2] drm/xe: Track pre-production workaround support (rev2)
URL : https://patchwork.freedesktop.org/series/157804/
State : failure
== Summary ==
CI Bug Log - changes from xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7_FULL -> xe-pw-157804v2_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-157804v2_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-157804v2_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-157804v2_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_eudebug_online@pagefault-write-stress:
- shard-dg2-set2: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-435/igt@xe_eudebug_online@pagefault-write-stress.html
* igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_enhance0:
- shard-adlp: [PASS][2] -> [ABORT][3] +36 other tests abort
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-1/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_enhance0.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-6/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_enhance0.html
Known issues
------------
Here are the changes found in xe-pw-157804v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-dpms@pipe-a-hdmi-a-1:
- shard-adlp: [PASS][4] -> [DMESG-WARN][5] ([Intel XE#2953] / [Intel XE#4173]) +2 other tests dmesg-warn
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-1/igt@kms_async_flips@async-flip-dpms@pipe-a-hdmi-a-1.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-6/igt@kms_async_flips@async-flip-dpms@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#316])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-432/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-432/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#367]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-435/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#3442])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [PASS][10] -> [INCOMPLETE][11] ([Intel XE#3862]) +1 other test incomplete
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#787]) +13 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][14] -> [INCOMPLETE][15] ([Intel XE#1727] / [Intel XE#3113])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][16] -> [INCOMPLETE][17] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#373])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#4354])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-435/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_flip@basic-plain-flip@d-hdmi-a1:
- shard-adlp: [PASS][20] -> [DMESG-WARN][21] ([Intel XE#4543])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-9/igt@kms_flip@basic-plain-flip@d-hdmi-a1.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-2/igt@kms_flip@basic-plain-flip@d-hdmi-a1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [PASS][22] -> [FAIL][23] ([Intel XE#301]) +1 other test fail
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#455]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#651]) +4 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#653]) +7 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#2925])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-435/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#5021])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-435/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1406] / [Intel XE#1489])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-432/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@xe_compute@eu-busy-10s:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#6598])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-435/igt@xe_compute@eu-busy-10s.html
* igt@xe_eudebug@basic-exec-queues-enable:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#4837]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-435/igt@xe_eudebug@basic-exec-queues-enable.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#288]) +5 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-imm.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-mlock-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#4915]) +87 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-435/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-mlock-nomemset.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#255])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-435/igt@xe_huc_copy@huc_copy.html
* igt@xe_oa@create-destroy-userspace-config:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#3573]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-432/igt@xe_oa@create-destroy-userspace-config.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#2284] / [Intel XE#366])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-432/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0:
- shard-lnl: [PASS][38] -> [FAIL][39] ([Intel XE#6251])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-lnl-1/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-lnl-5/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#944])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-432/igt@xe_query@multigpu-query-oa-units.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [FAIL][41] ([Intel XE#6054]) -> [PASS][42] +3 other tests pass
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][43] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345]) -> [PASS][44]
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4:
- shard-dg2-set2: [INCOMPLETE][45] ([Intel XE#2705] / [Intel XE#4212]) -> [PASS][46]
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html
* igt@kms_flip@basic-plain-flip@b-hdmi-a1:
- shard-adlp: [DMESG-WARN][47] ([Intel XE#4543]) -> [PASS][48]
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-9/igt@kms_flip@basic-plain-flip@b-hdmi-a1.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-2/igt@kms_flip@basic-plain-flip@b-hdmi-a1.html
* igt@xe_exec_basic@multigpu-once-null-defer-bind:
- shard-dg2-set2: [INCOMPLETE][49] -> [PASS][50]
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-dg2-463/igt@xe_exec_basic@multigpu-once-null-defer-bind.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-435/igt@xe_exec_basic@multigpu-once-null-defer-bind.html
* igt@xe_module_load@load:
- shard-adlp: ([PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56], [PASS][57], [PASS][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62], [SKIP][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76]) ([Intel XE#378] / [Intel XE#5612]) -> ([PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-1/igt@xe_module_load@load.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-3/igt@xe_module_load@load.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-1/igt@xe_module_load@load.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-6/igt@xe_module_load@load.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-6/igt@xe_module_load@load.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-3/igt@xe_module_load@load.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-3/igt@xe_module_load@load.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-2/igt@xe_module_load@load.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-9/igt@xe_module_load@load.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-9/igt@xe_module_load@load.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-9/igt@xe_module_load@load.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-4/igt@xe_module_load@load.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-2/igt@xe_module_load@load.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-1/igt@xe_module_load@load.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-4/igt@xe_module_load@load.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-4/igt@xe_module_load@load.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-2/igt@xe_module_load@load.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-2/igt@xe_module_load@load.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-4/igt@xe_module_load@load.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-8/igt@xe_module_load@load.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-8/igt@xe_module_load@load.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-8/igt@xe_module_load@load.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-8/igt@xe_module_load@load.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-1/igt@xe_module_load@load.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-2/igt@xe_module_load@load.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-6/igt@xe_module_load@load.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-4/igt@xe_module_load@load.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-4/igt@xe_module_load@load.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-4/igt@xe_module_load@load.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-3/igt@xe_module_load@load.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-3/igt@xe_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-2/igt@xe_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-2/igt@xe_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-2/igt@xe_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-2/igt@xe_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-1/igt@xe_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-1/igt@xe_module_load@load.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-1/igt@xe_module_load@load.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-8/igt@xe_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-8/igt@xe_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-8/igt@xe_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-8/igt@xe_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-8/igt@xe_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-9/igt@xe_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-9/igt@xe_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-9/igt@xe_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-9/igt@xe_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-6/igt@xe_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-6/igt@xe_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-6/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-6/igt@xe_module_load@load.html
* igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0:
- shard-lnl: [FAIL][102] ([Intel XE#6251]) -> [PASS][103]
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-lnl-1/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-lnl-5/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0.html
#### Warnings ####
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic:
- shard-adlp: [DMESG-WARN][104] ([Intel XE#4543]) -> [DMESG-WARN][105] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543]) +1 other test dmesg-warn
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-3/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-4/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][106] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345]) -> [INCOMPLETE][107] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@xe_exec_system_allocator@threads-many-new:
- shard-dg2-set2: [SKIP][108] ([Intel XE#4915]) -> [INCOMPLETE][109] ([Intel XE#2594])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-dg2-433/igt@xe_exec_system_allocator@threads-many-new.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-dg2-463/igt@xe_exec_system_allocator@threads-many-new.html
* igt@xe_pmu@all-fn-engine-activity-load@engine-drm_xe_engine_class_render0:
- shard-adlp: [TIMEOUT][110] ([Intel XE#5213] / [Intel XE#6421]) -> [ABORT][111] ([Intel XE#5545]) +1 other test abort
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7/shard-adlp-9/igt@xe_pmu@all-fn-engine-activity-load@engine-drm_xe_engine_class_render0.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/shard-adlp-8/igt@xe_pmu@all-fn-engine-activity-load@engine-drm_xe_engine_class_render0.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5612]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5612
[Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
[Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
[Intel XE#6421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6421
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#6598]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6598
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7 -> xe-pw-157804v2
IGT_8636: 254cd102396ff95d61f2ebe49fc09128878bf483 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4135-3d718db04a365cc44a3bc81ffa4db7bbd2e645d7: 3d718db04a365cc44a3bc81ffa4db7bbd2e645d7
xe-pw-157804v2: 157804v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157804v2/index.html
[-- Attachment #2: Type: text/html, Size: 30626 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread