* [PATCH v1] drm/xe/cri: Enable I2C controller
@ 2025-11-28 8:44 Raag Jadav
2025-11-28 8:52 ` ✓ CI.KUnit: success for " Patchwork
` (8 more replies)
0 siblings, 9 replies; 15+ messages in thread
From: Raag Jadav @ 2025-11-28 8:44 UTC (permalink / raw)
To: intel-xe; +Cc: rodrigo.vivi, heikki.krogerus, andi.shyti, Raag Jadav
Enable I2C controller for Crescent Island and while at it, rely on
has_i2c flag instead of manual platform checks.
Signed-off-by: Raag Jadav <raag.jadav@intel.com>
---
drivers/gpu/drm/xe/xe_device_types.h | 2 ++
drivers/gpu/drm/xe/xe_i2c.c | 2 +-
drivers/gpu/drm/xe/xe_pci.c | 3 +++
drivers/gpu/drm/xe/xe_pci_types.h | 1 +
4 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
index 9a9a8eb84a78..e23c50273c28 100644
--- a/drivers/gpu/drm/xe/xe_device_types.h
+++ b/drivers/gpu/drm/xe/xe_device_types.h
@@ -299,6 +299,8 @@ struct xe_device {
u8 has_heci_cscfi:1;
/** @info.has_heci_gscfi: device has heci gscfi */
u8 has_heci_gscfi:1;
+ /** @info.has_i2c: Device has I2C controller */
+ u8 has_i2c:1;
/** @info.has_late_bind: Device has firmware late binding support */
u8 has_late_bind:1;
/** @info.has_llc: Device has a shared CPU+GPU last level cache */
diff --git a/drivers/gpu/drm/xe/xe_i2c.c b/drivers/gpu/drm/xe/xe_i2c.c
index 0b5452be0c87..8eccbae05705 100644
--- a/drivers/gpu/drm/xe/xe_i2c.c
+++ b/drivers/gpu/drm/xe/xe_i2c.c
@@ -319,7 +319,7 @@ int xe_i2c_probe(struct xe_device *xe)
struct xe_i2c *i2c;
int ret;
- if (xe->info.platform != XE_BATTLEMAGE)
+ if (!xe->info.has_i2c)
return 0;
if (IS_SRIOV_VF(xe))
diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
index 763f588521d0..2e2e9158d621 100644
--- a/drivers/gpu/drm/xe/xe_pci.c
+++ b/drivers/gpu/drm/xe/xe_pci.c
@@ -366,6 +366,7 @@ static const struct xe_device_desc bmg_desc = {
.has_mbx_power_limits = true,
.has_gsc_nvm = 1,
.has_heci_cscfi = 1,
+ .has_i2c = true,
.has_late_bind = true,
.has_sriov = true,
.has_mem_copy_instr = true,
@@ -411,6 +412,7 @@ static const struct xe_device_desc cri_desc = {
.dma_mask_size = 52,
.has_display = false,
.has_flat_ccs = false,
+ .has_i2c = true,
.has_mbx_power_limits = true,
.has_mert = true,
.has_sriov = true,
@@ -676,6 +678,7 @@ static int xe_info_init_early(struct xe_device *xe,
xe->info.has_gsc_nvm = desc->has_gsc_nvm;
xe->info.has_heci_gscfi = desc->has_heci_gscfi;
xe->info.has_heci_cscfi = desc->has_heci_cscfi;
+ xe->info.has_i2c = desc->has_i2c;
xe->info.has_late_bind = desc->has_late_bind;
xe->info.has_llc = desc->has_llc;
xe->info.has_mert = desc->has_mert;
diff --git a/drivers/gpu/drm/xe/xe_pci_types.h b/drivers/gpu/drm/xe/xe_pci_types.h
index f19f35359696..6de23ddf6f68 100644
--- a/drivers/gpu/drm/xe/xe_pci_types.h
+++ b/drivers/gpu/drm/xe/xe_pci_types.h
@@ -44,6 +44,7 @@ struct xe_device_desc {
u8 has_gsc_nvm:1;
u8 has_heci_gscfi:1;
u8 has_heci_cscfi:1;
+ u8 has_i2c:1;
u8 has_late_bind:1;
u8 has_llc:1;
u8 has_mbx_power_limits:1;
--
2.43.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* ✓ CI.KUnit: success for drm/xe/cri: Enable I2C controller
2025-11-28 8:44 [PATCH v1] drm/xe/cri: Enable I2C controller Raag Jadav
@ 2025-11-28 8:52 ` Patchwork
2025-12-01 20:27 ` [PATCH v1] " Rodrigo Vivi
` (7 subsequent siblings)
8 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2025-11-28 8:52 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe
== Series Details ==
Series: drm/xe/cri: Enable I2C controller
URL : https://patchwork.freedesktop.org/series/158198/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[08:50:51] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:50:55] 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
[08:51:26] Starting KUnit Kernel (1/1)...
[08:51:26] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:51:26] ================== guc_buf (11 subtests) ===================
[08:51:26] [PASSED] test_smallest
[08:51:26] [PASSED] test_largest
[08:51:26] [PASSED] test_granular
[08:51:26] [PASSED] test_unique
[08:51:26] [PASSED] test_overlap
[08:51:26] [PASSED] test_reusable
[08:51:26] [PASSED] test_too_big
[08:51:26] [PASSED] test_flush
[08:51:26] [PASSED] test_lookup
[08:51:26] [PASSED] test_data
[08:51:26] [PASSED] test_class
[08:51:26] ===================== [PASSED] guc_buf =====================
[08:51:26] =================== guc_dbm (7 subtests) ===================
[08:51:26] [PASSED] test_empty
[08:51:26] [PASSED] test_default
[08:51:26] ======================== test_size ========================
[08:51:26] [PASSED] 4
[08:51:26] [PASSED] 8
[08:51:26] [PASSED] 32
[08:51:26] [PASSED] 256
[08:51:26] ==================== [PASSED] test_size ====================
[08:51:26] ======================= test_reuse ========================
[08:51:26] [PASSED] 4
[08:51:26] [PASSED] 8
[08:51:26] [PASSED] 32
[08:51:26] [PASSED] 256
[08:51:26] =================== [PASSED] test_reuse ====================
[08:51:26] =================== test_range_overlap ====================
[08:51:26] [PASSED] 4
[08:51:26] [PASSED] 8
[08:51:26] [PASSED] 32
[08:51:26] [PASSED] 256
[08:51:26] =============== [PASSED] test_range_overlap ================
[08:51:26] =================== test_range_compact ====================
[08:51:26] [PASSED] 4
[08:51:26] [PASSED] 8
[08:51:26] [PASSED] 32
[08:51:26] [PASSED] 256
[08:51:26] =============== [PASSED] test_range_compact ================
[08:51:26] ==================== test_range_spare =====================
[08:51:26] [PASSED] 4
[08:51:26] [PASSED] 8
[08:51:26] [PASSED] 32
[08:51:26] [PASSED] 256
[08:51:26] ================ [PASSED] test_range_spare =================
[08:51:26] ===================== [PASSED] guc_dbm =====================
[08:51:26] =================== guc_idm (6 subtests) ===================
[08:51:26] [PASSED] bad_init
[08:51:26] [PASSED] no_init
[08:51:26] [PASSED] init_fini
[08:51:26] [PASSED] check_used
[08:51:26] [PASSED] check_quota
[08:51:26] [PASSED] check_all
[08:51:26] ===================== [PASSED] guc_idm =====================
[08:51:26] ================== no_relay (3 subtests) ===================
[08:51:26] [PASSED] xe_drops_guc2pf_if_not_ready
[08:51:26] [PASSED] xe_drops_guc2vf_if_not_ready
[08:51:26] [PASSED] xe_rejects_send_if_not_ready
[08:51:26] ==================== [PASSED] no_relay =====================
[08:51:26] ================== pf_relay (14 subtests) ==================
[08:51:26] [PASSED] pf_rejects_guc2pf_too_short
[08:51:26] [PASSED] pf_rejects_guc2pf_too_long
[08:51:26] [PASSED] pf_rejects_guc2pf_no_payload
[08:51:26] [PASSED] pf_fails_no_payload
[08:51:26] [PASSED] pf_fails_bad_origin
[08:51:26] [PASSED] pf_fails_bad_type
[08:51:26] [PASSED] pf_txn_reports_error
[08:51:26] [PASSED] pf_txn_sends_pf2guc
[08:51:26] [PASSED] pf_sends_pf2guc
[08:51:26] [SKIPPED] pf_loopback_nop
[08:51:26] [SKIPPED] pf_loopback_echo
[08:51:26] [SKIPPED] pf_loopback_fail
[08:51:26] [SKIPPED] pf_loopback_busy
[08:51:26] [SKIPPED] pf_loopback_retry
[08:51:26] ==================== [PASSED] pf_relay =====================
[08:51:26] ================== vf_relay (3 subtests) ===================
[08:51:26] [PASSED] vf_rejects_guc2vf_too_short
[08:51:26] [PASSED] vf_rejects_guc2vf_too_long
[08:51:26] [PASSED] vf_rejects_guc2vf_no_payload
[08:51:26] ==================== [PASSED] vf_relay =====================
[08:51:26] ================ pf_gt_config (6 subtests) =================
[08:51:26] [PASSED] fair_contexts_1vf
[08:51:26] [PASSED] fair_doorbells_1vf
[08:51:26] [PASSED] fair_ggtt_1vf
[08:51:26] ====================== fair_contexts ======================
[08:51:26] [PASSED] 1 VF
[08:51:26] [PASSED] 2 VFs
[08:51:26] [PASSED] 3 VFs
[08:51:26] [PASSED] 4 VFs
[08:51:26] [PASSED] 5 VFs
[08:51:26] [PASSED] 6 VFs
[08:51:26] [PASSED] 7 VFs
[08:51:26] [PASSED] 8 VFs
[08:51:26] [PASSED] 9 VFs
[08:51:26] [PASSED] 10 VFs
[08:51:26] [PASSED] 11 VFs
[08:51:26] [PASSED] 12 VFs
[08:51:26] [PASSED] 13 VFs
[08:51:26] [PASSED] 14 VFs
[08:51:26] [PASSED] 15 VFs
[08:51:26] [PASSED] 16 VFs
[08:51:26] [PASSED] 17 VFs
[08:51:26] [PASSED] 18 VFs
[08:51:26] [PASSED] 19 VFs
[08:51:26] [PASSED] 20 VFs
[08:51:26] [PASSED] 21 VFs
[08:51:26] [PASSED] 22 VFs
[08:51:26] [PASSED] 23 VFs
[08:51:26] [PASSED] 24 VFs
[08:51:26] [PASSED] 25 VFs
[08:51:26] [PASSED] 26 VFs
[08:51:26] [PASSED] 27 VFs
[08:51:26] [PASSED] 28 VFs
[08:51:26] [PASSED] 29 VFs
[08:51:26] [PASSED] 30 VFs
[08:51:26] [PASSED] 31 VFs
[08:51:26] [PASSED] 32 VFs
[08:51:26] [PASSED] 33 VFs
[08:51:26] [PASSED] 34 VFs
[08:51:26] [PASSED] 35 VFs
[08:51:26] [PASSED] 36 VFs
[08:51:26] [PASSED] 37 VFs
[08:51:26] [PASSED] 38 VFs
[08:51:26] [PASSED] 39 VFs
[08:51:26] [PASSED] 40 VFs
[08:51:26] [PASSED] 41 VFs
[08:51:26] [PASSED] 42 VFs
[08:51:26] [PASSED] 43 VFs
[08:51:26] [PASSED] 44 VFs
[08:51:26] [PASSED] 45 VFs
[08:51:26] [PASSED] 46 VFs
[08:51:26] [PASSED] 47 VFs
[08:51:26] [PASSED] 48 VFs
[08:51:26] [PASSED] 49 VFs
[08:51:26] [PASSED] 50 VFs
[08:51:26] [PASSED] 51 VFs
[08:51:26] [PASSED] 52 VFs
[08:51:26] [PASSED] 53 VFs
[08:51:26] [PASSED] 54 VFs
[08:51:26] [PASSED] 55 VFs
[08:51:26] [PASSED] 56 VFs
[08:51:26] [PASSED] 57 VFs
[08:51:26] [PASSED] 58 VFs
[08:51:26] [PASSED] 59 VFs
[08:51:26] [PASSED] 60 VFs
[08:51:26] [PASSED] 61 VFs
[08:51:26] [PASSED] 62 VFs
[08:51:26] [PASSED] 63 VFs
[08:51:26] ================== [PASSED] fair_contexts ==================
[08:51:26] ===================== fair_doorbells ======================
[08:51:26] [PASSED] 1 VF
[08:51:26] [PASSED] 2 VFs
[08:51:26] [PASSED] 3 VFs
[08:51:26] [PASSED] 4 VFs
[08:51:26] [PASSED] 5 VFs
[08:51:26] [PASSED] 6 VFs
[08:51:26] [PASSED] 7 VFs
[08:51:26] [PASSED] 8 VFs
[08:51:26] [PASSED] 9 VFs
[08:51:26] [PASSED] 10 VFs
[08:51:26] [PASSED] 11 VFs
[08:51:26] [PASSED] 12 VFs
[08:51:26] [PASSED] 13 VFs
[08:51:26] [PASSED] 14 VFs
[08:51:26] [PASSED] 15 VFs
[08:51:26] [PASSED] 16 VFs
[08:51:26] [PASSED] 17 VFs
[08:51:26] [PASSED] 18 VFs
[08:51:26] [PASSED] 19 VFs
[08:51:26] [PASSED] 20 VFs
[08:51:26] [PASSED] 21 VFs
[08:51:26] [PASSED] 22 VFs
[08:51:26] [PASSED] 23 VFs
[08:51:26] [PASSED] 24 VFs
[08:51:26] [PASSED] 25 VFs
[08:51:26] [PASSED] 26 VFs
[08:51:26] [PASSED] 27 VFs
[08:51:26] [PASSED] 28 VFs
[08:51:26] [PASSED] 29 VFs
[08:51:26] [PASSED] 30 VFs
[08:51:26] [PASSED] 31 VFs
[08:51:26] [PASSED] 32 VFs
[08:51:26] [PASSED] 33 VFs
[08:51:26] [PASSED] 34 VFs
[08:51:26] [PASSED] 35 VFs
[08:51:26] [PASSED] 36 VFs
[08:51:26] [PASSED] 37 VFs
[08:51:26] [PASSED] 38 VFs
[08:51:26] [PASSED] 39 VFs
[08:51:26] [PASSED] 40 VFs
[08:51:26] [PASSED] 41 VFs
[08:51:26] [PASSED] 42 VFs
[08:51:26] [PASSED] 43 VFs
[08:51:26] [PASSED] 44 VFs
[08:51:26] [PASSED] 45 VFs
[08:51:26] [PASSED] 46 VFs
[08:51:26] [PASSED] 47 VFs
[08:51:26] [PASSED] 48 VFs
[08:51:26] [PASSED] 49 VFs
[08:51:26] [PASSED] 50 VFs
[08:51:26] [PASSED] 51 VFs
[08:51:26] [PASSED] 52 VFs
[08:51:26] [PASSED] 53 VFs
[08:51:26] [PASSED] 54 VFs
[08:51:26] [PASSED] 55 VFs
[08:51:26] [PASSED] 56 VFs
[08:51:26] [PASSED] 57 VFs
[08:51:26] [PASSED] 58 VFs
[08:51:26] [PASSED] 59 VFs
[08:51:26] [PASSED] 60 VFs
[08:51:26] [PASSED] 61 VFs
[08:51:26] [PASSED] 62 VFs
[08:51:26] [PASSED] 63 VFs
[08:51:26] ================= [PASSED] fair_doorbells ==================
[08:51:26] ======================== fair_ggtt ========================
[08:51:26] [PASSED] 1 VF
[08:51:26] [PASSED] 2 VFs
[08:51:26] [PASSED] 3 VFs
[08:51:26] [PASSED] 4 VFs
[08:51:26] [PASSED] 5 VFs
[08:51:26] [PASSED] 6 VFs
[08:51:26] [PASSED] 7 VFs
[08:51:26] [PASSED] 8 VFs
[08:51:26] [PASSED] 9 VFs
[08:51:26] [PASSED] 10 VFs
[08:51:26] [PASSED] 11 VFs
[08:51:26] [PASSED] 12 VFs
[08:51:26] [PASSED] 13 VFs
[08:51:26] [PASSED] 14 VFs
[08:51:26] [PASSED] 15 VFs
[08:51:26] [PASSED] 16 VFs
[08:51:26] [PASSED] 17 VFs
[08:51:26] [PASSED] 18 VFs
[08:51:26] [PASSED] 19 VFs
[08:51:26] [PASSED] 20 VFs
[08:51:26] [PASSED] 21 VFs
[08:51:26] [PASSED] 22 VFs
[08:51:26] [PASSED] 23 VFs
[08:51:26] [PASSED] 24 VFs
[08:51:26] [PASSED] 25 VFs
[08:51:26] [PASSED] 26 VFs
[08:51:26] [PASSED] 27 VFs
[08:51:26] [PASSED] 28 VFs
[08:51:26] [PASSED] 29 VFs
[08:51:26] [PASSED] 30 VFs
[08:51:26] [PASSED] 31 VFs
[08:51:26] [PASSED] 32 VFs
[08:51:26] [PASSED] 33 VFs
[08:51:26] [PASSED] 34 VFs
[08:51:26] [PASSED] 35 VFs
[08:51:26] [PASSED] 36 VFs
[08:51:26] [PASSED] 37 VFs
[08:51:26] [PASSED] 38 VFs
[08:51:26] [PASSED] 39 VFs
[08:51:26] [PASSED] 40 VFs
[08:51:26] [PASSED] 41 VFs
[08:51:26] [PASSED] 42 VFs
[08:51:26] [PASSED] 43 VFs
[08:51:26] [PASSED] 44 VFs
[08:51:26] [PASSED] 45 VFs
[08:51:26] [PASSED] 46 VFs
[08:51:26] [PASSED] 47 VFs
[08:51:26] [PASSED] 48 VFs
[08:51:26] [PASSED] 49 VFs
[08:51:26] [PASSED] 50 VFs
[08:51:26] [PASSED] 51 VFs
[08:51:26] [PASSED] 52 VFs
[08:51:26] [PASSED] 53 VFs
[08:51:26] [PASSED] 54 VFs
[08:51:26] [PASSED] 55 VFs
[08:51:26] [PASSED] 56 VFs
[08:51:26] [PASSED] 57 VFs
[08:51:26] [PASSED] 58 VFs
[08:51:26] [PASSED] 59 VFs
[08:51:26] [PASSED] 60 VFs
[08:51:26] [PASSED] 61 VFs
[08:51:26] [PASSED] 62 VFs
[08:51:26] [PASSED] 63 VFs
[08:51:26] ==================== [PASSED] fair_ggtt ====================
[08:51:26] ================== [PASSED] pf_gt_config ===================
[08:51:26] ===================== lmtt (1 subtest) =====================
[08:51:26] ======================== test_ops =========================
[08:51:26] [PASSED] 2-level
[08:51:26] [PASSED] multi-level
[08:51:26] ==================== [PASSED] test_ops =====================
[08:51:26] ====================== [PASSED] lmtt =======================
[08:51:26] ================= pf_service (11 subtests) =================
[08:51:26] [PASSED] pf_negotiate_any
[08:51:26] [PASSED] pf_negotiate_base_match
[08:51:26] [PASSED] pf_negotiate_base_newer
[08:51:26] [PASSED] pf_negotiate_base_next
[08:51:26] [SKIPPED] pf_negotiate_base_older
[08:51:26] [PASSED] pf_negotiate_base_prev
[08:51:26] [PASSED] pf_negotiate_latest_match
[08:51:26] [PASSED] pf_negotiate_latest_newer
[08:51:26] [PASSED] pf_negotiate_latest_next
[08:51:26] [SKIPPED] pf_negotiate_latest_older
[08:51:26] [SKIPPED] pf_negotiate_latest_prev
[08:51:26] =================== [PASSED] pf_service ====================
[08:51:26] ================= xe_guc_g2g (2 subtests) ==================
[08:51:26] ============== xe_live_guc_g2g_kunit_default ==============
[08:51:26] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[08:51:26] ============== xe_live_guc_g2g_kunit_allmem ===============
[08:51:26] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[08:51:26] =================== [SKIPPED] xe_guc_g2g ===================
[08:51:26] =================== xe_mocs (2 subtests) ===================
[08:51:26] ================ xe_live_mocs_kernel_kunit ================
[08:51:26] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[08:51:26] ================ xe_live_mocs_reset_kunit =================
[08:51:26] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[08:51:26] ==================== [SKIPPED] xe_mocs =====================
[08:51:26] ================= xe_migrate (2 subtests) ==================
[08:51:26] ================= xe_migrate_sanity_kunit =================
[08:51:26] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[08:51:26] ================== xe_validate_ccs_kunit ==================
[08:51:26] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[08:51:26] =================== [SKIPPED] xe_migrate ===================
[08:51:26] ================== xe_dma_buf (1 subtest) ==================
[08:51:26] ==================== xe_dma_buf_kunit =====================
[08:51:26] ================ [SKIPPED] xe_dma_buf_kunit ================
[08:51:26] =================== [SKIPPED] xe_dma_buf ===================
[08:51:26] ================= xe_bo_shrink (1 subtest) =================
[08:51:26] =================== xe_bo_shrink_kunit ====================
[08:51:26] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[08:51:26] ================== [SKIPPED] xe_bo_shrink ==================
[08:51:26] ==================== xe_bo (2 subtests) ====================
[08:51:26] ================== xe_ccs_migrate_kunit ===================
[08:51:26] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[08:51:26] ==================== xe_bo_evict_kunit ====================
[08:51:26] =============== [SKIPPED] xe_bo_evict_kunit ================
[08:51:26] ===================== [SKIPPED] xe_bo ======================
[08:51:26] ==================== args (11 subtests) ====================
[08:51:26] [PASSED] count_args_test
[08:51:26] [PASSED] call_args_example
[08:51:26] [PASSED] call_args_test
[08:51:26] [PASSED] drop_first_arg_example
[08:51:26] [PASSED] drop_first_arg_test
[08:51:26] [PASSED] first_arg_example
[08:51:26] [PASSED] first_arg_test
[08:51:26] [PASSED] last_arg_example
[08:51:26] [PASSED] last_arg_test
[08:51:26] [PASSED] pick_arg_example
[08:51:26] [PASSED] sep_comma_example
[08:51:26] ====================== [PASSED] args =======================
[08:51:26] =================== xe_pci (3 subtests) ====================
[08:51:26] ==================== check_graphics_ip ====================
[08:51:26] [PASSED] 12.00 Xe_LP
[08:51:26] [PASSED] 12.10 Xe_LP+
[08:51:26] [PASSED] 12.55 Xe_HPG
[08:51:26] [PASSED] 12.60 Xe_HPC
[08:51:26] [PASSED] 12.70 Xe_LPG
[08:51:26] [PASSED] 12.71 Xe_LPG
[08:51:26] [PASSED] 12.74 Xe_LPG+
[08:51:26] [PASSED] 20.01 Xe2_HPG
[08:51:26] [PASSED] 20.02 Xe2_HPG
[08:51:26] [PASSED] 20.04 Xe2_LPG
[08:51:26] [PASSED] 30.00 Xe3_LPG
[08:51:26] [PASSED] 30.01 Xe3_LPG
[08:51:26] [PASSED] 30.03 Xe3_LPG
[08:51:26] [PASSED] 30.04 Xe3_LPG
[08:51:26] [PASSED] 30.05 Xe3_LPG
[08:51:26] [PASSED] 35.11 Xe3p_XPC
[08:51:26] ================ [PASSED] check_graphics_ip ================
[08:51:26] ===================== check_media_ip ======================
[08:51:26] [PASSED] 12.00 Xe_M
[08:51:26] [PASSED] 12.55 Xe_HPM
[08:51:26] [PASSED] 13.00 Xe_LPM+
[08:51:26] [PASSED] 13.01 Xe2_HPM
[08:51:26] [PASSED] 20.00 Xe2_LPM
[08:51:26] [PASSED] 30.00 Xe3_LPM
[08:51:26] [PASSED] 30.02 Xe3_LPM
[08:51:26] [PASSED] 35.00 Xe3p_LPM
[08:51:26] [PASSED] 35.03 Xe3p_HPM
[08:51:26] ================= [PASSED] check_media_ip ==================
[08:51:26] =================== check_platform_desc ===================
[08:51:26] [PASSED] 0x9A60 (TIGERLAKE)
[08:51:26] [PASSED] 0x9A68 (TIGERLAKE)
[08:51:26] [PASSED] 0x9A70 (TIGERLAKE)
[08:51:26] [PASSED] 0x9A40 (TIGERLAKE)
[08:51:26] [PASSED] 0x9A49 (TIGERLAKE)
[08:51:26] [PASSED] 0x9A59 (TIGERLAKE)
[08:51:26] [PASSED] 0x9A78 (TIGERLAKE)
[08:51:26] [PASSED] 0x9AC0 (TIGERLAKE)
[08:51:26] [PASSED] 0x9AC9 (TIGERLAKE)
[08:51:26] [PASSED] 0x9AD9 (TIGERLAKE)
[08:51:26] [PASSED] 0x9AF8 (TIGERLAKE)
[08:51:26] [PASSED] 0x4C80 (ROCKETLAKE)
[08:51:26] [PASSED] 0x4C8A (ROCKETLAKE)
[08:51:26] [PASSED] 0x4C8B (ROCKETLAKE)
[08:51:26] [PASSED] 0x4C8C (ROCKETLAKE)
[08:51:26] [PASSED] 0x4C90 (ROCKETLAKE)
[08:51:26] [PASSED] 0x4C9A (ROCKETLAKE)
[08:51:26] [PASSED] 0x4680 (ALDERLAKE_S)
[08:51:26] [PASSED] 0x4682 (ALDERLAKE_S)
[08:51:26] [PASSED] 0x4688 (ALDERLAKE_S)
[08:51:26] [PASSED] 0x468A (ALDERLAKE_S)
[08:51:26] [PASSED] 0x468B (ALDERLAKE_S)
[08:51:26] [PASSED] 0x4690 (ALDERLAKE_S)
[08:51:26] [PASSED] 0x4692 (ALDERLAKE_S)
[08:51:26] [PASSED] 0x4693 (ALDERLAKE_S)
[08:51:26] [PASSED] 0x46A0 (ALDERLAKE_P)
[08:51:26] [PASSED] 0x46A1 (ALDERLAKE_P)
[08:51:26] [PASSED] 0x46A2 (ALDERLAKE_P)
[08:51:26] [PASSED] 0x46A3 (ALDERLAKE_P)
[08:51:26] [PASSED] 0x46A6 (ALDERLAKE_P)
[08:51:26] [PASSED] 0x46A8 (ALDERLAKE_P)
[08:51:26] [PASSED] 0x46AA (ALDERLAKE_P)
[08:51:26] [PASSED] 0x462A (ALDERLAKE_P)
[08:51:26] [PASSED] 0x4626 (ALDERLAKE_P)
[08:51:26] [PASSED] 0x4628 (ALDERLAKE_P)
[08:51:26] [PASSED] 0x46B0 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[08:51:26] [PASSED] 0x46B1 (ALDERLAKE_P)
[08:51:26] [PASSED] 0x46B2 (ALDERLAKE_P)
[08:51:26] [PASSED] 0x46B3 (ALDERLAKE_P)
[08:51:26] [PASSED] 0x46C0 (ALDERLAKE_P)
[08:51:26] [PASSED] 0x46C1 (ALDERLAKE_P)
[08:51:26] [PASSED] 0x46C2 (ALDERLAKE_P)
[08:51:26] [PASSED] 0x46C3 (ALDERLAKE_P)
[08:51:26] [PASSED] 0x46D0 (ALDERLAKE_N)
[08:51:26] [PASSED] 0x46D1 (ALDERLAKE_N)
[08:51:26] [PASSED] 0x46D2 (ALDERLAKE_N)
[08:51:26] [PASSED] 0x46D3 (ALDERLAKE_N)
[08:51:26] [PASSED] 0x46D4 (ALDERLAKE_N)
[08:51:26] [PASSED] 0xA721 (ALDERLAKE_P)
[08:51:26] [PASSED] 0xA7A1 (ALDERLAKE_P)
[08:51:26] [PASSED] 0xA7A9 (ALDERLAKE_P)
[08:51:26] [PASSED] 0xA7AC (ALDERLAKE_P)
[08:51:26] [PASSED] 0xA7AD (ALDERLAKE_P)
[08:51:26] [PASSED] 0xA720 (ALDERLAKE_P)
[08:51:26] [PASSED] 0xA7A0 (ALDERLAKE_P)
[08:51:26] [PASSED] 0xA7A8 (ALDERLAKE_P)
[08:51:26] [PASSED] 0xA7AA (ALDERLAKE_P)
[08:51:26] [PASSED] 0xA7AB (ALDERLAKE_P)
[08:51:26] [PASSED] 0xA780 (ALDERLAKE_S)
[08:51:26] [PASSED] 0xA781 (ALDERLAKE_S)
[08:51:26] [PASSED] 0xA782 (ALDERLAKE_S)
[08:51:26] [PASSED] 0xA783 (ALDERLAKE_S)
[08:51:26] [PASSED] 0xA788 (ALDERLAKE_S)
[08:51:26] [PASSED] 0xA789 (ALDERLAKE_S)
[08:51:26] [PASSED] 0xA78A (ALDERLAKE_S)
[08:51:26] [PASSED] 0xA78B (ALDERLAKE_S)
[08:51:26] [PASSED] 0x4905 (DG1)
[08:51:26] [PASSED] 0x4906 (DG1)
[08:51:26] [PASSED] 0x4907 (DG1)
[08:51:26] [PASSED] 0x4908 (DG1)
[08:51:26] [PASSED] 0x4909 (DG1)
[08:51:26] [PASSED] 0x56C0 (DG2)
[08:51:26] [PASSED] 0x56C2 (DG2)
[08:51:26] [PASSED] 0x56C1 (DG2)
[08:51:26] [PASSED] 0x7D51 (METEORLAKE)
[08:51:26] [PASSED] 0x7DD1 (METEORLAKE)
[08:51:26] [PASSED] 0x7D41 (METEORLAKE)
[08:51:26] [PASSED] 0x7D67 (METEORLAKE)
[08:51:26] [PASSED] 0xB640 (METEORLAKE)
[08:51:26] [PASSED] 0x56A0 (DG2)
[08:51:26] [PASSED] 0x56A1 (DG2)
[08:51:26] [PASSED] 0x56A2 (DG2)
[08:51:26] [PASSED] 0x56BE (DG2)
[08:51:26] [PASSED] 0x56BF (DG2)
[08:51:26] [PASSED] 0x5690 (DG2)
[08:51:26] [PASSED] 0x5691 (DG2)
[08:51:26] [PASSED] 0x5692 (DG2)
[08:51:26] [PASSED] 0x56A5 (DG2)
[08:51:26] [PASSED] 0x56A6 (DG2)
[08:51:26] [PASSED] 0x56B0 (DG2)
[08:51:26] [PASSED] 0x56B1 (DG2)
[08:51:26] [PASSED] 0x56BA (DG2)
[08:51:26] [PASSED] 0x56BB (DG2)
[08:51:26] [PASSED] 0x56BC (DG2)
[08:51:26] [PASSED] 0x56BD (DG2)
[08:51:26] [PASSED] 0x5693 (DG2)
[08:51:26] [PASSED] 0x5694 (DG2)
[08:51:26] [PASSED] 0x5695 (DG2)
[08:51:26] [PASSED] 0x56A3 (DG2)
[08:51:26] [PASSED] 0x56A4 (DG2)
[08:51:26] [PASSED] 0x56B2 (DG2)
[08:51:26] [PASSED] 0x56B3 (DG2)
[08:51:26] [PASSED] 0x5696 (DG2)
[08:51:26] [PASSED] 0x5697 (DG2)
[08:51:26] [PASSED] 0xB69 (PVC)
[08:51:26] [PASSED] 0xB6E (PVC)
[08:51:26] [PASSED] 0xBD4 (PVC)
[08:51:26] [PASSED] 0xBD5 (PVC)
[08:51:26] [PASSED] 0xBD6 (PVC)
[08:51:26] [PASSED] 0xBD7 (PVC)
[08:51:26] [PASSED] 0xBD8 (PVC)
[08:51:26] [PASSED] 0xBD9 (PVC)
[08:51:26] [PASSED] 0xBDA (PVC)
[08:51:26] [PASSED] 0xBDB (PVC)
[08:51:26] [PASSED] 0xBE0 (PVC)
[08:51:26] [PASSED] 0xBE1 (PVC)
[08:51:26] [PASSED] 0xBE5 (PVC)
[08:51:26] [PASSED] 0x7D40 (METEORLAKE)
[08:51:26] [PASSED] 0x7D45 (METEORLAKE)
[08:51:26] [PASSED] 0x7D55 (METEORLAKE)
[08:51:26] [PASSED] 0x7D60 (METEORLAKE)
[08:51:26] [PASSED] 0x7DD5 (METEORLAKE)
[08:51:26] [PASSED] 0x6420 (LUNARLAKE)
[08:51:26] [PASSED] 0x64A0 (LUNARLAKE)
[08:51:26] [PASSED] 0x64B0 (LUNARLAKE)
[08:51:26] [PASSED] 0xE202 (BATTLEMAGE)
[08:51:26] [PASSED] 0xE209 (BATTLEMAGE)
[08:51:26] [PASSED] 0xE20B (BATTLEMAGE)
[08:51:26] [PASSED] 0xE20C (BATTLEMAGE)
[08:51:26] [PASSED] 0xE20D (BATTLEMAGE)
[08:51:26] [PASSED] 0xE210 (BATTLEMAGE)
[08:51:26] [PASSED] 0xE211 (BATTLEMAGE)
[08:51:26] [PASSED] 0xE212 (BATTLEMAGE)
[08:51:26] [PASSED] 0xE216 (BATTLEMAGE)
[08:51:26] [PASSED] 0xE220 (BATTLEMAGE)
[08:51:26] [PASSED] 0xE221 (BATTLEMAGE)
[08:51:26] [PASSED] 0xE222 (BATTLEMAGE)
[08:51:26] [PASSED] 0xE223 (BATTLEMAGE)
[08:51:26] [PASSED] 0xB080 (PANTHERLAKE)
[08:51:26] [PASSED] 0xB081 (PANTHERLAKE)
[08:51:26] [PASSED] 0xB082 (PANTHERLAKE)
[08:51:26] [PASSED] 0xB083 (PANTHERLAKE)
[08:51:26] [PASSED] 0xB084 (PANTHERLAKE)
[08:51:26] [PASSED] 0xB085 (PANTHERLAKE)
[08:51:26] [PASSED] 0xB086 (PANTHERLAKE)
[08:51:26] [PASSED] 0xB087 (PANTHERLAKE)
[08:51:26] [PASSED] 0xB08F (PANTHERLAKE)
[08:51:26] [PASSED] 0xB090 (PANTHERLAKE)
[08:51:26] [PASSED] 0xB0A0 (PANTHERLAKE)
[08:51:26] [PASSED] 0xB0B0 (PANTHERLAKE)
[08:51:26] [PASSED] 0xD740 (NOVALAKE_S)
[08:51:26] [PASSED] 0xD741 (NOVALAKE_S)
[08:51:26] [PASSED] 0xD742 (NOVALAKE_S)
[08:51:26] [PASSED] 0xD743 (NOVALAKE_S)
[08:51:26] [PASSED] 0xD744 (NOVALAKE_S)
[08:51:26] [PASSED] 0xD745 (NOVALAKE_S)
[08:51:26] [PASSED] 0x674C (CRESCENTISLAND)
[08:51:26] [PASSED] 0xFD80 (PANTHERLAKE)
[08:51:26] [PASSED] 0xFD81 (PANTHERLAKE)
[08:51:26] =============== [PASSED] check_platform_desc ===============
[08:51:26] ===================== [PASSED] xe_pci ======================
[08:51:26] =================== xe_rtp (2 subtests) ====================
[08:51:26] =============== xe_rtp_process_to_sr_tests ================
[08:51:26] [PASSED] coalesce-same-reg
[08:51:26] [PASSED] no-match-no-add
[08:51:26] [PASSED] match-or
[08:51:26] [PASSED] match-or-xfail
[08:51:26] [PASSED] no-match-no-add-multiple-rules
[08:51:26] [PASSED] two-regs-two-entries
[08:51:26] [PASSED] clr-one-set-other
[08:51:26] [PASSED] set-field
[08:51:26] [PASSED] conflict-duplicate
[08:51:26] [PASSED] conflict-not-disjoint
[08:51:26] [PASSED] conflict-reg-type
[08:51:26] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[08:51:26] ================== xe_rtp_process_tests ===================
[08:51:26] [PASSED] active1
[08:51:26] [PASSED] active2
[08:51:26] [PASSED] active-inactive
[08:51:26] [PASSED] inactive-active
[08:51:26] [PASSED] inactive-1st_or_active-inactive
[08:51:26] [PASSED] inactive-2nd_or_active-inactive
[08:51:26] [PASSED] inactive-last_or_active-inactive
[08:51:26] [PASSED] inactive-no_or_active-inactive
[08:51:26] ============== [PASSED] xe_rtp_process_tests ===============
[08:51:26] ===================== [PASSED] xe_rtp ======================
[08:51:26] ==================== xe_wa (1 subtest) =====================
[08:51:26] ======================== xe_wa_gt =========================
[08:51:26] [PASSED] TIGERLAKE B0
[08:51:26] [PASSED] DG1 A0
[08:51:26] [PASSED] DG1 B0
[08:51:26] [PASSED] ALDERLAKE_S A0
[08:51:26] [PASSED] ALDERLAKE_S B0
[08:51:26] [PASSED] ALDERLAKE_S C0
[08:51:26] [PASSED] ALDERLAKE_S D0
[08:51:26] [PASSED] ALDERLAKE_P A0
[08:51:26] [PASSED] ALDERLAKE_P B0
[08:51:26] [PASSED] ALDERLAKE_P C0
[08:51:26] [PASSED] ALDERLAKE_S RPLS D0
[08:51:26] [PASSED] ALDERLAKE_P RPLU E0
[08:51:26] [PASSED] DG2 G10 C0
[08:51:26] [PASSED] DG2 G11 B1
[08:51:26] [PASSED] DG2 G12 A1
[08:51:26] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[08:51:26] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[08:51:26] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[08:51:26] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[08:51:26] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[08:51:26] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[08:51:26] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[08:51:26] ==================== [PASSED] xe_wa_gt =====================
[08:51:26] ====================== [PASSED] xe_wa ======================
[08:51:26] ============================================================
[08:51:26] Testing complete. Ran 510 tests: passed: 492, skipped: 18
[08:51:26] Elapsed time: 35.716s total, 4.286s configuring, 31.012s building, 0.400s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[08:51:26] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:51:28] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[08:51:53] Starting KUnit Kernel (1/1)...
[08:51:53] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:51:54] ============ drm_test_pick_cmdline (2 subtests) ============
[08:51:54] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[08:51:54] =============== drm_test_pick_cmdline_named ===============
[08:51:54] [PASSED] NTSC
[08:51:54] [PASSED] NTSC-J
[08:51:54] [PASSED] PAL
[08:51:54] [PASSED] PAL-M
[08:51:54] =========== [PASSED] drm_test_pick_cmdline_named ===========
[08:51:54] ============== [PASSED] drm_test_pick_cmdline ==============
[08:51:54] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[08:51:54] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[08:51:54] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[08:51:54] =========== drm_validate_clone_mode (2 subtests) ===========
[08:51:54] ============== drm_test_check_in_clone_mode ===============
[08:51:54] [PASSED] in_clone_mode
[08:51:54] [PASSED] not_in_clone_mode
[08:51:54] ========== [PASSED] drm_test_check_in_clone_mode ===========
[08:51:54] =============== drm_test_check_valid_clones ===============
[08:51:54] [PASSED] not_in_clone_mode
[08:51:54] [PASSED] valid_clone
[08:51:54] [PASSED] invalid_clone
[08:51:54] =========== [PASSED] drm_test_check_valid_clones ===========
[08:51:54] ============= [PASSED] drm_validate_clone_mode =============
[08:51:54] ============= drm_validate_modeset (1 subtest) =============
[08:51:54] [PASSED] drm_test_check_connector_changed_modeset
[08:51:54] ============== [PASSED] drm_validate_modeset ===============
[08:51:54] ====== drm_test_bridge_get_current_state (2 subtests) ======
[08:51:54] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[08:51:54] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[08:51:54] ======== [PASSED] drm_test_bridge_get_current_state ========
[08:51:54] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[08:51:54] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[08:51:54] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[08:51:54] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[08:51:54] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[08:51:54] ============== drm_bridge_alloc (2 subtests) ===============
[08:51:54] [PASSED] drm_test_drm_bridge_alloc_basic
[08:51:54] [PASSED] drm_test_drm_bridge_alloc_get_put
[08:51:54] ================ [PASSED] drm_bridge_alloc =================
[08:51:54] ================== drm_buddy (8 subtests) ==================
[08:51:54] [PASSED] drm_test_buddy_alloc_limit
[08:51:54] [PASSED] drm_test_buddy_alloc_optimistic
[08:51:54] [PASSED] drm_test_buddy_alloc_pessimistic
[08:51:54] [PASSED] drm_test_buddy_alloc_pathological
[08:51:54] [PASSED] drm_test_buddy_alloc_contiguous
[08:51:54] [PASSED] drm_test_buddy_alloc_clear
[08:51:54] [PASSED] drm_test_buddy_alloc_range_bias
[08:51:54] [PASSED] drm_test_buddy_fragmentation_performance
[08:51:54] ==================== [PASSED] drm_buddy ====================
[08:51:54] ============= drm_cmdline_parser (40 subtests) =============
[08:51:54] [PASSED] drm_test_cmdline_force_d_only
[08:51:54] [PASSED] drm_test_cmdline_force_D_only_dvi
[08:51:54] [PASSED] drm_test_cmdline_force_D_only_hdmi
[08:51:54] [PASSED] drm_test_cmdline_force_D_only_not_digital
[08:51:54] [PASSED] drm_test_cmdline_force_e_only
[08:51:54] [PASSED] drm_test_cmdline_res
[08:51:54] [PASSED] drm_test_cmdline_res_vesa
[08:51:54] [PASSED] drm_test_cmdline_res_vesa_rblank
[08:51:54] [PASSED] drm_test_cmdline_res_rblank
[08:51:54] [PASSED] drm_test_cmdline_res_bpp
[08:51:54] [PASSED] drm_test_cmdline_res_refresh
[08:51:54] [PASSED] drm_test_cmdline_res_bpp_refresh
[08:51:54] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[08:51:54] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[08:51:54] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[08:51:54] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[08:51:54] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[08:51:54] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[08:51:54] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[08:51:54] [PASSED] drm_test_cmdline_res_margins_force_on
[08:51:54] [PASSED] drm_test_cmdline_res_vesa_margins
[08:51:54] [PASSED] drm_test_cmdline_name
[08:51:54] [PASSED] drm_test_cmdline_name_bpp
[08:51:54] [PASSED] drm_test_cmdline_name_option
[08:51:54] [PASSED] drm_test_cmdline_name_bpp_option
[08:51:54] [PASSED] drm_test_cmdline_rotate_0
[08:51:54] [PASSED] drm_test_cmdline_rotate_90
[08:51:54] [PASSED] drm_test_cmdline_rotate_180
[08:51:54] [PASSED] drm_test_cmdline_rotate_270
[08:51:54] [PASSED] drm_test_cmdline_hmirror
[08:51:54] [PASSED] drm_test_cmdline_vmirror
[08:51:54] [PASSED] drm_test_cmdline_margin_options
[08:51:54] [PASSED] drm_test_cmdline_multiple_options
[08:51:54] [PASSED] drm_test_cmdline_bpp_extra_and_option
[08:51:54] [PASSED] drm_test_cmdline_extra_and_option
[08:51:54] [PASSED] drm_test_cmdline_freestanding_options
[08:51:54] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[08:51:54] [PASSED] drm_test_cmdline_panel_orientation
[08:51:54] ================ drm_test_cmdline_invalid =================
[08:51:54] [PASSED] margin_only
[08:51:54] [PASSED] interlace_only
[08:51:54] [PASSED] res_missing_x
[08:51:54] [PASSED] res_missing_y
[08:51:54] [PASSED] res_bad_y
[08:51:54] [PASSED] res_missing_y_bpp
[08:51:54] [PASSED] res_bad_bpp
[08:51:54] [PASSED] res_bad_refresh
[08:51:54] [PASSED] res_bpp_refresh_force_on_off
[08:51:54] [PASSED] res_invalid_mode
[08:51:54] [PASSED] res_bpp_wrong_place_mode
[08:51:54] [PASSED] name_bpp_refresh
[08:51:54] [PASSED] name_refresh
[08:51:54] [PASSED] name_refresh_wrong_mode
[08:51:54] [PASSED] name_refresh_invalid_mode
[08:51:54] [PASSED] rotate_multiple
[08:51:54] [PASSED] rotate_invalid_val
[08:51:54] [PASSED] rotate_truncated
[08:51:54] [PASSED] invalid_option
[08:51:54] [PASSED] invalid_tv_option
[08:51:54] [PASSED] truncated_tv_option
[08:51:54] ============ [PASSED] drm_test_cmdline_invalid =============
[08:51:54] =============== drm_test_cmdline_tv_options ===============
[08:51:54] [PASSED] NTSC
[08:51:54] [PASSED] NTSC_443
[08:51:54] [PASSED] NTSC_J
[08:51:54] [PASSED] PAL
[08:51:54] [PASSED] PAL_M
[08:51:54] [PASSED] PAL_N
[08:51:54] [PASSED] SECAM
[08:51:54] [PASSED] MONO_525
[08:51:54] [PASSED] MONO_625
[08:51:54] =========== [PASSED] drm_test_cmdline_tv_options ===========
[08:51:54] =============== [PASSED] drm_cmdline_parser ================
[08:51:54] ========== drmm_connector_hdmi_init (20 subtests) ==========
[08:51:54] [PASSED] drm_test_connector_hdmi_init_valid
[08:51:54] [PASSED] drm_test_connector_hdmi_init_bpc_8
[08:51:54] [PASSED] drm_test_connector_hdmi_init_bpc_10
[08:51:54] [PASSED] drm_test_connector_hdmi_init_bpc_12
[08:51:54] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[08:51:54] [PASSED] drm_test_connector_hdmi_init_bpc_null
[08:51:54] [PASSED] drm_test_connector_hdmi_init_formats_empty
[08:51:54] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[08:51:54] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[08:51:54] [PASSED] supported_formats=0x9 yuv420_allowed=1
[08:51:54] [PASSED] supported_formats=0x9 yuv420_allowed=0
[08:51:54] [PASSED] supported_formats=0x3 yuv420_allowed=1
[08:51:54] [PASSED] supported_formats=0x3 yuv420_allowed=0
[08:51:54] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[08:51:54] [PASSED] drm_test_connector_hdmi_init_null_ddc
[08:51:54] [PASSED] drm_test_connector_hdmi_init_null_product
[08:51:54] [PASSED] drm_test_connector_hdmi_init_null_vendor
[08:51:54] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[08:51:54] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[08:51:54] [PASSED] drm_test_connector_hdmi_init_product_valid
[08:51:54] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[08:51:54] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[08:51:54] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[08:51:54] ========= drm_test_connector_hdmi_init_type_valid =========
[08:51:54] [PASSED] HDMI-A
[08:51:54] [PASSED] HDMI-B
[08:51:54] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[08:51:54] ======== drm_test_connector_hdmi_init_type_invalid ========
[08:51:54] [PASSED] Unknown
[08:51:54] [PASSED] VGA
[08:51:54] [PASSED] DVI-I
[08:51:54] [PASSED] DVI-D
[08:51:54] [PASSED] DVI-A
[08:51:54] [PASSED] Composite
[08:51:54] [PASSED] SVIDEO
[08:51:54] [PASSED] LVDS
[08:51:54] [PASSED] Component
[08:51:54] [PASSED] DIN
[08:51:54] [PASSED] DP
[08:51:54] [PASSED] TV
[08:51:54] [PASSED] eDP
[08:51:54] [PASSED] Virtual
[08:51:54] [PASSED] DSI
[08:51:54] [PASSED] DPI
[08:51:54] [PASSED] Writeback
[08:51:54] [PASSED] SPI
[08:51:54] [PASSED] USB
[08:51:54] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[08:51:54] ============ [PASSED] drmm_connector_hdmi_init =============
[08:51:54] ============= drmm_connector_init (3 subtests) =============
[08:51:54] [PASSED] drm_test_drmm_connector_init
[08:51:54] [PASSED] drm_test_drmm_connector_init_null_ddc
[08:51:54] ========= drm_test_drmm_connector_init_type_valid =========
[08:51:54] [PASSED] Unknown
[08:51:54] [PASSED] VGA
[08:51:54] [PASSED] DVI-I
[08:51:54] [PASSED] DVI-D
[08:51:54] [PASSED] DVI-A
[08:51:54] [PASSED] Composite
[08:51:54] [PASSED] SVIDEO
[08:51:54] [PASSED] LVDS
[08:51:54] [PASSED] Component
[08:51:54] [PASSED] DIN
[08:51:54] [PASSED] DP
[08:51:54] [PASSED] HDMI-A
[08:51:54] [PASSED] HDMI-B
[08:51:54] [PASSED] TV
[08:51:54] [PASSED] eDP
[08:51:54] [PASSED] Virtual
[08:51:54] [PASSED] DSI
[08:51:54] [PASSED] DPI
[08:51:54] [PASSED] Writeback
[08:51:54] [PASSED] SPI
[08:51:54] [PASSED] USB
[08:51:54] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[08:51:54] =============== [PASSED] drmm_connector_init ===============
[08:51:54] ========= drm_connector_dynamic_init (6 subtests) ==========
[08:51:54] [PASSED] drm_test_drm_connector_dynamic_init
[08:51:54] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[08:51:54] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[08:51:54] [PASSED] drm_test_drm_connector_dynamic_init_properties
[08:51:54] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[08:51:54] [PASSED] Unknown
[08:51:54] [PASSED] VGA
[08:51:54] [PASSED] DVI-I
[08:51:54] [PASSED] DVI-D
[08:51:54] [PASSED] DVI-A
[08:51:54] [PASSED] Composite
[08:51:54] [PASSED] SVIDEO
[08:51:54] [PASSED] LVDS
[08:51:54] [PASSED] Component
[08:51:54] [PASSED] DIN
[08:51:54] [PASSED] DP
[08:51:54] [PASSED] HDMI-A
[08:51:54] [PASSED] HDMI-B
[08:51:54] [PASSED] TV
[08:51:54] [PASSED] eDP
[08:51:54] [PASSED] Virtual
[08:51:54] [PASSED] DSI
[08:51:54] [PASSED] DPI
[08:51:54] [PASSED] Writeback
[08:51:54] [PASSED] SPI
[08:51:54] [PASSED] USB
[08:51:54] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[08:51:54] ======== drm_test_drm_connector_dynamic_init_name =========
[08:51:54] [PASSED] Unknown
[08:51:54] [PASSED] VGA
[08:51:54] [PASSED] DVI-I
[08:51:54] [PASSED] DVI-D
[08:51:54] [PASSED] DVI-A
[08:51:54] [PASSED] Composite
[08:51:54] [PASSED] SVIDEO
[08:51:54] [PASSED] LVDS
[08:51:54] [PASSED] Component
[08:51:54] [PASSED] DIN
[08:51:54] [PASSED] DP
[08:51:54] [PASSED] HDMI-A
[08:51:54] [PASSED] HDMI-B
[08:51:54] [PASSED] TV
[08:51:54] [PASSED] eDP
[08:51:54] [PASSED] Virtual
[08:51:54] [PASSED] DSI
[08:51:54] [PASSED] DPI
[08:51:54] [PASSED] Writeback
[08:51:54] [PASSED] SPI
[08:51:54] [PASSED] USB
[08:51:54] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[08:51:54] =========== [PASSED] drm_connector_dynamic_init ============
[08:51:54] ==== drm_connector_dynamic_register_early (4 subtests) =====
[08:51:54] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[08:51:54] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[08:51:54] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[08:51:54] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[08:51:54] ====== [PASSED] drm_connector_dynamic_register_early =======
[08:51:54] ======= drm_connector_dynamic_register (7 subtests) ========
[08:51:54] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[08:51:54] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[08:51:54] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[08:51:54] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[08:51:54] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[08:51:54] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[08:51:54] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[08:51:54] ========= [PASSED] drm_connector_dynamic_register ==========
[08:51:54] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[08:51:54] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[08:51:54] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[08:51:54] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[08:51:54] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[08:51:54] ========== drm_test_get_tv_mode_from_name_valid ===========
[08:51:54] [PASSED] NTSC
[08:51:54] [PASSED] NTSC-443
[08:51:54] [PASSED] NTSC-J
[08:51:54] [PASSED] PAL
[08:51:54] [PASSED] PAL-M
[08:51:54] [PASSED] PAL-N
[08:51:54] [PASSED] SECAM
[08:51:54] [PASSED] Mono
[08:51:54] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[08:51:54] [PASSED] drm_test_get_tv_mode_from_name_truncated
[08:51:54] ============ [PASSED] drm_get_tv_mode_from_name ============
[08:51:54] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[08:51:54] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[08:51:54] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[08:51:54] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[08:51:54] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[08:51:54] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[08:51:54] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[08:51:54] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[08:51:54] [PASSED] VIC 96
[08:51:54] [PASSED] VIC 97
[08:51:54] [PASSED] VIC 101
[08:51:54] [PASSED] VIC 102
[08:51:54] [PASSED] VIC 106
[08:51:54] [PASSED] VIC 107
[08:51:54] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[08:51:54] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[08:51:54] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[08:51:54] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[08:51:54] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[08:51:54] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[08:51:54] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[08:51:54] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[08:51:54] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[08:51:54] [PASSED] Automatic
[08:51:54] [PASSED] Full
[08:51:54] [PASSED] Limited 16:235
[08:51:54] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[08:51:54] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[08:51:54] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[08:51:54] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[08:51:54] === drm_test_drm_hdmi_connector_get_output_format_name ====
[08:51:54] [PASSED] RGB
[08:51:54] [PASSED] YUV 4:2:0
[08:51:54] [PASSED] YUV 4:2:2
[08:51:54] [PASSED] YUV 4:4:4
[08:51:54] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[08:51:54] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[08:51:54] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[08:51:54] ============= drm_damage_helper (21 subtests) ==============
[08:51:54] [PASSED] drm_test_damage_iter_no_damage
[08:51:54] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[08:51:54] [PASSED] drm_test_damage_iter_no_damage_src_moved
[08:51:54] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[08:51:54] [PASSED] drm_test_damage_iter_no_damage_not_visible
[08:51:54] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[08:51:54] [PASSED] drm_test_damage_iter_no_damage_no_fb
[08:51:54] [PASSED] drm_test_damage_iter_simple_damage
[08:51:54] [PASSED] drm_test_damage_iter_single_damage
[08:51:54] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[08:51:54] [PASSED] drm_test_damage_iter_single_damage_outside_src
[08:51:54] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[08:51:54] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[08:51:54] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[08:51:54] [PASSED] drm_test_damage_iter_single_damage_src_moved
[08:51:54] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[08:51:54] [PASSED] drm_test_damage_iter_damage
[08:51:54] [PASSED] drm_test_damage_iter_damage_one_intersect
[08:51:54] [PASSED] drm_test_damage_iter_damage_one_outside
[08:51:54] [PASSED] drm_test_damage_iter_damage_src_moved
[08:51:54] [PASSED] drm_test_damage_iter_damage_not_visible
[08:51:54] ================ [PASSED] drm_damage_helper ================
[08:51:54] ============== drm_dp_mst_helper (3 subtests) ==============
[08:51:54] ============== drm_test_dp_mst_calc_pbn_mode ==============
[08:51:54] [PASSED] Clock 154000 BPP 30 DSC disabled
[08:51:54] [PASSED] Clock 234000 BPP 30 DSC disabled
[08:51:54] [PASSED] Clock 297000 BPP 24 DSC disabled
[08:51:54] [PASSED] Clock 332880 BPP 24 DSC enabled
[08:51:54] [PASSED] Clock 324540 BPP 24 DSC enabled
[08:51:54] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[08:51:54] ============== drm_test_dp_mst_calc_pbn_div ===============
[08:51:54] [PASSED] Link rate 2000000 lane count 4
[08:51:54] [PASSED] Link rate 2000000 lane count 2
[08:51:54] [PASSED] Link rate 2000000 lane count 1
[08:51:54] [PASSED] Link rate 1350000 lane count 4
[08:51:54] [PASSED] Link rate 1350000 lane count 2
[08:51:54] [PASSED] Link rate 1350000 lane count 1
[08:51:54] [PASSED] Link rate 1000000 lane count 4
[08:51:54] [PASSED] Link rate 1000000 lane count 2
[08:51:54] [PASSED] Link rate 1000000 lane count 1
[08:51:54] [PASSED] Link rate 810000 lane count 4
[08:51:54] [PASSED] Link rate 810000 lane count 2
[08:51:54] [PASSED] Link rate 810000 lane count 1
[08:51:54] [PASSED] Link rate 540000 lane count 4
[08:51:54] [PASSED] Link rate 540000 lane count 2
[08:51:54] [PASSED] Link rate 540000 lane count 1
[08:51:54] [PASSED] Link rate 270000 lane count 4
[08:51:54] [PASSED] Link rate 270000 lane count 2
[08:51:54] [PASSED] Link rate 270000 lane count 1
[08:51:54] [PASSED] Link rate 162000 lane count 4
[08:51:54] [PASSED] Link rate 162000 lane count 2
[08:51:54] [PASSED] Link rate 162000 lane count 1
[08:51:54] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[08:51:54] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[08:51:54] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[08:51:54] [PASSED] DP_POWER_UP_PHY with port number
[08:51:54] [PASSED] DP_POWER_DOWN_PHY with port number
[08:51:54] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[08:51:54] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[08:51:54] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[08:51:54] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[08:51:54] [PASSED] DP_QUERY_PAYLOAD with port number
[08:51:54] [PASSED] DP_QUERY_PAYLOAD with VCPI
[08:51:54] [PASSED] DP_REMOTE_DPCD_READ with port number
[08:51:54] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[08:51:54] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[08:51:54] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[08:51:54] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[08:51:54] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[08:51:54] [PASSED] DP_REMOTE_I2C_READ with port number
[08:51:54] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[08:51:54] [PASSED] DP_REMOTE_I2C_READ with transactions array
[08:51:54] [PASSED] DP_REMOTE_I2C_WRITE with port number
[08:51:54] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[08:51:54] [PASSED] DP_REMOTE_I2C_WRITE with data array
[08:51:54] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[08:51:54] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[08:51:54] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[08:51:54] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[08:51:54] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[08:51:54] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[08:51:54] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[08:51:54] ================ [PASSED] drm_dp_mst_helper ================
[08:51:54] ================== drm_exec (7 subtests) ===================
[08:51:54] [PASSED] sanitycheck
[08:51:54] [PASSED] test_lock
[08:51:54] [PASSED] test_lock_unlock
[08:51:54] [PASSED] test_duplicates
[08:51:54] [PASSED] test_prepare
[08:51:54] [PASSED] test_prepare_array
[08:51:54] [PASSED] test_multiple_loops
[08:51:54] ==================== [PASSED] drm_exec =====================
[08:51:54] =========== drm_format_helper_test (17 subtests) ===========
[08:51:54] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[08:51:54] [PASSED] single_pixel_source_buffer
[08:51:54] [PASSED] single_pixel_clip_rectangle
[08:51:54] [PASSED] well_known_colors
[08:51:54] [PASSED] destination_pitch
[08:51:54] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[08:51:54] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[08:51:54] [PASSED] single_pixel_source_buffer
[08:51:54] [PASSED] single_pixel_clip_rectangle
[08:51:54] [PASSED] well_known_colors
[08:51:54] [PASSED] destination_pitch
[08:51:54] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[08:51:54] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[08:51:54] [PASSED] single_pixel_source_buffer
[08:51:54] [PASSED] single_pixel_clip_rectangle
[08:51:54] [PASSED] well_known_colors
[08:51:54] [PASSED] destination_pitch
[08:51:54] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[08:51:54] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[08:51:54] [PASSED] single_pixel_source_buffer
[08:51:54] [PASSED] single_pixel_clip_rectangle
[08:51:54] [PASSED] well_known_colors
[08:51:54] [PASSED] destination_pitch
[08:51:54] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[08:51:54] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[08:51:54] [PASSED] single_pixel_source_buffer
[08:51:54] [PASSED] single_pixel_clip_rectangle
[08:51:54] [PASSED] well_known_colors
[08:51:54] [PASSED] destination_pitch
[08:51:54] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[08:51:54] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[08:51:54] [PASSED] single_pixel_source_buffer
[08:51:54] [PASSED] single_pixel_clip_rectangle
[08:51:54] [PASSED] well_known_colors
[08:51:54] [PASSED] destination_pitch
[08:51:54] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[08:51:54] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[08:51:54] [PASSED] single_pixel_source_buffer
[08:51:54] [PASSED] single_pixel_clip_rectangle
[08:51:54] [PASSED] well_known_colors
[08:51:54] [PASSED] destination_pitch
[08:51:54] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[08:51:54] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[08:51:54] [PASSED] single_pixel_source_buffer
[08:51:54] [PASSED] single_pixel_clip_rectangle
[08:51:54] [PASSED] well_known_colors
[08:51:54] [PASSED] destination_pitch
[08:51:54] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[08:51:54] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[08:51:54] [PASSED] single_pixel_source_buffer
[08:51:54] [PASSED] single_pixel_clip_rectangle
[08:51:54] [PASSED] well_known_colors
[08:51:54] [PASSED] destination_pitch
[08:51:54] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[08:51:54] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[08:51:54] [PASSED] single_pixel_source_buffer
[08:51:54] [PASSED] single_pixel_clip_rectangle
[08:51:54] [PASSED] well_known_colors
[08:51:54] [PASSED] destination_pitch
[08:51:54] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[08:51:54] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[08:51:54] [PASSED] single_pixel_source_buffer
[08:51:54] [PASSED] single_pixel_clip_rectangle
[08:51:54] [PASSED] well_known_colors
[08:51:54] [PASSED] destination_pitch
[08:51:54] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[08:51:54] ============== drm_test_fb_xrgb8888_to_mono ===============
[08:51:54] [PASSED] single_pixel_source_buffer
[08:51:54] [PASSED] single_pixel_clip_rectangle
[08:51:54] [PASSED] well_known_colors
[08:51:54] [PASSED] destination_pitch
[08:51:54] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[08:51:54] ==================== drm_test_fb_swab =====================
[08:51:54] [PASSED] single_pixel_source_buffer
[08:51:54] [PASSED] single_pixel_clip_rectangle
[08:51:54] [PASSED] well_known_colors
[08:51:54] [PASSED] destination_pitch
[08:51:54] ================ [PASSED] drm_test_fb_swab =================
[08:51:54] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[08:51:54] [PASSED] single_pixel_source_buffer
[08:51:54] [PASSED] single_pixel_clip_rectangle
[08:51:54] [PASSED] well_known_colors
[08:51:54] [PASSED] destination_pitch
[08:51:54] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[08:51:54] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[08:51:54] [PASSED] single_pixel_source_buffer
[08:51:54] [PASSED] single_pixel_clip_rectangle
[08:51:54] [PASSED] well_known_colors
[08:51:54] [PASSED] destination_pitch
[08:51:54] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[08:51:54] ================= drm_test_fb_clip_offset =================
[08:51:54] [PASSED] pass through
[08:51:54] [PASSED] horizontal offset
[08:51:54] [PASSED] vertical offset
[08:51:54] [PASSED] horizontal and vertical offset
[08:51:54] [PASSED] horizontal offset (custom pitch)
[08:51:54] [PASSED] vertical offset (custom pitch)
[08:51:54] [PASSED] horizontal and vertical offset (custom pitch)
[08:51:54] ============= [PASSED] drm_test_fb_clip_offset =============
[08:51:54] =================== drm_test_fb_memcpy ====================
[08:51:54] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[08:51:54] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[08:51:54] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[08:51:54] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[08:51:54] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[08:51:54] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[08:51:54] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[08:51:54] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[08:51:54] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[08:51:54] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[08:51:54] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[08:51:54] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[08:51:54] =============== [PASSED] drm_test_fb_memcpy ================
[08:51:54] ============= [PASSED] drm_format_helper_test ==============
[08:51:54] ================= drm_format (18 subtests) =================
[08:51:54] [PASSED] drm_test_format_block_width_invalid
[08:51:54] [PASSED] drm_test_format_block_width_one_plane
[08:51:54] [PASSED] drm_test_format_block_width_two_plane
[08:51:54] [PASSED] drm_test_format_block_width_three_plane
[08:51:54] [PASSED] drm_test_format_block_width_tiled
[08:51:54] [PASSED] drm_test_format_block_height_invalid
[08:51:54] [PASSED] drm_test_format_block_height_one_plane
[08:51:54] [PASSED] drm_test_format_block_height_two_plane
[08:51:54] [PASSED] drm_test_format_block_height_three_plane
[08:51:54] [PASSED] drm_test_format_block_height_tiled
[08:51:54] [PASSED] drm_test_format_min_pitch_invalid
[08:51:54] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[08:51:54] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[08:51:54] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[08:51:54] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[08:51:54] [PASSED] drm_test_format_min_pitch_two_plane
[08:51:54] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[08:51:54] [PASSED] drm_test_format_min_pitch_tiled
[08:51:54] =================== [PASSED] drm_format ====================
[08:51:54] ============== drm_framebuffer (10 subtests) ===============
[08:51:54] ========== drm_test_framebuffer_check_src_coords ==========
[08:51:54] [PASSED] Success: source fits into fb
[08:51:54] [PASSED] Fail: overflowing fb with x-axis coordinate
[08:51:54] [PASSED] Fail: overflowing fb with y-axis coordinate
[08:51:54] [PASSED] Fail: overflowing fb with source width
[08:51:54] [PASSED] Fail: overflowing fb with source height
[08:51:54] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[08:51:54] [PASSED] drm_test_framebuffer_cleanup
[08:51:54] =============== drm_test_framebuffer_create ===============
[08:51:54] [PASSED] ABGR8888 normal sizes
[08:51:54] [PASSED] ABGR8888 max sizes
[08:51:54] [PASSED] ABGR8888 pitch greater than min required
[08:51:54] [PASSED] ABGR8888 pitch less than min required
[08:51:54] [PASSED] ABGR8888 Invalid width
[08:51:54] [PASSED] ABGR8888 Invalid buffer handle
[08:51:54] [PASSED] No pixel format
[08:51:54] [PASSED] ABGR8888 Width 0
[08:51:54] [PASSED] ABGR8888 Height 0
[08:51:54] [PASSED] ABGR8888 Out of bound height * pitch combination
[08:51:54] [PASSED] ABGR8888 Large buffer offset
[08:51:54] [PASSED] ABGR8888 Buffer offset for inexistent plane
[08:51:54] [PASSED] ABGR8888 Invalid flag
[08:51:54] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[08:51:54] [PASSED] ABGR8888 Valid buffer modifier
[08:51:54] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[08:51:54] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[08:51:54] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[08:51:54] [PASSED] NV12 Normal sizes
[08:51:54] [PASSED] NV12 Max sizes
[08:51:54] [PASSED] NV12 Invalid pitch
[08:51:54] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[08:51:54] [PASSED] NV12 different modifier per-plane
[08:51:54] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[08:51:54] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[08:51:54] [PASSED] NV12 Modifier for inexistent plane
[08:51:54] [PASSED] NV12 Handle for inexistent plane
[08:51:54] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[08:51:54] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[08:51:54] [PASSED] YVU420 Normal sizes
[08:51:54] [PASSED] YVU420 Max sizes
[08:51:54] [PASSED] YVU420 Invalid pitch
[08:51:54] [PASSED] YVU420 Different pitches
[08:51:54] [PASSED] YVU420 Different buffer offsets/pitches
[08:51:54] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[08:51:54] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[08:51:54] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[08:51:54] [PASSED] YVU420 Valid modifier
[08:51:54] [PASSED] YVU420 Different modifiers per plane
[08:51:54] [PASSED] YVU420 Modifier for inexistent plane
[08:51:54] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[08:51:54] [PASSED] X0L2 Normal sizes
[08:51:54] [PASSED] X0L2 Max sizes
[08:51:54] [PASSED] X0L2 Invalid pitch
[08:51:54] [PASSED] X0L2 Pitch greater than minimum required
[08:51:54] [PASSED] X0L2 Handle for inexistent plane
[08:51:54] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[08:51:54] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[08:51:54] [PASSED] X0L2 Valid modifier
[08:51:54] [PASSED] X0L2 Modifier for inexistent plane
[08:51:54] =========== [PASSED] drm_test_framebuffer_create ===========
[08:51:54] [PASSED] drm_test_framebuffer_free
[08:51:54] [PASSED] drm_test_framebuffer_init
[08:51:54] [PASSED] drm_test_framebuffer_init_bad_format
[08:51:54] [PASSED] drm_test_framebuffer_init_dev_mismatch
[08:51:54] [PASSED] drm_test_framebuffer_lookup
[08:51:54] [PASSED] drm_test_framebuffer_lookup_inexistent
[08:51:54] [PASSED] drm_test_framebuffer_modifiers_not_supported
[08:51:54] ================= [PASSED] drm_framebuffer =================
[08:51:54] ================ drm_gem_shmem (8 subtests) ================
[08:51:54] [PASSED] drm_gem_shmem_test_obj_create
[08:51:54] [PASSED] drm_gem_shmem_test_obj_create_private
[08:51:54] [PASSED] drm_gem_shmem_test_pin_pages
[08:51:54] [PASSED] drm_gem_shmem_test_vmap
[08:51:54] [PASSED] drm_gem_shmem_test_get_pages_sgt
[08:51:54] [PASSED] drm_gem_shmem_test_get_sg_table
[08:51:54] [PASSED] drm_gem_shmem_test_madvise
[08:51:54] [PASSED] drm_gem_shmem_test_purge
[08:51:54] ================== [PASSED] drm_gem_shmem ==================
[08:51:54] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[08:51:54] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[08:51:54] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[08:51:54] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[08:51:54] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[08:51:54] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[08:51:54] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[08:51:54] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[08:51:54] [PASSED] Automatic
[08:51:54] [PASSED] Full
[08:51:54] [PASSED] Limited 16:235
[08:51:54] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[08:51:54] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[08:51:54] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[08:51:54] [PASSED] drm_test_check_disable_connector
[08:51:54] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[08:51:54] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[08:51:54] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[08:51:54] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[08:51:54] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[08:51:54] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[08:51:54] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[08:51:54] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[08:51:54] [PASSED] drm_test_check_output_bpc_dvi
[08:51:54] [PASSED] drm_test_check_output_bpc_format_vic_1
[08:51:54] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[08:51:54] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[08:51:54] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[08:51:54] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[08:51:54] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[08:51:54] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[08:51:54] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[08:51:54] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[08:51:54] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[08:51:54] [PASSED] drm_test_check_broadcast_rgb_value
[08:51:54] [PASSED] drm_test_check_bpc_8_value
[08:51:54] [PASSED] drm_test_check_bpc_10_value
[08:51:54] [PASSED] drm_test_check_bpc_12_value
[08:51:54] [PASSED] drm_test_check_format_value
[08:51:54] [PASSED] drm_test_check_tmds_char_value
[08:51:54] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[08:51:54] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[08:51:54] [PASSED] drm_test_check_mode_valid
[08:51:54] [PASSED] drm_test_check_mode_valid_reject
[08:51:54] [PASSED] drm_test_check_mode_valid_reject_rate
[08:51:54] [PASSED] drm_test_check_mode_valid_reject_max_clock
[08:51:54] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[08:51:54] ================= drm_managed (2 subtests) =================
[08:51:54] [PASSED] drm_test_managed_release_action
[08:51:54] [PASSED] drm_test_managed_run_action
[08:51:54] =================== [PASSED] drm_managed ===================
[08:51:54] =================== drm_mm (6 subtests) ====================
[08:51:54] [PASSED] drm_test_mm_init
[08:51:54] [PASSED] drm_test_mm_debug
[08:51:54] [PASSED] drm_test_mm_align32
[08:51:54] [PASSED] drm_test_mm_align64
[08:51:54] [PASSED] drm_test_mm_lowest
[08:51:54] [PASSED] drm_test_mm_highest
[08:51:54] ===================== [PASSED] drm_mm ======================
[08:51:54] ============= drm_modes_analog_tv (5 subtests) =============
[08:51:54] [PASSED] drm_test_modes_analog_tv_mono_576i
[08:51:54] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[08:51:54] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[08:51:54] [PASSED] drm_test_modes_analog_tv_pal_576i
[08:51:54] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[08:51:54] =============== [PASSED] drm_modes_analog_tv ===============
[08:51:54] ============== drm_plane_helper (2 subtests) ===============
[08:51:54] =============== drm_test_check_plane_state ================
[08:51:54] [PASSED] clipping_simple
[08:51:54] [PASSED] clipping_rotate_reflect
[08:51:54] [PASSED] positioning_simple
[08:51:54] [PASSED] upscaling
[08:51:54] [PASSED] downscaling
[08:51:54] [PASSED] rounding1
[08:51:54] [PASSED] rounding2
[08:51:54] [PASSED] rounding3
[08:51:54] [PASSED] rounding4
[08:51:54] =========== [PASSED] drm_test_check_plane_state ============
[08:51:54] =========== drm_test_check_invalid_plane_state ============
[08:51:54] [PASSED] positioning_invalid
[08:51:54] [PASSED] upscaling_invalid
[08:51:54] [PASSED] downscaling_invalid
[08:51:54] ======= [PASSED] drm_test_check_invalid_plane_state ========
[08:51:54] ================ [PASSED] drm_plane_helper =================
[08:51:54] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[08:51:54] ====== drm_test_connector_helper_tv_get_modes_check =======
[08:51:54] [PASSED] None
[08:51:54] [PASSED] PAL
[08:51:54] [PASSED] NTSC
[08:51:54] [PASSED] Both, NTSC Default
[08:51:54] [PASSED] Both, PAL Default
[08:51:54] [PASSED] Both, NTSC Default, with PAL on command-line
[08:51:54] [PASSED] Both, PAL Default, with NTSC on command-line
[08:51:54] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[08:51:54] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[08:51:54] ================== drm_rect (9 subtests) ===================
[08:51:54] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[08:51:54] [PASSED] drm_test_rect_clip_scaled_not_clipped
[08:51:54] [PASSED] drm_test_rect_clip_scaled_clipped
[08:51:54] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[08:51:54] ================= drm_test_rect_intersect =================
[08:51:54] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[08:51:54] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[08:51:54] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[08:51:54] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[08:51:54] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[08:51:54] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[08:51:54] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[08:51:54] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[08:51:54] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[08:51:54] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[08:51:54] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[08:51:54] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[08:51:54] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[08:51:54] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[08:51:54] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[08:51:54] ============= [PASSED] drm_test_rect_intersect =============
[08:51:54] ================ drm_test_rect_calc_hscale ================
[08:51:54] [PASSED] normal use
[08:51:54] [PASSED] out of max range
[08:51:54] [PASSED] out of min range
[08:51:54] [PASSED] zero dst
[08:51:54] [PASSED] negative src
[08:51:54] [PASSED] negative dst
[08:51:54] ============ [PASSED] drm_test_rect_calc_hscale ============
[08:51:54] ================ drm_test_rect_calc_vscale ================
[08:51:54] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[08:51:54] [PASSED] out of max range
[08:51:54] [PASSED] out of min range
[08:51:54] [PASSED] zero dst
[08:51:54] [PASSED] negative src
[08:51:54] [PASSED] negative dst
[08:51:54] ============ [PASSED] drm_test_rect_calc_vscale ============
[08:51:54] ================== drm_test_rect_rotate ===================
[08:51:54] [PASSED] reflect-x
[08:51:54] [PASSED] reflect-y
[08:51:54] [PASSED] rotate-0
[08:51:54] [PASSED] rotate-90
[08:51:54] [PASSED] rotate-180
[08:51:54] [PASSED] rotate-270
[08:51:54] ============== [PASSED] drm_test_rect_rotate ===============
[08:51:54] ================ drm_test_rect_rotate_inv =================
[08:51:54] [PASSED] reflect-x
[08:51:54] [PASSED] reflect-y
[08:51:54] [PASSED] rotate-0
[08:51:54] [PASSED] rotate-90
[08:51:54] [PASSED] rotate-180
[08:51:54] [PASSED] rotate-270
[08:51:54] ============ [PASSED] drm_test_rect_rotate_inv =============
[08:51:54] ==================== [PASSED] drm_rect =====================
[08:51:54] ============ drm_sysfb_modeset_test (1 subtest) ============
[08:51:54] ============ drm_test_sysfb_build_fourcc_list =============
[08:51:54] [PASSED] no native formats
[08:51:54] [PASSED] XRGB8888 as native format
[08:51:54] [PASSED] remove duplicates
[08:51:54] [PASSED] convert alpha formats
[08:51:54] [PASSED] random formats
[08:51:54] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[08:51:54] ============= [PASSED] drm_sysfb_modeset_test ==============
[08:51:54] ================== drm_fixp (2 subtests) ===================
[08:51:54] [PASSED] drm_test_int2fixp
[08:51:54] [PASSED] drm_test_sm2fixp
[08:51:54] ==================== [PASSED] drm_fixp =====================
[08:51:54] ============================================================
[08:51:54] Testing complete. Ran 624 tests: passed: 624
[08:51:54] Elapsed time: 27.510s total, 1.704s configuring, 25.386s building, 0.383s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[08:51:54] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:51:56] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[08:52:05] Starting KUnit Kernel (1/1)...
[08:52:05] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:52:05] ================= ttm_device (5 subtests) ==================
[08:52:05] [PASSED] ttm_device_init_basic
[08:52:05] [PASSED] ttm_device_init_multiple
[08:52:05] [PASSED] ttm_device_fini_basic
[08:52:05] [PASSED] ttm_device_init_no_vma_man
[08:52:05] ================== ttm_device_init_pools ==================
[08:52:05] [PASSED] No DMA allocations, no DMA32 required
[08:52:05] [PASSED] DMA allocations, DMA32 required
[08:52:05] [PASSED] No DMA allocations, DMA32 required
[08:52:05] [PASSED] DMA allocations, no DMA32 required
[08:52:05] ============== [PASSED] ttm_device_init_pools ==============
[08:52:05] =================== [PASSED] ttm_device ====================
[08:52:05] ================== ttm_pool (8 subtests) ===================
[08:52:05] ================== ttm_pool_alloc_basic ===================
[08:52:05] [PASSED] One page
[08:52:05] [PASSED] More than one page
[08:52:05] [PASSED] Above the allocation limit
[08:52:05] [PASSED] One page, with coherent DMA mappings enabled
[08:52:05] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[08:52:05] ============== [PASSED] ttm_pool_alloc_basic ===============
[08:52:05] ============== ttm_pool_alloc_basic_dma_addr ==============
[08:52:05] [PASSED] One page
[08:52:05] [PASSED] More than one page
[08:52:05] [PASSED] Above the allocation limit
[08:52:05] [PASSED] One page, with coherent DMA mappings enabled
[08:52:05] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[08:52:05] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[08:52:05] [PASSED] ttm_pool_alloc_order_caching_match
[08:52:05] [PASSED] ttm_pool_alloc_caching_mismatch
[08:52:05] [PASSED] ttm_pool_alloc_order_mismatch
[08:52:05] [PASSED] ttm_pool_free_dma_alloc
[08:52:05] [PASSED] ttm_pool_free_no_dma_alloc
[08:52:05] [PASSED] ttm_pool_fini_basic
[08:52:05] ==================== [PASSED] ttm_pool =====================
[08:52:05] ================ ttm_resource (8 subtests) =================
[08:52:05] ================= ttm_resource_init_basic =================
[08:52:05] [PASSED] Init resource in TTM_PL_SYSTEM
[08:52:05] [PASSED] Init resource in TTM_PL_VRAM
[08:52:05] [PASSED] Init resource in a private placement
[08:52:05] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[08:52:05] ============= [PASSED] ttm_resource_init_basic =============
[08:52:05] [PASSED] ttm_resource_init_pinned
[08:52:05] [PASSED] ttm_resource_fini_basic
[08:52:05] [PASSED] ttm_resource_manager_init_basic
[08:52:05] [PASSED] ttm_resource_manager_usage_basic
[08:52:05] [PASSED] ttm_resource_manager_set_used_basic
[08:52:05] [PASSED] ttm_sys_man_alloc_basic
[08:52:05] [PASSED] ttm_sys_man_free_basic
[08:52:05] ================== [PASSED] ttm_resource ===================
[08:52:05] =================== ttm_tt (15 subtests) ===================
[08:52:05] ==================== ttm_tt_init_basic ====================
[08:52:05] [PASSED] Page-aligned size
[08:52:05] [PASSED] Extra pages requested
[08:52:05] ================ [PASSED] ttm_tt_init_basic ================
[08:52:05] [PASSED] ttm_tt_init_misaligned
[08:52:05] [PASSED] ttm_tt_fini_basic
[08:52:05] [PASSED] ttm_tt_fini_sg
[08:52:05] [PASSED] ttm_tt_fini_shmem
[08:52:05] [PASSED] ttm_tt_create_basic
[08:52:05] [PASSED] ttm_tt_create_invalid_bo_type
[08:52:05] [PASSED] ttm_tt_create_ttm_exists
[08:52:05] [PASSED] ttm_tt_create_failed
[08:52:05] [PASSED] ttm_tt_destroy_basic
[08:52:05] [PASSED] ttm_tt_populate_null_ttm
[08:52:05] [PASSED] ttm_tt_populate_populated_ttm
[08:52:05] [PASSED] ttm_tt_unpopulate_basic
[08:52:05] [PASSED] ttm_tt_unpopulate_empty_ttm
[08:52:05] [PASSED] ttm_tt_swapin_basic
[08:52:05] ===================== [PASSED] ttm_tt ======================
[08:52:05] =================== ttm_bo (14 subtests) ===================
[08:52:05] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[08:52:05] [PASSED] Cannot be interrupted and sleeps
[08:52:05] [PASSED] Cannot be interrupted, locks straight away
[08:52:05] [PASSED] Can be interrupted, sleeps
[08:52:05] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[08:52:05] [PASSED] ttm_bo_reserve_locked_no_sleep
[08:52:05] [PASSED] ttm_bo_reserve_no_wait_ticket
[08:52:05] [PASSED] ttm_bo_reserve_double_resv
[08:52:05] [PASSED] ttm_bo_reserve_interrupted
[08:52:05] [PASSED] ttm_bo_reserve_deadlock
[08:52:05] [PASSED] ttm_bo_unreserve_basic
[08:52:05] [PASSED] ttm_bo_unreserve_pinned
[08:52:05] [PASSED] ttm_bo_unreserve_bulk
[08:52:05] [PASSED] ttm_bo_fini_basic
[08:52:05] [PASSED] ttm_bo_fini_shared_resv
[08:52:05] [PASSED] ttm_bo_pin_basic
[08:52:05] [PASSED] ttm_bo_pin_unpin_resource
[08:52:05] [PASSED] ttm_bo_multiple_pin_one_unpin
[08:52:05] ===================== [PASSED] ttm_bo ======================
[08:52:05] ============== ttm_bo_validate (21 subtests) ===============
[08:52:05] ============== ttm_bo_init_reserved_sys_man ===============
[08:52:05] [PASSED] Buffer object for userspace
[08:52:05] [PASSED] Kernel buffer object
[08:52:05] [PASSED] Shared buffer object
[08:52:05] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[08:52:05] ============== ttm_bo_init_reserved_mock_man ==============
[08:52:05] [PASSED] Buffer object for userspace
[08:52:05] [PASSED] Kernel buffer object
[08:52:05] [PASSED] Shared buffer object
[08:52:05] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[08:52:05] [PASSED] ttm_bo_init_reserved_resv
[08:52:05] ================== ttm_bo_validate_basic ==================
[08:52:05] [PASSED] Buffer object for userspace
[08:52:05] [PASSED] Kernel buffer object
[08:52:05] [PASSED] Shared buffer object
[08:52:05] ============== [PASSED] ttm_bo_validate_basic ==============
[08:52:05] [PASSED] ttm_bo_validate_invalid_placement
[08:52:05] ============= ttm_bo_validate_same_placement ==============
[08:52:05] [PASSED] System manager
[08:52:05] [PASSED] VRAM manager
[08:52:05] ========= [PASSED] ttm_bo_validate_same_placement ==========
[08:52:05] [PASSED] ttm_bo_validate_failed_alloc
[08:52:05] [PASSED] ttm_bo_validate_pinned
[08:52:05] [PASSED] ttm_bo_validate_busy_placement
[08:52:05] ================ ttm_bo_validate_multihop =================
[08:52:05] [PASSED] Buffer object for userspace
[08:52:05] [PASSED] Kernel buffer object
[08:52:05] [PASSED] Shared buffer object
[08:52:05] ============ [PASSED] ttm_bo_validate_multihop =============
[08:52:05] ========== ttm_bo_validate_no_placement_signaled ==========
[08:52:05] [PASSED] Buffer object in system domain, no page vector
[08:52:05] [PASSED] Buffer object in system domain with an existing page vector
[08:52:05] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[08:52:05] ======== ttm_bo_validate_no_placement_not_signaled ========
[08:52:05] [PASSED] Buffer object for userspace
[08:52:05] [PASSED] Kernel buffer object
[08:52:05] [PASSED] Shared buffer object
[08:52:05] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[08:52:05] [PASSED] ttm_bo_validate_move_fence_signaled
[08:52:05] ========= ttm_bo_validate_move_fence_not_signaled =========
[08:52:05] [PASSED] Waits for GPU
[08:52:05] [PASSED] Tries to lock straight away
[08:52:05] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[08:52:05] [PASSED] ttm_bo_validate_happy_evict
[08:52:05] [PASSED] ttm_bo_validate_all_pinned_evict
[08:52:05] [PASSED] ttm_bo_validate_allowed_only_evict
[08:52:05] [PASSED] ttm_bo_validate_deleted_evict
[08:52:05] [PASSED] ttm_bo_validate_busy_domain_evict
[08:52:05] [PASSED] ttm_bo_validate_evict_gutting
[08:52:05] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[08:52:05] ================= [PASSED] ttm_bo_validate =================
[08:52:05] ============================================================
[08:52:05] Testing complete. Ran 101 tests: passed: 101
[08:52:05] Elapsed time: 11.272s total, 1.712s configuring, 9.344s building, 0.179s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v1] drm/xe/cri: Enable I2C controller
2025-11-28 8:44 [PATCH v1] drm/xe/cri: Enable I2C controller Raag Jadav
2025-11-28 8:52 ` ✓ CI.KUnit: success for " Patchwork
@ 2025-12-01 20:27 ` Rodrigo Vivi
2025-12-04 11:42 ` Raag Jadav
2025-12-01 20:27 ` ✓ CI.KUnit: success for drm/xe/cri: Enable I2C controller (rev2) Patchwork
` (6 subsequent siblings)
8 siblings, 1 reply; 15+ messages in thread
From: Rodrigo Vivi @ 2025-12-01 20:27 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe, heikki.krogerus, andi.shyti
On Fri, Nov 28, 2025 at 02:14:14PM +0530, Raag Jadav wrote:
> Enable I2C controller for Crescent Island and while at it, rely on
> has_i2c flag instead of manual platform checks.
>
> Signed-off-by: Raag Jadav <raag.jadav@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> ---
> drivers/gpu/drm/xe/xe_device_types.h | 2 ++
> drivers/gpu/drm/xe/xe_i2c.c | 2 +-
> drivers/gpu/drm/xe/xe_pci.c | 3 +++
> drivers/gpu/drm/xe/xe_pci_types.h | 1 +
> 4 files changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
> index 9a9a8eb84a78..e23c50273c28 100644
> --- a/drivers/gpu/drm/xe/xe_device_types.h
> +++ b/drivers/gpu/drm/xe/xe_device_types.h
> @@ -299,6 +299,8 @@ struct xe_device {
> u8 has_heci_cscfi:1;
> /** @info.has_heci_gscfi: device has heci gscfi */
> u8 has_heci_gscfi:1;
> + /** @info.has_i2c: Device has I2C controller */
> + u8 has_i2c:1;
> /** @info.has_late_bind: Device has firmware late binding support */
> u8 has_late_bind:1;
> /** @info.has_llc: Device has a shared CPU+GPU last level cache */
> diff --git a/drivers/gpu/drm/xe/xe_i2c.c b/drivers/gpu/drm/xe/xe_i2c.c
> index 0b5452be0c87..8eccbae05705 100644
> --- a/drivers/gpu/drm/xe/xe_i2c.c
> +++ b/drivers/gpu/drm/xe/xe_i2c.c
> @@ -319,7 +319,7 @@ int xe_i2c_probe(struct xe_device *xe)
> struct xe_i2c *i2c;
> int ret;
>
> - if (xe->info.platform != XE_BATTLEMAGE)
> + if (!xe->info.has_i2c)
> return 0;
>
> if (IS_SRIOV_VF(xe))
> diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
> index 763f588521d0..2e2e9158d621 100644
> --- a/drivers/gpu/drm/xe/xe_pci.c
> +++ b/drivers/gpu/drm/xe/xe_pci.c
> @@ -366,6 +366,7 @@ static const struct xe_device_desc bmg_desc = {
> .has_mbx_power_limits = true,
> .has_gsc_nvm = 1,
> .has_heci_cscfi = 1,
> + .has_i2c = true,
> .has_late_bind = true,
> .has_sriov = true,
> .has_mem_copy_instr = true,
> @@ -411,6 +412,7 @@ static const struct xe_device_desc cri_desc = {
> .dma_mask_size = 52,
> .has_display = false,
> .has_flat_ccs = false,
> + .has_i2c = true,
> .has_mbx_power_limits = true,
> .has_mert = true,
> .has_sriov = true,
> @@ -676,6 +678,7 @@ static int xe_info_init_early(struct xe_device *xe,
> xe->info.has_gsc_nvm = desc->has_gsc_nvm;
> xe->info.has_heci_gscfi = desc->has_heci_gscfi;
> xe->info.has_heci_cscfi = desc->has_heci_cscfi;
> + xe->info.has_i2c = desc->has_i2c;
> xe->info.has_late_bind = desc->has_late_bind;
> xe->info.has_llc = desc->has_llc;
> xe->info.has_mert = desc->has_mert;
> diff --git a/drivers/gpu/drm/xe/xe_pci_types.h b/drivers/gpu/drm/xe/xe_pci_types.h
> index f19f35359696..6de23ddf6f68 100644
> --- a/drivers/gpu/drm/xe/xe_pci_types.h
> +++ b/drivers/gpu/drm/xe/xe_pci_types.h
> @@ -44,6 +44,7 @@ struct xe_device_desc {
> u8 has_gsc_nvm:1;
> u8 has_heci_gscfi:1;
> u8 has_heci_cscfi:1;
> + u8 has_i2c:1;
> u8 has_late_bind:1;
> u8 has_llc:1;
> u8 has_mbx_power_limits:1;
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ CI.KUnit: success for drm/xe/cri: Enable I2C controller (rev2)
2025-11-28 8:44 [PATCH v1] drm/xe/cri: Enable I2C controller Raag Jadav
2025-11-28 8:52 ` ✓ CI.KUnit: success for " Patchwork
2025-12-01 20:27 ` [PATCH v1] " Rodrigo Vivi
@ 2025-12-01 20:27 ` Patchwork
2025-12-01 21:33 ` ✗ Xe.CI.BAT: failure " Patchwork
` (5 subsequent siblings)
8 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2025-12-01 20:27 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe
== Series Details ==
Series: drm/xe/cri: Enable I2C controller (rev2)
URL : https://patchwork.freedesktop.org/series/158198/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[20:26:32] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[20:26:36] 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:27:07] Starting KUnit Kernel (1/1)...
[20:27:07] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[20:27:07] ================== guc_buf (11 subtests) ===================
[20:27:07] [PASSED] test_smallest
[20:27:07] [PASSED] test_largest
[20:27:07] [PASSED] test_granular
[20:27:07] [PASSED] test_unique
[20:27:07] [PASSED] test_overlap
[20:27:07] [PASSED] test_reusable
[20:27:07] [PASSED] test_too_big
[20:27:07] [PASSED] test_flush
[20:27:07] [PASSED] test_lookup
[20:27:07] [PASSED] test_data
[20:27:07] [PASSED] test_class
[20:27:07] ===================== [PASSED] guc_buf =====================
[20:27:07] =================== guc_dbm (7 subtests) ===================
[20:27:07] [PASSED] test_empty
[20:27:07] [PASSED] test_default
[20:27:07] ======================== test_size ========================
[20:27:07] [PASSED] 4
[20:27:07] [PASSED] 8
[20:27:07] [PASSED] 32
[20:27:07] [PASSED] 256
[20:27:07] ==================== [PASSED] test_size ====================
[20:27:07] ======================= test_reuse ========================
[20:27:07] [PASSED] 4
[20:27:07] [PASSED] 8
[20:27:07] [PASSED] 32
[20:27:07] [PASSED] 256
[20:27:07] =================== [PASSED] test_reuse ====================
[20:27:07] =================== test_range_overlap ====================
[20:27:07] [PASSED] 4
[20:27:07] [PASSED] 8
[20:27:07] [PASSED] 32
[20:27:07] [PASSED] 256
[20:27:07] =============== [PASSED] test_range_overlap ================
[20:27:07] =================== test_range_compact ====================
[20:27:07] [PASSED] 4
[20:27:07] [PASSED] 8
[20:27:07] [PASSED] 32
[20:27:07] [PASSED] 256
[20:27:07] =============== [PASSED] test_range_compact ================
[20:27:07] ==================== test_range_spare =====================
[20:27:07] [PASSED] 4
[20:27:07] [PASSED] 8
[20:27:07] [PASSED] 32
[20:27:07] [PASSED] 256
[20:27:07] ================ [PASSED] test_range_spare =================
[20:27:07] ===================== [PASSED] guc_dbm =====================
[20:27:07] =================== guc_idm (6 subtests) ===================
[20:27:07] [PASSED] bad_init
[20:27:07] [PASSED] no_init
[20:27:07] [PASSED] init_fini
[20:27:07] [PASSED] check_used
[20:27:07] [PASSED] check_quota
[20:27:07] [PASSED] check_all
[20:27:07] ===================== [PASSED] guc_idm =====================
[20:27:07] ================== no_relay (3 subtests) ===================
[20:27:07] [PASSED] xe_drops_guc2pf_if_not_ready
[20:27:07] [PASSED] xe_drops_guc2vf_if_not_ready
[20:27:07] [PASSED] xe_rejects_send_if_not_ready
[20:27:07] ==================== [PASSED] no_relay =====================
[20:27:07] ================== pf_relay (14 subtests) ==================
[20:27:07] [PASSED] pf_rejects_guc2pf_too_short
[20:27:07] [PASSED] pf_rejects_guc2pf_too_long
[20:27:07] [PASSED] pf_rejects_guc2pf_no_payload
[20:27:07] [PASSED] pf_fails_no_payload
[20:27:07] [PASSED] pf_fails_bad_origin
[20:27:07] [PASSED] pf_fails_bad_type
[20:27:07] [PASSED] pf_txn_reports_error
[20:27:07] [PASSED] pf_txn_sends_pf2guc
[20:27:07] [PASSED] pf_sends_pf2guc
[20:27:07] [SKIPPED] pf_loopback_nop
[20:27:07] [SKIPPED] pf_loopback_echo
[20:27:07] [SKIPPED] pf_loopback_fail
[20:27:07] [SKIPPED] pf_loopback_busy
[20:27:07] [SKIPPED] pf_loopback_retry
[20:27:07] ==================== [PASSED] pf_relay =====================
[20:27:07] ================== vf_relay (3 subtests) ===================
[20:27:07] [PASSED] vf_rejects_guc2vf_too_short
[20:27:07] [PASSED] vf_rejects_guc2vf_too_long
[20:27:07] [PASSED] vf_rejects_guc2vf_no_payload
[20:27:07] ==================== [PASSED] vf_relay =====================
[20:27:07] ================ pf_gt_config (6 subtests) =================
[20:27:07] [PASSED] fair_contexts_1vf
[20:27:07] [PASSED] fair_doorbells_1vf
[20:27:07] [PASSED] fair_ggtt_1vf
[20:27:07] ====================== fair_contexts ======================
[20:27:07] [PASSED] 1 VF
[20:27:07] [PASSED] 2 VFs
[20:27:07] [PASSED] 3 VFs
[20:27:07] [PASSED] 4 VFs
[20:27:07] [PASSED] 5 VFs
[20:27:07] [PASSED] 6 VFs
[20:27:07] [PASSED] 7 VFs
[20:27:07] [PASSED] 8 VFs
[20:27:07] [PASSED] 9 VFs
[20:27:07] [PASSED] 10 VFs
[20:27:07] [PASSED] 11 VFs
[20:27:07] [PASSED] 12 VFs
[20:27:07] [PASSED] 13 VFs
[20:27:07] [PASSED] 14 VFs
[20:27:07] [PASSED] 15 VFs
[20:27:07] [PASSED] 16 VFs
[20:27:07] [PASSED] 17 VFs
[20:27:07] [PASSED] 18 VFs
[20:27:07] [PASSED] 19 VFs
[20:27:07] [PASSED] 20 VFs
[20:27:07] [PASSED] 21 VFs
[20:27:07] [PASSED] 22 VFs
[20:27:07] [PASSED] 23 VFs
[20:27:07] [PASSED] 24 VFs
[20:27:07] [PASSED] 25 VFs
[20:27:07] [PASSED] 26 VFs
[20:27:07] [PASSED] 27 VFs
[20:27:07] [PASSED] 28 VFs
[20:27:07] [PASSED] 29 VFs
[20:27:07] [PASSED] 30 VFs
[20:27:07] [PASSED] 31 VFs
[20:27:07] [PASSED] 32 VFs
[20:27:07] [PASSED] 33 VFs
[20:27:07] [PASSED] 34 VFs
[20:27:07] [PASSED] 35 VFs
[20:27:07] [PASSED] 36 VFs
[20:27:07] [PASSED] 37 VFs
[20:27:07] [PASSED] 38 VFs
[20:27:07] [PASSED] 39 VFs
[20:27:07] [PASSED] 40 VFs
[20:27:07] [PASSED] 41 VFs
[20:27:07] [PASSED] 42 VFs
[20:27:07] [PASSED] 43 VFs
[20:27:07] [PASSED] 44 VFs
[20:27:07] [PASSED] 45 VFs
[20:27:07] [PASSED] 46 VFs
[20:27:07] [PASSED] 47 VFs
[20:27:07] [PASSED] 48 VFs
[20:27:07] [PASSED] 49 VFs
[20:27:07] [PASSED] 50 VFs
[20:27:07] [PASSED] 51 VFs
[20:27:07] [PASSED] 52 VFs
[20:27:07] [PASSED] 53 VFs
[20:27:07] [PASSED] 54 VFs
[20:27:07] [PASSED] 55 VFs
[20:27:07] [PASSED] 56 VFs
[20:27:07] [PASSED] 57 VFs
[20:27:07] [PASSED] 58 VFs
[20:27:07] [PASSED] 59 VFs
[20:27:07] [PASSED] 60 VFs
[20:27:07] [PASSED] 61 VFs
[20:27:07] [PASSED] 62 VFs
[20:27:07] [PASSED] 63 VFs
[20:27:07] ================== [PASSED] fair_contexts ==================
[20:27:07] ===================== fair_doorbells ======================
[20:27:07] [PASSED] 1 VF
[20:27:07] [PASSED] 2 VFs
[20:27:07] [PASSED] 3 VFs
[20:27:07] [PASSED] 4 VFs
[20:27:07] [PASSED] 5 VFs
[20:27:07] [PASSED] 6 VFs
[20:27:07] [PASSED] 7 VFs
[20:27:07] [PASSED] 8 VFs
[20:27:07] [PASSED] 9 VFs
[20:27:07] [PASSED] 10 VFs
[20:27:07] [PASSED] 11 VFs
[20:27:07] [PASSED] 12 VFs
[20:27:07] [PASSED] 13 VFs
[20:27:07] [PASSED] 14 VFs
[20:27:07] [PASSED] 15 VFs
[20:27:07] [PASSED] 16 VFs
[20:27:07] [PASSED] 17 VFs
[20:27:07] [PASSED] 18 VFs
[20:27:07] [PASSED] 19 VFs
[20:27:07] [PASSED] 20 VFs
[20:27:07] [PASSED] 21 VFs
[20:27:07] [PASSED] 22 VFs
[20:27:07] [PASSED] 23 VFs
[20:27:07] [PASSED] 24 VFs
[20:27:07] [PASSED] 25 VFs
[20:27:07] [PASSED] 26 VFs
[20:27:07] [PASSED] 27 VFs
[20:27:07] [PASSED] 28 VFs
[20:27:07] [PASSED] 29 VFs
[20:27:07] [PASSED] 30 VFs
[20:27:07] [PASSED] 31 VFs
[20:27:07] [PASSED] 32 VFs
[20:27:07] [PASSED] 33 VFs
[20:27:07] [PASSED] 34 VFs
[20:27:07] [PASSED] 35 VFs
[20:27:07] [PASSED] 36 VFs
[20:27:07] [PASSED] 37 VFs
[20:27:07] [PASSED] 38 VFs
[20:27:07] [PASSED] 39 VFs
[20:27:07] [PASSED] 40 VFs
[20:27:07] [PASSED] 41 VFs
[20:27:07] [PASSED] 42 VFs
[20:27:07] [PASSED] 43 VFs
[20:27:07] [PASSED] 44 VFs
[20:27:07] [PASSED] 45 VFs
[20:27:07] [PASSED] 46 VFs
[20:27:07] [PASSED] 47 VFs
[20:27:07] [PASSED] 48 VFs
[20:27:07] [PASSED] 49 VFs
[20:27:07] [PASSED] 50 VFs
[20:27:07] [PASSED] 51 VFs
[20:27:07] [PASSED] 52 VFs
[20:27:07] [PASSED] 53 VFs
[20:27:07] [PASSED] 54 VFs
[20:27:07] [PASSED] 55 VFs
[20:27:07] [PASSED] 56 VFs
[20:27:07] [PASSED] 57 VFs
[20:27:07] [PASSED] 58 VFs
[20:27:07] [PASSED] 59 VFs
[20:27:07] [PASSED] 60 VFs
[20:27:07] [PASSED] 61 VFs
[20:27:07] [PASSED] 62 VFs
[20:27:07] [PASSED] 63 VFs
[20:27:07] ================= [PASSED] fair_doorbells ==================
[20:27:07] ======================== fair_ggtt ========================
[20:27:07] [PASSED] 1 VF
[20:27:07] [PASSED] 2 VFs
[20:27:07] [PASSED] 3 VFs
[20:27:08] [PASSED] 4 VFs
[20:27:08] [PASSED] 5 VFs
[20:27:08] [PASSED] 6 VFs
[20:27:08] [PASSED] 7 VFs
[20:27:08] [PASSED] 8 VFs
[20:27:08] [PASSED] 9 VFs
[20:27:08] [PASSED] 10 VFs
[20:27:08] [PASSED] 11 VFs
[20:27:08] [PASSED] 12 VFs
[20:27:08] [PASSED] 13 VFs
[20:27:08] [PASSED] 14 VFs
[20:27:08] [PASSED] 15 VFs
[20:27:08] [PASSED] 16 VFs
[20:27:08] [PASSED] 17 VFs
[20:27:08] [PASSED] 18 VFs
[20:27:08] [PASSED] 19 VFs
[20:27:08] [PASSED] 20 VFs
[20:27:08] [PASSED] 21 VFs
[20:27:08] [PASSED] 22 VFs
[20:27:08] [PASSED] 23 VFs
[20:27:08] [PASSED] 24 VFs
[20:27:08] [PASSED] 25 VFs
[20:27:08] [PASSED] 26 VFs
[20:27:08] [PASSED] 27 VFs
[20:27:08] [PASSED] 28 VFs
[20:27:08] [PASSED] 29 VFs
[20:27:08] [PASSED] 30 VFs
[20:27:08] [PASSED] 31 VFs
[20:27:08] [PASSED] 32 VFs
[20:27:08] [PASSED] 33 VFs
[20:27:08] [PASSED] 34 VFs
[20:27:08] [PASSED] 35 VFs
[20:27:08] [PASSED] 36 VFs
[20:27:08] [PASSED] 37 VFs
[20:27:08] [PASSED] 38 VFs
[20:27:08] [PASSED] 39 VFs
[20:27:08] [PASSED] 40 VFs
[20:27:08] [PASSED] 41 VFs
[20:27:08] [PASSED] 42 VFs
[20:27:08] [PASSED] 43 VFs
[20:27:08] [PASSED] 44 VFs
[20:27:08] [PASSED] 45 VFs
[20:27:08] [PASSED] 46 VFs
[20:27:08] [PASSED] 47 VFs
[20:27:08] [PASSED] 48 VFs
[20:27:08] [PASSED] 49 VFs
[20:27:08] [PASSED] 50 VFs
[20:27:08] [PASSED] 51 VFs
[20:27:08] [PASSED] 52 VFs
[20:27:08] [PASSED] 53 VFs
[20:27:08] [PASSED] 54 VFs
[20:27:08] [PASSED] 55 VFs
[20:27:08] [PASSED] 56 VFs
[20:27:08] [PASSED] 57 VFs
[20:27:08] [PASSED] 58 VFs
[20:27:08] [PASSED] 59 VFs
[20:27:08] [PASSED] 60 VFs
[20:27:08] [PASSED] 61 VFs
[20:27:08] [PASSED] 62 VFs
[20:27:08] [PASSED] 63 VFs
[20:27:08] ==================== [PASSED] fair_ggtt ====================
[20:27:08] ================== [PASSED] pf_gt_config ===================
[20:27:08] ===================== lmtt (1 subtest) =====================
[20:27:08] ======================== test_ops =========================
[20:27:08] [PASSED] 2-level
[20:27:08] [PASSED] multi-level
[20:27:08] ==================== [PASSED] test_ops =====================
[20:27:08] ====================== [PASSED] lmtt =======================
[20:27:08] ================= pf_service (11 subtests) =================
[20:27:08] [PASSED] pf_negotiate_any
[20:27:08] [PASSED] pf_negotiate_base_match
[20:27:08] [PASSED] pf_negotiate_base_newer
[20:27:08] [PASSED] pf_negotiate_base_next
[20:27:08] [SKIPPED] pf_negotiate_base_older
[20:27:08] [PASSED] pf_negotiate_base_prev
[20:27:08] [PASSED] pf_negotiate_latest_match
[20:27:08] [PASSED] pf_negotiate_latest_newer
[20:27:08] [PASSED] pf_negotiate_latest_next
[20:27:08] [SKIPPED] pf_negotiate_latest_older
[20:27:08] [SKIPPED] pf_negotiate_latest_prev
[20:27:08] =================== [PASSED] pf_service ====================
[20:27:08] ================= xe_guc_g2g (2 subtests) ==================
[20:27:08] ============== xe_live_guc_g2g_kunit_default ==============
[20:27:08] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[20:27:08] ============== xe_live_guc_g2g_kunit_allmem ===============
[20:27:08] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[20:27:08] =================== [SKIPPED] xe_guc_g2g ===================
[20:27:08] =================== xe_mocs (2 subtests) ===================
[20:27:08] ================ xe_live_mocs_kernel_kunit ================
[20:27:08] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[20:27:08] ================ xe_live_mocs_reset_kunit =================
[20:27:08] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[20:27:08] ==================== [SKIPPED] xe_mocs =====================
[20:27:08] ================= xe_migrate (2 subtests) ==================
[20:27:08] ================= xe_migrate_sanity_kunit =================
[20:27:08] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[20:27:08] ================== xe_validate_ccs_kunit ==================
[20:27:08] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[20:27:08] =================== [SKIPPED] xe_migrate ===================
[20:27:08] ================== xe_dma_buf (1 subtest) ==================
[20:27:08] ==================== xe_dma_buf_kunit =====================
[20:27:08] ================ [SKIPPED] xe_dma_buf_kunit ================
[20:27:08] =================== [SKIPPED] xe_dma_buf ===================
[20:27:08] ================= xe_bo_shrink (1 subtest) =================
[20:27:08] =================== xe_bo_shrink_kunit ====================
[20:27:08] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[20:27:08] ================== [SKIPPED] xe_bo_shrink ==================
[20:27:08] ==================== xe_bo (2 subtests) ====================
[20:27:08] ================== xe_ccs_migrate_kunit ===================
[20:27:08] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[20:27:08] ==================== xe_bo_evict_kunit ====================
[20:27:08] =============== [SKIPPED] xe_bo_evict_kunit ================
[20:27:08] ===================== [SKIPPED] xe_bo ======================
[20:27:08] ==================== args (11 subtests) ====================
[20:27:08] [PASSED] count_args_test
[20:27:08] [PASSED] call_args_example
[20:27:08] [PASSED] call_args_test
[20:27:08] [PASSED] drop_first_arg_example
[20:27:08] [PASSED] drop_first_arg_test
[20:27:08] [PASSED] first_arg_example
[20:27:08] [PASSED] first_arg_test
[20:27:08] [PASSED] last_arg_example
[20:27:08] [PASSED] last_arg_test
[20:27:08] [PASSED] pick_arg_example
[20:27:08] [PASSED] sep_comma_example
[20:27:08] ====================== [PASSED] args =======================
[20:27:08] =================== xe_pci (3 subtests) ====================
[20:27:08] ==================== check_graphics_ip ====================
[20:27:08] [PASSED] 12.00 Xe_LP
[20:27:08] [PASSED] 12.10 Xe_LP+
[20:27:08] [PASSED] 12.55 Xe_HPG
[20:27:08] [PASSED] 12.60 Xe_HPC
[20:27:08] [PASSED] 12.70 Xe_LPG
[20:27:08] [PASSED] 12.71 Xe_LPG
[20:27:08] [PASSED] 12.74 Xe_LPG+
[20:27:08] [PASSED] 20.01 Xe2_HPG
[20:27:08] [PASSED] 20.02 Xe2_HPG
[20:27:08] [PASSED] 20.04 Xe2_LPG
[20:27:08] [PASSED] 30.00 Xe3_LPG
[20:27:08] [PASSED] 30.01 Xe3_LPG
[20:27:08] [PASSED] 30.03 Xe3_LPG
[20:27:08] [PASSED] 30.04 Xe3_LPG
[20:27:08] [PASSED] 30.05 Xe3_LPG
[20:27:08] [PASSED] 35.11 Xe3p_XPC
[20:27:08] ================ [PASSED] check_graphics_ip ================
[20:27:08] ===================== check_media_ip ======================
[20:27:08] [PASSED] 12.00 Xe_M
[20:27:08] [PASSED] 12.55 Xe_HPM
[20:27:08] [PASSED] 13.00 Xe_LPM+
[20:27:08] [PASSED] 13.01 Xe2_HPM
[20:27:08] [PASSED] 20.00 Xe2_LPM
[20:27:08] [PASSED] 30.00 Xe3_LPM
[20:27:08] [PASSED] 30.02 Xe3_LPM
[20:27:08] [PASSED] 35.00 Xe3p_LPM
[20:27:08] [PASSED] 35.03 Xe3p_HPM
[20:27:08] ================= [PASSED] check_media_ip ==================
[20:27:08] =================== check_platform_desc ===================
[20:27:08] [PASSED] 0x9A60 (TIGERLAKE)
[20:27:08] [PASSED] 0x9A68 (TIGERLAKE)
[20:27:08] [PASSED] 0x9A70 (TIGERLAKE)
[20:27:08] [PASSED] 0x9A40 (TIGERLAKE)
[20:27:08] [PASSED] 0x9A49 (TIGERLAKE)
[20:27:08] [PASSED] 0x9A59 (TIGERLAKE)
[20:27:08] [PASSED] 0x9A78 (TIGERLAKE)
[20:27:08] [PASSED] 0x9AC0 (TIGERLAKE)
[20:27:08] [PASSED] 0x9AC9 (TIGERLAKE)
[20:27:08] [PASSED] 0x9AD9 (TIGERLAKE)
[20:27:08] [PASSED] 0x9AF8 (TIGERLAKE)
[20:27:08] [PASSED] 0x4C80 (ROCKETLAKE)
[20:27:08] [PASSED] 0x4C8A (ROCKETLAKE)
[20:27:08] [PASSED] 0x4C8B (ROCKETLAKE)
[20:27:08] [PASSED] 0x4C8C (ROCKETLAKE)
[20:27:08] [PASSED] 0x4C90 (ROCKETLAKE)
[20:27:08] [PASSED] 0x4C9A (ROCKETLAKE)
[20:27:08] [PASSED] 0x4680 (ALDERLAKE_S)
[20:27:08] [PASSED] 0x4682 (ALDERLAKE_S)
[20:27:08] [PASSED] 0x4688 (ALDERLAKE_S)
[20:27:08] [PASSED] 0x468A (ALDERLAKE_S)
[20:27:08] [PASSED] 0x468B (ALDERLAKE_S)
[20:27:08] [PASSED] 0x4690 (ALDERLAKE_S)
[20:27:08] [PASSED] 0x4692 (ALDERLAKE_S)
[20:27:08] [PASSED] 0x4693 (ALDERLAKE_S)
[20:27:08] [PASSED] 0x46A0 (ALDERLAKE_P)
[20:27:08] [PASSED] 0x46A1 (ALDERLAKE_P)
[20:27:08] [PASSED] 0x46A2 (ALDERLAKE_P)
[20:27:08] [PASSED] 0x46A3 (ALDERLAKE_P)
[20:27:08] [PASSED] 0x46A6 (ALDERLAKE_P)
[20:27:08] [PASSED] 0x46A8 (ALDERLAKE_P)
[20:27:08] [PASSED] 0x46AA (ALDERLAKE_P)
[20:27:08] [PASSED] 0x462A (ALDERLAKE_P)
[20:27:08] [PASSED] 0x4626 (ALDERLAKE_P)
[20:27:08] [PASSED] 0x4628 (ALDERLAKE_P)
[20:27:08] [PASSED] 0x46B0 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[20:27:08] [PASSED] 0x46B1 (ALDERLAKE_P)
[20:27:08] [PASSED] 0x46B2 (ALDERLAKE_P)
[20:27:08] [PASSED] 0x46B3 (ALDERLAKE_P)
[20:27:08] [PASSED] 0x46C0 (ALDERLAKE_P)
[20:27:08] [PASSED] 0x46C1 (ALDERLAKE_P)
[20:27:08] [PASSED] 0x46C2 (ALDERLAKE_P)
[20:27:08] [PASSED] 0x46C3 (ALDERLAKE_P)
[20:27:08] [PASSED] 0x46D0 (ALDERLAKE_N)
[20:27:08] [PASSED] 0x46D1 (ALDERLAKE_N)
[20:27:08] [PASSED] 0x46D2 (ALDERLAKE_N)
[20:27:08] [PASSED] 0x46D3 (ALDERLAKE_N)
[20:27:08] [PASSED] 0x46D4 (ALDERLAKE_N)
[20:27:08] [PASSED] 0xA721 (ALDERLAKE_P)
[20:27:08] [PASSED] 0xA7A1 (ALDERLAKE_P)
[20:27:08] [PASSED] 0xA7A9 (ALDERLAKE_P)
[20:27:08] [PASSED] 0xA7AC (ALDERLAKE_P)
[20:27:08] [PASSED] 0xA7AD (ALDERLAKE_P)
[20:27:08] [PASSED] 0xA720 (ALDERLAKE_P)
[20:27:08] [PASSED] 0xA7A0 (ALDERLAKE_P)
[20:27:08] [PASSED] 0xA7A8 (ALDERLAKE_P)
[20:27:08] [PASSED] 0xA7AA (ALDERLAKE_P)
[20:27:08] [PASSED] 0xA7AB (ALDERLAKE_P)
[20:27:08] [PASSED] 0xA780 (ALDERLAKE_S)
[20:27:08] [PASSED] 0xA781 (ALDERLAKE_S)
[20:27:08] [PASSED] 0xA782 (ALDERLAKE_S)
[20:27:08] [PASSED] 0xA783 (ALDERLAKE_S)
[20:27:08] [PASSED] 0xA788 (ALDERLAKE_S)
[20:27:08] [PASSED] 0xA789 (ALDERLAKE_S)
[20:27:08] [PASSED] 0xA78A (ALDERLAKE_S)
[20:27:08] [PASSED] 0xA78B (ALDERLAKE_S)
[20:27:08] [PASSED] 0x4905 (DG1)
[20:27:08] [PASSED] 0x4906 (DG1)
[20:27:08] [PASSED] 0x4907 (DG1)
[20:27:08] [PASSED] 0x4908 (DG1)
[20:27:08] [PASSED] 0x4909 (DG1)
[20:27:08] [PASSED] 0x56C0 (DG2)
[20:27:08] [PASSED] 0x56C2 (DG2)
[20:27:08] [PASSED] 0x56C1 (DG2)
[20:27:08] [PASSED] 0x7D51 (METEORLAKE)
[20:27:08] [PASSED] 0x7DD1 (METEORLAKE)
[20:27:08] [PASSED] 0x7D41 (METEORLAKE)
[20:27:08] [PASSED] 0x7D67 (METEORLAKE)
[20:27:08] [PASSED] 0xB640 (METEORLAKE)
[20:27:08] [PASSED] 0x56A0 (DG2)
[20:27:08] [PASSED] 0x56A1 (DG2)
[20:27:08] [PASSED] 0x56A2 (DG2)
[20:27:08] [PASSED] 0x56BE (DG2)
[20:27:08] [PASSED] 0x56BF (DG2)
[20:27:08] [PASSED] 0x5690 (DG2)
[20:27:08] [PASSED] 0x5691 (DG2)
[20:27:08] [PASSED] 0x5692 (DG2)
[20:27:08] [PASSED] 0x56A5 (DG2)
[20:27:08] [PASSED] 0x56A6 (DG2)
[20:27:08] [PASSED] 0x56B0 (DG2)
[20:27:08] [PASSED] 0x56B1 (DG2)
[20:27:08] [PASSED] 0x56BA (DG2)
[20:27:08] [PASSED] 0x56BB (DG2)
[20:27:08] [PASSED] 0x56BC (DG2)
[20:27:08] [PASSED] 0x56BD (DG2)
[20:27:08] [PASSED] 0x5693 (DG2)
[20:27:08] [PASSED] 0x5694 (DG2)
[20:27:08] [PASSED] 0x5695 (DG2)
[20:27:08] [PASSED] 0x56A3 (DG2)
[20:27:08] [PASSED] 0x56A4 (DG2)
[20:27:08] [PASSED] 0x56B2 (DG2)
[20:27:08] [PASSED] 0x56B3 (DG2)
[20:27:08] [PASSED] 0x5696 (DG2)
[20:27:08] [PASSED] 0x5697 (DG2)
[20:27:08] [PASSED] 0xB69 (PVC)
[20:27:08] [PASSED] 0xB6E (PVC)
[20:27:08] [PASSED] 0xBD4 (PVC)
[20:27:08] [PASSED] 0xBD5 (PVC)
[20:27:08] [PASSED] 0xBD6 (PVC)
[20:27:08] [PASSED] 0xBD7 (PVC)
[20:27:08] [PASSED] 0xBD8 (PVC)
[20:27:08] [PASSED] 0xBD9 (PVC)
[20:27:08] [PASSED] 0xBDA (PVC)
[20:27:08] [PASSED] 0xBDB (PVC)
[20:27:08] [PASSED] 0xBE0 (PVC)
[20:27:08] [PASSED] 0xBE1 (PVC)
[20:27:08] [PASSED] 0xBE5 (PVC)
[20:27:08] [PASSED] 0x7D40 (METEORLAKE)
[20:27:08] [PASSED] 0x7D45 (METEORLAKE)
[20:27:08] [PASSED] 0x7D55 (METEORLAKE)
[20:27:08] [PASSED] 0x7D60 (METEORLAKE)
[20:27:08] [PASSED] 0x7DD5 (METEORLAKE)
[20:27:08] [PASSED] 0x6420 (LUNARLAKE)
[20:27:08] [PASSED] 0x64A0 (LUNARLAKE)
[20:27:08] [PASSED] 0x64B0 (LUNARLAKE)
[20:27:08] [PASSED] 0xE202 (BATTLEMAGE)
[20:27:08] [PASSED] 0xE209 (BATTLEMAGE)
[20:27:08] [PASSED] 0xE20B (BATTLEMAGE)
[20:27:08] [PASSED] 0xE20C (BATTLEMAGE)
[20:27:08] [PASSED] 0xE20D (BATTLEMAGE)
[20:27:08] [PASSED] 0xE210 (BATTLEMAGE)
[20:27:08] [PASSED] 0xE211 (BATTLEMAGE)
[20:27:08] [PASSED] 0xE212 (BATTLEMAGE)
[20:27:08] [PASSED] 0xE216 (BATTLEMAGE)
[20:27:08] [PASSED] 0xE220 (BATTLEMAGE)
[20:27:08] [PASSED] 0xE221 (BATTLEMAGE)
[20:27:08] [PASSED] 0xE222 (BATTLEMAGE)
[20:27:08] [PASSED] 0xE223 (BATTLEMAGE)
[20:27:08] [PASSED] 0xB080 (PANTHERLAKE)
[20:27:08] [PASSED] 0xB081 (PANTHERLAKE)
[20:27:08] [PASSED] 0xB082 (PANTHERLAKE)
[20:27:08] [PASSED] 0xB083 (PANTHERLAKE)
[20:27:08] [PASSED] 0xB084 (PANTHERLAKE)
[20:27:08] [PASSED] 0xB085 (PANTHERLAKE)
[20:27:08] [PASSED] 0xB086 (PANTHERLAKE)
[20:27:08] [PASSED] 0xB087 (PANTHERLAKE)
[20:27:08] [PASSED] 0xB08F (PANTHERLAKE)
[20:27:08] [PASSED] 0xB090 (PANTHERLAKE)
[20:27:08] [PASSED] 0xB0A0 (PANTHERLAKE)
[20:27:08] [PASSED] 0xB0B0 (PANTHERLAKE)
[20:27:08] [PASSED] 0xD740 (NOVALAKE_S)
[20:27:08] [PASSED] 0xD741 (NOVALAKE_S)
[20:27:08] [PASSED] 0xD742 (NOVALAKE_S)
[20:27:08] [PASSED] 0xD743 (NOVALAKE_S)
[20:27:08] [PASSED] 0xD744 (NOVALAKE_S)
[20:27:08] [PASSED] 0xD745 (NOVALAKE_S)
[20:27:08] [PASSED] 0x674C (CRESCENTISLAND)
[20:27:08] [PASSED] 0xFD80 (PANTHERLAKE)
[20:27:08] [PASSED] 0xFD81 (PANTHERLAKE)
[20:27:08] =============== [PASSED] check_platform_desc ===============
[20:27:08] ===================== [PASSED] xe_pci ======================
[20:27:08] =================== xe_rtp (2 subtests) ====================
[20:27:08] =============== xe_rtp_process_to_sr_tests ================
[20:27:08] [PASSED] coalesce-same-reg
[20:27:08] [PASSED] no-match-no-add
[20:27:08] [PASSED] match-or
[20:27:08] [PASSED] match-or-xfail
[20:27:08] [PASSED] no-match-no-add-multiple-rules
[20:27:08] [PASSED] two-regs-two-entries
[20:27:08] [PASSED] clr-one-set-other
[20:27:08] [PASSED] set-field
[20:27:08] [PASSED] conflict-duplicate
[20:27:08] [PASSED] conflict-not-disjoint
[20:27:08] [PASSED] conflict-reg-type
[20:27:08] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[20:27:08] ================== xe_rtp_process_tests ===================
[20:27:08] [PASSED] active1
[20:27:08] [PASSED] active2
[20:27:08] [PASSED] active-inactive
[20:27:08] [PASSED] inactive-active
[20:27:08] [PASSED] inactive-1st_or_active-inactive
[20:27:08] [PASSED] inactive-2nd_or_active-inactive
[20:27:08] [PASSED] inactive-last_or_active-inactive
[20:27:08] [PASSED] inactive-no_or_active-inactive
[20:27:08] ============== [PASSED] xe_rtp_process_tests ===============
[20:27:08] ===================== [PASSED] xe_rtp ======================
[20:27:08] ==================== xe_wa (1 subtest) =====================
[20:27:08] ======================== xe_wa_gt =========================
[20:27:08] [PASSED] TIGERLAKE B0
[20:27:08] [PASSED] DG1 A0
[20:27:08] [PASSED] DG1 B0
[20:27:08] [PASSED] ALDERLAKE_S A0
[20:27:08] [PASSED] ALDERLAKE_S B0
[20:27:08] [PASSED] ALDERLAKE_S C0
[20:27:08] [PASSED] ALDERLAKE_S D0
[20:27:08] [PASSED] ALDERLAKE_P A0
[20:27:08] [PASSED] ALDERLAKE_P B0
[20:27:08] [PASSED] ALDERLAKE_P C0
[20:27:08] [PASSED] ALDERLAKE_S RPLS D0
[20:27:08] [PASSED] ALDERLAKE_P RPLU E0
[20:27:08] [PASSED] DG2 G10 C0
[20:27:08] [PASSED] DG2 G11 B1
[20:27:08] [PASSED] DG2 G12 A1
[20:27:08] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[20:27:08] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[20:27:08] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[20:27:08] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[20:27:08] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[20:27:08] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[20:27:08] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[20:27:08] ==================== [PASSED] xe_wa_gt =====================
[20:27:08] ====================== [PASSED] xe_wa ======================
[20:27:08] ============================================================
[20:27:08] Testing complete. Ran 510 tests: passed: 492, skipped: 18
[20:27:08] Elapsed time: 36.136s total, 4.243s configuring, 31.377s building, 0.462s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[20:27:08] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[20:27:09] 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:27:34] Starting KUnit Kernel (1/1)...
[20:27:34] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[20:27:34] ============ drm_test_pick_cmdline (2 subtests) ============
[20:27:34] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[20:27:34] =============== drm_test_pick_cmdline_named ===============
[20:27:34] [PASSED] NTSC
[20:27:34] [PASSED] NTSC-J
[20:27:34] [PASSED] PAL
[20:27:34] [PASSED] PAL-M
[20:27:34] =========== [PASSED] drm_test_pick_cmdline_named ===========
[20:27:34] ============== [PASSED] drm_test_pick_cmdline ==============
[20:27:34] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[20:27:34] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[20:27:34] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[20:27:34] =========== drm_validate_clone_mode (2 subtests) ===========
[20:27:34] ============== drm_test_check_in_clone_mode ===============
[20:27:34] [PASSED] in_clone_mode
[20:27:34] [PASSED] not_in_clone_mode
[20:27:34] ========== [PASSED] drm_test_check_in_clone_mode ===========
[20:27:34] =============== drm_test_check_valid_clones ===============
[20:27:34] [PASSED] not_in_clone_mode
[20:27:34] [PASSED] valid_clone
[20:27:34] [PASSED] invalid_clone
[20:27:34] =========== [PASSED] drm_test_check_valid_clones ===========
[20:27:34] ============= [PASSED] drm_validate_clone_mode =============
[20:27:34] ============= drm_validate_modeset (1 subtest) =============
[20:27:34] [PASSED] drm_test_check_connector_changed_modeset
[20:27:34] ============== [PASSED] drm_validate_modeset ===============
[20:27:34] ====== drm_test_bridge_get_current_state (2 subtests) ======
[20:27:34] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[20:27:34] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[20:27:34] ======== [PASSED] drm_test_bridge_get_current_state ========
[20:27:34] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[20:27:34] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[20:27:34] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[20:27:34] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[20:27:34] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[20:27:34] ============== drm_bridge_alloc (2 subtests) ===============
[20:27:34] [PASSED] drm_test_drm_bridge_alloc_basic
[20:27:34] [PASSED] drm_test_drm_bridge_alloc_get_put
[20:27:34] ================ [PASSED] drm_bridge_alloc =================
[20:27:34] ================== drm_buddy (8 subtests) ==================
[20:27:34] [PASSED] drm_test_buddy_alloc_limit
[20:27:34] [PASSED] drm_test_buddy_alloc_optimistic
[20:27:34] [PASSED] drm_test_buddy_alloc_pessimistic
[20:27:34] [PASSED] drm_test_buddy_alloc_pathological
[20:27:34] [PASSED] drm_test_buddy_alloc_contiguous
[20:27:34] [PASSED] drm_test_buddy_alloc_clear
[20:27:34] [PASSED] drm_test_buddy_alloc_range_bias
[20:27:35] [PASSED] drm_test_buddy_fragmentation_performance
[20:27:35] ==================== [PASSED] drm_buddy ====================
[20:27:35] ============= drm_cmdline_parser (40 subtests) =============
[20:27:35] [PASSED] drm_test_cmdline_force_d_only
[20:27:35] [PASSED] drm_test_cmdline_force_D_only_dvi
[20:27:35] [PASSED] drm_test_cmdline_force_D_only_hdmi
[20:27:35] [PASSED] drm_test_cmdline_force_D_only_not_digital
[20:27:35] [PASSED] drm_test_cmdline_force_e_only
[20:27:35] [PASSED] drm_test_cmdline_res
[20:27:35] [PASSED] drm_test_cmdline_res_vesa
[20:27:35] [PASSED] drm_test_cmdline_res_vesa_rblank
[20:27:35] [PASSED] drm_test_cmdline_res_rblank
[20:27:35] [PASSED] drm_test_cmdline_res_bpp
[20:27:35] [PASSED] drm_test_cmdline_res_refresh
[20:27:35] [PASSED] drm_test_cmdline_res_bpp_refresh
[20:27:35] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[20:27:35] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[20:27:35] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[20:27:35] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[20:27:35] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[20:27:35] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[20:27:35] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[20:27:35] [PASSED] drm_test_cmdline_res_margins_force_on
[20:27:35] [PASSED] drm_test_cmdline_res_vesa_margins
[20:27:35] [PASSED] drm_test_cmdline_name
[20:27:35] [PASSED] drm_test_cmdline_name_bpp
[20:27:35] [PASSED] drm_test_cmdline_name_option
[20:27:35] [PASSED] drm_test_cmdline_name_bpp_option
[20:27:35] [PASSED] drm_test_cmdline_rotate_0
[20:27:35] [PASSED] drm_test_cmdline_rotate_90
[20:27:35] [PASSED] drm_test_cmdline_rotate_180
[20:27:35] [PASSED] drm_test_cmdline_rotate_270
[20:27:35] [PASSED] drm_test_cmdline_hmirror
[20:27:35] [PASSED] drm_test_cmdline_vmirror
[20:27:35] [PASSED] drm_test_cmdline_margin_options
[20:27:35] [PASSED] drm_test_cmdline_multiple_options
[20:27:35] [PASSED] drm_test_cmdline_bpp_extra_and_option
[20:27:35] [PASSED] drm_test_cmdline_extra_and_option
[20:27:35] [PASSED] drm_test_cmdline_freestanding_options
[20:27:35] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[20:27:35] [PASSED] drm_test_cmdline_panel_orientation
[20:27:35] ================ drm_test_cmdline_invalid =================
[20:27:35] [PASSED] margin_only
[20:27:35] [PASSED] interlace_only
[20:27:35] [PASSED] res_missing_x
[20:27:35] [PASSED] res_missing_y
[20:27:35] [PASSED] res_bad_y
[20:27:35] [PASSED] res_missing_y_bpp
[20:27:35] [PASSED] res_bad_bpp
[20:27:35] [PASSED] res_bad_refresh
[20:27:35] [PASSED] res_bpp_refresh_force_on_off
[20:27:35] [PASSED] res_invalid_mode
[20:27:35] [PASSED] res_bpp_wrong_place_mode
[20:27:35] [PASSED] name_bpp_refresh
[20:27:35] [PASSED] name_refresh
[20:27:35] [PASSED] name_refresh_wrong_mode
[20:27:35] [PASSED] name_refresh_invalid_mode
[20:27:35] [PASSED] rotate_multiple
[20:27:35] [PASSED] rotate_invalid_val
[20:27:35] [PASSED] rotate_truncated
[20:27:35] [PASSED] invalid_option
[20:27:35] [PASSED] invalid_tv_option
[20:27:35] [PASSED] truncated_tv_option
[20:27:35] ============ [PASSED] drm_test_cmdline_invalid =============
[20:27:35] =============== drm_test_cmdline_tv_options ===============
[20:27:35] [PASSED] NTSC
[20:27:35] [PASSED] NTSC_443
[20:27:35] [PASSED] NTSC_J
[20:27:35] [PASSED] PAL
[20:27:35] [PASSED] PAL_M
[20:27:35] [PASSED] PAL_N
[20:27:35] [PASSED] SECAM
[20:27:35] [PASSED] MONO_525
[20:27:35] [PASSED] MONO_625
[20:27:35] =========== [PASSED] drm_test_cmdline_tv_options ===========
[20:27:35] =============== [PASSED] drm_cmdline_parser ================
[20:27:35] ========== drmm_connector_hdmi_init (20 subtests) ==========
[20:27:35] [PASSED] drm_test_connector_hdmi_init_valid
[20:27:35] [PASSED] drm_test_connector_hdmi_init_bpc_8
[20:27:35] [PASSED] drm_test_connector_hdmi_init_bpc_10
[20:27:35] [PASSED] drm_test_connector_hdmi_init_bpc_12
[20:27:35] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[20:27:35] [PASSED] drm_test_connector_hdmi_init_bpc_null
[20:27:35] [PASSED] drm_test_connector_hdmi_init_formats_empty
[20:27:35] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[20:27:35] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[20:27:35] [PASSED] supported_formats=0x9 yuv420_allowed=1
[20:27:35] [PASSED] supported_formats=0x9 yuv420_allowed=0
[20:27:35] [PASSED] supported_formats=0x3 yuv420_allowed=1
[20:27:35] [PASSED] supported_formats=0x3 yuv420_allowed=0
[20:27:35] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[20:27:35] [PASSED] drm_test_connector_hdmi_init_null_ddc
[20:27:35] [PASSED] drm_test_connector_hdmi_init_null_product
[20:27:35] [PASSED] drm_test_connector_hdmi_init_null_vendor
[20:27:35] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[20:27:35] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[20:27:35] [PASSED] drm_test_connector_hdmi_init_product_valid
[20:27:35] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[20:27:35] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[20:27:35] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[20:27:35] ========= drm_test_connector_hdmi_init_type_valid =========
[20:27:35] [PASSED] HDMI-A
[20:27:35] [PASSED] HDMI-B
[20:27:35] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[20:27:35] ======== drm_test_connector_hdmi_init_type_invalid ========
[20:27:35] [PASSED] Unknown
[20:27:35] [PASSED] VGA
[20:27:35] [PASSED] DVI-I
[20:27:35] [PASSED] DVI-D
[20:27:35] [PASSED] DVI-A
[20:27:35] [PASSED] Composite
[20:27:35] [PASSED] SVIDEO
[20:27:35] [PASSED] LVDS
[20:27:35] [PASSED] Component
[20:27:35] [PASSED] DIN
[20:27:35] [PASSED] DP
[20:27:35] [PASSED] TV
[20:27:35] [PASSED] eDP
[20:27:35] [PASSED] Virtual
[20:27:35] [PASSED] DSI
[20:27:35] [PASSED] DPI
[20:27:35] [PASSED] Writeback
[20:27:35] [PASSED] SPI
[20:27:35] [PASSED] USB
[20:27:35] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[20:27:35] ============ [PASSED] drmm_connector_hdmi_init =============
[20:27:35] ============= drmm_connector_init (3 subtests) =============
[20:27:35] [PASSED] drm_test_drmm_connector_init
[20:27:35] [PASSED] drm_test_drmm_connector_init_null_ddc
[20:27:35] ========= drm_test_drmm_connector_init_type_valid =========
[20:27:35] [PASSED] Unknown
[20:27:35] [PASSED] VGA
[20:27:35] [PASSED] DVI-I
[20:27:35] [PASSED] DVI-D
[20:27:35] [PASSED] DVI-A
[20:27:35] [PASSED] Composite
[20:27:35] [PASSED] SVIDEO
[20:27:35] [PASSED] LVDS
[20:27:35] [PASSED] Component
[20:27:35] [PASSED] DIN
[20:27:35] [PASSED] DP
[20:27:35] [PASSED] HDMI-A
[20:27:35] [PASSED] HDMI-B
[20:27:35] [PASSED] TV
[20:27:35] [PASSED] eDP
[20:27:35] [PASSED] Virtual
[20:27:35] [PASSED] DSI
[20:27:35] [PASSED] DPI
[20:27:35] [PASSED] Writeback
[20:27:35] [PASSED] SPI
[20:27:35] [PASSED] USB
[20:27:35] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[20:27:35] =============== [PASSED] drmm_connector_init ===============
[20:27:35] ========= drm_connector_dynamic_init (6 subtests) ==========
[20:27:35] [PASSED] drm_test_drm_connector_dynamic_init
[20:27:35] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[20:27:35] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[20:27:35] [PASSED] drm_test_drm_connector_dynamic_init_properties
[20:27:35] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[20:27:35] [PASSED] Unknown
[20:27:35] [PASSED] VGA
[20:27:35] [PASSED] DVI-I
[20:27:35] [PASSED] DVI-D
[20:27:35] [PASSED] DVI-A
[20:27:35] [PASSED] Composite
[20:27:35] [PASSED] SVIDEO
[20:27:35] [PASSED] LVDS
[20:27:35] [PASSED] Component
[20:27:35] [PASSED] DIN
[20:27:35] [PASSED] DP
[20:27:35] [PASSED] HDMI-A
[20:27:35] [PASSED] HDMI-B
[20:27:35] [PASSED] TV
[20:27:35] [PASSED] eDP
[20:27:35] [PASSED] Virtual
[20:27:35] [PASSED] DSI
[20:27:35] [PASSED] DPI
[20:27:35] [PASSED] Writeback
[20:27:35] [PASSED] SPI
[20:27:35] [PASSED] USB
[20:27:35] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[20:27:35] ======== drm_test_drm_connector_dynamic_init_name =========
[20:27:35] [PASSED] Unknown
[20:27:35] [PASSED] VGA
[20:27:35] [PASSED] DVI-I
[20:27:35] [PASSED] DVI-D
[20:27:35] [PASSED] DVI-A
[20:27:35] [PASSED] Composite
[20:27:35] [PASSED] SVIDEO
[20:27:35] [PASSED] LVDS
[20:27:35] [PASSED] Component
[20:27:35] [PASSED] DIN
[20:27:35] [PASSED] DP
[20:27:35] [PASSED] HDMI-A
[20:27:35] [PASSED] HDMI-B
[20:27:35] [PASSED] TV
[20:27:35] [PASSED] eDP
[20:27:35] [PASSED] Virtual
[20:27:35] [PASSED] DSI
[20:27:35] [PASSED] DPI
[20:27:35] [PASSED] Writeback
[20:27:35] [PASSED] SPI
[20:27:35] [PASSED] USB
[20:27:35] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[20:27:35] =========== [PASSED] drm_connector_dynamic_init ============
[20:27:35] ==== drm_connector_dynamic_register_early (4 subtests) =====
[20:27:35] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[20:27:35] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[20:27:35] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[20:27:35] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[20:27:35] ====== [PASSED] drm_connector_dynamic_register_early =======
[20:27:35] ======= drm_connector_dynamic_register (7 subtests) ========
[20:27:35] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[20:27:35] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[20:27:35] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[20:27:35] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[20:27:35] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[20:27:35] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[20:27:35] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[20:27:35] ========= [PASSED] drm_connector_dynamic_register ==========
[20:27:35] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[20:27:35] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[20:27:35] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[20:27:35] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[20:27:35] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[20:27:35] ========== drm_test_get_tv_mode_from_name_valid ===========
[20:27:35] [PASSED] NTSC
[20:27:35] [PASSED] NTSC-443
[20:27:35] [PASSED] NTSC-J
[20:27:35] [PASSED] PAL
[20:27:35] [PASSED] PAL-M
[20:27:35] [PASSED] PAL-N
[20:27:35] [PASSED] SECAM
[20:27:35] [PASSED] Mono
[20:27:35] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[20:27:35] [PASSED] drm_test_get_tv_mode_from_name_truncated
[20:27:35] ============ [PASSED] drm_get_tv_mode_from_name ============
[20:27:35] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[20:27:35] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[20:27:35] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[20:27:35] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[20:27:35] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[20:27:35] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[20:27:35] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[20:27:35] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[20:27:35] [PASSED] VIC 96
[20:27:35] [PASSED] VIC 97
[20:27:35] [PASSED] VIC 101
[20:27:35] [PASSED] VIC 102
[20:27:35] [PASSED] VIC 106
[20:27:35] [PASSED] VIC 107
[20:27:35] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[20:27:35] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[20:27:35] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[20:27:35] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[20:27:35] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[20:27:35] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[20:27:35] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[20:27:35] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[20:27:35] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[20:27:35] [PASSED] Automatic
[20:27:35] [PASSED] Full
[20:27:35] [PASSED] Limited 16:235
[20:27:35] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[20:27:35] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[20:27:35] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[20:27:35] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[20:27:35] === drm_test_drm_hdmi_connector_get_output_format_name ====
[20:27:35] [PASSED] RGB
[20:27:35] [PASSED] YUV 4:2:0
[20:27:35] [PASSED] YUV 4:2:2
[20:27:35] [PASSED] YUV 4:4:4
[20:27:35] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[20:27:35] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[20:27:35] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[20:27:35] ============= drm_damage_helper (21 subtests) ==============
[20:27:35] [PASSED] drm_test_damage_iter_no_damage
[20:27:35] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[20:27:35] [PASSED] drm_test_damage_iter_no_damage_src_moved
[20:27:35] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[20:27:35] [PASSED] drm_test_damage_iter_no_damage_not_visible
[20:27:35] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[20:27:35] [PASSED] drm_test_damage_iter_no_damage_no_fb
[20:27:35] [PASSED] drm_test_damage_iter_simple_damage
[20:27:35] [PASSED] drm_test_damage_iter_single_damage
[20:27:35] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[20:27:35] [PASSED] drm_test_damage_iter_single_damage_outside_src
[20:27:35] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[20:27:35] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[20:27:35] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[20:27:35] [PASSED] drm_test_damage_iter_single_damage_src_moved
[20:27:35] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[20:27:35] [PASSED] drm_test_damage_iter_damage
[20:27:35] [PASSED] drm_test_damage_iter_damage_one_intersect
[20:27:35] [PASSED] drm_test_damage_iter_damage_one_outside
[20:27:35] [PASSED] drm_test_damage_iter_damage_src_moved
[20:27:35] [PASSED] drm_test_damage_iter_damage_not_visible
[20:27:35] ================ [PASSED] drm_damage_helper ================
[20:27:35] ============== drm_dp_mst_helper (3 subtests) ==============
[20:27:35] ============== drm_test_dp_mst_calc_pbn_mode ==============
[20:27:35] [PASSED] Clock 154000 BPP 30 DSC disabled
[20:27:35] [PASSED] Clock 234000 BPP 30 DSC disabled
[20:27:35] [PASSED] Clock 297000 BPP 24 DSC disabled
[20:27:35] [PASSED] Clock 332880 BPP 24 DSC enabled
[20:27:35] [PASSED] Clock 324540 BPP 24 DSC enabled
[20:27:35] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[20:27:35] ============== drm_test_dp_mst_calc_pbn_div ===============
[20:27:35] [PASSED] Link rate 2000000 lane count 4
[20:27:35] [PASSED] Link rate 2000000 lane count 2
[20:27:35] [PASSED] Link rate 2000000 lane count 1
[20:27:35] [PASSED] Link rate 1350000 lane count 4
[20:27:35] [PASSED] Link rate 1350000 lane count 2
[20:27:35] [PASSED] Link rate 1350000 lane count 1
[20:27:35] [PASSED] Link rate 1000000 lane count 4
[20:27:35] [PASSED] Link rate 1000000 lane count 2
[20:27:35] [PASSED] Link rate 1000000 lane count 1
[20:27:35] [PASSED] Link rate 810000 lane count 4
[20:27:35] [PASSED] Link rate 810000 lane count 2
[20:27:35] [PASSED] Link rate 810000 lane count 1
[20:27:35] [PASSED] Link rate 540000 lane count 4
[20:27:35] [PASSED] Link rate 540000 lane count 2
[20:27:35] [PASSED] Link rate 540000 lane count 1
[20:27:35] [PASSED] Link rate 270000 lane count 4
[20:27:35] [PASSED] Link rate 270000 lane count 2
[20:27:35] [PASSED] Link rate 270000 lane count 1
[20:27:35] [PASSED] Link rate 162000 lane count 4
[20:27:35] [PASSED] Link rate 162000 lane count 2
[20:27:35] [PASSED] Link rate 162000 lane count 1
[20:27:35] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[20:27:35] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[20:27:35] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[20:27:35] [PASSED] DP_POWER_UP_PHY with port number
[20:27:35] [PASSED] DP_POWER_DOWN_PHY with port number
[20:27:35] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[20:27:35] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[20:27:35] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[20:27:35] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[20:27:35] [PASSED] DP_QUERY_PAYLOAD with port number
[20:27:35] [PASSED] DP_QUERY_PAYLOAD with VCPI
[20:27:35] [PASSED] DP_REMOTE_DPCD_READ with port number
[20:27:35] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[20:27:35] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[20:27:35] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[20:27:35] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[20:27:35] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[20:27:35] [PASSED] DP_REMOTE_I2C_READ with port number
[20:27:35] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[20:27:35] [PASSED] DP_REMOTE_I2C_READ with transactions array
[20:27:35] [PASSED] DP_REMOTE_I2C_WRITE with port number
[20:27:35] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[20:27:35] [PASSED] DP_REMOTE_I2C_WRITE with data array
[20:27:35] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[20:27:35] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[20:27:35] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[20:27:35] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[20:27:35] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[20:27:35] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[20:27:35] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[20:27:35] ================ [PASSED] drm_dp_mst_helper ================
[20:27:35] ================== drm_exec (7 subtests) ===================
[20:27:35] [PASSED] sanitycheck
[20:27:35] [PASSED] test_lock
[20:27:35] [PASSED] test_lock_unlock
[20:27:35] [PASSED] test_duplicates
[20:27:35] [PASSED] test_prepare
[20:27:35] [PASSED] test_prepare_array
[20:27:35] [PASSED] test_multiple_loops
[20:27:35] ==================== [PASSED] drm_exec =====================
[20:27:35] =========== drm_format_helper_test (17 subtests) ===========
[20:27:35] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[20:27:35] [PASSED] single_pixel_source_buffer
[20:27:35] [PASSED] single_pixel_clip_rectangle
[20:27:35] [PASSED] well_known_colors
[20:27:35] [PASSED] destination_pitch
[20:27:35] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[20:27:35] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[20:27:35] [PASSED] single_pixel_source_buffer
[20:27:35] [PASSED] single_pixel_clip_rectangle
[20:27:35] [PASSED] well_known_colors
[20:27:35] [PASSED] destination_pitch
[20:27:35] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[20:27:35] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[20:27:35] [PASSED] single_pixel_source_buffer
[20:27:35] [PASSED] single_pixel_clip_rectangle
[20:27:35] [PASSED] well_known_colors
[20:27:35] [PASSED] destination_pitch
[20:27:35] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[20:27:35] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[20:27:35] [PASSED] single_pixel_source_buffer
[20:27:35] [PASSED] single_pixel_clip_rectangle
[20:27:35] [PASSED] well_known_colors
[20:27:35] [PASSED] destination_pitch
[20:27:35] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[20:27:35] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[20:27:35] [PASSED] single_pixel_source_buffer
[20:27:35] [PASSED] single_pixel_clip_rectangle
[20:27:35] [PASSED] well_known_colors
[20:27:35] [PASSED] destination_pitch
[20:27:35] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[20:27:35] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[20:27:35] [PASSED] single_pixel_source_buffer
[20:27:35] [PASSED] single_pixel_clip_rectangle
[20:27:35] [PASSED] well_known_colors
[20:27:35] [PASSED] destination_pitch
[20:27:35] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[20:27:35] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[20:27:35] [PASSED] single_pixel_source_buffer
[20:27:35] [PASSED] single_pixel_clip_rectangle
[20:27:35] [PASSED] well_known_colors
[20:27:35] [PASSED] destination_pitch
[20:27:35] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[20:27:35] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[20:27:35] [PASSED] single_pixel_source_buffer
[20:27:35] [PASSED] single_pixel_clip_rectangle
[20:27:35] [PASSED] well_known_colors
[20:27:35] [PASSED] destination_pitch
[20:27:35] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[20:27:35] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[20:27:35] [PASSED] single_pixel_source_buffer
[20:27:35] [PASSED] single_pixel_clip_rectangle
[20:27:35] [PASSED] well_known_colors
[20:27:35] [PASSED] destination_pitch
[20:27:35] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[20:27:35] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[20:27:35] [PASSED] single_pixel_source_buffer
[20:27:35] [PASSED] single_pixel_clip_rectangle
[20:27:35] [PASSED] well_known_colors
[20:27:35] [PASSED] destination_pitch
[20:27:35] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[20:27:35] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[20:27:35] [PASSED] single_pixel_source_buffer
[20:27:35] [PASSED] single_pixel_clip_rectangle
[20:27:35] [PASSED] well_known_colors
[20:27:35] [PASSED] destination_pitch
[20:27:35] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[20:27:35] ============== drm_test_fb_xrgb8888_to_mono ===============
[20:27:35] [PASSED] single_pixel_source_buffer
[20:27:35] [PASSED] single_pixel_clip_rectangle
[20:27:35] [PASSED] well_known_colors
[20:27:35] [PASSED] destination_pitch
[20:27:35] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[20:27:35] ==================== drm_test_fb_swab =====================
[20:27:35] [PASSED] single_pixel_source_buffer
[20:27:35] [PASSED] single_pixel_clip_rectangle
[20:27:35] [PASSED] well_known_colors
[20:27:35] [PASSED] destination_pitch
[20:27:35] ================ [PASSED] drm_test_fb_swab =================
[20:27:35] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[20:27:35] [PASSED] single_pixel_source_buffer
[20:27:35] [PASSED] single_pixel_clip_rectangle
[20:27:35] [PASSED] well_known_colors
[20:27:35] [PASSED] destination_pitch
[20:27:35] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[20:27:35] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[20:27:35] [PASSED] single_pixel_source_buffer
[20:27:35] [PASSED] single_pixel_clip_rectangle
[20:27:35] [PASSED] well_known_colors
[20:27:35] [PASSED] destination_pitch
[20:27:35] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[20:27:35] ================= drm_test_fb_clip_offset =================
[20:27:35] [PASSED] pass through
[20:27:35] [PASSED] horizontal offset
[20:27:35] [PASSED] vertical offset
[20:27:35] [PASSED] horizontal and vertical offset
[20:27:35] [PASSED] horizontal offset (custom pitch)
[20:27:35] [PASSED] vertical offset (custom pitch)
[20:27:35] [PASSED] horizontal and vertical offset (custom pitch)
[20:27:35] ============= [PASSED] drm_test_fb_clip_offset =============
[20:27:35] =================== drm_test_fb_memcpy ====================
[20:27:35] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[20:27:35] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[20:27:35] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[20:27:35] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[20:27:35] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[20:27:35] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[20:27:35] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[20:27:35] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[20:27:35] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[20:27:35] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[20:27:35] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[20:27:35] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[20:27:35] =============== [PASSED] drm_test_fb_memcpy ================
[20:27:35] ============= [PASSED] drm_format_helper_test ==============
[20:27:35] ================= drm_format (18 subtests) =================
[20:27:35] [PASSED] drm_test_format_block_width_invalid
[20:27:35] [PASSED] drm_test_format_block_width_one_plane
[20:27:35] [PASSED] drm_test_format_block_width_two_plane
[20:27:35] [PASSED] drm_test_format_block_width_three_plane
[20:27:35] [PASSED] drm_test_format_block_width_tiled
[20:27:35] [PASSED] drm_test_format_block_height_invalid
[20:27:35] [PASSED] drm_test_format_block_height_one_plane
[20:27:35] [PASSED] drm_test_format_block_height_two_plane
[20:27:35] [PASSED] drm_test_format_block_height_three_plane
[20:27:35] [PASSED] drm_test_format_block_height_tiled
[20:27:35] [PASSED] drm_test_format_min_pitch_invalid
[20:27:35] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[20:27:35] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[20:27:35] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[20:27:35] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[20:27:35] [PASSED] drm_test_format_min_pitch_two_plane
[20:27:35] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[20:27:35] [PASSED] drm_test_format_min_pitch_tiled
[20:27:35] =================== [PASSED] drm_format ====================
[20:27:35] ============== drm_framebuffer (10 subtests) ===============
[20:27:35] ========== drm_test_framebuffer_check_src_coords ==========
[20:27:35] [PASSED] Success: source fits into fb
[20:27:35] [PASSED] Fail: overflowing fb with x-axis coordinate
[20:27:35] [PASSED] Fail: overflowing fb with y-axis coordinate
[20:27:35] [PASSED] Fail: overflowing fb with source width
[20:27:35] [PASSED] Fail: overflowing fb with source height
[20:27:35] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[20:27:35] [PASSED] drm_test_framebuffer_cleanup
[20:27:35] =============== drm_test_framebuffer_create ===============
[20:27:35] [PASSED] ABGR8888 normal sizes
[20:27:35] [PASSED] ABGR8888 max sizes
[20:27:35] [PASSED] ABGR8888 pitch greater than min required
[20:27:35] [PASSED] ABGR8888 pitch less than min required
[20:27:35] [PASSED] ABGR8888 Invalid width
[20:27:35] [PASSED] ABGR8888 Invalid buffer handle
[20:27:35] [PASSED] No pixel format
[20:27:35] [PASSED] ABGR8888 Width 0
[20:27:35] [PASSED] ABGR8888 Height 0
[20:27:35] [PASSED] ABGR8888 Out of bound height * pitch combination
[20:27:35] [PASSED] ABGR8888 Large buffer offset
[20:27:35] [PASSED] ABGR8888 Buffer offset for inexistent plane
[20:27:35] [PASSED] ABGR8888 Invalid flag
[20:27:35] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[20:27:35] [PASSED] ABGR8888 Valid buffer modifier
[20:27:35] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[20:27:35] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[20:27:35] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[20:27:35] [PASSED] NV12 Normal sizes
[20:27:35] [PASSED] NV12 Max sizes
[20:27:35] [PASSED] NV12 Invalid pitch
[20:27:35] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[20:27:35] [PASSED] NV12 different modifier per-plane
[20:27:35] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[20:27:35] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[20:27:35] [PASSED] NV12 Modifier for inexistent plane
[20:27:35] [PASSED] NV12 Handle for inexistent plane
[20:27:35] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[20:27:35] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[20:27:35] [PASSED] YVU420 Normal sizes
[20:27:35] [PASSED] YVU420 Max sizes
[20:27:35] [PASSED] YVU420 Invalid pitch
[20:27:35] [PASSED] YVU420 Different pitches
[20:27:35] [PASSED] YVU420 Different buffer offsets/pitches
[20:27:35] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[20:27:35] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[20:27:35] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[20:27:35] [PASSED] YVU420 Valid modifier
[20:27:35] [PASSED] YVU420 Different modifiers per plane
[20:27:35] [PASSED] YVU420 Modifier for inexistent plane
[20:27:35] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[20:27:35] [PASSED] X0L2 Normal sizes
[20:27:35] [PASSED] X0L2 Max sizes
[20:27:35] [PASSED] X0L2 Invalid pitch
[20:27:35] [PASSED] X0L2 Pitch greater than minimum required
[20:27:35] [PASSED] X0L2 Handle for inexistent plane
[20:27:35] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[20:27:35] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[20:27:35] [PASSED] X0L2 Valid modifier
[20:27:35] [PASSED] X0L2 Modifier for inexistent plane
[20:27:35] =========== [PASSED] drm_test_framebuffer_create ===========
[20:27:35] [PASSED] drm_test_framebuffer_free
[20:27:35] [PASSED] drm_test_framebuffer_init
[20:27:35] [PASSED] drm_test_framebuffer_init_bad_format
[20:27:35] [PASSED] drm_test_framebuffer_init_dev_mismatch
[20:27:35] [PASSED] drm_test_framebuffer_lookup
[20:27:35] [PASSED] drm_test_framebuffer_lookup_inexistent
[20:27:35] [PASSED] drm_test_framebuffer_modifiers_not_supported
[20:27:35] ================= [PASSED] drm_framebuffer =================
[20:27:35] ================ drm_gem_shmem (8 subtests) ================
[20:27:35] [PASSED] drm_gem_shmem_test_obj_create
[20:27:35] [PASSED] drm_gem_shmem_test_obj_create_private
[20:27:35] [PASSED] drm_gem_shmem_test_pin_pages
[20:27:35] [PASSED] drm_gem_shmem_test_vmap
[20:27:35] [PASSED] drm_gem_shmem_test_get_pages_sgt
[20:27:35] [PASSED] drm_gem_shmem_test_get_sg_table
[20:27:35] [PASSED] drm_gem_shmem_test_madvise
[20:27:35] [PASSED] drm_gem_shmem_test_purge
[20:27:35] ================== [PASSED] drm_gem_shmem ==================
[20:27:35] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[20:27:35] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[20:27:35] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[20:27:35] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[20:27:35] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[20:27:35] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[20:27:35] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[20:27:35] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[20:27:35] [PASSED] Automatic
[20:27:35] [PASSED] Full
[20:27:35] [PASSED] Limited 16:235
[20:27:35] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[20:27:35] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[20:27:35] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[20:27:35] [PASSED] drm_test_check_disable_connector
[20:27:35] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[20:27:35] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[20:27:35] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[20:27:35] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[20:27:35] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[20:27:35] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[20:27:35] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[20:27:35] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[20:27:35] [PASSED] drm_test_check_output_bpc_dvi
[20:27:35] [PASSED] drm_test_check_output_bpc_format_vic_1
[20:27:35] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[20:27:35] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[20:27:35] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[20:27:35] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[20:27:35] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[20:27:35] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[20:27:35] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[20:27:35] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[20:27:35] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[20:27:35] [PASSED] drm_test_check_broadcast_rgb_value
[20:27:35] [PASSED] drm_test_check_bpc_8_value
[20:27:35] [PASSED] drm_test_check_bpc_10_value
[20:27:35] [PASSED] drm_test_check_bpc_12_value
[20:27:35] [PASSED] drm_test_check_format_value
[20:27:35] [PASSED] drm_test_check_tmds_char_value
[20:27:35] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[20:27:35] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[20:27:35] [PASSED] drm_test_check_mode_valid
[20:27:35] [PASSED] drm_test_check_mode_valid_reject
[20:27:35] [PASSED] drm_test_check_mode_valid_reject_rate
[20:27:35] [PASSED] drm_test_check_mode_valid_reject_max_clock
[20:27:35] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[20:27:35] ================= drm_managed (2 subtests) =================
[20:27:35] [PASSED] drm_test_managed_release_action
[20:27:35] [PASSED] drm_test_managed_run_action
[20:27:35] =================== [PASSED] drm_managed ===================
[20:27:35] =================== drm_mm (6 subtests) ====================
[20:27:35] [PASSED] drm_test_mm_init
[20:27:35] [PASSED] drm_test_mm_debug
[20:27:35] [PASSED] drm_test_mm_align32
[20:27:35] [PASSED] drm_test_mm_align64
[20:27:35] [PASSED] drm_test_mm_lowest
[20:27:35] [PASSED] drm_test_mm_highest
[20:27:35] ===================== [PASSED] drm_mm ======================
[20:27:35] ============= drm_modes_analog_tv (5 subtests) =============
[20:27:35] [PASSED] drm_test_modes_analog_tv_mono_576i
[20:27:35] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[20:27:35] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[20:27:35] [PASSED] drm_test_modes_analog_tv_pal_576i
[20:27:35] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[20:27:35] =============== [PASSED] drm_modes_analog_tv ===============
[20:27:35] ============== drm_plane_helper (2 subtests) ===============
[20:27:35] =============== drm_test_check_plane_state ================
[20:27:35] [PASSED] clipping_simple
[20:27:35] [PASSED] clipping_rotate_reflect
[20:27:35] [PASSED] positioning_simple
[20:27:35] [PASSED] upscaling
[20:27:35] [PASSED] downscaling
[20:27:35] [PASSED] rounding1
[20:27:35] [PASSED] rounding2
[20:27:35] [PASSED] rounding3
[20:27:35] [PASSED] rounding4
[20:27:35] =========== [PASSED] drm_test_check_plane_state ============
[20:27:35] =========== drm_test_check_invalid_plane_state ============
[20:27:35] [PASSED] positioning_invalid
[20:27:35] [PASSED] upscaling_invalid
[20:27:35] [PASSED] downscaling_invalid
[20:27:35] ======= [PASSED] drm_test_check_invalid_plane_state ========
[20:27:35] ================ [PASSED] drm_plane_helper =================
[20:27:35] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[20:27:35] ====== drm_test_connector_helper_tv_get_modes_check =======
[20:27:35] [PASSED] None
[20:27:35] [PASSED] PAL
[20:27:35] [PASSED] NTSC
[20:27:35] [PASSED] Both, NTSC Default
[20:27:35] [PASSED] Both, PAL Default
[20:27:35] [PASSED] Both, NTSC Default, with PAL on command-line
[20:27:35] [PASSED] Both, PAL Default, with NTSC on command-line
[20:27:35] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[20:27:35] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[20:27:35] ================== drm_rect (9 subtests) ===================
[20:27:35] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[20:27:35] [PASSED] drm_test_rect_clip_scaled_not_clipped
[20:27:35] [PASSED] drm_test_rect_clip_scaled_clipped
[20:27:35] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[20:27:35] ================= drm_test_rect_intersect =================
[20:27:35] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[20:27:35] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[20:27:35] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[20:27:35] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[20:27:35] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[20:27:35] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[20:27:35] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[20:27:35] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[20:27:35] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[20:27:35] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[20:27:35] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[20:27:35] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[20:27:35] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[20:27:35] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[20:27:35] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[20:27:35] ============= [PASSED] drm_test_rect_intersect =============
[20:27:35] ================ drm_test_rect_calc_hscale ================
[20:27:35] [PASSED] normal use
[20:27:35] [PASSED] out of max range
[20:27:35] [PASSED] out of min range
[20:27:35] [PASSED] zero dst
[20:27:35] [PASSED] negative src
[20:27:35] [PASSED] negative dst
[20:27:35] ============ [PASSED] drm_test_rect_calc_hscale ============
[20:27:35] ================ drm_test_rect_calc_vscale ================
[20:27:35] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[20:27:35] [PASSED] out of max range
[20:27:35] [PASSED] out of min range
[20:27:35] [PASSED] zero dst
[20:27:35] [PASSED] negative src
[20:27:35] [PASSED] negative dst
[20:27:35] ============ [PASSED] drm_test_rect_calc_vscale ============
[20:27:35] ================== drm_test_rect_rotate ===================
[20:27:35] [PASSED] reflect-x
[20:27:35] [PASSED] reflect-y
[20:27:35] [PASSED] rotate-0
[20:27:35] [PASSED] rotate-90
[20:27:35] [PASSED] rotate-180
[20:27:35] [PASSED] rotate-270
[20:27:35] ============== [PASSED] drm_test_rect_rotate ===============
[20:27:35] ================ drm_test_rect_rotate_inv =================
[20:27:35] [PASSED] reflect-x
[20:27:35] [PASSED] reflect-y
[20:27:35] [PASSED] rotate-0
[20:27:35] [PASSED] rotate-90
[20:27:35] [PASSED] rotate-180
[20:27:35] [PASSED] rotate-270
[20:27:35] ============ [PASSED] drm_test_rect_rotate_inv =============
[20:27:35] ==================== [PASSED] drm_rect =====================
[20:27:35] ============ drm_sysfb_modeset_test (1 subtest) ============
[20:27:35] ============ drm_test_sysfb_build_fourcc_list =============
[20:27:35] [PASSED] no native formats
[20:27:35] [PASSED] XRGB8888 as native format
[20:27:35] [PASSED] remove duplicates
[20:27:35] [PASSED] convert alpha formats
[20:27:35] [PASSED] random formats
[20:27:35] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[20:27:35] ============= [PASSED] drm_sysfb_modeset_test ==============
[20:27:35] ================== drm_fixp (2 subtests) ===================
[20:27:35] [PASSED] drm_test_int2fixp
[20:27:35] [PASSED] drm_test_sm2fixp
[20:27:35] ==================== [PASSED] drm_fixp =====================
[20:27:35] ============================================================
[20:27:35] Testing complete. Ran 624 tests: passed: 624
[20:27:35] Elapsed time: 26.912s total, 1.647s configuring, 24.844s building, 0.393s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[20:27:35] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[20:27:36] 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:27:46] Starting KUnit Kernel (1/1)...
[20:27:46] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[20:27:46] ================= ttm_device (5 subtests) ==================
[20:27:46] [PASSED] ttm_device_init_basic
[20:27:46] [PASSED] ttm_device_init_multiple
[20:27:46] [PASSED] ttm_device_fini_basic
[20:27:46] [PASSED] ttm_device_init_no_vma_man
[20:27:46] ================== ttm_device_init_pools ==================
[20:27:46] [PASSED] No DMA allocations, no DMA32 required
[20:27:46] [PASSED] DMA allocations, DMA32 required
[20:27:46] [PASSED] No DMA allocations, DMA32 required
[20:27:46] [PASSED] DMA allocations, no DMA32 required
[20:27:46] ============== [PASSED] ttm_device_init_pools ==============
[20:27:46] =================== [PASSED] ttm_device ====================
[20:27:46] ================== ttm_pool (8 subtests) ===================
[20:27:46] ================== ttm_pool_alloc_basic ===================
[20:27:46] [PASSED] One page
[20:27:46] [PASSED] More than one page
[20:27:46] [PASSED] Above the allocation limit
[20:27:46] [PASSED] One page, with coherent DMA mappings enabled
[20:27:46] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[20:27:46] ============== [PASSED] ttm_pool_alloc_basic ===============
[20:27:46] ============== ttm_pool_alloc_basic_dma_addr ==============
[20:27:46] [PASSED] One page
[20:27:46] [PASSED] More than one page
[20:27:46] [PASSED] Above the allocation limit
[20:27:46] [PASSED] One page, with coherent DMA mappings enabled
[20:27:46] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[20:27:46] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[20:27:46] [PASSED] ttm_pool_alloc_order_caching_match
[20:27:46] [PASSED] ttm_pool_alloc_caching_mismatch
[20:27:46] [PASSED] ttm_pool_alloc_order_mismatch
[20:27:46] [PASSED] ttm_pool_free_dma_alloc
[20:27:46] [PASSED] ttm_pool_free_no_dma_alloc
[20:27:46] [PASSED] ttm_pool_fini_basic
[20:27:46] ==================== [PASSED] ttm_pool =====================
[20:27:46] ================ ttm_resource (8 subtests) =================
[20:27:46] ================= ttm_resource_init_basic =================
[20:27:46] [PASSED] Init resource in TTM_PL_SYSTEM
[20:27:46] [PASSED] Init resource in TTM_PL_VRAM
[20:27:46] [PASSED] Init resource in a private placement
[20:27:46] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[20:27:46] ============= [PASSED] ttm_resource_init_basic =============
[20:27:46] [PASSED] ttm_resource_init_pinned
[20:27:46] [PASSED] ttm_resource_fini_basic
[20:27:46] [PASSED] ttm_resource_manager_init_basic
[20:27:46] [PASSED] ttm_resource_manager_usage_basic
[20:27:46] [PASSED] ttm_resource_manager_set_used_basic
[20:27:46] [PASSED] ttm_sys_man_alloc_basic
[20:27:46] [PASSED] ttm_sys_man_free_basic
[20:27:46] ================== [PASSED] ttm_resource ===================
[20:27:46] =================== ttm_tt (15 subtests) ===================
[20:27:46] ==================== ttm_tt_init_basic ====================
[20:27:46] [PASSED] Page-aligned size
[20:27:46] [PASSED] Extra pages requested
[20:27:46] ================ [PASSED] ttm_tt_init_basic ================
[20:27:46] [PASSED] ttm_tt_init_misaligned
[20:27:46] [PASSED] ttm_tt_fini_basic
[20:27:46] [PASSED] ttm_tt_fini_sg
[20:27:46] [PASSED] ttm_tt_fini_shmem
[20:27:46] [PASSED] ttm_tt_create_basic
[20:27:46] [PASSED] ttm_tt_create_invalid_bo_type
[20:27:46] [PASSED] ttm_tt_create_ttm_exists
[20:27:46] [PASSED] ttm_tt_create_failed
[20:27:46] [PASSED] ttm_tt_destroy_basic
[20:27:46] [PASSED] ttm_tt_populate_null_ttm
[20:27:46] [PASSED] ttm_tt_populate_populated_ttm
[20:27:46] [PASSED] ttm_tt_unpopulate_basic
[20:27:46] [PASSED] ttm_tt_unpopulate_empty_ttm
[20:27:46] [PASSED] ttm_tt_swapin_basic
[20:27:46] ===================== [PASSED] ttm_tt ======================
[20:27:46] =================== ttm_bo (14 subtests) ===================
[20:27:46] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[20:27:46] [PASSED] Cannot be interrupted and sleeps
[20:27:46] [PASSED] Cannot be interrupted, locks straight away
[20:27:46] [PASSED] Can be interrupted, sleeps
[20:27:46] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[20:27:46] [PASSED] ttm_bo_reserve_locked_no_sleep
[20:27:46] [PASSED] ttm_bo_reserve_no_wait_ticket
[20:27:46] [PASSED] ttm_bo_reserve_double_resv
[20:27:46] [PASSED] ttm_bo_reserve_interrupted
[20:27:46] [PASSED] ttm_bo_reserve_deadlock
[20:27:46] [PASSED] ttm_bo_unreserve_basic
[20:27:46] [PASSED] ttm_bo_unreserve_pinned
[20:27:46] [PASSED] ttm_bo_unreserve_bulk
[20:27:46] [PASSED] ttm_bo_fini_basic
[20:27:46] [PASSED] ttm_bo_fini_shared_resv
[20:27:46] [PASSED] ttm_bo_pin_basic
[20:27:46] [PASSED] ttm_bo_pin_unpin_resource
[20:27:46] [PASSED] ttm_bo_multiple_pin_one_unpin
[20:27:46] ===================== [PASSED] ttm_bo ======================
[20:27:46] ============== ttm_bo_validate (21 subtests) ===============
[20:27:46] ============== ttm_bo_init_reserved_sys_man ===============
[20:27:46] [PASSED] Buffer object for userspace
[20:27:46] [PASSED] Kernel buffer object
[20:27:46] [PASSED] Shared buffer object
[20:27:46] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[20:27:46] ============== ttm_bo_init_reserved_mock_man ==============
[20:27:46] [PASSED] Buffer object for userspace
[20:27:46] [PASSED] Kernel buffer object
[20:27:46] [PASSED] Shared buffer object
[20:27:46] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[20:27:46] [PASSED] ttm_bo_init_reserved_resv
[20:27:46] ================== ttm_bo_validate_basic ==================
[20:27:46] [PASSED] Buffer object for userspace
[20:27:46] [PASSED] Kernel buffer object
[20:27:46] [PASSED] Shared buffer object
[20:27:46] ============== [PASSED] ttm_bo_validate_basic ==============
[20:27:46] [PASSED] ttm_bo_validate_invalid_placement
[20:27:46] ============= ttm_bo_validate_same_placement ==============
[20:27:46] [PASSED] System manager
[20:27:46] [PASSED] VRAM manager
[20:27:46] ========= [PASSED] ttm_bo_validate_same_placement ==========
[20:27:46] [PASSED] ttm_bo_validate_failed_alloc
[20:27:46] [PASSED] ttm_bo_validate_pinned
[20:27:46] [PASSED] ttm_bo_validate_busy_placement
[20:27:46] ================ ttm_bo_validate_multihop =================
[20:27:46] [PASSED] Buffer object for userspace
[20:27:46] [PASSED] Kernel buffer object
[20:27:46] [PASSED] Shared buffer object
[20:27:46] ============ [PASSED] ttm_bo_validate_multihop =============
[20:27:46] ========== ttm_bo_validate_no_placement_signaled ==========
[20:27:46] [PASSED] Buffer object in system domain, no page vector
[20:27:46] [PASSED] Buffer object in system domain with an existing page vector
[20:27:46] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[20:27:46] ======== ttm_bo_validate_no_placement_not_signaled ========
[20:27:46] [PASSED] Buffer object for userspace
[20:27:46] [PASSED] Kernel buffer object
[20:27:46] [PASSED] Shared buffer object
[20:27:46] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[20:27:46] [PASSED] ttm_bo_validate_move_fence_signaled
[20:27:46] ========= ttm_bo_validate_move_fence_not_signaled =========
[20:27:46] [PASSED] Waits for GPU
[20:27:46] [PASSED] Tries to lock straight away
[20:27:46] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[20:27:46] [PASSED] ttm_bo_validate_happy_evict
[20:27:46] [PASSED] ttm_bo_validate_all_pinned_evict
[20:27:46] [PASSED] ttm_bo_validate_allowed_only_evict
[20:27:46] [PASSED] ttm_bo_validate_deleted_evict
[20:27:46] [PASSED] ttm_bo_validate_busy_domain_evict
[20:27:46] [PASSED] ttm_bo_validate_evict_gutting
[20:27:46] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[20:27:46] ================= [PASSED] ttm_bo_validate =================
[20:27:46] ============================================================
[20:27:46] Testing complete. Ran 101 tests: passed: 101
[20:27:46] Elapsed time: 11.273s total, 1.649s configuring, 9.358s building, 0.235s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ Xe.CI.BAT: failure for drm/xe/cri: Enable I2C controller (rev2)
2025-11-28 8:44 [PATCH v1] drm/xe/cri: Enable I2C controller Raag Jadav
` (2 preceding siblings ...)
2025-12-01 20:27 ` ✓ CI.KUnit: success for drm/xe/cri: Enable I2C controller (rev2) Patchwork
@ 2025-12-01 21:33 ` Patchwork
2025-12-02 0:05 ` ✗ Xe.CI.Full: " Patchwork
` (4 subsequent siblings)
8 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2025-12-01 21:33 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 5675 bytes --]
== Series Details ==
Series: drm/xe/cri: Enable I2C controller (rev2)
URL : https://patchwork.freedesktop.org/series/158198/
State : failure
== Summary ==
CI Bug Log - changes from xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26_BAT -> xe-pw-158198v2_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-158198v2_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-158198v2_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-158198v2_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_queue_property@invalid-property:
- bat-ptl-2: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/bat-ptl-2/igt@xe_exec_queue_property@invalid-property.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/bat-ptl-2/igt@xe_exec_queue_property@invalid-property.html
- bat-dg2-oem2: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/bat-dg2-oem2/igt@xe_exec_queue_property@invalid-property.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/bat-dg2-oem2/igt@xe_exec_queue_property@invalid-property.html
- bat-atsm-2: [PASS][5] -> [FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/bat-atsm-2/igt@xe_exec_queue_property@invalid-property.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/bat-atsm-2/igt@xe_exec_queue_property@invalid-property.html
- bat-adlp-vm: [PASS][7] -> [FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/bat-adlp-vm/igt@xe_exec_queue_property@invalid-property.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/bat-adlp-vm/igt@xe_exec_queue_property@invalid-property.html
- bat-ptl-1: [PASS][9] -> [FAIL][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/bat-ptl-1/igt@xe_exec_queue_property@invalid-property.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/bat-ptl-1/igt@xe_exec_queue_property@invalid-property.html
- bat-lnl-1: [PASS][11] -> [FAIL][12]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/bat-lnl-1/igt@xe_exec_queue_property@invalid-property.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/bat-lnl-1/igt@xe_exec_queue_property@invalid-property.html
- bat-ptl-vm: [PASS][13] -> [FAIL][14]
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/bat-ptl-vm/igt@xe_exec_queue_property@invalid-property.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/bat-ptl-vm/igt@xe_exec_queue_property@invalid-property.html
- bat-bmg-2: [PASS][15] -> [FAIL][16]
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/bat-bmg-2/igt@xe_exec_queue_property@invalid-property.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/bat-bmg-2/igt@xe_exec_queue_property@invalid-property.html
- bat-adlp-7: [PASS][17] -> [FAIL][18]
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/bat-adlp-7/igt@xe_exec_queue_property@invalid-property.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/bat-adlp-7/igt@xe_exec_queue_property@invalid-property.html
- bat-bmg-1: [PASS][19] -> [FAIL][20]
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/bat-bmg-1/igt@xe_exec_queue_property@invalid-property.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/bat-bmg-1/igt@xe_exec_queue_property@invalid-property.html
- bat-lnl-2: [PASS][21] -> [FAIL][22]
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/bat-lnl-2/igt@xe_exec_queue_property@invalid-property.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/bat-lnl-2/igt@xe_exec_queue_property@invalid-property.html
Known issues
------------
Here are the changes found in xe-pw-158198v2_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@xe_waitfence@abstime:
- bat-dg2-oem2: [TIMEOUT][23] ([Intel XE#6506]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506
Build changes
-------------
* Linux: xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26 -> xe-pw-158198v2
IGT_8647: 8647
xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26: a8fcc7aa61a86982dcb0990aeb928ecca39bea26
xe-pw-158198v2: 158198v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/index.html
[-- Attachment #2: Type: text/html, Size: 6331 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ Xe.CI.Full: failure for drm/xe/cri: Enable I2C controller (rev2)
2025-11-28 8:44 [PATCH v1] drm/xe/cri: Enable I2C controller Raag Jadav
` (3 preceding siblings ...)
2025-12-01 21:33 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2025-12-02 0:05 ` Patchwork
2025-12-04 13:25 ` [PATCH v1] drm/xe/cri: Enable I2C controller Heikki Krogerus
` (3 subsequent siblings)
8 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2025-12-02 0:05 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 51592 bytes --]
== Series Details ==
Series: drm/xe/cri: Enable I2C controller (rev2)
URL : https://patchwork.freedesktop.org/series/158198/
State : failure
== Summary ==
CI Bug Log - changes from xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26_FULL -> xe-pw-158198v2_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-158198v2_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-158198v2_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-158198v2_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_pmu@engine-activity-single-load:
- shard-dg2-set2: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/shard-dg2-435/igt@xe_pmu@engine-activity-single-load.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-dg2-463/igt@xe_pmu@engine-activity-single-load.html
Known issues
------------
Here are the changes found in xe-pw-158198v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-adlp: [PASS][3] -> [FAIL][4] ([Intel XE#3908]) +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/shard-adlp-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-2/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1407])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-adlp: NOTRUN -> [SKIP][7] ([Intel XE#610])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-3/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-adlp: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +5 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-adlp: NOTRUN -> [FAIL][9] ([Intel XE#1231])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-adlp: NOTRUN -> [SKIP][10] ([Intel XE#316]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-3/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-adlp: [PASS][12] -> [FAIL][13] ([Intel XE#1231])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-adlp: NOTRUN -> [SKIP][14] ([Intel XE#619])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-9/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-adlp: NOTRUN -> [SKIP][16] ([Intel XE#2191]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-4/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#367])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-1920x1080p:
- shard-adlp: NOTRUN -> [SKIP][18] ([Intel XE#367])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-9/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#2887])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2887]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-b-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][21] ([Intel XE#787]) +29 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-9/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][22] ([Intel XE#455] / [Intel XE#787]) +19 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#3432])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2652] / [Intel XE#787]) +4 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#787]) +6 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-dg2-433/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-dg2-433/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#306])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-adlp: NOTRUN -> [SKIP][28] ([Intel XE#373]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-3/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_frames@hdmi-cmp-planes-random:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2252]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-2/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#373])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-dg2-433/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#373]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_colorop@plane-xr24-xr24-ctm_3x4_50_desat:
- shard-adlp: NOTRUN -> [SKIP][32] ([Intel XE#6704]) +6 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-3/igt@kms_colorop@plane-xr24-xr24-ctm_3x4_50_desat.html
* igt@kms_colorop@plane-xr24-xr24-pq_125_eotf:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#6704]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-dg2-433/igt@kms_colorop@plane-xr24-xr24-pq_125_eotf.html
* igt@kms_colorop@plane-xr30-xr30-ctm_3x4_50_desat:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#6704])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@kms_colorop@plane-xr30-xr30-ctm_3x4_50_desat.html
* igt@kms_colorop@plane-xr30-xr30-srgb_inv_eotf_lut-srgb_eotf_lut:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#6704]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-6/igt@kms_colorop@plane-xr30-xr30-srgb_inv_eotf_lut-srgb_eotf_lut.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-adlp: NOTRUN -> [SKIP][36] ([Intel XE#307])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-2/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][37] ([Intel XE#1178])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-3/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1424])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-adlp: NOTRUN -> [SKIP][39] ([Intel XE#308]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-2/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-adlp: NOTRUN -> [SKIP][40] ([Intel XE#309]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-9/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2291])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-adlp: NOTRUN -> [SKIP][42] ([Intel XE#323])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_feature_discovery@chamelium:
- shard-adlp: NOTRUN -> [SKIP][43] ([Intel XE#701])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-9/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2375])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-2/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1421]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-adlp: NOTRUN -> [SKIP][46] ([Intel XE#310]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-3/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@dpms-vs-vblank-race:
- shard-adlp: NOTRUN -> [DMESG-WARN][47] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#5208])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-4/igt@kms_flip@dpms-vs-vblank-race.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [PASS][48] -> [FAIL][49] ([Intel XE#301]) +1 other test fail
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#455]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2311]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#651])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#651]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- shard-adlp: NOTRUN -> [SKIP][54] ([Intel XE#656]) +24 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#4141]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2312]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][57] ([Intel XE#651]) +6 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#656]) +6 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render:
- shard-adlp: NOTRUN -> [SKIP][59] ([Intel XE#6312]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
- shard-adlp: NOTRUN -> [SKIP][60] ([Intel XE#653]) +7 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#653]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2313])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][63] ([Intel XE#2925] / [Intel XE#3012])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-3/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-adlp: NOTRUN -> [SKIP][64] ([Intel XE#2925])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-2/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#2925])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2486])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-6/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0:
- shard-adlp: NOTRUN -> [FAIL][67] ([Intel XE#5195]) +4 other tests fail
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-9/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#4596])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-4:
- shard-adlp: NOTRUN -> [SKIP][69] ([Intel XE#5020])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-2/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#5825]) +7 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_pm_backlight@basic-brightness:
- shard-adlp: NOTRUN -> [SKIP][71] ([Intel XE#870])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-9/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@deep-pkgc:
- shard-adlp: NOTRUN -> [SKIP][72] ([Intel XE#2007])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-3/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1406] / [Intel XE#2893]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-adlp: NOTRUN -> [SKIP][75] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-3/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-adlp: NOTRUN -> [SKIP][76] ([Intel XE#1122] / [Intel XE#1406] / [Intel XE#5580])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-9/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-dg2-433/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@fbc-psr2-basic:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-2/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_psr@pr-sprite-render:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1406]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-adlp: NOTRUN -> [SKIP][80] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +7 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-2/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-adlp: NOTRUN -> [SKIP][81] ([Intel XE#3414]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-4/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-3:
- shard-bmg: [PASS][82] -> [FAIL][83] ([Intel XE#6361]) +1 other test fail
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/shard-bmg-3/igt@kms_setmode@basic@pipe-a-hdmi-a-3.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-7/igt@kms_setmode@basic@pipe-a-hdmi-a-3.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-adlp: NOTRUN -> [SKIP][84] ([Intel XE#362])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-suspend:
- shard-adlp: NOTRUN -> [SKIP][85] ([Intel XE#455]) +17 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-9/igt@kms_vrr@flip-suspend.html
* igt@xe_ccs@large-ctrl-surf-copy:
- shard-adlp: NOTRUN -> [SKIP][86] ([Intel XE#3576] / [Intel XE#5610])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-3/igt@xe_ccs@large-ctrl-surf-copy.html
* igt@xe_compute@ccs-mode-basic:
- shard-adlp: NOTRUN -> [SKIP][87] ([Intel XE#6599])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-4/igt@xe_compute@ccs-mode-basic.html
* igt@xe_copy_basic@mem-page-copy-1:
- shard-adlp: NOTRUN -> [SKIP][88] ([Intel XE#5300])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-2/igt@xe_copy_basic@mem-page-copy-1.html
* igt@xe_eudebug@basic-read-event:
- shard-adlp: NOTRUN -> [SKIP][89] ([Intel XE#4837] / [Intel XE#5565]) +9 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-9/igt@xe_eudebug@basic-read-event.html
* igt@xe_eudebug@basic-vm-access-parameters-faultable:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#4837])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-dg2-433/igt@xe_eudebug@basic-vm-access-parameters-faultable.html
* igt@xe_eudebug_online@breakpoint-many-sessions-tiles:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#4837]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#5793])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-6/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_evict@evict-beng-large-external-cm:
- shard-adlp: NOTRUN -> [SKIP][93] ([Intel XE#261] / [Intel XE#5564]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-9/igt@xe_evict@evict-beng-large-external-cm.html
* igt@xe_evict@evict-beng-small-external:
- shard-adlp: NOTRUN -> [SKIP][94] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-4/igt@xe_evict@evict-beng-small-external.html
* igt@xe_evict@evict-cm-threads-large:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#688])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@xe_evict@evict-cm-threads-large.html
* igt@xe_evict@evict-threads-small:
- shard-adlp: NOTRUN -> [SKIP][96] ([Intel XE#261] / [Intel XE#688])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-4/igt@xe_evict@evict-threads-small.html
* igt@xe_evict@evict-threads-small-multi-vm:
- shard-adlp: NOTRUN -> [SKIP][97] ([Intel XE#261]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-3/igt@xe_evict@evict-threads-small-multi-vm.html
* igt@xe_evict_ccs@evict-overcommit-simple:
- shard-adlp: NOTRUN -> [SKIP][98] ([Intel XE#688])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-4/igt@xe_evict_ccs@evict-overcommit-simple.html
* igt@xe_exec_basic@multigpu-once-basic-defer-bind:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2322]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-2/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1392]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind:
- shard-adlp: NOTRUN -> [SKIP][101] ([Intel XE#1392] / [Intel XE#5575]) +4 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-3/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-prefetch:
- shard-adlp: NOTRUN -> [SKIP][102] ([Intel XE#288] / [Intel XE#5561]) +19 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-2/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-prefetch.html
* igt@xe_exec_fault_mode@once-bindexecqueue-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#288]) +3 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-dg2-433/igt@xe_exec_fault_mode@once-bindexecqueue-rebind.html
* igt@xe_exec_sip_eudebug@wait-writesip-nodebug:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#4837])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-2/igt@xe_exec_sip_eudebug@wait-writesip-nodebug.html
* igt@xe_exec_system_allocator@many-large-execqueues-malloc-mlock:
- shard-adlp: NOTRUN -> [SKIP][105] ([Intel XE#4915]) +221 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-4/igt@xe_exec_system_allocator@many-large-execqueues-malloc-mlock.html
* igt@xe_exec_system_allocator@many-large-malloc-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#4915]) +42 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-dg2-433/igt@xe_exec_system_allocator@many-large-malloc-nomemset.html
* igt@xe_exec_system_allocator@many-mmap-new-huge:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#4943]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@xe_exec_system_allocator@many-mmap-new-huge.html
* igt@xe_exec_system_allocator@process-many-mmap-new-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#4943]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-6/igt@xe_exec_system_allocator@process-many-mmap-new-huge-nomemset.html
* igt@xe_mmap@pci-membarrier:
- shard-adlp: NOTRUN -> [SKIP][109] ([Intel XE#5100])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-4/igt@xe_mmap@pci-membarrier.html
* igt@xe_oa@create-destroy-userspace-config:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#3573])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-dg2-433/igt@xe_oa@create-destroy-userspace-config.html
* igt@xe_oa@mmio-triggered-reports-read:
- shard-adlp: NOTRUN -> [SKIP][111] ([Intel XE#6032])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-9/igt@xe_oa@mmio-triggered-reports-read.html
* igt@xe_oa@unprivileged-single-ctx-counters:
- shard-adlp: NOTRUN -> [SKIP][112] ([Intel XE#3573]) +3 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-2/igt@xe_oa@unprivileged-single-ctx-counters.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#2838] / [Intel XE#979])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-dg2-433/igt@xe_pat@pat-index-xehpc.html
* igt@xe_peer2peer@write:
- shard-adlp: NOTRUN -> [SKIP][114] ([Intel XE#1061])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-2/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-adlp: NOTRUN -> [SKIP][115] ([Intel XE#2284] / [Intel XE#366])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-4/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@d3cold-mocs:
- shard-adlp: NOTRUN -> [SKIP][116] ([Intel XE#2284])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-9/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#2284] / [Intel XE#366])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@d3hot-i2c:
- shard-adlp: NOTRUN -> [SKIP][118] ([Intel XE#5742])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-4/igt@xe_pm@d3hot-i2c.html
* igt@xe_pm@s2idle-exec-after:
- shard-bmg: [PASS][119] -> [ABORT][120] ([Intel XE#6675])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/shard-bmg-1/igt@xe_pm@s2idle-exec-after.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-7/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-adlp: [PASS][121] -> [ABORT][122] ([Intel XE#6675]) +4 other tests abort
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/shard-adlp-3/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-1/igt@xe_pm@s2idle-vm-bind-unbind-all.html
- shard-bmg: NOTRUN -> [ABORT][123] ([Intel XE#6675]) +4 other tests abort
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-unbind-all.html
* igt@xe_pm@s3-mocs:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#584]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@xe_pm@s3-mocs.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-dg2-set2: NOTRUN -> [ABORT][125] ([Intel XE#6675])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-dg2-433/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pmu@engine-activity-suspend:
- shard-adlp: NOTRUN -> [ABORT][126] ([Intel XE#6675]) +5 other tests abort
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-9/igt@xe_pmu@engine-activity-suspend.html
* igt@xe_pxp@pxp-stale-bo-exec-post-rpm:
- shard-adlp: NOTRUN -> [SKIP][127] ([Intel XE#4733] / [Intel XE#5594])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-4/igt@xe_pxp@pxp-stale-bo-exec-post-rpm.html
* igt@xe_pxp@pxp-termination-key-update-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#4733])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-2/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#944])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-adlp: NOTRUN -> [SKIP][130] ([Intel XE#944]) +4 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-3/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_render_copy@render-stress-4-copies:
- shard-adlp: NOTRUN -> [SKIP][131] ([Intel XE#4814] / [Intel XE#5614])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-9/igt@xe_render_copy@render-stress-4-copies.html
* igt@xe_sriov_auto_provisioning@exclusive-ranges:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#4130])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
* igt@xe_survivability@i2c-functionality:
- shard-adlp: NOTRUN -> [SKIP][133] ([Intel XE#6529]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-4/igt@xe_survivability@i2c-functionality.html
* igt@xe_vm@out-of-memory:
- shard-adlp: NOTRUN -> [SKIP][134] ([Intel XE#5745])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-3/igt@xe_vm@out-of-memory.html
#### Possible fixes ####
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-adlp: [FAIL][135] ([Intel XE#1231]) -> [PASS][136]
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/shard-adlp-9/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-bmg: [SKIP][137] ([Intel XE#2291]) -> [PASS][138]
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][139] ([Intel XE#6715]) -> [PASS][140]
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-bmg: [SKIP][141] ([Intel XE#2316]) -> [PASS][142] +1 other test pass
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-adlp: [ABORT][143] ([Intel XE#6675]) -> [PASS][144] +6 other tests pass
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/shard-adlp-9/igt@kms_plane@plane-panning-bottom-right-suspend.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-adlp-3/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [SKIP][145] ([Intel XE#2571]) -> [PASS][146]
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/shard-bmg-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_psr@fbc-psr-suspend@edp-1:
- shard-lnl: [ABORT][147] ([Intel XE#2625] / [Intel XE#6675]) -> [PASS][148] +1 other test pass
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/shard-lnl-5/igt@kms_psr@fbc-psr-suspend@edp-1.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-1/igt@kms_psr@fbc-psr-suspend@edp-1.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][149] ([Intel XE#4459]) -> [PASS][150] +1 other test pass
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-dg2-set2: [ABORT][151] ([Intel XE#6675]) -> [PASS][152]
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-prefetch.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-dg2-433/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s3-multiple-execs:
- shard-bmg: [ABORT][153] ([Intel XE#6675]) -> [PASS][154] +2 other tests pass
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/shard-bmg-8/igt@xe_pm@s3-multiple-execs.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-2/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0:
- shard-lnl: [FAIL][155] ([Intel XE#6251]) -> [PASS][156] +3 other tests pass
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/shard-lnl-5/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-lnl-3/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0.html
#### Warnings ####
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][157] ([Intel XE#2341]) -> [FAIL][158] ([Intel XE#1178])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/shard-bmg-6/igt@kms_content_protection@srm.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-3/igt@kms_content_protection@srm.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-bmg: [ABORT][159] ([Intel XE#6675]) -> [SKIP][160] ([Intel XE#2316])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/shard-bmg-7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][161] ([Intel XE#2312]) -> [SKIP][162] ([Intel XE#4141])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][163] ([Intel XE#4141]) -> [SKIP][164] ([Intel XE#2312])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][165] ([Intel XE#2312]) -> [SKIP][166] ([Intel XE#2311]) +7 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][167] ([Intel XE#2312]) -> [SKIP][168] ([Intel XE#2313]) +3 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#2007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2007
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[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#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[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#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#3576]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3576
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[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#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[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#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#5195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5195
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5580]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5580
[Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
[Intel XE#5610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5610
[Intel XE#5614]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5614
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#5745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5745
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[Intel XE#5825]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5825
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#6032]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6032
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6529]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6529
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6675]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6675
[Intel XE#6704]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6704
[Intel XE#6715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6715
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* Linux: xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26 -> xe-pw-158198v2
IGT_8647: 8647
xe-4176-a8fcc7aa61a86982dcb0990aeb928ecca39bea26: a8fcc7aa61a86982dcb0990aeb928ecca39bea26
xe-pw-158198v2: 158198v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v2/index.html
[-- Attachment #2: Type: text/html, Size: 60624 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v1] drm/xe/cri: Enable I2C controller
2025-12-01 20:27 ` [PATCH v1] " Rodrigo Vivi
@ 2025-12-04 11:42 ` Raag Jadav
2025-12-04 20:22 ` Rodrigo Vivi
0 siblings, 1 reply; 15+ messages in thread
From: Raag Jadav @ 2025-12-04 11:42 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: intel-xe, heikki.krogerus, andi.shyti
On Mon, Dec 01, 2025 at 03:27:07PM -0500, Rodrigo Vivi wrote:
> On Fri, Nov 28, 2025 at 02:14:14PM +0530, Raag Jadav wrote:
> > Enable I2C controller for Crescent Island and while at it, rely on
> > has_i2c flag instead of manual platform checks.
> >
> > Signed-off-by: Raag Jadav <raag.jadav@intel.com>
>
> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Anything else I can do here?
Raag
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v1] drm/xe/cri: Enable I2C controller
2025-11-28 8:44 [PATCH v1] drm/xe/cri: Enable I2C controller Raag Jadav
` (4 preceding siblings ...)
2025-12-02 0:05 ` ✗ Xe.CI.Full: " Patchwork
@ 2025-12-04 13:25 ` Heikki Krogerus
2025-12-05 4:28 ` ✓ CI.KUnit: success for drm/xe/cri: Enable I2C controller (rev3) Patchwork
` (2 subsequent siblings)
8 siblings, 0 replies; 15+ messages in thread
From: Heikki Krogerus @ 2025-12-04 13:25 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe, rodrigo.vivi, andi.shyti
Fri, Nov 28, 2025 at 02:14:14PM +0530, Raag Jadav kirjoitti:
> Enable I2C controller for Crescent Island and while at it, rely on
> has_i2c flag instead of manual platform checks.
>
> Signed-off-by: Raag Jadav <raag.jadav@intel.com>
FWIW:
Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
> ---
> drivers/gpu/drm/xe/xe_device_types.h | 2 ++
> drivers/gpu/drm/xe/xe_i2c.c | 2 +-
> drivers/gpu/drm/xe/xe_pci.c | 3 +++
> drivers/gpu/drm/xe/xe_pci_types.h | 1 +
> 4 files changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
> index 9a9a8eb84a78..e23c50273c28 100644
> --- a/drivers/gpu/drm/xe/xe_device_types.h
> +++ b/drivers/gpu/drm/xe/xe_device_types.h
> @@ -299,6 +299,8 @@ struct xe_device {
> u8 has_heci_cscfi:1;
> /** @info.has_heci_gscfi: device has heci gscfi */
> u8 has_heci_gscfi:1;
> + /** @info.has_i2c: Device has I2C controller */
> + u8 has_i2c:1;
> /** @info.has_late_bind: Device has firmware late binding support */
> u8 has_late_bind:1;
> /** @info.has_llc: Device has a shared CPU+GPU last level cache */
> diff --git a/drivers/gpu/drm/xe/xe_i2c.c b/drivers/gpu/drm/xe/xe_i2c.c
> index 0b5452be0c87..8eccbae05705 100644
> --- a/drivers/gpu/drm/xe/xe_i2c.c
> +++ b/drivers/gpu/drm/xe/xe_i2c.c
> @@ -319,7 +319,7 @@ int xe_i2c_probe(struct xe_device *xe)
> struct xe_i2c *i2c;
> int ret;
>
> - if (xe->info.platform != XE_BATTLEMAGE)
> + if (!xe->info.has_i2c)
> return 0;
>
> if (IS_SRIOV_VF(xe))
> diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
> index 763f588521d0..2e2e9158d621 100644
> --- a/drivers/gpu/drm/xe/xe_pci.c
> +++ b/drivers/gpu/drm/xe/xe_pci.c
> @@ -366,6 +366,7 @@ static const struct xe_device_desc bmg_desc = {
> .has_mbx_power_limits = true,
> .has_gsc_nvm = 1,
> .has_heci_cscfi = 1,
> + .has_i2c = true,
> .has_late_bind = true,
> .has_sriov = true,
> .has_mem_copy_instr = true,
> @@ -411,6 +412,7 @@ static const struct xe_device_desc cri_desc = {
> .dma_mask_size = 52,
> .has_display = false,
> .has_flat_ccs = false,
> + .has_i2c = true,
> .has_mbx_power_limits = true,
> .has_mert = true,
> .has_sriov = true,
> @@ -676,6 +678,7 @@ static int xe_info_init_early(struct xe_device *xe,
> xe->info.has_gsc_nvm = desc->has_gsc_nvm;
> xe->info.has_heci_gscfi = desc->has_heci_gscfi;
> xe->info.has_heci_cscfi = desc->has_heci_cscfi;
> + xe->info.has_i2c = desc->has_i2c;
> xe->info.has_late_bind = desc->has_late_bind;
> xe->info.has_llc = desc->has_llc;
> xe->info.has_mert = desc->has_mert;
> diff --git a/drivers/gpu/drm/xe/xe_pci_types.h b/drivers/gpu/drm/xe/xe_pci_types.h
> index f19f35359696..6de23ddf6f68 100644
> --- a/drivers/gpu/drm/xe/xe_pci_types.h
> +++ b/drivers/gpu/drm/xe/xe_pci_types.h
> @@ -44,6 +44,7 @@ struct xe_device_desc {
> u8 has_gsc_nvm:1;
> u8 has_heci_gscfi:1;
> u8 has_heci_cscfi:1;
> + u8 has_i2c:1;
> u8 has_late_bind:1;
> u8 has_llc:1;
> u8 has_mbx_power_limits:1;
> --
> 2.43.0
--
heikki
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v1] drm/xe/cri: Enable I2C controller
2025-12-04 11:42 ` Raag Jadav
@ 2025-12-04 20:22 ` Rodrigo Vivi
2025-12-05 5:41 ` Raag Jadav
0 siblings, 1 reply; 15+ messages in thread
From: Rodrigo Vivi @ 2025-12-04 20:22 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe, heikki.krogerus, andi.shyti
On Thu, Dec 04, 2025 at 12:42:28PM +0100, Raag Jadav wrote:
> On Mon, Dec 01, 2025 at 03:27:07PM -0500, Rodrigo Vivi wrote:
> > On Fri, Nov 28, 2025 at 02:14:14PM +0530, Raag Jadav wrote:
> > > Enable I2C controller for Crescent Island and while at it, rely on
> > > has_i2c flag instead of manual platform checks.
> > >
> > > Signed-off-by: Raag Jadav <raag.jadav@intel.com>
> >
> > Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
>
> Anything else I can do here?
Have you inspected the CI failures?
>
> Raag
^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ CI.KUnit: success for drm/xe/cri: Enable I2C controller (rev3)
2025-11-28 8:44 [PATCH v1] drm/xe/cri: Enable I2C controller Raag Jadav
` (5 preceding siblings ...)
2025-12-04 13:25 ` [PATCH v1] drm/xe/cri: Enable I2C controller Heikki Krogerus
@ 2025-12-05 4:28 ` Patchwork
2025-12-05 5:12 ` ✓ Xe.CI.BAT: " Patchwork
2025-12-05 5:47 ` ✓ Xe.CI.Full: " Patchwork
8 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2025-12-05 4:28 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe
== Series Details ==
Series: drm/xe/cri: Enable I2C controller (rev3)
URL : https://patchwork.freedesktop.org/series/158198/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[04:26:48] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[04:26:52] 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
[04:27:24] Starting KUnit Kernel (1/1)...
[04:27:24] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[04:27:24] ================== guc_buf (11 subtests) ===================
[04:27:24] [PASSED] test_smallest
[04:27:24] [PASSED] test_largest
[04:27:24] [PASSED] test_granular
[04:27:24] [PASSED] test_unique
[04:27:24] [PASSED] test_overlap
[04:27:24] [PASSED] test_reusable
[04:27:24] [PASSED] test_too_big
[04:27:24] [PASSED] test_flush
[04:27:24] [PASSED] test_lookup
[04:27:24] [PASSED] test_data
[04:27:24] [PASSED] test_class
[04:27:24] ===================== [PASSED] guc_buf =====================
[04:27:24] =================== guc_dbm (7 subtests) ===================
[04:27:24] [PASSED] test_empty
[04:27:24] [PASSED] test_default
[04:27:24] ======================== test_size ========================
[04:27:24] [PASSED] 4
[04:27:24] [PASSED] 8
[04:27:24] [PASSED] 32
[04:27:24] [PASSED] 256
[04:27:24] ==================== [PASSED] test_size ====================
[04:27:24] ======================= test_reuse ========================
[04:27:24] [PASSED] 4
[04:27:24] [PASSED] 8
[04:27:24] [PASSED] 32
[04:27:24] [PASSED] 256
[04:27:24] =================== [PASSED] test_reuse ====================
[04:27:24] =================== test_range_overlap ====================
[04:27:24] [PASSED] 4
[04:27:24] [PASSED] 8
[04:27:24] [PASSED] 32
[04:27:24] [PASSED] 256
[04:27:24] =============== [PASSED] test_range_overlap ================
[04:27:24] =================== test_range_compact ====================
[04:27:24] [PASSED] 4
[04:27:24] [PASSED] 8
[04:27:24] [PASSED] 32
[04:27:24] [PASSED] 256
[04:27:24] =============== [PASSED] test_range_compact ================
[04:27:24] ==================== test_range_spare =====================
[04:27:24] [PASSED] 4
[04:27:24] [PASSED] 8
[04:27:24] [PASSED] 32
[04:27:24] [PASSED] 256
[04:27:24] ================ [PASSED] test_range_spare =================
[04:27:24] ===================== [PASSED] guc_dbm =====================
[04:27:24] =================== guc_idm (6 subtests) ===================
[04:27:24] [PASSED] bad_init
[04:27:24] [PASSED] no_init
[04:27:24] [PASSED] init_fini
[04:27:24] [PASSED] check_used
[04:27:24] [PASSED] check_quota
[04:27:24] [PASSED] check_all
[04:27:24] ===================== [PASSED] guc_idm =====================
[04:27:24] ================== no_relay (3 subtests) ===================
[04:27:24] [PASSED] xe_drops_guc2pf_if_not_ready
[04:27:24] [PASSED] xe_drops_guc2vf_if_not_ready
[04:27:24] [PASSED] xe_rejects_send_if_not_ready
[04:27:24] ==================== [PASSED] no_relay =====================
[04:27:24] ================== pf_relay (14 subtests) ==================
[04:27:24] [PASSED] pf_rejects_guc2pf_too_short
[04:27:24] [PASSED] pf_rejects_guc2pf_too_long
[04:27:24] [PASSED] pf_rejects_guc2pf_no_payload
[04:27:24] [PASSED] pf_fails_no_payload
[04:27:24] [PASSED] pf_fails_bad_origin
[04:27:24] [PASSED] pf_fails_bad_type
[04:27:24] [PASSED] pf_txn_reports_error
[04:27:24] [PASSED] pf_txn_sends_pf2guc
[04:27:24] [PASSED] pf_sends_pf2guc
[04:27:24] [SKIPPED] pf_loopback_nop
[04:27:24] [SKIPPED] pf_loopback_echo
[04:27:24] [SKIPPED] pf_loopback_fail
[04:27:24] [SKIPPED] pf_loopback_busy
[04:27:24] [SKIPPED] pf_loopback_retry
[04:27:24] ==================== [PASSED] pf_relay =====================
[04:27:24] ================== vf_relay (3 subtests) ===================
[04:27:24] [PASSED] vf_rejects_guc2vf_too_short
[04:27:24] [PASSED] vf_rejects_guc2vf_too_long
[04:27:24] [PASSED] vf_rejects_guc2vf_no_payload
[04:27:24] ==================== [PASSED] vf_relay =====================
[04:27:24] ================ pf_gt_config (6 subtests) =================
[04:27:24] [PASSED] fair_contexts_1vf
[04:27:24] [PASSED] fair_doorbells_1vf
[04:27:24] [PASSED] fair_ggtt_1vf
[04:27:24] ====================== fair_contexts ======================
[04:27:24] [PASSED] 1 VF
[04:27:24] [PASSED] 2 VFs
[04:27:24] [PASSED] 3 VFs
[04:27:24] [PASSED] 4 VFs
[04:27:24] [PASSED] 5 VFs
[04:27:24] [PASSED] 6 VFs
[04:27:24] [PASSED] 7 VFs
[04:27:24] [PASSED] 8 VFs
[04:27:24] [PASSED] 9 VFs
[04:27:24] [PASSED] 10 VFs
[04:27:24] [PASSED] 11 VFs
[04:27:24] [PASSED] 12 VFs
[04:27:24] [PASSED] 13 VFs
[04:27:24] [PASSED] 14 VFs
[04:27:24] [PASSED] 15 VFs
[04:27:24] [PASSED] 16 VFs
[04:27:24] [PASSED] 17 VFs
[04:27:24] [PASSED] 18 VFs
[04:27:24] [PASSED] 19 VFs
[04:27:24] [PASSED] 20 VFs
[04:27:24] [PASSED] 21 VFs
[04:27:24] [PASSED] 22 VFs
[04:27:24] [PASSED] 23 VFs
[04:27:24] [PASSED] 24 VFs
[04:27:24] [PASSED] 25 VFs
[04:27:24] [PASSED] 26 VFs
[04:27:24] [PASSED] 27 VFs
[04:27:24] [PASSED] 28 VFs
[04:27:24] [PASSED] 29 VFs
[04:27:24] [PASSED] 30 VFs
[04:27:24] [PASSED] 31 VFs
[04:27:24] [PASSED] 32 VFs
[04:27:24] [PASSED] 33 VFs
[04:27:24] [PASSED] 34 VFs
[04:27:24] [PASSED] 35 VFs
[04:27:24] [PASSED] 36 VFs
[04:27:24] [PASSED] 37 VFs
[04:27:24] [PASSED] 38 VFs
[04:27:24] [PASSED] 39 VFs
[04:27:24] [PASSED] 40 VFs
[04:27:24] [PASSED] 41 VFs
[04:27:24] [PASSED] 42 VFs
[04:27:24] [PASSED] 43 VFs
[04:27:24] [PASSED] 44 VFs
[04:27:24] [PASSED] 45 VFs
[04:27:24] [PASSED] 46 VFs
[04:27:24] [PASSED] 47 VFs
[04:27:24] [PASSED] 48 VFs
[04:27:24] [PASSED] 49 VFs
[04:27:24] [PASSED] 50 VFs
[04:27:24] [PASSED] 51 VFs
[04:27:24] [PASSED] 52 VFs
[04:27:24] [PASSED] 53 VFs
[04:27:24] [PASSED] 54 VFs
[04:27:24] [PASSED] 55 VFs
[04:27:24] [PASSED] 56 VFs
[04:27:24] [PASSED] 57 VFs
[04:27:24] [PASSED] 58 VFs
[04:27:24] [PASSED] 59 VFs
[04:27:24] [PASSED] 60 VFs
[04:27:24] [PASSED] 61 VFs
[04:27:24] [PASSED] 62 VFs
[04:27:24] [PASSED] 63 VFs
[04:27:24] ================== [PASSED] fair_contexts ==================
[04:27:24] ===================== fair_doorbells ======================
[04:27:24] [PASSED] 1 VF
[04:27:24] [PASSED] 2 VFs
[04:27:24] [PASSED] 3 VFs
[04:27:24] [PASSED] 4 VFs
[04:27:24] [PASSED] 5 VFs
[04:27:24] [PASSED] 6 VFs
[04:27:24] [PASSED] 7 VFs
[04:27:24] [PASSED] 8 VFs
[04:27:24] [PASSED] 9 VFs
[04:27:24] [PASSED] 10 VFs
[04:27:24] [PASSED] 11 VFs
[04:27:24] [PASSED] 12 VFs
[04:27:24] [PASSED] 13 VFs
[04:27:24] [PASSED] 14 VFs
[04:27:24] [PASSED] 15 VFs
[04:27:24] [PASSED] 16 VFs
[04:27:24] [PASSED] 17 VFs
[04:27:24] [PASSED] 18 VFs
[04:27:24] [PASSED] 19 VFs
[04:27:24] [PASSED] 20 VFs
[04:27:24] [PASSED] 21 VFs
[04:27:24] [PASSED] 22 VFs
[04:27:24] [PASSED] 23 VFs
[04:27:24] [PASSED] 24 VFs
[04:27:24] [PASSED] 25 VFs
[04:27:24] [PASSED] 26 VFs
[04:27:24] [PASSED] 27 VFs
[04:27:24] [PASSED] 28 VFs
[04:27:24] [PASSED] 29 VFs
[04:27:24] [PASSED] 30 VFs
[04:27:24] [PASSED] 31 VFs
[04:27:24] [PASSED] 32 VFs
[04:27:24] [PASSED] 33 VFs
[04:27:24] [PASSED] 34 VFs
[04:27:24] [PASSED] 35 VFs
[04:27:24] [PASSED] 36 VFs
[04:27:24] [PASSED] 37 VFs
[04:27:24] [PASSED] 38 VFs
[04:27:24] [PASSED] 39 VFs
[04:27:24] [PASSED] 40 VFs
[04:27:24] [PASSED] 41 VFs
[04:27:24] [PASSED] 42 VFs
[04:27:24] [PASSED] 43 VFs
[04:27:24] [PASSED] 44 VFs
[04:27:24] [PASSED] 45 VFs
[04:27:24] [PASSED] 46 VFs
[04:27:24] [PASSED] 47 VFs
[04:27:24] [PASSED] 48 VFs
[04:27:24] [PASSED] 49 VFs
[04:27:24] [PASSED] 50 VFs
[04:27:24] [PASSED] 51 VFs
[04:27:24] [PASSED] 52 VFs
[04:27:24] [PASSED] 53 VFs
[04:27:24] [PASSED] 54 VFs
[04:27:24] [PASSED] 55 VFs
[04:27:24] [PASSED] 56 VFs
[04:27:24] [PASSED] 57 VFs
[04:27:24] [PASSED] 58 VFs
[04:27:24] [PASSED] 59 VFs
[04:27:24] [PASSED] 60 VFs
[04:27:24] [PASSED] 61 VFs
[04:27:24] [PASSED] 62 VFs
[04:27:24] [PASSED] 63 VFs
[04:27:24] ================= [PASSED] fair_doorbells ==================
[04:27:24] ======================== fair_ggtt ========================
[04:27:24] [PASSED] 1 VF
[04:27:24] [PASSED] 2 VFs
[04:27:24] [PASSED] 3 VFs
[04:27:24] [PASSED] 4 VFs
[04:27:24] [PASSED] 5 VFs
[04:27:24] [PASSED] 6 VFs
[04:27:24] [PASSED] 7 VFs
[04:27:24] [PASSED] 8 VFs
[04:27:24] [PASSED] 9 VFs
[04:27:24] [PASSED] 10 VFs
[04:27:24] [PASSED] 11 VFs
[04:27:24] [PASSED] 12 VFs
[04:27:24] [PASSED] 13 VFs
[04:27:24] [PASSED] 14 VFs
[04:27:24] [PASSED] 15 VFs
[04:27:24] [PASSED] 16 VFs
[04:27:24] [PASSED] 17 VFs
[04:27:24] [PASSED] 18 VFs
[04:27:24] [PASSED] 19 VFs
[04:27:24] [PASSED] 20 VFs
[04:27:24] [PASSED] 21 VFs
[04:27:24] [PASSED] 22 VFs
[04:27:24] [PASSED] 23 VFs
[04:27:24] [PASSED] 24 VFs
[04:27:24] [PASSED] 25 VFs
[04:27:24] [PASSED] 26 VFs
[04:27:24] [PASSED] 27 VFs
[04:27:24] [PASSED] 28 VFs
[04:27:24] [PASSED] 29 VFs
[04:27:24] [PASSED] 30 VFs
[04:27:24] [PASSED] 31 VFs
[04:27:24] [PASSED] 32 VFs
[04:27:24] [PASSED] 33 VFs
[04:27:24] [PASSED] 34 VFs
[04:27:24] [PASSED] 35 VFs
[04:27:24] [PASSED] 36 VFs
[04:27:24] [PASSED] 37 VFs
[04:27:24] [PASSED] 38 VFs
[04:27:24] [PASSED] 39 VFs
[04:27:24] [PASSED] 40 VFs
[04:27:24] [PASSED] 41 VFs
[04:27:24] [PASSED] 42 VFs
[04:27:24] [PASSED] 43 VFs
[04:27:24] [PASSED] 44 VFs
[04:27:24] [PASSED] 45 VFs
[04:27:24] [PASSED] 46 VFs
[04:27:24] [PASSED] 47 VFs
[04:27:24] [PASSED] 48 VFs
[04:27:24] [PASSED] 49 VFs
[04:27:24] [PASSED] 50 VFs
[04:27:24] [PASSED] 51 VFs
[04:27:24] [PASSED] 52 VFs
[04:27:24] [PASSED] 53 VFs
[04:27:24] [PASSED] 54 VFs
[04:27:24] [PASSED] 55 VFs
[04:27:24] [PASSED] 56 VFs
[04:27:24] [PASSED] 57 VFs
[04:27:24] [PASSED] 58 VFs
[04:27:24] [PASSED] 59 VFs
[04:27:24] [PASSED] 60 VFs
[04:27:24] [PASSED] 61 VFs
[04:27:24] [PASSED] 62 VFs
[04:27:24] [PASSED] 63 VFs
[04:27:24] ==================== [PASSED] fair_ggtt ====================
[04:27:24] ================== [PASSED] pf_gt_config ===================
[04:27:24] ===================== lmtt (1 subtest) =====================
[04:27:24] ======================== test_ops =========================
[04:27:24] [PASSED] 2-level
[04:27:24] [PASSED] multi-level
[04:27:24] ==================== [PASSED] test_ops =====================
[04:27:24] ====================== [PASSED] lmtt =======================
[04:27:24] ================= pf_service (11 subtests) =================
[04:27:24] [PASSED] pf_negotiate_any
[04:27:24] [PASSED] pf_negotiate_base_match
[04:27:24] [PASSED] pf_negotiate_base_newer
[04:27:24] [PASSED] pf_negotiate_base_next
[04:27:24] [SKIPPED] pf_negotiate_base_older
[04:27:24] [PASSED] pf_negotiate_base_prev
[04:27:24] [PASSED] pf_negotiate_latest_match
[04:27:24] [PASSED] pf_negotiate_latest_newer
[04:27:24] [PASSED] pf_negotiate_latest_next
[04:27:24] [SKIPPED] pf_negotiate_latest_older
[04:27:24] [SKIPPED] pf_negotiate_latest_prev
[04:27:24] =================== [PASSED] pf_service ====================
[04:27:24] ================= xe_guc_g2g (2 subtests) ==================
[04:27:24] ============== xe_live_guc_g2g_kunit_default ==============
[04:27:24] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[04:27:24] ============== xe_live_guc_g2g_kunit_allmem ===============
[04:27:24] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[04:27:24] =================== [SKIPPED] xe_guc_g2g ===================
[04:27:24] =================== xe_mocs (2 subtests) ===================
[04:27:24] ================ xe_live_mocs_kernel_kunit ================
[04:27:24] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[04:27:24] ================ xe_live_mocs_reset_kunit =================
[04:27:24] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[04:27:24] ==================== [SKIPPED] xe_mocs =====================
[04:27:24] ================= xe_migrate (2 subtests) ==================
[04:27:24] ================= xe_migrate_sanity_kunit =================
[04:27:24] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[04:27:24] ================== xe_validate_ccs_kunit ==================
[04:27:24] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[04:27:24] =================== [SKIPPED] xe_migrate ===================
[04:27:24] ================== xe_dma_buf (1 subtest) ==================
[04:27:24] ==================== xe_dma_buf_kunit =====================
[04:27:24] ================ [SKIPPED] xe_dma_buf_kunit ================
[04:27:24] =================== [SKIPPED] xe_dma_buf ===================
[04:27:24] ================= xe_bo_shrink (1 subtest) =================
[04:27:24] =================== xe_bo_shrink_kunit ====================
[04:27:24] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[04:27:24] ================== [SKIPPED] xe_bo_shrink ==================
[04:27:24] ==================== xe_bo (2 subtests) ====================
[04:27:24] ================== xe_ccs_migrate_kunit ===================
[04:27:24] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[04:27:24] ==================== xe_bo_evict_kunit ====================
[04:27:24] =============== [SKIPPED] xe_bo_evict_kunit ================
[04:27:24] ===================== [SKIPPED] xe_bo ======================
[04:27:24] ==================== args (11 subtests) ====================
[04:27:24] [PASSED] count_args_test
[04:27:24] [PASSED] call_args_example
[04:27:24] [PASSED] call_args_test
[04:27:24] [PASSED] drop_first_arg_example
[04:27:24] [PASSED] drop_first_arg_test
[04:27:24] [PASSED] first_arg_example
[04:27:24] [PASSED] first_arg_test
[04:27:24] [PASSED] last_arg_example
[04:27:24] [PASSED] last_arg_test
[04:27:24] [PASSED] pick_arg_example
[04:27:24] [PASSED] sep_comma_example
[04:27:24] ====================== [PASSED] args =======================
[04:27:24] =================== xe_pci (3 subtests) ====================
[04:27:24] ==================== check_graphics_ip ====================
[04:27:24] [PASSED] 12.00 Xe_LP
[04:27:24] [PASSED] 12.10 Xe_LP+
[04:27:24] [PASSED] 12.55 Xe_HPG
[04:27:24] [PASSED] 12.60 Xe_HPC
[04:27:24] [PASSED] 12.70 Xe_LPG
[04:27:24] [PASSED] 12.71 Xe_LPG
[04:27:24] [PASSED] 12.74 Xe_LPG+
[04:27:24] [PASSED] 20.01 Xe2_HPG
[04:27:24] [PASSED] 20.02 Xe2_HPG
[04:27:24] [PASSED] 20.04 Xe2_LPG
[04:27:24] [PASSED] 30.00 Xe3_LPG
[04:27:24] [PASSED] 30.01 Xe3_LPG
[04:27:24] [PASSED] 30.03 Xe3_LPG
[04:27:24] [PASSED] 30.04 Xe3_LPG
[04:27:24] [PASSED] 30.05 Xe3_LPG
[04:27:24] [PASSED] 35.11 Xe3p_XPC
[04:27:24] ================ [PASSED] check_graphics_ip ================
[04:27:24] ===================== check_media_ip ======================
[04:27:24] [PASSED] 12.00 Xe_M
[04:27:24] [PASSED] 12.55 Xe_HPM
[04:27:24] [PASSED] 13.00 Xe_LPM+
[04:27:24] [PASSED] 13.01 Xe2_HPM
[04:27:24] [PASSED] 20.00 Xe2_LPM
[04:27:24] [PASSED] 30.00 Xe3_LPM
[04:27:24] [PASSED] 30.02 Xe3_LPM
[04:27:24] [PASSED] 35.00 Xe3p_LPM
[04:27:24] [PASSED] 35.03 Xe3p_HPM
[04:27:24] ================= [PASSED] check_media_ip ==================
[04:27:24] =================== check_platform_desc ===================
[04:27:24] [PASSED] 0x9A60 (TIGERLAKE)
[04:27:24] [PASSED] 0x9A68 (TIGERLAKE)
[04:27:24] [PASSED] 0x9A70 (TIGERLAKE)
[04:27:24] [PASSED] 0x9A40 (TIGERLAKE)
[04:27:24] [PASSED] 0x9A49 (TIGERLAKE)
[04:27:24] [PASSED] 0x9A59 (TIGERLAKE)
[04:27:24] [PASSED] 0x9A78 (TIGERLAKE)
[04:27:24] [PASSED] 0x9AC0 (TIGERLAKE)
[04:27:24] [PASSED] 0x9AC9 (TIGERLAKE)
[04:27:24] [PASSED] 0x9AD9 (TIGERLAKE)
[04:27:24] [PASSED] 0x9AF8 (TIGERLAKE)
[04:27:24] [PASSED] 0x4C80 (ROCKETLAKE)
[04:27:24] [PASSED] 0x4C8A (ROCKETLAKE)
[04:27:24] [PASSED] 0x4C8B (ROCKETLAKE)
[04:27:24] [PASSED] 0x4C8C (ROCKETLAKE)
[04:27:24] [PASSED] 0x4C90 (ROCKETLAKE)
[04:27:24] [PASSED] 0x4C9A (ROCKETLAKE)
[04:27:24] [PASSED] 0x4680 (ALDERLAKE_S)
[04:27:24] [PASSED] 0x4682 (ALDERLAKE_S)
[04:27:24] [PASSED] 0x4688 (ALDERLAKE_S)
[04:27:24] [PASSED] 0x468A (ALDERLAKE_S)
[04:27:24] [PASSED] 0x468B (ALDERLAKE_S)
[04:27:24] [PASSED] 0x4690 (ALDERLAKE_S)
[04:27:24] [PASSED] 0x4692 (ALDERLAKE_S)
[04:27:24] [PASSED] 0x4693 (ALDERLAKE_S)
[04:27:24] [PASSED] 0x46A0 (ALDERLAKE_P)
[04:27:24] [PASSED] 0x46A1 (ALDERLAKE_P)
[04:27:24] [PASSED] 0x46A2 (ALDERLAKE_P)
[04:27:24] [PASSED] 0x46A3 (ALDERLAKE_P)
[04:27:24] [PASSED] 0x46A6 (ALDERLAKE_P)
[04:27:24] [PASSED] 0x46A8 (ALDERLAKE_P)
[04:27:24] [PASSED] 0x46AA (ALDERLAKE_P)
[04:27:24] [PASSED] 0x462A (ALDERLAKE_P)
[04:27:24] [PASSED] 0x4626 (ALDERLAKE_P)
[04:27:24] [PASSED] 0x4628 (ALDERLAKE_P)
[04:27:24] [PASSED] 0x46B0 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[04:27:24] [PASSED] 0x46B1 (ALDERLAKE_P)
[04:27:24] [PASSED] 0x46B2 (ALDERLAKE_P)
[04:27:24] [PASSED] 0x46B3 (ALDERLAKE_P)
[04:27:24] [PASSED] 0x46C0 (ALDERLAKE_P)
[04:27:24] [PASSED] 0x46C1 (ALDERLAKE_P)
[04:27:24] [PASSED] 0x46C2 (ALDERLAKE_P)
[04:27:24] [PASSED] 0x46C3 (ALDERLAKE_P)
[04:27:24] [PASSED] 0x46D0 (ALDERLAKE_N)
[04:27:24] [PASSED] 0x46D1 (ALDERLAKE_N)
[04:27:24] [PASSED] 0x46D2 (ALDERLAKE_N)
[04:27:24] [PASSED] 0x46D3 (ALDERLAKE_N)
[04:27:24] [PASSED] 0x46D4 (ALDERLAKE_N)
[04:27:24] [PASSED] 0xA721 (ALDERLAKE_P)
[04:27:24] [PASSED] 0xA7A1 (ALDERLAKE_P)
[04:27:24] [PASSED] 0xA7A9 (ALDERLAKE_P)
[04:27:24] [PASSED] 0xA7AC (ALDERLAKE_P)
[04:27:24] [PASSED] 0xA7AD (ALDERLAKE_P)
[04:27:24] [PASSED] 0xA720 (ALDERLAKE_P)
[04:27:24] [PASSED] 0xA7A0 (ALDERLAKE_P)
[04:27:24] [PASSED] 0xA7A8 (ALDERLAKE_P)
[04:27:24] [PASSED] 0xA7AA (ALDERLAKE_P)
[04:27:24] [PASSED] 0xA7AB (ALDERLAKE_P)
[04:27:24] [PASSED] 0xA780 (ALDERLAKE_S)
[04:27:24] [PASSED] 0xA781 (ALDERLAKE_S)
[04:27:24] [PASSED] 0xA782 (ALDERLAKE_S)
[04:27:24] [PASSED] 0xA783 (ALDERLAKE_S)
[04:27:24] [PASSED] 0xA788 (ALDERLAKE_S)
[04:27:24] [PASSED] 0xA789 (ALDERLAKE_S)
[04:27:24] [PASSED] 0xA78A (ALDERLAKE_S)
[04:27:24] [PASSED] 0xA78B (ALDERLAKE_S)
[04:27:24] [PASSED] 0x4905 (DG1)
[04:27:24] [PASSED] 0x4906 (DG1)
[04:27:24] [PASSED] 0x4907 (DG1)
[04:27:24] [PASSED] 0x4908 (DG1)
[04:27:24] [PASSED] 0x4909 (DG1)
[04:27:24] [PASSED] 0x56C0 (DG2)
[04:27:24] [PASSED] 0x56C2 (DG2)
[04:27:24] [PASSED] 0x56C1 (DG2)
[04:27:24] [PASSED] 0x7D51 (METEORLAKE)
[04:27:24] [PASSED] 0x7DD1 (METEORLAKE)
[04:27:24] [PASSED] 0x7D41 (METEORLAKE)
[04:27:24] [PASSED] 0x7D67 (METEORLAKE)
[04:27:24] [PASSED] 0xB640 (METEORLAKE)
[04:27:24] [PASSED] 0x56A0 (DG2)
[04:27:24] [PASSED] 0x56A1 (DG2)
[04:27:24] [PASSED] 0x56A2 (DG2)
[04:27:24] [PASSED] 0x56BE (DG2)
[04:27:24] [PASSED] 0x56BF (DG2)
[04:27:24] [PASSED] 0x5690 (DG2)
[04:27:24] [PASSED] 0x5691 (DG2)
[04:27:24] [PASSED] 0x5692 (DG2)
[04:27:24] [PASSED] 0x56A5 (DG2)
[04:27:24] [PASSED] 0x56A6 (DG2)
[04:27:24] [PASSED] 0x56B0 (DG2)
[04:27:24] [PASSED] 0x56B1 (DG2)
[04:27:24] [PASSED] 0x56BA (DG2)
[04:27:24] [PASSED] 0x56BB (DG2)
[04:27:24] [PASSED] 0x56BC (DG2)
[04:27:24] [PASSED] 0x56BD (DG2)
[04:27:24] [PASSED] 0x5693 (DG2)
[04:27:24] [PASSED] 0x5694 (DG2)
[04:27:24] [PASSED] 0x5695 (DG2)
[04:27:24] [PASSED] 0x56A3 (DG2)
[04:27:24] [PASSED] 0x56A4 (DG2)
[04:27:24] [PASSED] 0x56B2 (DG2)
[04:27:24] [PASSED] 0x56B3 (DG2)
[04:27:24] [PASSED] 0x5696 (DG2)
[04:27:24] [PASSED] 0x5697 (DG2)
[04:27:24] [PASSED] 0xB69 (PVC)
[04:27:24] [PASSED] 0xB6E (PVC)
[04:27:24] [PASSED] 0xBD4 (PVC)
[04:27:24] [PASSED] 0xBD5 (PVC)
[04:27:24] [PASSED] 0xBD6 (PVC)
[04:27:24] [PASSED] 0xBD7 (PVC)
[04:27:24] [PASSED] 0xBD8 (PVC)
[04:27:24] [PASSED] 0xBD9 (PVC)
[04:27:24] [PASSED] 0xBDA (PVC)
[04:27:24] [PASSED] 0xBDB (PVC)
[04:27:24] [PASSED] 0xBE0 (PVC)
[04:27:24] [PASSED] 0xBE1 (PVC)
[04:27:24] [PASSED] 0xBE5 (PVC)
[04:27:24] [PASSED] 0x7D40 (METEORLAKE)
[04:27:24] [PASSED] 0x7D45 (METEORLAKE)
[04:27:24] [PASSED] 0x7D55 (METEORLAKE)
[04:27:24] [PASSED] 0x7D60 (METEORLAKE)
[04:27:24] [PASSED] 0x7DD5 (METEORLAKE)
[04:27:24] [PASSED] 0x6420 (LUNARLAKE)
[04:27:24] [PASSED] 0x64A0 (LUNARLAKE)
[04:27:24] [PASSED] 0x64B0 (LUNARLAKE)
[04:27:24] [PASSED] 0xE202 (BATTLEMAGE)
[04:27:24] [PASSED] 0xE209 (BATTLEMAGE)
[04:27:24] [PASSED] 0xE20B (BATTLEMAGE)
[04:27:24] [PASSED] 0xE20C (BATTLEMAGE)
[04:27:24] [PASSED] 0xE20D (BATTLEMAGE)
[04:27:24] [PASSED] 0xE210 (BATTLEMAGE)
[04:27:24] [PASSED] 0xE211 (BATTLEMAGE)
[04:27:24] [PASSED] 0xE212 (BATTLEMAGE)
[04:27:24] [PASSED] 0xE216 (BATTLEMAGE)
[04:27:24] [PASSED] 0xE220 (BATTLEMAGE)
[04:27:24] [PASSED] 0xE221 (BATTLEMAGE)
[04:27:24] [PASSED] 0xE222 (BATTLEMAGE)
[04:27:24] [PASSED] 0xE223 (BATTLEMAGE)
[04:27:24] [PASSED] 0xB080 (PANTHERLAKE)
[04:27:24] [PASSED] 0xB081 (PANTHERLAKE)
[04:27:24] [PASSED] 0xB082 (PANTHERLAKE)
[04:27:24] [PASSED] 0xB083 (PANTHERLAKE)
[04:27:24] [PASSED] 0xB084 (PANTHERLAKE)
[04:27:24] [PASSED] 0xB085 (PANTHERLAKE)
[04:27:24] [PASSED] 0xB086 (PANTHERLAKE)
[04:27:24] [PASSED] 0xB087 (PANTHERLAKE)
[04:27:24] [PASSED] 0xB08F (PANTHERLAKE)
[04:27:24] [PASSED] 0xB090 (PANTHERLAKE)
[04:27:24] [PASSED] 0xB0A0 (PANTHERLAKE)
[04:27:24] [PASSED] 0xB0B0 (PANTHERLAKE)
[04:27:24] [PASSED] 0xD740 (NOVALAKE_S)
[04:27:24] [PASSED] 0xD741 (NOVALAKE_S)
[04:27:24] [PASSED] 0xD742 (NOVALAKE_S)
[04:27:24] [PASSED] 0xD743 (NOVALAKE_S)
[04:27:24] [PASSED] 0xD744 (NOVALAKE_S)
[04:27:24] [PASSED] 0xD745 (NOVALAKE_S)
[04:27:24] [PASSED] 0x674C (CRESCENTISLAND)
[04:27:24] [PASSED] 0xFD80 (PANTHERLAKE)
[04:27:24] [PASSED] 0xFD81 (PANTHERLAKE)
[04:27:24] =============== [PASSED] check_platform_desc ===============
[04:27:24] ===================== [PASSED] xe_pci ======================
[04:27:24] =================== xe_rtp (2 subtests) ====================
[04:27:24] =============== xe_rtp_process_to_sr_tests ================
[04:27:24] [PASSED] coalesce-same-reg
[04:27:24] [PASSED] no-match-no-add
[04:27:24] [PASSED] match-or
[04:27:24] [PASSED] match-or-xfail
[04:27:24] [PASSED] no-match-no-add-multiple-rules
[04:27:24] [PASSED] two-regs-two-entries
[04:27:24] [PASSED] clr-one-set-other
[04:27:24] [PASSED] set-field
[04:27:24] [PASSED] conflict-duplicate
[04:27:24] [PASSED] conflict-not-disjoint
[04:27:24] [PASSED] conflict-reg-type
[04:27:24] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[04:27:24] ================== xe_rtp_process_tests ===================
[04:27:24] [PASSED] active1
[04:27:24] [PASSED] active2
[04:27:24] [PASSED] active-inactive
[04:27:24] [PASSED] inactive-active
[04:27:24] [PASSED] inactive-1st_or_active-inactive
[04:27:24] [PASSED] inactive-2nd_or_active-inactive
[04:27:24] [PASSED] inactive-last_or_active-inactive
[04:27:24] [PASSED] inactive-no_or_active-inactive
[04:27:24] ============== [PASSED] xe_rtp_process_tests ===============
[04:27:24] ===================== [PASSED] xe_rtp ======================
[04:27:24] ==================== xe_wa (1 subtest) =====================
[04:27:24] ======================== xe_wa_gt =========================
[04:27:24] [PASSED] TIGERLAKE B0
[04:27:24] [PASSED] DG1 A0
[04:27:24] [PASSED] DG1 B0
[04:27:24] [PASSED] ALDERLAKE_S A0
[04:27:24] [PASSED] ALDERLAKE_S B0
[04:27:24] [PASSED] ALDERLAKE_S C0
[04:27:24] [PASSED] ALDERLAKE_S D0
[04:27:24] [PASSED] ALDERLAKE_P A0
[04:27:24] [PASSED] ALDERLAKE_P B0
[04:27:24] [PASSED] ALDERLAKE_P C0
[04:27:24] [PASSED] ALDERLAKE_S RPLS D0
[04:27:24] [PASSED] ALDERLAKE_P RPLU E0
[04:27:24] [PASSED] DG2 G10 C0
[04:27:24] [PASSED] DG2 G11 B1
[04:27:24] [PASSED] DG2 G12 A1
[04:27:24] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[04:27:24] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[04:27:24] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[04:27:24] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[04:27:24] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[04:27:24] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[04:27:24] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[04:27:24] ==================== [PASSED] xe_wa_gt =====================
[04:27:24] ====================== [PASSED] xe_wa ======================
[04:27:24] ============================================================
[04:27:24] Testing complete. Ran 510 tests: passed: 492, skipped: 18
[04:27:24] Elapsed time: 36.346s total, 4.291s configuring, 31.588s building, 0.459s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[04:27:24] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[04:27: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
[04:27:51] Starting KUnit Kernel (1/1)...
[04:27:51] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[04:27:51] ============ drm_test_pick_cmdline (2 subtests) ============
[04:27:51] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[04:27:51] =============== drm_test_pick_cmdline_named ===============
[04:27:51] [PASSED] NTSC
[04:27:51] [PASSED] NTSC-J
[04:27:51] [PASSED] PAL
[04:27:51] [PASSED] PAL-M
[04:27:51] =========== [PASSED] drm_test_pick_cmdline_named ===========
[04:27:51] ============== [PASSED] drm_test_pick_cmdline ==============
[04:27:51] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[04:27:51] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[04:27:51] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[04:27:51] =========== drm_validate_clone_mode (2 subtests) ===========
[04:27:51] ============== drm_test_check_in_clone_mode ===============
[04:27:51] [PASSED] in_clone_mode
[04:27:51] [PASSED] not_in_clone_mode
[04:27:51] ========== [PASSED] drm_test_check_in_clone_mode ===========
[04:27:51] =============== drm_test_check_valid_clones ===============
[04:27:51] [PASSED] not_in_clone_mode
[04:27:51] [PASSED] valid_clone
[04:27:51] [PASSED] invalid_clone
[04:27:51] =========== [PASSED] drm_test_check_valid_clones ===========
[04:27:51] ============= [PASSED] drm_validate_clone_mode =============
[04:27:51] ============= drm_validate_modeset (1 subtest) =============
[04:27:51] [PASSED] drm_test_check_connector_changed_modeset
[04:27:51] ============== [PASSED] drm_validate_modeset ===============
[04:27:51] ====== drm_test_bridge_get_current_state (2 subtests) ======
[04:27:51] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[04:27:51] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[04:27:51] ======== [PASSED] drm_test_bridge_get_current_state ========
[04:27:51] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[04:27:51] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[04:27:51] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[04:27:51] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[04:27:51] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[04:27:51] ============== drm_bridge_alloc (2 subtests) ===============
[04:27:51] [PASSED] drm_test_drm_bridge_alloc_basic
[04:27:51] [PASSED] drm_test_drm_bridge_alloc_get_put
[04:27:51] ================ [PASSED] drm_bridge_alloc =================
[04:27:51] ================== drm_buddy (8 subtests) ==================
[04:27:51] [PASSED] drm_test_buddy_alloc_limit
[04:27:51] [PASSED] drm_test_buddy_alloc_optimistic
[04:27:51] [PASSED] drm_test_buddy_alloc_pessimistic
[04:27:51] [PASSED] drm_test_buddy_alloc_pathological
[04:27:51] [PASSED] drm_test_buddy_alloc_contiguous
[04:27:51] [PASSED] drm_test_buddy_alloc_clear
[04:27:52] [PASSED] drm_test_buddy_alloc_range_bias
[04:27:52] [PASSED] drm_test_buddy_fragmentation_performance
[04:27:52] ==================== [PASSED] drm_buddy ====================
[04:27:52] ============= drm_cmdline_parser (40 subtests) =============
[04:27:52] [PASSED] drm_test_cmdline_force_d_only
[04:27:52] [PASSED] drm_test_cmdline_force_D_only_dvi
[04:27:52] [PASSED] drm_test_cmdline_force_D_only_hdmi
[04:27:52] [PASSED] drm_test_cmdline_force_D_only_not_digital
[04:27:52] [PASSED] drm_test_cmdline_force_e_only
[04:27:52] [PASSED] drm_test_cmdline_res
[04:27:52] [PASSED] drm_test_cmdline_res_vesa
[04:27:52] [PASSED] drm_test_cmdline_res_vesa_rblank
[04:27:52] [PASSED] drm_test_cmdline_res_rblank
[04:27:52] [PASSED] drm_test_cmdline_res_bpp
[04:27:52] [PASSED] drm_test_cmdline_res_refresh
[04:27:52] [PASSED] drm_test_cmdline_res_bpp_refresh
[04:27:52] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[04:27:52] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[04:27:52] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[04:27:52] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[04:27:52] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[04:27:52] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[04:27:52] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[04:27:52] [PASSED] drm_test_cmdline_res_margins_force_on
[04:27:52] [PASSED] drm_test_cmdline_res_vesa_margins
[04:27:52] [PASSED] drm_test_cmdline_name
[04:27:52] [PASSED] drm_test_cmdline_name_bpp
[04:27:52] [PASSED] drm_test_cmdline_name_option
[04:27:52] [PASSED] drm_test_cmdline_name_bpp_option
[04:27:52] [PASSED] drm_test_cmdline_rotate_0
[04:27:52] [PASSED] drm_test_cmdline_rotate_90
[04:27:52] [PASSED] drm_test_cmdline_rotate_180
[04:27:52] [PASSED] drm_test_cmdline_rotate_270
[04:27:52] [PASSED] drm_test_cmdline_hmirror
[04:27:52] [PASSED] drm_test_cmdline_vmirror
[04:27:52] [PASSED] drm_test_cmdline_margin_options
[04:27:52] [PASSED] drm_test_cmdline_multiple_options
[04:27:52] [PASSED] drm_test_cmdline_bpp_extra_and_option
[04:27:52] [PASSED] drm_test_cmdline_extra_and_option
[04:27:52] [PASSED] drm_test_cmdline_freestanding_options
[04:27:52] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[04:27:52] [PASSED] drm_test_cmdline_panel_orientation
[04:27:52] ================ drm_test_cmdline_invalid =================
[04:27:52] [PASSED] margin_only
[04:27:52] [PASSED] interlace_only
[04:27:52] [PASSED] res_missing_x
[04:27:52] [PASSED] res_missing_y
[04:27:52] [PASSED] res_bad_y
[04:27:52] [PASSED] res_missing_y_bpp
[04:27:52] [PASSED] res_bad_bpp
[04:27:52] [PASSED] res_bad_refresh
[04:27:52] [PASSED] res_bpp_refresh_force_on_off
[04:27:52] [PASSED] res_invalid_mode
[04:27:52] [PASSED] res_bpp_wrong_place_mode
[04:27:52] [PASSED] name_bpp_refresh
[04:27:52] [PASSED] name_refresh
[04:27:52] [PASSED] name_refresh_wrong_mode
[04:27:52] [PASSED] name_refresh_invalid_mode
[04:27:52] [PASSED] rotate_multiple
[04:27:52] [PASSED] rotate_invalid_val
[04:27:52] [PASSED] rotate_truncated
[04:27:52] [PASSED] invalid_option
[04:27:52] [PASSED] invalid_tv_option
[04:27:52] [PASSED] truncated_tv_option
[04:27:52] ============ [PASSED] drm_test_cmdline_invalid =============
[04:27:52] =============== drm_test_cmdline_tv_options ===============
[04:27:52] [PASSED] NTSC
[04:27:52] [PASSED] NTSC_443
[04:27:52] [PASSED] NTSC_J
[04:27:52] [PASSED] PAL
[04:27:52] [PASSED] PAL_M
[04:27:52] [PASSED] PAL_N
[04:27:52] [PASSED] SECAM
[04:27:52] [PASSED] MONO_525
[04:27:52] [PASSED] MONO_625
[04:27:52] =========== [PASSED] drm_test_cmdline_tv_options ===========
[04:27:52] =============== [PASSED] drm_cmdline_parser ================
[04:27:52] ========== drmm_connector_hdmi_init (20 subtests) ==========
[04:27:52] [PASSED] drm_test_connector_hdmi_init_valid
[04:27:52] [PASSED] drm_test_connector_hdmi_init_bpc_8
[04:27:52] [PASSED] drm_test_connector_hdmi_init_bpc_10
[04:27:52] [PASSED] drm_test_connector_hdmi_init_bpc_12
[04:27:52] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[04:27:52] [PASSED] drm_test_connector_hdmi_init_bpc_null
[04:27:52] [PASSED] drm_test_connector_hdmi_init_formats_empty
[04:27:52] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[04:27:52] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[04:27:52] [PASSED] supported_formats=0x9 yuv420_allowed=1
[04:27:52] [PASSED] supported_formats=0x9 yuv420_allowed=0
[04:27:52] [PASSED] supported_formats=0x3 yuv420_allowed=1
[04:27:52] [PASSED] supported_formats=0x3 yuv420_allowed=0
[04:27:52] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[04:27:52] [PASSED] drm_test_connector_hdmi_init_null_ddc
[04:27:52] [PASSED] drm_test_connector_hdmi_init_null_product
[04:27:52] [PASSED] drm_test_connector_hdmi_init_null_vendor
[04:27:52] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[04:27:52] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[04:27:52] [PASSED] drm_test_connector_hdmi_init_product_valid
[04:27:52] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[04:27:52] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[04:27:52] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[04:27:52] ========= drm_test_connector_hdmi_init_type_valid =========
[04:27:52] [PASSED] HDMI-A
[04:27:52] [PASSED] HDMI-B
[04:27:52] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[04:27:52] ======== drm_test_connector_hdmi_init_type_invalid ========
[04:27:52] [PASSED] Unknown
[04:27:52] [PASSED] VGA
[04:27:52] [PASSED] DVI-I
[04:27:52] [PASSED] DVI-D
[04:27:52] [PASSED] DVI-A
[04:27:52] [PASSED] Composite
[04:27:52] [PASSED] SVIDEO
[04:27:52] [PASSED] LVDS
[04:27:52] [PASSED] Component
[04:27:52] [PASSED] DIN
[04:27:52] [PASSED] DP
[04:27:52] [PASSED] TV
[04:27:52] [PASSED] eDP
[04:27:52] [PASSED] Virtual
[04:27:52] [PASSED] DSI
[04:27:52] [PASSED] DPI
[04:27:52] [PASSED] Writeback
[04:27:52] [PASSED] SPI
[04:27:52] [PASSED] USB
[04:27:52] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[04:27:52] ============ [PASSED] drmm_connector_hdmi_init =============
[04:27:52] ============= drmm_connector_init (3 subtests) =============
[04:27:52] [PASSED] drm_test_drmm_connector_init
[04:27:52] [PASSED] drm_test_drmm_connector_init_null_ddc
[04:27:52] ========= drm_test_drmm_connector_init_type_valid =========
[04:27:52] [PASSED] Unknown
[04:27:52] [PASSED] VGA
[04:27:52] [PASSED] DVI-I
[04:27:52] [PASSED] DVI-D
[04:27:52] [PASSED] DVI-A
[04:27:52] [PASSED] Composite
[04:27:52] [PASSED] SVIDEO
[04:27:52] [PASSED] LVDS
[04:27:52] [PASSED] Component
[04:27:52] [PASSED] DIN
[04:27:52] [PASSED] DP
[04:27:52] [PASSED] HDMI-A
[04:27:52] [PASSED] HDMI-B
[04:27:52] [PASSED] TV
[04:27:52] [PASSED] eDP
[04:27:52] [PASSED] Virtual
[04:27:52] [PASSED] DSI
[04:27:52] [PASSED] DPI
[04:27:52] [PASSED] Writeback
[04:27:52] [PASSED] SPI
[04:27:52] [PASSED] USB
[04:27:52] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[04:27:52] =============== [PASSED] drmm_connector_init ===============
[04:27:52] ========= drm_connector_dynamic_init (6 subtests) ==========
[04:27:52] [PASSED] drm_test_drm_connector_dynamic_init
[04:27:52] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[04:27:52] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[04:27:52] [PASSED] drm_test_drm_connector_dynamic_init_properties
[04:27:52] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[04:27:52] [PASSED] Unknown
[04:27:52] [PASSED] VGA
[04:27:52] [PASSED] DVI-I
[04:27:52] [PASSED] DVI-D
[04:27:52] [PASSED] DVI-A
[04:27:52] [PASSED] Composite
[04:27:52] [PASSED] SVIDEO
[04:27:52] [PASSED] LVDS
[04:27:52] [PASSED] Component
[04:27:52] [PASSED] DIN
[04:27:52] [PASSED] DP
[04:27:52] [PASSED] HDMI-A
[04:27:52] [PASSED] HDMI-B
[04:27:52] [PASSED] TV
[04:27:52] [PASSED] eDP
[04:27:52] [PASSED] Virtual
[04:27:52] [PASSED] DSI
[04:27:52] [PASSED] DPI
[04:27:52] [PASSED] Writeback
[04:27:52] [PASSED] SPI
[04:27:52] [PASSED] USB
[04:27:52] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[04:27:52] ======== drm_test_drm_connector_dynamic_init_name =========
[04:27:52] [PASSED] Unknown
[04:27:52] [PASSED] VGA
[04:27:52] [PASSED] DVI-I
[04:27:52] [PASSED] DVI-D
[04:27:52] [PASSED] DVI-A
[04:27:52] [PASSED] Composite
[04:27:52] [PASSED] SVIDEO
[04:27:52] [PASSED] LVDS
[04:27:52] [PASSED] Component
[04:27:52] [PASSED] DIN
[04:27:52] [PASSED] DP
[04:27:52] [PASSED] HDMI-A
[04:27:52] [PASSED] HDMI-B
[04:27:52] [PASSED] TV
[04:27:52] [PASSED] eDP
[04:27:52] [PASSED] Virtual
[04:27:52] [PASSED] DSI
[04:27:52] [PASSED] DPI
[04:27:52] [PASSED] Writeback
[04:27:52] [PASSED] SPI
[04:27:52] [PASSED] USB
[04:27:52] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[04:27:52] =========== [PASSED] drm_connector_dynamic_init ============
[04:27:52] ==== drm_connector_dynamic_register_early (4 subtests) =====
[04:27:52] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[04:27:52] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[04:27:52] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[04:27:52] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[04:27:52] ====== [PASSED] drm_connector_dynamic_register_early =======
[04:27:52] ======= drm_connector_dynamic_register (7 subtests) ========
[04:27:52] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[04:27:52] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[04:27:52] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[04:27:52] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[04:27:52] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[04:27:52] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[04:27:52] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[04:27:52] ========= [PASSED] drm_connector_dynamic_register ==========
[04:27:52] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[04:27:52] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[04:27:52] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[04:27:52] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[04:27:52] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[04:27:52] ========== drm_test_get_tv_mode_from_name_valid ===========
[04:27:52] [PASSED] NTSC
[04:27:52] [PASSED] NTSC-443
[04:27:52] [PASSED] NTSC-J
[04:27:52] [PASSED] PAL
[04:27:52] [PASSED] PAL-M
[04:27:52] [PASSED] PAL-N
[04:27:52] [PASSED] SECAM
[04:27:52] [PASSED] Mono
[04:27:52] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[04:27:52] [PASSED] drm_test_get_tv_mode_from_name_truncated
[04:27:52] ============ [PASSED] drm_get_tv_mode_from_name ============
[04:27:52] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[04:27:52] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[04:27:52] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[04:27:52] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[04:27:52] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[04:27:52] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[04:27:52] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[04:27:52] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[04:27:52] [PASSED] VIC 96
[04:27:52] [PASSED] VIC 97
[04:27:52] [PASSED] VIC 101
[04:27:52] [PASSED] VIC 102
[04:27:52] [PASSED] VIC 106
[04:27:52] [PASSED] VIC 107
[04:27:52] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[04:27:52] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[04:27:52] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[04:27:52] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[04:27:52] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[04:27:52] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[04:27:52] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[04:27:52] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[04:27:52] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[04:27:52] [PASSED] Automatic
[04:27:52] [PASSED] Full
[04:27:52] [PASSED] Limited 16:235
[04:27:52] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[04:27:52] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[04:27:52] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[04:27:52] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[04:27:52] === drm_test_drm_hdmi_connector_get_output_format_name ====
[04:27:52] [PASSED] RGB
[04:27:52] [PASSED] YUV 4:2:0
[04:27:52] [PASSED] YUV 4:2:2
[04:27:52] [PASSED] YUV 4:4:4
[04:27:52] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[04:27:52] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[04:27:52] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[04:27:52] ============= drm_damage_helper (21 subtests) ==============
[04:27:52] [PASSED] drm_test_damage_iter_no_damage
[04:27:52] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[04:27:52] [PASSED] drm_test_damage_iter_no_damage_src_moved
[04:27:52] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[04:27:52] [PASSED] drm_test_damage_iter_no_damage_not_visible
[04:27:52] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[04:27:52] [PASSED] drm_test_damage_iter_no_damage_no_fb
[04:27:52] [PASSED] drm_test_damage_iter_simple_damage
[04:27:52] [PASSED] drm_test_damage_iter_single_damage
[04:27:52] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[04:27:52] [PASSED] drm_test_damage_iter_single_damage_outside_src
[04:27:52] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[04:27:52] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[04:27:52] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[04:27:52] [PASSED] drm_test_damage_iter_single_damage_src_moved
[04:27:52] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[04:27:52] [PASSED] drm_test_damage_iter_damage
[04:27:52] [PASSED] drm_test_damage_iter_damage_one_intersect
[04:27:52] [PASSED] drm_test_damage_iter_damage_one_outside
[04:27:52] [PASSED] drm_test_damage_iter_damage_src_moved
[04:27:52] [PASSED] drm_test_damage_iter_damage_not_visible
[04:27:52] ================ [PASSED] drm_damage_helper ================
[04:27:52] ============== drm_dp_mst_helper (3 subtests) ==============
[04:27:52] ============== drm_test_dp_mst_calc_pbn_mode ==============
[04:27:52] [PASSED] Clock 154000 BPP 30 DSC disabled
[04:27:52] [PASSED] Clock 234000 BPP 30 DSC disabled
[04:27:52] [PASSED] Clock 297000 BPP 24 DSC disabled
[04:27:52] [PASSED] Clock 332880 BPP 24 DSC enabled
[04:27:52] [PASSED] Clock 324540 BPP 24 DSC enabled
[04:27:52] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[04:27:52] ============== drm_test_dp_mst_calc_pbn_div ===============
[04:27:52] [PASSED] Link rate 2000000 lane count 4
[04:27:52] [PASSED] Link rate 2000000 lane count 2
[04:27:52] [PASSED] Link rate 2000000 lane count 1
[04:27:52] [PASSED] Link rate 1350000 lane count 4
[04:27:52] [PASSED] Link rate 1350000 lane count 2
[04:27:52] [PASSED] Link rate 1350000 lane count 1
[04:27:52] [PASSED] Link rate 1000000 lane count 4
[04:27:52] [PASSED] Link rate 1000000 lane count 2
[04:27:52] [PASSED] Link rate 1000000 lane count 1
[04:27:52] [PASSED] Link rate 810000 lane count 4
[04:27:52] [PASSED] Link rate 810000 lane count 2
[04:27:52] [PASSED] Link rate 810000 lane count 1
[04:27:52] [PASSED] Link rate 540000 lane count 4
[04:27:52] [PASSED] Link rate 540000 lane count 2
[04:27:52] [PASSED] Link rate 540000 lane count 1
[04:27:52] [PASSED] Link rate 270000 lane count 4
[04:27:52] [PASSED] Link rate 270000 lane count 2
[04:27:52] [PASSED] Link rate 270000 lane count 1
[04:27:52] [PASSED] Link rate 162000 lane count 4
[04:27:52] [PASSED] Link rate 162000 lane count 2
[04:27:52] [PASSED] Link rate 162000 lane count 1
[04:27:52] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[04:27:52] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[04:27:52] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[04:27:52] [PASSED] DP_POWER_UP_PHY with port number
[04:27:52] [PASSED] DP_POWER_DOWN_PHY with port number
[04:27:52] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[04:27:52] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[04:27:52] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[04:27:52] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[04:27:52] [PASSED] DP_QUERY_PAYLOAD with port number
[04:27:52] [PASSED] DP_QUERY_PAYLOAD with VCPI
[04:27:52] [PASSED] DP_REMOTE_DPCD_READ with port number
[04:27:52] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[04:27:52] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[04:27:52] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[04:27:52] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[04:27:52] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[04:27:52] [PASSED] DP_REMOTE_I2C_READ with port number
[04:27:52] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[04:27:52] [PASSED] DP_REMOTE_I2C_READ with transactions array
[04:27:52] [PASSED] DP_REMOTE_I2C_WRITE with port number
[04:27:52] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[04:27:52] [PASSED] DP_REMOTE_I2C_WRITE with data array
[04:27:52] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[04:27:52] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[04:27:52] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[04:27:52] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[04:27:52] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[04:27:52] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[04:27:52] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[04:27:52] ================ [PASSED] drm_dp_mst_helper ================
[04:27:52] ================== drm_exec (7 subtests) ===================
[04:27:52] [PASSED] sanitycheck
[04:27:52] [PASSED] test_lock
[04:27:52] [PASSED] test_lock_unlock
[04:27:52] [PASSED] test_duplicates
[04:27:52] [PASSED] test_prepare
[04:27:52] [PASSED] test_prepare_array
[04:27:52] [PASSED] test_multiple_loops
[04:27:52] ==================== [PASSED] drm_exec =====================
[04:27:52] =========== drm_format_helper_test (17 subtests) ===========
[04:27:52] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[04:27:52] [PASSED] single_pixel_source_buffer
[04:27:52] [PASSED] single_pixel_clip_rectangle
[04:27:52] [PASSED] well_known_colors
[04:27:52] [PASSED] destination_pitch
[04:27:52] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[04:27:52] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[04:27:52] [PASSED] single_pixel_source_buffer
[04:27:52] [PASSED] single_pixel_clip_rectangle
[04:27:52] [PASSED] well_known_colors
[04:27:52] [PASSED] destination_pitch
[04:27:52] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[04:27:52] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[04:27:52] [PASSED] single_pixel_source_buffer
[04:27:52] [PASSED] single_pixel_clip_rectangle
[04:27:52] [PASSED] well_known_colors
[04:27:52] [PASSED] destination_pitch
[04:27:52] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[04:27:52] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[04:27:52] [PASSED] single_pixel_source_buffer
[04:27:52] [PASSED] single_pixel_clip_rectangle
[04:27:52] [PASSED] well_known_colors
[04:27:52] [PASSED] destination_pitch
[04:27:52] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[04:27:52] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[04:27:52] [PASSED] single_pixel_source_buffer
[04:27:52] [PASSED] single_pixel_clip_rectangle
[04:27:52] [PASSED] well_known_colors
[04:27:52] [PASSED] destination_pitch
[04:27:52] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[04:27:52] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[04:27:52] [PASSED] single_pixel_source_buffer
[04:27:52] [PASSED] single_pixel_clip_rectangle
[04:27:52] [PASSED] well_known_colors
[04:27:52] [PASSED] destination_pitch
[04:27:52] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[04:27:52] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[04:27:52] [PASSED] single_pixel_source_buffer
[04:27:52] [PASSED] single_pixel_clip_rectangle
[04:27:52] [PASSED] well_known_colors
[04:27:52] [PASSED] destination_pitch
[04:27:52] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[04:27:52] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[04:27:52] [PASSED] single_pixel_source_buffer
[04:27:52] [PASSED] single_pixel_clip_rectangle
[04:27:52] [PASSED] well_known_colors
[04:27:52] [PASSED] destination_pitch
[04:27:52] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[04:27:52] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[04:27:52] [PASSED] single_pixel_source_buffer
[04:27:52] [PASSED] single_pixel_clip_rectangle
[04:27:52] [PASSED] well_known_colors
[04:27:52] [PASSED] destination_pitch
[04:27:52] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[04:27:52] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[04:27:52] [PASSED] single_pixel_source_buffer
[04:27:52] [PASSED] single_pixel_clip_rectangle
[04:27:52] [PASSED] well_known_colors
[04:27:52] [PASSED] destination_pitch
[04:27:52] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[04:27:52] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[04:27:52] [PASSED] single_pixel_source_buffer
[04:27:52] [PASSED] single_pixel_clip_rectangle
[04:27:52] [PASSED] well_known_colors
[04:27:52] [PASSED] destination_pitch
[04:27:52] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[04:27:52] ============== drm_test_fb_xrgb8888_to_mono ===============
[04:27:52] [PASSED] single_pixel_source_buffer
[04:27:52] [PASSED] single_pixel_clip_rectangle
[04:27:52] [PASSED] well_known_colors
[04:27:52] [PASSED] destination_pitch
[04:27:52] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[04:27:52] ==================== drm_test_fb_swab =====================
[04:27:52] [PASSED] single_pixel_source_buffer
[04:27:52] [PASSED] single_pixel_clip_rectangle
[04:27:52] [PASSED] well_known_colors
[04:27:52] [PASSED] destination_pitch
[04:27:52] ================ [PASSED] drm_test_fb_swab =================
[04:27:52] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[04:27:52] [PASSED] single_pixel_source_buffer
[04:27:52] [PASSED] single_pixel_clip_rectangle
[04:27:52] [PASSED] well_known_colors
[04:27:52] [PASSED] destination_pitch
[04:27:52] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[04:27:52] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[04:27:52] [PASSED] single_pixel_source_buffer
[04:27:52] [PASSED] single_pixel_clip_rectangle
[04:27:52] [PASSED] well_known_colors
[04:27:52] [PASSED] destination_pitch
[04:27:52] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[04:27:52] ================= drm_test_fb_clip_offset =================
[04:27:52] [PASSED] pass through
[04:27:52] [PASSED] horizontal offset
[04:27:52] [PASSED] vertical offset
[04:27:52] [PASSED] horizontal and vertical offset
[04:27:52] [PASSED] horizontal offset (custom pitch)
[04:27:52] [PASSED] vertical offset (custom pitch)
[04:27:52] [PASSED] horizontal and vertical offset (custom pitch)
[04:27:52] ============= [PASSED] drm_test_fb_clip_offset =============
[04:27:52] =================== drm_test_fb_memcpy ====================
[04:27:52] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[04:27:52] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[04:27:52] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[04:27:52] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[04:27:52] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[04:27:52] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[04:27:52] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[04:27:52] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[04:27:52] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[04:27:52] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[04:27:52] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[04:27:52] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[04:27:52] =============== [PASSED] drm_test_fb_memcpy ================
[04:27:52] ============= [PASSED] drm_format_helper_test ==============
[04:27:52] ================= drm_format (18 subtests) =================
[04:27:52] [PASSED] drm_test_format_block_width_invalid
[04:27:52] [PASSED] drm_test_format_block_width_one_plane
[04:27:52] [PASSED] drm_test_format_block_width_two_plane
[04:27:52] [PASSED] drm_test_format_block_width_three_plane
[04:27:52] [PASSED] drm_test_format_block_width_tiled
[04:27:52] [PASSED] drm_test_format_block_height_invalid
[04:27:52] [PASSED] drm_test_format_block_height_one_plane
[04:27:52] [PASSED] drm_test_format_block_height_two_plane
[04:27:52] [PASSED] drm_test_format_block_height_three_plane
[04:27:52] [PASSED] drm_test_format_block_height_tiled
[04:27:52] [PASSED] drm_test_format_min_pitch_invalid
[04:27:52] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[04:27:52] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[04:27:52] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[04:27:52] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[04:27:52] [PASSED] drm_test_format_min_pitch_two_plane
[04:27:52] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[04:27:52] [PASSED] drm_test_format_min_pitch_tiled
[04:27:52] =================== [PASSED] drm_format ====================
[04:27:52] ============== drm_framebuffer (10 subtests) ===============
[04:27:52] ========== drm_test_framebuffer_check_src_coords ==========
[04:27:52] [PASSED] Success: source fits into fb
[04:27:52] [PASSED] Fail: overflowing fb with x-axis coordinate
[04:27:52] [PASSED] Fail: overflowing fb with y-axis coordinate
[04:27:52] [PASSED] Fail: overflowing fb with source width
[04:27:52] [PASSED] Fail: overflowing fb with source height
[04:27:52] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[04:27:52] [PASSED] drm_test_framebuffer_cleanup
[04:27:52] =============== drm_test_framebuffer_create ===============
[04:27:52] [PASSED] ABGR8888 normal sizes
[04:27:52] [PASSED] ABGR8888 max sizes
[04:27:52] [PASSED] ABGR8888 pitch greater than min required
[04:27:52] [PASSED] ABGR8888 pitch less than min required
[04:27:52] [PASSED] ABGR8888 Invalid width
[04:27:52] [PASSED] ABGR8888 Invalid buffer handle
[04:27:52] [PASSED] No pixel format
[04:27:52] [PASSED] ABGR8888 Width 0
[04:27:52] [PASSED] ABGR8888 Height 0
[04:27:52] [PASSED] ABGR8888 Out of bound height * pitch combination
[04:27:52] [PASSED] ABGR8888 Large buffer offset
[04:27:52] [PASSED] ABGR8888 Buffer offset for inexistent plane
[04:27:52] [PASSED] ABGR8888 Invalid flag
[04:27:52] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[04:27:52] [PASSED] ABGR8888 Valid buffer modifier
[04:27:52] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[04:27:52] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[04:27:52] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[04:27:52] [PASSED] NV12 Normal sizes
[04:27:52] [PASSED] NV12 Max sizes
[04:27:52] [PASSED] NV12 Invalid pitch
[04:27:52] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[04:27:52] [PASSED] NV12 different modifier per-plane
[04:27:52] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[04:27:52] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[04:27:52] [PASSED] NV12 Modifier for inexistent plane
[04:27:52] [PASSED] NV12 Handle for inexistent plane
[04:27:52] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[04:27:52] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[04:27:52] [PASSED] YVU420 Normal sizes
[04:27:52] [PASSED] YVU420 Max sizes
[04:27:52] [PASSED] YVU420 Invalid pitch
[04:27:52] [PASSED] YVU420 Different pitches
[04:27:52] [PASSED] YVU420 Different buffer offsets/pitches
[04:27:52] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[04:27:52] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[04:27:52] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[04:27:52] [PASSED] YVU420 Valid modifier
[04:27:52] [PASSED] YVU420 Different modifiers per plane
[04:27:52] [PASSED] YVU420 Modifier for inexistent plane
[04:27:52] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[04:27:52] [PASSED] X0L2 Normal sizes
[04:27:52] [PASSED] X0L2 Max sizes
[04:27:52] [PASSED] X0L2 Invalid pitch
[04:27:52] [PASSED] X0L2 Pitch greater than minimum required
[04:27:52] [PASSED] X0L2 Handle for inexistent plane
[04:27:52] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[04:27:52] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[04:27:52] [PASSED] X0L2 Valid modifier
[04:27:52] [PASSED] X0L2 Modifier for inexistent plane
[04:27:52] =========== [PASSED] drm_test_framebuffer_create ===========
[04:27:52] [PASSED] drm_test_framebuffer_free
[04:27:52] [PASSED] drm_test_framebuffer_init
[04:27:52] [PASSED] drm_test_framebuffer_init_bad_format
[04:27:52] [PASSED] drm_test_framebuffer_init_dev_mismatch
[04:27:52] [PASSED] drm_test_framebuffer_lookup
[04:27:52] [PASSED] drm_test_framebuffer_lookup_inexistent
[04:27:52] [PASSED] drm_test_framebuffer_modifiers_not_supported
[04:27:52] ================= [PASSED] drm_framebuffer =================
[04:27:52] ================ drm_gem_shmem (8 subtests) ================
[04:27:52] [PASSED] drm_gem_shmem_test_obj_create
[04:27:52] [PASSED] drm_gem_shmem_test_obj_create_private
[04:27:52] [PASSED] drm_gem_shmem_test_pin_pages
[04:27:52] [PASSED] drm_gem_shmem_test_vmap
[04:27:52] [PASSED] drm_gem_shmem_test_get_pages_sgt
[04:27:52] [PASSED] drm_gem_shmem_test_get_sg_table
[04:27:52] [PASSED] drm_gem_shmem_test_madvise
[04:27:52] [PASSED] drm_gem_shmem_test_purge
[04:27:52] ================== [PASSED] drm_gem_shmem ==================
[04:27:52] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[04:27:52] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[04:27:52] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[04:27:52] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[04:27:52] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[04:27:52] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[04:27:52] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[04:27:52] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[04:27:52] [PASSED] Automatic
[04:27:52] [PASSED] Full
[04:27:52] [PASSED] Limited 16:235
[04:27:52] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[04:27:52] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[04:27:52] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[04:27:52] [PASSED] drm_test_check_disable_connector
[04:27:52] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[04:27:52] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[04:27:52] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[04:27:52] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[04:27:52] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[04:27:52] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[04:27:52] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[04:27:52] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[04:27:52] [PASSED] drm_test_check_output_bpc_dvi
[04:27:52] [PASSED] drm_test_check_output_bpc_format_vic_1
[04:27:52] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[04:27:52] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[04:27:52] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[04:27:52] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[04:27:52] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[04:27:52] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[04:27:52] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[04:27:52] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[04:27:52] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[04:27:52] [PASSED] drm_test_check_broadcast_rgb_value
[04:27:52] [PASSED] drm_test_check_bpc_8_value
[04:27:52] [PASSED] drm_test_check_bpc_10_value
[04:27:52] [PASSED] drm_test_check_bpc_12_value
[04:27:52] [PASSED] drm_test_check_format_value
[04:27:52] [PASSED] drm_test_check_tmds_char_value
[04:27:52] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[04:27:52] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[04:27:52] [PASSED] drm_test_check_mode_valid
[04:27:52] [PASSED] drm_test_check_mode_valid_reject
[04:27:52] [PASSED] drm_test_check_mode_valid_reject_rate
[04:27:52] [PASSED] drm_test_check_mode_valid_reject_max_clock
[04:27:52] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[04:27:52] ================= drm_managed (2 subtests) =================
[04:27:52] [PASSED] drm_test_managed_release_action
[04:27:52] [PASSED] drm_test_managed_run_action
[04:27:52] =================== [PASSED] drm_managed ===================
[04:27:52] =================== drm_mm (6 subtests) ====================
[04:27:52] [PASSED] drm_test_mm_init
[04:27:52] [PASSED] drm_test_mm_debug
[04:27:52] [PASSED] drm_test_mm_align32
[04:27:52] [PASSED] drm_test_mm_align64
[04:27:52] [PASSED] drm_test_mm_lowest
[04:27:52] [PASSED] drm_test_mm_highest
[04:27:52] ===================== [PASSED] drm_mm ======================
[04:27:52] ============= drm_modes_analog_tv (5 subtests) =============
[04:27:52] [PASSED] drm_test_modes_analog_tv_mono_576i
[04:27:52] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[04:27:52] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[04:27:52] [PASSED] drm_test_modes_analog_tv_pal_576i
[04:27:52] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[04:27:52] =============== [PASSED] drm_modes_analog_tv ===============
[04:27:52] ============== drm_plane_helper (2 subtests) ===============
[04:27:52] =============== drm_test_check_plane_state ================
[04:27:52] [PASSED] clipping_simple
[04:27:52] [PASSED] clipping_rotate_reflect
[04:27:52] [PASSED] positioning_simple
[04:27:52] [PASSED] upscaling
[04:27:52] [PASSED] downscaling
[04:27:52] [PASSED] rounding1
[04:27:52] [PASSED] rounding2
[04:27:52] [PASSED] rounding3
[04:27:52] [PASSED] rounding4
[04:27:52] =========== [PASSED] drm_test_check_plane_state ============
[04:27:52] =========== drm_test_check_invalid_plane_state ============
[04:27:52] [PASSED] positioning_invalid
[04:27:52] [PASSED] upscaling_invalid
[04:27:52] [PASSED] downscaling_invalid
[04:27:52] ======= [PASSED] drm_test_check_invalid_plane_state ========
[04:27:52] ================ [PASSED] drm_plane_helper =================
[04:27:52] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[04:27:52] ====== drm_test_connector_helper_tv_get_modes_check =======
[04:27:52] [PASSED] None
[04:27:52] [PASSED] PAL
[04:27:52] [PASSED] NTSC
[04:27:52] [PASSED] Both, NTSC Default
[04:27:52] [PASSED] Both, PAL Default
[04:27:52] [PASSED] Both, NTSC Default, with PAL on command-line
[04:27:52] [PASSED] Both, PAL Default, with NTSC on command-line
[04:27:52] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[04:27:52] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[04:27:52] ================== drm_rect (9 subtests) ===================
[04:27:52] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[04:27:52] [PASSED] drm_test_rect_clip_scaled_not_clipped
[04:27:52] [PASSED] drm_test_rect_clip_scaled_clipped
[04:27:52] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[04:27:52] ================= drm_test_rect_intersect =================
[04:27:52] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[04:27:52] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[04:27:52] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[04:27:52] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[04:27:52] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[04:27:52] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[04:27:52] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[04:27:52] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[04:27:52] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[04:27:52] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[04:27:52] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[04:27:52] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[04:27:52] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[04:27:52] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[04:27:52] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[04:27:52] ============= [PASSED] drm_test_rect_intersect =============
[04:27:52] ================ drm_test_rect_calc_hscale ================
[04:27:52] [PASSED] normal use
[04:27:52] [PASSED] out of max range
[04:27:52] [PASSED] out of min range
[04:27:52] [PASSED] zero dst
[04:27:52] [PASSED] negative src
[04:27:52] [PASSED] negative dst
[04:27:52] ============ [PASSED] drm_test_rect_calc_hscale ============
[04:27:52] ================ drm_test_rect_calc_vscale ================
[04:27:52] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[04:27:52] [PASSED] out of max range
[04:27:52] [PASSED] out of min range
[04:27:52] [PASSED] zero dst
[04:27:52] [PASSED] negative src
[04:27:52] [PASSED] negative dst
[04:27:52] ============ [PASSED] drm_test_rect_calc_vscale ============
[04:27:52] ================== drm_test_rect_rotate ===================
[04:27:52] [PASSED] reflect-x
[04:27:52] [PASSED] reflect-y
[04:27:52] [PASSED] rotate-0
[04:27:52] [PASSED] rotate-90
[04:27:52] [PASSED] rotate-180
[04:27:52] [PASSED] rotate-270
[04:27:52] ============== [PASSED] drm_test_rect_rotate ===============
[04:27:52] ================ drm_test_rect_rotate_inv =================
[04:27:52] [PASSED] reflect-x
[04:27:52] [PASSED] reflect-y
[04:27:52] [PASSED] rotate-0
[04:27:52] [PASSED] rotate-90
[04:27:52] [PASSED] rotate-180
[04:27:52] [PASSED] rotate-270
[04:27:52] ============ [PASSED] drm_test_rect_rotate_inv =============
[04:27:52] ==================== [PASSED] drm_rect =====================
[04:27:52] ============ drm_sysfb_modeset_test (1 subtest) ============
[04:27:52] ============ drm_test_sysfb_build_fourcc_list =============
[04:27:52] [PASSED] no native formats
[04:27:52] [PASSED] XRGB8888 as native format
[04:27:52] [PASSED] remove duplicates
[04:27:52] [PASSED] convert alpha formats
[04:27:52] [PASSED] random formats
[04:27:52] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[04:27:52] ============= [PASSED] drm_sysfb_modeset_test ==============
[04:27:52] ================== drm_fixp (2 subtests) ===================
[04:27:52] [PASSED] drm_test_int2fixp
[04:27:52] [PASSED] drm_test_sm2fixp
[04:27:52] ==================== [PASSED] drm_fixp =====================
[04:27:52] ============================================================
[04:27:52] Testing complete. Ran 624 tests: passed: 624
[04:27:52] Elapsed time: 27.657s total, 1.743s configuring, 25.494s building, 0.404s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[04:27:52] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[04:27:53] 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
[04:28:03] Starting KUnit Kernel (1/1)...
[04:28:03] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[04:28:03] ================= ttm_device (5 subtests) ==================
[04:28:03] [PASSED] ttm_device_init_basic
[04:28:03] [PASSED] ttm_device_init_multiple
[04:28:03] [PASSED] ttm_device_fini_basic
[04:28:03] [PASSED] ttm_device_init_no_vma_man
[04:28:03] ================== ttm_device_init_pools ==================
[04:28:03] [PASSED] No DMA allocations, no DMA32 required
[04:28:03] [PASSED] DMA allocations, DMA32 required
[04:28:03] [PASSED] No DMA allocations, DMA32 required
[04:28:03] [PASSED] DMA allocations, no DMA32 required
[04:28:03] ============== [PASSED] ttm_device_init_pools ==============
[04:28:03] =================== [PASSED] ttm_device ====================
[04:28:03] ================== ttm_pool (8 subtests) ===================
[04:28:03] ================== ttm_pool_alloc_basic ===================
[04:28:03] [PASSED] One page
[04:28:03] [PASSED] More than one page
[04:28:03] [PASSED] Above the allocation limit
[04:28:03] [PASSED] One page, with coherent DMA mappings enabled
[04:28:03] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[04:28:03] ============== [PASSED] ttm_pool_alloc_basic ===============
[04:28:03] ============== ttm_pool_alloc_basic_dma_addr ==============
[04:28:03] [PASSED] One page
[04:28:03] [PASSED] More than one page
[04:28:03] [PASSED] Above the allocation limit
[04:28:03] [PASSED] One page, with coherent DMA mappings enabled
[04:28:03] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[04:28:03] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[04:28:03] [PASSED] ttm_pool_alloc_order_caching_match
[04:28:03] [PASSED] ttm_pool_alloc_caching_mismatch
[04:28:03] [PASSED] ttm_pool_alloc_order_mismatch
[04:28:03] [PASSED] ttm_pool_free_dma_alloc
[04:28:03] [PASSED] ttm_pool_free_no_dma_alloc
[04:28:03] [PASSED] ttm_pool_fini_basic
[04:28:03] ==================== [PASSED] ttm_pool =====================
[04:28:03] ================ ttm_resource (8 subtests) =================
[04:28:03] ================= ttm_resource_init_basic =================
[04:28:03] [PASSED] Init resource in TTM_PL_SYSTEM
[04:28:03] [PASSED] Init resource in TTM_PL_VRAM
[04:28:03] [PASSED] Init resource in a private placement
[04:28:03] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[04:28:03] ============= [PASSED] ttm_resource_init_basic =============
[04:28:03] [PASSED] ttm_resource_init_pinned
[04:28:03] [PASSED] ttm_resource_fini_basic
[04:28:03] [PASSED] ttm_resource_manager_init_basic
[04:28:03] [PASSED] ttm_resource_manager_usage_basic
[04:28:03] [PASSED] ttm_resource_manager_set_used_basic
[04:28:03] [PASSED] ttm_sys_man_alloc_basic
[04:28:03] [PASSED] ttm_sys_man_free_basic
[04:28:03] ================== [PASSED] ttm_resource ===================
[04:28:03] =================== ttm_tt (15 subtests) ===================
[04:28:03] ==================== ttm_tt_init_basic ====================
[04:28:03] [PASSED] Page-aligned size
[04:28:03] [PASSED] Extra pages requested
[04:28:03] ================ [PASSED] ttm_tt_init_basic ================
[04:28:03] [PASSED] ttm_tt_init_misaligned
[04:28:03] [PASSED] ttm_tt_fini_basic
[04:28:03] [PASSED] ttm_tt_fini_sg
[04:28:03] [PASSED] ttm_tt_fini_shmem
[04:28:03] [PASSED] ttm_tt_create_basic
[04:28:03] [PASSED] ttm_tt_create_invalid_bo_type
[04:28:03] [PASSED] ttm_tt_create_ttm_exists
[04:28:03] [PASSED] ttm_tt_create_failed
[04:28:03] [PASSED] ttm_tt_destroy_basic
[04:28:03] [PASSED] ttm_tt_populate_null_ttm
[04:28:03] [PASSED] ttm_tt_populate_populated_ttm
[04:28:03] [PASSED] ttm_tt_unpopulate_basic
[04:28:03] [PASSED] ttm_tt_unpopulate_empty_ttm
[04:28:03] [PASSED] ttm_tt_swapin_basic
[04:28:03] ===================== [PASSED] ttm_tt ======================
[04:28:03] =================== ttm_bo (14 subtests) ===================
[04:28:03] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[04:28:03] [PASSED] Cannot be interrupted and sleeps
[04:28:03] [PASSED] Cannot be interrupted, locks straight away
[04:28:03] [PASSED] Can be interrupted, sleeps
[04:28:03] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[04:28:03] [PASSED] ttm_bo_reserve_locked_no_sleep
[04:28:03] [PASSED] ttm_bo_reserve_no_wait_ticket
[04:28:03] [PASSED] ttm_bo_reserve_double_resv
[04:28:03] [PASSED] ttm_bo_reserve_interrupted
[04:28:03] [PASSED] ttm_bo_reserve_deadlock
[04:28:03] [PASSED] ttm_bo_unreserve_basic
[04:28:03] [PASSED] ttm_bo_unreserve_pinned
[04:28:03] [PASSED] ttm_bo_unreserve_bulk
[04:28:03] [PASSED] ttm_bo_fini_basic
[04:28:03] [PASSED] ttm_bo_fini_shared_resv
[04:28:03] [PASSED] ttm_bo_pin_basic
[04:28:03] [PASSED] ttm_bo_pin_unpin_resource
[04:28:03] [PASSED] ttm_bo_multiple_pin_one_unpin
[04:28:03] ===================== [PASSED] ttm_bo ======================
[04:28:03] ============== ttm_bo_validate (21 subtests) ===============
[04:28:03] ============== ttm_bo_init_reserved_sys_man ===============
[04:28:03] [PASSED] Buffer object for userspace
[04:28:03] [PASSED] Kernel buffer object
[04:28:03] [PASSED] Shared buffer object
[04:28:03] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[04:28:03] ============== ttm_bo_init_reserved_mock_man ==============
[04:28:03] [PASSED] Buffer object for userspace
[04:28:03] [PASSED] Kernel buffer object
[04:28:03] [PASSED] Shared buffer object
[04:28:03] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[04:28:03] [PASSED] ttm_bo_init_reserved_resv
[04:28:03] ================== ttm_bo_validate_basic ==================
[04:28:03] [PASSED] Buffer object for userspace
[04:28:03] [PASSED] Kernel buffer object
[04:28:03] [PASSED] Shared buffer object
[04:28:03] ============== [PASSED] ttm_bo_validate_basic ==============
[04:28:03] [PASSED] ttm_bo_validate_invalid_placement
[04:28:03] ============= ttm_bo_validate_same_placement ==============
[04:28:03] [PASSED] System manager
[04:28:03] [PASSED] VRAM manager
[04:28:03] ========= [PASSED] ttm_bo_validate_same_placement ==========
[04:28:03] [PASSED] ttm_bo_validate_failed_alloc
[04:28:03] [PASSED] ttm_bo_validate_pinned
[04:28:03] [PASSED] ttm_bo_validate_busy_placement
[04:28:03] ================ ttm_bo_validate_multihop =================
[04:28:03] [PASSED] Buffer object for userspace
[04:28:03] [PASSED] Kernel buffer object
[04:28:03] [PASSED] Shared buffer object
[04:28:03] ============ [PASSED] ttm_bo_validate_multihop =============
[04:28:03] ========== ttm_bo_validate_no_placement_signaled ==========
[04:28:03] [PASSED] Buffer object in system domain, no page vector
[04:28:03] [PASSED] Buffer object in system domain with an existing page vector
[04:28:03] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[04:28:03] ======== ttm_bo_validate_no_placement_not_signaled ========
[04:28:03] [PASSED] Buffer object for userspace
[04:28:03] [PASSED] Kernel buffer object
[04:28:03] [PASSED] Shared buffer object
[04:28:03] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[04:28:03] [PASSED] ttm_bo_validate_move_fence_signaled
[04:28:03] ========= ttm_bo_validate_move_fence_not_signaled =========
[04:28:03] [PASSED] Waits for GPU
[04:28:03] [PASSED] Tries to lock straight away
[04:28:03] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[04:28:03] [PASSED] ttm_bo_validate_happy_evict
[04:28:03] [PASSED] ttm_bo_validate_all_pinned_evict
[04:28:03] [PASSED] ttm_bo_validate_allowed_only_evict
[04:28:03] [PASSED] ttm_bo_validate_deleted_evict
[04:28:03] [PASSED] ttm_bo_validate_busy_domain_evict
[04:28:03] [PASSED] ttm_bo_validate_evict_gutting
[04:28:03] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[04:28:03] ================= [PASSED] ttm_bo_validate =================
[04:28:03] ============================================================
[04:28:03] Testing complete. Ran 101 tests: passed: 101
[04:28:03] Elapsed time: 11.148s total, 1.621s configuring, 9.311s building, 0.185s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe/cri: Enable I2C controller (rev3)
2025-11-28 8:44 [PATCH v1] drm/xe/cri: Enable I2C controller Raag Jadav
` (6 preceding siblings ...)
2025-12-05 4:28 ` ✓ CI.KUnit: success for drm/xe/cri: Enable I2C controller (rev3) Patchwork
@ 2025-12-05 5:12 ` Patchwork
2025-12-05 5:47 ` ✓ Xe.CI.Full: " Patchwork
8 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2025-12-05 5:12 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1407 bytes --]
== Series Details ==
Series: drm/xe/cri: Enable I2C controller (rev3)
URL : https://patchwork.freedesktop.org/series/158198/
State : success
== Summary ==
CI Bug Log - changes from xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d_BAT -> xe-pw-158198v3_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-158198v3_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_waitfence@abstime:
- bat-dg2-oem2: [PASS][1] -> [TIMEOUT][2] ([Intel XE#6506])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506
Build changes
-------------
* Linux: xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d -> xe-pw-158198v3
IGT_8655: 8655
xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d: b91a982bdeb8b2c13917d3726c86cfa57ff3202d
xe-pw-158198v3: 158198v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/index.html
[-- Attachment #2: Type: text/html, Size: 1972 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v1] drm/xe/cri: Enable I2C controller
2025-12-04 20:22 ` Rodrigo Vivi
@ 2025-12-05 5:41 ` Raag Jadav
2025-12-12 3:42 ` Raag Jadav
0 siblings, 1 reply; 15+ messages in thread
From: Raag Jadav @ 2025-12-05 5:41 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: intel-xe, heikki.krogerus, andi.shyti
On Thu, Dec 04, 2025 at 03:22:31PM -0500, Rodrigo Vivi wrote:
> On Thu, Dec 04, 2025 at 12:42:28PM +0100, Raag Jadav wrote:
> > On Mon, Dec 01, 2025 at 03:27:07PM -0500, Rodrigo Vivi wrote:
> > > On Fri, Nov 28, 2025 at 02:14:14PM +0530, Raag Jadav wrote:
> > > > Enable I2C controller for Crescent Island and while at it, rely on
> > > > has_i2c flag instead of manual platform checks.
> > > >
> > > > Signed-off-by: Raag Jadav <raag.jadav@intel.com>
> > >
> > > Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> >
> > Anything else I can do here?
>
> Have you inspected the CI failures?
I triggered a new run. Hope this helps.
Raag
^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ Xe.CI.Full: success for drm/xe/cri: Enable I2C controller (rev3)
2025-11-28 8:44 [PATCH v1] drm/xe/cri: Enable I2C controller Raag Jadav
` (7 preceding siblings ...)
2025-12-05 5:12 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-12-05 5:47 ` Patchwork
8 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2025-12-05 5:47 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 42805 bytes --]
== Series Details ==
Series: drm/xe/cri: Enable I2C controller (rev3)
URL : https://patchwork.freedesktop.org/series/158198/
State : success
== Summary ==
CI Bug Log - changes from xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d_FULL -> xe-pw-158198v3_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d_FULL and xe-pw-158198v3_FULL:
### New IGT tests (37) ###
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [2.12] s
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [2.20] s
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [2.04] s
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2:
- Statuses : 1 fail(s)
- Exec time: [2.16] s
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [2.04] s
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [2.20] s
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [2.04] s
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@crc-atomic@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [2.96] s
* igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [2.23] s
* igt@kms_async_flips@crc-atomic@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [2.98] s
* igt@kms_async_flips@crc-atomic@pipe-b-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [2.14] s
* igt@kms_async_flips@crc-atomic@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [2.92] s
* igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [2.14] s
* igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [2.14] s
* igt@kms_async_flips@invalid-async-flip-atomic@pipe-a-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.24] s
* igt@kms_async_flips@invalid-async-flip-atomic@pipe-b-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.09] s
* igt@kms_async_flips@invalid-async-flip-atomic@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.09] s
* igt@kms_async_flips@invalid-async-flip-atomic@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.10] s
* igt@kms_async_flips@test-time-stamp-atomic@pipe-a-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.20] s
* igt@kms_async_flips@test-time-stamp-atomic@pipe-b-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.10] s
* igt@kms_async_flips@test-time-stamp-atomic@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.09] s
* igt@kms_async_flips@test-time-stamp-atomic@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.09] s
* igt@kms_pm_rpm@legacy-planes-dpms@plane-123:
- Statuses : 4 pass(s)
- Exec time: [2.59, 12.83] s
* igt@kms_pm_rpm@legacy-planes-dpms@plane-133:
- Statuses : 4 pass(s)
- Exec time: [2.61, 12.83] s
* igt@kms_pm_rpm@legacy-planes@plane-123:
- Statuses : 2 pass(s)
- Exec time: [7.86, 12.72] s
* igt@kms_pm_rpm@legacy-planes@plane-133:
- Statuses : 2 pass(s)
- Exec time: [10.07, 12.72] s
* igt@kms_pm_rpm@universal-planes-dpms@plane-123:
- Statuses : 4 pass(s)
- Exec time: [2.63, 12.84] s
* igt@kms_pm_rpm@universal-planes-dpms@plane-133:
- Statuses : 4 pass(s)
- Exec time: [2.60, 12.85] s
* igt@kms_pm_rpm@universal-planes-dpms@plane-143:
- Statuses : 4 pass(s)
- Exec time: [2.60, 12.82] s
* igt@kms_pm_rpm@universal-planes@plane-123:
- Statuses : 4 pass(s)
- Exec time: [2.63, 12.03] s
* igt@kms_pm_rpm@universal-planes@plane-133:
- Statuses : 4 pass(s)
- Exec time: [2.60, 12.12] s
* igt@kms_pm_rpm@universal-planes@plane-143:
- Statuses : 4 pass(s)
- Exec time: [2.59, 12.01] s
Known issues
------------
Here are the changes found in xe-pw-158198v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [PASS][1] -> [FAIL][2] ([Intel XE#3718] / [Intel XE#6078])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2 (NEW):
- shard-bmg: [PASS][3] -> [FAIL][4] ([Intel XE#6078])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-adlp: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][6] ([Intel XE#316])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@kms_big_fb@linear-8bpp-rotate-90.html
- shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#316])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-463/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-463/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-adlp: NOTRUN -> [FAIL][9] ([Intel XE#1231])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-adlp: NOTRUN -> [SKIP][10] ([Intel XE#2191])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#367])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-464/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-adlp: NOTRUN -> [SKIP][12] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-463/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#787]) +27 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-435/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][15] ([Intel XE#3862])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-c-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][16] ([Intel XE#787]) +14 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling:
- shard-adlp: NOTRUN -> [SKIP][17] ([Intel XE#4416] / [Intel XE#455])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][18] ([Intel XE#4416]) +2 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-1.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#373]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-435/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-adlp: NOTRUN -> [SKIP][20] ([Intel XE#306]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@kms_chamelium_color@ctm-red-to-blue.html
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#306]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-463/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-adlp: NOTRUN -> [SKIP][22] ([Intel XE#373]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-adlp: NOTRUN -> [SKIP][23] ([Intel XE#6507])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@kms_chamelium_sharpness_filter@filter-basic.html
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#6507])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-463/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_colorop@plane-xr30-xr30-multiply_inv_125:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#6704]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-435/igt@kms_colorop@plane-xr30-xr30-multiply_inv_125.html
* igt@kms_colorop@plane-xr30-xr30-pq_eotf:
- shard-adlp: NOTRUN -> [SKIP][26] ([Intel XE#6704]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@kms_colorop@plane-xr30-xr30-pq_eotf.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: NOTRUN -> [FAIL][27] ([Intel XE#1178]) +1 other test fail
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-464/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: NOTRUN -> [FAIL][28] ([Intel XE#6707]) +1 other test fail
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-435/igt@kms_content_protection@uevent.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-adlp: NOTRUN -> [SKIP][29] ([Intel XE#309]) +4 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#323])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-adlp: NOTRUN -> [SKIP][31] ([Intel XE#323])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-adlp: NOTRUN -> [SKIP][32] ([Intel XE#4422])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-4/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-adlp: NOTRUN -> [SKIP][33] ([Intel XE#776])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@kms_fbcon_fbt@psr.html
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#776])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-463/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-adlp: NOTRUN -> [SKIP][35] ([Intel XE#310])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-4/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#651]) +8 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-adlp: NOTRUN -> [SKIP][37] ([Intel XE#651]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-adlp: NOTRUN -> [SKIP][38] ([Intel XE#656]) +15 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#6312]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#653]) +11 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-adlp: NOTRUN -> [SKIP][41] ([Intel XE#653]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-adlp: NOTRUN -> [SKIP][42] ([Intel XE#6312]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1:
- shard-lnl: [PASS][43] -> [ABORT][44] ([Intel XE#6675]) +2 other tests abort
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-adlp: NOTRUN -> [ABORT][45] ([Intel XE#6675]) +2 other tests abort
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-4/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-lnl: NOTRUN -> [INCOMPLETE][46] ([Intel XE#1035])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#5020])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-435/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-adlp: NOTRUN -> [SKIP][48] ([Intel XE#455]) +11 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-adlp: NOTRUN -> [SKIP][49] ([Intel XE#836])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-adlp: NOTRUN -> [SKIP][50] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +4 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-suspend:
- shard-adlp: NOTRUN -> [SKIP][53] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-4/igt@kms_psr@fbc-psr2-suspend.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: NOTRUN -> [FAIL][54] ([Intel XE#1729])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tv_load_detect@load-detect:
- shard-adlp: NOTRUN -> [SKIP][55] ([Intel XE#330])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#455]) +10 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-463/igt@kms_vrr@flipline.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#1091] / [Intel XE#2849])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-463/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-vram01-vram01:
- shard-dg2-set2: [PASS][58] -> [ABORT][59] ([Intel XE#6675])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-dg2-434/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-vram01-vram01.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-434/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-vram01-vram01.html
* igt@xe_compute_preempt@compute-preempt-many-all-ram:
- shard-adlp: NOTRUN -> [SKIP][60] ([Intel XE#6360])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-4/igt@xe_compute_preempt@compute-preempt-many-all-ram.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-adlp: NOTRUN -> [SKIP][61] ([Intel XE#1123])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@xe_copy_basic@mem-copy-linear-0x369.html
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#1123])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_copy_basic@mem-page-copy-17:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#5300])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-435/igt@xe_copy_basic@mem-page-copy-17.html
* igt@xe_eudebug@basic-vm-access-parameters:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#4837]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-435/igt@xe_eudebug@basic-vm-access-parameters.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-adlp: NOTRUN -> [SKIP][65] ([Intel XE#4837] / [Intel XE#5565]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug_online@interrupt-all-set-breakpoint:
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-463/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
- shard-adlp: NOTRUN -> [SKIP][67] ([Intel XE#4837] / [Intel XE#5565] / [Intel XE#6665])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
* igt@xe_evict@evict-beng-large-external-cm:
- shard-adlp: NOTRUN -> [SKIP][68] ([Intel XE#261] / [Intel XE#5564])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@xe_evict@evict-beng-large-external-cm.html
* igt@xe_evict@evict-beng-threads-large:
- shard-adlp: NOTRUN -> [SKIP][69] ([Intel XE#261]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_evict@evict-small-multi-vm:
- shard-adlp: NOTRUN -> [SKIP][70] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@xe_evict@evict-small-multi-vm.html
* igt@xe_exec_basic@multigpu-no-exec-null-rebind:
- shard-adlp: NOTRUN -> [SKIP][71] ([Intel XE#1392] / [Intel XE#5575]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-4/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html
* igt@xe_exec_fault_mode@many-bindexecqueue-imm:
- shard-adlp: NOTRUN -> [SKIP][72] ([Intel XE#288] / [Intel XE#5561]) +7 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@xe_exec_fault_mode@many-bindexecqueue-imm.html
* igt@xe_exec_fault_mode@once-invalid-userptr-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#288]) +8 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-435/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
* igt@xe_exec_system_allocator@many-large-execqueues-malloc-mlock:
- shard-adlp: NOTRUN -> [SKIP][74] ([Intel XE#4915]) +108 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@xe_exec_system_allocator@many-large-execqueues-malloc-mlock.html
* igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck:
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#4915]) +129 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-463/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-adlp: NOTRUN -> [SKIP][76] ([Intel XE#2229] / [Intel XE#5488])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_oa@invalid-oa-metric-set-id:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#3573]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-435/igt@xe_oa@invalid-oa-metric-set-id.html
* igt@xe_oa@non-sampling-read-error:
- shard-adlp: NOTRUN -> [SKIP][78] ([Intel XE#3573]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@xe_oa@non-sampling-read-error.html
* igt@xe_oa@tail-address-wrap:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#6032])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-435/igt@xe_oa@tail-address-wrap.html
* igt@xe_pm@s2idle-exec-after:
- shard-dg2-set2: NOTRUN -> [ABORT][80] ([Intel XE#6675]) +5 other tests abort
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-435/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s3-multiple-execs:
- shard-bmg: [PASS][81] -> [ABORT][82] ([Intel XE#6675])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-bmg-1/igt@xe_pm@s3-multiple-execs.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-bmg-5/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s4-basic-exec:
- shard-adlp: [PASS][83] -> [ABORT][84] ([Intel XE#6675]) +1 other test abort
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-adlp-3/igt@xe_pm@s4-basic-exec.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-9/igt@xe_pm@s4-basic-exec.html
* igt@xe_pmu@engine-activity-accuracy-50:
- shard-lnl: [PASS][85] -> [FAIL][86] ([Intel XE#6251]) +2 other tests fail
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-8/igt@xe_pmu@engine-activity-accuracy-50.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-4/igt@xe_pmu@engine-activity-accuracy-50.html
* igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy:
- shard-adlp: NOTRUN -> [SKIP][87] ([Intel XE#4733] / [Intel XE#5594])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy.html
* igt@xe_query@multigpu-query-gt-list:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#944])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-435/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_render_copy@render-stress-2-copies:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#4814])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-435/igt@xe_render_copy@render-stress-2-copies.html
* igt@xe_sriov_vram@vf-access-provisioned:
- shard-adlp: NOTRUN -> [SKIP][90] ([Intel XE#6376])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-3/igt@xe_sriov_vram@vf-access-provisioned.html
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#6318])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-463/igt@xe_sriov_vram@vf-access-provisioned.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
- shard-bmg: [SKIP][92] ([Intel XE#367]) -> [PASS][93]
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-bmg-6/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-bmg-2/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-edp-1:
- shard-lnl: [ABORT][94] ([Intel XE#6675]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-edp-1.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-edp-1.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2-set2: [ABORT][96] ([Intel XE#6675]) -> [PASS][97] +2 other tests pass
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-dg2-433/igt@kms_pm_rpm@system-suspend-idle.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-dg2-432/igt@kms_pm_rpm@system-suspend-idle.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
- shard-lnl: [FAIL][98] ([Intel XE#5625]) -> [PASS][99]
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [SKIP][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125]) ([Intel XE#378]) -> ([PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-5/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-4/igt@xe_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-5/igt@xe_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-4/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-5/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-5/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-2/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-1/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-8/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-3/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-4/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-2/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-1/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-1/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-5/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-2/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-2/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-8/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-8/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-8/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-3/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-4/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-4/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-1/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-3/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-lnl-3/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-2/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-2/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-8/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-2/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-5/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-8/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-8/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-8/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-1/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-1/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-1/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-4/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-4/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-4/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-3/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-3/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-1/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-3/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-4/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-3/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-5/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-5/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-5/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-2/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-lnl-2/igt@xe_module_load@load.html
* igt@xe_pm_residency@cpg-basic:
- shard-adlp: [ABORT][151] ([Intel XE#6675]) -> [PASS][152] +4 other tests pass
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d/shard-adlp-9/igt@xe_pm_residency@cpg-basic.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/shard-adlp-4/igt@xe_pm_residency@cpg-basic.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[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#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5488
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#6032]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6032
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6318
[Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
[Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
[Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6675]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6675
[Intel XE#6704]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6704
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6775]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6775
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#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-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d -> xe-pw-158198v3
IGT_8655: 8655
xe-4195-b91a982bdeb8b2c13917d3726c86cfa57ff3202d: b91a982bdeb8b2c13917d3726c86cfa57ff3202d
xe-pw-158198v3: 158198v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158198v3/index.html
[-- Attachment #2: Type: text/html, Size: 50257 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v1] drm/xe/cri: Enable I2C controller
2025-12-05 5:41 ` Raag Jadav
@ 2025-12-12 3:42 ` Raag Jadav
2025-12-12 16:52 ` Matt Roper
0 siblings, 1 reply; 15+ messages in thread
From: Raag Jadav @ 2025-12-12 3:42 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: intel-xe, heikki.krogerus, andi.shyti
On Fri, Dec 05, 2025 at 06:41:47AM +0100, Raag Jadav wrote:
> On Thu, Dec 04, 2025 at 03:22:31PM -0500, Rodrigo Vivi wrote:
> > On Thu, Dec 04, 2025 at 12:42:28PM +0100, Raag Jadav wrote:
> > > On Mon, Dec 01, 2025 at 03:27:07PM -0500, Rodrigo Vivi wrote:
> > > > On Fri, Nov 28, 2025 at 02:14:14PM +0530, Raag Jadav wrote:
> > > > > Enable I2C controller for Crescent Island and while at it, rely on
> > > > > has_i2c flag instead of manual platform checks.
> > > > >
> > > > > Signed-off-by: Raag Jadav <raag.jadav@intel.com>
> > > >
> > > > Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> > >
> > > Anything else I can do here?
> >
> > Have you inspected the CI failures?
>
> I triggered a new run. Hope this helps.
Ping.
Raag
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v1] drm/xe/cri: Enable I2C controller
2025-12-12 3:42 ` Raag Jadav
@ 2025-12-12 16:52 ` Matt Roper
0 siblings, 0 replies; 15+ messages in thread
From: Matt Roper @ 2025-12-12 16:52 UTC (permalink / raw)
To: Raag Jadav; +Cc: Rodrigo Vivi, intel-xe, heikki.krogerus, andi.shyti
On Fri, Dec 12, 2025 at 04:42:57AM +0100, Raag Jadav wrote:
> On Fri, Dec 05, 2025 at 06:41:47AM +0100, Raag Jadav wrote:
> > On Thu, Dec 04, 2025 at 03:22:31PM -0500, Rodrigo Vivi wrote:
> > > On Thu, Dec 04, 2025 at 12:42:28PM +0100, Raag Jadav wrote:
> > > > On Mon, Dec 01, 2025 at 03:27:07PM -0500, Rodrigo Vivi wrote:
> > > > > On Fri, Nov 28, 2025 at 02:14:14PM +0530, Raag Jadav wrote:
> > > > > > Enable I2C controller for Crescent Island and while at it, rely on
> > > > > > has_i2c flag instead of manual platform checks.
> > > > > >
> > > > > > Signed-off-by: Raag Jadav <raag.jadav@intel.com>
> > > > >
> > > > > Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> > > >
> > > > Anything else I can do here?
> > >
> > > Have you inspected the CI failures?
> >
> > I triggered a new run. Hope this helps.
>
> Ping.
Applied to drm-xe-next. Thanks for the patch and reviews.
Matt
>
> Raag
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2025-12-12 16:52 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-28 8:44 [PATCH v1] drm/xe/cri: Enable I2C controller Raag Jadav
2025-11-28 8:52 ` ✓ CI.KUnit: success for " Patchwork
2025-12-01 20:27 ` [PATCH v1] " Rodrigo Vivi
2025-12-04 11:42 ` Raag Jadav
2025-12-04 20:22 ` Rodrigo Vivi
2025-12-05 5:41 ` Raag Jadav
2025-12-12 3:42 ` Raag Jadav
2025-12-12 16:52 ` Matt Roper
2025-12-01 20:27 ` ✓ CI.KUnit: success for drm/xe/cri: Enable I2C controller (rev2) Patchwork
2025-12-01 21:33 ` ✗ Xe.CI.BAT: failure " Patchwork
2025-12-02 0:05 ` ✗ Xe.CI.Full: " Patchwork
2025-12-04 13:25 ` [PATCH v1] drm/xe/cri: Enable I2C controller Heikki Krogerus
2025-12-05 4:28 ` ✓ CI.KUnit: success for drm/xe/cri: Enable I2C controller (rev3) Patchwork
2025-12-05 5:12 ` ✓ Xe.CI.BAT: " Patchwork
2025-12-05 5:47 ` ✓ Xe.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox