* [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise
@ 2026-01-29 0:01 Jia Yao
2026-01-29 0:09 ` ✓ CI.KUnit: success for " Patchwork
` (27 more replies)
0 siblings, 28 replies; 48+ messages in thread
From: Jia Yao @ 2026-01-29 0:01 UTC (permalink / raw)
To: intel-xe; +Cc: Jia Yao
Add validation in xe_vm_madvise_ioctl() to reject PAT indices with
XE_COH_NONE coherency mode when applied to CPU cached memory.
Using coh_none with CPU cached buffers is a security issue. When the
kernel clears pages before reallocation, the clear operation stays in
CPU cache (dirty). GPU with coh_none can bypass CPU caches and read
stale sensitive data directly from DRAM, potentially leaking data from
previously freed pages of other processes.
This aligns with the existing validation in vm_bind path
(xe_vm_bind_ioctl_validate_bo).
Signed-off-by: Jia Yao <jia.yao@intel.com>
---
drivers/gpu/drm/xe/xe_vm_madvise.c | 47 ++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c b/drivers/gpu/drm/xe/xe_vm_madvise.c
index add9a6ca2390..3fbaf7d1d662 100644
--- a/drivers/gpu/drm/xe/xe_vm_madvise.c
+++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
@@ -352,6 +352,44 @@ static void xe_madvise_details_fini(struct xe_madvise_details *details)
drm_pagemap_put(details->dpagemap);
}
+static bool check_pat_args_are_sane(struct xe_device *xe,
+ struct xe_vmas_in_madvise_range *madvise_range,
+ u16 pat_index)
+{
+ u16 coh_mode = xe_pat_index_get_coh_mode(xe, pat_index);
+ int i;
+
+ /*
+ * Using coh_none with CPU cached buffers is not allowed.
+ * Otherwise CPU page clearing can be bypassed, which is a
+ * security issue. GPU can directly access system memory and
+ * bypass CPU caches, potentially reading stale sensitive data
+ * from previously freed pages.
+ */
+ if (coh_mode != XE_COH_NONE)
+ return true;
+
+ for (i = 0; i < madvise_range->num_vmas; i++) {
+ struct xe_vma *vma = madvise_range->vmas[i];
+ struct xe_bo *bo = xe_vma_bo(vma);
+
+ if (bo) {
+ /* BO with WB caching + COH_NONE is not allowed */
+ if (XE_IOCTL_DBG(xe, bo->cpu_caching == DRM_XE_GEM_CPU_CACHING_WB))
+ return false;
+ /* Imported dma-buf without caching info, assume cached */
+ if (XE_IOCTL_DBG(xe, !bo->cpu_caching))
+ return false;
+ } else if (xe_vma_is_cpu_addr_mirror(vma) || xe_vma_is_userptr(vma)) {
+ /* System memory (userptr/SVM) is always CPU cached */
+ if (XE_IOCTL_DBG(xe, true))
+ return false;
+ }
+ }
+
+ return true;
+}
+
static bool check_bo_args_are_sane(struct xe_vm *vm, struct xe_vma **vmas,
int num_vmas, u32 atomic_val)
{
@@ -442,6 +480,14 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void *data, struct drm_file *fil
if (err || !madvise_range.num_vmas)
goto madv_fini;
+ if (args->type == DRM_XE_MEM_RANGE_ATTR_PAT) {
+ if (!check_pat_args_are_sane(xe, &madvise_range,
+ args->pat_index.val)) {
+ err = -EINVAL;
+ goto free_vmas;
+ }
+ }
+
if (madvise_range.has_bo_vmas) {
if (args->type == DRM_XE_MEM_RANGE_ATTR_ATOMIC) {
if (!check_bo_args_are_sane(vm, madvise_range.vmas,
@@ -485,6 +531,7 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void *data, struct drm_file *fil
err_fini:
if (madvise_range.has_bo_vmas)
drm_exec_fini(&exec);
+free_vmas:
kfree(madvise_range.vmas);
madvise_range.vmas = NULL;
madv_fini:
--
2.43.0
^ permalink raw reply related [flat|nested] 48+ messages in thread
* ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
@ 2026-01-29 0:09 ` Patchwork
2026-01-29 0:49 ` ✓ Xe.CI.BAT: " Patchwork
` (26 subsequent siblings)
27 siblings, 0 replies; 48+ messages in thread
From: Patchwork @ 2026-01-29 0:09 UTC (permalink / raw)
To: Jia Yao; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Reject coh_none PAT index for CPU cached memory in madvise
URL : https://patchwork.freedesktop.org/series/160797/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[00:08:08] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[00:08:13] 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
[00:08:44] Starting KUnit Kernel (1/1)...
[00:08:44] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[00:08:45] ================== guc_buf (11 subtests) ===================
[00:08:45] [PASSED] test_smallest
[00:08:45] [PASSED] test_largest
[00:08:45] [PASSED] test_granular
[00:08:45] [PASSED] test_unique
[00:08:45] [PASSED] test_overlap
[00:08:45] [PASSED] test_reusable
[00:08:45] [PASSED] test_too_big
[00:08:45] [PASSED] test_flush
[00:08:45] [PASSED] test_lookup
[00:08:45] [PASSED] test_data
[00:08:45] [PASSED] test_class
[00:08:45] ===================== [PASSED] guc_buf =====================
[00:08:45] =================== guc_dbm (7 subtests) ===================
[00:08:45] [PASSED] test_empty
[00:08:45] [PASSED] test_default
[00:08:45] ======================== test_size ========================
[00:08:45] [PASSED] 4
[00:08:45] [PASSED] 8
[00:08:45] [PASSED] 32
[00:08:45] [PASSED] 256
[00:08:45] ==================== [PASSED] test_size ====================
[00:08:45] ======================= test_reuse ========================
[00:08:45] [PASSED] 4
[00:08:45] [PASSED] 8
[00:08:45] [PASSED] 32
[00:08:45] [PASSED] 256
[00:08:45] =================== [PASSED] test_reuse ====================
[00:08:45] =================== test_range_overlap ====================
[00:08:45] [PASSED] 4
[00:08:45] [PASSED] 8
[00:08:45] [PASSED] 32
[00:08:45] [PASSED] 256
[00:08:45] =============== [PASSED] test_range_overlap ================
[00:08:45] =================== test_range_compact ====================
[00:08:45] [PASSED] 4
[00:08:45] [PASSED] 8
[00:08:45] [PASSED] 32
[00:08:45] [PASSED] 256
[00:08:45] =============== [PASSED] test_range_compact ================
[00:08:45] ==================== test_range_spare =====================
[00:08:45] [PASSED] 4
[00:08:45] [PASSED] 8
[00:08:45] [PASSED] 32
[00:08:45] [PASSED] 256
[00:08:45] ================ [PASSED] test_range_spare =================
[00:08:45] ===================== [PASSED] guc_dbm =====================
[00:08:45] =================== guc_idm (6 subtests) ===================
[00:08:45] [PASSED] bad_init
[00:08:45] [PASSED] no_init
[00:08:45] [PASSED] init_fini
[00:08:45] [PASSED] check_used
[00:08:45] [PASSED] check_quota
[00:08:45] [PASSED] check_all
[00:08:45] ===================== [PASSED] guc_idm =====================
[00:08:45] ================== no_relay (3 subtests) ===================
[00:08:45] [PASSED] xe_drops_guc2pf_if_not_ready
[00:08:45] [PASSED] xe_drops_guc2vf_if_not_ready
[00:08:45] [PASSED] xe_rejects_send_if_not_ready
[00:08:45] ==================== [PASSED] no_relay =====================
[00:08:45] ================== pf_relay (14 subtests) ==================
[00:08:45] [PASSED] pf_rejects_guc2pf_too_short
[00:08:45] [PASSED] pf_rejects_guc2pf_too_long
[00:08:45] [PASSED] pf_rejects_guc2pf_no_payload
[00:08:45] [PASSED] pf_fails_no_payload
[00:08:45] [PASSED] pf_fails_bad_origin
[00:08:45] [PASSED] pf_fails_bad_type
[00:08:45] [PASSED] pf_txn_reports_error
[00:08:45] [PASSED] pf_txn_sends_pf2guc
[00:08:45] [PASSED] pf_sends_pf2guc
[00:08:45] [SKIPPED] pf_loopback_nop
[00:08:45] [SKIPPED] pf_loopback_echo
[00:08:45] [SKIPPED] pf_loopback_fail
[00:08:45] [SKIPPED] pf_loopback_busy
[00:08:45] [SKIPPED] pf_loopback_retry
[00:08:45] ==================== [PASSED] pf_relay =====================
[00:08:45] ================== vf_relay (3 subtests) ===================
[00:08:45] [PASSED] vf_rejects_guc2vf_too_short
[00:08:45] [PASSED] vf_rejects_guc2vf_too_long
[00:08:45] [PASSED] vf_rejects_guc2vf_no_payload
[00:08:45] ==================== [PASSED] vf_relay =====================
[00:08:45] ================ pf_gt_config (6 subtests) =================
[00:08:45] [PASSED] fair_contexts_1vf
[00:08:45] [PASSED] fair_doorbells_1vf
[00:08:45] [PASSED] fair_ggtt_1vf
[00:08:45] ====================== fair_contexts ======================
[00:08:45] [PASSED] 1 VF
[00:08:45] [PASSED] 2 VFs
[00:08:45] [PASSED] 3 VFs
[00:08:45] [PASSED] 4 VFs
[00:08:45] [PASSED] 5 VFs
[00:08:45] [PASSED] 6 VFs
[00:08:45] [PASSED] 7 VFs
[00:08:45] [PASSED] 8 VFs
[00:08:45] [PASSED] 9 VFs
[00:08:45] [PASSED] 10 VFs
[00:08:45] [PASSED] 11 VFs
[00:08:45] [PASSED] 12 VFs
[00:08:45] [PASSED] 13 VFs
[00:08:45] [PASSED] 14 VFs
[00:08:45] [PASSED] 15 VFs
[00:08:45] [PASSED] 16 VFs
[00:08:45] [PASSED] 17 VFs
[00:08:45] [PASSED] 18 VFs
[00:08:45] [PASSED] 19 VFs
[00:08:45] [PASSED] 20 VFs
[00:08:45] [PASSED] 21 VFs
[00:08:45] [PASSED] 22 VFs
[00:08:45] [PASSED] 23 VFs
[00:08:45] [PASSED] 24 VFs
[00:08:45] [PASSED] 25 VFs
[00:08:45] [PASSED] 26 VFs
[00:08:45] [PASSED] 27 VFs
[00:08:45] [PASSED] 28 VFs
[00:08:45] [PASSED] 29 VFs
[00:08:45] [PASSED] 30 VFs
[00:08:45] [PASSED] 31 VFs
[00:08:45] [PASSED] 32 VFs
[00:08:45] [PASSED] 33 VFs
[00:08:45] [PASSED] 34 VFs
[00:08:45] [PASSED] 35 VFs
[00:08:45] [PASSED] 36 VFs
[00:08:45] [PASSED] 37 VFs
[00:08:45] [PASSED] 38 VFs
[00:08:45] [PASSED] 39 VFs
[00:08:45] [PASSED] 40 VFs
[00:08:45] [PASSED] 41 VFs
[00:08:45] [PASSED] 42 VFs
[00:08:45] [PASSED] 43 VFs
[00:08:45] [PASSED] 44 VFs
[00:08:45] [PASSED] 45 VFs
[00:08:45] [PASSED] 46 VFs
[00:08:45] [PASSED] 47 VFs
[00:08:45] [PASSED] 48 VFs
[00:08:45] [PASSED] 49 VFs
[00:08:45] [PASSED] 50 VFs
[00:08:45] [PASSED] 51 VFs
[00:08:45] [PASSED] 52 VFs
[00:08:45] [PASSED] 53 VFs
[00:08:45] [PASSED] 54 VFs
[00:08:45] [PASSED] 55 VFs
[00:08:45] [PASSED] 56 VFs
[00:08:45] [PASSED] 57 VFs
[00:08:45] [PASSED] 58 VFs
[00:08:45] [PASSED] 59 VFs
[00:08:45] [PASSED] 60 VFs
[00:08:45] [PASSED] 61 VFs
[00:08:45] [PASSED] 62 VFs
[00:08:45] [PASSED] 63 VFs
[00:08:45] ================== [PASSED] fair_contexts ==================
[00:08:45] ===================== fair_doorbells ======================
[00:08:45] [PASSED] 1 VF
[00:08:45] [PASSED] 2 VFs
[00:08:45] [PASSED] 3 VFs
[00:08:45] [PASSED] 4 VFs
[00:08:45] [PASSED] 5 VFs
[00:08:45] [PASSED] 6 VFs
[00:08:45] [PASSED] 7 VFs
[00:08:45] [PASSED] 8 VFs
[00:08:45] [PASSED] 9 VFs
[00:08:45] [PASSED] 10 VFs
[00:08:45] [PASSED] 11 VFs
[00:08:45] [PASSED] 12 VFs
[00:08:45] [PASSED] 13 VFs
[00:08:45] [PASSED] 14 VFs
[00:08:45] [PASSED] 15 VFs
[00:08:45] [PASSED] 16 VFs
[00:08:45] [PASSED] 17 VFs
[00:08:45] [PASSED] 18 VFs
[00:08:45] [PASSED] 19 VFs
[00:08:45] [PASSED] 20 VFs
[00:08:45] [PASSED] 21 VFs
[00:08:45] [PASSED] 22 VFs
[00:08:45] [PASSED] 23 VFs
[00:08:45] [PASSED] 24 VFs
[00:08:45] [PASSED] 25 VFs
[00:08:45] [PASSED] 26 VFs
[00:08:45] [PASSED] 27 VFs
[00:08:45] [PASSED] 28 VFs
[00:08:45] [PASSED] 29 VFs
[00:08:45] [PASSED] 30 VFs
[00:08:45] [PASSED] 31 VFs
[00:08:45] [PASSED] 32 VFs
[00:08:45] [PASSED] 33 VFs
[00:08:45] [PASSED] 34 VFs
[00:08:45] [PASSED] 35 VFs
[00:08:45] [PASSED] 36 VFs
[00:08:45] [PASSED] 37 VFs
[00:08:45] [PASSED] 38 VFs
[00:08:45] [PASSED] 39 VFs
[00:08:45] [PASSED] 40 VFs
[00:08:45] [PASSED] 41 VFs
[00:08:45] [PASSED] 42 VFs
[00:08:45] [PASSED] 43 VFs
[00:08:45] [PASSED] 44 VFs
[00:08:45] [PASSED] 45 VFs
[00:08:45] [PASSED] 46 VFs
[00:08:45] [PASSED] 47 VFs
[00:08:45] [PASSED] 48 VFs
[00:08:45] [PASSED] 49 VFs
[00:08:45] [PASSED] 50 VFs
[00:08:45] [PASSED] 51 VFs
[00:08:45] [PASSED] 52 VFs
[00:08:45] [PASSED] 53 VFs
[00:08:45] [PASSED] 54 VFs
[00:08:45] [PASSED] 55 VFs
[00:08:45] [PASSED] 56 VFs
[00:08:45] [PASSED] 57 VFs
[00:08:45] [PASSED] 58 VFs
[00:08:45] [PASSED] 59 VFs
[00:08:45] [PASSED] 60 VFs
[00:08:45] [PASSED] 61 VFs
[00:08:45] [PASSED] 62 VFs
[00:08:45] [PASSED] 63 VFs
[00:08:45] ================= [PASSED] fair_doorbells ==================
[00:08:45] ======================== fair_ggtt ========================
[00:08:45] [PASSED] 1 VF
[00:08:45] [PASSED] 2 VFs
[00:08:45] [PASSED] 3 VFs
[00:08:45] [PASSED] 4 VFs
[00:08:45] [PASSED] 5 VFs
[00:08:45] [PASSED] 6 VFs
[00:08:45] [PASSED] 7 VFs
[00:08:45] [PASSED] 8 VFs
[00:08:45] [PASSED] 9 VFs
[00:08:45] [PASSED] 10 VFs
[00:08:45] [PASSED] 11 VFs
[00:08:45] [PASSED] 12 VFs
[00:08:45] [PASSED] 13 VFs
[00:08:45] [PASSED] 14 VFs
[00:08:45] [PASSED] 15 VFs
[00:08:45] [PASSED] 16 VFs
[00:08:45] [PASSED] 17 VFs
[00:08:45] [PASSED] 18 VFs
[00:08:45] [PASSED] 19 VFs
[00:08:45] [PASSED] 20 VFs
[00:08:45] [PASSED] 21 VFs
[00:08:45] [PASSED] 22 VFs
[00:08:45] [PASSED] 23 VFs
[00:08:45] [PASSED] 24 VFs
[00:08:45] [PASSED] 25 VFs
[00:08:45] [PASSED] 26 VFs
[00:08:45] [PASSED] 27 VFs
[00:08:45] [PASSED] 28 VFs
[00:08:45] [PASSED] 29 VFs
[00:08:45] [PASSED] 30 VFs
[00:08:45] [PASSED] 31 VFs
[00:08:45] [PASSED] 32 VFs
[00:08:45] [PASSED] 33 VFs
[00:08:45] [PASSED] 34 VFs
[00:08:45] [PASSED] 35 VFs
[00:08:45] [PASSED] 36 VFs
[00:08:45] [PASSED] 37 VFs
[00:08:45] [PASSED] 38 VFs
[00:08:45] [PASSED] 39 VFs
[00:08:45] [PASSED] 40 VFs
[00:08:45] [PASSED] 41 VFs
[00:08:45] [PASSED] 42 VFs
[00:08:45] [PASSED] 43 VFs
[00:08:45] [PASSED] 44 VFs
[00:08:45] [PASSED] 45 VFs
[00:08:45] [PASSED] 46 VFs
[00:08:45] [PASSED] 47 VFs
[00:08:45] [PASSED] 48 VFs
[00:08:45] [PASSED] 49 VFs
[00:08:45] [PASSED] 50 VFs
[00:08:45] [PASSED] 51 VFs
[00:08:45] [PASSED] 52 VFs
[00:08:45] [PASSED] 53 VFs
[00:08:45] [PASSED] 54 VFs
[00:08:45] [PASSED] 55 VFs
[00:08:45] [PASSED] 56 VFs
[00:08:45] [PASSED] 57 VFs
[00:08:45] [PASSED] 58 VFs
[00:08:45] [PASSED] 59 VFs
[00:08:45] [PASSED] 60 VFs
[00:08:45] [PASSED] 61 VFs
[00:08:45] [PASSED] 62 VFs
[00:08:45] [PASSED] 63 VFs
[00:08:45] ==================== [PASSED] fair_ggtt ====================
[00:08:45] ================== [PASSED] pf_gt_config ===================
[00:08:45] ===================== lmtt (1 subtest) =====================
[00:08:45] ======================== test_ops =========================
[00:08:45] [PASSED] 2-level
[00:08:45] [PASSED] multi-level
[00:08:45] ==================== [PASSED] test_ops =====================
[00:08:45] ====================== [PASSED] lmtt =======================
[00:08:45] ================= pf_service (11 subtests) =================
[00:08:45] [PASSED] pf_negotiate_any
[00:08:45] [PASSED] pf_negotiate_base_match
[00:08:45] [PASSED] pf_negotiate_base_newer
[00:08:45] [PASSED] pf_negotiate_base_next
[00:08:45] [SKIPPED] pf_negotiate_base_older
[00:08:45] [PASSED] pf_negotiate_base_prev
[00:08:45] [PASSED] pf_negotiate_latest_match
[00:08:45] [PASSED] pf_negotiate_latest_newer
[00:08:45] [PASSED] pf_negotiate_latest_next
[00:08:45] [SKIPPED] pf_negotiate_latest_older
[00:08:45] [SKIPPED] pf_negotiate_latest_prev
[00:08:45] =================== [PASSED] pf_service ====================
[00:08:45] ================= xe_guc_g2g (2 subtests) ==================
[00:08:45] ============== xe_live_guc_g2g_kunit_default ==============
[00:08:45] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[00:08:45] ============== xe_live_guc_g2g_kunit_allmem ===============
[00:08:45] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[00:08:45] =================== [SKIPPED] xe_guc_g2g ===================
[00:08:45] =================== xe_mocs (2 subtests) ===================
[00:08:45] ================ xe_live_mocs_kernel_kunit ================
[00:08:45] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[00:08:45] ================ xe_live_mocs_reset_kunit =================
[00:08:45] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[00:08:45] ==================== [SKIPPED] xe_mocs =====================
[00:08:45] ================= xe_migrate (2 subtests) ==================
[00:08:45] ================= xe_migrate_sanity_kunit =================
[00:08:45] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[00:08:45] ================== xe_validate_ccs_kunit ==================
[00:08:45] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[00:08:45] =================== [SKIPPED] xe_migrate ===================
[00:08:45] ================== xe_dma_buf (1 subtest) ==================
[00:08:45] ==================== xe_dma_buf_kunit =====================
[00:08:45] ================ [SKIPPED] xe_dma_buf_kunit ================
[00:08:45] =================== [SKIPPED] xe_dma_buf ===================
[00:08:45] ================= xe_bo_shrink (1 subtest) =================
[00:08:45] =================== xe_bo_shrink_kunit ====================
[00:08:45] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[00:08:45] ================== [SKIPPED] xe_bo_shrink ==================
[00:08:45] ==================== xe_bo (2 subtests) ====================
[00:08:45] ================== xe_ccs_migrate_kunit ===================
[00:08:45] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[00:08:45] ==================== xe_bo_evict_kunit ====================
[00:08:45] =============== [SKIPPED] xe_bo_evict_kunit ================
[00:08:45] ===================== [SKIPPED] xe_bo ======================
[00:08:45] ==================== args (13 subtests) ====================
[00:08:45] [PASSED] count_args_test
[00:08:45] [PASSED] call_args_example
[00:08:45] [PASSED] call_args_test
[00:08:45] [PASSED] drop_first_arg_example
[00:08:45] [PASSED] drop_first_arg_test
[00:08:45] [PASSED] first_arg_example
[00:08:45] [PASSED] first_arg_test
[00:08:45] [PASSED] last_arg_example
[00:08:45] [PASSED] last_arg_test
[00:08:45] [PASSED] pick_arg_example
[00:08:45] [PASSED] if_args_example
[00:08:45] [PASSED] if_args_test
[00:08:45] [PASSED] sep_comma_example
[00:08:45] ====================== [PASSED] args =======================
[00:08:45] =================== xe_pci (3 subtests) ====================
[00:08:45] ==================== check_graphics_ip ====================
[00:08:45] [PASSED] 12.00 Xe_LP
[00:08:45] [PASSED] 12.10 Xe_LP+
[00:08:45] [PASSED] 12.55 Xe_HPG
[00:08:45] [PASSED] 12.60 Xe_HPC
[00:08:45] [PASSED] 12.70 Xe_LPG
[00:08:45] [PASSED] 12.71 Xe_LPG
[00:08:45] [PASSED] 12.74 Xe_LPG+
[00:08:45] [PASSED] 20.01 Xe2_HPG
[00:08:45] [PASSED] 20.02 Xe2_HPG
[00:08:45] [PASSED] 20.04 Xe2_LPG
[00:08:45] [PASSED] 30.00 Xe3_LPG
[00:08:45] [PASSED] 30.01 Xe3_LPG
[00:08:45] [PASSED] 30.03 Xe3_LPG
[00:08:45] [PASSED] 30.04 Xe3_LPG
[00:08:45] [PASSED] 30.05 Xe3_LPG
[00:08:45] [PASSED] 35.11 Xe3p_XPC
[00:08:45] ================ [PASSED] check_graphics_ip ================
[00:08:45] ===================== check_media_ip ======================
[00:08:45] [PASSED] 12.00 Xe_M
[00:08:45] [PASSED] 12.55 Xe_HPM
[00:08:45] [PASSED] 13.00 Xe_LPM+
[00:08:45] [PASSED] 13.01 Xe2_HPM
[00:08:45] [PASSED] 20.00 Xe2_LPM
[00:08:45] [PASSED] 30.00 Xe3_LPM
[00:08:45] [PASSED] 30.02 Xe3_LPM
[00:08:45] [PASSED] 35.00 Xe3p_LPM
[00:08:45] [PASSED] 35.03 Xe3p_HPM
[00:08:45] ================= [PASSED] check_media_ip ==================
[00:08:45] =================== check_platform_desc ===================
[00:08:45] [PASSED] 0x9A60 (TIGERLAKE)
[00:08:45] [PASSED] 0x9A68 (TIGERLAKE)
[00:08:45] [PASSED] 0x9A70 (TIGERLAKE)
[00:08:45] [PASSED] 0x9A40 (TIGERLAKE)
[00:08:45] [PASSED] 0x9A49 (TIGERLAKE)
[00:08:45] [PASSED] 0x9A59 (TIGERLAKE)
[00:08:45] [PASSED] 0x9A78 (TIGERLAKE)
[00:08:45] [PASSED] 0x9AC0 (TIGERLAKE)
[00:08:45] [PASSED] 0x9AC9 (TIGERLAKE)
[00:08:45] [PASSED] 0x9AD9 (TIGERLAKE)
[00:08:45] [PASSED] 0x9AF8 (TIGERLAKE)
[00:08:45] [PASSED] 0x4C80 (ROCKETLAKE)
[00:08:45] [PASSED] 0x4C8A (ROCKETLAKE)
[00:08:45] [PASSED] 0x4C8B (ROCKETLAKE)
[00:08:45] [PASSED] 0x4C8C (ROCKETLAKE)
[00:08:45] [PASSED] 0x4C90 (ROCKETLAKE)
[00:08:45] [PASSED] 0x4C9A (ROCKETLAKE)
[00:08:45] [PASSED] 0x4680 (ALDERLAKE_S)
[00:08:45] [PASSED] 0x4682 (ALDERLAKE_S)
[00:08:45] [PASSED] 0x4688 (ALDERLAKE_S)
[00:08:45] [PASSED] 0x468A (ALDERLAKE_S)
[00:08:45] [PASSED] 0x468B (ALDERLAKE_S)
[00:08:45] [PASSED] 0x4690 (ALDERLAKE_S)
[00:08:45] [PASSED] 0x4692 (ALDERLAKE_S)
[00:08:45] [PASSED] 0x4693 (ALDERLAKE_S)
[00:08:45] [PASSED] 0x46A0 (ALDERLAKE_P)
[00:08:45] [PASSED] 0x46A1 (ALDERLAKE_P)
[00:08:45] [PASSED] 0x46A2 (ALDERLAKE_P)
[00:08:45] [PASSED] 0x46A3 (ALDERLAKE_P)
[00:08:45] [PASSED] 0x46A6 (ALDERLAKE_P)
[00:08:45] [PASSED] 0x46A8 (ALDERLAKE_P)
[00:08:45] [PASSED] 0x46AA (ALDERLAKE_P)
[00:08:45] [PASSED] 0x462A (ALDERLAKE_P)
[00:08:45] [PASSED] 0x4626 (ALDERLAKE_P)
[00:08:45] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[00:08:45] [PASSED] 0x46B0 (ALDERLAKE_P)
[00:08:45] [PASSED] 0x46B1 (ALDERLAKE_P)
[00:08:45] [PASSED] 0x46B2 (ALDERLAKE_P)
[00:08:45] [PASSED] 0x46B3 (ALDERLAKE_P)
[00:08:45] [PASSED] 0x46C0 (ALDERLAKE_P)
[00:08:45] [PASSED] 0x46C1 (ALDERLAKE_P)
[00:08:45] [PASSED] 0x46C2 (ALDERLAKE_P)
[00:08:45] [PASSED] 0x46C3 (ALDERLAKE_P)
[00:08:45] [PASSED] 0x46D0 (ALDERLAKE_N)
[00:08:45] [PASSED] 0x46D1 (ALDERLAKE_N)
[00:08:45] [PASSED] 0x46D2 (ALDERLAKE_N)
[00:08:45] [PASSED] 0x46D3 (ALDERLAKE_N)
[00:08:45] [PASSED] 0x46D4 (ALDERLAKE_N)
[00:08:45] [PASSED] 0xA721 (ALDERLAKE_P)
[00:08:45] [PASSED] 0xA7A1 (ALDERLAKE_P)
[00:08:45] [PASSED] 0xA7A9 (ALDERLAKE_P)
[00:08:45] [PASSED] 0xA7AC (ALDERLAKE_P)
[00:08:45] [PASSED] 0xA7AD (ALDERLAKE_P)
[00:08:45] [PASSED] 0xA720 (ALDERLAKE_P)
[00:08:45] [PASSED] 0xA7A0 (ALDERLAKE_P)
[00:08:45] [PASSED] 0xA7A8 (ALDERLAKE_P)
[00:08:45] [PASSED] 0xA7AA (ALDERLAKE_P)
[00:08:45] [PASSED] 0xA7AB (ALDERLAKE_P)
[00:08:45] [PASSED] 0xA780 (ALDERLAKE_S)
[00:08:45] [PASSED] 0xA781 (ALDERLAKE_S)
[00:08:45] [PASSED] 0xA782 (ALDERLAKE_S)
[00:08:45] [PASSED] 0xA783 (ALDERLAKE_S)
[00:08:45] [PASSED] 0xA788 (ALDERLAKE_S)
[00:08:45] [PASSED] 0xA789 (ALDERLAKE_S)
[00:08:45] [PASSED] 0xA78A (ALDERLAKE_S)
[00:08:45] [PASSED] 0xA78B (ALDERLAKE_S)
[00:08:45] [PASSED] 0x4905 (DG1)
[00:08:45] [PASSED] 0x4906 (DG1)
[00:08:45] [PASSED] 0x4907 (DG1)
[00:08:45] [PASSED] 0x4908 (DG1)
[00:08:45] [PASSED] 0x4909 (DG1)
[00:08:45] [PASSED] 0x56C0 (DG2)
[00:08:45] [PASSED] 0x56C2 (DG2)
[00:08:45] [PASSED] 0x56C1 (DG2)
[00:08:45] [PASSED] 0x7D51 (METEORLAKE)
[00:08:45] [PASSED] 0x7DD1 (METEORLAKE)
[00:08:45] [PASSED] 0x7D41 (METEORLAKE)
[00:08:45] [PASSED] 0x7D67 (METEORLAKE)
[00:08:45] [PASSED] 0xB640 (METEORLAKE)
[00:08:45] [PASSED] 0x56A0 (DG2)
[00:08:45] [PASSED] 0x56A1 (DG2)
[00:08:45] [PASSED] 0x56A2 (DG2)
[00:08:45] [PASSED] 0x56BE (DG2)
[00:08:45] [PASSED] 0x56BF (DG2)
[00:08:45] [PASSED] 0x5690 (DG2)
[00:08:45] [PASSED] 0x5691 (DG2)
[00:08:45] [PASSED] 0x5692 (DG2)
[00:08:45] [PASSED] 0x56A5 (DG2)
[00:08:45] [PASSED] 0x56A6 (DG2)
[00:08:45] [PASSED] 0x56B0 (DG2)
[00:08:45] [PASSED] 0x56B1 (DG2)
[00:08:45] [PASSED] 0x56BA (DG2)
[00:08:45] [PASSED] 0x56BB (DG2)
[00:08:45] [PASSED] 0x56BC (DG2)
[00:08:45] [PASSED] 0x56BD (DG2)
[00:08:45] [PASSED] 0x5693 (DG2)
[00:08:45] [PASSED] 0x5694 (DG2)
[00:08:45] [PASSED] 0x5695 (DG2)
[00:08:45] [PASSED] 0x56A3 (DG2)
[00:08:45] [PASSED] 0x56A4 (DG2)
[00:08:45] [PASSED] 0x56B2 (DG2)
[00:08:45] [PASSED] 0x56B3 (DG2)
[00:08:45] [PASSED] 0x5696 (DG2)
[00:08:45] [PASSED] 0x5697 (DG2)
[00:08:45] [PASSED] 0xB69 (PVC)
[00:08:45] [PASSED] 0xB6E (PVC)
[00:08:45] [PASSED] 0xBD4 (PVC)
[00:08:45] [PASSED] 0xBD5 (PVC)
[00:08:45] [PASSED] 0xBD6 (PVC)
[00:08:45] [PASSED] 0xBD7 (PVC)
[00:08:45] [PASSED] 0xBD8 (PVC)
[00:08:45] [PASSED] 0xBD9 (PVC)
[00:08:45] [PASSED] 0xBDA (PVC)
[00:08:45] [PASSED] 0xBDB (PVC)
[00:08:45] [PASSED] 0xBE0 (PVC)
[00:08:45] [PASSED] 0xBE1 (PVC)
[00:08:45] [PASSED] 0xBE5 (PVC)
[00:08:45] [PASSED] 0x7D40 (METEORLAKE)
[00:08:45] [PASSED] 0x7D45 (METEORLAKE)
[00:08:45] [PASSED] 0x7D55 (METEORLAKE)
[00:08:45] [PASSED] 0x7D60 (METEORLAKE)
[00:08:45] [PASSED] 0x7DD5 (METEORLAKE)
[00:08:45] [PASSED] 0x6420 (LUNARLAKE)
[00:08:45] [PASSED] 0x64A0 (LUNARLAKE)
[00:08:45] [PASSED] 0x64B0 (LUNARLAKE)
[00:08:45] [PASSED] 0xE202 (BATTLEMAGE)
[00:08:45] [PASSED] 0xE209 (BATTLEMAGE)
[00:08:45] [PASSED] 0xE20B (BATTLEMAGE)
[00:08:45] [PASSED] 0xE20C (BATTLEMAGE)
[00:08:45] [PASSED] 0xE20D (BATTLEMAGE)
[00:08:45] [PASSED] 0xE210 (BATTLEMAGE)
[00:08:45] [PASSED] 0xE211 (BATTLEMAGE)
[00:08:45] [PASSED] 0xE212 (BATTLEMAGE)
[00:08:45] [PASSED] 0xE216 (BATTLEMAGE)
[00:08:45] [PASSED] 0xE220 (BATTLEMAGE)
[00:08:45] [PASSED] 0xE221 (BATTLEMAGE)
[00:08:45] [PASSED] 0xE222 (BATTLEMAGE)
[00:08:45] [PASSED] 0xE223 (BATTLEMAGE)
[00:08:45] [PASSED] 0xB080 (PANTHERLAKE)
[00:08:45] [PASSED] 0xB081 (PANTHERLAKE)
[00:08:45] [PASSED] 0xB082 (PANTHERLAKE)
[00:08:45] [PASSED] 0xB083 (PANTHERLAKE)
[00:08:45] [PASSED] 0xB084 (PANTHERLAKE)
[00:08:45] [PASSED] 0xB085 (PANTHERLAKE)
[00:08:45] [PASSED] 0xB086 (PANTHERLAKE)
[00:08:45] [PASSED] 0xB087 (PANTHERLAKE)
[00:08:45] [PASSED] 0xB08F (PANTHERLAKE)
[00:08:45] [PASSED] 0xB090 (PANTHERLAKE)
[00:08:45] [PASSED] 0xB0A0 (PANTHERLAKE)
[00:08:45] [PASSED] 0xB0B0 (PANTHERLAKE)
[00:08:45] [PASSED] 0xFD80 (PANTHERLAKE)
[00:08:45] [PASSED] 0xFD81 (PANTHERLAKE)
[00:08:45] [PASSED] 0xD740 (NOVALAKE_S)
[00:08:45] [PASSED] 0xD741 (NOVALAKE_S)
[00:08:45] [PASSED] 0xD742 (NOVALAKE_S)
[00:08:45] [PASSED] 0xD743 (NOVALAKE_S)
[00:08:45] [PASSED] 0xD744 (NOVALAKE_S)
[00:08:45] [PASSED] 0xD745 (NOVALAKE_S)
[00:08:45] [PASSED] 0x674C (CRESCENTISLAND)
[00:08:45] =============== [PASSED] check_platform_desc ===============
[00:08:45] ===================== [PASSED] xe_pci ======================
[00:08:45] =================== xe_rtp (2 subtests) ====================
[00:08:45] =============== xe_rtp_process_to_sr_tests ================
[00:08:45] [PASSED] coalesce-same-reg
[00:08:45] [PASSED] no-match-no-add
[00:08:45] [PASSED] match-or
[00:08:45] [PASSED] match-or-xfail
[00:08:45] [PASSED] no-match-no-add-multiple-rules
[00:08:45] [PASSED] two-regs-two-entries
[00:08:45] [PASSED] clr-one-set-other
[00:08:45] [PASSED] set-field
[00:08:45] [PASSED] conflict-duplicate
[00:08:45] [PASSED] conflict-not-disjoint
[00:08:45] [PASSED] conflict-reg-type
[00:08:45] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[00:08:45] ================== xe_rtp_process_tests ===================
[00:08:45] [PASSED] active1
[00:08:45] [PASSED] active2
[00:08:45] [PASSED] active-inactive
[00:08:45] [PASSED] inactive-active
[00:08:45] [PASSED] inactive-1st_or_active-inactive
[00:08:45] [PASSED] inactive-2nd_or_active-inactive
[00:08:45] [PASSED] inactive-last_or_active-inactive
[00:08:45] [PASSED] inactive-no_or_active-inactive
[00:08:45] ============== [PASSED] xe_rtp_process_tests ===============
[00:08:45] ===================== [PASSED] xe_rtp ======================
[00:08:45] ==================== xe_wa (1 subtest) =====================
[00:08:45] ======================== xe_wa_gt =========================
[00:08:45] [PASSED] TIGERLAKE B0
[00:08:45] [PASSED] DG1 A0
[00:08:45] [PASSED] DG1 B0
[00:08:45] [PASSED] ALDERLAKE_S A0
[00:08:45] [PASSED] ALDERLAKE_S B0
[00:08:45] [PASSED] ALDERLAKE_S C0
[00:08:45] [PASSED] ALDERLAKE_S D0
[00:08:45] [PASSED] ALDERLAKE_P A0
[00:08:45] [PASSED] ALDERLAKE_P B0
[00:08:45] [PASSED] ALDERLAKE_P C0
[00:08:45] [PASSED] ALDERLAKE_S RPLS D0
[00:08:45] [PASSED] ALDERLAKE_P RPLU E0
[00:08:45] [PASSED] DG2 G10 C0
[00:08:45] [PASSED] DG2 G11 B1
[00:08:45] [PASSED] DG2 G12 A1
[00:08:45] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[00:08:45] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[00:08:45] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[00:08:45] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[00:08:45] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[00:08:45] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[00:08:45] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[00:08:45] ==================== [PASSED] xe_wa_gt =====================
[00:08:45] ====================== [PASSED] xe_wa ======================
[00:08:45] ============================================================
[00:08:45] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[00:08:45] Elapsed time: 36.418s total, 4.245s configuring, 31.656s building, 0.470s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[00:08:45] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[00:08:47] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[00:09:12] Starting KUnit Kernel (1/1)...
[00:09:12] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[00:09:12] ============ drm_test_pick_cmdline (2 subtests) ============
[00:09:12] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[00:09:12] =============== drm_test_pick_cmdline_named ===============
[00:09:12] [PASSED] NTSC
[00:09:12] [PASSED] NTSC-J
[00:09:12] [PASSED] PAL
[00:09:12] [PASSED] PAL-M
[00:09:12] =========== [PASSED] drm_test_pick_cmdline_named ===========
[00:09:12] ============== [PASSED] drm_test_pick_cmdline ==============
[00:09:12] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[00:09:12] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[00:09:12] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[00:09:12] =========== drm_validate_clone_mode (2 subtests) ===========
[00:09:12] ============== drm_test_check_in_clone_mode ===============
[00:09:12] [PASSED] in_clone_mode
[00:09:12] [PASSED] not_in_clone_mode
[00:09:12] ========== [PASSED] drm_test_check_in_clone_mode ===========
[00:09:12] =============== drm_test_check_valid_clones ===============
[00:09:12] [PASSED] not_in_clone_mode
[00:09:12] [PASSED] valid_clone
[00:09:12] [PASSED] invalid_clone
[00:09:12] =========== [PASSED] drm_test_check_valid_clones ===========
[00:09:12] ============= [PASSED] drm_validate_clone_mode =============
[00:09:12] ============= drm_validate_modeset (1 subtest) =============
[00:09:12] [PASSED] drm_test_check_connector_changed_modeset
[00:09:12] ============== [PASSED] drm_validate_modeset ===============
[00:09:12] ====== drm_test_bridge_get_current_state (2 subtests) ======
[00:09:12] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[00:09:12] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[00:09:12] ======== [PASSED] drm_test_bridge_get_current_state ========
[00:09:12] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[00:09:12] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[00:09:12] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[00:09:12] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[00:09:12] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[00:09:12] ============== drm_bridge_alloc (2 subtests) ===============
[00:09:12] [PASSED] drm_test_drm_bridge_alloc_basic
[00:09:12] [PASSED] drm_test_drm_bridge_alloc_get_put
[00:09:12] ================ [PASSED] drm_bridge_alloc =================
[00:09:12] ================== drm_buddy (9 subtests) ==================
[00:09:12] [PASSED] drm_test_buddy_alloc_limit
[00:09:12] [PASSED] drm_test_buddy_alloc_optimistic
[00:09:12] [PASSED] drm_test_buddy_alloc_pessimistic
[00:09:12] [PASSED] drm_test_buddy_alloc_pathological
[00:09:12] [PASSED] drm_test_buddy_alloc_contiguous
[00:09:12] [PASSED] drm_test_buddy_alloc_clear
[00:09:13] [PASSED] drm_test_buddy_alloc_range_bias
[00:09:13] [PASSED] drm_test_buddy_fragmentation_performance
[00:09:13] [PASSED] drm_test_buddy_alloc_exceeds_max_order
[00:09:13] ==================== [PASSED] drm_buddy ====================
[00:09:13] ============= drm_cmdline_parser (40 subtests) =============
[00:09:13] [PASSED] drm_test_cmdline_force_d_only
[00:09:13] [PASSED] drm_test_cmdline_force_D_only_dvi
[00:09:13] [PASSED] drm_test_cmdline_force_D_only_hdmi
[00:09:13] [PASSED] drm_test_cmdline_force_D_only_not_digital
[00:09:13] [PASSED] drm_test_cmdline_force_e_only
[00:09:13] [PASSED] drm_test_cmdline_res
[00:09:13] [PASSED] drm_test_cmdline_res_vesa
[00:09:13] [PASSED] drm_test_cmdline_res_vesa_rblank
[00:09:13] [PASSED] drm_test_cmdline_res_rblank
[00:09:13] [PASSED] drm_test_cmdline_res_bpp
[00:09:13] [PASSED] drm_test_cmdline_res_refresh
[00:09:13] [PASSED] drm_test_cmdline_res_bpp_refresh
[00:09:13] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[00:09:13] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[00:09:13] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[00:09:13] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[00:09:13] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[00:09:13] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[00:09:13] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[00:09:13] [PASSED] drm_test_cmdline_res_margins_force_on
[00:09:13] [PASSED] drm_test_cmdline_res_vesa_margins
[00:09:13] [PASSED] drm_test_cmdline_name
[00:09:13] [PASSED] drm_test_cmdline_name_bpp
[00:09:13] [PASSED] drm_test_cmdline_name_option
[00:09:13] [PASSED] drm_test_cmdline_name_bpp_option
[00:09:13] [PASSED] drm_test_cmdline_rotate_0
[00:09:13] [PASSED] drm_test_cmdline_rotate_90
[00:09:13] [PASSED] drm_test_cmdline_rotate_180
[00:09:13] [PASSED] drm_test_cmdline_rotate_270
[00:09:13] [PASSED] drm_test_cmdline_hmirror
[00:09:13] [PASSED] drm_test_cmdline_vmirror
[00:09:13] [PASSED] drm_test_cmdline_margin_options
[00:09:13] [PASSED] drm_test_cmdline_multiple_options
[00:09:13] [PASSED] drm_test_cmdline_bpp_extra_and_option
[00:09:13] [PASSED] drm_test_cmdline_extra_and_option
[00:09:13] [PASSED] drm_test_cmdline_freestanding_options
[00:09:13] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[00:09:13] [PASSED] drm_test_cmdline_panel_orientation
[00:09:13] ================ drm_test_cmdline_invalid =================
[00:09:13] [PASSED] margin_only
[00:09:13] [PASSED] interlace_only
[00:09:13] [PASSED] res_missing_x
[00:09:13] [PASSED] res_missing_y
[00:09:13] [PASSED] res_bad_y
[00:09:13] [PASSED] res_missing_y_bpp
[00:09:13] [PASSED] res_bad_bpp
[00:09:13] [PASSED] res_bad_refresh
[00:09:13] [PASSED] res_bpp_refresh_force_on_off
[00:09:13] [PASSED] res_invalid_mode
[00:09:13] [PASSED] res_bpp_wrong_place_mode
[00:09:13] [PASSED] name_bpp_refresh
[00:09:13] [PASSED] name_refresh
[00:09:13] [PASSED] name_refresh_wrong_mode
[00:09:13] [PASSED] name_refresh_invalid_mode
[00:09:13] [PASSED] rotate_multiple
[00:09:13] [PASSED] rotate_invalid_val
[00:09:13] [PASSED] rotate_truncated
[00:09:13] [PASSED] invalid_option
[00:09:13] [PASSED] invalid_tv_option
[00:09:13] [PASSED] truncated_tv_option
[00:09:13] ============ [PASSED] drm_test_cmdline_invalid =============
[00:09:13] =============== drm_test_cmdline_tv_options ===============
[00:09:13] [PASSED] NTSC
[00:09:13] [PASSED] NTSC_443
[00:09:13] [PASSED] NTSC_J
[00:09:13] [PASSED] PAL
[00:09:13] [PASSED] PAL_M
[00:09:13] [PASSED] PAL_N
[00:09:13] [PASSED] SECAM
[00:09:13] [PASSED] MONO_525
[00:09:13] [PASSED] MONO_625
[00:09:13] =========== [PASSED] drm_test_cmdline_tv_options ===========
[00:09:13] =============== [PASSED] drm_cmdline_parser ================
[00:09:13] ========== drmm_connector_hdmi_init (20 subtests) ==========
[00:09:13] [PASSED] drm_test_connector_hdmi_init_valid
[00:09:13] [PASSED] drm_test_connector_hdmi_init_bpc_8
[00:09:13] [PASSED] drm_test_connector_hdmi_init_bpc_10
[00:09:13] [PASSED] drm_test_connector_hdmi_init_bpc_12
[00:09:13] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[00:09:13] [PASSED] drm_test_connector_hdmi_init_bpc_null
[00:09:13] [PASSED] drm_test_connector_hdmi_init_formats_empty
[00:09:13] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[00:09:13] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[00:09:13] [PASSED] supported_formats=0x9 yuv420_allowed=1
[00:09:13] [PASSED] supported_formats=0x9 yuv420_allowed=0
[00:09:13] [PASSED] supported_formats=0x3 yuv420_allowed=1
[00:09:13] [PASSED] supported_formats=0x3 yuv420_allowed=0
[00:09:13] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[00:09:13] [PASSED] drm_test_connector_hdmi_init_null_ddc
[00:09:13] [PASSED] drm_test_connector_hdmi_init_null_product
[00:09:13] [PASSED] drm_test_connector_hdmi_init_null_vendor
[00:09:13] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[00:09:13] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[00:09:13] [PASSED] drm_test_connector_hdmi_init_product_valid
[00:09:13] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[00:09:13] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[00:09:13] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[00:09:13] ========= drm_test_connector_hdmi_init_type_valid =========
[00:09:13] [PASSED] HDMI-A
[00:09:13] [PASSED] HDMI-B
[00:09:13] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[00:09:13] ======== drm_test_connector_hdmi_init_type_invalid ========
[00:09:13] [PASSED] Unknown
[00:09:13] [PASSED] VGA
[00:09:13] [PASSED] DVI-I
[00:09:13] [PASSED] DVI-D
[00:09:13] [PASSED] DVI-A
[00:09:13] [PASSED] Composite
[00:09:13] [PASSED] SVIDEO
[00:09:13] [PASSED] LVDS
[00:09:13] [PASSED] Component
[00:09:13] [PASSED] DIN
[00:09:13] [PASSED] DP
[00:09:13] [PASSED] TV
[00:09:13] [PASSED] eDP
[00:09:13] [PASSED] Virtual
[00:09:13] [PASSED] DSI
[00:09:13] [PASSED] DPI
[00:09:13] [PASSED] Writeback
[00:09:13] [PASSED] SPI
[00:09:13] [PASSED] USB
[00:09:13] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[00:09:13] ============ [PASSED] drmm_connector_hdmi_init =============
[00:09:13] ============= drmm_connector_init (3 subtests) =============
[00:09:13] [PASSED] drm_test_drmm_connector_init
[00:09:13] [PASSED] drm_test_drmm_connector_init_null_ddc
[00:09:13] ========= drm_test_drmm_connector_init_type_valid =========
[00:09:13] [PASSED] Unknown
[00:09:13] [PASSED] VGA
[00:09:13] [PASSED] DVI-I
[00:09:13] [PASSED] DVI-D
[00:09:13] [PASSED] DVI-A
[00:09:13] [PASSED] Composite
[00:09:13] [PASSED] SVIDEO
[00:09:13] [PASSED] LVDS
[00:09:13] [PASSED] Component
[00:09:13] [PASSED] DIN
[00:09:13] [PASSED] DP
[00:09:13] [PASSED] HDMI-A
[00:09:13] [PASSED] HDMI-B
[00:09:13] [PASSED] TV
[00:09:13] [PASSED] eDP
[00:09:13] [PASSED] Virtual
[00:09:13] [PASSED] DSI
[00:09:13] [PASSED] DPI
[00:09:13] [PASSED] Writeback
[00:09:13] [PASSED] SPI
[00:09:13] [PASSED] USB
[00:09:13] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[00:09:13] =============== [PASSED] drmm_connector_init ===============
[00:09:13] ========= drm_connector_dynamic_init (6 subtests) ==========
[00:09:13] [PASSED] drm_test_drm_connector_dynamic_init
[00:09:13] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[00:09:13] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[00:09:13] [PASSED] drm_test_drm_connector_dynamic_init_properties
[00:09:13] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[00:09:13] [PASSED] Unknown
[00:09:13] [PASSED] VGA
[00:09:13] [PASSED] DVI-I
[00:09:13] [PASSED] DVI-D
[00:09:13] [PASSED] DVI-A
[00:09:13] [PASSED] Composite
[00:09:13] [PASSED] SVIDEO
[00:09:13] [PASSED] LVDS
[00:09:13] [PASSED] Component
[00:09:13] [PASSED] DIN
[00:09:13] [PASSED] DP
[00:09:13] [PASSED] HDMI-A
[00:09:13] [PASSED] HDMI-B
[00:09:13] [PASSED] TV
[00:09:13] [PASSED] eDP
[00:09:13] [PASSED] Virtual
[00:09:13] [PASSED] DSI
[00:09:13] [PASSED] DPI
[00:09:13] [PASSED] Writeback
[00:09:13] [PASSED] SPI
[00:09:13] [PASSED] USB
[00:09:13] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[00:09:13] ======== drm_test_drm_connector_dynamic_init_name =========
[00:09:13] [PASSED] Unknown
[00:09:13] [PASSED] VGA
[00:09:13] [PASSED] DVI-I
[00:09:13] [PASSED] DVI-D
[00:09:13] [PASSED] DVI-A
[00:09:13] [PASSED] Composite
[00:09:13] [PASSED] SVIDEO
[00:09:13] [PASSED] LVDS
[00:09:13] [PASSED] Component
[00:09:13] [PASSED] DIN
[00:09:13] [PASSED] DP
[00:09:13] [PASSED] HDMI-A
[00:09:13] [PASSED] HDMI-B
[00:09:13] [PASSED] TV
[00:09:13] [PASSED] eDP
[00:09:13] [PASSED] Virtual
[00:09:13] [PASSED] DSI
[00:09:13] [PASSED] DPI
[00:09:13] [PASSED] Writeback
[00:09:13] [PASSED] SPI
[00:09:13] [PASSED] USB
[00:09:13] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[00:09:13] =========== [PASSED] drm_connector_dynamic_init ============
[00:09:13] ==== drm_connector_dynamic_register_early (4 subtests) =====
[00:09:13] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[00:09:13] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[00:09:13] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[00:09:13] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[00:09:13] ====== [PASSED] drm_connector_dynamic_register_early =======
[00:09:13] ======= drm_connector_dynamic_register (7 subtests) ========
[00:09:13] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[00:09:13] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[00:09:13] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[00:09:13] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[00:09:13] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[00:09:13] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[00:09:13] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[00:09:13] ========= [PASSED] drm_connector_dynamic_register ==========
[00:09:13] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[00:09:13] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[00:09:13] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[00:09:13] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[00:09:13] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[00:09:13] ========== drm_test_get_tv_mode_from_name_valid ===========
[00:09:13] [PASSED] NTSC
[00:09:13] [PASSED] NTSC-443
[00:09:13] [PASSED] NTSC-J
[00:09:13] [PASSED] PAL
[00:09:13] [PASSED] PAL-M
[00:09:13] [PASSED] PAL-N
[00:09:13] [PASSED] SECAM
[00:09:13] [PASSED] Mono
[00:09:13] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[00:09:13] [PASSED] drm_test_get_tv_mode_from_name_truncated
[00:09:13] ============ [PASSED] drm_get_tv_mode_from_name ============
[00:09:13] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[00:09:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[00:09:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[00:09:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[00:09:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[00:09:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[00:09:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[00:09:13] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[00:09:13] [PASSED] VIC 96
[00:09:13] [PASSED] VIC 97
[00:09:13] [PASSED] VIC 101
[00:09:13] [PASSED] VIC 102
[00:09:13] [PASSED] VIC 106
[00:09:13] [PASSED] VIC 107
[00:09:13] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[00:09:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[00:09:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[00:09:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[00:09:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[00:09:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[00:09:13] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[00:09:13] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[00:09:13] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[00:09:13] [PASSED] Automatic
[00:09:13] [PASSED] Full
[00:09:13] [PASSED] Limited 16:235
[00:09:13] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[00:09:13] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[00:09:13] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[00:09:13] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[00:09:13] === drm_test_drm_hdmi_connector_get_output_format_name ====
[00:09:13] [PASSED] RGB
[00:09:13] [PASSED] YUV 4:2:0
[00:09:13] [PASSED] YUV 4:2:2
[00:09:13] [PASSED] YUV 4:4:4
[00:09:13] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[00:09:13] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[00:09:13] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[00:09:13] ============= drm_damage_helper (21 subtests) ==============
[00:09:13] [PASSED] drm_test_damage_iter_no_damage
[00:09:13] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[00:09:13] [PASSED] drm_test_damage_iter_no_damage_src_moved
[00:09:13] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[00:09:13] [PASSED] drm_test_damage_iter_no_damage_not_visible
[00:09:13] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[00:09:13] [PASSED] drm_test_damage_iter_no_damage_no_fb
[00:09:13] [PASSED] drm_test_damage_iter_simple_damage
[00:09:13] [PASSED] drm_test_damage_iter_single_damage
[00:09:13] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[00:09:13] [PASSED] drm_test_damage_iter_single_damage_outside_src
[00:09:13] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[00:09:13] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[00:09:13] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[00:09:13] [PASSED] drm_test_damage_iter_single_damage_src_moved
[00:09:13] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[00:09:13] [PASSED] drm_test_damage_iter_damage
[00:09:13] [PASSED] drm_test_damage_iter_damage_one_intersect
[00:09:13] [PASSED] drm_test_damage_iter_damage_one_outside
[00:09:13] [PASSED] drm_test_damage_iter_damage_src_moved
[00:09:13] [PASSED] drm_test_damage_iter_damage_not_visible
[00:09:13] ================ [PASSED] drm_damage_helper ================
[00:09:13] ============== drm_dp_mst_helper (3 subtests) ==============
[00:09:13] ============== drm_test_dp_mst_calc_pbn_mode ==============
[00:09:13] [PASSED] Clock 154000 BPP 30 DSC disabled
[00:09:13] [PASSED] Clock 234000 BPP 30 DSC disabled
[00:09:13] [PASSED] Clock 297000 BPP 24 DSC disabled
[00:09:13] [PASSED] Clock 332880 BPP 24 DSC enabled
[00:09:13] [PASSED] Clock 324540 BPP 24 DSC enabled
[00:09:13] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[00:09:13] ============== drm_test_dp_mst_calc_pbn_div ===============
[00:09:13] [PASSED] Link rate 2000000 lane count 4
[00:09:13] [PASSED] Link rate 2000000 lane count 2
[00:09:13] [PASSED] Link rate 2000000 lane count 1
[00:09:13] [PASSED] Link rate 1350000 lane count 4
[00:09:13] [PASSED] Link rate 1350000 lane count 2
[00:09:13] [PASSED] Link rate 1350000 lane count 1
[00:09:13] [PASSED] Link rate 1000000 lane count 4
[00:09:13] [PASSED] Link rate 1000000 lane count 2
[00:09:13] [PASSED] Link rate 1000000 lane count 1
[00:09:13] [PASSED] Link rate 810000 lane count 4
[00:09:13] [PASSED] Link rate 810000 lane count 2
[00:09:13] [PASSED] Link rate 810000 lane count 1
[00:09:13] [PASSED] Link rate 540000 lane count 4
[00:09:13] [PASSED] Link rate 540000 lane count 2
[00:09:13] [PASSED] Link rate 540000 lane count 1
[00:09:13] [PASSED] Link rate 270000 lane count 4
[00:09:13] [PASSED] Link rate 270000 lane count 2
[00:09:13] [PASSED] Link rate 270000 lane count 1
[00:09:13] [PASSED] Link rate 162000 lane count 4
[00:09:13] [PASSED] Link rate 162000 lane count 2
[00:09:13] [PASSED] Link rate 162000 lane count 1
[00:09:13] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[00:09:13] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[00:09:13] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[00:09:13] [PASSED] DP_POWER_UP_PHY with port number
[00:09:13] [PASSED] DP_POWER_DOWN_PHY with port number
[00:09:13] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[00:09:13] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[00:09:13] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[00:09:13] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[00:09:13] [PASSED] DP_QUERY_PAYLOAD with port number
[00:09:13] [PASSED] DP_QUERY_PAYLOAD with VCPI
[00:09:13] [PASSED] DP_REMOTE_DPCD_READ with port number
[00:09:13] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[00:09:13] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[00:09:13] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[00:09:13] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[00:09:13] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[00:09:13] [PASSED] DP_REMOTE_I2C_READ with port number
[00:09:13] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[00:09:13] [PASSED] DP_REMOTE_I2C_READ with transactions array
[00:09:13] [PASSED] DP_REMOTE_I2C_WRITE with port number
[00:09:13] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[00:09:13] [PASSED] DP_REMOTE_I2C_WRITE with data array
[00:09:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[00:09:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[00:09:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[00:09:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[00:09:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[00:09:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[00:09:13] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[00:09:13] ================ [PASSED] drm_dp_mst_helper ================
[00:09:13] ================== drm_exec (7 subtests) ===================
[00:09:13] [PASSED] sanitycheck
[00:09:13] [PASSED] test_lock
[00:09:13] [PASSED] test_lock_unlock
[00:09:13] [PASSED] test_duplicates
[00:09:13] [PASSED] test_prepare
[00:09:13] [PASSED] test_prepare_array
[00:09:13] [PASSED] test_multiple_loops
[00:09:13] ==================== [PASSED] drm_exec =====================
[00:09:13] =========== drm_format_helper_test (17 subtests) ===========
[00:09:13] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[00:09:13] [PASSED] single_pixel_source_buffer
[00:09:13] [PASSED] single_pixel_clip_rectangle
[00:09:13] [PASSED] well_known_colors
[00:09:13] [PASSED] destination_pitch
[00:09:13] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[00:09:13] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[00:09:13] [PASSED] single_pixel_source_buffer
[00:09:13] [PASSED] single_pixel_clip_rectangle
[00:09:13] [PASSED] well_known_colors
[00:09:13] [PASSED] destination_pitch
[00:09:13] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[00:09:13] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[00:09:13] [PASSED] single_pixel_source_buffer
[00:09:13] [PASSED] single_pixel_clip_rectangle
[00:09:13] [PASSED] well_known_colors
[00:09:13] [PASSED] destination_pitch
[00:09:13] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[00:09:13] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[00:09:13] [PASSED] single_pixel_source_buffer
[00:09:13] [PASSED] single_pixel_clip_rectangle
[00:09:13] [PASSED] well_known_colors
[00:09:13] [PASSED] destination_pitch
[00:09:13] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[00:09:13] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[00:09:13] [PASSED] single_pixel_source_buffer
[00:09:13] [PASSED] single_pixel_clip_rectangle
[00:09:13] [PASSED] well_known_colors
[00:09:13] [PASSED] destination_pitch
[00:09:13] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[00:09:13] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[00:09:13] [PASSED] single_pixel_source_buffer
[00:09:13] [PASSED] single_pixel_clip_rectangle
[00:09:13] [PASSED] well_known_colors
[00:09:13] [PASSED] destination_pitch
[00:09:13] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[00:09:13] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[00:09:13] [PASSED] single_pixel_source_buffer
[00:09:13] [PASSED] single_pixel_clip_rectangle
[00:09:13] [PASSED] well_known_colors
[00:09:13] [PASSED] destination_pitch
[00:09:13] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[00:09:13] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[00:09:13] [PASSED] single_pixel_source_buffer
[00:09:13] [PASSED] single_pixel_clip_rectangle
[00:09:13] [PASSED] well_known_colors
[00:09:13] [PASSED] destination_pitch
[00:09:13] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[00:09:13] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[00:09:13] [PASSED] single_pixel_source_buffer
[00:09:13] [PASSED] single_pixel_clip_rectangle
[00:09:13] [PASSED] well_known_colors
[00:09:13] [PASSED] destination_pitch
[00:09:13] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[00:09:13] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[00:09:13] [PASSED] single_pixel_source_buffer
[00:09:13] [PASSED] single_pixel_clip_rectangle
[00:09:13] [PASSED] well_known_colors
[00:09:13] [PASSED] destination_pitch
[00:09:13] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[00:09:13] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[00:09:13] [PASSED] single_pixel_source_buffer
[00:09:13] [PASSED] single_pixel_clip_rectangle
[00:09:13] [PASSED] well_known_colors
[00:09:13] [PASSED] destination_pitch
[00:09:13] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[00:09:13] ============== drm_test_fb_xrgb8888_to_mono ===============
[00:09:13] [PASSED] single_pixel_source_buffer
[00:09:13] [PASSED] single_pixel_clip_rectangle
[00:09:13] [PASSED] well_known_colors
[00:09:13] [PASSED] destination_pitch
[00:09:13] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[00:09:13] ==================== drm_test_fb_swab =====================
[00:09:13] [PASSED] single_pixel_source_buffer
[00:09:13] [PASSED] single_pixel_clip_rectangle
[00:09:13] [PASSED] well_known_colors
[00:09:13] [PASSED] destination_pitch
[00:09:13] ================ [PASSED] drm_test_fb_swab =================
[00:09:13] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[00:09:13] [PASSED] single_pixel_source_buffer
[00:09:13] [PASSED] single_pixel_clip_rectangle
[00:09:13] [PASSED] well_known_colors
[00:09:13] [PASSED] destination_pitch
[00:09:13] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[00:09:13] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[00:09:13] [PASSED] single_pixel_source_buffer
[00:09:13] [PASSED] single_pixel_clip_rectangle
[00:09:13] [PASSED] well_known_colors
[00:09:13] [PASSED] destination_pitch
[00:09:13] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[00:09:13] ================= drm_test_fb_clip_offset =================
[00:09:13] [PASSED] pass through
[00:09:13] [PASSED] horizontal offset
[00:09:13] [PASSED] vertical offset
[00:09:13] [PASSED] horizontal and vertical offset
[00:09:13] [PASSED] horizontal offset (custom pitch)
[00:09:13] [PASSED] vertical offset (custom pitch)
[00:09:13] [PASSED] horizontal and vertical offset (custom pitch)
[00:09:13] ============= [PASSED] drm_test_fb_clip_offset =============
[00:09:13] =================== drm_test_fb_memcpy ====================
[00:09:13] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[00:09:13] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[00:09:13] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[00:09:13] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[00:09:13] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[00:09:13] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[00:09:13] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[00:09:13] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[00:09:13] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[00:09:13] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[00:09:13] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[00:09:13] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[00:09:13] =============== [PASSED] drm_test_fb_memcpy ================
[00:09:13] ============= [PASSED] drm_format_helper_test ==============
[00:09:13] ================= drm_format (18 subtests) =================
[00:09:13] [PASSED] drm_test_format_block_width_invalid
[00:09:13] [PASSED] drm_test_format_block_width_one_plane
[00:09:13] [PASSED] drm_test_format_block_width_two_plane
[00:09:13] [PASSED] drm_test_format_block_width_three_plane
[00:09:13] [PASSED] drm_test_format_block_width_tiled
[00:09:13] [PASSED] drm_test_format_block_height_invalid
[00:09:13] [PASSED] drm_test_format_block_height_one_plane
[00:09:13] [PASSED] drm_test_format_block_height_two_plane
[00:09:13] [PASSED] drm_test_format_block_height_three_plane
[00:09:13] [PASSED] drm_test_format_block_height_tiled
[00:09:13] [PASSED] drm_test_format_min_pitch_invalid
[00:09:13] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[00:09:13] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[00:09:13] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[00:09:13] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[00:09:13] [PASSED] drm_test_format_min_pitch_two_plane
[00:09:13] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[00:09:13] [PASSED] drm_test_format_min_pitch_tiled
[00:09:13] =================== [PASSED] drm_format ====================
[00:09:13] ============== drm_framebuffer (10 subtests) ===============
[00:09:13] ========== drm_test_framebuffer_check_src_coords ==========
[00:09:13] [PASSED] Success: source fits into fb
[00:09:13] [PASSED] Fail: overflowing fb with x-axis coordinate
[00:09:13] [PASSED] Fail: overflowing fb with y-axis coordinate
[00:09:13] [PASSED] Fail: overflowing fb with source width
[00:09:13] [PASSED] Fail: overflowing fb with source height
[00:09:13] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[00:09:13] [PASSED] drm_test_framebuffer_cleanup
[00:09:13] =============== drm_test_framebuffer_create ===============
[00:09:13] [PASSED] ABGR8888 normal sizes
[00:09:13] [PASSED] ABGR8888 max sizes
[00:09:13] [PASSED] ABGR8888 pitch greater than min required
[00:09:13] [PASSED] ABGR8888 pitch less than min required
[00:09:13] [PASSED] ABGR8888 Invalid width
[00:09:13] [PASSED] ABGR8888 Invalid buffer handle
[00:09:13] [PASSED] No pixel format
[00:09:13] [PASSED] ABGR8888 Width 0
[00:09:13] [PASSED] ABGR8888 Height 0
[00:09:13] [PASSED] ABGR8888 Out of bound height * pitch combination
[00:09:13] [PASSED] ABGR8888 Large buffer offset
[00:09:13] [PASSED] ABGR8888 Buffer offset for inexistent plane
[00:09:13] [PASSED] ABGR8888 Invalid flag
[00:09:13] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[00:09:13] [PASSED] ABGR8888 Valid buffer modifier
[00:09:13] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[00:09:13] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[00:09:13] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[00:09:13] [PASSED] NV12 Normal sizes
[00:09:13] [PASSED] NV12 Max sizes
[00:09:13] [PASSED] NV12 Invalid pitch
[00:09:13] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[00:09:13] [PASSED] NV12 different modifier per-plane
[00:09:13] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[00:09:13] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[00:09:13] [PASSED] NV12 Modifier for inexistent plane
[00:09:13] [PASSED] NV12 Handle for inexistent plane
[00:09:13] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[00:09:13] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[00:09:13] [PASSED] YVU420 Normal sizes
[00:09:13] [PASSED] YVU420 Max sizes
[00:09:13] [PASSED] YVU420 Invalid pitch
[00:09:13] [PASSED] YVU420 Different pitches
[00:09:13] [PASSED] YVU420 Different buffer offsets/pitches
[00:09:13] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[00:09:13] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[00:09:13] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[00:09:13] [PASSED] YVU420 Valid modifier
[00:09:13] [PASSED] YVU420 Different modifiers per plane
[00:09:13] [PASSED] YVU420 Modifier for inexistent plane
[00:09:13] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[00:09:13] [PASSED] X0L2 Normal sizes
[00:09:13] [PASSED] X0L2 Max sizes
[00:09:13] [PASSED] X0L2 Invalid pitch
[00:09:13] [PASSED] X0L2 Pitch greater than minimum required
[00:09:13] [PASSED] X0L2 Handle for inexistent plane
[00:09:13] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[00:09:13] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[00:09:13] [PASSED] X0L2 Valid modifier
[00:09:13] [PASSED] X0L2 Modifier for inexistent plane
[00:09:13] =========== [PASSED] drm_test_framebuffer_create ===========
[00:09:13] [PASSED] drm_test_framebuffer_free
[00:09:13] [PASSED] drm_test_framebuffer_init
[00:09:13] [PASSED] drm_test_framebuffer_init_bad_format
[00:09:13] [PASSED] drm_test_framebuffer_init_dev_mismatch
[00:09:13] [PASSED] drm_test_framebuffer_lookup
[00:09:13] [PASSED] drm_test_framebuffer_lookup_inexistent
[00:09:13] [PASSED] drm_test_framebuffer_modifiers_not_supported
[00:09:13] ================= [PASSED] drm_framebuffer =================
[00:09:13] ================ drm_gem_shmem (8 subtests) ================
[00:09:13] [PASSED] drm_gem_shmem_test_obj_create
[00:09:13] [PASSED] drm_gem_shmem_test_obj_create_private
[00:09:13] [PASSED] drm_gem_shmem_test_pin_pages
[00:09:13] [PASSED] drm_gem_shmem_test_vmap
[00:09:13] [PASSED] drm_gem_shmem_test_get_sg_table
[00:09:13] [PASSED] drm_gem_shmem_test_get_pages_sgt
[00:09:13] [PASSED] drm_gem_shmem_test_madvise
[00:09:13] [PASSED] drm_gem_shmem_test_purge
[00:09:13] ================== [PASSED] drm_gem_shmem ==================
[00:09:13] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[00:09:13] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[00:09:13] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[00:09:13] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[00:09:13] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[00:09:13] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[00:09:13] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[00:09:13] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[00:09:13] [PASSED] Automatic
[00:09:13] [PASSED] Full
[00:09:13] [PASSED] Limited 16:235
[00:09:13] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[00:09:13] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[00:09:13] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[00:09:13] [PASSED] drm_test_check_disable_connector
[00:09:13] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[00:09:13] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[00:09:13] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[00:09:13] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[00:09:13] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[00:09:13] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[00:09:13] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[00:09:13] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[00:09:13] [PASSED] drm_test_check_output_bpc_dvi
[00:09:13] [PASSED] drm_test_check_output_bpc_format_vic_1
[00:09:13] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[00:09:13] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[00:09:13] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[00:09:13] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[00:09:13] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[00:09:13] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[00:09:13] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[00:09:13] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[00:09:13] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[00:09:13] [PASSED] drm_test_check_broadcast_rgb_value
[00:09:13] [PASSED] drm_test_check_bpc_8_value
[00:09:13] [PASSED] drm_test_check_bpc_10_value
[00:09:13] [PASSED] drm_test_check_bpc_12_value
[00:09:13] [PASSED] drm_test_check_format_value
[00:09:13] [PASSED] drm_test_check_tmds_char_value
[00:09:13] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[00:09:13] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[00:09:13] [PASSED] drm_test_check_mode_valid
[00:09:13] [PASSED] drm_test_check_mode_valid_reject
[00:09:13] [PASSED] drm_test_check_mode_valid_reject_rate
[00:09:13] [PASSED] drm_test_check_mode_valid_reject_max_clock
[00:09:13] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[00:09:13] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[00:09:13] [PASSED] drm_test_check_infoframes
[00:09:13] [PASSED] drm_test_check_reject_avi_infoframe
[00:09:13] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[00:09:13] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[00:09:13] [PASSED] drm_test_check_reject_audio_infoframe
[00:09:13] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[00:09:13] ================= drm_managed (2 subtests) =================
[00:09:13] [PASSED] drm_test_managed_release_action
[00:09:13] [PASSED] drm_test_managed_run_action
[00:09:13] =================== [PASSED] drm_managed ===================
[00:09:13] =================== drm_mm (6 subtests) ====================
[00:09:13] [PASSED] drm_test_mm_init
[00:09:13] [PASSED] drm_test_mm_debug
[00:09:13] [PASSED] drm_test_mm_align32
[00:09:13] [PASSED] drm_test_mm_align64
[00:09:13] [PASSED] drm_test_mm_lowest
[00:09:13] [PASSED] drm_test_mm_highest
[00:09:13] ===================== [PASSED] drm_mm ======================
[00:09:13] ============= drm_modes_analog_tv (5 subtests) =============
[00:09:13] [PASSED] drm_test_modes_analog_tv_mono_576i
[00:09:13] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[00:09:13] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[00:09:13] [PASSED] drm_test_modes_analog_tv_pal_576i
[00:09:13] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[00:09:13] =============== [PASSED] drm_modes_analog_tv ===============
[00:09:13] ============== drm_plane_helper (2 subtests) ===============
[00:09:13] =============== drm_test_check_plane_state ================
[00:09:13] [PASSED] clipping_simple
[00:09:13] [PASSED] clipping_rotate_reflect
[00:09:13] [PASSED] positioning_simple
[00:09:13] [PASSED] upscaling
[00:09:13] [PASSED] downscaling
[00:09:13] [PASSED] rounding1
[00:09:13] [PASSED] rounding2
[00:09:13] [PASSED] rounding3
[00:09:13] [PASSED] rounding4
[00:09:13] =========== [PASSED] drm_test_check_plane_state ============
[00:09:13] =========== drm_test_check_invalid_plane_state ============
[00:09:13] [PASSED] positioning_invalid
[00:09:13] [PASSED] upscaling_invalid
[00:09:13] [PASSED] downscaling_invalid
[00:09:13] ======= [PASSED] drm_test_check_invalid_plane_state ========
[00:09:13] ================ [PASSED] drm_plane_helper =================
[00:09:13] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[00:09:13] ====== drm_test_connector_helper_tv_get_modes_check =======
[00:09:13] [PASSED] None
[00:09:13] [PASSED] PAL
[00:09:13] [PASSED] NTSC
[00:09:13] [PASSED] Both, NTSC Default
[00:09:13] [PASSED] Both, PAL Default
[00:09:13] [PASSED] Both, NTSC Default, with PAL on command-line
[00:09:13] [PASSED] Both, PAL Default, with NTSC on command-line
[00:09:13] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[00:09:13] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[00:09:13] ================== drm_rect (9 subtests) ===================
[00:09:13] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[00:09:13] [PASSED] drm_test_rect_clip_scaled_not_clipped
[00:09:13] [PASSED] drm_test_rect_clip_scaled_clipped
[00:09:13] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[00:09:13] ================= drm_test_rect_intersect =================
[00:09:13] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[00:09:13] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[00:09:13] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[00:09:13] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[00:09:13] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[00:09:13] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[00:09:13] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[00:09:13] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[00:09:13] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[00:09:13] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[00:09:13] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[00:09:13] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[00:09:13] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[00:09:13] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[00:09:13] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
stty: 'standard input': Inappropriate ioctl for device
[00:09:13] ============= [PASSED] drm_test_rect_intersect =============
[00:09:13] ================ drm_test_rect_calc_hscale ================
[00:09:13] [PASSED] normal use
[00:09:13] [PASSED] out of max range
[00:09:13] [PASSED] out of min range
[00:09:13] [PASSED] zero dst
[00:09:13] [PASSED] negative src
[00:09:13] [PASSED] negative dst
[00:09:13] ============ [PASSED] drm_test_rect_calc_hscale ============
[00:09:13] ================ drm_test_rect_calc_vscale ================
[00:09:13] [PASSED] normal use
[00:09:13] [PASSED] out of max range
[00:09:13] [PASSED] out of min range
[00:09:13] [PASSED] zero dst
[00:09:13] [PASSED] negative src
[00:09:13] [PASSED] negative dst
[00:09:13] ============ [PASSED] drm_test_rect_calc_vscale ============
[00:09:13] ================== drm_test_rect_rotate ===================
[00:09:13] [PASSED] reflect-x
[00:09:13] [PASSED] reflect-y
[00:09:13] [PASSED] rotate-0
[00:09:13] [PASSED] rotate-90
[00:09:13] [PASSED] rotate-180
[00:09:13] [PASSED] rotate-270
[00:09:13] ============== [PASSED] drm_test_rect_rotate ===============
[00:09:13] ================ drm_test_rect_rotate_inv =================
[00:09:13] [PASSED] reflect-x
[00:09:13] [PASSED] reflect-y
[00:09:13] [PASSED] rotate-0
[00:09:13] [PASSED] rotate-90
[00:09:13] [PASSED] rotate-180
[00:09:13] [PASSED] rotate-270
[00:09:13] ============ [PASSED] drm_test_rect_rotate_inv =============
[00:09:13] ==================== [PASSED] drm_rect =====================
[00:09:13] ============ drm_sysfb_modeset_test (1 subtest) ============
[00:09:13] ============ drm_test_sysfb_build_fourcc_list =============
[00:09:13] [PASSED] no native formats
[00:09:13] [PASSED] XRGB8888 as native format
[00:09:13] [PASSED] remove duplicates
[00:09:13] [PASSED] convert alpha formats
[00:09:13] [PASSED] random formats
[00:09:13] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[00:09:13] ============= [PASSED] drm_sysfb_modeset_test ==============
[00:09:13] ================== drm_fixp (2 subtests) ===================
[00:09:13] [PASSED] drm_test_int2fixp
[00:09:13] [PASSED] drm_test_sm2fixp
[00:09:13] ==================== [PASSED] drm_fixp =====================
[00:09:13] ============================================================
[00:09:13] Testing complete. Ran 630 tests: passed: 630
[00:09:13] Elapsed time: 27.818s total, 1.729s configuring, 25.669s building, 0.387s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[00:09:13] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[00:09:15] 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
[00:09:24] Starting KUnit Kernel (1/1)...
[00:09:24] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[00:09:24] ================= ttm_device (5 subtests) ==================
[00:09:24] [PASSED] ttm_device_init_basic
[00:09:24] [PASSED] ttm_device_init_multiple
[00:09:24] [PASSED] ttm_device_fini_basic
[00:09:24] [PASSED] ttm_device_init_no_vma_man
[00:09:24] ================== ttm_device_init_pools ==================
[00:09:24] [PASSED] No DMA allocations, no DMA32 required
[00:09:24] [PASSED] DMA allocations, DMA32 required
[00:09:24] [PASSED] No DMA allocations, DMA32 required
[00:09:24] [PASSED] DMA allocations, no DMA32 required
[00:09:24] ============== [PASSED] ttm_device_init_pools ==============
[00:09:24] =================== [PASSED] ttm_device ====================
[00:09:24] ================== ttm_pool (8 subtests) ===================
[00:09:24] ================== ttm_pool_alloc_basic ===================
[00:09:24] [PASSED] One page
[00:09:24] [PASSED] More than one page
[00:09:24] [PASSED] Above the allocation limit
[00:09:24] [PASSED] One page, with coherent DMA mappings enabled
[00:09:24] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[00:09:24] ============== [PASSED] ttm_pool_alloc_basic ===============
[00:09:24] ============== ttm_pool_alloc_basic_dma_addr ==============
[00:09:24] [PASSED] One page
[00:09:24] [PASSED] More than one page
[00:09:24] [PASSED] Above the allocation limit
[00:09:24] [PASSED] One page, with coherent DMA mappings enabled
[00:09:24] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[00:09:24] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[00:09:24] [PASSED] ttm_pool_alloc_order_caching_match
[00:09:24] [PASSED] ttm_pool_alloc_caching_mismatch
[00:09:24] [PASSED] ttm_pool_alloc_order_mismatch
[00:09:24] [PASSED] ttm_pool_free_dma_alloc
[00:09:24] [PASSED] ttm_pool_free_no_dma_alloc
[00:09:24] [PASSED] ttm_pool_fini_basic
[00:09:24] ==================== [PASSED] ttm_pool =====================
[00:09:24] ================ ttm_resource (8 subtests) =================
[00:09:24] ================= ttm_resource_init_basic =================
[00:09:24] [PASSED] Init resource in TTM_PL_SYSTEM
[00:09:24] [PASSED] Init resource in TTM_PL_VRAM
[00:09:24] [PASSED] Init resource in a private placement
[00:09:24] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[00:09:24] ============= [PASSED] ttm_resource_init_basic =============
[00:09:24] [PASSED] ttm_resource_init_pinned
[00:09:24] [PASSED] ttm_resource_fini_basic
[00:09:24] [PASSED] ttm_resource_manager_init_basic
[00:09:24] [PASSED] ttm_resource_manager_usage_basic
[00:09:24] [PASSED] ttm_resource_manager_set_used_basic
[00:09:24] [PASSED] ttm_sys_man_alloc_basic
[00:09:24] [PASSED] ttm_sys_man_free_basic
[00:09:24] ================== [PASSED] ttm_resource ===================
[00:09:24] =================== ttm_tt (15 subtests) ===================
[00:09:24] ==================== ttm_tt_init_basic ====================
[00:09:24] [PASSED] Page-aligned size
[00:09:24] [PASSED] Extra pages requested
[00:09:24] ================ [PASSED] ttm_tt_init_basic ================
[00:09:24] [PASSED] ttm_tt_init_misaligned
[00:09:24] [PASSED] ttm_tt_fini_basic
[00:09:24] [PASSED] ttm_tt_fini_sg
[00:09:24] [PASSED] ttm_tt_fini_shmem
[00:09:24] [PASSED] ttm_tt_create_basic
[00:09:24] [PASSED] ttm_tt_create_invalid_bo_type
[00:09:24] [PASSED] ttm_tt_create_ttm_exists
[00:09:24] [PASSED] ttm_tt_create_failed
[00:09:24] [PASSED] ttm_tt_destroy_basic
[00:09:24] [PASSED] ttm_tt_populate_null_ttm
[00:09:24] [PASSED] ttm_tt_populate_populated_ttm
[00:09:24] [PASSED] ttm_tt_unpopulate_basic
[00:09:24] [PASSED] ttm_tt_unpopulate_empty_ttm
[00:09:24] [PASSED] ttm_tt_swapin_basic
[00:09:24] ===================== [PASSED] ttm_tt ======================
[00:09:24] =================== ttm_bo (14 subtests) ===================
[00:09:24] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[00:09:24] [PASSED] Cannot be interrupted and sleeps
[00:09:24] [PASSED] Cannot be interrupted, locks straight away
[00:09:24] [PASSED] Can be interrupted, sleeps
[00:09:24] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[00:09:24] [PASSED] ttm_bo_reserve_locked_no_sleep
[00:09:24] [PASSED] ttm_bo_reserve_no_wait_ticket
[00:09:24] [PASSED] ttm_bo_reserve_double_resv
[00:09:24] [PASSED] ttm_bo_reserve_interrupted
[00:09:24] [PASSED] ttm_bo_reserve_deadlock
[00:09:24] [PASSED] ttm_bo_unreserve_basic
[00:09:24] [PASSED] ttm_bo_unreserve_pinned
[00:09:24] [PASSED] ttm_bo_unreserve_bulk
[00:09:24] [PASSED] ttm_bo_fini_basic
[00:09:24] [PASSED] ttm_bo_fini_shared_resv
[00:09:24] [PASSED] ttm_bo_pin_basic
[00:09:24] [PASSED] ttm_bo_pin_unpin_resource
[00:09:24] [PASSED] ttm_bo_multiple_pin_one_unpin
[00:09:24] ===================== [PASSED] ttm_bo ======================
[00:09:24] ============== ttm_bo_validate (21 subtests) ===============
[00:09:24] ============== ttm_bo_init_reserved_sys_man ===============
[00:09:24] [PASSED] Buffer object for userspace
[00:09:24] [PASSED] Kernel buffer object
[00:09:24] [PASSED] Shared buffer object
[00:09:24] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[00:09:24] ============== ttm_bo_init_reserved_mock_man ==============
[00:09:24] [PASSED] Buffer object for userspace
[00:09:24] [PASSED] Kernel buffer object
[00:09:24] [PASSED] Shared buffer object
[00:09:24] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[00:09:24] [PASSED] ttm_bo_init_reserved_resv
[00:09:24] ================== ttm_bo_validate_basic ==================
[00:09:24] [PASSED] Buffer object for userspace
[00:09:24] [PASSED] Kernel buffer object
[00:09:24] [PASSED] Shared buffer object
[00:09:24] ============== [PASSED] ttm_bo_validate_basic ==============
[00:09:24] [PASSED] ttm_bo_validate_invalid_placement
[00:09:24] ============= ttm_bo_validate_same_placement ==============
[00:09:24] [PASSED] System manager
[00:09:24] [PASSED] VRAM manager
[00:09:24] ========= [PASSED] ttm_bo_validate_same_placement ==========
[00:09:24] [PASSED] ttm_bo_validate_failed_alloc
[00:09:24] [PASSED] ttm_bo_validate_pinned
[00:09:24] [PASSED] ttm_bo_validate_busy_placement
[00:09:24] ================ ttm_bo_validate_multihop =================
[00:09:24] [PASSED] Buffer object for userspace
[00:09:24] [PASSED] Kernel buffer object
[00:09:24] [PASSED] Shared buffer object
[00:09:24] ============ [PASSED] ttm_bo_validate_multihop =============
[00:09:24] ========== ttm_bo_validate_no_placement_signaled ==========
[00:09:24] [PASSED] Buffer object in system domain, no page vector
[00:09:24] [PASSED] Buffer object in system domain with an existing page vector
[00:09:24] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[00:09:24] ======== ttm_bo_validate_no_placement_not_signaled ========
[00:09:24] [PASSED] Buffer object for userspace
[00:09:24] [PASSED] Kernel buffer object
[00:09:24] [PASSED] Shared buffer object
[00:09:24] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[00:09:24] [PASSED] ttm_bo_validate_move_fence_signaled
[00:09:24] ========= ttm_bo_validate_move_fence_not_signaled =========
[00:09:24] [PASSED] Waits for GPU
[00:09:24] [PASSED] Tries to lock straight away
[00:09:24] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[00:09:24] [PASSED] ttm_bo_validate_happy_evict
[00:09:24] [PASSED] ttm_bo_validate_all_pinned_evict
[00:09:24] [PASSED] ttm_bo_validate_allowed_only_evict
[00:09:24] [PASSED] ttm_bo_validate_deleted_evict
[00:09:24] [PASSED] ttm_bo_validate_busy_domain_evict
[00:09:24] [PASSED] ttm_bo_validate_evict_gutting
[00:09:24] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[00:09:24] ================= [PASSED] ttm_bo_validate =================
[00:09:24] ============================================================
[00:09:24] Testing complete. Ran 101 tests: passed: 101
[00:09:24] Elapsed time: 11.449s total, 1.652s configuring, 9.532s building, 0.229s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 48+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
2026-01-29 0:09 ` ✓ CI.KUnit: success for " Patchwork
@ 2026-01-29 0:49 ` Patchwork
2026-01-29 4:35 ` [PATCH] " Matthew Brost
` (25 subsequent siblings)
27 siblings, 0 replies; 48+ messages in thread
From: Patchwork @ 2026-01-29 0:49 UTC (permalink / raw)
To: Jia Yao; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1943 bytes --]
== Series Details ==
Series: drm/xe: Reject coh_none PAT index for CPU cached memory in madvise
URL : https://patchwork.freedesktop.org/series/160797/
State : success
== Summary ==
CI Bug Log - changes from xe-4465-8059f097e25f736bb3da09af6a9b283079abfd4f_BAT -> xe-pw-160797v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 12)
------------------------------
Additional (1): bat-bmg-3
Known issues
------------
Here are the changes found in xe-pw-160797v1_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-vram01-p2p:
- bat-bmg-3: NOTRUN -> [SKIP][1] ([Intel XE#6566]) +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v1/bat-bmg-3/igt@xe_peer2peer@read@read-gpua-vram01-gpub-vram01-p2p.html
#### Possible fixes ####
* igt@xe_waitfence@engine:
- bat-dg2-oem2: [FAIL][2] ([Intel XE#6519]) -> [PASS][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4465-8059f097e25f736bb3da09af6a9b283079abfd4f/bat-dg2-oem2/igt@xe_waitfence@engine.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v1/bat-dg2-oem2/igt@xe_waitfence@engine.html
[Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519
[Intel XE#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566
Build changes
-------------
* IGT: IGT_8721 -> IGT_8723
* Linux: xe-4465-8059f097e25f736bb3da09af6a9b283079abfd4f -> xe-pw-160797v1
IGT_8721: 3707bb4267de22a18d61b232c4ab5fbaf61db90c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8723: 8723
xe-4465-8059f097e25f736bb3da09af6a9b283079abfd4f: 8059f097e25f736bb3da09af6a9b283079abfd4f
xe-pw-160797v1: 160797v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v1/index.html
[-- Attachment #2: Type: text/html, Size: 2543 bytes --]
^ permalink raw reply [flat|nested] 48+ messages in thread
* Re: [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
2026-01-29 0:09 ` ✓ CI.KUnit: success for " Patchwork
2026-01-29 0:49 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-01-29 4:35 ` Matthew Brost
2026-01-29 5:51 ` [PATCH v2] " Jia Yao
` (24 subsequent siblings)
27 siblings, 0 replies; 48+ messages in thread
From: Matthew Brost @ 2026-01-29 4:35 UTC (permalink / raw)
To: Jia Yao; +Cc: intel-xe
On Thu, Jan 29, 2026 at 12:01:47AM +0000, Jia Yao wrote:
> Add validation in xe_vm_madvise_ioctl() to reject PAT indices with
> XE_COH_NONE coherency mode when applied to CPU cached memory.
>
> Using coh_none with CPU cached buffers is a security issue. When the
> kernel clears pages before reallocation, the clear operation stays in
> CPU cache (dirty). GPU with coh_none can bypass CPU caches and read
> stale sensitive data directly from DRAM, potentially leaking data from
> previously freed pages of other processes.
>
> This aligns with the existing validation in vm_bind path
> (xe_vm_bind_ioctl_validate_bo).
>
This would be a fixes patch.
Not a full review but a couple quick comments below.
> Signed-off-by: Jia Yao <jia.yao@intel.com>
> ---
> drivers/gpu/drm/xe/xe_vm_madvise.c | 47 ++++++++++++++++++++++++++++++
> 1 file changed, 47 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c b/drivers/gpu/drm/xe/xe_vm_madvise.c
> index add9a6ca2390..3fbaf7d1d662 100644
> --- a/drivers/gpu/drm/xe/xe_vm_madvise.c
> +++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
> @@ -352,6 +352,44 @@ static void xe_madvise_details_fini(struct xe_madvise_details *details)
> drm_pagemap_put(details->dpagemap);
> }
>
> +static bool check_pat_args_are_sane(struct xe_device *xe,
> + struct xe_vmas_in_madvise_range *madvise_range,
> + u16 pat_index)
> +{
> + u16 coh_mode = xe_pat_index_get_coh_mode(xe, pat_index);
> + int i;
> +
> + /*
> + * Using coh_none with CPU cached buffers is not allowed.
> + * Otherwise CPU page clearing can be bypassed, which is a
> + * security issue. GPU can directly access system memory and
> + * bypass CPU caches, potentially reading stale sensitive data
> + * from previously freed pages.
> + */
> + if (coh_mode != XE_COH_NONE)
> + return true;
> +
> + for (i = 0; i < madvise_range->num_vmas; i++) {
> + struct xe_vma *vma = madvise_range->vmas[i];
> + struct xe_bo *bo = xe_vma_bo(vma);
> +
> + if (bo) {
> + /* BO with WB caching + COH_NONE is not allowed */
> + if (XE_IOCTL_DBG(xe, bo->cpu_caching == DRM_XE_GEM_CPU_CACHING_WB))
> + return false;
> + /* Imported dma-buf without caching info, assume cached */
> + if (XE_IOCTL_DBG(xe, !bo->cpu_caching))
> + return false;
> + } else if (xe_vma_is_cpu_addr_mirror(vma) || xe_vma_is_userptr(vma)) {
} else if (XE_IOCTL_DBG(xe, xe_vma_is_cpu_addr_mirror(vma) || xe_vma_is_userptr(vma))) {
/* System memory (userptr/SVM) is always CPU cached */
return false;
}
Matt
> + /* System memory (userptr/SVM) is always CPU cached */
> + if (XE_IOCTL_DBG(xe, true))
> + return false;
> + }
> + }
> +
> + return true;
> +}
> +
> static bool check_bo_args_are_sane(struct xe_vm *vm, struct xe_vma **vmas,
> int num_vmas, u32 atomic_val)
> {
> @@ -442,6 +480,14 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void *data, struct drm_file *fil
> if (err || !madvise_range.num_vmas)
> goto madv_fini;
>
> + if (args->type == DRM_XE_MEM_RANGE_ATTR_PAT) {
> + if (!check_pat_args_are_sane(xe, &madvise_range,
> + args->pat_index.val)) {
> + err = -EINVAL;
> + goto free_vmas;
> + }
> + }
> +
> if (madvise_range.has_bo_vmas) {
> if (args->type == DRM_XE_MEM_RANGE_ATTR_ATOMIC) {
> if (!check_bo_args_are_sane(vm, madvise_range.vmas,
> @@ -485,6 +531,7 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void *data, struct drm_file *fil
> err_fini:
> if (madvise_range.has_bo_vmas)
> drm_exec_fini(&exec);
> +free_vmas:
> kfree(madvise_range.vmas);
> madvise_range.vmas = NULL;
> madv_fini:
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 48+ messages in thread
* [PATCH v2] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (2 preceding siblings ...)
2026-01-29 4:35 ` [PATCH] " Matthew Brost
@ 2026-01-29 5:51 ` Jia Yao
2026-01-29 9:58 ` Matthew Auld
2026-01-29 6:44 ` ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev2) Patchwork
` (23 subsequent siblings)
27 siblings, 1 reply; 48+ messages in thread
From: Jia Yao @ 2026-01-29 5:51 UTC (permalink / raw)
To: intel-xe; +Cc: Jia Yao, Matthew Brost
Add validation in xe_vm_madvise_ioctl() to reject PAT indices with
XE_COH_NONE coherency mode when applied to CPU cached memory.
Using coh_none with CPU cached buffers is a security issue. When the
kernel clears pages before reallocation, the clear operation stays in
CPU cache (dirty). GPU with coh_none can bypass CPU caches and read
stale sensitive data directly from DRAM, potentially leaking data from
previously freed pages of other processes.
This aligns with the existing validation in vm_bind path
(xe_vm_bind_ioctl_validate_bo).
v2(Matthew brost)
- Add fixes
- Move one debug print to better place
Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
Cc: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Jia Yao <jia.yao@intel.com>
---
drivers/gpu/drm/xe/xe_vm_madvise.c | 47 ++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c b/drivers/gpu/drm/xe/xe_vm_madvise.c
index add9a6ca2390..50b82e821da7 100644
--- a/drivers/gpu/drm/xe/xe_vm_madvise.c
+++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
@@ -352,6 +352,44 @@ static void xe_madvise_details_fini(struct xe_madvise_details *details)
drm_pagemap_put(details->dpagemap);
}
+static bool check_pat_args_are_sane(struct xe_device *xe,
+ struct xe_vmas_in_madvise_range *madvise_range,
+ u16 pat_index)
+{
+ u16 coh_mode = xe_pat_index_get_coh_mode(xe, pat_index);
+ int i;
+
+ /*
+ * Using coh_none with CPU cached buffers is not allowed.
+ * Otherwise CPU page clearing can be bypassed, which is a
+ * security issue. GPU can directly access system memory and
+ * bypass CPU caches, potentially reading stale sensitive data
+ * from previously freed pages.
+ */
+ if (coh_mode != XE_COH_NONE)
+ return true;
+
+ for (i = 0; i < madvise_range->num_vmas; i++) {
+ struct xe_vma *vma = madvise_range->vmas[i];
+ struct xe_bo *bo = xe_vma_bo(vma);
+
+ if (bo) {
+ /* BO with WB caching + COH_NONE is not allowed */
+ if (XE_IOCTL_DBG(xe, bo->cpu_caching == DRM_XE_GEM_CPU_CACHING_WB))
+ return false;
+ /* Imported dma-buf without caching info, assume cached */
+ if (XE_IOCTL_DBG(xe, !bo->cpu_caching))
+ return false;
+ } else if (XE_IOCTL_DBG(xe, xe_vma_is_cpu_addr_mirror(vma)) ||
+ xe_vma_is_userptr(vma)) {
+ /* System memory (userptr/SVM) is always CPU cached */
+ return false;
+ }
+ }
+
+ return true;
+}
+
static bool check_bo_args_are_sane(struct xe_vm *vm, struct xe_vma **vmas,
int num_vmas, u32 atomic_val)
{
@@ -442,6 +480,14 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void *data, struct drm_file *fil
if (err || !madvise_range.num_vmas)
goto madv_fini;
+ if (args->type == DRM_XE_MEM_RANGE_ATTR_PAT) {
+ if (!check_pat_args_are_sane(xe, &madvise_range,
+ args->pat_index.val)) {
+ err = -EINVAL;
+ goto free_vmas;
+ }
+ }
+
if (madvise_range.has_bo_vmas) {
if (args->type == DRM_XE_MEM_RANGE_ATTR_ATOMIC) {
if (!check_bo_args_are_sane(vm, madvise_range.vmas,
@@ -485,6 +531,7 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void *data, struct drm_file *fil
err_fini:
if (madvise_range.has_bo_vmas)
drm_exec_fini(&exec);
+free_vmas:
kfree(madvise_range.vmas);
madvise_range.vmas = NULL;
madv_fini:
--
2.43.0
^ permalink raw reply related [flat|nested] 48+ messages in thread
* ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev2)
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (3 preceding siblings ...)
2026-01-29 5:51 ` [PATCH v2] " Jia Yao
@ 2026-01-29 6:44 ` Patchwork
2026-01-29 7:24 ` ✓ Xe.CI.BAT: " Patchwork
` (22 subsequent siblings)
27 siblings, 0 replies; 48+ messages in thread
From: Patchwork @ 2026-01-29 6:44 UTC (permalink / raw)
To: Jia Yao; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev2)
URL : https://patchwork.freedesktop.org/series/160797/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[06:42:57] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[06:43:02] 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
[06:43:33] Starting KUnit Kernel (1/1)...
[06:43:33] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[06:43:33] ================== guc_buf (11 subtests) ===================
[06:43:33] [PASSED] test_smallest
[06:43:33] [PASSED] test_largest
[06:43:33] [PASSED] test_granular
[06:43:33] [PASSED] test_unique
[06:43:33] [PASSED] test_overlap
[06:43:33] [PASSED] test_reusable
[06:43:33] [PASSED] test_too_big
[06:43:33] [PASSED] test_flush
[06:43:33] [PASSED] test_lookup
[06:43:33] [PASSED] test_data
[06:43:33] [PASSED] test_class
[06:43:33] ===================== [PASSED] guc_buf =====================
[06:43:33] =================== guc_dbm (7 subtests) ===================
[06:43:33] [PASSED] test_empty
[06:43:33] [PASSED] test_default
[06:43:33] ======================== test_size ========================
[06:43:33] [PASSED] 4
[06:43:33] [PASSED] 8
[06:43:33] [PASSED] 32
[06:43:33] [PASSED] 256
[06:43:33] ==================== [PASSED] test_size ====================
[06:43:33] ======================= test_reuse ========================
[06:43:33] [PASSED] 4
[06:43:33] [PASSED] 8
[06:43:33] [PASSED] 32
[06:43:33] [PASSED] 256
[06:43:33] =================== [PASSED] test_reuse ====================
[06:43:33] =================== test_range_overlap ====================
[06:43:33] [PASSED] 4
[06:43:33] [PASSED] 8
[06:43:33] [PASSED] 32
[06:43:33] [PASSED] 256
[06:43:33] =============== [PASSED] test_range_overlap ================
[06:43:33] =================== test_range_compact ====================
[06:43:33] [PASSED] 4
[06:43:33] [PASSED] 8
[06:43:33] [PASSED] 32
[06:43:33] [PASSED] 256
[06:43:33] =============== [PASSED] test_range_compact ================
[06:43:33] ==================== test_range_spare =====================
[06:43:33] [PASSED] 4
[06:43:33] [PASSED] 8
[06:43:33] [PASSED] 32
[06:43:33] [PASSED] 256
[06:43:33] ================ [PASSED] test_range_spare =================
[06:43:33] ===================== [PASSED] guc_dbm =====================
[06:43:33] =================== guc_idm (6 subtests) ===================
[06:43:33] [PASSED] bad_init
[06:43:33] [PASSED] no_init
[06:43:33] [PASSED] init_fini
[06:43:33] [PASSED] check_used
[06:43:33] [PASSED] check_quota
[06:43:33] [PASSED] check_all
[06:43:33] ===================== [PASSED] guc_idm =====================
[06:43:33] ================== no_relay (3 subtests) ===================
[06:43:33] [PASSED] xe_drops_guc2pf_if_not_ready
[06:43:33] [PASSED] xe_drops_guc2vf_if_not_ready
[06:43:33] [PASSED] xe_rejects_send_if_not_ready
[06:43:33] ==================== [PASSED] no_relay =====================
[06:43:33] ================== pf_relay (14 subtests) ==================
[06:43:33] [PASSED] pf_rejects_guc2pf_too_short
[06:43:33] [PASSED] pf_rejects_guc2pf_too_long
[06:43:33] [PASSED] pf_rejects_guc2pf_no_payload
[06:43:33] [PASSED] pf_fails_no_payload
[06:43:33] [PASSED] pf_fails_bad_origin
[06:43:33] [PASSED] pf_fails_bad_type
[06:43:33] [PASSED] pf_txn_reports_error
[06:43:33] [PASSED] pf_txn_sends_pf2guc
[06:43:33] [PASSED] pf_sends_pf2guc
[06:43:33] [SKIPPED] pf_loopback_nop
[06:43:33] [SKIPPED] pf_loopback_echo
[06:43:33] [SKIPPED] pf_loopback_fail
[06:43:33] [SKIPPED] pf_loopback_busy
[06:43:33] [SKIPPED] pf_loopback_retry
[06:43:33] ==================== [PASSED] pf_relay =====================
[06:43:33] ================== vf_relay (3 subtests) ===================
[06:43:33] [PASSED] vf_rejects_guc2vf_too_short
[06:43:33] [PASSED] vf_rejects_guc2vf_too_long
[06:43:33] [PASSED] vf_rejects_guc2vf_no_payload
[06:43:33] ==================== [PASSED] vf_relay =====================
[06:43:33] ================ pf_gt_config (6 subtests) =================
[06:43:33] [PASSED] fair_contexts_1vf
[06:43:33] [PASSED] fair_doorbells_1vf
[06:43:33] [PASSED] fair_ggtt_1vf
[06:43:33] ====================== fair_contexts ======================
[06:43:33] [PASSED] 1 VF
[06:43:33] [PASSED] 2 VFs
[06:43:33] [PASSED] 3 VFs
[06:43:33] [PASSED] 4 VFs
[06:43:33] [PASSED] 5 VFs
[06:43:33] [PASSED] 6 VFs
[06:43:33] [PASSED] 7 VFs
[06:43:33] [PASSED] 8 VFs
[06:43:33] [PASSED] 9 VFs
[06:43:33] [PASSED] 10 VFs
[06:43:33] [PASSED] 11 VFs
[06:43:33] [PASSED] 12 VFs
[06:43:33] [PASSED] 13 VFs
[06:43:33] [PASSED] 14 VFs
[06:43:33] [PASSED] 15 VFs
[06:43:33] [PASSED] 16 VFs
[06:43:33] [PASSED] 17 VFs
[06:43:33] [PASSED] 18 VFs
[06:43:33] [PASSED] 19 VFs
[06:43:33] [PASSED] 20 VFs
[06:43:33] [PASSED] 21 VFs
[06:43:33] [PASSED] 22 VFs
[06:43:33] [PASSED] 23 VFs
[06:43:33] [PASSED] 24 VFs
[06:43:33] [PASSED] 25 VFs
[06:43:33] [PASSED] 26 VFs
[06:43:33] [PASSED] 27 VFs
[06:43:33] [PASSED] 28 VFs
[06:43:33] [PASSED] 29 VFs
[06:43:33] [PASSED] 30 VFs
[06:43:33] [PASSED] 31 VFs
[06:43:33] [PASSED] 32 VFs
[06:43:33] [PASSED] 33 VFs
[06:43:33] [PASSED] 34 VFs
[06:43:33] [PASSED] 35 VFs
[06:43:33] [PASSED] 36 VFs
[06:43:33] [PASSED] 37 VFs
[06:43:33] [PASSED] 38 VFs
[06:43:33] [PASSED] 39 VFs
[06:43:33] [PASSED] 40 VFs
[06:43:33] [PASSED] 41 VFs
[06:43:33] [PASSED] 42 VFs
[06:43:33] [PASSED] 43 VFs
[06:43:33] [PASSED] 44 VFs
[06:43:33] [PASSED] 45 VFs
[06:43:33] [PASSED] 46 VFs
[06:43:33] [PASSED] 47 VFs
[06:43:33] [PASSED] 48 VFs
[06:43:33] [PASSED] 49 VFs
[06:43:33] [PASSED] 50 VFs
[06:43:33] [PASSED] 51 VFs
[06:43:33] [PASSED] 52 VFs
[06:43:33] [PASSED] 53 VFs
[06:43:33] [PASSED] 54 VFs
[06:43:33] [PASSED] 55 VFs
[06:43:33] [PASSED] 56 VFs
[06:43:33] [PASSED] 57 VFs
[06:43:33] [PASSED] 58 VFs
[06:43:33] [PASSED] 59 VFs
[06:43:33] [PASSED] 60 VFs
[06:43:33] [PASSED] 61 VFs
[06:43:33] [PASSED] 62 VFs
[06:43:33] [PASSED] 63 VFs
[06:43:33] ================== [PASSED] fair_contexts ==================
[06:43:33] ===================== fair_doorbells ======================
[06:43:33] [PASSED] 1 VF
[06:43:33] [PASSED] 2 VFs
[06:43:33] [PASSED] 3 VFs
[06:43:33] [PASSED] 4 VFs
[06:43:33] [PASSED] 5 VFs
[06:43:33] [PASSED] 6 VFs
[06:43:33] [PASSED] 7 VFs
[06:43:33] [PASSED] 8 VFs
[06:43:33] [PASSED] 9 VFs
[06:43:33] [PASSED] 10 VFs
[06:43:33] [PASSED] 11 VFs
[06:43:33] [PASSED] 12 VFs
[06:43:33] [PASSED] 13 VFs
[06:43:33] [PASSED] 14 VFs
[06:43:33] [PASSED] 15 VFs
[06:43:33] [PASSED] 16 VFs
[06:43:33] [PASSED] 17 VFs
[06:43:33] [PASSED] 18 VFs
[06:43:33] [PASSED] 19 VFs
[06:43:33] [PASSED] 20 VFs
[06:43:33] [PASSED] 21 VFs
[06:43:33] [PASSED] 22 VFs
[06:43:33] [PASSED] 23 VFs
[06:43:33] [PASSED] 24 VFs
[06:43:33] [PASSED] 25 VFs
[06:43:33] [PASSED] 26 VFs
[06:43:33] [PASSED] 27 VFs
[06:43:33] [PASSED] 28 VFs
[06:43:33] [PASSED] 29 VFs
[06:43:33] [PASSED] 30 VFs
[06:43:33] [PASSED] 31 VFs
[06:43:33] [PASSED] 32 VFs
[06:43:33] [PASSED] 33 VFs
[06:43:33] [PASSED] 34 VFs
[06:43:33] [PASSED] 35 VFs
[06:43:33] [PASSED] 36 VFs
[06:43:33] [PASSED] 37 VFs
[06:43:33] [PASSED] 38 VFs
[06:43:33] [PASSED] 39 VFs
[06:43:33] [PASSED] 40 VFs
[06:43:33] [PASSED] 41 VFs
[06:43:33] [PASSED] 42 VFs
[06:43:33] [PASSED] 43 VFs
[06:43:33] [PASSED] 44 VFs
[06:43:33] [PASSED] 45 VFs
[06:43:33] [PASSED] 46 VFs
[06:43:33] [PASSED] 47 VFs
[06:43:33] [PASSED] 48 VFs
[06:43:33] [PASSED] 49 VFs
[06:43:33] [PASSED] 50 VFs
[06:43:33] [PASSED] 51 VFs
[06:43:33] [PASSED] 52 VFs
[06:43:33] [PASSED] 53 VFs
[06:43:33] [PASSED] 54 VFs
[06:43:33] [PASSED] 55 VFs
[06:43:33] [PASSED] 56 VFs
[06:43:33] [PASSED] 57 VFs
[06:43:33] [PASSED] 58 VFs
[06:43:33] [PASSED] 59 VFs
[06:43:33] [PASSED] 60 VFs
[06:43:33] [PASSED] 61 VFs
[06:43:33] [PASSED] 62 VFs
[06:43:33] [PASSED] 63 VFs
[06:43:33] ================= [PASSED] fair_doorbells ==================
[06:43:33] ======================== fair_ggtt ========================
[06:43:33] [PASSED] 1 VF
[06:43:33] [PASSED] 2 VFs
[06:43:33] [PASSED] 3 VFs
[06:43:33] [PASSED] 4 VFs
[06:43:33] [PASSED] 5 VFs
[06:43:33] [PASSED] 6 VFs
[06:43:33] [PASSED] 7 VFs
[06:43:33] [PASSED] 8 VFs
[06:43:33] [PASSED] 9 VFs
[06:43:33] [PASSED] 10 VFs
[06:43:33] [PASSED] 11 VFs
[06:43:33] [PASSED] 12 VFs
[06:43:33] [PASSED] 13 VFs
[06:43:33] [PASSED] 14 VFs
[06:43:33] [PASSED] 15 VFs
[06:43:33] [PASSED] 16 VFs
[06:43:33] [PASSED] 17 VFs
[06:43:33] [PASSED] 18 VFs
[06:43:33] [PASSED] 19 VFs
[06:43:33] [PASSED] 20 VFs
[06:43:33] [PASSED] 21 VFs
[06:43:33] [PASSED] 22 VFs
[06:43:33] [PASSED] 23 VFs
[06:43:33] [PASSED] 24 VFs
[06:43:33] [PASSED] 25 VFs
[06:43:33] [PASSED] 26 VFs
[06:43:33] [PASSED] 27 VFs
[06:43:33] [PASSED] 28 VFs
[06:43:33] [PASSED] 29 VFs
[06:43:33] [PASSED] 30 VFs
[06:43:33] [PASSED] 31 VFs
[06:43:33] [PASSED] 32 VFs
[06:43:33] [PASSED] 33 VFs
[06:43:33] [PASSED] 34 VFs
[06:43:33] [PASSED] 35 VFs
[06:43:33] [PASSED] 36 VFs
[06:43:33] [PASSED] 37 VFs
[06:43:33] [PASSED] 38 VFs
[06:43:33] [PASSED] 39 VFs
[06:43:33] [PASSED] 40 VFs
[06:43:33] [PASSED] 41 VFs
[06:43:33] [PASSED] 42 VFs
[06:43:33] [PASSED] 43 VFs
[06:43:33] [PASSED] 44 VFs
[06:43:33] [PASSED] 45 VFs
[06:43:33] [PASSED] 46 VFs
[06:43:33] [PASSED] 47 VFs
[06:43:33] [PASSED] 48 VFs
[06:43:33] [PASSED] 49 VFs
[06:43:33] [PASSED] 50 VFs
[06:43:33] [PASSED] 51 VFs
[06:43:33] [PASSED] 52 VFs
[06:43:33] [PASSED] 53 VFs
[06:43:33] [PASSED] 54 VFs
[06:43:33] [PASSED] 55 VFs
[06:43:33] [PASSED] 56 VFs
[06:43:33] [PASSED] 57 VFs
[06:43:33] [PASSED] 58 VFs
[06:43:33] [PASSED] 59 VFs
[06:43:33] [PASSED] 60 VFs
[06:43:33] [PASSED] 61 VFs
[06:43:33] [PASSED] 62 VFs
[06:43:33] [PASSED] 63 VFs
[06:43:33] ==================== [PASSED] fair_ggtt ====================
[06:43:33] ================== [PASSED] pf_gt_config ===================
[06:43:33] ===================== lmtt (1 subtest) =====================
[06:43:33] ======================== test_ops =========================
[06:43:33] [PASSED] 2-level
[06:43:33] [PASSED] multi-level
[06:43:33] ==================== [PASSED] test_ops =====================
[06:43:33] ====================== [PASSED] lmtt =======================
[06:43:33] ================= pf_service (11 subtests) =================
[06:43:33] [PASSED] pf_negotiate_any
[06:43:33] [PASSED] pf_negotiate_base_match
[06:43:33] [PASSED] pf_negotiate_base_newer
[06:43:33] [PASSED] pf_negotiate_base_next
[06:43:33] [SKIPPED] pf_negotiate_base_older
[06:43:33] [PASSED] pf_negotiate_base_prev
[06:43:33] [PASSED] pf_negotiate_latest_match
[06:43:33] [PASSED] pf_negotiate_latest_newer
[06:43:33] [PASSED] pf_negotiate_latest_next
[06:43:33] [SKIPPED] pf_negotiate_latest_older
[06:43:33] [SKIPPED] pf_negotiate_latest_prev
[06:43:33] =================== [PASSED] pf_service ====================
[06:43:33] ================= xe_guc_g2g (2 subtests) ==================
[06:43:33] ============== xe_live_guc_g2g_kunit_default ==============
[06:43:33] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[06:43:33] ============== xe_live_guc_g2g_kunit_allmem ===============
[06:43:33] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[06:43:33] =================== [SKIPPED] xe_guc_g2g ===================
[06:43:33] =================== xe_mocs (2 subtests) ===================
[06:43:33] ================ xe_live_mocs_kernel_kunit ================
[06:43:33] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[06:43:33] ================ xe_live_mocs_reset_kunit =================
[06:43:33] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[06:43:33] ==================== [SKIPPED] xe_mocs =====================
[06:43:33] ================= xe_migrate (2 subtests) ==================
[06:43:33] ================= xe_migrate_sanity_kunit =================
[06:43:33] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[06:43:33] ================== xe_validate_ccs_kunit ==================
[06:43:33] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[06:43:33] =================== [SKIPPED] xe_migrate ===================
[06:43:33] ================== xe_dma_buf (1 subtest) ==================
[06:43:33] ==================== xe_dma_buf_kunit =====================
[06:43:33] ================ [SKIPPED] xe_dma_buf_kunit ================
[06:43:33] =================== [SKIPPED] xe_dma_buf ===================
[06:43:33] ================= xe_bo_shrink (1 subtest) =================
[06:43:33] =================== xe_bo_shrink_kunit ====================
[06:43:33] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[06:43:33] ================== [SKIPPED] xe_bo_shrink ==================
[06:43:33] ==================== xe_bo (2 subtests) ====================
[06:43:33] ================== xe_ccs_migrate_kunit ===================
[06:43:33] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[06:43:33] ==================== xe_bo_evict_kunit ====================
[06:43:33] =============== [SKIPPED] xe_bo_evict_kunit ================
[06:43:33] ===================== [SKIPPED] xe_bo ======================
[06:43:33] ==================== args (13 subtests) ====================
[06:43:33] [PASSED] count_args_test
[06:43:33] [PASSED] call_args_example
[06:43:33] [PASSED] call_args_test
[06:43:33] [PASSED] drop_first_arg_example
[06:43:33] [PASSED] drop_first_arg_test
[06:43:33] [PASSED] first_arg_example
[06:43:33] [PASSED] first_arg_test
[06:43:33] [PASSED] last_arg_example
[06:43:33] [PASSED] last_arg_test
[06:43:33] [PASSED] pick_arg_example
[06:43:33] [PASSED] if_args_example
[06:43:33] [PASSED] if_args_test
[06:43:33] [PASSED] sep_comma_example
[06:43:33] ====================== [PASSED] args =======================
[06:43:33] =================== xe_pci (3 subtests) ====================
[06:43:33] ==================== check_graphics_ip ====================
[06:43:33] [PASSED] 12.00 Xe_LP
[06:43:33] [PASSED] 12.10 Xe_LP+
[06:43:33] [PASSED] 12.55 Xe_HPG
[06:43:33] [PASSED] 12.60 Xe_HPC
[06:43:33] [PASSED] 12.70 Xe_LPG
[06:43:33] [PASSED] 12.71 Xe_LPG
[06:43:33] [PASSED] 12.74 Xe_LPG+
[06:43:33] [PASSED] 20.01 Xe2_HPG
[06:43:33] [PASSED] 20.02 Xe2_HPG
[06:43:33] [PASSED] 20.04 Xe2_LPG
[06:43:33] [PASSED] 30.00 Xe3_LPG
[06:43:33] [PASSED] 30.01 Xe3_LPG
[06:43:33] [PASSED] 30.03 Xe3_LPG
[06:43:33] [PASSED] 30.04 Xe3_LPG
[06:43:33] [PASSED] 30.05 Xe3_LPG
[06:43:33] [PASSED] 35.11 Xe3p_XPC
[06:43:33] ================ [PASSED] check_graphics_ip ================
[06:43:33] ===================== check_media_ip ======================
[06:43:33] [PASSED] 12.00 Xe_M
[06:43:33] [PASSED] 12.55 Xe_HPM
[06:43:33] [PASSED] 13.00 Xe_LPM+
[06:43:33] [PASSED] 13.01 Xe2_HPM
[06:43:33] [PASSED] 20.00 Xe2_LPM
[06:43:33] [PASSED] 30.00 Xe3_LPM
[06:43:33] [PASSED] 30.02 Xe3_LPM
[06:43:33] [PASSED] 35.00 Xe3p_LPM
[06:43:33] [PASSED] 35.03 Xe3p_HPM
[06:43:33] ================= [PASSED] check_media_ip ==================
[06:43:33] =================== check_platform_desc ===================
[06:43:33] [PASSED] 0x9A60 (TIGERLAKE)
[06:43:33] [PASSED] 0x9A68 (TIGERLAKE)
[06:43:33] [PASSED] 0x9A70 (TIGERLAKE)
[06:43:33] [PASSED] 0x9A40 (TIGERLAKE)
[06:43:33] [PASSED] 0x9A49 (TIGERLAKE)
[06:43:33] [PASSED] 0x9A59 (TIGERLAKE)
[06:43:33] [PASSED] 0x9A78 (TIGERLAKE)
[06:43:33] [PASSED] 0x9AC0 (TIGERLAKE)
[06:43:33] [PASSED] 0x9AC9 (TIGERLAKE)
[06:43:33] [PASSED] 0x9AD9 (TIGERLAKE)
[06:43:33] [PASSED] 0x9AF8 (TIGERLAKE)
[06:43:33] [PASSED] 0x4C80 (ROCKETLAKE)
[06:43:33] [PASSED] 0x4C8A (ROCKETLAKE)
[06:43:33] [PASSED] 0x4C8B (ROCKETLAKE)
[06:43:33] [PASSED] 0x4C8C (ROCKETLAKE)
[06:43:33] [PASSED] 0x4C90 (ROCKETLAKE)
[06:43:33] [PASSED] 0x4C9A (ROCKETLAKE)
[06:43:33] [PASSED] 0x4680 (ALDERLAKE_S)
[06:43:33] [PASSED] 0x4682 (ALDERLAKE_S)
[06:43:33] [PASSED] 0x4688 (ALDERLAKE_S)
[06:43:33] [PASSED] 0x468A (ALDERLAKE_S)
[06:43:33] [PASSED] 0x468B (ALDERLAKE_S)
[06:43:33] [PASSED] 0x4690 (ALDERLAKE_S)
[06:43:33] [PASSED] 0x4692 (ALDERLAKE_S)
[06:43:33] [PASSED] 0x4693 (ALDERLAKE_S)
[06:43:33] [PASSED] 0x46A0 (ALDERLAKE_P)
[06:43:33] [PASSED] 0x46A1 (ALDERLAKE_P)
[06:43:33] [PASSED] 0x46A2 (ALDERLAKE_P)
[06:43:33] [PASSED] 0x46A3 (ALDERLAKE_P)
[06:43:33] [PASSED] 0x46A6 (ALDERLAKE_P)
[06:43:33] [PASSED] 0x46A8 (ALDERLAKE_P)
[06:43:33] [PASSED] 0x46AA (ALDERLAKE_P)
[06:43:33] [PASSED] 0x462A (ALDERLAKE_P)
[06:43:33] [PASSED] 0x4626 (ALDERLAKE_P)
[06:43:33] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[06:43:33] [PASSED] 0x46B0 (ALDERLAKE_P)
[06:43:33] [PASSED] 0x46B1 (ALDERLAKE_P)
[06:43:33] [PASSED] 0x46B2 (ALDERLAKE_P)
[06:43:33] [PASSED] 0x46B3 (ALDERLAKE_P)
[06:43:33] [PASSED] 0x46C0 (ALDERLAKE_P)
[06:43:33] [PASSED] 0x46C1 (ALDERLAKE_P)
[06:43:33] [PASSED] 0x46C2 (ALDERLAKE_P)
[06:43:33] [PASSED] 0x46C3 (ALDERLAKE_P)
[06:43:33] [PASSED] 0x46D0 (ALDERLAKE_N)
[06:43:33] [PASSED] 0x46D1 (ALDERLAKE_N)
[06:43:33] [PASSED] 0x46D2 (ALDERLAKE_N)
[06:43:33] [PASSED] 0x46D3 (ALDERLAKE_N)
[06:43:33] [PASSED] 0x46D4 (ALDERLAKE_N)
[06:43:33] [PASSED] 0xA721 (ALDERLAKE_P)
[06:43:33] [PASSED] 0xA7A1 (ALDERLAKE_P)
[06:43:33] [PASSED] 0xA7A9 (ALDERLAKE_P)
[06:43:33] [PASSED] 0xA7AC (ALDERLAKE_P)
[06:43:33] [PASSED] 0xA7AD (ALDERLAKE_P)
[06:43:33] [PASSED] 0xA720 (ALDERLAKE_P)
[06:43:33] [PASSED] 0xA7A0 (ALDERLAKE_P)
[06:43:33] [PASSED] 0xA7A8 (ALDERLAKE_P)
[06:43:33] [PASSED] 0xA7AA (ALDERLAKE_P)
[06:43:33] [PASSED] 0xA7AB (ALDERLAKE_P)
[06:43:33] [PASSED] 0xA780 (ALDERLAKE_S)
[06:43:33] [PASSED] 0xA781 (ALDERLAKE_S)
[06:43:33] [PASSED] 0xA782 (ALDERLAKE_S)
[06:43:33] [PASSED] 0xA783 (ALDERLAKE_S)
[06:43:33] [PASSED] 0xA788 (ALDERLAKE_S)
[06:43:33] [PASSED] 0xA789 (ALDERLAKE_S)
[06:43:33] [PASSED] 0xA78A (ALDERLAKE_S)
[06:43:33] [PASSED] 0xA78B (ALDERLAKE_S)
[06:43:33] [PASSED] 0x4905 (DG1)
[06:43:33] [PASSED] 0x4906 (DG1)
[06:43:33] [PASSED] 0x4907 (DG1)
[06:43:33] [PASSED] 0x4908 (DG1)
[06:43:33] [PASSED] 0x4909 (DG1)
[06:43:33] [PASSED] 0x56C0 (DG2)
[06:43:33] [PASSED] 0x56C2 (DG2)
[06:43:33] [PASSED] 0x56C1 (DG2)
[06:43:33] [PASSED] 0x7D51 (METEORLAKE)
[06:43:33] [PASSED] 0x7DD1 (METEORLAKE)
[06:43:33] [PASSED] 0x7D41 (METEORLAKE)
[06:43:33] [PASSED] 0x7D67 (METEORLAKE)
[06:43:33] [PASSED] 0xB640 (METEORLAKE)
[06:43:33] [PASSED] 0x56A0 (DG2)
[06:43:33] [PASSED] 0x56A1 (DG2)
[06:43:33] [PASSED] 0x56A2 (DG2)
[06:43:33] [PASSED] 0x56BE (DG2)
[06:43:33] [PASSED] 0x56BF (DG2)
[06:43:33] [PASSED] 0x5690 (DG2)
[06:43:33] [PASSED] 0x5691 (DG2)
[06:43:33] [PASSED] 0x5692 (DG2)
[06:43:33] [PASSED] 0x56A5 (DG2)
[06:43:33] [PASSED] 0x56A6 (DG2)
[06:43:33] [PASSED] 0x56B0 (DG2)
[06:43:33] [PASSED] 0x56B1 (DG2)
[06:43:33] [PASSED] 0x56BA (DG2)
[06:43:33] [PASSED] 0x56BB (DG2)
[06:43:33] [PASSED] 0x56BC (DG2)
[06:43:33] [PASSED] 0x56BD (DG2)
[06:43:33] [PASSED] 0x5693 (DG2)
[06:43:33] [PASSED] 0x5694 (DG2)
[06:43:33] [PASSED] 0x5695 (DG2)
[06:43:33] [PASSED] 0x56A3 (DG2)
[06:43:33] [PASSED] 0x56A4 (DG2)
[06:43:33] [PASSED] 0x56B2 (DG2)
[06:43:33] [PASSED] 0x56B3 (DG2)
[06:43:33] [PASSED] 0x5696 (DG2)
[06:43:33] [PASSED] 0x5697 (DG2)
[06:43:33] [PASSED] 0xB69 (PVC)
[06:43:33] [PASSED] 0xB6E (PVC)
[06:43:33] [PASSED] 0xBD4 (PVC)
[06:43:33] [PASSED] 0xBD5 (PVC)
[06:43:33] [PASSED] 0xBD6 (PVC)
[06:43:33] [PASSED] 0xBD7 (PVC)
[06:43:33] [PASSED] 0xBD8 (PVC)
[06:43:33] [PASSED] 0xBD9 (PVC)
[06:43:33] [PASSED] 0xBDA (PVC)
[06:43:33] [PASSED] 0xBDB (PVC)
[06:43:33] [PASSED] 0xBE0 (PVC)
[06:43:33] [PASSED] 0xBE1 (PVC)
[06:43:33] [PASSED] 0xBE5 (PVC)
[06:43:33] [PASSED] 0x7D40 (METEORLAKE)
[06:43:33] [PASSED] 0x7D45 (METEORLAKE)
[06:43:33] [PASSED] 0x7D55 (METEORLAKE)
[06:43:33] [PASSED] 0x7D60 (METEORLAKE)
[06:43:33] [PASSED] 0x7DD5 (METEORLAKE)
[06:43:33] [PASSED] 0x6420 (LUNARLAKE)
[06:43:33] [PASSED] 0x64A0 (LUNARLAKE)
[06:43:33] [PASSED] 0x64B0 (LUNARLAKE)
[06:43:33] [PASSED] 0xE202 (BATTLEMAGE)
[06:43:33] [PASSED] 0xE209 (BATTLEMAGE)
[06:43:33] [PASSED] 0xE20B (BATTLEMAGE)
[06:43:33] [PASSED] 0xE20C (BATTLEMAGE)
[06:43:33] [PASSED] 0xE20D (BATTLEMAGE)
[06:43:33] [PASSED] 0xE210 (BATTLEMAGE)
[06:43:33] [PASSED] 0xE211 (BATTLEMAGE)
[06:43:33] [PASSED] 0xE212 (BATTLEMAGE)
[06:43:33] [PASSED] 0xE216 (BATTLEMAGE)
[06:43:33] [PASSED] 0xE220 (BATTLEMAGE)
[06:43:33] [PASSED] 0xE221 (BATTLEMAGE)
[06:43:33] [PASSED] 0xE222 (BATTLEMAGE)
[06:43:33] [PASSED] 0xE223 (BATTLEMAGE)
[06:43:33] [PASSED] 0xB080 (PANTHERLAKE)
[06:43:33] [PASSED] 0xB081 (PANTHERLAKE)
[06:43:33] [PASSED] 0xB082 (PANTHERLAKE)
[06:43:33] [PASSED] 0xB083 (PANTHERLAKE)
[06:43:33] [PASSED] 0xB084 (PANTHERLAKE)
[06:43:33] [PASSED] 0xB085 (PANTHERLAKE)
[06:43:33] [PASSED] 0xB086 (PANTHERLAKE)
[06:43:33] [PASSED] 0xB087 (PANTHERLAKE)
[06:43:33] [PASSED] 0xB08F (PANTHERLAKE)
[06:43:33] [PASSED] 0xB090 (PANTHERLAKE)
[06:43:33] [PASSED] 0xB0A0 (PANTHERLAKE)
[06:43:33] [PASSED] 0xB0B0 (PANTHERLAKE)
[06:43:33] [PASSED] 0xFD80 (PANTHERLAKE)
[06:43:33] [PASSED] 0xFD81 (PANTHERLAKE)
[06:43:33] [PASSED] 0xD740 (NOVALAKE_S)
[06:43:33] [PASSED] 0xD741 (NOVALAKE_S)
[06:43:33] [PASSED] 0xD742 (NOVALAKE_S)
[06:43:33] [PASSED] 0xD743 (NOVALAKE_S)
[06:43:33] [PASSED] 0xD744 (NOVALAKE_S)
[06:43:33] [PASSED] 0xD745 (NOVALAKE_S)
[06:43:33] [PASSED] 0x674C (CRESCENTISLAND)
[06:43:33] =============== [PASSED] check_platform_desc ===============
[06:43:33] ===================== [PASSED] xe_pci ======================
[06:43:33] =================== xe_rtp (2 subtests) ====================
[06:43:33] =============== xe_rtp_process_to_sr_tests ================
[06:43:33] [PASSED] coalesce-same-reg
[06:43:33] [PASSED] no-match-no-add
[06:43:33] [PASSED] match-or
[06:43:33] [PASSED] match-or-xfail
[06:43:34] [PASSED] no-match-no-add-multiple-rules
[06:43:34] [PASSED] two-regs-two-entries
[06:43:34] [PASSED] clr-one-set-other
[06:43:34] [PASSED] set-field
[06:43:34] [PASSED] conflict-duplicate
[06:43:34] [PASSED] conflict-not-disjoint
[06:43:34] [PASSED] conflict-reg-type
[06:43:34] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[06:43:34] ================== xe_rtp_process_tests ===================
[06:43:34] [PASSED] active1
[06:43:34] [PASSED] active2
[06:43:34] [PASSED] active-inactive
[06:43:34] [PASSED] inactive-active
[06:43:34] [PASSED] inactive-1st_or_active-inactive
[06:43:34] [PASSED] inactive-2nd_or_active-inactive
[06:43:34] [PASSED] inactive-last_or_active-inactive
[06:43:34] [PASSED] inactive-no_or_active-inactive
[06:43:34] ============== [PASSED] xe_rtp_process_tests ===============
[06:43:34] ===================== [PASSED] xe_rtp ======================
[06:43:34] ==================== xe_wa (1 subtest) =====================
[06:43:34] ======================== xe_wa_gt =========================
[06:43:34] [PASSED] TIGERLAKE B0
[06:43:34] [PASSED] DG1 A0
[06:43:34] [PASSED] DG1 B0
[06:43:34] [PASSED] ALDERLAKE_S A0
[06:43:34] [PASSED] ALDERLAKE_S B0
[06:43:34] [PASSED] ALDERLAKE_S C0
[06:43:34] [PASSED] ALDERLAKE_S D0
[06:43:34] [PASSED] ALDERLAKE_P A0
[06:43:34] [PASSED] ALDERLAKE_P B0
[06:43:34] [PASSED] ALDERLAKE_P C0
[06:43:34] [PASSED] ALDERLAKE_S RPLS D0
[06:43:34] [PASSED] ALDERLAKE_P RPLU E0
[06:43:34] [PASSED] DG2 G10 C0
[06:43:34] [PASSED] DG2 G11 B1
[06:43:34] [PASSED] DG2 G12 A1
[06:43:34] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[06:43:34] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[06:43:34] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[06:43:34] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[06:43:34] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[06:43:34] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[06:43:34] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[06:43:34] ==================== [PASSED] xe_wa_gt =====================
[06:43:34] ====================== [PASSED] xe_wa ======================
[06:43:34] ============================================================
[06:43:34] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[06:43:34] Elapsed time: 36.081s total, 4.201s configuring, 31.410s building, 0.457s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[06:43:34] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[06:43:35] 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
[06:44:01] Starting KUnit Kernel (1/1)...
[06:44:01] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[06:44:01] ============ drm_test_pick_cmdline (2 subtests) ============
[06:44:01] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[06:44:01] =============== drm_test_pick_cmdline_named ===============
[06:44:01] [PASSED] NTSC
[06:44:01] [PASSED] NTSC-J
[06:44:01] [PASSED] PAL
[06:44:01] [PASSED] PAL-M
[06:44:01] =========== [PASSED] drm_test_pick_cmdline_named ===========
[06:44:01] ============== [PASSED] drm_test_pick_cmdline ==============
[06:44:01] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[06:44:01] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[06:44:01] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[06:44:01] =========== drm_validate_clone_mode (2 subtests) ===========
[06:44:01] ============== drm_test_check_in_clone_mode ===============
[06:44:01] [PASSED] in_clone_mode
[06:44:01] [PASSED] not_in_clone_mode
[06:44:01] ========== [PASSED] drm_test_check_in_clone_mode ===========
[06:44:01] =============== drm_test_check_valid_clones ===============
[06:44:01] [PASSED] not_in_clone_mode
[06:44:01] [PASSED] valid_clone
[06:44:01] [PASSED] invalid_clone
[06:44:01] =========== [PASSED] drm_test_check_valid_clones ===========
[06:44:01] ============= [PASSED] drm_validate_clone_mode =============
[06:44:01] ============= drm_validate_modeset (1 subtest) =============
[06:44:01] [PASSED] drm_test_check_connector_changed_modeset
[06:44:01] ============== [PASSED] drm_validate_modeset ===============
[06:44:01] ====== drm_test_bridge_get_current_state (2 subtests) ======
[06:44:01] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[06:44:01] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[06:44:01] ======== [PASSED] drm_test_bridge_get_current_state ========
[06:44:01] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[06:44:01] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[06:44:01] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[06:44:01] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[06:44:01] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[06:44:01] ============== drm_bridge_alloc (2 subtests) ===============
[06:44:01] [PASSED] drm_test_drm_bridge_alloc_basic
[06:44:01] [PASSED] drm_test_drm_bridge_alloc_get_put
[06:44:01] ================ [PASSED] drm_bridge_alloc =================
[06:44:01] ================== drm_buddy (9 subtests) ==================
[06:44:01] [PASSED] drm_test_buddy_alloc_limit
[06:44:01] [PASSED] drm_test_buddy_alloc_optimistic
[06:44:01] [PASSED] drm_test_buddy_alloc_pessimistic
[06:44:01] [PASSED] drm_test_buddy_alloc_pathological
[06:44:01] [PASSED] drm_test_buddy_alloc_contiguous
[06:44:01] [PASSED] drm_test_buddy_alloc_clear
[06:44:01] [PASSED] drm_test_buddy_alloc_range_bias
[06:44:01] [PASSED] drm_test_buddy_fragmentation_performance
[06:44:01] [PASSED] drm_test_buddy_alloc_exceeds_max_order
[06:44:01] ==================== [PASSED] drm_buddy ====================
[06:44:01] ============= drm_cmdline_parser (40 subtests) =============
[06:44:01] [PASSED] drm_test_cmdline_force_d_only
[06:44:01] [PASSED] drm_test_cmdline_force_D_only_dvi
[06:44:01] [PASSED] drm_test_cmdline_force_D_only_hdmi
[06:44:01] [PASSED] drm_test_cmdline_force_D_only_not_digital
[06:44:01] [PASSED] drm_test_cmdline_force_e_only
[06:44:01] [PASSED] drm_test_cmdline_res
[06:44:01] [PASSED] drm_test_cmdline_res_vesa
[06:44:01] [PASSED] drm_test_cmdline_res_vesa_rblank
[06:44:01] [PASSED] drm_test_cmdline_res_rblank
[06:44:01] [PASSED] drm_test_cmdline_res_bpp
[06:44:01] [PASSED] drm_test_cmdline_res_refresh
[06:44:01] [PASSED] drm_test_cmdline_res_bpp_refresh
[06:44:01] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[06:44:01] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[06:44:01] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[06:44:01] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[06:44:01] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[06:44:01] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[06:44:01] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[06:44:01] [PASSED] drm_test_cmdline_res_margins_force_on
[06:44:01] [PASSED] drm_test_cmdline_res_vesa_margins
[06:44:01] [PASSED] drm_test_cmdline_name
[06:44:01] [PASSED] drm_test_cmdline_name_bpp
[06:44:01] [PASSED] drm_test_cmdline_name_option
[06:44:01] [PASSED] drm_test_cmdline_name_bpp_option
[06:44:01] [PASSED] drm_test_cmdline_rotate_0
[06:44:01] [PASSED] drm_test_cmdline_rotate_90
[06:44:01] [PASSED] drm_test_cmdline_rotate_180
[06:44:01] [PASSED] drm_test_cmdline_rotate_270
[06:44:01] [PASSED] drm_test_cmdline_hmirror
[06:44:01] [PASSED] drm_test_cmdline_vmirror
[06:44:01] [PASSED] drm_test_cmdline_margin_options
[06:44:01] [PASSED] drm_test_cmdline_multiple_options
[06:44:01] [PASSED] drm_test_cmdline_bpp_extra_and_option
[06:44:01] [PASSED] drm_test_cmdline_extra_and_option
[06:44:01] [PASSED] drm_test_cmdline_freestanding_options
[06:44:01] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[06:44:01] [PASSED] drm_test_cmdline_panel_orientation
[06:44:01] ================ drm_test_cmdline_invalid =================
[06:44:01] [PASSED] margin_only
[06:44:01] [PASSED] interlace_only
[06:44:01] [PASSED] res_missing_x
[06:44:01] [PASSED] res_missing_y
[06:44:01] [PASSED] res_bad_y
[06:44:01] [PASSED] res_missing_y_bpp
[06:44:01] [PASSED] res_bad_bpp
[06:44:01] [PASSED] res_bad_refresh
[06:44:01] [PASSED] res_bpp_refresh_force_on_off
[06:44:01] [PASSED] res_invalid_mode
[06:44:01] [PASSED] res_bpp_wrong_place_mode
[06:44:01] [PASSED] name_bpp_refresh
[06:44:01] [PASSED] name_refresh
[06:44:01] [PASSED] name_refresh_wrong_mode
[06:44:01] [PASSED] name_refresh_invalid_mode
[06:44:01] [PASSED] rotate_multiple
[06:44:01] [PASSED] rotate_invalid_val
[06:44:01] [PASSED] rotate_truncated
[06:44:01] [PASSED] invalid_option
[06:44:01] [PASSED] invalid_tv_option
[06:44:01] [PASSED] truncated_tv_option
[06:44:01] ============ [PASSED] drm_test_cmdline_invalid =============
[06:44:01] =============== drm_test_cmdline_tv_options ===============
[06:44:01] [PASSED] NTSC
[06:44:01] [PASSED] NTSC_443
[06:44:01] [PASSED] NTSC_J
[06:44:01] [PASSED] PAL
[06:44:01] [PASSED] PAL_M
[06:44:01] [PASSED] PAL_N
[06:44:01] [PASSED] SECAM
[06:44:01] [PASSED] MONO_525
[06:44:01] [PASSED] MONO_625
[06:44:01] =========== [PASSED] drm_test_cmdline_tv_options ===========
[06:44:01] =============== [PASSED] drm_cmdline_parser ================
[06:44:01] ========== drmm_connector_hdmi_init (20 subtests) ==========
[06:44:01] [PASSED] drm_test_connector_hdmi_init_valid
[06:44:01] [PASSED] drm_test_connector_hdmi_init_bpc_8
[06:44:01] [PASSED] drm_test_connector_hdmi_init_bpc_10
[06:44:01] [PASSED] drm_test_connector_hdmi_init_bpc_12
[06:44:01] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[06:44:01] [PASSED] drm_test_connector_hdmi_init_bpc_null
[06:44:01] [PASSED] drm_test_connector_hdmi_init_formats_empty
[06:44:01] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[06:44:01] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[06:44:01] [PASSED] supported_formats=0x9 yuv420_allowed=1
[06:44:01] [PASSED] supported_formats=0x9 yuv420_allowed=0
[06:44:01] [PASSED] supported_formats=0x3 yuv420_allowed=1
[06:44:01] [PASSED] supported_formats=0x3 yuv420_allowed=0
[06:44:01] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[06:44:01] [PASSED] drm_test_connector_hdmi_init_null_ddc
[06:44:01] [PASSED] drm_test_connector_hdmi_init_null_product
[06:44:01] [PASSED] drm_test_connector_hdmi_init_null_vendor
[06:44:01] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[06:44:01] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[06:44:01] [PASSED] drm_test_connector_hdmi_init_product_valid
[06:44:01] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[06:44:01] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[06:44:01] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[06:44:01] ========= drm_test_connector_hdmi_init_type_valid =========
[06:44:01] [PASSED] HDMI-A
[06:44:01] [PASSED] HDMI-B
[06:44:01] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[06:44:01] ======== drm_test_connector_hdmi_init_type_invalid ========
[06:44:01] [PASSED] Unknown
[06:44:01] [PASSED] VGA
[06:44:01] [PASSED] DVI-I
[06:44:01] [PASSED] DVI-D
[06:44:01] [PASSED] DVI-A
[06:44:01] [PASSED] Composite
[06:44:01] [PASSED] SVIDEO
[06:44:01] [PASSED] LVDS
[06:44:01] [PASSED] Component
[06:44:01] [PASSED] DIN
[06:44:01] [PASSED] DP
[06:44:01] [PASSED] TV
[06:44:01] [PASSED] eDP
[06:44:01] [PASSED] Virtual
[06:44:01] [PASSED] DSI
[06:44:01] [PASSED] DPI
[06:44:01] [PASSED] Writeback
[06:44:01] [PASSED] SPI
[06:44:01] [PASSED] USB
[06:44:01] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[06:44:01] ============ [PASSED] drmm_connector_hdmi_init =============
[06:44:01] ============= drmm_connector_init (3 subtests) =============
[06:44:01] [PASSED] drm_test_drmm_connector_init
[06:44:01] [PASSED] drm_test_drmm_connector_init_null_ddc
[06:44:01] ========= drm_test_drmm_connector_init_type_valid =========
[06:44:01] [PASSED] Unknown
[06:44:01] [PASSED] VGA
[06:44:01] [PASSED] DVI-I
[06:44:01] [PASSED] DVI-D
[06:44:01] [PASSED] DVI-A
[06:44:01] [PASSED] Composite
[06:44:01] [PASSED] SVIDEO
[06:44:01] [PASSED] LVDS
[06:44:01] [PASSED] Component
[06:44:01] [PASSED] DIN
[06:44:01] [PASSED] DP
[06:44:01] [PASSED] HDMI-A
[06:44:01] [PASSED] HDMI-B
[06:44:01] [PASSED] TV
[06:44:01] [PASSED] eDP
[06:44:01] [PASSED] Virtual
[06:44:01] [PASSED] DSI
[06:44:01] [PASSED] DPI
[06:44:01] [PASSED] Writeback
[06:44:01] [PASSED] SPI
[06:44:01] [PASSED] USB
[06:44:01] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[06:44:01] =============== [PASSED] drmm_connector_init ===============
[06:44:01] ========= drm_connector_dynamic_init (6 subtests) ==========
[06:44:01] [PASSED] drm_test_drm_connector_dynamic_init
[06:44:01] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[06:44:01] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[06:44:01] [PASSED] drm_test_drm_connector_dynamic_init_properties
[06:44:01] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[06:44:01] [PASSED] Unknown
[06:44:01] [PASSED] VGA
[06:44:01] [PASSED] DVI-I
[06:44:01] [PASSED] DVI-D
[06:44:01] [PASSED] DVI-A
[06:44:01] [PASSED] Composite
[06:44:01] [PASSED] SVIDEO
[06:44:01] [PASSED] LVDS
[06:44:01] [PASSED] Component
[06:44:01] [PASSED] DIN
[06:44:01] [PASSED] DP
[06:44:01] [PASSED] HDMI-A
[06:44:01] [PASSED] HDMI-B
[06:44:01] [PASSED] TV
[06:44:01] [PASSED] eDP
[06:44:01] [PASSED] Virtual
[06:44:01] [PASSED] DSI
[06:44:01] [PASSED] DPI
[06:44:01] [PASSED] Writeback
[06:44:01] [PASSED] SPI
[06:44:01] [PASSED] USB
[06:44:01] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[06:44:01] ======== drm_test_drm_connector_dynamic_init_name =========
[06:44:01] [PASSED] Unknown
[06:44:01] [PASSED] VGA
[06:44:01] [PASSED] DVI-I
[06:44:01] [PASSED] DVI-D
[06:44:01] [PASSED] DVI-A
[06:44:01] [PASSED] Composite
[06:44:01] [PASSED] SVIDEO
[06:44:01] [PASSED] LVDS
[06:44:01] [PASSED] Component
[06:44:01] [PASSED] DIN
[06:44:01] [PASSED] DP
[06:44:01] [PASSED] HDMI-A
[06:44:01] [PASSED] HDMI-B
[06:44:01] [PASSED] TV
[06:44:01] [PASSED] eDP
[06:44:01] [PASSED] Virtual
[06:44:01] [PASSED] DSI
[06:44:01] [PASSED] DPI
[06:44:01] [PASSED] Writeback
[06:44:01] [PASSED] SPI
[06:44:01] [PASSED] USB
[06:44:01] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[06:44:01] =========== [PASSED] drm_connector_dynamic_init ============
[06:44:01] ==== drm_connector_dynamic_register_early (4 subtests) =====
[06:44:01] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[06:44:01] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[06:44:01] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[06:44:01] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[06:44:01] ====== [PASSED] drm_connector_dynamic_register_early =======
[06:44:01] ======= drm_connector_dynamic_register (7 subtests) ========
[06:44:01] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[06:44:01] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[06:44:01] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[06:44:01] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[06:44:01] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[06:44:01] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[06:44:01] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[06:44:01] ========= [PASSED] drm_connector_dynamic_register ==========
[06:44:01] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[06:44:01] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[06:44:01] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[06:44:01] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[06:44:01] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[06:44:01] ========== drm_test_get_tv_mode_from_name_valid ===========
[06:44:01] [PASSED] NTSC
[06:44:01] [PASSED] NTSC-443
[06:44:01] [PASSED] NTSC-J
[06:44:01] [PASSED] PAL
[06:44:01] [PASSED] PAL-M
[06:44:01] [PASSED] PAL-N
[06:44:01] [PASSED] SECAM
[06:44:01] [PASSED] Mono
[06:44:01] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[06:44:01] [PASSED] drm_test_get_tv_mode_from_name_truncated
[06:44:01] ============ [PASSED] drm_get_tv_mode_from_name ============
[06:44:01] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[06:44:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[06:44:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[06:44:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[06:44:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[06:44:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[06:44:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[06:44:01] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[06:44:01] [PASSED] VIC 96
[06:44:01] [PASSED] VIC 97
[06:44:01] [PASSED] VIC 101
[06:44:01] [PASSED] VIC 102
[06:44:01] [PASSED] VIC 106
[06:44:01] [PASSED] VIC 107
[06:44:01] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[06:44:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[06:44:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[06:44:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[06:44:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[06:44:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[06:44:01] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[06:44:01] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[06:44:01] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[06:44:01] [PASSED] Automatic
[06:44:01] [PASSED] Full
[06:44:01] [PASSED] Limited 16:235
[06:44:01] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[06:44:01] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[06:44:01] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[06:44:01] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[06:44:01] === drm_test_drm_hdmi_connector_get_output_format_name ====
[06:44:01] [PASSED] RGB
[06:44:01] [PASSED] YUV 4:2:0
[06:44:01] [PASSED] YUV 4:2:2
[06:44:01] [PASSED] YUV 4:4:4
[06:44:01] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[06:44:01] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[06:44:01] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[06:44:01] ============= drm_damage_helper (21 subtests) ==============
[06:44:01] [PASSED] drm_test_damage_iter_no_damage
[06:44:01] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[06:44:01] [PASSED] drm_test_damage_iter_no_damage_src_moved
[06:44:01] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[06:44:01] [PASSED] drm_test_damage_iter_no_damage_not_visible
[06:44:01] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[06:44:01] [PASSED] drm_test_damage_iter_no_damage_no_fb
[06:44:01] [PASSED] drm_test_damage_iter_simple_damage
[06:44:01] [PASSED] drm_test_damage_iter_single_damage
[06:44:01] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[06:44:01] [PASSED] drm_test_damage_iter_single_damage_outside_src
[06:44:01] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[06:44:01] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[06:44:01] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[06:44:01] [PASSED] drm_test_damage_iter_single_damage_src_moved
[06:44:01] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[06:44:01] [PASSED] drm_test_damage_iter_damage
[06:44:01] [PASSED] drm_test_damage_iter_damage_one_intersect
[06:44:01] [PASSED] drm_test_damage_iter_damage_one_outside
[06:44:01] [PASSED] drm_test_damage_iter_damage_src_moved
[06:44:01] [PASSED] drm_test_damage_iter_damage_not_visible
[06:44:01] ================ [PASSED] drm_damage_helper ================
[06:44:01] ============== drm_dp_mst_helper (3 subtests) ==============
[06:44:01] ============== drm_test_dp_mst_calc_pbn_mode ==============
[06:44:01] [PASSED] Clock 154000 BPP 30 DSC disabled
[06:44:01] [PASSED] Clock 234000 BPP 30 DSC disabled
[06:44:01] [PASSED] Clock 297000 BPP 24 DSC disabled
[06:44:01] [PASSED] Clock 332880 BPP 24 DSC enabled
[06:44:01] [PASSED] Clock 324540 BPP 24 DSC enabled
[06:44:01] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[06:44:01] ============== drm_test_dp_mst_calc_pbn_div ===============
[06:44:01] [PASSED] Link rate 2000000 lane count 4
[06:44:01] [PASSED] Link rate 2000000 lane count 2
[06:44:01] [PASSED] Link rate 2000000 lane count 1
[06:44:01] [PASSED] Link rate 1350000 lane count 4
[06:44:01] [PASSED] Link rate 1350000 lane count 2
[06:44:01] [PASSED] Link rate 1350000 lane count 1
[06:44:01] [PASSED] Link rate 1000000 lane count 4
[06:44:01] [PASSED] Link rate 1000000 lane count 2
[06:44:01] [PASSED] Link rate 1000000 lane count 1
[06:44:01] [PASSED] Link rate 810000 lane count 4
[06:44:01] [PASSED] Link rate 810000 lane count 2
[06:44:01] [PASSED] Link rate 810000 lane count 1
[06:44:01] [PASSED] Link rate 540000 lane count 4
[06:44:01] [PASSED] Link rate 540000 lane count 2
[06:44:01] [PASSED] Link rate 540000 lane count 1
[06:44:01] [PASSED] Link rate 270000 lane count 4
[06:44:01] [PASSED] Link rate 270000 lane count 2
[06:44:01] [PASSED] Link rate 270000 lane count 1
[06:44:01] [PASSED] Link rate 162000 lane count 4
[06:44:01] [PASSED] Link rate 162000 lane count 2
[06:44:01] [PASSED] Link rate 162000 lane count 1
[06:44:01] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[06:44:01] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[06:44:01] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[06:44:01] [PASSED] DP_POWER_UP_PHY with port number
[06:44:01] [PASSED] DP_POWER_DOWN_PHY with port number
[06:44:01] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[06:44:01] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[06:44:01] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[06:44:01] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[06:44:01] [PASSED] DP_QUERY_PAYLOAD with port number
[06:44:01] [PASSED] DP_QUERY_PAYLOAD with VCPI
[06:44:01] [PASSED] DP_REMOTE_DPCD_READ with port number
[06:44:01] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[06:44:01] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[06:44:01] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[06:44:01] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[06:44:01] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[06:44:01] [PASSED] DP_REMOTE_I2C_READ with port number
[06:44:01] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[06:44:01] [PASSED] DP_REMOTE_I2C_READ with transactions array
[06:44:01] [PASSED] DP_REMOTE_I2C_WRITE with port number
[06:44:01] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[06:44:01] [PASSED] DP_REMOTE_I2C_WRITE with data array
[06:44:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[06:44:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[06:44:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[06:44:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[06:44:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[06:44:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[06:44:01] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[06:44:01] ================ [PASSED] drm_dp_mst_helper ================
[06:44:01] ================== drm_exec (7 subtests) ===================
[06:44:01] [PASSED] sanitycheck
[06:44:01] [PASSED] test_lock
[06:44:01] [PASSED] test_lock_unlock
[06:44:01] [PASSED] test_duplicates
[06:44:01] [PASSED] test_prepare
[06:44:01] [PASSED] test_prepare_array
[06:44:01] [PASSED] test_multiple_loops
[06:44:01] ==================== [PASSED] drm_exec =====================
[06:44:01] =========== drm_format_helper_test (17 subtests) ===========
[06:44:01] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[06:44:01] [PASSED] single_pixel_source_buffer
[06:44:01] [PASSED] single_pixel_clip_rectangle
[06:44:01] [PASSED] well_known_colors
[06:44:01] [PASSED] destination_pitch
[06:44:01] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[06:44:01] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[06:44:01] [PASSED] single_pixel_source_buffer
[06:44:01] [PASSED] single_pixel_clip_rectangle
[06:44:01] [PASSED] well_known_colors
[06:44:01] [PASSED] destination_pitch
[06:44:01] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[06:44:01] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[06:44:01] [PASSED] single_pixel_source_buffer
[06:44:01] [PASSED] single_pixel_clip_rectangle
[06:44:01] [PASSED] well_known_colors
[06:44:01] [PASSED] destination_pitch
[06:44:01] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[06:44:01] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[06:44:01] [PASSED] single_pixel_source_buffer
[06:44:01] [PASSED] single_pixel_clip_rectangle
[06:44:01] [PASSED] well_known_colors
[06:44:01] [PASSED] destination_pitch
[06:44:01] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[06:44:01] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[06:44:01] [PASSED] single_pixel_source_buffer
[06:44:01] [PASSED] single_pixel_clip_rectangle
[06:44:01] [PASSED] well_known_colors
[06:44:01] [PASSED] destination_pitch
[06:44:01] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[06:44:01] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[06:44:01] [PASSED] single_pixel_source_buffer
[06:44:01] [PASSED] single_pixel_clip_rectangle
[06:44:01] [PASSED] well_known_colors
[06:44:01] [PASSED] destination_pitch
[06:44:01] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[06:44:01] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[06:44:01] [PASSED] single_pixel_source_buffer
[06:44:01] [PASSED] single_pixel_clip_rectangle
[06:44:01] [PASSED] well_known_colors
[06:44:01] [PASSED] destination_pitch
[06:44:01] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[06:44:01] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[06:44:01] [PASSED] single_pixel_source_buffer
[06:44:01] [PASSED] single_pixel_clip_rectangle
[06:44:01] [PASSED] well_known_colors
[06:44:01] [PASSED] destination_pitch
[06:44:01] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[06:44:01] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[06:44:01] [PASSED] single_pixel_source_buffer
[06:44:01] [PASSED] single_pixel_clip_rectangle
[06:44:01] [PASSED] well_known_colors
[06:44:01] [PASSED] destination_pitch
[06:44:01] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[06:44:01] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[06:44:01] [PASSED] single_pixel_source_buffer
[06:44:01] [PASSED] single_pixel_clip_rectangle
[06:44:01] [PASSED] well_known_colors
[06:44:01] [PASSED] destination_pitch
[06:44:01] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[06:44:01] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[06:44:01] [PASSED] single_pixel_source_buffer
[06:44:01] [PASSED] single_pixel_clip_rectangle
[06:44:01] [PASSED] well_known_colors
[06:44:01] [PASSED] destination_pitch
[06:44:01] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[06:44:01] ============== drm_test_fb_xrgb8888_to_mono ===============
[06:44:01] [PASSED] single_pixel_source_buffer
[06:44:01] [PASSED] single_pixel_clip_rectangle
[06:44:01] [PASSED] well_known_colors
[06:44:01] [PASSED] destination_pitch
[06:44:01] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[06:44:01] ==================== drm_test_fb_swab =====================
[06:44:01] [PASSED] single_pixel_source_buffer
[06:44:01] [PASSED] single_pixel_clip_rectangle
[06:44:01] [PASSED] well_known_colors
[06:44:01] [PASSED] destination_pitch
[06:44:01] ================ [PASSED] drm_test_fb_swab =================
[06:44:01] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[06:44:01] [PASSED] single_pixel_source_buffer
[06:44:01] [PASSED] single_pixel_clip_rectangle
[06:44:01] [PASSED] well_known_colors
[06:44:01] [PASSED] destination_pitch
[06:44:01] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[06:44:01] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[06:44:01] [PASSED] single_pixel_source_buffer
[06:44:01] [PASSED] single_pixel_clip_rectangle
[06:44:01] [PASSED] well_known_colors
[06:44:01] [PASSED] destination_pitch
[06:44:01] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[06:44:01] ================= drm_test_fb_clip_offset =================
[06:44:01] [PASSED] pass through
[06:44:01] [PASSED] horizontal offset
[06:44:01] [PASSED] vertical offset
[06:44:01] [PASSED] horizontal and vertical offset
[06:44:01] [PASSED] horizontal offset (custom pitch)
[06:44:01] [PASSED] vertical offset (custom pitch)
[06:44:01] [PASSED] horizontal and vertical offset (custom pitch)
[06:44:01] ============= [PASSED] drm_test_fb_clip_offset =============
[06:44:01] =================== drm_test_fb_memcpy ====================
[06:44:01] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[06:44:01] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[06:44:01] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[06:44:01] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[06:44:01] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[06:44:01] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[06:44:01] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[06:44:01] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[06:44:01] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[06:44:01] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[06:44:01] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[06:44:01] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[06:44:01] =============== [PASSED] drm_test_fb_memcpy ================
[06:44:01] ============= [PASSED] drm_format_helper_test ==============
[06:44:01] ================= drm_format (18 subtests) =================
[06:44:01] [PASSED] drm_test_format_block_width_invalid
[06:44:01] [PASSED] drm_test_format_block_width_one_plane
[06:44:01] [PASSED] drm_test_format_block_width_two_plane
[06:44:01] [PASSED] drm_test_format_block_width_three_plane
[06:44:01] [PASSED] drm_test_format_block_width_tiled
[06:44:01] [PASSED] drm_test_format_block_height_invalid
[06:44:01] [PASSED] drm_test_format_block_height_one_plane
[06:44:01] [PASSED] drm_test_format_block_height_two_plane
[06:44:01] [PASSED] drm_test_format_block_height_three_plane
[06:44:01] [PASSED] drm_test_format_block_height_tiled
[06:44:01] [PASSED] drm_test_format_min_pitch_invalid
[06:44:01] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[06:44:01] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[06:44:01] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[06:44:01] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[06:44:01] [PASSED] drm_test_format_min_pitch_two_plane
[06:44:01] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[06:44:01] [PASSED] drm_test_format_min_pitch_tiled
[06:44:01] =================== [PASSED] drm_format ====================
[06:44:01] ============== drm_framebuffer (10 subtests) ===============
[06:44:01] ========== drm_test_framebuffer_check_src_coords ==========
[06:44:01] [PASSED] Success: source fits into fb
[06:44:01] [PASSED] Fail: overflowing fb with x-axis coordinate
[06:44:01] [PASSED] Fail: overflowing fb with y-axis coordinate
[06:44:01] [PASSED] Fail: overflowing fb with source width
[06:44:01] [PASSED] Fail: overflowing fb with source height
[06:44:01] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[06:44:01] [PASSED] drm_test_framebuffer_cleanup
[06:44:01] =============== drm_test_framebuffer_create ===============
[06:44:01] [PASSED] ABGR8888 normal sizes
[06:44:01] [PASSED] ABGR8888 max sizes
[06:44:01] [PASSED] ABGR8888 pitch greater than min required
[06:44:01] [PASSED] ABGR8888 pitch less than min required
[06:44:01] [PASSED] ABGR8888 Invalid width
[06:44:01] [PASSED] ABGR8888 Invalid buffer handle
[06:44:01] [PASSED] No pixel format
[06:44:01] [PASSED] ABGR8888 Width 0
[06:44:01] [PASSED] ABGR8888 Height 0
[06:44:01] [PASSED] ABGR8888 Out of bound height * pitch combination
[06:44:01] [PASSED] ABGR8888 Large buffer offset
[06:44:01] [PASSED] ABGR8888 Buffer offset for inexistent plane
[06:44:01] [PASSED] ABGR8888 Invalid flag
[06:44:01] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[06:44:01] [PASSED] ABGR8888 Valid buffer modifier
[06:44:01] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[06:44:01] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[06:44:01] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[06:44:01] [PASSED] NV12 Normal sizes
[06:44:01] [PASSED] NV12 Max sizes
[06:44:01] [PASSED] NV12 Invalid pitch
[06:44:01] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[06:44:01] [PASSED] NV12 different modifier per-plane
[06:44:01] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[06:44:01] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[06:44:01] [PASSED] NV12 Modifier for inexistent plane
[06:44:01] [PASSED] NV12 Handle for inexistent plane
[06:44:01] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[06:44:01] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[06:44:01] [PASSED] YVU420 Normal sizes
[06:44:01] [PASSED] YVU420 Max sizes
[06:44:01] [PASSED] YVU420 Invalid pitch
[06:44:01] [PASSED] YVU420 Different pitches
[06:44:01] [PASSED] YVU420 Different buffer offsets/pitches
[06:44:01] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[06:44:01] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[06:44:01] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[06:44:01] [PASSED] YVU420 Valid modifier
[06:44:01] [PASSED] YVU420 Different modifiers per plane
[06:44:01] [PASSED] YVU420 Modifier for inexistent plane
[06:44:01] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[06:44:01] [PASSED] X0L2 Normal sizes
[06:44:01] [PASSED] X0L2 Max sizes
[06:44:01] [PASSED] X0L2 Invalid pitch
[06:44:01] [PASSED] X0L2 Pitch greater than minimum required
[06:44:01] [PASSED] X0L2 Handle for inexistent plane
[06:44:01] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[06:44:01] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[06:44:01] [PASSED] X0L2 Valid modifier
[06:44:01] [PASSED] X0L2 Modifier for inexistent plane
[06:44:01] =========== [PASSED] drm_test_framebuffer_create ===========
[06:44:01] [PASSED] drm_test_framebuffer_free
[06:44:01] [PASSED] drm_test_framebuffer_init
[06:44:01] [PASSED] drm_test_framebuffer_init_bad_format
[06:44:01] [PASSED] drm_test_framebuffer_init_dev_mismatch
[06:44:01] [PASSED] drm_test_framebuffer_lookup
[06:44:01] [PASSED] drm_test_framebuffer_lookup_inexistent
[06:44:01] [PASSED] drm_test_framebuffer_modifiers_not_supported
[06:44:01] ================= [PASSED] drm_framebuffer =================
[06:44:01] ================ drm_gem_shmem (8 subtests) ================
[06:44:01] [PASSED] drm_gem_shmem_test_obj_create
[06:44:01] [PASSED] drm_gem_shmem_test_obj_create_private
[06:44:01] [PASSED] drm_gem_shmem_test_pin_pages
[06:44:01] [PASSED] drm_gem_shmem_test_vmap
[06:44:01] [PASSED] drm_gem_shmem_test_get_sg_table
[06:44:01] [PASSED] drm_gem_shmem_test_get_pages_sgt
[06:44:01] [PASSED] drm_gem_shmem_test_madvise
[06:44:01] [PASSED] drm_gem_shmem_test_purge
[06:44:01] ================== [PASSED] drm_gem_shmem ==================
[06:44:01] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[06:44:01] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[06:44:01] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[06:44:01] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[06:44:01] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[06:44:01] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[06:44:01] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[06:44:01] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[06:44:01] [PASSED] Automatic
[06:44:01] [PASSED] Full
[06:44:01] [PASSED] Limited 16:235
[06:44:01] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[06:44:01] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[06:44:01] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[06:44:01] [PASSED] drm_test_check_disable_connector
[06:44:01] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[06:44:01] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[06:44:01] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[06:44:01] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[06:44:01] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[06:44:01] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[06:44:01] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[06:44:01] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[06:44:01] [PASSED] drm_test_check_output_bpc_dvi
[06:44:01] [PASSED] drm_test_check_output_bpc_format_vic_1
[06:44:01] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[06:44:01] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[06:44:01] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[06:44:01] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[06:44:01] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[06:44:01] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[06:44:01] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[06:44:01] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[06:44:01] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[06:44:01] [PASSED] drm_test_check_broadcast_rgb_value
[06:44:01] [PASSED] drm_test_check_bpc_8_value
[06:44:01] [PASSED] drm_test_check_bpc_10_value
[06:44:01] [PASSED] drm_test_check_bpc_12_value
[06:44:01] [PASSED] drm_test_check_format_value
[06:44:01] [PASSED] drm_test_check_tmds_char_value
[06:44:01] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[06:44:01] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[06:44:01] [PASSED] drm_test_check_mode_valid
[06:44:01] [PASSED] drm_test_check_mode_valid_reject
[06:44:01] [PASSED] drm_test_check_mode_valid_reject_rate
[06:44:01] [PASSED] drm_test_check_mode_valid_reject_max_clock
[06:44:01] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[06:44:01] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[06:44:01] [PASSED] drm_test_check_infoframes
[06:44:01] [PASSED] drm_test_check_reject_avi_infoframe
[06:44:01] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[06:44:01] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[06:44:01] [PASSED] drm_test_check_reject_audio_infoframe
[06:44:01] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[06:44:01] ================= drm_managed (2 subtests) =================
[06:44:01] [PASSED] drm_test_managed_release_action
[06:44:01] [PASSED] drm_test_managed_run_action
[06:44:01] =================== [PASSED] drm_managed ===================
[06:44:01] =================== drm_mm (6 subtests) ====================
[06:44:01] [PASSED] drm_test_mm_init
[06:44:01] [PASSED] drm_test_mm_debug
[06:44:01] [PASSED] drm_test_mm_align32
[06:44:01] [PASSED] drm_test_mm_align64
[06:44:01] [PASSED] drm_test_mm_lowest
[06:44:01] [PASSED] drm_test_mm_highest
[06:44:01] ===================== [PASSED] drm_mm ======================
[06:44:01] ============= drm_modes_analog_tv (5 subtests) =============
[06:44:01] [PASSED] drm_test_modes_analog_tv_mono_576i
[06:44:01] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[06:44:01] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[06:44:01] [PASSED] drm_test_modes_analog_tv_pal_576i
[06:44:01] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[06:44:01] =============== [PASSED] drm_modes_analog_tv ===============
[06:44:01] ============== drm_plane_helper (2 subtests) ===============
[06:44:01] =============== drm_test_check_plane_state ================
[06:44:01] [PASSED] clipping_simple
[06:44:01] [PASSED] clipping_rotate_reflect
[06:44:01] [PASSED] positioning_simple
[06:44:01] [PASSED] upscaling
[06:44:01] [PASSED] downscaling
[06:44:01] [PASSED] rounding1
[06:44:01] [PASSED] rounding2
[06:44:01] [PASSED] rounding3
[06:44:01] [PASSED] rounding4
[06:44:01] =========== [PASSED] drm_test_check_plane_state ============
[06:44:01] =========== drm_test_check_invalid_plane_state ============
[06:44:01] [PASSED] positioning_invalid
[06:44:01] [PASSED] upscaling_invalid
[06:44:01] [PASSED] downscaling_invalid
[06:44:01] ======= [PASSED] drm_test_check_invalid_plane_state ========
[06:44:01] ================ [PASSED] drm_plane_helper =================
[06:44:01] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[06:44:01] ====== drm_test_connector_helper_tv_get_modes_check =======
[06:44:01] [PASSED] None
[06:44:01] [PASSED] PAL
[06:44:01] [PASSED] NTSC
[06:44:01] [PASSED] Both, NTSC Default
[06:44:01] [PASSED] Both, PAL Default
[06:44:01] [PASSED] Both, NTSC Default, with PAL on command-line
[06:44:01] [PASSED] Both, PAL Default, with NTSC on command-line
[06:44:01] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[06:44:01] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[06:44:01] ================== drm_rect (9 subtests) ===================
[06:44:01] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[06:44:01] [PASSED] drm_test_rect_clip_scaled_not_clipped
[06:44:01] [PASSED] drm_test_rect_clip_scaled_clipped
[06:44:01] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[06:44:01] ================= drm_test_rect_intersect =================
[06:44:01] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[06:44:01] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[06:44:01] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[06:44:01] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[06:44:01] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[06:44:01] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[06:44:01] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[06:44:01] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[06:44:01] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[06:44:01] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[06:44:01] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[06:44:01] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[06:44:01] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[06:44:01] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[06:44:01] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
stty: 'standard input': Inappropriate ioctl for device
[06:44:01] ============= [PASSED] drm_test_rect_intersect =============
[06:44:01] ================ drm_test_rect_calc_hscale ================
[06:44:01] [PASSED] normal use
[06:44:01] [PASSED] out of max range
[06:44:01] [PASSED] out of min range
[06:44:01] [PASSED] zero dst
[06:44:01] [PASSED] negative src
[06:44:01] [PASSED] negative dst
[06:44:01] ============ [PASSED] drm_test_rect_calc_hscale ============
[06:44:01] ================ drm_test_rect_calc_vscale ================
[06:44:01] [PASSED] normal use
[06:44:01] [PASSED] out of max range
[06:44:01] [PASSED] out of min range
[06:44:01] [PASSED] zero dst
[06:44:01] [PASSED] negative src
[06:44:01] [PASSED] negative dst
[06:44:01] ============ [PASSED] drm_test_rect_calc_vscale ============
[06:44:01] ================== drm_test_rect_rotate ===================
[06:44:01] [PASSED] reflect-x
[06:44:01] [PASSED] reflect-y
[06:44:01] [PASSED] rotate-0
[06:44:01] [PASSED] rotate-90
[06:44:01] [PASSED] rotate-180
[06:44:01] [PASSED] rotate-270
[06:44:01] ============== [PASSED] drm_test_rect_rotate ===============
[06:44:01] ================ drm_test_rect_rotate_inv =================
[06:44:01] [PASSED] reflect-x
[06:44:01] [PASSED] reflect-y
[06:44:01] [PASSED] rotate-0
[06:44:01] [PASSED] rotate-90
[06:44:01] [PASSED] rotate-180
[06:44:01] [PASSED] rotate-270
[06:44:01] ============ [PASSED] drm_test_rect_rotate_inv =============
[06:44:01] ==================== [PASSED] drm_rect =====================
[06:44:01] ============ drm_sysfb_modeset_test (1 subtest) ============
[06:44:01] ============ drm_test_sysfb_build_fourcc_list =============
[06:44:01] [PASSED] no native formats
[06:44:01] [PASSED] XRGB8888 as native format
[06:44:01] [PASSED] remove duplicates
[06:44:01] [PASSED] convert alpha formats
[06:44:01] [PASSED] random formats
[06:44:01] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[06:44:01] ============= [PASSED] drm_sysfb_modeset_test ==============
[06:44:01] ================== drm_fixp (2 subtests) ===================
[06:44:01] [PASSED] drm_test_int2fixp
[06:44:01] [PASSED] drm_test_sm2fixp
[06:44:01] ==================== [PASSED] drm_fixp =====================
[06:44:01] ============================================================
[06:44:01] Testing complete. Ran 630 tests: passed: 630
[06:44:01] Elapsed time: 27.644s total, 1.699s configuring, 25.477s building, 0.430s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[06:44:01] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[06:44:03] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[06:44:13] Starting KUnit Kernel (1/1)...
[06:44:13] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[06:44:13] ================= ttm_device (5 subtests) ==================
[06:44:13] [PASSED] ttm_device_init_basic
[06:44:13] [PASSED] ttm_device_init_multiple
[06:44:13] [PASSED] ttm_device_fini_basic
[06:44:13] [PASSED] ttm_device_init_no_vma_man
[06:44:13] ================== ttm_device_init_pools ==================
[06:44:13] [PASSED] No DMA allocations, no DMA32 required
[06:44:13] [PASSED] DMA allocations, DMA32 required
[06:44:13] [PASSED] No DMA allocations, DMA32 required
[06:44:13] [PASSED] DMA allocations, no DMA32 required
[06:44:13] ============== [PASSED] ttm_device_init_pools ==============
[06:44:13] =================== [PASSED] ttm_device ====================
[06:44:13] ================== ttm_pool (8 subtests) ===================
[06:44:13] ================== ttm_pool_alloc_basic ===================
[06:44:13] [PASSED] One page
[06:44:13] [PASSED] More than one page
[06:44:13] [PASSED] Above the allocation limit
[06:44:13] [PASSED] One page, with coherent DMA mappings enabled
[06:44:13] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[06:44:13] ============== [PASSED] ttm_pool_alloc_basic ===============
[06:44:13] ============== ttm_pool_alloc_basic_dma_addr ==============
[06:44:13] [PASSED] One page
[06:44:13] [PASSED] More than one page
[06:44:13] [PASSED] Above the allocation limit
[06:44:13] [PASSED] One page, with coherent DMA mappings enabled
[06:44:13] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[06:44:13] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[06:44:13] [PASSED] ttm_pool_alloc_order_caching_match
[06:44:13] [PASSED] ttm_pool_alloc_caching_mismatch
[06:44:13] [PASSED] ttm_pool_alloc_order_mismatch
[06:44:13] [PASSED] ttm_pool_free_dma_alloc
[06:44:13] [PASSED] ttm_pool_free_no_dma_alloc
[06:44:13] [PASSED] ttm_pool_fini_basic
[06:44:13] ==================== [PASSED] ttm_pool =====================
[06:44:13] ================ ttm_resource (8 subtests) =================
[06:44:13] ================= ttm_resource_init_basic =================
[06:44:13] [PASSED] Init resource in TTM_PL_SYSTEM
[06:44:13] [PASSED] Init resource in TTM_PL_VRAM
[06:44:13] [PASSED] Init resource in a private placement
[06:44:13] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[06:44:13] ============= [PASSED] ttm_resource_init_basic =============
[06:44:13] [PASSED] ttm_resource_init_pinned
[06:44:13] [PASSED] ttm_resource_fini_basic
[06:44:13] [PASSED] ttm_resource_manager_init_basic
[06:44:13] [PASSED] ttm_resource_manager_usage_basic
[06:44:13] [PASSED] ttm_resource_manager_set_used_basic
[06:44:13] [PASSED] ttm_sys_man_alloc_basic
[06:44:13] [PASSED] ttm_sys_man_free_basic
[06:44:13] ================== [PASSED] ttm_resource ===================
[06:44:13] =================== ttm_tt (15 subtests) ===================
[06:44:13] ==================== ttm_tt_init_basic ====================
[06:44:13] [PASSED] Page-aligned size
[06:44:13] [PASSED] Extra pages requested
[06:44:13] ================ [PASSED] ttm_tt_init_basic ================
[06:44:13] [PASSED] ttm_tt_init_misaligned
[06:44:13] [PASSED] ttm_tt_fini_basic
[06:44:13] [PASSED] ttm_tt_fini_sg
[06:44:13] [PASSED] ttm_tt_fini_shmem
[06:44:13] [PASSED] ttm_tt_create_basic
[06:44:13] [PASSED] ttm_tt_create_invalid_bo_type
[06:44:13] [PASSED] ttm_tt_create_ttm_exists
[06:44:13] [PASSED] ttm_tt_create_failed
[06:44:13] [PASSED] ttm_tt_destroy_basic
[06:44:13] [PASSED] ttm_tt_populate_null_ttm
[06:44:13] [PASSED] ttm_tt_populate_populated_ttm
[06:44:13] [PASSED] ttm_tt_unpopulate_basic
[06:44:13] [PASSED] ttm_tt_unpopulate_empty_ttm
[06:44:13] [PASSED] ttm_tt_swapin_basic
[06:44:13] ===================== [PASSED] ttm_tt ======================
[06:44:13] =================== ttm_bo (14 subtests) ===================
[06:44:13] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[06:44:13] [PASSED] Cannot be interrupted and sleeps
[06:44:13] [PASSED] Cannot be interrupted, locks straight away
[06:44:13] [PASSED] Can be interrupted, sleeps
[06:44:13] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[06:44:13] [PASSED] ttm_bo_reserve_locked_no_sleep
[06:44:13] [PASSED] ttm_bo_reserve_no_wait_ticket
[06:44:13] [PASSED] ttm_bo_reserve_double_resv
[06:44:13] [PASSED] ttm_bo_reserve_interrupted
[06:44:13] [PASSED] ttm_bo_reserve_deadlock
[06:44:13] [PASSED] ttm_bo_unreserve_basic
[06:44:13] [PASSED] ttm_bo_unreserve_pinned
[06:44:13] [PASSED] ttm_bo_unreserve_bulk
[06:44:13] [PASSED] ttm_bo_fini_basic
[06:44:13] [PASSED] ttm_bo_fini_shared_resv
[06:44:13] [PASSED] ttm_bo_pin_basic
[06:44:13] [PASSED] ttm_bo_pin_unpin_resource
[06:44:13] [PASSED] ttm_bo_multiple_pin_one_unpin
[06:44:13] ===================== [PASSED] ttm_bo ======================
[06:44:13] ============== ttm_bo_validate (21 subtests) ===============
[06:44:13] ============== ttm_bo_init_reserved_sys_man ===============
[06:44:13] [PASSED] Buffer object for userspace
[06:44:13] [PASSED] Kernel buffer object
[06:44:13] [PASSED] Shared buffer object
[06:44:13] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[06:44:13] ============== ttm_bo_init_reserved_mock_man ==============
[06:44:13] [PASSED] Buffer object for userspace
[06:44:13] [PASSED] Kernel buffer object
[06:44:13] [PASSED] Shared buffer object
[06:44:13] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[06:44:13] [PASSED] ttm_bo_init_reserved_resv
[06:44:13] ================== ttm_bo_validate_basic ==================
[06:44:13] [PASSED] Buffer object for userspace
[06:44:13] [PASSED] Kernel buffer object
[06:44:13] [PASSED] Shared buffer object
[06:44:13] ============== [PASSED] ttm_bo_validate_basic ==============
[06:44:13] [PASSED] ttm_bo_validate_invalid_placement
[06:44:13] ============= ttm_bo_validate_same_placement ==============
[06:44:13] [PASSED] System manager
[06:44:13] [PASSED] VRAM manager
[06:44:13] ========= [PASSED] ttm_bo_validate_same_placement ==========
[06:44:13] [PASSED] ttm_bo_validate_failed_alloc
[06:44:13] [PASSED] ttm_bo_validate_pinned
[06:44:13] [PASSED] ttm_bo_validate_busy_placement
[06:44:13] ================ ttm_bo_validate_multihop =================
[06:44:13] [PASSED] Buffer object for userspace
[06:44:13] [PASSED] Kernel buffer object
[06:44:13] [PASSED] Shared buffer object
[06:44:13] ============ [PASSED] ttm_bo_validate_multihop =============
[06:44:13] ========== ttm_bo_validate_no_placement_signaled ==========
[06:44:13] [PASSED] Buffer object in system domain, no page vector
[06:44:13] [PASSED] Buffer object in system domain with an existing page vector
[06:44:13] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[06:44:13] ======== ttm_bo_validate_no_placement_not_signaled ========
[06:44:13] [PASSED] Buffer object for userspace
[06:44:13] [PASSED] Kernel buffer object
[06:44:13] [PASSED] Shared buffer object
[06:44:13] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[06:44:13] [PASSED] ttm_bo_validate_move_fence_signaled
[06:44:13] ========= ttm_bo_validate_move_fence_not_signaled =========
[06:44:13] [PASSED] Waits for GPU
[06:44:13] [PASSED] Tries to lock straight away
[06:44:13] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[06:44:13] [PASSED] ttm_bo_validate_happy_evict
[06:44:13] [PASSED] ttm_bo_validate_all_pinned_evict
[06:44:13] [PASSED] ttm_bo_validate_allowed_only_evict
[06:44:13] [PASSED] ttm_bo_validate_deleted_evict
[06:44:13] [PASSED] ttm_bo_validate_busy_domain_evict
[06:44:13] [PASSED] ttm_bo_validate_evict_gutting
[06:44:13] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[06:44:13] ================= [PASSED] ttm_bo_validate =================
[06:44:13] ============================================================
[06:44:13] Testing complete. Ran 101 tests: passed: 101
[06:44:13] Elapsed time: 11.362s total, 1.671s configuring, 9.475s building, 0.179s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 48+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev2)
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (4 preceding siblings ...)
2026-01-29 6:44 ` ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev2) Patchwork
@ 2026-01-29 7:24 ` Patchwork
2026-01-30 22:07 ` [PATCH v3] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (21 subsequent siblings)
27 siblings, 0 replies; 48+ messages in thread
From: Patchwork @ 2026-01-29 7:24 UTC (permalink / raw)
To: Jia Yao; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1582 bytes --]
== Series Details ==
Series: drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev2)
URL : https://patchwork.freedesktop.org/series/160797/
State : success
== Summary ==
CI Bug Log - changes from xe-4467-6a3c9a03d943eb112c916c7419a837bc7de3a296_BAT -> xe-pw-160797v2_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-160797v2_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@xe_waitfence@abstime:
- bat-dg2-oem2: [TIMEOUT][1] ([Intel XE#6506]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4467-6a3c9a03d943eb112c916c7419a837bc7de3a296/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v2/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506
Build changes
-------------
* IGT: IGT_8723 -> IGT_8724
* Linux: xe-4467-6a3c9a03d943eb112c916c7419a837bc7de3a296 -> xe-pw-160797v2
IGT_8723: 8723
IGT_8724: 6a10d1136a4e856cc4ceb5b899c32b03ed8ddc5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4467-6a3c9a03d943eb112c916c7419a837bc7de3a296: 6a3c9a03d943eb112c916c7419a837bc7de3a296
xe-pw-160797v2: 160797v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v2/index.html
[-- Attachment #2: Type: text/html, Size: 2161 bytes --]
^ permalink raw reply [flat|nested] 48+ messages in thread
* Re: [PATCH v2] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise
2026-01-29 5:51 ` [PATCH v2] " Jia Yao
@ 2026-01-29 9:58 ` Matthew Auld
0 siblings, 0 replies; 48+ messages in thread
From: Matthew Auld @ 2026-01-29 9:58 UTC (permalink / raw)
To: Jia Yao, intel-xe; +Cc: Matthew Brost
On 29/01/2026 05:51, Jia Yao wrote:
> Add validation in xe_vm_madvise_ioctl() to reject PAT indices with
> XE_COH_NONE coherency mode when applied to CPU cached memory.
>
> Using coh_none with CPU cached buffers is a security issue. When the
> kernel clears pages before reallocation, the clear operation stays in
> CPU cache (dirty). GPU with coh_none can bypass CPU caches and read
> stale sensitive data directly from DRAM, potentially leaking data from
> previously freed pages of other processes.
>
> This aligns with the existing validation in vm_bind path
> (xe_vm_bind_ioctl_validate_bo).
>
> v2(Matthew brost)
> - Add fixes
> - Move one debug print to better place
>
> Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
> Cc: Matthew Brost <matthew.brost@intel.com>
> Signed-off-by: Jia Yao <jia.yao@intel.com>
Cc: <stable@vger.kernel.org> # v6.18+
In the commit title we should maybe tag with "drm/xe/uapi:", since this
is technically a uapi change and might be visible to UMD, AFAICT. With
that we should also probably Cc: UMD folks so there are no suprises with
this?
> ---
> drivers/gpu/drm/xe/xe_vm_madvise.c | 47 ++++++++++++++++++++++++++++++
> 1 file changed, 47 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c b/drivers/gpu/drm/xe/xe_vm_madvise.c
> index add9a6ca2390..50b82e821da7 100644
> --- a/drivers/gpu/drm/xe/xe_vm_madvise.c
> +++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
> @@ -352,6 +352,44 @@ static void xe_madvise_details_fini(struct xe_madvise_details *details)
> drm_pagemap_put(details->dpagemap);
> }
>
> +static bool check_pat_args_are_sane(struct xe_device *xe,
> + struct xe_vmas_in_madvise_range *madvise_range,
> + u16 pat_index)
> +{
> + u16 coh_mode = xe_pat_index_get_coh_mode(xe, pat_index);
> + int i;
> +
> + /*
> + * Using coh_none with CPU cached buffers is not allowed.
> + * Otherwise CPU page clearing can be bypassed, which is a
> + * security issue. GPU can directly access system memory and
> + * bypass CPU caches, potentially reading stale sensitive data
> + * from previously freed pages.
> + */
> + if (coh_mode != XE_COH_NONE)
> + return true;
> +
> + for (i = 0; i < madvise_range->num_vmas; i++) {
> + struct xe_vma *vma = madvise_range->vmas[i];
> + struct xe_bo *bo = xe_vma_bo(vma);
> +
> + if (bo) {
> + /* BO with WB caching + COH_NONE is not allowed */
> + if (XE_IOCTL_DBG(xe, bo->cpu_caching == DRM_XE_GEM_CPU_CACHING_WB))
> + return false;
> + /* Imported dma-buf without caching info, assume cached */
> + if (XE_IOCTL_DBG(xe, !bo->cpu_caching))
> + return false;
> + } else if (XE_IOCTL_DBG(xe, xe_vma_is_cpu_addr_mirror(vma)) ||
> + xe_vma_is_userptr(vma)) {
> + /* System memory (userptr/SVM) is always CPU cached */
> + return false;
> + }
> + }
> +
> + return true;
> +}
> +
> static bool check_bo_args_are_sane(struct xe_vm *vm, struct xe_vma **vmas,
> int num_vmas, u32 atomic_val)
> {
> @@ -442,6 +480,14 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void *data, struct drm_file *fil
> if (err || !madvise_range.num_vmas)
> goto madv_fini;
>
> + if (args->type == DRM_XE_MEM_RANGE_ATTR_PAT) {
> + if (!check_pat_args_are_sane(xe, &madvise_range,
> + args->pat_index.val)) {
> + err = -EINVAL;
> + goto free_vmas;
> + }
> + }
> +
> if (madvise_range.has_bo_vmas) {
> if (args->type == DRM_XE_MEM_RANGE_ATTR_ATOMIC) {
> if (!check_bo_args_are_sane(vm, madvise_range.vmas,
> @@ -485,6 +531,7 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void *data, struct drm_file *fil
> err_fini:
> if (madvise_range.has_bo_vmas)
> drm_exec_fini(&exec);
> +free_vmas:
> kfree(madvise_range.vmas);
> madvise_range.vmas = NULL;
> madv_fini:
^ permalink raw reply [flat|nested] 48+ messages in thread
* [PATCH v3] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (5 preceding siblings ...)
2026-01-29 7:24 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-01-30 22:07 ` Jia Yao
2026-02-03 2:54 ` Lin, Shuicheng
2026-02-04 15:13 ` Souza, Jose
2026-01-30 23:05 ` ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev3) Patchwork
` (20 subsequent siblings)
27 siblings, 2 replies; 48+ messages in thread
From: Jia Yao @ 2026-01-30 22:07 UTC (permalink / raw)
To: intel-xe
Cc: Jia Yao, stable, Mathew Alwin, Michal Mrozek, Matthew Brost,
Matthew Auld
Add validation in xe_vm_madvise_ioctl() to reject PAT indices with
XE_COH_NONE coherency mode when applied to CPU cached memory.
Using coh_none with CPU cached buffers is a security issue. When the
kernel clears pages before reallocation, the clear operation stays in
CPU cache (dirty). GPU with coh_none can bypass CPU caches and read
stale sensitive data directly from DRAM, potentially leaking data from
previously freed pages of other processes.
This aligns with the existing validation in vm_bind path
(xe_vm_bind_ioctl_validate_bo).
v2(Matthew brost)
- Add fixes
- Move one debug print to better place
v3(Matthew Auld)
- Should be drm/xe/uapi
- More Cc
Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
Cc: stable@vger.kernel.org # v6.18
Cc: Mathew Alwin <alwin.mathew@intel.com>
Cc: Michal Mrozek <michal.mrozek@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Jia Yao <jia.yao@intel.com>
---
drivers/gpu/drm/xe/xe_vm_madvise.c | 47 ++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c b/drivers/gpu/drm/xe/xe_vm_madvise.c
index add9a6ca2390..50b82e821da7 100644
--- a/drivers/gpu/drm/xe/xe_vm_madvise.c
+++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
@@ -352,6 +352,44 @@ static void xe_madvise_details_fini(struct xe_madvise_details *details)
drm_pagemap_put(details->dpagemap);
}
+static bool check_pat_args_are_sane(struct xe_device *xe,
+ struct xe_vmas_in_madvise_range *madvise_range,
+ u16 pat_index)
+{
+ u16 coh_mode = xe_pat_index_get_coh_mode(xe, pat_index);
+ int i;
+
+ /*
+ * Using coh_none with CPU cached buffers is not allowed.
+ * Otherwise CPU page clearing can be bypassed, which is a
+ * security issue. GPU can directly access system memory and
+ * bypass CPU caches, potentially reading stale sensitive data
+ * from previously freed pages.
+ */
+ if (coh_mode != XE_COH_NONE)
+ return true;
+
+ for (i = 0; i < madvise_range->num_vmas; i++) {
+ struct xe_vma *vma = madvise_range->vmas[i];
+ struct xe_bo *bo = xe_vma_bo(vma);
+
+ if (bo) {
+ /* BO with WB caching + COH_NONE is not allowed */
+ if (XE_IOCTL_DBG(xe, bo->cpu_caching == DRM_XE_GEM_CPU_CACHING_WB))
+ return false;
+ /* Imported dma-buf without caching info, assume cached */
+ if (XE_IOCTL_DBG(xe, !bo->cpu_caching))
+ return false;
+ } else if (XE_IOCTL_DBG(xe, xe_vma_is_cpu_addr_mirror(vma)) ||
+ xe_vma_is_userptr(vma)) {
+ /* System memory (userptr/SVM) is always CPU cached */
+ return false;
+ }
+ }
+
+ return true;
+}
+
static bool check_bo_args_are_sane(struct xe_vm *vm, struct xe_vma **vmas,
int num_vmas, u32 atomic_val)
{
@@ -442,6 +480,14 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void *data, struct drm_file *fil
if (err || !madvise_range.num_vmas)
goto madv_fini;
+ if (args->type == DRM_XE_MEM_RANGE_ATTR_PAT) {
+ if (!check_pat_args_are_sane(xe, &madvise_range,
+ args->pat_index.val)) {
+ err = -EINVAL;
+ goto free_vmas;
+ }
+ }
+
if (madvise_range.has_bo_vmas) {
if (args->type == DRM_XE_MEM_RANGE_ATTR_ATOMIC) {
if (!check_bo_args_are_sane(vm, madvise_range.vmas,
@@ -485,6 +531,7 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void *data, struct drm_file *fil
err_fini:
if (madvise_range.has_bo_vmas)
drm_exec_fini(&exec);
+free_vmas:
kfree(madvise_range.vmas);
madvise_range.vmas = NULL;
madv_fini:
--
2.43.0
^ permalink raw reply related [flat|nested] 48+ messages in thread
* ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev3)
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (6 preceding siblings ...)
2026-01-30 22:07 ` [PATCH v3] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
@ 2026-01-30 23:05 ` Patchwork
2026-01-30 23:44 ` ✓ Xe.CI.BAT: " Patchwork
` (19 subsequent siblings)
27 siblings, 0 replies; 48+ messages in thread
From: Patchwork @ 2026-01-30 23:05 UTC (permalink / raw)
To: Jia Yao; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev3)
URL : https://patchwork.freedesktop.org/series/160797/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[23:03:13] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:03:17] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=25
[23:03:57] Starting KUnit Kernel (1/1)...
[23:03:57] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[23:03:57] ================== guc_buf (11 subtests) ===================
[23:03:57] [PASSED] test_smallest
[23:03:57] [PASSED] test_largest
[23:03:57] [PASSED] test_granular
[23:03:57] [PASSED] test_unique
[23:03:57] [PASSED] test_overlap
[23:03:57] [PASSED] test_reusable
[23:03:57] [PASSED] test_too_big
[23:03:57] [PASSED] test_flush
[23:03:57] [PASSED] test_lookup
[23:03:57] [PASSED] test_data
[23:03:57] [PASSED] test_class
[23:03:57] ===================== [PASSED] guc_buf =====================
[23:03:57] =================== guc_dbm (7 subtests) ===================
[23:03:57] [PASSED] test_empty
[23:03:57] [PASSED] test_default
[23:03:57] ======================== test_size ========================
[23:03:57] [PASSED] 4
[23:03:57] [PASSED] 8
[23:03:57] [PASSED] 32
[23:03:57] [PASSED] 256
[23:03:57] ==================== [PASSED] test_size ====================
[23:03:57] ======================= test_reuse ========================
[23:03:57] [PASSED] 4
[23:03:57] [PASSED] 8
[23:03:57] [PASSED] 32
[23:03:57] [PASSED] 256
[23:03:57] =================== [PASSED] test_reuse ====================
[23:03:57] =================== test_range_overlap ====================
[23:03:57] [PASSED] 4
[23:03:57] [PASSED] 8
[23:03:57] [PASSED] 32
[23:03:57] [PASSED] 256
[23:03:57] =============== [PASSED] test_range_overlap ================
[23:03:57] =================== test_range_compact ====================
[23:03:57] [PASSED] 4
[23:03:57] [PASSED] 8
[23:03:57] [PASSED] 32
[23:03:57] [PASSED] 256
[23:03:57] =============== [PASSED] test_range_compact ================
[23:03:57] ==================== test_range_spare =====================
[23:03:57] [PASSED] 4
[23:03:57] [PASSED] 8
[23:03:57] [PASSED] 32
[23:03:57] [PASSED] 256
[23:03:57] ================ [PASSED] test_range_spare =================
[23:03:57] ===================== [PASSED] guc_dbm =====================
[23:03:57] =================== guc_idm (6 subtests) ===================
[23:03:57] [PASSED] bad_init
[23:03:57] [PASSED] no_init
[23:03:57] [PASSED] init_fini
[23:03:57] [PASSED] check_used
[23:03:57] [PASSED] check_quota
[23:03:57] [PASSED] check_all
[23:03:57] ===================== [PASSED] guc_idm =====================
[23:03:57] ================== no_relay (3 subtests) ===================
[23:03:57] [PASSED] xe_drops_guc2pf_if_not_ready
[23:03:57] [PASSED] xe_drops_guc2vf_if_not_ready
[23:03:57] [PASSED] xe_rejects_send_if_not_ready
[23:03:57] ==================== [PASSED] no_relay =====================
[23:03:57] ================== pf_relay (14 subtests) ==================
[23:03:57] [PASSED] pf_rejects_guc2pf_too_short
[23:03:57] [PASSED] pf_rejects_guc2pf_too_long
[23:03:57] [PASSED] pf_rejects_guc2pf_no_payload
[23:03:57] [PASSED] pf_fails_no_payload
[23:03:57] [PASSED] pf_fails_bad_origin
[23:03:57] [PASSED] pf_fails_bad_type
[23:03:57] [PASSED] pf_txn_reports_error
[23:03:57] [PASSED] pf_txn_sends_pf2guc
[23:03:57] [PASSED] pf_sends_pf2guc
[23:03:57] [SKIPPED] pf_loopback_nop
[23:03:57] [SKIPPED] pf_loopback_echo
[23:03:57] [SKIPPED] pf_loopback_fail
[23:03:57] [SKIPPED] pf_loopback_busy
[23:03:57] [SKIPPED] pf_loopback_retry
[23:03:57] ==================== [PASSED] pf_relay =====================
[23:03:57] ================== vf_relay (3 subtests) ===================
[23:03:57] [PASSED] vf_rejects_guc2vf_too_short
[23:03:57] [PASSED] vf_rejects_guc2vf_too_long
[23:03:57] [PASSED] vf_rejects_guc2vf_no_payload
[23:03:57] ==================== [PASSED] vf_relay =====================
[23:03:57] ================ pf_gt_config (6 subtests) =================
[23:03:57] [PASSED] fair_contexts_1vf
[23:03:57] [PASSED] fair_doorbells_1vf
[23:03:57] [PASSED] fair_ggtt_1vf
[23:03:57] ====================== fair_contexts ======================
[23:03:57] [PASSED] 1 VF
[23:03:57] [PASSED] 2 VFs
[23:03:57] [PASSED] 3 VFs
[23:03:57] [PASSED] 4 VFs
[23:03:57] [PASSED] 5 VFs
[23:03:57] [PASSED] 6 VFs
[23:03:57] [PASSED] 7 VFs
[23:03:57] [PASSED] 8 VFs
[23:03:57] [PASSED] 9 VFs
[23:03:57] [PASSED] 10 VFs
[23:03:57] [PASSED] 11 VFs
[23:03:57] [PASSED] 12 VFs
[23:03:57] [PASSED] 13 VFs
[23:03:57] [PASSED] 14 VFs
[23:03:57] [PASSED] 15 VFs
[23:03:57] [PASSED] 16 VFs
[23:03:57] [PASSED] 17 VFs
[23:03:57] [PASSED] 18 VFs
[23:03:57] [PASSED] 19 VFs
[23:03:57] [PASSED] 20 VFs
[23:03:57] [PASSED] 21 VFs
[23:03:57] [PASSED] 22 VFs
[23:03:57] [PASSED] 23 VFs
[23:03:57] [PASSED] 24 VFs
[23:03:57] [PASSED] 25 VFs
[23:03:57] [PASSED] 26 VFs
[23:03:57] [PASSED] 27 VFs
[23:03:57] [PASSED] 28 VFs
[23:03:57] [PASSED] 29 VFs
[23:03:57] [PASSED] 30 VFs
[23:03:57] [PASSED] 31 VFs
[23:03:57] [PASSED] 32 VFs
[23:03:57] [PASSED] 33 VFs
[23:03:57] [PASSED] 34 VFs
[23:03:57] [PASSED] 35 VFs
[23:03:57] [PASSED] 36 VFs
[23:03:57] [PASSED] 37 VFs
[23:03:57] [PASSED] 38 VFs
[23:03:57] [PASSED] 39 VFs
[23:03:57] [PASSED] 40 VFs
[23:03:57] [PASSED] 41 VFs
[23:03:57] [PASSED] 42 VFs
[23:03:57] [PASSED] 43 VFs
[23:03:57] [PASSED] 44 VFs
[23:03:57] [PASSED] 45 VFs
[23:03:57] [PASSED] 46 VFs
[23:03:57] [PASSED] 47 VFs
[23:03:57] [PASSED] 48 VFs
[23:03:57] [PASSED] 49 VFs
[23:03:57] [PASSED] 50 VFs
[23:03:57] [PASSED] 51 VFs
[23:03:57] [PASSED] 52 VFs
[23:03:57] [PASSED] 53 VFs
[23:03:57] [PASSED] 54 VFs
[23:03:57] [PASSED] 55 VFs
[23:03:57] [PASSED] 56 VFs
[23:03:57] [PASSED] 57 VFs
[23:03:57] [PASSED] 58 VFs
[23:03:57] [PASSED] 59 VFs
[23:03:57] [PASSED] 60 VFs
[23:03:57] [PASSED] 61 VFs
[23:03:57] [PASSED] 62 VFs
[23:03:57] [PASSED] 63 VFs
[23:03:57] ================== [PASSED] fair_contexts ==================
[23:03:57] ===================== fair_doorbells ======================
[23:03:57] [PASSED] 1 VF
[23:03:57] [PASSED] 2 VFs
[23:03:57] [PASSED] 3 VFs
[23:03:57] [PASSED] 4 VFs
[23:03:57] [PASSED] 5 VFs
[23:03:57] [PASSED] 6 VFs
[23:03:57] [PASSED] 7 VFs
[23:03:57] [PASSED] 8 VFs
[23:03:57] [PASSED] 9 VFs
[23:03:57] [PASSED] 10 VFs
[23:03:57] [PASSED] 11 VFs
[23:03:57] [PASSED] 12 VFs
[23:03:57] [PASSED] 13 VFs
[23:03:57] [PASSED] 14 VFs
[23:03:57] [PASSED] 15 VFs
[23:03:57] [PASSED] 16 VFs
[23:03:57] [PASSED] 17 VFs
[23:03:57] [PASSED] 18 VFs
[23:03:57] [PASSED] 19 VFs
[23:03:57] [PASSED] 20 VFs
[23:03:57] [PASSED] 21 VFs
[23:03:57] [PASSED] 22 VFs
[23:03:57] [PASSED] 23 VFs
[23:03:57] [PASSED] 24 VFs
[23:03:57] [PASSED] 25 VFs
[23:03:57] [PASSED] 26 VFs
[23:03:57] [PASSED] 27 VFs
[23:03:57] [PASSED] 28 VFs
[23:03:57] [PASSED] 29 VFs
[23:03:57] [PASSED] 30 VFs
[23:03:57] [PASSED] 31 VFs
[23:03:57] [PASSED] 32 VFs
[23:03:57] [PASSED] 33 VFs
[23:03:57] [PASSED] 34 VFs
[23:03:57] [PASSED] 35 VFs
[23:03:57] [PASSED] 36 VFs
[23:03:57] [PASSED] 37 VFs
[23:03:57] [PASSED] 38 VFs
[23:03:57] [PASSED] 39 VFs
[23:03:57] [PASSED] 40 VFs
[23:03:57] [PASSED] 41 VFs
[23:03:57] [PASSED] 42 VFs
[23:03:57] [PASSED] 43 VFs
[23:03:57] [PASSED] 44 VFs
[23:03:57] [PASSED] 45 VFs
[23:03:57] [PASSED] 46 VFs
[23:03:57] [PASSED] 47 VFs
[23:03:57] [PASSED] 48 VFs
[23:03:57] [PASSED] 49 VFs
[23:03:57] [PASSED] 50 VFs
[23:03:57] [PASSED] 51 VFs
[23:03:57] [PASSED] 52 VFs
[23:03:57] [PASSED] 53 VFs
[23:03:57] [PASSED] 54 VFs
[23:03:57] [PASSED] 55 VFs
[23:03:57] [PASSED] 56 VFs
[23:03:57] [PASSED] 57 VFs
[23:03:57] [PASSED] 58 VFs
[23:03:57] [PASSED] 59 VFs
[23:03:57] [PASSED] 60 VFs
[23:03:57] [PASSED] 61 VFs
[23:03:57] [PASSED] 62 VFs
[23:03:57] [PASSED] 63 VFs
[23:03:57] ================= [PASSED] fair_doorbells ==================
[23:03:57] ======================== fair_ggtt ========================
[23:03:57] [PASSED] 1 VF
[23:03:57] [PASSED] 2 VFs
[23:03:57] [PASSED] 3 VFs
[23:03:57] [PASSED] 4 VFs
[23:03:57] [PASSED] 5 VFs
[23:03:57] [PASSED] 6 VFs
[23:03:57] [PASSED] 7 VFs
[23:03:57] [PASSED] 8 VFs
[23:03:57] [PASSED] 9 VFs
[23:03:57] [PASSED] 10 VFs
[23:03:57] [PASSED] 11 VFs
[23:03:57] [PASSED] 12 VFs
[23:03:57] [PASSED] 13 VFs
[23:03:57] [PASSED] 14 VFs
[23:03:57] [PASSED] 15 VFs
[23:03:57] [PASSED] 16 VFs
[23:03:57] [PASSED] 17 VFs
[23:03:57] [PASSED] 18 VFs
[23:03:57] [PASSED] 19 VFs
[23:03:57] [PASSED] 20 VFs
[23:03:57] [PASSED] 21 VFs
[23:03:57] [PASSED] 22 VFs
[23:03:57] [PASSED] 23 VFs
[23:03:57] [PASSED] 24 VFs
[23:03:57] [PASSED] 25 VFs
[23:03:57] [PASSED] 26 VFs
[23:03:57] [PASSED] 27 VFs
[23:03:57] [PASSED] 28 VFs
[23:03:57] [PASSED] 29 VFs
[23:03:57] [PASSED] 30 VFs
[23:03:57] [PASSED] 31 VFs
[23:03:57] [PASSED] 32 VFs
[23:03:57] [PASSED] 33 VFs
[23:03:57] [PASSED] 34 VFs
[23:03:57] [PASSED] 35 VFs
[23:03:57] [PASSED] 36 VFs
[23:03:57] [PASSED] 37 VFs
[23:03:57] [PASSED] 38 VFs
[23:03:57] [PASSED] 39 VFs
[23:03:57] [PASSED] 40 VFs
[23:03:57] [PASSED] 41 VFs
[23:03:57] [PASSED] 42 VFs
[23:03:57] [PASSED] 43 VFs
[23:03:57] [PASSED] 44 VFs
[23:03:57] [PASSED] 45 VFs
[23:03:57] [PASSED] 46 VFs
[23:03:57] [PASSED] 47 VFs
[23:03:57] [PASSED] 48 VFs
[23:03:57] [PASSED] 49 VFs
[23:03:57] [PASSED] 50 VFs
[23:03:57] [PASSED] 51 VFs
[23:03:57] [PASSED] 52 VFs
[23:03:57] [PASSED] 53 VFs
[23:03:57] [PASSED] 54 VFs
[23:03:57] [PASSED] 55 VFs
[23:03:57] [PASSED] 56 VFs
[23:03:57] [PASSED] 57 VFs
[23:03:57] [PASSED] 58 VFs
[23:03:57] [PASSED] 59 VFs
[23:03:57] [PASSED] 60 VFs
[23:03:57] [PASSED] 61 VFs
[23:03:57] [PASSED] 62 VFs
[23:03:57] [PASSED] 63 VFs
[23:03:57] ==================== [PASSED] fair_ggtt ====================
[23:03:57] ================== [PASSED] pf_gt_config ===================
[23:03:57] ===================== lmtt (1 subtest) =====================
[23:03:57] ======================== test_ops =========================
[23:03:57] [PASSED] 2-level
[23:03:57] [PASSED] multi-level
[23:03:57] ==================== [PASSED] test_ops =====================
[23:03:57] ====================== [PASSED] lmtt =======================
[23:03:57] ================= pf_service (11 subtests) =================
[23:03:57] [PASSED] pf_negotiate_any
[23:03:57] [PASSED] pf_negotiate_base_match
[23:03:57] [PASSED] pf_negotiate_base_newer
[23:03:57] [PASSED] pf_negotiate_base_next
[23:03:57] [SKIPPED] pf_negotiate_base_older
[23:03:57] [PASSED] pf_negotiate_base_prev
[23:03:57] [PASSED] pf_negotiate_latest_match
[23:03:57] [PASSED] pf_negotiate_latest_newer
[23:03:57] [PASSED] pf_negotiate_latest_next
[23:03:57] [SKIPPED] pf_negotiate_latest_older
[23:03:57] [SKIPPED] pf_negotiate_latest_prev
[23:03:57] =================== [PASSED] pf_service ====================
[23:03:57] ================= xe_guc_g2g (2 subtests) ==================
[23:03:57] ============== xe_live_guc_g2g_kunit_default ==============
[23:03:57] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[23:03:57] ============== xe_live_guc_g2g_kunit_allmem ===============
[23:03:57] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[23:03:57] =================== [SKIPPED] xe_guc_g2g ===================
[23:03:57] =================== xe_mocs (2 subtests) ===================
[23:03:57] ================ xe_live_mocs_kernel_kunit ================
[23:03:57] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[23:03:57] ================ xe_live_mocs_reset_kunit =================
[23:03:57] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[23:03:57] ==================== [SKIPPED] xe_mocs =====================
[23:03:57] ================= xe_migrate (2 subtests) ==================
[23:03:57] ================= xe_migrate_sanity_kunit =================
[23:03:57] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[23:03:57] ================== xe_validate_ccs_kunit ==================
[23:03:57] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[23:03:57] =================== [SKIPPED] xe_migrate ===================
[23:03:57] ================== xe_dma_buf (1 subtest) ==================
[23:03:57] ==================== xe_dma_buf_kunit =====================
[23:03:57] ================ [SKIPPED] xe_dma_buf_kunit ================
[23:03:57] =================== [SKIPPED] xe_dma_buf ===================
[23:03:57] ================= xe_bo_shrink (1 subtest) =================
[23:03:57] =================== xe_bo_shrink_kunit ====================
[23:03:57] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[23:03:57] ================== [SKIPPED] xe_bo_shrink ==================
[23:03:57] ==================== xe_bo (2 subtests) ====================
[23:03:57] ================== xe_ccs_migrate_kunit ===================
[23:03:57] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[23:03:57] ==================== xe_bo_evict_kunit ====================
[23:03:57] =============== [SKIPPED] xe_bo_evict_kunit ================
[23:03:57] ===================== [SKIPPED] xe_bo ======================
[23:03:57] ==================== args (13 subtests) ====================
[23:03:57] [PASSED] count_args_test
[23:03:57] [PASSED] call_args_example
[23:03:57] [PASSED] call_args_test
[23:03:57] [PASSED] drop_first_arg_example
[23:03:57] [PASSED] drop_first_arg_test
[23:03:57] [PASSED] first_arg_example
[23:03:57] [PASSED] first_arg_test
[23:03:57] [PASSED] last_arg_example
[23:03:57] [PASSED] last_arg_test
[23:03:57] [PASSED] pick_arg_example
[23:03:57] [PASSED] if_args_example
[23:03:57] [PASSED] if_args_test
[23:03:57] [PASSED] sep_comma_example
[23:03:57] ====================== [PASSED] args =======================
[23:03:57] =================== xe_pci (3 subtests) ====================
[23:03:57] ==================== check_graphics_ip ====================
[23:03:57] [PASSED] 12.00 Xe_LP
[23:03:57] [PASSED] 12.10 Xe_LP+
[23:03:57] [PASSED] 12.55 Xe_HPG
[23:03:57] [PASSED] 12.60 Xe_HPC
[23:03:57] [PASSED] 12.70 Xe_LPG
[23:03:57] [PASSED] 12.71 Xe_LPG
[23:03:57] [PASSED] 12.74 Xe_LPG+
[23:03:57] [PASSED] 20.01 Xe2_HPG
[23:03:57] [PASSED] 20.02 Xe2_HPG
[23:03:57] [PASSED] 20.04 Xe2_LPG
[23:03:57] [PASSED] 30.00 Xe3_LPG
[23:03:57] [PASSED] 30.01 Xe3_LPG
[23:03:57] [PASSED] 30.03 Xe3_LPG
[23:03:57] [PASSED] 30.04 Xe3_LPG
[23:03:57] [PASSED] 30.05 Xe3_LPG
[23:03:57] [PASSED] 35.11 Xe3p_XPC
[23:03:57] ================ [PASSED] check_graphics_ip ================
[23:03:57] ===================== check_media_ip ======================
[23:03:57] [PASSED] 12.00 Xe_M
[23:03:57] [PASSED] 12.55 Xe_HPM
[23:03:57] [PASSED] 13.00 Xe_LPM+
[23:03:57] [PASSED] 13.01 Xe2_HPM
[23:03:57] [PASSED] 20.00 Xe2_LPM
[23:03:57] [PASSED] 30.00 Xe3_LPM
[23:03:57] [PASSED] 30.02 Xe3_LPM
[23:03:57] [PASSED] 35.00 Xe3p_LPM
[23:03:57] [PASSED] 35.03 Xe3p_HPM
[23:03:57] ================= [PASSED] check_media_ip ==================
[23:03:57] =================== check_platform_desc ===================
[23:03:57] [PASSED] 0x9A60 (TIGERLAKE)
[23:03:57] [PASSED] 0x9A68 (TIGERLAKE)
[23:03:57] [PASSED] 0x9A70 (TIGERLAKE)
[23:03:57] [PASSED] 0x9A40 (TIGERLAKE)
[23:03:57] [PASSED] 0x9A49 (TIGERLAKE)
[23:03:57] [PASSED] 0x9A59 (TIGERLAKE)
[23:03:57] [PASSED] 0x9A78 (TIGERLAKE)
[23:03:57] [PASSED] 0x9AC0 (TIGERLAKE)
[23:03:57] [PASSED] 0x9AC9 (TIGERLAKE)
[23:03:57] [PASSED] 0x9AD9 (TIGERLAKE)
[23:03:57] [PASSED] 0x9AF8 (TIGERLAKE)
[23:03:57] [PASSED] 0x4C80 (ROCKETLAKE)
[23:03:57] [PASSED] 0x4C8A (ROCKETLAKE)
[23:03:57] [PASSED] 0x4C8B (ROCKETLAKE)
[23:03:57] [PASSED] 0x4C8C (ROCKETLAKE)
[23:03:57] [PASSED] 0x4C90 (ROCKETLAKE)
[23:03:57] [PASSED] 0x4C9A (ROCKETLAKE)
[23:03:57] [PASSED] 0x4680 (ALDERLAKE_S)
[23:03:57] [PASSED] 0x4682 (ALDERLAKE_S)
[23:03:57] [PASSED] 0x4688 (ALDERLAKE_S)
[23:03:57] [PASSED] 0x468A (ALDERLAKE_S)
[23:03:57] [PASSED] 0x468B (ALDERLAKE_S)
[23:03:57] [PASSED] 0x4690 (ALDERLAKE_S)
[23:03:57] [PASSED] 0x4692 (ALDERLAKE_S)
[23:03:57] [PASSED] 0x4693 (ALDERLAKE_S)
[23:03:57] [PASSED] 0x46A0 (ALDERLAKE_P)
[23:03:57] [PASSED] 0x46A1 (ALDERLAKE_P)
[23:03:57] [PASSED] 0x46A2 (ALDERLAKE_P)
[23:03:57] [PASSED] 0x46A3 (ALDERLAKE_P)
[23:03:57] [PASSED] 0x46A6 (ALDERLAKE_P)
[23:03:57] [PASSED] 0x46A8 (ALDERLAKE_P)
[23:03:57] [PASSED] 0x46AA (ALDERLAKE_P)
[23:03:57] [PASSED] 0x462A (ALDERLAKE_P)
[23:03:57] [PASSED] 0x4626 (ALDERLAKE_P)
[23:03:57] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[23:03:57] [PASSED] 0x46B0 (ALDERLAKE_P)
[23:03:57] [PASSED] 0x46B1 (ALDERLAKE_P)
[23:03:57] [PASSED] 0x46B2 (ALDERLAKE_P)
[23:03:57] [PASSED] 0x46B3 (ALDERLAKE_P)
[23:03:57] [PASSED] 0x46C0 (ALDERLAKE_P)
[23:03:57] [PASSED] 0x46C1 (ALDERLAKE_P)
[23:03:57] [PASSED] 0x46C2 (ALDERLAKE_P)
[23:03:57] [PASSED] 0x46C3 (ALDERLAKE_P)
[23:03:57] [PASSED] 0x46D0 (ALDERLAKE_N)
[23:03:57] [PASSED] 0x46D1 (ALDERLAKE_N)
[23:03:57] [PASSED] 0x46D2 (ALDERLAKE_N)
[23:03:57] [PASSED] 0x46D3 (ALDERLAKE_N)
[23:03:57] [PASSED] 0x46D4 (ALDERLAKE_N)
[23:03:57] [PASSED] 0xA721 (ALDERLAKE_P)
[23:03:57] [PASSED] 0xA7A1 (ALDERLAKE_P)
[23:03:57] [PASSED] 0xA7A9 (ALDERLAKE_P)
[23:03:57] [PASSED] 0xA7AC (ALDERLAKE_P)
[23:03:57] [PASSED] 0xA7AD (ALDERLAKE_P)
[23:03:57] [PASSED] 0xA720 (ALDERLAKE_P)
[23:03:57] [PASSED] 0xA7A0 (ALDERLAKE_P)
[23:03:57] [PASSED] 0xA7A8 (ALDERLAKE_P)
[23:03:57] [PASSED] 0xA7AA (ALDERLAKE_P)
[23:03:57] [PASSED] 0xA7AB (ALDERLAKE_P)
[23:03:57] [PASSED] 0xA780 (ALDERLAKE_S)
[23:03:57] [PASSED] 0xA781 (ALDERLAKE_S)
[23:03:57] [PASSED] 0xA782 (ALDERLAKE_S)
[23:03:57] [PASSED] 0xA783 (ALDERLAKE_S)
[23:03:57] [PASSED] 0xA788 (ALDERLAKE_S)
[23:03:57] [PASSED] 0xA789 (ALDERLAKE_S)
[23:03:57] [PASSED] 0xA78A (ALDERLAKE_S)
[23:03:57] [PASSED] 0xA78B (ALDERLAKE_S)
[23:03:57] [PASSED] 0x4905 (DG1)
[23:03:57] [PASSED] 0x4906 (DG1)
[23:03:57] [PASSED] 0x4907 (DG1)
[23:03:57] [PASSED] 0x4908 (DG1)
[23:03:57] [PASSED] 0x4909 (DG1)
[23:03:57] [PASSED] 0x56C0 (DG2)
[23:03:57] [PASSED] 0x56C2 (DG2)
[23:03:57] [PASSED] 0x56C1 (DG2)
[23:03:57] [PASSED] 0x7D51 (METEORLAKE)
[23:03:57] [PASSED] 0x7DD1 (METEORLAKE)
[23:03:57] [PASSED] 0x7D41 (METEORLAKE)
[23:03:57] [PASSED] 0x7D67 (METEORLAKE)
[23:03:57] [PASSED] 0xB640 (METEORLAKE)
[23:03:57] [PASSED] 0x56A0 (DG2)
[23:03:57] [PASSED] 0x56A1 (DG2)
[23:03:57] [PASSED] 0x56A2 (DG2)
[23:03:57] [PASSED] 0x56BE (DG2)
[23:03:57] [PASSED] 0x56BF (DG2)
[23:03:57] [PASSED] 0x5690 (DG2)
[23:03:57] [PASSED] 0x5691 (DG2)
[23:03:57] [PASSED] 0x5692 (DG2)
[23:03:57] [PASSED] 0x56A5 (DG2)
[23:03:57] [PASSED] 0x56A6 (DG2)
[23:03:57] [PASSED] 0x56B0 (DG2)
[23:03:57] [PASSED] 0x56B1 (DG2)
[23:03:57] [PASSED] 0x56BA (DG2)
[23:03:57] [PASSED] 0x56BB (DG2)
[23:03:57] [PASSED] 0x56BC (DG2)
[23:03:57] [PASSED] 0x56BD (DG2)
[23:03:57] [PASSED] 0x5693 (DG2)
[23:03:57] [PASSED] 0x5694 (DG2)
[23:03:57] [PASSED] 0x5695 (DG2)
[23:03:57] [PASSED] 0x56A3 (DG2)
[23:03:57] [PASSED] 0x56A4 (DG2)
[23:03:57] [PASSED] 0x56B2 (DG2)
[23:03:57] [PASSED] 0x56B3 (DG2)
[23:03:57] [PASSED] 0x5696 (DG2)
[23:03:57] [PASSED] 0x5697 (DG2)
[23:03:57] [PASSED] 0xB69 (PVC)
[23:03:57] [PASSED] 0xB6E (PVC)
[23:03:57] [PASSED] 0xBD4 (PVC)
[23:03:57] [PASSED] 0xBD5 (PVC)
[23:03:57] [PASSED] 0xBD6 (PVC)
[23:03:57] [PASSED] 0xBD7 (PVC)
[23:03:57] [PASSED] 0xBD8 (PVC)
[23:03:57] [PASSED] 0xBD9 (PVC)
[23:03:57] [PASSED] 0xBDA (PVC)
[23:03:57] [PASSED] 0xBDB (PVC)
[23:03:57] [PASSED] 0xBE0 (PVC)
[23:03:57] [PASSED] 0xBE1 (PVC)
[23:03:57] [PASSED] 0xBE5 (PVC)
[23:03:57] [PASSED] 0x7D40 (METEORLAKE)
[23:03:57] [PASSED] 0x7D45 (METEORLAKE)
[23:03:57] [PASSED] 0x7D55 (METEORLAKE)
[23:03:57] [PASSED] 0x7D60 (METEORLAKE)
[23:03:57] [PASSED] 0x7DD5 (METEORLAKE)
[23:03:57] [PASSED] 0x6420 (LUNARLAKE)
[23:03:57] [PASSED] 0x64A0 (LUNARLAKE)
[23:03:57] [PASSED] 0x64B0 (LUNARLAKE)
[23:03:57] [PASSED] 0xE202 (BATTLEMAGE)
[23:03:57] [PASSED] 0xE209 (BATTLEMAGE)
[23:03:57] [PASSED] 0xE20B (BATTLEMAGE)
[23:03:57] [PASSED] 0xE20C (BATTLEMAGE)
[23:03:57] [PASSED] 0xE20D (BATTLEMAGE)
[23:03:57] [PASSED] 0xE210 (BATTLEMAGE)
[23:03:57] [PASSED] 0xE211 (BATTLEMAGE)
[23:03:57] [PASSED] 0xE212 (BATTLEMAGE)
[23:03:57] [PASSED] 0xE216 (BATTLEMAGE)
[23:03:57] [PASSED] 0xE220 (BATTLEMAGE)
[23:03:57] [PASSED] 0xE221 (BATTLEMAGE)
[23:03:57] [PASSED] 0xE222 (BATTLEMAGE)
[23:03:57] [PASSED] 0xE223 (BATTLEMAGE)
[23:03:57] [PASSED] 0xB080 (PANTHERLAKE)
[23:03:57] [PASSED] 0xB081 (PANTHERLAKE)
[23:03:57] [PASSED] 0xB082 (PANTHERLAKE)
[23:03:57] [PASSED] 0xB083 (PANTHERLAKE)
[23:03:57] [PASSED] 0xB084 (PANTHERLAKE)
[23:03:57] [PASSED] 0xB085 (PANTHERLAKE)
[23:03:57] [PASSED] 0xB086 (PANTHERLAKE)
[23:03:57] [PASSED] 0xB087 (PANTHERLAKE)
[23:03:57] [PASSED] 0xB08F (PANTHERLAKE)
[23:03:57] [PASSED] 0xB090 (PANTHERLAKE)
[23:03:57] [PASSED] 0xB0A0 (PANTHERLAKE)
[23:03:57] [PASSED] 0xB0B0 (PANTHERLAKE)
[23:03:57] [PASSED] 0xFD80 (PANTHERLAKE)
[23:03:57] [PASSED] 0xFD81 (PANTHERLAKE)
[23:03:57] [PASSED] 0xD740 (NOVALAKE_S)
[23:03:57] [PASSED] 0xD741 (NOVALAKE_S)
[23:03:57] [PASSED] 0xD742 (NOVALAKE_S)
[23:03:57] [PASSED] 0xD743 (NOVALAKE_S)
[23:03:57] [PASSED] 0xD744 (NOVALAKE_S)
[23:03:57] [PASSED] 0xD745 (NOVALAKE_S)
[23:03:57] [PASSED] 0x674C (CRESCENTISLAND)
[23:03:57] =============== [PASSED] check_platform_desc ===============
[23:03:57] ===================== [PASSED] xe_pci ======================
[23:03:57] =================== xe_rtp (2 subtests) ====================
[23:03:57] =============== xe_rtp_process_to_sr_tests ================
[23:03:57] [PASSED] coalesce-same-reg
[23:03:57] [PASSED] no-match-no-add
[23:03:57] [PASSED] match-or
[23:03:57] [PASSED] match-or-xfail
[23:03:57] [PASSED] no-match-no-add-multiple-rules
[23:03:57] [PASSED] two-regs-two-entries
[23:03:57] [PASSED] clr-one-set-other
[23:03:57] [PASSED] set-field
[23:03:57] [PASSED] conflict-duplicate
[23:03:57] [PASSED] conflict-not-disjoint
[23:03:57] [PASSED] conflict-reg-type
[23:03:57] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[23:03:57] ================== xe_rtp_process_tests ===================
[23:03:57] [PASSED] active1
[23:03:57] [PASSED] active2
[23:03:57] [PASSED] active-inactive
[23:03:57] [PASSED] inactive-active
[23:03:57] [PASSED] inactive-1st_or_active-inactive
[23:03:57] [PASSED] inactive-2nd_or_active-inactive
[23:03:57] [PASSED] inactive-last_or_active-inactive
[23:03:57] [PASSED] inactive-no_or_active-inactive
[23:03:57] ============== [PASSED] xe_rtp_process_tests ===============
[23:03:57] ===================== [PASSED] xe_rtp ======================
[23:03:57] ==================== xe_wa (1 subtest) =====================
[23:03:57] ======================== xe_wa_gt =========================
[23:03:57] [PASSED] TIGERLAKE B0
[23:03:57] [PASSED] DG1 A0
[23:03:57] [PASSED] DG1 B0
[23:03:57] [PASSED] ALDERLAKE_S A0
[23:03:57] [PASSED] ALDERLAKE_S B0
[23:03:57] [PASSED] ALDERLAKE_S C0
[23:03:57] [PASSED] ALDERLAKE_S D0
[23:03:57] [PASSED] ALDERLAKE_P A0
[23:03:57] [PASSED] ALDERLAKE_P B0
[23:03:57] [PASSED] ALDERLAKE_P C0
[23:03:57] [PASSED] ALDERLAKE_S RPLS D0
[23:03:57] [PASSED] ALDERLAKE_P RPLU E0
[23:03:57] [PASSED] DG2 G10 C0
[23:03:57] [PASSED] DG2 G11 B1
[23:03:57] [PASSED] DG2 G12 A1
[23:03:57] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[23:03:57] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[23:03:57] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[23:03:57] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[23:03:57] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[23:03:57] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[23:03:57] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[23:03:57] ==================== [PASSED] xe_wa_gt =====================
[23:03:57] ====================== [PASSED] xe_wa ======================
[23:03:57] ============================================================
[23:03:57] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[23:03:57] Elapsed time: 44.370s total, 4.317s configuring, 39.536s building, 0.498s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[23:03:57] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:03:59] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=25
[23:04:30] Starting KUnit Kernel (1/1)...
[23:04:30] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[23:04:30] ============ drm_test_pick_cmdline (2 subtests) ============
[23:04:30] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[23:04:30] =============== drm_test_pick_cmdline_named ===============
[23:04:30] [PASSED] NTSC
[23:04:30] [PASSED] NTSC-J
[23:04:30] [PASSED] PAL
[23:04:30] [PASSED] PAL-M
[23:04:30] =========== [PASSED] drm_test_pick_cmdline_named ===========
[23:04:30] ============== [PASSED] drm_test_pick_cmdline ==============
[23:04:30] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[23:04:30] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[23:04:30] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[23:04:30] =========== drm_validate_clone_mode (2 subtests) ===========
[23:04:30] ============== drm_test_check_in_clone_mode ===============
[23:04:30] [PASSED] in_clone_mode
[23:04:30] [PASSED] not_in_clone_mode
[23:04:30] ========== [PASSED] drm_test_check_in_clone_mode ===========
[23:04:30] =============== drm_test_check_valid_clones ===============
[23:04:30] [PASSED] not_in_clone_mode
[23:04:30] [PASSED] valid_clone
[23:04:30] [PASSED] invalid_clone
[23:04:30] =========== [PASSED] drm_test_check_valid_clones ===========
[23:04:30] ============= [PASSED] drm_validate_clone_mode =============
[23:04:30] ============= drm_validate_modeset (1 subtest) =============
[23:04:30] [PASSED] drm_test_check_connector_changed_modeset
[23:04:30] ============== [PASSED] drm_validate_modeset ===============
[23:04:30] ====== drm_test_bridge_get_current_state (2 subtests) ======
[23:04:30] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[23:04:30] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[23:04:30] ======== [PASSED] drm_test_bridge_get_current_state ========
[23:04:30] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[23:04:30] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[23:04:30] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[23:04:30] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[23:04:30] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[23:04:30] ============== drm_bridge_alloc (2 subtests) ===============
[23:04:30] [PASSED] drm_test_drm_bridge_alloc_basic
[23:04:30] [PASSED] drm_test_drm_bridge_alloc_get_put
[23:04:30] ================ [PASSED] drm_bridge_alloc =================
[23:04:30] ================== drm_buddy (9 subtests) ==================
[23:04:30] [PASSED] drm_test_buddy_alloc_limit
[23:04:30] [PASSED] drm_test_buddy_alloc_optimistic
[23:04:30] [PASSED] drm_test_buddy_alloc_pessimistic
[23:04:30] [PASSED] drm_test_buddy_alloc_pathological
[23:04:30] [PASSED] drm_test_buddy_alloc_contiguous
[23:04:30] [PASSED] drm_test_buddy_alloc_clear
[23:04:30] [PASSED] drm_test_buddy_alloc_range_bias
[23:04:30] [PASSED] drm_test_buddy_fragmentation_performance
[23:04:30] [PASSED] drm_test_buddy_alloc_exceeds_max_order
[23:04:30] ==================== [PASSED] drm_buddy ====================
[23:04:30] ============= drm_cmdline_parser (40 subtests) =============
[23:04:30] [PASSED] drm_test_cmdline_force_d_only
[23:04:30] [PASSED] drm_test_cmdline_force_D_only_dvi
[23:04:30] [PASSED] drm_test_cmdline_force_D_only_hdmi
[23:04:30] [PASSED] drm_test_cmdline_force_D_only_not_digital
[23:04:30] [PASSED] drm_test_cmdline_force_e_only
[23:04:30] [PASSED] drm_test_cmdline_res
[23:04:30] [PASSED] drm_test_cmdline_res_vesa
[23:04:30] [PASSED] drm_test_cmdline_res_vesa_rblank
[23:04:30] [PASSED] drm_test_cmdline_res_rblank
[23:04:30] [PASSED] drm_test_cmdline_res_bpp
[23:04:30] [PASSED] drm_test_cmdline_res_refresh
[23:04:30] [PASSED] drm_test_cmdline_res_bpp_refresh
[23:04:30] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[23:04:30] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[23:04:30] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[23:04:30] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[23:04:30] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[23:04:30] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[23:04:30] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[23:04:30] [PASSED] drm_test_cmdline_res_margins_force_on
[23:04:30] [PASSED] drm_test_cmdline_res_vesa_margins
[23:04:30] [PASSED] drm_test_cmdline_name
[23:04:30] [PASSED] drm_test_cmdline_name_bpp
[23:04:30] [PASSED] drm_test_cmdline_name_option
[23:04:30] [PASSED] drm_test_cmdline_name_bpp_option
[23:04:30] [PASSED] drm_test_cmdline_rotate_0
[23:04:30] [PASSED] drm_test_cmdline_rotate_90
[23:04:30] [PASSED] drm_test_cmdline_rotate_180
[23:04:30] [PASSED] drm_test_cmdline_rotate_270
[23:04:30] [PASSED] drm_test_cmdline_hmirror
[23:04:30] [PASSED] drm_test_cmdline_vmirror
[23:04:30] [PASSED] drm_test_cmdline_margin_options
[23:04:30] [PASSED] drm_test_cmdline_multiple_options
[23:04:30] [PASSED] drm_test_cmdline_bpp_extra_and_option
[23:04:30] [PASSED] drm_test_cmdline_extra_and_option
[23:04:30] [PASSED] drm_test_cmdline_freestanding_options
[23:04:30] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[23:04:30] [PASSED] drm_test_cmdline_panel_orientation
[23:04:30] ================ drm_test_cmdline_invalid =================
[23:04:30] [PASSED] margin_only
[23:04:30] [PASSED] interlace_only
[23:04:30] [PASSED] res_missing_x
[23:04:30] [PASSED] res_missing_y
[23:04:30] [PASSED] res_bad_y
[23:04:30] [PASSED] res_missing_y_bpp
[23:04:30] [PASSED] res_bad_bpp
[23:04:30] [PASSED] res_bad_refresh
[23:04:30] [PASSED] res_bpp_refresh_force_on_off
[23:04:30] [PASSED] res_invalid_mode
[23:04:30] [PASSED] res_bpp_wrong_place_mode
[23:04:30] [PASSED] name_bpp_refresh
[23:04:30] [PASSED] name_refresh
[23:04:30] [PASSED] name_refresh_wrong_mode
[23:04:30] [PASSED] name_refresh_invalid_mode
[23:04:30] [PASSED] rotate_multiple
[23:04:30] [PASSED] rotate_invalid_val
[23:04:30] [PASSED] rotate_truncated
[23:04:30] [PASSED] invalid_option
[23:04:30] [PASSED] invalid_tv_option
[23:04:30] [PASSED] truncated_tv_option
[23:04:30] ============ [PASSED] drm_test_cmdline_invalid =============
[23:04:30] =============== drm_test_cmdline_tv_options ===============
[23:04:30] [PASSED] NTSC
[23:04:30] [PASSED] NTSC_443
[23:04:30] [PASSED] NTSC_J
[23:04:30] [PASSED] PAL
[23:04:30] [PASSED] PAL_M
[23:04:30] [PASSED] PAL_N
[23:04:30] [PASSED] SECAM
[23:04:30] [PASSED] MONO_525
[23:04:30] [PASSED] MONO_625
[23:04:30] =========== [PASSED] drm_test_cmdline_tv_options ===========
[23:04:30] =============== [PASSED] drm_cmdline_parser ================
[23:04:30] ========== drmm_connector_hdmi_init (20 subtests) ==========
[23:04:30] [PASSED] drm_test_connector_hdmi_init_valid
[23:04:30] [PASSED] drm_test_connector_hdmi_init_bpc_8
[23:04:30] [PASSED] drm_test_connector_hdmi_init_bpc_10
[23:04:30] [PASSED] drm_test_connector_hdmi_init_bpc_12
[23:04:30] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[23:04:30] [PASSED] drm_test_connector_hdmi_init_bpc_null
[23:04:30] [PASSED] drm_test_connector_hdmi_init_formats_empty
[23:04:30] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[23:04:30] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[23:04:30] [PASSED] supported_formats=0x9 yuv420_allowed=1
[23:04:30] [PASSED] supported_formats=0x9 yuv420_allowed=0
[23:04:30] [PASSED] supported_formats=0x3 yuv420_allowed=1
[23:04:30] [PASSED] supported_formats=0x3 yuv420_allowed=0
[23:04:30] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[23:04:30] [PASSED] drm_test_connector_hdmi_init_null_ddc
[23:04:30] [PASSED] drm_test_connector_hdmi_init_null_product
[23:04:30] [PASSED] drm_test_connector_hdmi_init_null_vendor
[23:04:30] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[23:04:30] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[23:04:30] [PASSED] drm_test_connector_hdmi_init_product_valid
[23:04:30] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[23:04:30] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[23:04:30] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[23:04:30] ========= drm_test_connector_hdmi_init_type_valid =========
[23:04:30] [PASSED] HDMI-A
[23:04:30] [PASSED] HDMI-B
[23:04:30] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[23:04:30] ======== drm_test_connector_hdmi_init_type_invalid ========
[23:04:30] [PASSED] Unknown
[23:04:30] [PASSED] VGA
[23:04:30] [PASSED] DVI-I
[23:04:30] [PASSED] DVI-D
[23:04:30] [PASSED] DVI-A
[23:04:30] [PASSED] Composite
[23:04:30] [PASSED] SVIDEO
[23:04:30] [PASSED] LVDS
[23:04:30] [PASSED] Component
[23:04:30] [PASSED] DIN
[23:04:30] [PASSED] DP
[23:04:30] [PASSED] TV
[23:04:30] [PASSED] eDP
[23:04:30] [PASSED] Virtual
[23:04:30] [PASSED] DSI
[23:04:30] [PASSED] DPI
[23:04:30] [PASSED] Writeback
[23:04:30] [PASSED] SPI
[23:04:30] [PASSED] USB
[23:04:30] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[23:04:30] ============ [PASSED] drmm_connector_hdmi_init =============
[23:04:30] ============= drmm_connector_init (3 subtests) =============
[23:04:30] [PASSED] drm_test_drmm_connector_init
[23:04:30] [PASSED] drm_test_drmm_connector_init_null_ddc
[23:04:30] ========= drm_test_drmm_connector_init_type_valid =========
[23:04:30] [PASSED] Unknown
[23:04:30] [PASSED] VGA
[23:04:30] [PASSED] DVI-I
[23:04:30] [PASSED] DVI-D
[23:04:30] [PASSED] DVI-A
[23:04:30] [PASSED] Composite
[23:04:30] [PASSED] SVIDEO
[23:04:30] [PASSED] LVDS
[23:04:30] [PASSED] Component
[23:04:30] [PASSED] DIN
[23:04:30] [PASSED] DP
[23:04:30] [PASSED] HDMI-A
[23:04:30] [PASSED] HDMI-B
[23:04:30] [PASSED] TV
[23:04:30] [PASSED] eDP
[23:04:30] [PASSED] Virtual
[23:04:30] [PASSED] DSI
[23:04:30] [PASSED] DPI
[23:04:30] [PASSED] Writeback
[23:04:30] [PASSED] SPI
[23:04:30] [PASSED] USB
[23:04:30] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[23:04:30] =============== [PASSED] drmm_connector_init ===============
[23:04:30] ========= drm_connector_dynamic_init (6 subtests) ==========
[23:04:30] [PASSED] drm_test_drm_connector_dynamic_init
[23:04:30] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[23:04:30] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[23:04:30] [PASSED] drm_test_drm_connector_dynamic_init_properties
[23:04:30] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[23:04:30] [PASSED] Unknown
[23:04:30] [PASSED] VGA
[23:04:30] [PASSED] DVI-I
[23:04:30] [PASSED] DVI-D
[23:04:30] [PASSED] DVI-A
[23:04:30] [PASSED] Composite
[23:04:30] [PASSED] SVIDEO
[23:04:30] [PASSED] LVDS
[23:04:30] [PASSED] Component
[23:04:30] [PASSED] DIN
[23:04:30] [PASSED] DP
[23:04:30] [PASSED] HDMI-A
[23:04:30] [PASSED] HDMI-B
[23:04:30] [PASSED] TV
[23:04:30] [PASSED] eDP
[23:04:30] [PASSED] Virtual
[23:04:30] [PASSED] DSI
[23:04:30] [PASSED] DPI
[23:04:30] [PASSED] Writeback
[23:04:30] [PASSED] SPI
[23:04:30] [PASSED] USB
[23:04:30] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[23:04:30] ======== drm_test_drm_connector_dynamic_init_name =========
[23:04:30] [PASSED] Unknown
[23:04:30] [PASSED] VGA
[23:04:30] [PASSED] DVI-I
[23:04:30] [PASSED] DVI-D
[23:04:30] [PASSED] DVI-A
[23:04:30] [PASSED] Composite
[23:04:30] [PASSED] SVIDEO
[23:04:30] [PASSED] LVDS
[23:04:30] [PASSED] Component
[23:04:30] [PASSED] DIN
[23:04:30] [PASSED] DP
[23:04:30] [PASSED] HDMI-A
[23:04:30] [PASSED] HDMI-B
[23:04:30] [PASSED] TV
[23:04:30] [PASSED] eDP
[23:04:30] [PASSED] Virtual
[23:04:30] [PASSED] DSI
[23:04:30] [PASSED] DPI
[23:04:30] [PASSED] Writeback
[23:04:30] [PASSED] SPI
[23:04:30] [PASSED] USB
[23:04:30] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[23:04:30] =========== [PASSED] drm_connector_dynamic_init ============
[23:04:30] ==== drm_connector_dynamic_register_early (4 subtests) =====
[23:04:30] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[23:04:30] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[23:04:30] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[23:04:30] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[23:04:30] ====== [PASSED] drm_connector_dynamic_register_early =======
[23:04:30] ======= drm_connector_dynamic_register (7 subtests) ========
[23:04:30] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[23:04:30] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[23:04:30] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[23:04:30] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[23:04:30] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[23:04:30] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[23:04:30] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[23:04:30] ========= [PASSED] drm_connector_dynamic_register ==========
[23:04:30] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[23:04:30] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[23:04:30] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[23:04:30] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[23:04:30] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[23:04:30] ========== drm_test_get_tv_mode_from_name_valid ===========
[23:04:30] [PASSED] NTSC
[23:04:30] [PASSED] NTSC-443
[23:04:30] [PASSED] NTSC-J
[23:04:30] [PASSED] PAL
[23:04:30] [PASSED] PAL-M
[23:04:30] [PASSED] PAL-N
[23:04:30] [PASSED] SECAM
[23:04:30] [PASSED] Mono
[23:04:30] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[23:04:30] [PASSED] drm_test_get_tv_mode_from_name_truncated
[23:04:30] ============ [PASSED] drm_get_tv_mode_from_name ============
[23:04:30] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[23:04:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[23:04:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[23:04:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[23:04:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[23:04:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[23:04:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[23:04:30] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[23:04:30] [PASSED] VIC 96
[23:04:30] [PASSED] VIC 97
[23:04:30] [PASSED] VIC 101
[23:04:30] [PASSED] VIC 102
[23:04:30] [PASSED] VIC 106
[23:04:30] [PASSED] VIC 107
[23:04:30] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[23:04:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[23:04:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[23:04:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[23:04:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[23:04:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[23:04:30] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[23:04:30] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[23:04:30] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[23:04:30] [PASSED] Automatic
[23:04:30] [PASSED] Full
[23:04:30] [PASSED] Limited 16:235
[23:04:30] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[23:04:30] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[23:04:30] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[23:04:30] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[23:04:30] === drm_test_drm_hdmi_connector_get_output_format_name ====
[23:04:30] [PASSED] RGB
[23:04:30] [PASSED] YUV 4:2:0
[23:04:30] [PASSED] YUV 4:2:2
[23:04:30] [PASSED] YUV 4:4:4
[23:04:30] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[23:04:30] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[23:04:30] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[23:04:30] ============= drm_damage_helper (21 subtests) ==============
[23:04:30] [PASSED] drm_test_damage_iter_no_damage
[23:04:30] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[23:04:30] [PASSED] drm_test_damage_iter_no_damage_src_moved
[23:04:30] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[23:04:30] [PASSED] drm_test_damage_iter_no_damage_not_visible
[23:04:30] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[23:04:30] [PASSED] drm_test_damage_iter_no_damage_no_fb
[23:04:30] [PASSED] drm_test_damage_iter_simple_damage
[23:04:30] [PASSED] drm_test_damage_iter_single_damage
[23:04:30] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[23:04:30] [PASSED] drm_test_damage_iter_single_damage_outside_src
[23:04:30] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[23:04:30] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[23:04:30] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[23:04:30] [PASSED] drm_test_damage_iter_single_damage_src_moved
[23:04:30] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[23:04:30] [PASSED] drm_test_damage_iter_damage
[23:04:30] [PASSED] drm_test_damage_iter_damage_one_intersect
[23:04:30] [PASSED] drm_test_damage_iter_damage_one_outside
[23:04:30] [PASSED] drm_test_damage_iter_damage_src_moved
[23:04:30] [PASSED] drm_test_damage_iter_damage_not_visible
[23:04:30] ================ [PASSED] drm_damage_helper ================
[23:04:30] ============== drm_dp_mst_helper (3 subtests) ==============
[23:04:30] ============== drm_test_dp_mst_calc_pbn_mode ==============
[23:04:30] [PASSED] Clock 154000 BPP 30 DSC disabled
[23:04:30] [PASSED] Clock 234000 BPP 30 DSC disabled
[23:04:30] [PASSED] Clock 297000 BPP 24 DSC disabled
[23:04:30] [PASSED] Clock 332880 BPP 24 DSC enabled
[23:04:30] [PASSED] Clock 324540 BPP 24 DSC enabled
[23:04:30] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[23:04:30] ============== drm_test_dp_mst_calc_pbn_div ===============
[23:04:30] [PASSED] Link rate 2000000 lane count 4
[23:04:30] [PASSED] Link rate 2000000 lane count 2
[23:04:30] [PASSED] Link rate 2000000 lane count 1
[23:04:30] [PASSED] Link rate 1350000 lane count 4
[23:04:30] [PASSED] Link rate 1350000 lane count 2
[23:04:30] [PASSED] Link rate 1350000 lane count 1
[23:04:30] [PASSED] Link rate 1000000 lane count 4
[23:04:30] [PASSED] Link rate 1000000 lane count 2
[23:04:30] [PASSED] Link rate 1000000 lane count 1
[23:04:30] [PASSED] Link rate 810000 lane count 4
[23:04:30] [PASSED] Link rate 810000 lane count 2
[23:04:30] [PASSED] Link rate 810000 lane count 1
[23:04:30] [PASSED] Link rate 540000 lane count 4
[23:04:30] [PASSED] Link rate 540000 lane count 2
[23:04:30] [PASSED] Link rate 540000 lane count 1
[23:04:30] [PASSED] Link rate 270000 lane count 4
[23:04:30] [PASSED] Link rate 270000 lane count 2
[23:04:30] [PASSED] Link rate 270000 lane count 1
[23:04:30] [PASSED] Link rate 162000 lane count 4
[23:04:30] [PASSED] Link rate 162000 lane count 2
[23:04:30] [PASSED] Link rate 162000 lane count 1
[23:04:30] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[23:04:30] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[23:04:30] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[23:04:30] [PASSED] DP_POWER_UP_PHY with port number
[23:04:30] [PASSED] DP_POWER_DOWN_PHY with port number
[23:04:30] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[23:04:30] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[23:04:30] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[23:04:30] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[23:04:30] [PASSED] DP_QUERY_PAYLOAD with port number
[23:04:30] [PASSED] DP_QUERY_PAYLOAD with VCPI
[23:04:30] [PASSED] DP_REMOTE_DPCD_READ with port number
[23:04:30] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[23:04:30] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[23:04:30] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[23:04:30] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[23:04:30] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[23:04:30] [PASSED] DP_REMOTE_I2C_READ with port number
[23:04:30] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[23:04:30] [PASSED] DP_REMOTE_I2C_READ with transactions array
[23:04:30] [PASSED] DP_REMOTE_I2C_WRITE with port number
[23:04:30] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[23:04:30] [PASSED] DP_REMOTE_I2C_WRITE with data array
[23:04:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[23:04:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[23:04:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[23:04:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[23:04:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[23:04:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[23:04:30] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[23:04:30] ================ [PASSED] drm_dp_mst_helper ================
[23:04:30] ================== drm_exec (7 subtests) ===================
[23:04:30] [PASSED] sanitycheck
[23:04:30] [PASSED] test_lock
[23:04:30] [PASSED] test_lock_unlock
[23:04:30] [PASSED] test_duplicates
[23:04:30] [PASSED] test_prepare
[23:04:30] [PASSED] test_prepare_array
[23:04:30] [PASSED] test_multiple_loops
[23:04:30] ==================== [PASSED] drm_exec =====================
[23:04:30] =========== drm_format_helper_test (17 subtests) ===========
[23:04:30] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[23:04:30] [PASSED] single_pixel_source_buffer
[23:04:30] [PASSED] single_pixel_clip_rectangle
[23:04:30] [PASSED] well_known_colors
[23:04:30] [PASSED] destination_pitch
[23:04:30] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[23:04:30] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[23:04:30] [PASSED] single_pixel_source_buffer
[23:04:30] [PASSED] single_pixel_clip_rectangle
[23:04:30] [PASSED] well_known_colors
[23:04:30] [PASSED] destination_pitch
[23:04:30] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[23:04:30] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[23:04:30] [PASSED] single_pixel_source_buffer
[23:04:30] [PASSED] single_pixel_clip_rectangle
[23:04:30] [PASSED] well_known_colors
[23:04:30] [PASSED] destination_pitch
[23:04:30] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[23:04:30] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[23:04:30] [PASSED] single_pixel_source_buffer
[23:04:30] [PASSED] single_pixel_clip_rectangle
[23:04:30] [PASSED] well_known_colors
[23:04:30] [PASSED] destination_pitch
[23:04:30] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[23:04:30] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[23:04:30] [PASSED] single_pixel_source_buffer
[23:04:30] [PASSED] single_pixel_clip_rectangle
[23:04:30] [PASSED] well_known_colors
[23:04:30] [PASSED] destination_pitch
[23:04:30] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[23:04:30] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[23:04:30] [PASSED] single_pixel_source_buffer
[23:04:30] [PASSED] single_pixel_clip_rectangle
[23:04:30] [PASSED] well_known_colors
[23:04:30] [PASSED] destination_pitch
[23:04:30] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[23:04:30] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[23:04:30] [PASSED] single_pixel_source_buffer
[23:04:30] [PASSED] single_pixel_clip_rectangle
[23:04:30] [PASSED] well_known_colors
[23:04:30] [PASSED] destination_pitch
[23:04:30] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[23:04:30] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[23:04:30] [PASSED] single_pixel_source_buffer
[23:04:30] [PASSED] single_pixel_clip_rectangle
[23:04:30] [PASSED] well_known_colors
[23:04:30] [PASSED] destination_pitch
[23:04:30] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[23:04:30] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[23:04:30] [PASSED] single_pixel_source_buffer
[23:04:30] [PASSED] single_pixel_clip_rectangle
[23:04:30] [PASSED] well_known_colors
[23:04:30] [PASSED] destination_pitch
[23:04:30] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[23:04:30] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[23:04:30] [PASSED] single_pixel_source_buffer
[23:04:30] [PASSED] single_pixel_clip_rectangle
[23:04:30] [PASSED] well_known_colors
[23:04:30] [PASSED] destination_pitch
[23:04:30] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[23:04:30] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[23:04:30] [PASSED] single_pixel_source_buffer
[23:04:30] [PASSED] single_pixel_clip_rectangle
[23:04:30] [PASSED] well_known_colors
[23:04:30] [PASSED] destination_pitch
[23:04:30] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[23:04:30] ============== drm_test_fb_xrgb8888_to_mono ===============
[23:04:30] [PASSED] single_pixel_source_buffer
[23:04:30] [PASSED] single_pixel_clip_rectangle
[23:04:30] [PASSED] well_known_colors
[23:04:30] [PASSED] destination_pitch
[23:04:30] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[23:04:30] ==================== drm_test_fb_swab =====================
[23:04:30] [PASSED] single_pixel_source_buffer
[23:04:30] [PASSED] single_pixel_clip_rectangle
[23:04:30] [PASSED] well_known_colors
[23:04:30] [PASSED] destination_pitch
[23:04:30] ================ [PASSED] drm_test_fb_swab =================
[23:04:30] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[23:04:30] [PASSED] single_pixel_source_buffer
[23:04:30] [PASSED] single_pixel_clip_rectangle
[23:04:30] [PASSED] well_known_colors
[23:04:30] [PASSED] destination_pitch
[23:04:30] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[23:04:30] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[23:04:30] [PASSED] single_pixel_source_buffer
[23:04:30] [PASSED] single_pixel_clip_rectangle
[23:04:30] [PASSED] well_known_colors
[23:04:30] [PASSED] destination_pitch
[23:04:30] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[23:04:30] ================= drm_test_fb_clip_offset =================
[23:04:30] [PASSED] pass through
[23:04:30] [PASSED] horizontal offset
[23:04:30] [PASSED] vertical offset
[23:04:30] [PASSED] horizontal and vertical offset
[23:04:30] [PASSED] horizontal offset (custom pitch)
[23:04:30] [PASSED] vertical offset (custom pitch)
[23:04:30] [PASSED] horizontal and vertical offset (custom pitch)
[23:04:30] ============= [PASSED] drm_test_fb_clip_offset =============
[23:04:30] =================== drm_test_fb_memcpy ====================
[23:04:30] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[23:04:30] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[23:04:30] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[23:04:30] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[23:04:30] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[23:04:30] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[23:04:30] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[23:04:30] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[23:04:30] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[23:04:30] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[23:04:30] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[23:04:30] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[23:04:30] =============== [PASSED] drm_test_fb_memcpy ================
[23:04:30] ============= [PASSED] drm_format_helper_test ==============
[23:04:30] ================= drm_format (18 subtests) =================
[23:04:30] [PASSED] drm_test_format_block_width_invalid
[23:04:30] [PASSED] drm_test_format_block_width_one_plane
[23:04:30] [PASSED] drm_test_format_block_width_two_plane
[23:04:30] [PASSED] drm_test_format_block_width_three_plane
[23:04:30] [PASSED] drm_test_format_block_width_tiled
[23:04:30] [PASSED] drm_test_format_block_height_invalid
[23:04:30] [PASSED] drm_test_format_block_height_one_plane
[23:04:30] [PASSED] drm_test_format_block_height_two_plane
[23:04:30] [PASSED] drm_test_format_block_height_three_plane
[23:04:30] [PASSED] drm_test_format_block_height_tiled
[23:04:30] [PASSED] drm_test_format_min_pitch_invalid
[23:04:30] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[23:04:30] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[23:04:30] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[23:04:30] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[23:04:30] [PASSED] drm_test_format_min_pitch_two_plane
[23:04:30] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[23:04:30] [PASSED] drm_test_format_min_pitch_tiled
[23:04:30] =================== [PASSED] drm_format ====================
[23:04:30] ============== drm_framebuffer (10 subtests) ===============
[23:04:30] ========== drm_test_framebuffer_check_src_coords ==========
[23:04:30] [PASSED] Success: source fits into fb
[23:04:30] [PASSED] Fail: overflowing fb with x-axis coordinate
[23:04:30] [PASSED] Fail: overflowing fb with y-axis coordinate
[23:04:30] [PASSED] Fail: overflowing fb with source width
[23:04:30] [PASSED] Fail: overflowing fb with source height
[23:04:30] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[23:04:30] [PASSED] drm_test_framebuffer_cleanup
[23:04:30] =============== drm_test_framebuffer_create ===============
[23:04:30] [PASSED] ABGR8888 normal sizes
[23:04:30] [PASSED] ABGR8888 max sizes
[23:04:30] [PASSED] ABGR8888 pitch greater than min required
[23:04:30] [PASSED] ABGR8888 pitch less than min required
[23:04:30] [PASSED] ABGR8888 Invalid width
[23:04:30] [PASSED] ABGR8888 Invalid buffer handle
[23:04:30] [PASSED] No pixel format
[23:04:30] [PASSED] ABGR8888 Width 0
[23:04:30] [PASSED] ABGR8888 Height 0
[23:04:30] [PASSED] ABGR8888 Out of bound height * pitch combination
[23:04:30] [PASSED] ABGR8888 Large buffer offset
[23:04:30] [PASSED] ABGR8888 Buffer offset for inexistent plane
[23:04:30] [PASSED] ABGR8888 Invalid flag
[23:04:30] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[23:04:30] [PASSED] ABGR8888 Valid buffer modifier
[23:04:30] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[23:04:30] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[23:04:30] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[23:04:30] [PASSED] NV12 Normal sizes
[23:04:30] [PASSED] NV12 Max sizes
[23:04:30] [PASSED] NV12 Invalid pitch
[23:04:30] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[23:04:30] [PASSED] NV12 different modifier per-plane
[23:04:30] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[23:04:30] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[23:04:30] [PASSED] NV12 Modifier for inexistent plane
[23:04:30] [PASSED] NV12 Handle for inexistent plane
[23:04:30] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[23:04:30] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[23:04:30] [PASSED] YVU420 Normal sizes
[23:04:30] [PASSED] YVU420 Max sizes
[23:04:30] [PASSED] YVU420 Invalid pitch
[23:04:30] [PASSED] YVU420 Different pitches
[23:04:30] [PASSED] YVU420 Different buffer offsets/pitches
[23:04:30] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[23:04:30] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[23:04:30] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[23:04:30] [PASSED] YVU420 Valid modifier
[23:04:30] [PASSED] YVU420 Different modifiers per plane
[23:04:30] [PASSED] YVU420 Modifier for inexistent plane
[23:04:30] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[23:04:30] [PASSED] X0L2 Normal sizes
[23:04:30] [PASSED] X0L2 Max sizes
[23:04:30] [PASSED] X0L2 Invalid pitch
[23:04:30] [PASSED] X0L2 Pitch greater than minimum required
[23:04:30] [PASSED] X0L2 Handle for inexistent plane
[23:04:30] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[23:04:30] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[23:04:30] [PASSED] X0L2 Valid modifier
[23:04:30] [PASSED] X0L2 Modifier for inexistent plane
[23:04:30] =========== [PASSED] drm_test_framebuffer_create ===========
[23:04:30] [PASSED] drm_test_framebuffer_free
[23:04:30] [PASSED] drm_test_framebuffer_init
[23:04:30] [PASSED] drm_test_framebuffer_init_bad_format
[23:04:30] [PASSED] drm_test_framebuffer_init_dev_mismatch
[23:04:30] [PASSED] drm_test_framebuffer_lookup
[23:04:30] [PASSED] drm_test_framebuffer_lookup_inexistent
[23:04:30] [PASSED] drm_test_framebuffer_modifiers_not_supported
[23:04:30] ================= [PASSED] drm_framebuffer =================
[23:04:30] ================ drm_gem_shmem (8 subtests) ================
[23:04:30] [PASSED] drm_gem_shmem_test_obj_create
[23:04:30] [PASSED] drm_gem_shmem_test_obj_create_private
[23:04:30] [PASSED] drm_gem_shmem_test_pin_pages
[23:04:30] [PASSED] drm_gem_shmem_test_vmap
[23:04:30] [PASSED] drm_gem_shmem_test_get_sg_table
[23:04:30] [PASSED] drm_gem_shmem_test_get_pages_sgt
[23:04:30] [PASSED] drm_gem_shmem_test_madvise
[23:04:30] [PASSED] drm_gem_shmem_test_purge
[23:04:30] ================== [PASSED] drm_gem_shmem ==================
[23:04:30] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[23:04:30] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[23:04:30] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[23:04:30] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[23:04:30] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[23:04:30] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[23:04:30] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[23:04:30] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[23:04:30] [PASSED] Automatic
[23:04:30] [PASSED] Full
[23:04:30] [PASSED] Limited 16:235
[23:04:30] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[23:04:30] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[23:04:30] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[23:04:30] [PASSED] drm_test_check_disable_connector
[23:04:30] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[23:04:30] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[23:04:30] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[23:04:30] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[23:04:30] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[23:04:30] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[23:04:30] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[23:04:30] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[23:04:30] [PASSED] drm_test_check_output_bpc_dvi
[23:04:30] [PASSED] drm_test_check_output_bpc_format_vic_1
[23:04:30] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[23:04:30] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[23:04:30] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[23:04:30] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[23:04:30] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[23:04:30] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[23:04:30] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[23:04:30] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[23:04:30] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[23:04:30] [PASSED] drm_test_check_broadcast_rgb_value
[23:04:30] [PASSED] drm_test_check_bpc_8_value
[23:04:30] [PASSED] drm_test_check_bpc_10_value
[23:04:30] [PASSED] drm_test_check_bpc_12_value
[23:04:30] [PASSED] drm_test_check_format_value
[23:04:30] [PASSED] drm_test_check_tmds_char_value
[23:04:30] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[23:04:30] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[23:04:30] [PASSED] drm_test_check_mode_valid
[23:04:30] [PASSED] drm_test_check_mode_valid_reject
[23:04:30] [PASSED] drm_test_check_mode_valid_reject_rate
[23:04:30] [PASSED] drm_test_check_mode_valid_reject_max_clock
[23:04:30] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[23:04:30] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[23:04:30] [PASSED] drm_test_check_infoframes
[23:04:30] [PASSED] drm_test_check_reject_avi_infoframe
[23:04:30] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[23:04:30] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[23:04:30] [PASSED] drm_test_check_reject_audio_infoframe
[23:04:30] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[23:04:30] ================= drm_managed (2 subtests) =================
[23:04:30] [PASSED] drm_test_managed_release_action
[23:04:30] [PASSED] drm_test_managed_run_action
[23:04:30] =================== [PASSED] drm_managed ===================
[23:04:30] =================== drm_mm (6 subtests) ====================
[23:04:30] [PASSED] drm_test_mm_init
[23:04:30] [PASSED] drm_test_mm_debug
[23:04:30] [PASSED] drm_test_mm_align32
[23:04:30] [PASSED] drm_test_mm_align64
[23:04:30] [PASSED] drm_test_mm_lowest
[23:04:30] [PASSED] drm_test_mm_highest
[23:04:30] ===================== [PASSED] drm_mm ======================
[23:04:30] ============= drm_modes_analog_tv (5 subtests) =============
[23:04:30] [PASSED] drm_test_modes_analog_tv_mono_576i
[23:04:30] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[23:04:30] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[23:04:30] [PASSED] drm_test_modes_analog_tv_pal_576i
[23:04:30] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[23:04:30] =============== [PASSED] drm_modes_analog_tv ===============
[23:04:30] ============== drm_plane_helper (2 subtests) ===============
[23:04:30] =============== drm_test_check_plane_state ================
[23:04:30] [PASSED] clipping_simple
[23:04:30] [PASSED] clipping_rotate_reflect
[23:04:30] [PASSED] positioning_simple
[23:04:30] [PASSED] upscaling
[23:04:30] [PASSED] downscaling
[23:04:30] [PASSED] rounding1
[23:04:30] [PASSED] rounding2
[23:04:30] [PASSED] rounding3
[23:04:30] [PASSED] rounding4
[23:04:30] =========== [PASSED] drm_test_check_plane_state ============
[23:04:30] =========== drm_test_check_invalid_plane_state ============
[23:04:30] [PASSED] positioning_invalid
[23:04:30] [PASSED] upscaling_invalid
[23:04:30] [PASSED] downscaling_invalid
[23:04:30] ======= [PASSED] drm_test_check_invalid_plane_state ========
[23:04:30] ================ [PASSED] drm_plane_helper =================
[23:04:30] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[23:04:30] ====== drm_test_connector_helper_tv_get_modes_check =======
[23:04:30] [PASSED] None
[23:04:30] [PASSED] PAL
[23:04:30] [PASSED] NTSC
[23:04:30] [PASSED] Both, NTSC Default
[23:04:30] [PASSED] Both, PAL Default
[23:04:30] [PASSED] Both, NTSC Default, with PAL on command-line
[23:04:30] [PASSED] Both, PAL Default, with NTSC on command-line
[23:04:30] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[23:04:30] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[23:04:30] ================== drm_rect (9 subtests) ===================
[23:04:30] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[23:04:30] [PASSED] drm_test_rect_clip_scaled_not_clipped
[23:04:30] [PASSED] drm_test_rect_clip_scaled_clipped
[23:04:30] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[23:04:30] ================= drm_test_rect_intersect =================
[23:04:30] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[23:04:30] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[23:04:30] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[23:04:30] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[23:04:30] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[23:04:30] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[23:04:30] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[23:04:30] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[23:04:30] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[23:04:30] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[23:04:30] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[23:04:30] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[23:04:30] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[23:04:30] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[23:04:30] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
stty: 'standard input': Inappropriate ioctl for device
[23:04:30] ============= [PASSED] drm_test_rect_intersect =============
[23:04:30] ================ drm_test_rect_calc_hscale ================
[23:04:30] [PASSED] normal use
[23:04:30] [PASSED] out of max range
[23:04:30] [PASSED] out of min range
[23:04:30] [PASSED] zero dst
[23:04:30] [PASSED] negative src
[23:04:30] [PASSED] negative dst
[23:04:30] ============ [PASSED] drm_test_rect_calc_hscale ============
[23:04:30] ================ drm_test_rect_calc_vscale ================
[23:04:30] [PASSED] normal use
[23:04:30] [PASSED] out of max range
[23:04:30] [PASSED] out of min range
[23:04:30] [PASSED] zero dst
[23:04:30] [PASSED] negative src
[23:04:30] [PASSED] negative dst
[23:04:30] ============ [PASSED] drm_test_rect_calc_vscale ============
[23:04:30] ================== drm_test_rect_rotate ===================
[23:04:30] [PASSED] reflect-x
[23:04:30] [PASSED] reflect-y
[23:04:30] [PASSED] rotate-0
[23:04:30] [PASSED] rotate-90
[23:04:30] [PASSED] rotate-180
[23:04:30] [PASSED] rotate-270
[23:04:30] ============== [PASSED] drm_test_rect_rotate ===============
[23:04:30] ================ drm_test_rect_rotate_inv =================
[23:04:30] [PASSED] reflect-x
[23:04:30] [PASSED] reflect-y
[23:04:30] [PASSED] rotate-0
[23:04:30] [PASSED] rotate-90
[23:04:30] [PASSED] rotate-180
[23:04:30] [PASSED] rotate-270
[23:04:30] ============ [PASSED] drm_test_rect_rotate_inv =============
[23:04:30] ==================== [PASSED] drm_rect =====================
[23:04:30] ============ drm_sysfb_modeset_test (1 subtest) ============
[23:04:30] ============ drm_test_sysfb_build_fourcc_list =============
[23:04:30] [PASSED] no native formats
[23:04:30] [PASSED] XRGB8888 as native format
[23:04:30] [PASSED] remove duplicates
[23:04:30] [PASSED] convert alpha formats
[23:04:30] [PASSED] random formats
[23:04:30] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[23:04:30] ============= [PASSED] drm_sysfb_modeset_test ==============
[23:04:30] ================== drm_fixp (2 subtests) ===================
[23:04:30] [PASSED] drm_test_int2fixp
[23:04:30] [PASSED] drm_test_sm2fixp
[23:04:30] ==================== [PASSED] drm_fixp =====================
[23:04:30] ============================================================
[23:04:30] Testing complete. Ran 630 tests: passed: 630
[23:04:30] Elapsed time: 32.792s total, 1.634s configuring, 30.691s building, 0.450s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[23:04:30] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:04:32] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=25
[23:04:41] Starting KUnit Kernel (1/1)...
[23:04:41] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[23:04:41] ================= ttm_device (5 subtests) ==================
[23:04:41] [PASSED] ttm_device_init_basic
[23:04:41] [PASSED] ttm_device_init_multiple
[23:04:41] [PASSED] ttm_device_fini_basic
[23:04:41] [PASSED] ttm_device_init_no_vma_man
[23:04:41] ================== ttm_device_init_pools ==================
[23:04:41] [PASSED] No DMA allocations, no DMA32 required
[23:04:41] [PASSED] DMA allocations, DMA32 required
[23:04:41] [PASSED] No DMA allocations, DMA32 required
[23:04:41] [PASSED] DMA allocations, no DMA32 required
[23:04:41] ============== [PASSED] ttm_device_init_pools ==============
[23:04:41] =================== [PASSED] ttm_device ====================
[23:04:41] ================== ttm_pool (8 subtests) ===================
[23:04:41] ================== ttm_pool_alloc_basic ===================
[23:04:41] [PASSED] One page
[23:04:41] [PASSED] More than one page
[23:04:41] [PASSED] Above the allocation limit
[23:04:41] [PASSED] One page, with coherent DMA mappings enabled
[23:04:41] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[23:04:41] ============== [PASSED] ttm_pool_alloc_basic ===============
[23:04:41] ============== ttm_pool_alloc_basic_dma_addr ==============
[23:04:41] [PASSED] One page
[23:04:41] [PASSED] More than one page
[23:04:41] [PASSED] Above the allocation limit
[23:04:41] [PASSED] One page, with coherent DMA mappings enabled
[23:04:41] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[23:04:41] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[23:04:41] [PASSED] ttm_pool_alloc_order_caching_match
[23:04:41] [PASSED] ttm_pool_alloc_caching_mismatch
[23:04:41] [PASSED] ttm_pool_alloc_order_mismatch
[23:04:41] [PASSED] ttm_pool_free_dma_alloc
[23:04:41] [PASSED] ttm_pool_free_no_dma_alloc
[23:04:41] [PASSED] ttm_pool_fini_basic
[23:04:41] ==================== [PASSED] ttm_pool =====================
[23:04:41] ================ ttm_resource (8 subtests) =================
[23:04:41] ================= ttm_resource_init_basic =================
[23:04:41] [PASSED] Init resource in TTM_PL_SYSTEM
[23:04:41] [PASSED] Init resource in TTM_PL_VRAM
[23:04:41] [PASSED] Init resource in a private placement
[23:04:41] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[23:04:41] ============= [PASSED] ttm_resource_init_basic =============
[23:04:41] [PASSED] ttm_resource_init_pinned
[23:04:41] [PASSED] ttm_resource_fini_basic
[23:04:41] [PASSED] ttm_resource_manager_init_basic
[23:04:41] [PASSED] ttm_resource_manager_usage_basic
[23:04:41] [PASSED] ttm_resource_manager_set_used_basic
[23:04:41] [PASSED] ttm_sys_man_alloc_basic
[23:04:41] [PASSED] ttm_sys_man_free_basic
[23:04:41] ================== [PASSED] ttm_resource ===================
[23:04:41] =================== ttm_tt (15 subtests) ===================
[23:04:41] ==================== ttm_tt_init_basic ====================
[23:04:41] [PASSED] Page-aligned size
[23:04:41] [PASSED] Extra pages requested
[23:04:41] ================ [PASSED] ttm_tt_init_basic ================
[23:04:41] [PASSED] ttm_tt_init_misaligned
[23:04:41] [PASSED] ttm_tt_fini_basic
[23:04:41] [PASSED] ttm_tt_fini_sg
[23:04:41] [PASSED] ttm_tt_fini_shmem
[23:04:41] [PASSED] ttm_tt_create_basic
[23:04:41] [PASSED] ttm_tt_create_invalid_bo_type
[23:04:41] [PASSED] ttm_tt_create_ttm_exists
[23:04:41] [PASSED] ttm_tt_create_failed
[23:04:41] [PASSED] ttm_tt_destroy_basic
[23:04:41] [PASSED] ttm_tt_populate_null_ttm
[23:04:41] [PASSED] ttm_tt_populate_populated_ttm
[23:04:41] [PASSED] ttm_tt_unpopulate_basic
[23:04:41] [PASSED] ttm_tt_unpopulate_empty_ttm
[23:04:41] [PASSED] ttm_tt_swapin_basic
[23:04:41] ===================== [PASSED] ttm_tt ======================
[23:04:41] =================== ttm_bo (14 subtests) ===================
[23:04:41] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[23:04:41] [PASSED] Cannot be interrupted and sleeps
[23:04:41] [PASSED] Cannot be interrupted, locks straight away
[23:04:41] [PASSED] Can be interrupted, sleeps
[23:04:41] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[23:04:41] [PASSED] ttm_bo_reserve_locked_no_sleep
[23:04:41] [PASSED] ttm_bo_reserve_no_wait_ticket
[23:04:41] [PASSED] ttm_bo_reserve_double_resv
[23:04:41] [PASSED] ttm_bo_reserve_interrupted
[23:04:41] [PASSED] ttm_bo_reserve_deadlock
[23:04:41] [PASSED] ttm_bo_unreserve_basic
[23:04:41] [PASSED] ttm_bo_unreserve_pinned
[23:04:41] [PASSED] ttm_bo_unreserve_bulk
[23:04:41] [PASSED] ttm_bo_fini_basic
[23:04:41] [PASSED] ttm_bo_fini_shared_resv
[23:04:41] [PASSED] ttm_bo_pin_basic
[23:04:41] [PASSED] ttm_bo_pin_unpin_resource
[23:04:41] [PASSED] ttm_bo_multiple_pin_one_unpin
[23:04:41] ===================== [PASSED] ttm_bo ======================
[23:04:41] ============== ttm_bo_validate (21 subtests) ===============
[23:04:41] ============== ttm_bo_init_reserved_sys_man ===============
[23:04:41] [PASSED] Buffer object for userspace
[23:04:41] [PASSED] Kernel buffer object
[23:04:41] [PASSED] Shared buffer object
[23:04:41] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[23:04:41] ============== ttm_bo_init_reserved_mock_man ==============
[23:04:41] [PASSED] Buffer object for userspace
[23:04:41] [PASSED] Kernel buffer object
[23:04:41] [PASSED] Shared buffer object
[23:04:41] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[23:04:41] [PASSED] ttm_bo_init_reserved_resv
[23:04:41] ================== ttm_bo_validate_basic ==================
[23:04:41] [PASSED] Buffer object for userspace
[23:04:41] [PASSED] Kernel buffer object
[23:04:41] [PASSED] Shared buffer object
[23:04:41] ============== [PASSED] ttm_bo_validate_basic ==============
[23:04:41] [PASSED] ttm_bo_validate_invalid_placement
[23:04:41] ============= ttm_bo_validate_same_placement ==============
[23:04:41] [PASSED] System manager
[23:04:41] [PASSED] VRAM manager
[23:04:41] ========= [PASSED] ttm_bo_validate_same_placement ==========
[23:04:41] [PASSED] ttm_bo_validate_failed_alloc
[23:04:41] [PASSED] ttm_bo_validate_pinned
[23:04:41] [PASSED] ttm_bo_validate_busy_placement
[23:04:41] ================ ttm_bo_validate_multihop =================
[23:04:41] [PASSED] Buffer object for userspace
[23:04:41] [PASSED] Kernel buffer object
[23:04:41] [PASSED] Shared buffer object
[23:04:41] ============ [PASSED] ttm_bo_validate_multihop =============
[23:04:41] ========== ttm_bo_validate_no_placement_signaled ==========
[23:04:41] [PASSED] Buffer object in system domain, no page vector
[23:04:41] [PASSED] Buffer object in system domain with an existing page vector
[23:04:41] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[23:04:41] ======== ttm_bo_validate_no_placement_not_signaled ========
[23:04:41] [PASSED] Buffer object for userspace
[23:04:41] [PASSED] Kernel buffer object
[23:04:41] [PASSED] Shared buffer object
[23:04:41] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[23:04:41] [PASSED] ttm_bo_validate_move_fence_signaled
[23:04:41] ========= ttm_bo_validate_move_fence_not_signaled =========
[23:04:41] [PASSED] Waits for GPU
[23:04:41] [PASSED] Tries to lock straight away
[23:04:41] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[23:04:41] [PASSED] ttm_bo_validate_happy_evict
[23:04:41] [PASSED] ttm_bo_validate_all_pinned_evict
[23:04:41] [PASSED] ttm_bo_validate_allowed_only_evict
[23:04:41] [PASSED] ttm_bo_validate_deleted_evict
[23:04:41] [PASSED] ttm_bo_validate_busy_domain_evict
[23:04:41] [PASSED] ttm_bo_validate_evict_gutting
[23:04:41] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[23:04:41] ================= [PASSED] ttm_bo_validate =================
[23:04:41] ============================================================
[23:04:41] Testing complete. Ran 101 tests: passed: 101
[23:04:41] Elapsed time: 11.356s total, 1.627s configuring, 9.463s building, 0.231s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 48+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev3)
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (7 preceding siblings ...)
2026-01-30 23:05 ` ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev3) Patchwork
@ 2026-01-30 23:44 ` Patchwork
2026-02-03 15:48 ` [PATCH v4] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (18 subsequent siblings)
27 siblings, 0 replies; 48+ messages in thread
From: Patchwork @ 2026-01-30 23:44 UTC (permalink / raw)
To: Jia Yao; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 896 bytes --]
== Series Details ==
Series: drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev3)
URL : https://patchwork.freedesktop.org/series/160797/
State : success
== Summary ==
CI Bug Log - changes from xe-4478-c716d3fcf63ff63e6ecab8769c949e1cdbfb7a79_BAT -> xe-pw-160797v3_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-4478-c716d3fcf63ff63e6ecab8769c949e1cdbfb7a79 -> xe-pw-160797v3
IGT_8728: 8728
xe-4478-c716d3fcf63ff63e6ecab8769c949e1cdbfb7a79: c716d3fcf63ff63e6ecab8769c949e1cdbfb7a79
xe-pw-160797v3: 160797v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v3/index.html
[-- Attachment #2: Type: text/html, Size: 1444 bytes --]
^ permalink raw reply [flat|nested] 48+ messages in thread
* RE: [PATCH v3] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise
2026-01-30 22:07 ` [PATCH v3] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
@ 2026-02-03 2:54 ` Lin, Shuicheng
2026-02-04 15:13 ` Souza, Jose
1 sibling, 0 replies; 48+ messages in thread
From: Lin, Shuicheng @ 2026-02-03 2:54 UTC (permalink / raw)
To: Yao, Jia, intel-xe@lists.freedesktop.org
Cc: Yao, Jia, stable@vger.kernel.org, Mathew, Alwin, Mrozek, Michal,
Brost, Matthew, Auld, Matthew
Some comments not for this patch but for related code in this file.
On Fri, Jan 30, 2026 2:08 PM Jia Yao wrote:
> Add validation in xe_vm_madvise_ioctl() to reject PAT indices with
> XE_COH_NONE coherency mode when applied to CPU cached memory.
>
> Using coh_none with CPU cached buffers is a security issue. When the kernel
> clears pages before reallocation, the clear operation stays in CPU cache (dirty).
> GPU with coh_none can bypass CPU caches and read stale sensitive data directly
> from DRAM, potentially leaking data from previously freed pages of other
> processes.
>
> This aligns with the existing validation in vm_bind path
> (xe_vm_bind_ioctl_validate_bo).
>
> v2(Matthew brost)
> - Add fixes
> - Move one debug print to better place
>
> v3(Matthew Auld)
> - Should be drm/xe/uapi
> - More Cc
>
> Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
> Cc: stable@vger.kernel.org # v6.18
> Cc: Mathew Alwin <alwin.mathew@intel.com>
> Cc: Michal Mrozek <michal.mrozek@intel.com>
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: Matthew Auld <matthew.auld@intel.com>
> Signed-off-by: Jia Yao <jia.yao@intel.com>
> ---
> drivers/gpu/drm/xe/xe_vm_madvise.c | 47
> ++++++++++++++++++++++++++++++
> 1 file changed, 47 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c
> b/drivers/gpu/drm/xe/xe_vm_madvise.c
> index add9a6ca2390..50b82e821da7 100644
> --- a/drivers/gpu/drm/xe/xe_vm_madvise.c
> +++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
> @@ -352,6 +352,44 @@ static void xe_madvise_details_fini(struct
> xe_madvise_details *details)
> drm_pagemap_put(details->dpagemap);
> }
>
> +static bool check_pat_args_are_sane(struct xe_device *xe,
> + struct xe_vmas_in_madvise_range
> *madvise_range,
> + u16 pat_index)
> +{
> + u16 coh_mode = xe_pat_index_get_coh_mode(xe, pat_index);
> + int i;
> +
> + /*
> + * Using coh_none with CPU cached buffers is not allowed.
> + * Otherwise CPU page clearing can be bypassed, which is a
> + * security issue. GPU can directly access system memory and
> + * bypass CPU caches, potentially reading stale sensitive data
> + * from previously freed pages.
> + */
> + if (coh_mode != XE_COH_NONE)
> + return true;
> +
> + for (i = 0; i < madvise_range->num_vmas; i++) {
> + struct xe_vma *vma = madvise_range->vmas[i];
> + struct xe_bo *bo = xe_vma_bo(vma);
> +
> + if (bo) {
> + /* BO with WB caching + COH_NONE is not allowed */
> + if (XE_IOCTL_DBG(xe, bo->cpu_caching ==
> DRM_XE_GEM_CPU_CACHING_WB))
> + return false;
> + /* Imported dma-buf without caching info, assume
> cached */
> + if (XE_IOCTL_DBG(xe, !bo->cpu_caching))
> + return false;
> + } else if (XE_IOCTL_DBG(xe, xe_vma_is_cpu_addr_mirror(vma))
> ||
> + xe_vma_is_userptr(vma)) {
> + /* System memory (userptr/SVM) is always CPU cached
> */
> + return false;
> + }
> + }
> +
> + return true;
> +}
> +
> static bool check_bo_args_are_sane(struct xe_vm *vm, struct xe_vma **vmas,
> int num_vmas, u32 atomic_val)
> {
> @@ -442,6 +480,14 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void
> *data, struct drm_file *fil
> if (err || !madvise_range.num_vmas)
> goto madv_fini;
>
> + if (args->type == DRM_XE_MEM_RANGE_ATTR_PAT) {
> + if (!check_pat_args_are_sane(xe, &madvise_range,
> + args->pat_index.val)) {
> + err = -EINVAL;
> + goto free_vmas;
> + }
> + }
> +
> if (madvise_range.has_bo_vmas) {
> if (args->type == DRM_XE_MEM_RANGE_ATTR_ATOMIC) {
> if (!check_bo_args_are_sane(vm, madvise_range.vmas,
While go through the code, I find it is "goto madv_fini;" here, which should be corrected to "goto free_vmas" also.
Could you please use another patch to fix it? Thanks.
> @@ -485,6 +531,7 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void
> *data, struct drm_file *fil
> err_fini:
> if (madvise_range.has_bo_vmas)
> drm_exec_fini(&exec);
> +free_vmas:
> kfree(madvise_range.vmas);
> madvise_range.vmas = NULL;
This line could be removed; there is no need to set NULL for a local parameter here.
Shuicheng
> madv_fini:
> --
> 2.43.0
^ permalink raw reply [flat|nested] 48+ messages in thread
* [PATCH v4] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (8 preceding siblings ...)
2026-01-30 23:44 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-02-03 15:48 ` Jia Yao
2026-02-03 16:38 ` Matthew Auld
2026-03-10 14:50 ` Mrozek, Michal
2026-02-03 16:14 ` ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev4) Patchwork
` (17 subsequent siblings)
27 siblings, 2 replies; 48+ messages in thread
From: Jia Yao @ 2026-02-03 15:48 UTC (permalink / raw)
To: intel-xe
Cc: Jia Yao, stable, Shuicheng Lin, Mathew Alwin, Michal Mrozek,
Matthew Brost, Matthew Auld
Add validation in xe_vm_madvise_ioctl() to reject PAT indices with
XE_COH_NONE coherency mode when applied to CPU cached memory.
Using coh_none with CPU cached buffers is a security issue. When the
kernel clears pages before reallocation, the clear operation stays in
CPU cache (dirty). GPU with coh_none can bypass CPU caches and read
stale sensitive data directly from DRAM, potentially leaking data from
previously freed pages of other processes.
This aligns with the existing validation in vm_bind path
(xe_vm_bind_ioctl_validate_bo).
v2(Matthew brost)
- Add fixes
- Move one debug print to better place
v3(Matthew Auld)
- Should be drm/xe/uapi
- More Cc
v4(Shuicheng Lin)
- Fix kmem leak issues by the way
Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
Cc: stable@vger.kernel.org # v6.18
Cc: Shuicheng Lin <shuicheng.lin@intel.com>
Cc: Mathew Alwin <alwin.mathew@intel.com>
Cc: Michal Mrozek <michal.mrozek@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Jia Yao <jia.yao@intel.com>
---
drivers/gpu/drm/xe/xe_vm_madvise.c | 55 +++++++++++++++++++++++++++---
1 file changed, 50 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c b/drivers/gpu/drm/xe/xe_vm_madvise.c
index add9a6ca2390..bf41fe75a336 100644
--- a/drivers/gpu/drm/xe/xe_vm_madvise.c
+++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
@@ -74,7 +74,7 @@ static int get_vmas(struct xe_vm *vm, struct xe_vmas_in_madvise_range *madvise_r
}
madvise_range->vmas[madvise_range->num_vmas] = vma;
- (madvise_range->num_vmas)++;
+ madvise_range->num_vmas++;
}
if (!madvise_range->num_vmas)
@@ -352,6 +352,43 @@ static void xe_madvise_details_fini(struct xe_madvise_details *details)
drm_pagemap_put(details->dpagemap);
}
+static bool check_pat_args_are_sane(struct xe_device *xe,
+ struct xe_vmas_in_madvise_range *madvise_range,
+ u16 pat_index)
+{
+ u16 coh_mode = xe_pat_index_get_coh_mode(xe, pat_index);
+ int i;
+
+ /*
+ * Using coh_none with CPU cached buffers is not allowed.
+ * Otherwise CPU page clearing can be bypassed, which is a
+ * security issue. GPU can directly access system memory and
+ * bypass CPU caches, potentially reading stale sensitive data
+ * from previously freed pages.
+ */
+ if (coh_mode != XE_COH_NONE)
+ return true;
+
+ for (i = 0; i < madvise_range->num_vmas; i++) {
+ struct xe_vma *vma = madvise_range->vmas[i];
+ struct xe_bo *bo = xe_vma_bo(vma);
+
+ if (bo) {
+ /* BO with WB caching + COH_NONE is not allowed */
+ if (XE_IOCTL_DBG(xe, bo->cpu_caching == DRM_XE_GEM_CPU_CACHING_WB))
+ return false;
+ /* Imported dma-buf without caching info, assume cached */
+ if (XE_IOCTL_DBG(xe, !bo->cpu_caching))
+ return false;
+ } else if (XE_IOCTL_DBG(xe, xe_vma_is_cpu_addr_mirror(vma) ||
+ xe_vma_is_userptr(vma)))
+ /* System memory (userptr/SVM) is always CPU cached */
+ return false;
+ }
+
+ return true;
+}
+
static bool check_bo_args_are_sane(struct xe_vm *vm, struct xe_vma **vmas,
int num_vmas, u32 atomic_val)
{
@@ -388,12 +425,12 @@ static bool check_bo_args_are_sane(struct xe_vm *vm, struct xe_vma **vmas,
return true;
}
/**
- * xe_vm_madvise_ioctl - Handle MADVise ioctl for a VM
+ * xe_vm_madvise_ioctl - Handle madvise ioctl for a VM
* @dev: DRM device pointer
* @data: Pointer to ioctl data (drm_xe_madvise*)
* @file: DRM file pointer
*
- * Handles the MADVISE ioctl to provide memory advice for vma's within
+ * Handles the madvise ioctl to provide memory advice for vma's within
* input range.
*
* Return: 0 on success or a negative error code on failure.
@@ -442,13 +479,21 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void *data, struct drm_file *fil
if (err || !madvise_range.num_vmas)
goto madv_fini;
+ if (args->type == DRM_XE_MEM_RANGE_ATTR_PAT) {
+ if (!check_pat_args_are_sane(xe, &madvise_range,
+ args->pat_index.val)) {
+ err = -EINVAL;
+ goto free_vmas;
+ }
+ }
+
if (madvise_range.has_bo_vmas) {
if (args->type == DRM_XE_MEM_RANGE_ATTR_ATOMIC) {
if (!check_bo_args_are_sane(vm, madvise_range.vmas,
madvise_range.num_vmas,
args->atomic.val)) {
err = -EINVAL;
- goto madv_fini;
+ goto free_vmas;
}
}
@@ -485,8 +530,8 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void *data, struct drm_file *fil
err_fini:
if (madvise_range.has_bo_vmas)
drm_exec_fini(&exec);
+free_vmas:
kfree(madvise_range.vmas);
- madvise_range.vmas = NULL;
madv_fini:
xe_madvise_details_fini(&details);
unlock_vm:
--
2.43.0
^ permalink raw reply related [flat|nested] 48+ messages in thread
* ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev4)
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (9 preceding siblings ...)
2026-02-03 15:48 ` [PATCH v4] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
@ 2026-02-03 16:14 ` Patchwork
2026-02-03 17:07 ` ✗ Xe.CI.BAT: failure " Patchwork
` (16 subsequent siblings)
27 siblings, 0 replies; 48+ messages in thread
From: Patchwork @ 2026-02-03 16:14 UTC (permalink / raw)
To: Jia Yao; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev4)
URL : https://patchwork.freedesktop.org/series/160797/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[16:13:17] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:13:21] 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
[16:13:53] Starting KUnit Kernel (1/1)...
[16:13:53] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:13:54] ================== guc_buf (11 subtests) ===================
[16:13:54] [PASSED] test_smallest
[16:13:54] [PASSED] test_largest
[16:13:54] [PASSED] test_granular
[16:13:54] [PASSED] test_unique
[16:13:54] [PASSED] test_overlap
[16:13:54] [PASSED] test_reusable
[16:13:54] [PASSED] test_too_big
[16:13:54] [PASSED] test_flush
[16:13:54] [PASSED] test_lookup
[16:13:54] [PASSED] test_data
[16:13:54] [PASSED] test_class
[16:13:54] ===================== [PASSED] guc_buf =====================
[16:13:54] =================== guc_dbm (7 subtests) ===================
[16:13:54] [PASSED] test_empty
[16:13:54] [PASSED] test_default
[16:13:54] ======================== test_size ========================
[16:13:54] [PASSED] 4
[16:13:54] [PASSED] 8
[16:13:54] [PASSED] 32
[16:13:54] [PASSED] 256
[16:13:54] ==================== [PASSED] test_size ====================
[16:13:54] ======================= test_reuse ========================
[16:13:54] [PASSED] 4
[16:13:54] [PASSED] 8
[16:13:54] [PASSED] 32
[16:13:54] [PASSED] 256
[16:13:54] =================== [PASSED] test_reuse ====================
[16:13:54] =================== test_range_overlap ====================
[16:13:54] [PASSED] 4
[16:13:54] [PASSED] 8
[16:13:54] [PASSED] 32
[16:13:54] [PASSED] 256
[16:13:54] =============== [PASSED] test_range_overlap ================
[16:13:54] =================== test_range_compact ====================
[16:13:54] [PASSED] 4
[16:13:54] [PASSED] 8
[16:13:54] [PASSED] 32
[16:13:54] [PASSED] 256
[16:13:54] =============== [PASSED] test_range_compact ================
[16:13:54] ==================== test_range_spare =====================
[16:13:54] [PASSED] 4
[16:13:54] [PASSED] 8
[16:13:54] [PASSED] 32
[16:13:54] [PASSED] 256
[16:13:54] ================ [PASSED] test_range_spare =================
[16:13:54] ===================== [PASSED] guc_dbm =====================
[16:13:54] =================== guc_idm (6 subtests) ===================
[16:13:54] [PASSED] bad_init
[16:13:54] [PASSED] no_init
[16:13:54] [PASSED] init_fini
[16:13:54] [PASSED] check_used
[16:13:54] [PASSED] check_quota
[16:13:54] [PASSED] check_all
[16:13:54] ===================== [PASSED] guc_idm =====================
[16:13:54] ================== no_relay (3 subtests) ===================
[16:13:54] [PASSED] xe_drops_guc2pf_if_not_ready
[16:13:54] [PASSED] xe_drops_guc2vf_if_not_ready
[16:13:54] [PASSED] xe_rejects_send_if_not_ready
[16:13:54] ==================== [PASSED] no_relay =====================
[16:13:54] ================== pf_relay (14 subtests) ==================
[16:13:54] [PASSED] pf_rejects_guc2pf_too_short
[16:13:54] [PASSED] pf_rejects_guc2pf_too_long
[16:13:54] [PASSED] pf_rejects_guc2pf_no_payload
[16:13:54] [PASSED] pf_fails_no_payload
[16:13:54] [PASSED] pf_fails_bad_origin
[16:13:54] [PASSED] pf_fails_bad_type
[16:13:54] [PASSED] pf_txn_reports_error
[16:13:54] [PASSED] pf_txn_sends_pf2guc
[16:13:54] [PASSED] pf_sends_pf2guc
[16:13:54] [SKIPPED] pf_loopback_nop
[16:13:54] [SKIPPED] pf_loopback_echo
[16:13:54] [SKIPPED] pf_loopback_fail
[16:13:54] [SKIPPED] pf_loopback_busy
[16:13:54] [SKIPPED] pf_loopback_retry
[16:13:54] ==================== [PASSED] pf_relay =====================
[16:13:54] ================== vf_relay (3 subtests) ===================
[16:13:54] [PASSED] vf_rejects_guc2vf_too_short
[16:13:54] [PASSED] vf_rejects_guc2vf_too_long
[16:13:54] [PASSED] vf_rejects_guc2vf_no_payload
[16:13:54] ==================== [PASSED] vf_relay =====================
[16:13:54] ================ pf_gt_config (6 subtests) =================
[16:13:54] [PASSED] fair_contexts_1vf
[16:13:54] [PASSED] fair_doorbells_1vf
[16:13:54] [PASSED] fair_ggtt_1vf
[16:13:54] ====================== fair_contexts ======================
[16:13:54] [PASSED] 1 VF
[16:13:54] [PASSED] 2 VFs
[16:13:54] [PASSED] 3 VFs
[16:13:54] [PASSED] 4 VFs
[16:13:54] [PASSED] 5 VFs
[16:13:54] [PASSED] 6 VFs
[16:13:54] [PASSED] 7 VFs
[16:13:54] [PASSED] 8 VFs
[16:13:54] [PASSED] 9 VFs
[16:13:54] [PASSED] 10 VFs
[16:13:54] [PASSED] 11 VFs
[16:13:54] [PASSED] 12 VFs
[16:13:54] [PASSED] 13 VFs
[16:13:54] [PASSED] 14 VFs
[16:13:54] [PASSED] 15 VFs
[16:13:54] [PASSED] 16 VFs
[16:13:54] [PASSED] 17 VFs
[16:13:54] [PASSED] 18 VFs
[16:13:54] [PASSED] 19 VFs
[16:13:54] [PASSED] 20 VFs
[16:13:54] [PASSED] 21 VFs
[16:13:54] [PASSED] 22 VFs
[16:13:54] [PASSED] 23 VFs
[16:13:54] [PASSED] 24 VFs
[16:13:54] [PASSED] 25 VFs
[16:13:54] [PASSED] 26 VFs
[16:13:54] [PASSED] 27 VFs
[16:13:54] [PASSED] 28 VFs
[16:13:54] [PASSED] 29 VFs
[16:13:54] [PASSED] 30 VFs
[16:13:54] [PASSED] 31 VFs
[16:13:54] [PASSED] 32 VFs
[16:13:54] [PASSED] 33 VFs
[16:13:54] [PASSED] 34 VFs
[16:13:54] [PASSED] 35 VFs
[16:13:54] [PASSED] 36 VFs
[16:13:54] [PASSED] 37 VFs
[16:13:54] [PASSED] 38 VFs
[16:13:54] [PASSED] 39 VFs
[16:13:54] [PASSED] 40 VFs
[16:13:54] [PASSED] 41 VFs
[16:13:54] [PASSED] 42 VFs
[16:13:54] [PASSED] 43 VFs
[16:13:54] [PASSED] 44 VFs
[16:13:54] [PASSED] 45 VFs
[16:13:54] [PASSED] 46 VFs
[16:13:54] [PASSED] 47 VFs
[16:13:54] [PASSED] 48 VFs
[16:13:54] [PASSED] 49 VFs
[16:13:54] [PASSED] 50 VFs
[16:13:54] [PASSED] 51 VFs
[16:13:54] [PASSED] 52 VFs
[16:13:54] [PASSED] 53 VFs
[16:13:54] [PASSED] 54 VFs
[16:13:54] [PASSED] 55 VFs
[16:13:54] [PASSED] 56 VFs
[16:13:54] [PASSED] 57 VFs
[16:13:54] [PASSED] 58 VFs
[16:13:54] [PASSED] 59 VFs
[16:13:54] [PASSED] 60 VFs
[16:13:54] [PASSED] 61 VFs
[16:13:54] [PASSED] 62 VFs
[16:13:54] [PASSED] 63 VFs
[16:13:54] ================== [PASSED] fair_contexts ==================
[16:13:54] ===================== fair_doorbells ======================
[16:13:54] [PASSED] 1 VF
[16:13:54] [PASSED] 2 VFs
[16:13:54] [PASSED] 3 VFs
[16:13:54] [PASSED] 4 VFs
[16:13:54] [PASSED] 5 VFs
[16:13:54] [PASSED] 6 VFs
[16:13:54] [PASSED] 7 VFs
[16:13:54] [PASSED] 8 VFs
[16:13:54] [PASSED] 9 VFs
[16:13:54] [PASSED] 10 VFs
[16:13:54] [PASSED] 11 VFs
[16:13:54] [PASSED] 12 VFs
[16:13:54] [PASSED] 13 VFs
[16:13:54] [PASSED] 14 VFs
[16:13:54] [PASSED] 15 VFs
[16:13:54] [PASSED] 16 VFs
[16:13:54] [PASSED] 17 VFs
[16:13:54] [PASSED] 18 VFs
[16:13:54] [PASSED] 19 VFs
[16:13:54] [PASSED] 20 VFs
[16:13:54] [PASSED] 21 VFs
[16:13:54] [PASSED] 22 VFs
[16:13:54] [PASSED] 23 VFs
[16:13:54] [PASSED] 24 VFs
[16:13:54] [PASSED] 25 VFs
[16:13:54] [PASSED] 26 VFs
[16:13:54] [PASSED] 27 VFs
[16:13:54] [PASSED] 28 VFs
[16:13:54] [PASSED] 29 VFs
[16:13:54] [PASSED] 30 VFs
[16:13:54] [PASSED] 31 VFs
[16:13:54] [PASSED] 32 VFs
[16:13:54] [PASSED] 33 VFs
[16:13:54] [PASSED] 34 VFs
[16:13:54] [PASSED] 35 VFs
[16:13:54] [PASSED] 36 VFs
[16:13:54] [PASSED] 37 VFs
[16:13:54] [PASSED] 38 VFs
[16:13:54] [PASSED] 39 VFs
[16:13:54] [PASSED] 40 VFs
[16:13:54] [PASSED] 41 VFs
[16:13:54] [PASSED] 42 VFs
[16:13:54] [PASSED] 43 VFs
[16:13:54] [PASSED] 44 VFs
[16:13:54] [PASSED] 45 VFs
[16:13:54] [PASSED] 46 VFs
[16:13:54] [PASSED] 47 VFs
[16:13:54] [PASSED] 48 VFs
[16:13:54] [PASSED] 49 VFs
[16:13:54] [PASSED] 50 VFs
[16:13:54] [PASSED] 51 VFs
[16:13:54] [PASSED] 52 VFs
[16:13:54] [PASSED] 53 VFs
[16:13:54] [PASSED] 54 VFs
[16:13:54] [PASSED] 55 VFs
[16:13:54] [PASSED] 56 VFs
[16:13:54] [PASSED] 57 VFs
[16:13:54] [PASSED] 58 VFs
[16:13:54] [PASSED] 59 VFs
[16:13:54] [PASSED] 60 VFs
[16:13:54] [PASSED] 61 VFs
[16:13:54] [PASSED] 62 VFs
[16:13:54] [PASSED] 63 VFs
[16:13:54] ================= [PASSED] fair_doorbells ==================
[16:13:54] ======================== fair_ggtt ========================
[16:13:54] [PASSED] 1 VF
[16:13:54] [PASSED] 2 VFs
[16:13:54] [PASSED] 3 VFs
[16:13:54] [PASSED] 4 VFs
[16:13:54] [PASSED] 5 VFs
[16:13:54] [PASSED] 6 VFs
[16:13:54] [PASSED] 7 VFs
[16:13:54] [PASSED] 8 VFs
[16:13:54] [PASSED] 9 VFs
[16:13:54] [PASSED] 10 VFs
[16:13:54] [PASSED] 11 VFs
[16:13:54] [PASSED] 12 VFs
[16:13:54] [PASSED] 13 VFs
[16:13:54] [PASSED] 14 VFs
[16:13:54] [PASSED] 15 VFs
[16:13:54] [PASSED] 16 VFs
[16:13:54] [PASSED] 17 VFs
[16:13:54] [PASSED] 18 VFs
[16:13:54] [PASSED] 19 VFs
[16:13:54] [PASSED] 20 VFs
[16:13:54] [PASSED] 21 VFs
[16:13:54] [PASSED] 22 VFs
[16:13:54] [PASSED] 23 VFs
[16:13:54] [PASSED] 24 VFs
[16:13:54] [PASSED] 25 VFs
[16:13:54] [PASSED] 26 VFs
[16:13:54] [PASSED] 27 VFs
[16:13:54] [PASSED] 28 VFs
[16:13:54] [PASSED] 29 VFs
[16:13:54] [PASSED] 30 VFs
[16:13:54] [PASSED] 31 VFs
[16:13:54] [PASSED] 32 VFs
[16:13:54] [PASSED] 33 VFs
[16:13:54] [PASSED] 34 VFs
[16:13:54] [PASSED] 35 VFs
[16:13:54] [PASSED] 36 VFs
[16:13:54] [PASSED] 37 VFs
[16:13:54] [PASSED] 38 VFs
[16:13:54] [PASSED] 39 VFs
[16:13:54] [PASSED] 40 VFs
[16:13:54] [PASSED] 41 VFs
[16:13:54] [PASSED] 42 VFs
[16:13:54] [PASSED] 43 VFs
[16:13:54] [PASSED] 44 VFs
[16:13:54] [PASSED] 45 VFs
[16:13:54] [PASSED] 46 VFs
[16:13:54] [PASSED] 47 VFs
[16:13:54] [PASSED] 48 VFs
[16:13:54] [PASSED] 49 VFs
[16:13:54] [PASSED] 50 VFs
[16:13:54] [PASSED] 51 VFs
[16:13:54] [PASSED] 52 VFs
[16:13:54] [PASSED] 53 VFs
[16:13:54] [PASSED] 54 VFs
[16:13:54] [PASSED] 55 VFs
[16:13:54] [PASSED] 56 VFs
[16:13:54] [PASSED] 57 VFs
[16:13:54] [PASSED] 58 VFs
[16:13:54] [PASSED] 59 VFs
[16:13:54] [PASSED] 60 VFs
[16:13:54] [PASSED] 61 VFs
[16:13:54] [PASSED] 62 VFs
[16:13:54] [PASSED] 63 VFs
[16:13:54] ==================== [PASSED] fair_ggtt ====================
[16:13:54] ================== [PASSED] pf_gt_config ===================
[16:13:54] ===================== lmtt (1 subtest) =====================
[16:13:54] ======================== test_ops =========================
[16:13:54] [PASSED] 2-level
[16:13:54] [PASSED] multi-level
[16:13:54] ==================== [PASSED] test_ops =====================
[16:13:54] ====================== [PASSED] lmtt =======================
[16:13:54] ================= pf_service (11 subtests) =================
[16:13:54] [PASSED] pf_negotiate_any
[16:13:54] [PASSED] pf_negotiate_base_match
[16:13:54] [PASSED] pf_negotiate_base_newer
[16:13:54] [PASSED] pf_negotiate_base_next
[16:13:54] [SKIPPED] pf_negotiate_base_older
[16:13:54] [PASSED] pf_negotiate_base_prev
[16:13:54] [PASSED] pf_negotiate_latest_match
[16:13:54] [PASSED] pf_negotiate_latest_newer
[16:13:54] [PASSED] pf_negotiate_latest_next
[16:13:54] [SKIPPED] pf_negotiate_latest_older
[16:13:54] [SKIPPED] pf_negotiate_latest_prev
[16:13:54] =================== [PASSED] pf_service ====================
[16:13:54] ================= xe_guc_g2g (2 subtests) ==================
[16:13:54] ============== xe_live_guc_g2g_kunit_default ==============
[16:13:54] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[16:13:54] ============== xe_live_guc_g2g_kunit_allmem ===============
[16:13:54] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[16:13:54] =================== [SKIPPED] xe_guc_g2g ===================
[16:13:54] =================== xe_mocs (2 subtests) ===================
[16:13:54] ================ xe_live_mocs_kernel_kunit ================
[16:13:54] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[16:13:54] ================ xe_live_mocs_reset_kunit =================
[16:13:54] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[16:13:54] ==================== [SKIPPED] xe_mocs =====================
[16:13:54] ================= xe_migrate (2 subtests) ==================
[16:13:54] ================= xe_migrate_sanity_kunit =================
[16:13:54] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[16:13:54] ================== xe_validate_ccs_kunit ==================
[16:13:54] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[16:13:54] =================== [SKIPPED] xe_migrate ===================
[16:13:54] ================== xe_dma_buf (1 subtest) ==================
[16:13:54] ==================== xe_dma_buf_kunit =====================
[16:13:54] ================ [SKIPPED] xe_dma_buf_kunit ================
[16:13:54] =================== [SKIPPED] xe_dma_buf ===================
[16:13:54] ================= xe_bo_shrink (1 subtest) =================
[16:13:54] =================== xe_bo_shrink_kunit ====================
[16:13:54] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[16:13:54] ================== [SKIPPED] xe_bo_shrink ==================
[16:13:54] ==================== xe_bo (2 subtests) ====================
[16:13:54] ================== xe_ccs_migrate_kunit ===================
[16:13:54] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[16:13:54] ==================== xe_bo_evict_kunit ====================
[16:13:54] =============== [SKIPPED] xe_bo_evict_kunit ================
[16:13:54] ===================== [SKIPPED] xe_bo ======================
[16:13:54] ==================== args (13 subtests) ====================
[16:13:54] [PASSED] count_args_test
[16:13:54] [PASSED] call_args_example
[16:13:54] [PASSED] call_args_test
[16:13:54] [PASSED] drop_first_arg_example
[16:13:54] [PASSED] drop_first_arg_test
[16:13:54] [PASSED] first_arg_example
[16:13:54] [PASSED] first_arg_test
[16:13:54] [PASSED] last_arg_example
[16:13:54] [PASSED] last_arg_test
[16:13:54] [PASSED] pick_arg_example
[16:13:54] [PASSED] if_args_example
[16:13:54] [PASSED] if_args_test
[16:13:54] [PASSED] sep_comma_example
[16:13:54] ====================== [PASSED] args =======================
[16:13:54] =================== xe_pci (3 subtests) ====================
[16:13:54] ==================== check_graphics_ip ====================
[16:13:54] [PASSED] 12.00 Xe_LP
[16:13:54] [PASSED] 12.10 Xe_LP+
[16:13:54] [PASSED] 12.55 Xe_HPG
[16:13:54] [PASSED] 12.60 Xe_HPC
[16:13:54] [PASSED] 12.70 Xe_LPG
[16:13:54] [PASSED] 12.71 Xe_LPG
[16:13:54] [PASSED] 12.74 Xe_LPG+
[16:13:54] [PASSED] 20.01 Xe2_HPG
[16:13:54] [PASSED] 20.02 Xe2_HPG
[16:13:54] [PASSED] 20.04 Xe2_LPG
[16:13:54] [PASSED] 30.00 Xe3_LPG
[16:13:54] [PASSED] 30.01 Xe3_LPG
[16:13:54] [PASSED] 30.03 Xe3_LPG
[16:13:54] [PASSED] 30.04 Xe3_LPG
[16:13:54] [PASSED] 30.05 Xe3_LPG
[16:13:54] [PASSED] 35.11 Xe3p_XPC
[16:13:54] ================ [PASSED] check_graphics_ip ================
[16:13:54] ===================== check_media_ip ======================
[16:13:54] [PASSED] 12.00 Xe_M
[16:13:54] [PASSED] 12.55 Xe_HPM
[16:13:54] [PASSED] 13.00 Xe_LPM+
[16:13:54] [PASSED] 13.01 Xe2_HPM
[16:13:54] [PASSED] 20.00 Xe2_LPM
[16:13:54] [PASSED] 30.00 Xe3_LPM
[16:13:54] [PASSED] 30.02 Xe3_LPM
[16:13:54] [PASSED] 35.00 Xe3p_LPM
[16:13:54] [PASSED] 35.03 Xe3p_HPM
[16:13:54] ================= [PASSED] check_media_ip ==================
[16:13:54] =================== check_platform_desc ===================
[16:13:54] [PASSED] 0x9A60 (TIGERLAKE)
[16:13:54] [PASSED] 0x9A68 (TIGERLAKE)
[16:13:54] [PASSED] 0x9A70 (TIGERLAKE)
[16:13:54] [PASSED] 0x9A40 (TIGERLAKE)
[16:13:54] [PASSED] 0x9A49 (TIGERLAKE)
[16:13:54] [PASSED] 0x9A59 (TIGERLAKE)
[16:13:54] [PASSED] 0x9A78 (TIGERLAKE)
[16:13:54] [PASSED] 0x9AC0 (TIGERLAKE)
[16:13:54] [PASSED] 0x9AC9 (TIGERLAKE)
[16:13:54] [PASSED] 0x9AD9 (TIGERLAKE)
[16:13:54] [PASSED] 0x9AF8 (TIGERLAKE)
[16:13:54] [PASSED] 0x4C80 (ROCKETLAKE)
[16:13:54] [PASSED] 0x4C8A (ROCKETLAKE)
[16:13:54] [PASSED] 0x4C8B (ROCKETLAKE)
[16:13:54] [PASSED] 0x4C8C (ROCKETLAKE)
[16:13:54] [PASSED] 0x4C90 (ROCKETLAKE)
[16:13:54] [PASSED] 0x4C9A (ROCKETLAKE)
[16:13:54] [PASSED] 0x4680 (ALDERLAKE_S)
[16:13:54] [PASSED] 0x4682 (ALDERLAKE_S)
[16:13:54] [PASSED] 0x4688 (ALDERLAKE_S)
[16:13:54] [PASSED] 0x468A (ALDERLAKE_S)
[16:13:54] [PASSED] 0x468B (ALDERLAKE_S)
[16:13:54] [PASSED] 0x4690 (ALDERLAKE_S)
[16:13:54] [PASSED] 0x4692 (ALDERLAKE_S)
[16:13:54] [PASSED] 0x4693 (ALDERLAKE_S)
[16:13:54] [PASSED] 0x46A0 (ALDERLAKE_P)
[16:13:54] [PASSED] 0x46A1 (ALDERLAKE_P)
[16:13:54] [PASSED] 0x46A2 (ALDERLAKE_P)
[16:13:54] [PASSED] 0x46A3 (ALDERLAKE_P)
[16:13:54] [PASSED] 0x46A6 (ALDERLAKE_P)
[16:13:54] [PASSED] 0x46A8 (ALDERLAKE_P)
[16:13:54] [PASSED] 0x46AA (ALDERLAKE_P)
[16:13:54] [PASSED] 0x462A (ALDERLAKE_P)
[16:13:54] [PASSED] 0x4626 (ALDERLAKE_P)
[16:13:54] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[16:13:54] [PASSED] 0x46B0 (ALDERLAKE_P)
[16:13:54] [PASSED] 0x46B1 (ALDERLAKE_P)
[16:13:54] [PASSED] 0x46B2 (ALDERLAKE_P)
[16:13:54] [PASSED] 0x46B3 (ALDERLAKE_P)
[16:13:54] [PASSED] 0x46C0 (ALDERLAKE_P)
[16:13:54] [PASSED] 0x46C1 (ALDERLAKE_P)
[16:13:54] [PASSED] 0x46C2 (ALDERLAKE_P)
[16:13:54] [PASSED] 0x46C3 (ALDERLAKE_P)
[16:13:54] [PASSED] 0x46D0 (ALDERLAKE_N)
[16:13:54] [PASSED] 0x46D1 (ALDERLAKE_N)
[16:13:54] [PASSED] 0x46D2 (ALDERLAKE_N)
[16:13:54] [PASSED] 0x46D3 (ALDERLAKE_N)
[16:13:54] [PASSED] 0x46D4 (ALDERLAKE_N)
[16:13:54] [PASSED] 0xA721 (ALDERLAKE_P)
[16:13:54] [PASSED] 0xA7A1 (ALDERLAKE_P)
[16:13:54] [PASSED] 0xA7A9 (ALDERLAKE_P)
[16:13:54] [PASSED] 0xA7AC (ALDERLAKE_P)
[16:13:54] [PASSED] 0xA7AD (ALDERLAKE_P)
[16:13:54] [PASSED] 0xA720 (ALDERLAKE_P)
[16:13:54] [PASSED] 0xA7A0 (ALDERLAKE_P)
[16:13:54] [PASSED] 0xA7A8 (ALDERLAKE_P)
[16:13:54] [PASSED] 0xA7AA (ALDERLAKE_P)
[16:13:54] [PASSED] 0xA7AB (ALDERLAKE_P)
[16:13:54] [PASSED] 0xA780 (ALDERLAKE_S)
[16:13:54] [PASSED] 0xA781 (ALDERLAKE_S)
[16:13:54] [PASSED] 0xA782 (ALDERLAKE_S)
[16:13:54] [PASSED] 0xA783 (ALDERLAKE_S)
[16:13:54] [PASSED] 0xA788 (ALDERLAKE_S)
[16:13:54] [PASSED] 0xA789 (ALDERLAKE_S)
[16:13:54] [PASSED] 0xA78A (ALDERLAKE_S)
[16:13:54] [PASSED] 0xA78B (ALDERLAKE_S)
[16:13:54] [PASSED] 0x4905 (DG1)
[16:13:54] [PASSED] 0x4906 (DG1)
[16:13:54] [PASSED] 0x4907 (DG1)
[16:13:54] [PASSED] 0x4908 (DG1)
[16:13:54] [PASSED] 0x4909 (DG1)
[16:13:54] [PASSED] 0x56C0 (DG2)
[16:13:54] [PASSED] 0x56C2 (DG2)
[16:13:54] [PASSED] 0x56C1 (DG2)
[16:13:54] [PASSED] 0x7D51 (METEORLAKE)
[16:13:54] [PASSED] 0x7DD1 (METEORLAKE)
[16:13:54] [PASSED] 0x7D41 (METEORLAKE)
[16:13:54] [PASSED] 0x7D67 (METEORLAKE)
[16:13:54] [PASSED] 0xB640 (METEORLAKE)
[16:13:54] [PASSED] 0x56A0 (DG2)
[16:13:54] [PASSED] 0x56A1 (DG2)
[16:13:54] [PASSED] 0x56A2 (DG2)
[16:13:54] [PASSED] 0x56BE (DG2)
[16:13:54] [PASSED] 0x56BF (DG2)
[16:13:54] [PASSED] 0x5690 (DG2)
[16:13:54] [PASSED] 0x5691 (DG2)
[16:13:54] [PASSED] 0x5692 (DG2)
[16:13:54] [PASSED] 0x56A5 (DG2)
[16:13:54] [PASSED] 0x56A6 (DG2)
[16:13:54] [PASSED] 0x56B0 (DG2)
[16:13:54] [PASSED] 0x56B1 (DG2)
[16:13:54] [PASSED] 0x56BA (DG2)
[16:13:54] [PASSED] 0x56BB (DG2)
[16:13:54] [PASSED] 0x56BC (DG2)
[16:13:54] [PASSED] 0x56BD (DG2)
[16:13:54] [PASSED] 0x5693 (DG2)
[16:13:54] [PASSED] 0x5694 (DG2)
[16:13:54] [PASSED] 0x5695 (DG2)
[16:13:54] [PASSED] 0x56A3 (DG2)
[16:13:54] [PASSED] 0x56A4 (DG2)
[16:13:54] [PASSED] 0x56B2 (DG2)
[16:13:54] [PASSED] 0x56B3 (DG2)
[16:13:54] [PASSED] 0x5696 (DG2)
[16:13:54] [PASSED] 0x5697 (DG2)
[16:13:54] [PASSED] 0xB69 (PVC)
[16:13:54] [PASSED] 0xB6E (PVC)
[16:13:54] [PASSED] 0xBD4 (PVC)
[16:13:54] [PASSED] 0xBD5 (PVC)
[16:13:54] [PASSED] 0xBD6 (PVC)
[16:13:54] [PASSED] 0xBD7 (PVC)
[16:13:54] [PASSED] 0xBD8 (PVC)
[16:13:54] [PASSED] 0xBD9 (PVC)
[16:13:54] [PASSED] 0xBDA (PVC)
[16:13:54] [PASSED] 0xBDB (PVC)
[16:13:54] [PASSED] 0xBE0 (PVC)
[16:13:54] [PASSED] 0xBE1 (PVC)
[16:13:54] [PASSED] 0xBE5 (PVC)
[16:13:54] [PASSED] 0x7D40 (METEORLAKE)
[16:13:54] [PASSED] 0x7D45 (METEORLAKE)
[16:13:54] [PASSED] 0x7D55 (METEORLAKE)
[16:13:54] [PASSED] 0x7D60 (METEORLAKE)
[16:13:54] [PASSED] 0x7DD5 (METEORLAKE)
[16:13:54] [PASSED] 0x6420 (LUNARLAKE)
[16:13:54] [PASSED] 0x64A0 (LUNARLAKE)
[16:13:54] [PASSED] 0x64B0 (LUNARLAKE)
[16:13:54] [PASSED] 0xE202 (BATTLEMAGE)
[16:13:54] [PASSED] 0xE209 (BATTLEMAGE)
[16:13:54] [PASSED] 0xE20B (BATTLEMAGE)
[16:13:54] [PASSED] 0xE20C (BATTLEMAGE)
[16:13:54] [PASSED] 0xE20D (BATTLEMAGE)
[16:13:54] [PASSED] 0xE210 (BATTLEMAGE)
[16:13:54] [PASSED] 0xE211 (BATTLEMAGE)
[16:13:54] [PASSED] 0xE212 (BATTLEMAGE)
[16:13:54] [PASSED] 0xE216 (BATTLEMAGE)
[16:13:54] [PASSED] 0xE220 (BATTLEMAGE)
[16:13:54] [PASSED] 0xE221 (BATTLEMAGE)
[16:13:54] [PASSED] 0xE222 (BATTLEMAGE)
[16:13:54] [PASSED] 0xE223 (BATTLEMAGE)
[16:13:54] [PASSED] 0xB080 (PANTHERLAKE)
[16:13:54] [PASSED] 0xB081 (PANTHERLAKE)
[16:13:54] [PASSED] 0xB082 (PANTHERLAKE)
[16:13:54] [PASSED] 0xB083 (PANTHERLAKE)
[16:13:54] [PASSED] 0xB084 (PANTHERLAKE)
[16:13:54] [PASSED] 0xB085 (PANTHERLAKE)
[16:13:54] [PASSED] 0xB086 (PANTHERLAKE)
[16:13:54] [PASSED] 0xB087 (PANTHERLAKE)
[16:13:54] [PASSED] 0xB08F (PANTHERLAKE)
[16:13:54] [PASSED] 0xB090 (PANTHERLAKE)
[16:13:54] [PASSED] 0xB0A0 (PANTHERLAKE)
[16:13:54] [PASSED] 0xB0B0 (PANTHERLAKE)
[16:13:54] [PASSED] 0xFD80 (PANTHERLAKE)
[16:13:54] [PASSED] 0xFD81 (PANTHERLAKE)
[16:13:54] [PASSED] 0xD740 (NOVALAKE_S)
[16:13:54] [PASSED] 0xD741 (NOVALAKE_S)
[16:13:54] [PASSED] 0xD742 (NOVALAKE_S)
[16:13:54] [PASSED] 0xD743 (NOVALAKE_S)
[16:13:54] [PASSED] 0xD744 (NOVALAKE_S)
[16:13:54] [PASSED] 0xD745 (NOVALAKE_S)
[16:13:54] [PASSED] 0x674C (CRESCENTISLAND)
[16:13:54] =============== [PASSED] check_platform_desc ===============
[16:13:54] ===================== [PASSED] xe_pci ======================
[16:13:54] =================== xe_rtp (2 subtests) ====================
[16:13:54] =============== xe_rtp_process_to_sr_tests ================
[16:13:54] [PASSED] coalesce-same-reg
[16:13:54] [PASSED] no-match-no-add
[16:13:54] [PASSED] match-or
[16:13:54] [PASSED] match-or-xfail
[16:13:54] [PASSED] no-match-no-add-multiple-rules
[16:13:54] [PASSED] two-regs-two-entries
[16:13:54] [PASSED] clr-one-set-other
[16:13:54] [PASSED] set-field
[16:13:54] [PASSED] conflict-duplicate
[16:13:54] [PASSED] conflict-not-disjoint
[16:13:54] [PASSED] conflict-reg-type
[16:13:54] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[16:13:54] ================== xe_rtp_process_tests ===================
[16:13:54] [PASSED] active1
[16:13:54] [PASSED] active2
[16:13:54] [PASSED] active-inactive
[16:13:54] [PASSED] inactive-active
[16:13:54] [PASSED] inactive-1st_or_active-inactive
[16:13:54] [PASSED] inactive-2nd_or_active-inactive
[16:13:54] [PASSED] inactive-last_or_active-inactive
[16:13:54] [PASSED] inactive-no_or_active-inactive
[16:13:54] ============== [PASSED] xe_rtp_process_tests ===============
[16:13:54] ===================== [PASSED] xe_rtp ======================
[16:13:54] ==================== xe_wa (1 subtest) =====================
[16:13:54] ======================== xe_wa_gt =========================
[16:13:54] [PASSED] TIGERLAKE B0
[16:13:54] [PASSED] DG1 A0
[16:13:54] [PASSED] DG1 B0
[16:13:54] [PASSED] ALDERLAKE_S A0
[16:13:54] [PASSED] ALDERLAKE_S B0
[16:13:54] [PASSED] ALDERLAKE_S C0
[16:13:54] [PASSED] ALDERLAKE_S D0
[16:13:54] [PASSED] ALDERLAKE_P A0
[16:13:54] [PASSED] ALDERLAKE_P B0
[16:13:54] [PASSED] ALDERLAKE_P C0
[16:13:54] [PASSED] ALDERLAKE_S RPLS D0
[16:13:54] [PASSED] ALDERLAKE_P RPLU E0
[16:13:54] [PASSED] DG2 G10 C0
[16:13:54] [PASSED] DG2 G11 B1
[16:13:54] [PASSED] DG2 G12 A1
[16:13:54] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[16:13:54] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[16:13:54] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[16:13:54] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[16:13:54] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[16:13:54] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[16:13:54] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[16:13:54] ==================== [PASSED] xe_wa_gt =====================
[16:13:54] ====================== [PASSED] xe_wa ======================
[16:13:54] ============================================================
[16:13:54] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[16:13:54] Elapsed time: 36.940s total, 4.235s configuring, 32.189s building, 0.472s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[16:13:54] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:13: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
[16:14:21] Starting KUnit Kernel (1/1)...
[16:14:21] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:14:21] ============ drm_test_pick_cmdline (2 subtests) ============
[16:14:21] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[16:14:21] =============== drm_test_pick_cmdline_named ===============
[16:14:21] [PASSED] NTSC
[16:14:21] [PASSED] NTSC-J
[16:14:21] [PASSED] PAL
[16:14:21] [PASSED] PAL-M
[16:14:21] =========== [PASSED] drm_test_pick_cmdline_named ===========
[16:14:21] ============== [PASSED] drm_test_pick_cmdline ==============
[16:14:21] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[16:14:21] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[16:14:21] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[16:14:21] =========== drm_validate_clone_mode (2 subtests) ===========
[16:14:21] ============== drm_test_check_in_clone_mode ===============
[16:14:21] [PASSED] in_clone_mode
[16:14:21] [PASSED] not_in_clone_mode
[16:14:21] ========== [PASSED] drm_test_check_in_clone_mode ===========
[16:14:21] =============== drm_test_check_valid_clones ===============
[16:14:21] [PASSED] not_in_clone_mode
[16:14:21] [PASSED] valid_clone
[16:14:21] [PASSED] invalid_clone
[16:14:21] =========== [PASSED] drm_test_check_valid_clones ===========
[16:14:21] ============= [PASSED] drm_validate_clone_mode =============
[16:14:21] ============= drm_validate_modeset (1 subtest) =============
[16:14:21] [PASSED] drm_test_check_connector_changed_modeset
[16:14:21] ============== [PASSED] drm_validate_modeset ===============
[16:14:21] ====== drm_test_bridge_get_current_state (2 subtests) ======
[16:14:21] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[16:14:21] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[16:14:21] ======== [PASSED] drm_test_bridge_get_current_state ========
[16:14:21] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[16:14:21] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[16:14:21] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[16:14:21] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[16:14:21] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[16:14:21] ============== drm_bridge_alloc (2 subtests) ===============
[16:14:21] [PASSED] drm_test_drm_bridge_alloc_basic
[16:14:21] [PASSED] drm_test_drm_bridge_alloc_get_put
[16:14:21] ================ [PASSED] drm_bridge_alloc =================
[16:14:21] ================== drm_buddy (9 subtests) ==================
[16:14:21] [PASSED] drm_test_buddy_alloc_limit
[16:14:21] [PASSED] drm_test_buddy_alloc_optimistic
[16:14:21] [PASSED] drm_test_buddy_alloc_pessimistic
[16:14:21] [PASSED] drm_test_buddy_alloc_pathological
[16:14:21] [PASSED] drm_test_buddy_alloc_contiguous
[16:14:21] [PASSED] drm_test_buddy_alloc_clear
[16:14:22] [PASSED] drm_test_buddy_alloc_range_bias
[16:14:22] [PASSED] drm_test_buddy_fragmentation_performance
[16:14:22] [PASSED] drm_test_buddy_alloc_exceeds_max_order
[16:14:22] ==================== [PASSED] drm_buddy ====================
[16:14:22] ============= drm_cmdline_parser (40 subtests) =============
[16:14:22] [PASSED] drm_test_cmdline_force_d_only
[16:14:22] [PASSED] drm_test_cmdline_force_D_only_dvi
[16:14:22] [PASSED] drm_test_cmdline_force_D_only_hdmi
[16:14:22] [PASSED] drm_test_cmdline_force_D_only_not_digital
[16:14:22] [PASSED] drm_test_cmdline_force_e_only
[16:14:22] [PASSED] drm_test_cmdline_res
[16:14:22] [PASSED] drm_test_cmdline_res_vesa
[16:14:22] [PASSED] drm_test_cmdline_res_vesa_rblank
[16:14:22] [PASSED] drm_test_cmdline_res_rblank
[16:14:22] [PASSED] drm_test_cmdline_res_bpp
[16:14:22] [PASSED] drm_test_cmdline_res_refresh
[16:14:22] [PASSED] drm_test_cmdline_res_bpp_refresh
[16:14:22] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[16:14:22] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[16:14:22] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[16:14:22] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[16:14:22] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[16:14:22] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[16:14:22] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[16:14:22] [PASSED] drm_test_cmdline_res_margins_force_on
[16:14:22] [PASSED] drm_test_cmdline_res_vesa_margins
[16:14:22] [PASSED] drm_test_cmdline_name
[16:14:22] [PASSED] drm_test_cmdline_name_bpp
[16:14:22] [PASSED] drm_test_cmdline_name_option
[16:14:22] [PASSED] drm_test_cmdline_name_bpp_option
[16:14:22] [PASSED] drm_test_cmdline_rotate_0
[16:14:22] [PASSED] drm_test_cmdline_rotate_90
[16:14:22] [PASSED] drm_test_cmdline_rotate_180
[16:14:22] [PASSED] drm_test_cmdline_rotate_270
[16:14:22] [PASSED] drm_test_cmdline_hmirror
[16:14:22] [PASSED] drm_test_cmdline_vmirror
[16:14:22] [PASSED] drm_test_cmdline_margin_options
[16:14:22] [PASSED] drm_test_cmdline_multiple_options
[16:14:22] [PASSED] drm_test_cmdline_bpp_extra_and_option
[16:14:22] [PASSED] drm_test_cmdline_extra_and_option
[16:14:22] [PASSED] drm_test_cmdline_freestanding_options
[16:14:22] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[16:14:22] [PASSED] drm_test_cmdline_panel_orientation
[16:14:22] ================ drm_test_cmdline_invalid =================
[16:14:22] [PASSED] margin_only
[16:14:22] [PASSED] interlace_only
[16:14:22] [PASSED] res_missing_x
[16:14:22] [PASSED] res_missing_y
[16:14:22] [PASSED] res_bad_y
[16:14:22] [PASSED] res_missing_y_bpp
[16:14:22] [PASSED] res_bad_bpp
[16:14:22] [PASSED] res_bad_refresh
[16:14:22] [PASSED] res_bpp_refresh_force_on_off
[16:14:22] [PASSED] res_invalid_mode
[16:14:22] [PASSED] res_bpp_wrong_place_mode
[16:14:22] [PASSED] name_bpp_refresh
[16:14:22] [PASSED] name_refresh
[16:14:22] [PASSED] name_refresh_wrong_mode
[16:14:22] [PASSED] name_refresh_invalid_mode
[16:14:22] [PASSED] rotate_multiple
[16:14:22] [PASSED] rotate_invalid_val
[16:14:22] [PASSED] rotate_truncated
[16:14:22] [PASSED] invalid_option
[16:14:22] [PASSED] invalid_tv_option
[16:14:22] [PASSED] truncated_tv_option
[16:14:22] ============ [PASSED] drm_test_cmdline_invalid =============
[16:14:22] =============== drm_test_cmdline_tv_options ===============
[16:14:22] [PASSED] NTSC
[16:14:22] [PASSED] NTSC_443
[16:14:22] [PASSED] NTSC_J
[16:14:22] [PASSED] PAL
[16:14:22] [PASSED] PAL_M
[16:14:22] [PASSED] PAL_N
[16:14:22] [PASSED] SECAM
[16:14:22] [PASSED] MONO_525
[16:14:22] [PASSED] MONO_625
[16:14:22] =========== [PASSED] drm_test_cmdline_tv_options ===========
[16:14:22] =============== [PASSED] drm_cmdline_parser ================
[16:14:22] ========== drmm_connector_hdmi_init (20 subtests) ==========
[16:14:22] [PASSED] drm_test_connector_hdmi_init_valid
[16:14:22] [PASSED] drm_test_connector_hdmi_init_bpc_8
[16:14:22] [PASSED] drm_test_connector_hdmi_init_bpc_10
[16:14:22] [PASSED] drm_test_connector_hdmi_init_bpc_12
[16:14:22] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[16:14:22] [PASSED] drm_test_connector_hdmi_init_bpc_null
[16:14:22] [PASSED] drm_test_connector_hdmi_init_formats_empty
[16:14:22] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[16:14:22] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[16:14:22] [PASSED] supported_formats=0x9 yuv420_allowed=1
[16:14:22] [PASSED] supported_formats=0x9 yuv420_allowed=0
[16:14:22] [PASSED] supported_formats=0x3 yuv420_allowed=1
[16:14:22] [PASSED] supported_formats=0x3 yuv420_allowed=0
[16:14:22] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[16:14:22] [PASSED] drm_test_connector_hdmi_init_null_ddc
[16:14:22] [PASSED] drm_test_connector_hdmi_init_null_product
[16:14:22] [PASSED] drm_test_connector_hdmi_init_null_vendor
[16:14:22] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[16:14:22] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[16:14:22] [PASSED] drm_test_connector_hdmi_init_product_valid
[16:14:22] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[16:14:22] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[16:14:22] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[16:14:22] ========= drm_test_connector_hdmi_init_type_valid =========
[16:14:22] [PASSED] HDMI-A
[16:14:22] [PASSED] HDMI-B
[16:14:22] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[16:14:22] ======== drm_test_connector_hdmi_init_type_invalid ========
[16:14:22] [PASSED] Unknown
[16:14:22] [PASSED] VGA
[16:14:22] [PASSED] DVI-I
[16:14:22] [PASSED] DVI-D
[16:14:22] [PASSED] DVI-A
[16:14:22] [PASSED] Composite
[16:14:22] [PASSED] SVIDEO
[16:14:22] [PASSED] LVDS
[16:14:22] [PASSED] Component
[16:14:22] [PASSED] DIN
[16:14:22] [PASSED] DP
[16:14:22] [PASSED] TV
[16:14:22] [PASSED] eDP
[16:14:22] [PASSED] Virtual
[16:14:22] [PASSED] DSI
[16:14:22] [PASSED] DPI
[16:14:22] [PASSED] Writeback
[16:14:22] [PASSED] SPI
[16:14:22] [PASSED] USB
[16:14:22] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[16:14:22] ============ [PASSED] drmm_connector_hdmi_init =============
[16:14:22] ============= drmm_connector_init (3 subtests) =============
[16:14:22] [PASSED] drm_test_drmm_connector_init
[16:14:22] [PASSED] drm_test_drmm_connector_init_null_ddc
[16:14:22] ========= drm_test_drmm_connector_init_type_valid =========
[16:14:22] [PASSED] Unknown
[16:14:22] [PASSED] VGA
[16:14:22] [PASSED] DVI-I
[16:14:22] [PASSED] DVI-D
[16:14:22] [PASSED] DVI-A
[16:14:22] [PASSED] Composite
[16:14:22] [PASSED] SVIDEO
[16:14:22] [PASSED] LVDS
[16:14:22] [PASSED] Component
[16:14:22] [PASSED] DIN
[16:14:22] [PASSED] DP
[16:14:22] [PASSED] HDMI-A
[16:14:22] [PASSED] HDMI-B
[16:14:22] [PASSED] TV
[16:14:22] [PASSED] eDP
[16:14:22] [PASSED] Virtual
[16:14:22] [PASSED] DSI
[16:14:22] [PASSED] DPI
[16:14:22] [PASSED] Writeback
[16:14:22] [PASSED] SPI
[16:14:22] [PASSED] USB
[16:14:22] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[16:14:22] =============== [PASSED] drmm_connector_init ===============
[16:14:22] ========= drm_connector_dynamic_init (6 subtests) ==========
[16:14:22] [PASSED] drm_test_drm_connector_dynamic_init
[16:14:22] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[16:14:22] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[16:14:22] [PASSED] drm_test_drm_connector_dynamic_init_properties
[16:14:22] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[16:14:22] [PASSED] Unknown
[16:14:22] [PASSED] VGA
[16:14:22] [PASSED] DVI-I
[16:14:22] [PASSED] DVI-D
[16:14:22] [PASSED] DVI-A
[16:14:22] [PASSED] Composite
[16:14:22] [PASSED] SVIDEO
[16:14:22] [PASSED] LVDS
[16:14:22] [PASSED] Component
[16:14:22] [PASSED] DIN
[16:14:22] [PASSED] DP
[16:14:22] [PASSED] HDMI-A
[16:14:22] [PASSED] HDMI-B
[16:14:22] [PASSED] TV
[16:14:22] [PASSED] eDP
[16:14:22] [PASSED] Virtual
[16:14:22] [PASSED] DSI
[16:14:22] [PASSED] DPI
[16:14:22] [PASSED] Writeback
[16:14:22] [PASSED] SPI
[16:14:22] [PASSED] USB
[16:14:22] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[16:14:22] ======== drm_test_drm_connector_dynamic_init_name =========
[16:14:22] [PASSED] Unknown
[16:14:22] [PASSED] VGA
[16:14:22] [PASSED] DVI-I
[16:14:22] [PASSED] DVI-D
[16:14:22] [PASSED] DVI-A
[16:14:22] [PASSED] Composite
[16:14:22] [PASSED] SVIDEO
[16:14:22] [PASSED] LVDS
[16:14:22] [PASSED] Component
[16:14:22] [PASSED] DIN
[16:14:22] [PASSED] DP
[16:14:22] [PASSED] HDMI-A
[16:14:22] [PASSED] HDMI-B
[16:14:22] [PASSED] TV
[16:14:22] [PASSED] eDP
[16:14:22] [PASSED] Virtual
[16:14:22] [PASSED] DSI
[16:14:22] [PASSED] DPI
[16:14:22] [PASSED] Writeback
[16:14:22] [PASSED] SPI
[16:14:22] [PASSED] USB
[16:14:22] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[16:14:22] =========== [PASSED] drm_connector_dynamic_init ============
[16:14:22] ==== drm_connector_dynamic_register_early (4 subtests) =====
[16:14:22] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[16:14:22] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[16:14:22] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[16:14:22] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[16:14:22] ====== [PASSED] drm_connector_dynamic_register_early =======
[16:14:22] ======= drm_connector_dynamic_register (7 subtests) ========
[16:14:22] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[16:14:22] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[16:14:22] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[16:14:22] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[16:14:22] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[16:14:22] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[16:14:22] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[16:14:22] ========= [PASSED] drm_connector_dynamic_register ==========
[16:14:22] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[16:14:22] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[16:14:22] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[16:14:22] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[16:14:22] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[16:14:22] ========== drm_test_get_tv_mode_from_name_valid ===========
[16:14:22] [PASSED] NTSC
[16:14:22] [PASSED] NTSC-443
[16:14:22] [PASSED] NTSC-J
[16:14:22] [PASSED] PAL
[16:14:22] [PASSED] PAL-M
[16:14:22] [PASSED] PAL-N
[16:14:22] [PASSED] SECAM
[16:14:22] [PASSED] Mono
[16:14:22] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[16:14:22] [PASSED] drm_test_get_tv_mode_from_name_truncated
[16:14:22] ============ [PASSED] drm_get_tv_mode_from_name ============
[16:14:22] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[16:14:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[16:14:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[16:14:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[16:14:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[16:14:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[16:14:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[16:14:22] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[16:14:22] [PASSED] VIC 96
[16:14:22] [PASSED] VIC 97
[16:14:22] [PASSED] VIC 101
[16:14:22] [PASSED] VIC 102
[16:14:22] [PASSED] VIC 106
[16:14:22] [PASSED] VIC 107
[16:14:22] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[16:14:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[16:14:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[16:14:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[16:14:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[16:14:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[16:14:22] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[16:14:22] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[16:14:22] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[16:14:22] [PASSED] Automatic
[16:14:22] [PASSED] Full
[16:14:22] [PASSED] Limited 16:235
[16:14:22] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[16:14:22] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[16:14:22] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[16:14:22] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[16:14:22] === drm_test_drm_hdmi_connector_get_output_format_name ====
[16:14:22] [PASSED] RGB
[16:14:22] [PASSED] YUV 4:2:0
[16:14:22] [PASSED] YUV 4:2:2
[16:14:22] [PASSED] YUV 4:4:4
[16:14:22] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[16:14:22] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[16:14:22] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[16:14:22] ============= drm_damage_helper (21 subtests) ==============
[16:14:22] [PASSED] drm_test_damage_iter_no_damage
[16:14:22] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[16:14:22] [PASSED] drm_test_damage_iter_no_damage_src_moved
[16:14:22] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[16:14:22] [PASSED] drm_test_damage_iter_no_damage_not_visible
[16:14:22] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[16:14:22] [PASSED] drm_test_damage_iter_no_damage_no_fb
[16:14:22] [PASSED] drm_test_damage_iter_simple_damage
[16:14:22] [PASSED] drm_test_damage_iter_single_damage
[16:14:22] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[16:14:22] [PASSED] drm_test_damage_iter_single_damage_outside_src
[16:14:22] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[16:14:22] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[16:14:22] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[16:14:22] [PASSED] drm_test_damage_iter_single_damage_src_moved
[16:14:22] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[16:14:22] [PASSED] drm_test_damage_iter_damage
[16:14:22] [PASSED] drm_test_damage_iter_damage_one_intersect
[16:14:22] [PASSED] drm_test_damage_iter_damage_one_outside
[16:14:22] [PASSED] drm_test_damage_iter_damage_src_moved
[16:14:22] [PASSED] drm_test_damage_iter_damage_not_visible
[16:14:22] ================ [PASSED] drm_damage_helper ================
[16:14:22] ============== drm_dp_mst_helper (3 subtests) ==============
[16:14:22] ============== drm_test_dp_mst_calc_pbn_mode ==============
[16:14:22] [PASSED] Clock 154000 BPP 30 DSC disabled
[16:14:22] [PASSED] Clock 234000 BPP 30 DSC disabled
[16:14:22] [PASSED] Clock 297000 BPP 24 DSC disabled
[16:14:22] [PASSED] Clock 332880 BPP 24 DSC enabled
[16:14:22] [PASSED] Clock 324540 BPP 24 DSC enabled
[16:14:22] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[16:14:22] ============== drm_test_dp_mst_calc_pbn_div ===============
[16:14:22] [PASSED] Link rate 2000000 lane count 4
[16:14:22] [PASSED] Link rate 2000000 lane count 2
[16:14:22] [PASSED] Link rate 2000000 lane count 1
[16:14:22] [PASSED] Link rate 1350000 lane count 4
[16:14:22] [PASSED] Link rate 1350000 lane count 2
[16:14:22] [PASSED] Link rate 1350000 lane count 1
[16:14:22] [PASSED] Link rate 1000000 lane count 4
[16:14:22] [PASSED] Link rate 1000000 lane count 2
[16:14:22] [PASSED] Link rate 1000000 lane count 1
[16:14:22] [PASSED] Link rate 810000 lane count 4
[16:14:22] [PASSED] Link rate 810000 lane count 2
[16:14:22] [PASSED] Link rate 810000 lane count 1
[16:14:22] [PASSED] Link rate 540000 lane count 4
[16:14:22] [PASSED] Link rate 540000 lane count 2
[16:14:22] [PASSED] Link rate 540000 lane count 1
[16:14:22] [PASSED] Link rate 270000 lane count 4
[16:14:22] [PASSED] Link rate 270000 lane count 2
[16:14:22] [PASSED] Link rate 270000 lane count 1
[16:14:22] [PASSED] Link rate 162000 lane count 4
[16:14:22] [PASSED] Link rate 162000 lane count 2
[16:14:22] [PASSED] Link rate 162000 lane count 1
[16:14:22] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[16:14:22] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[16:14:22] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[16:14:22] [PASSED] DP_POWER_UP_PHY with port number
[16:14:22] [PASSED] DP_POWER_DOWN_PHY with port number
[16:14:22] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[16:14:22] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[16:14:22] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[16:14:22] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[16:14:22] [PASSED] DP_QUERY_PAYLOAD with port number
[16:14:22] [PASSED] DP_QUERY_PAYLOAD with VCPI
[16:14:22] [PASSED] DP_REMOTE_DPCD_READ with port number
[16:14:22] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[16:14:22] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[16:14:22] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[16:14:22] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[16:14:22] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[16:14:22] [PASSED] DP_REMOTE_I2C_READ with port number
[16:14:22] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[16:14:22] [PASSED] DP_REMOTE_I2C_READ with transactions array
[16:14:22] [PASSED] DP_REMOTE_I2C_WRITE with port number
[16:14:22] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[16:14:22] [PASSED] DP_REMOTE_I2C_WRITE with data array
[16:14:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[16:14:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[16:14:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[16:14:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[16:14:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[16:14:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[16:14:22] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[16:14:22] ================ [PASSED] drm_dp_mst_helper ================
[16:14:22] ================== drm_exec (7 subtests) ===================
[16:14:22] [PASSED] sanitycheck
[16:14:22] [PASSED] test_lock
[16:14:22] [PASSED] test_lock_unlock
[16:14:22] [PASSED] test_duplicates
[16:14:22] [PASSED] test_prepare
[16:14:22] [PASSED] test_prepare_array
[16:14:22] [PASSED] test_multiple_loops
[16:14:22] ==================== [PASSED] drm_exec =====================
[16:14:22] =========== drm_format_helper_test (17 subtests) ===========
[16:14:22] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[16:14:22] [PASSED] single_pixel_source_buffer
[16:14:22] [PASSED] single_pixel_clip_rectangle
[16:14:22] [PASSED] well_known_colors
[16:14:22] [PASSED] destination_pitch
[16:14:22] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[16:14:22] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[16:14:22] [PASSED] single_pixel_source_buffer
[16:14:22] [PASSED] single_pixel_clip_rectangle
[16:14:22] [PASSED] well_known_colors
[16:14:22] [PASSED] destination_pitch
[16:14:22] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[16:14:22] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[16:14:22] [PASSED] single_pixel_source_buffer
[16:14:22] [PASSED] single_pixel_clip_rectangle
[16:14:22] [PASSED] well_known_colors
[16:14:22] [PASSED] destination_pitch
[16:14:22] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[16:14:22] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[16:14:22] [PASSED] single_pixel_source_buffer
[16:14:22] [PASSED] single_pixel_clip_rectangle
[16:14:22] [PASSED] well_known_colors
[16:14:22] [PASSED] destination_pitch
[16:14:22] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[16:14:22] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[16:14:22] [PASSED] single_pixel_source_buffer
[16:14:22] [PASSED] single_pixel_clip_rectangle
[16:14:22] [PASSED] well_known_colors
[16:14:22] [PASSED] destination_pitch
[16:14:22] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[16:14:22] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[16:14:22] [PASSED] single_pixel_source_buffer
[16:14:22] [PASSED] single_pixel_clip_rectangle
[16:14:22] [PASSED] well_known_colors
[16:14:22] [PASSED] destination_pitch
[16:14:22] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[16:14:22] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[16:14:22] [PASSED] single_pixel_source_buffer
[16:14:22] [PASSED] single_pixel_clip_rectangle
[16:14:22] [PASSED] well_known_colors
[16:14:22] [PASSED] destination_pitch
[16:14:22] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[16:14:22] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[16:14:22] [PASSED] single_pixel_source_buffer
[16:14:22] [PASSED] single_pixel_clip_rectangle
[16:14:22] [PASSED] well_known_colors
[16:14:22] [PASSED] destination_pitch
[16:14:22] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[16:14:22] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[16:14:22] [PASSED] single_pixel_source_buffer
[16:14:22] [PASSED] single_pixel_clip_rectangle
[16:14:22] [PASSED] well_known_colors
[16:14:22] [PASSED] destination_pitch
[16:14:22] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[16:14:22] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[16:14:22] [PASSED] single_pixel_source_buffer
[16:14:22] [PASSED] single_pixel_clip_rectangle
[16:14:22] [PASSED] well_known_colors
[16:14:22] [PASSED] destination_pitch
[16:14:22] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[16:14:22] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[16:14:22] [PASSED] single_pixel_source_buffer
[16:14:22] [PASSED] single_pixel_clip_rectangle
[16:14:22] [PASSED] well_known_colors
[16:14:22] [PASSED] destination_pitch
[16:14:22] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[16:14:22] ============== drm_test_fb_xrgb8888_to_mono ===============
[16:14:22] [PASSED] single_pixel_source_buffer
[16:14:22] [PASSED] single_pixel_clip_rectangle
[16:14:22] [PASSED] well_known_colors
[16:14:22] [PASSED] destination_pitch
[16:14:22] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[16:14:22] ==================== drm_test_fb_swab =====================
[16:14:22] [PASSED] single_pixel_source_buffer
[16:14:22] [PASSED] single_pixel_clip_rectangle
[16:14:22] [PASSED] well_known_colors
[16:14:22] [PASSED] destination_pitch
[16:14:22] ================ [PASSED] drm_test_fb_swab =================
[16:14:22] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[16:14:22] [PASSED] single_pixel_source_buffer
[16:14:22] [PASSED] single_pixel_clip_rectangle
[16:14:22] [PASSED] well_known_colors
[16:14:22] [PASSED] destination_pitch
[16:14:22] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[16:14:22] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[16:14:22] [PASSED] single_pixel_source_buffer
[16:14:22] [PASSED] single_pixel_clip_rectangle
[16:14:22] [PASSED] well_known_colors
[16:14:22] [PASSED] destination_pitch
[16:14:22] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[16:14:22] ================= drm_test_fb_clip_offset =================
[16:14:22] [PASSED] pass through
[16:14:22] [PASSED] horizontal offset
[16:14:22] [PASSED] vertical offset
[16:14:22] [PASSED] horizontal and vertical offset
[16:14:22] [PASSED] horizontal offset (custom pitch)
[16:14:22] [PASSED] vertical offset (custom pitch)
[16:14:22] [PASSED] horizontal and vertical offset (custom pitch)
[16:14:22] ============= [PASSED] drm_test_fb_clip_offset =============
[16:14:22] =================== drm_test_fb_memcpy ====================
[16:14:22] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[16:14:22] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[16:14:22] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[16:14:22] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[16:14:22] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[16:14:22] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[16:14:22] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[16:14:22] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[16:14:22] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[16:14:22] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[16:14:22] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[16:14:22] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[16:14:22] =============== [PASSED] drm_test_fb_memcpy ================
[16:14:22] ============= [PASSED] drm_format_helper_test ==============
[16:14:22] ================= drm_format (18 subtests) =================
[16:14:22] [PASSED] drm_test_format_block_width_invalid
[16:14:22] [PASSED] drm_test_format_block_width_one_plane
[16:14:22] [PASSED] drm_test_format_block_width_two_plane
[16:14:22] [PASSED] drm_test_format_block_width_three_plane
[16:14:22] [PASSED] drm_test_format_block_width_tiled
[16:14:22] [PASSED] drm_test_format_block_height_invalid
[16:14:22] [PASSED] drm_test_format_block_height_one_plane
[16:14:22] [PASSED] drm_test_format_block_height_two_plane
[16:14:22] [PASSED] drm_test_format_block_height_three_plane
[16:14:22] [PASSED] drm_test_format_block_height_tiled
[16:14:22] [PASSED] drm_test_format_min_pitch_invalid
[16:14:22] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[16:14:22] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[16:14:22] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[16:14:22] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[16:14:22] [PASSED] drm_test_format_min_pitch_two_plane
[16:14:22] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[16:14:22] [PASSED] drm_test_format_min_pitch_tiled
[16:14:22] =================== [PASSED] drm_format ====================
[16:14:22] ============== drm_framebuffer (10 subtests) ===============
[16:14:22] ========== drm_test_framebuffer_check_src_coords ==========
[16:14:22] [PASSED] Success: source fits into fb
[16:14:22] [PASSED] Fail: overflowing fb with x-axis coordinate
[16:14:22] [PASSED] Fail: overflowing fb with y-axis coordinate
[16:14:22] [PASSED] Fail: overflowing fb with source width
[16:14:22] [PASSED] Fail: overflowing fb with source height
[16:14:22] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[16:14:22] [PASSED] drm_test_framebuffer_cleanup
[16:14:22] =============== drm_test_framebuffer_create ===============
[16:14:22] [PASSED] ABGR8888 normal sizes
[16:14:22] [PASSED] ABGR8888 max sizes
[16:14:22] [PASSED] ABGR8888 pitch greater than min required
[16:14:22] [PASSED] ABGR8888 pitch less than min required
[16:14:22] [PASSED] ABGR8888 Invalid width
[16:14:22] [PASSED] ABGR8888 Invalid buffer handle
[16:14:22] [PASSED] No pixel format
[16:14:22] [PASSED] ABGR8888 Width 0
[16:14:22] [PASSED] ABGR8888 Height 0
[16:14:22] [PASSED] ABGR8888 Out of bound height * pitch combination
[16:14:22] [PASSED] ABGR8888 Large buffer offset
[16:14:22] [PASSED] ABGR8888 Buffer offset for inexistent plane
[16:14:22] [PASSED] ABGR8888 Invalid flag
[16:14:22] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[16:14:22] [PASSED] ABGR8888 Valid buffer modifier
[16:14:22] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[16:14:22] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[16:14:22] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[16:14:22] [PASSED] NV12 Normal sizes
[16:14:22] [PASSED] NV12 Max sizes
[16:14:22] [PASSED] NV12 Invalid pitch
[16:14:22] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[16:14:22] [PASSED] NV12 different modifier per-plane
[16:14:22] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[16:14:22] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[16:14:22] [PASSED] NV12 Modifier for inexistent plane
[16:14:22] [PASSED] NV12 Handle for inexistent plane
[16:14:22] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[16:14:22] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[16:14:22] [PASSED] YVU420 Normal sizes
[16:14:22] [PASSED] YVU420 Max sizes
[16:14:22] [PASSED] YVU420 Invalid pitch
[16:14:22] [PASSED] YVU420 Different pitches
[16:14:22] [PASSED] YVU420 Different buffer offsets/pitches
[16:14:22] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[16:14:22] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[16:14:22] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[16:14:22] [PASSED] YVU420 Valid modifier
[16:14:22] [PASSED] YVU420 Different modifiers per plane
[16:14:22] [PASSED] YVU420 Modifier for inexistent plane
[16:14:22] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[16:14:22] [PASSED] X0L2 Normal sizes
[16:14:22] [PASSED] X0L2 Max sizes
[16:14:22] [PASSED] X0L2 Invalid pitch
[16:14:22] [PASSED] X0L2 Pitch greater than minimum required
[16:14:22] [PASSED] X0L2 Handle for inexistent plane
[16:14:22] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[16:14:22] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[16:14:22] [PASSED] X0L2 Valid modifier
[16:14:22] [PASSED] X0L2 Modifier for inexistent plane
[16:14:22] =========== [PASSED] drm_test_framebuffer_create ===========
[16:14:22] [PASSED] drm_test_framebuffer_free
[16:14:22] [PASSED] drm_test_framebuffer_init
[16:14:22] [PASSED] drm_test_framebuffer_init_bad_format
[16:14:22] [PASSED] drm_test_framebuffer_init_dev_mismatch
[16:14:22] [PASSED] drm_test_framebuffer_lookup
[16:14:22] [PASSED] drm_test_framebuffer_lookup_inexistent
[16:14:22] [PASSED] drm_test_framebuffer_modifiers_not_supported
[16:14:22] ================= [PASSED] drm_framebuffer =================
[16:14:22] ================ drm_gem_shmem (8 subtests) ================
[16:14:22] [PASSED] drm_gem_shmem_test_obj_create
[16:14:22] [PASSED] drm_gem_shmem_test_obj_create_private
[16:14:22] [PASSED] drm_gem_shmem_test_pin_pages
[16:14:22] [PASSED] drm_gem_shmem_test_vmap
[16:14:22] [PASSED] drm_gem_shmem_test_get_sg_table
[16:14:22] [PASSED] drm_gem_shmem_test_get_pages_sgt
[16:14:22] [PASSED] drm_gem_shmem_test_madvise
[16:14:22] [PASSED] drm_gem_shmem_test_purge
[16:14:22] ================== [PASSED] drm_gem_shmem ==================
[16:14:22] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[16:14:22] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[16:14:22] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[16:14:22] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[16:14:22] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[16:14:22] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[16:14:22] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[16:14:22] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[16:14:22] [PASSED] Automatic
[16:14:22] [PASSED] Full
[16:14:22] [PASSED] Limited 16:235
[16:14:22] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[16:14:22] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[16:14:22] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[16:14:22] [PASSED] drm_test_check_disable_connector
[16:14:22] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[16:14:22] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[16:14:22] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[16:14:22] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[16:14:22] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[16:14:22] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[16:14:22] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[16:14:22] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[16:14:22] [PASSED] drm_test_check_output_bpc_dvi
[16:14:22] [PASSED] drm_test_check_output_bpc_format_vic_1
[16:14:22] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[16:14:22] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[16:14:22] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[16:14:22] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[16:14:22] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[16:14:22] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[16:14:22] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[16:14:22] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[16:14:22] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[16:14:22] [PASSED] drm_test_check_broadcast_rgb_value
[16:14:22] [PASSED] drm_test_check_bpc_8_value
[16:14:22] [PASSED] drm_test_check_bpc_10_value
[16:14:22] [PASSED] drm_test_check_bpc_12_value
[16:14:22] [PASSED] drm_test_check_format_value
[16:14:22] [PASSED] drm_test_check_tmds_char_value
[16:14:22] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[16:14:22] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[16:14:22] [PASSED] drm_test_check_mode_valid
[16:14:22] [PASSED] drm_test_check_mode_valid_reject
[16:14:22] [PASSED] drm_test_check_mode_valid_reject_rate
[16:14:22] [PASSED] drm_test_check_mode_valid_reject_max_clock
[16:14:22] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[16:14:22] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[16:14:22] [PASSED] drm_test_check_infoframes
[16:14:22] [PASSED] drm_test_check_reject_avi_infoframe
[16:14:22] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[16:14:22] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[16:14:22] [PASSED] drm_test_check_reject_audio_infoframe
[16:14:22] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[16:14:22] ================= drm_managed (2 subtests) =================
[16:14:22] [PASSED] drm_test_managed_release_action
[16:14:22] [PASSED] drm_test_managed_run_action
[16:14:22] =================== [PASSED] drm_managed ===================
[16:14:22] =================== drm_mm (6 subtests) ====================
[16:14:22] [PASSED] drm_test_mm_init
[16:14:22] [PASSED] drm_test_mm_debug
[16:14:22] [PASSED] drm_test_mm_align32
[16:14:22] [PASSED] drm_test_mm_align64
[16:14:22] [PASSED] drm_test_mm_lowest
[16:14:22] [PASSED] drm_test_mm_highest
[16:14:22] ===================== [PASSED] drm_mm ======================
[16:14:22] ============= drm_modes_analog_tv (5 subtests) =============
[16:14:22] [PASSED] drm_test_modes_analog_tv_mono_576i
[16:14:22] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[16:14:22] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[16:14:22] [PASSED] drm_test_modes_analog_tv_pal_576i
[16:14:22] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[16:14:22] =============== [PASSED] drm_modes_analog_tv ===============
[16:14:22] ============== drm_plane_helper (2 subtests) ===============
[16:14:22] =============== drm_test_check_plane_state ================
[16:14:22] [PASSED] clipping_simple
[16:14:22] [PASSED] clipping_rotate_reflect
[16:14:22] [PASSED] positioning_simple
[16:14:22] [PASSED] upscaling
[16:14:22] [PASSED] downscaling
[16:14:22] [PASSED] rounding1
[16:14:22] [PASSED] rounding2
[16:14:22] [PASSED] rounding3
[16:14:22] [PASSED] rounding4
[16:14:22] =========== [PASSED] drm_test_check_plane_state ============
[16:14:22] =========== drm_test_check_invalid_plane_state ============
[16:14:22] [PASSED] positioning_invalid
[16:14:22] [PASSED] upscaling_invalid
[16:14:22] [PASSED] downscaling_invalid
[16:14:22] ======= [PASSED] drm_test_check_invalid_plane_state ========
[16:14:22] ================ [PASSED] drm_plane_helper =================
[16:14:22] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[16:14:22] ====== drm_test_connector_helper_tv_get_modes_check =======
[16:14:22] [PASSED] None
[16:14:22] [PASSED] PAL
[16:14:22] [PASSED] NTSC
[16:14:22] [PASSED] Both, NTSC Default
[16:14:22] [PASSED] Both, PAL Default
[16:14:22] [PASSED] Both, NTSC Default, with PAL on command-line
[16:14:22] [PASSED] Both, PAL Default, with NTSC on command-line
[16:14:22] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[16:14:22] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[16:14:22] ================== drm_rect (9 subtests) ===================
[16:14:22] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[16:14:22] [PASSED] drm_test_rect_clip_scaled_not_clipped
[16:14:22] [PASSED] drm_test_rect_clip_scaled_clipped
[16:14:22] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[16:14:22] ================= drm_test_rect_intersect =================
[16:14:22] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[16:14:22] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[16:14:22] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[16:14:22] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[16:14:22] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[16:14:22] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[16:14:22] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[16:14:22] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[16:14:22] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[16:14:22] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[16:14:22] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[16:14:22] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[16:14:22] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[16:14:22] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[16:14:22] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
stty: 'standard input': Inappropriate ioctl for device
[16:14:22] ============= [PASSED] drm_test_rect_intersect =============
[16:14:22] ================ drm_test_rect_calc_hscale ================
[16:14:22] [PASSED] normal use
[16:14:22] [PASSED] out of max range
[16:14:22] [PASSED] out of min range
[16:14:22] [PASSED] zero dst
[16:14:22] [PASSED] negative src
[16:14:22] [PASSED] negative dst
[16:14:22] ============ [PASSED] drm_test_rect_calc_hscale ============
[16:14:22] ================ drm_test_rect_calc_vscale ================
[16:14:22] [PASSED] normal use
[16:14:22] [PASSED] out of max range
[16:14:22] [PASSED] out of min range
[16:14:22] [PASSED] zero dst
[16:14:22] [PASSED] negative src
[16:14:22] [PASSED] negative dst
[16:14:22] ============ [PASSED] drm_test_rect_calc_vscale ============
[16:14:22] ================== drm_test_rect_rotate ===================
[16:14:22] [PASSED] reflect-x
[16:14:22] [PASSED] reflect-y
[16:14:22] [PASSED] rotate-0
[16:14:22] [PASSED] rotate-90
[16:14:22] [PASSED] rotate-180
[16:14:22] [PASSED] rotate-270
[16:14:22] ============== [PASSED] drm_test_rect_rotate ===============
[16:14:22] ================ drm_test_rect_rotate_inv =================
[16:14:22] [PASSED] reflect-x
[16:14:22] [PASSED] reflect-y
[16:14:22] [PASSED] rotate-0
[16:14:22] [PASSED] rotate-90
[16:14:22] [PASSED] rotate-180
[16:14:22] [PASSED] rotate-270
[16:14:22] ============ [PASSED] drm_test_rect_rotate_inv =============
[16:14:22] ==================== [PASSED] drm_rect =====================
[16:14:22] ============ drm_sysfb_modeset_test (1 subtest) ============
[16:14:22] ============ drm_test_sysfb_build_fourcc_list =============
[16:14:22] [PASSED] no native formats
[16:14:22] [PASSED] XRGB8888 as native format
[16:14:22] [PASSED] remove duplicates
[16:14:22] [PASSED] convert alpha formats
[16:14:22] [PASSED] random formats
[16:14:22] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[16:14:22] ============= [PASSED] drm_sysfb_modeset_test ==============
[16:14:22] ================== drm_fixp (2 subtests) ===================
[16:14:22] [PASSED] drm_test_int2fixp
[16:14:22] [PASSED] drm_test_sm2fixp
[16:14:22] ==================== [PASSED] drm_fixp =====================
[16:14:22] ============================================================
[16:14:22] Testing complete. Ran 630 tests: passed: 630
[16:14:22] Elapsed time: 27.820s total, 1.699s configuring, 25.701s building, 0.404s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[16:14:22] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:14:24] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[16:14:33] Starting KUnit Kernel (1/1)...
[16:14:33] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:14:33] ================= ttm_device (5 subtests) ==================
[16:14:33] [PASSED] ttm_device_init_basic
[16:14:33] [PASSED] ttm_device_init_multiple
[16:14:33] [PASSED] ttm_device_fini_basic
[16:14:33] [PASSED] ttm_device_init_no_vma_man
[16:14:33] ================== ttm_device_init_pools ==================
[16:14:33] [PASSED] No DMA allocations, no DMA32 required
[16:14:33] [PASSED] DMA allocations, DMA32 required
[16:14:33] [PASSED] No DMA allocations, DMA32 required
[16:14:33] [PASSED] DMA allocations, no DMA32 required
[16:14:33] ============== [PASSED] ttm_device_init_pools ==============
[16:14:33] =================== [PASSED] ttm_device ====================
[16:14:33] ================== ttm_pool (8 subtests) ===================
[16:14:33] ================== ttm_pool_alloc_basic ===================
[16:14:33] [PASSED] One page
[16:14:33] [PASSED] More than one page
[16:14:33] [PASSED] Above the allocation limit
[16:14:33] [PASSED] One page, with coherent DMA mappings enabled
[16:14:33] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[16:14:33] ============== [PASSED] ttm_pool_alloc_basic ===============
[16:14:33] ============== ttm_pool_alloc_basic_dma_addr ==============
[16:14:33] [PASSED] One page
[16:14:33] [PASSED] More than one page
[16:14:33] [PASSED] Above the allocation limit
[16:14:33] [PASSED] One page, with coherent DMA mappings enabled
[16:14:33] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[16:14:33] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[16:14:33] [PASSED] ttm_pool_alloc_order_caching_match
[16:14:33] [PASSED] ttm_pool_alloc_caching_mismatch
[16:14:33] [PASSED] ttm_pool_alloc_order_mismatch
[16:14:33] [PASSED] ttm_pool_free_dma_alloc
[16:14:33] [PASSED] ttm_pool_free_no_dma_alloc
[16:14:33] [PASSED] ttm_pool_fini_basic
[16:14:33] ==================== [PASSED] ttm_pool =====================
[16:14:33] ================ ttm_resource (8 subtests) =================
[16:14:33] ================= ttm_resource_init_basic =================
[16:14:33] [PASSED] Init resource in TTM_PL_SYSTEM
[16:14:33] [PASSED] Init resource in TTM_PL_VRAM
[16:14:33] [PASSED] Init resource in a private placement
[16:14:33] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[16:14:33] ============= [PASSED] ttm_resource_init_basic =============
[16:14:33] [PASSED] ttm_resource_init_pinned
[16:14:33] [PASSED] ttm_resource_fini_basic
[16:14:33] [PASSED] ttm_resource_manager_init_basic
[16:14:33] [PASSED] ttm_resource_manager_usage_basic
[16:14:33] [PASSED] ttm_resource_manager_set_used_basic
[16:14:33] [PASSED] ttm_sys_man_alloc_basic
[16:14:33] [PASSED] ttm_sys_man_free_basic
[16:14:33] ================== [PASSED] ttm_resource ===================
[16:14:33] =================== ttm_tt (15 subtests) ===================
[16:14:33] ==================== ttm_tt_init_basic ====================
[16:14:33] [PASSED] Page-aligned size
[16:14:33] [PASSED] Extra pages requested
[16:14:33] ================ [PASSED] ttm_tt_init_basic ================
[16:14:33] [PASSED] ttm_tt_init_misaligned
[16:14:33] [PASSED] ttm_tt_fini_basic
[16:14:33] [PASSED] ttm_tt_fini_sg
[16:14:33] [PASSED] ttm_tt_fini_shmem
[16:14:33] [PASSED] ttm_tt_create_basic
[16:14:33] [PASSED] ttm_tt_create_invalid_bo_type
[16:14:33] [PASSED] ttm_tt_create_ttm_exists
[16:14:33] [PASSED] ttm_tt_create_failed
[16:14:33] [PASSED] ttm_tt_destroy_basic
[16:14:33] [PASSED] ttm_tt_populate_null_ttm
[16:14:33] [PASSED] ttm_tt_populate_populated_ttm
[16:14:33] [PASSED] ttm_tt_unpopulate_basic
[16:14:33] [PASSED] ttm_tt_unpopulate_empty_ttm
[16:14:33] [PASSED] ttm_tt_swapin_basic
[16:14:33] ===================== [PASSED] ttm_tt ======================
[16:14:33] =================== ttm_bo (14 subtests) ===================
[16:14:33] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[16:14:33] [PASSED] Cannot be interrupted and sleeps
[16:14:33] [PASSED] Cannot be interrupted, locks straight away
[16:14:33] [PASSED] Can be interrupted, sleeps
[16:14:33] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[16:14:33] [PASSED] ttm_bo_reserve_locked_no_sleep
[16:14:33] [PASSED] ttm_bo_reserve_no_wait_ticket
[16:14:33] [PASSED] ttm_bo_reserve_double_resv
[16:14:33] [PASSED] ttm_bo_reserve_interrupted
[16:14:33] [PASSED] ttm_bo_reserve_deadlock
[16:14:33] [PASSED] ttm_bo_unreserve_basic
[16:14:33] [PASSED] ttm_bo_unreserve_pinned
[16:14:33] [PASSED] ttm_bo_unreserve_bulk
[16:14:33] [PASSED] ttm_bo_fini_basic
[16:14:33] [PASSED] ttm_bo_fini_shared_resv
[16:14:33] [PASSED] ttm_bo_pin_basic
[16:14:33] [PASSED] ttm_bo_pin_unpin_resource
[16:14:33] [PASSED] ttm_bo_multiple_pin_one_unpin
[16:14:33] ===================== [PASSED] ttm_bo ======================
[16:14:33] ============== ttm_bo_validate (21 subtests) ===============
[16:14:33] ============== ttm_bo_init_reserved_sys_man ===============
[16:14:33] [PASSED] Buffer object for userspace
[16:14:33] [PASSED] Kernel buffer object
[16:14:33] [PASSED] Shared buffer object
[16:14:33] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[16:14:33] ============== ttm_bo_init_reserved_mock_man ==============
[16:14:33] [PASSED] Buffer object for userspace
[16:14:33] [PASSED] Kernel buffer object
[16:14:33] [PASSED] Shared buffer object
[16:14:33] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[16:14:33] [PASSED] ttm_bo_init_reserved_resv
[16:14:33] ================== ttm_bo_validate_basic ==================
[16:14:33] [PASSED] Buffer object for userspace
[16:14:33] [PASSED] Kernel buffer object
[16:14:33] [PASSED] Shared buffer object
[16:14:33] ============== [PASSED] ttm_bo_validate_basic ==============
[16:14:33] [PASSED] ttm_bo_validate_invalid_placement
[16:14:33] ============= ttm_bo_validate_same_placement ==============
[16:14:33] [PASSED] System manager
[16:14:33] [PASSED] VRAM manager
[16:14:33] ========= [PASSED] ttm_bo_validate_same_placement ==========
[16:14:33] [PASSED] ttm_bo_validate_failed_alloc
[16:14:33] [PASSED] ttm_bo_validate_pinned
[16:14:33] [PASSED] ttm_bo_validate_busy_placement
[16:14:33] ================ ttm_bo_validate_multihop =================
[16:14:33] [PASSED] Buffer object for userspace
[16:14:33] [PASSED] Kernel buffer object
[16:14:33] [PASSED] Shared buffer object
[16:14:33] ============ [PASSED] ttm_bo_validate_multihop =============
[16:14:33] ========== ttm_bo_validate_no_placement_signaled ==========
[16:14:33] [PASSED] Buffer object in system domain, no page vector
[16:14:33] [PASSED] Buffer object in system domain with an existing page vector
[16:14:33] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[16:14:33] ======== ttm_bo_validate_no_placement_not_signaled ========
[16:14:33] [PASSED] Buffer object for userspace
[16:14:33] [PASSED] Kernel buffer object
[16:14:33] [PASSED] Shared buffer object
[16:14:33] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[16:14:33] [PASSED] ttm_bo_validate_move_fence_signaled
[16:14:34] ========= ttm_bo_validate_move_fence_not_signaled =========
[16:14:34] [PASSED] Waits for GPU
[16:14:34] [PASSED] Tries to lock straight away
[16:14:34] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[16:14:34] [PASSED] ttm_bo_validate_happy_evict
[16:14:34] [PASSED] ttm_bo_validate_all_pinned_evict
[16:14:34] [PASSED] ttm_bo_validate_allowed_only_evict
[16:14:34] [PASSED] ttm_bo_validate_deleted_evict
[16:14:34] [PASSED] ttm_bo_validate_busy_domain_evict
[16:14:34] [PASSED] ttm_bo_validate_evict_gutting
[16:14:34] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[16:14:34] ================= [PASSED] ttm_bo_validate =================
[16:14:34] ============================================================
[16:14:34] Testing complete. Ran 101 tests: passed: 101
[16:14:34] Elapsed time: 11.658s total, 1.702s configuring, 9.740s building, 0.175s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 48+ messages in thread
* Re: [PATCH v4] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise
2026-02-03 15:48 ` [PATCH v4] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
@ 2026-02-03 16:38 ` Matthew Auld
2026-02-03 16:59 ` Yao, Jia
2026-03-10 14:50 ` Mrozek, Michal
1 sibling, 1 reply; 48+ messages in thread
From: Matthew Auld @ 2026-02-03 16:38 UTC (permalink / raw)
To: Jia Yao, intel-xe
Cc: stable, Shuicheng Lin, Mathew Alwin, Michal Mrozek, Matthew Brost
On 03/02/2026 15:48, Jia Yao wrote:
> Add validation in xe_vm_madvise_ioctl() to reject PAT indices with
> XE_COH_NONE coherency mode when applied to CPU cached memory.
>
> Using coh_none with CPU cached buffers is a security issue. When the
> kernel clears pages before reallocation, the clear operation stays in
> CPU cache (dirty). GPU with coh_none can bypass CPU caches and read
> stale sensitive data directly from DRAM, potentially leaking data from
> previously freed pages of other processes.
>
> This aligns with the existing validation in vm_bind path
> (xe_vm_bind_ioctl_validate_bo).
>
> v2(Matthew brost)
> - Add fixes
> - Move one debug print to better place
>
> v3(Matthew Auld)
> - Should be drm/xe/uapi
> - More Cc
>
> v4(Shuicheng Lin)
> - Fix kmem leak issues by the way
>
> Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
> Cc: stable@vger.kernel.org # v6.18
> Cc: Shuicheng Lin <shuicheng.lin@intel.com>
> Cc: Mathew Alwin <alwin.mathew@intel.com>
> Cc: Michal Mrozek <michal.mrozek@intel.com>
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: Matthew Auld <matthew.auld@intel.com>
> Signed-off-by: Jia Yao <jia.yao@intel.com>
Unless I'm blind, it looks like there is some missing validation on the
pat_index coming from userspace also, where we can trigger OOB kernel
read when calling get_coh_mode(), if malicious user gives you a bogus
too large index. I think we need to fix that also, maybe as a seperate
patch in this series or just send as seperate fix and get it landed ASAP?
> ---
> drivers/gpu/drm/xe/xe_vm_madvise.c | 55 +++++++++++++++++++++++++++---
> 1 file changed, 50 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c b/drivers/gpu/drm/xe/xe_vm_madvise.c
> index add9a6ca2390..bf41fe75a336 100644
> --- a/drivers/gpu/drm/xe/xe_vm_madvise.c
> +++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
> @@ -74,7 +74,7 @@ static int get_vmas(struct xe_vm *vm, struct xe_vmas_in_madvise_range *madvise_r
> }
>
> madvise_range->vmas[madvise_range->num_vmas] = vma;
> - (madvise_range->num_vmas)++;
> + madvise_range->num_vmas++;
> }
>
> if (!madvise_range->num_vmas)
> @@ -352,6 +352,43 @@ static void xe_madvise_details_fini(struct xe_madvise_details *details)
> drm_pagemap_put(details->dpagemap);
> }
>
> +static bool check_pat_args_are_sane(struct xe_device *xe,
> + struct xe_vmas_in_madvise_range *madvise_range,
> + u16 pat_index)
> +{
> + u16 coh_mode = xe_pat_index_get_coh_mode(xe, pat_index);
> + int i;
> +
> + /*
> + * Using coh_none with CPU cached buffers is not allowed.
> + * Otherwise CPU page clearing can be bypassed, which is a
> + * security issue. GPU can directly access system memory and
> + * bypass CPU caches, potentially reading stale sensitive data
> + * from previously freed pages.
> + */
> + if (coh_mode != XE_COH_NONE)
> + return true;
> +
> + for (i = 0; i < madvise_range->num_vmas; i++) {
> + struct xe_vma *vma = madvise_range->vmas[i];
> + struct xe_bo *bo = xe_vma_bo(vma);
> +
> + if (bo) {
> + /* BO with WB caching + COH_NONE is not allowed */
> + if (XE_IOCTL_DBG(xe, bo->cpu_caching == DRM_XE_GEM_CPU_CACHING_WB))
> + return false;
> + /* Imported dma-buf without caching info, assume cached */
> + if (XE_IOCTL_DBG(xe, !bo->cpu_caching))
> + return false;
> + } else if (XE_IOCTL_DBG(xe, xe_vma_is_cpu_addr_mirror(vma) ||
> + xe_vma_is_userptr(vma)))
> + /* System memory (userptr/SVM) is always CPU cached */
> + return false;
> + }
> +
> + return true;
> +}
> +
> static bool check_bo_args_are_sane(struct xe_vm *vm, struct xe_vma **vmas,
> int num_vmas, u32 atomic_val)
> {
> @@ -388,12 +425,12 @@ static bool check_bo_args_are_sane(struct xe_vm *vm, struct xe_vma **vmas,
> return true;
> }
> /**
> - * xe_vm_madvise_ioctl - Handle MADVise ioctl for a VM
> + * xe_vm_madvise_ioctl - Handle madvise ioctl for a VM
> * @dev: DRM device pointer
> * @data: Pointer to ioctl data (drm_xe_madvise*)
> * @file: DRM file pointer
> *
> - * Handles the MADVISE ioctl to provide memory advice for vma's within
> + * Handles the madvise ioctl to provide memory advice for vma's within
> * input range.
> *
> * Return: 0 on success or a negative error code on failure.
> @@ -442,13 +479,21 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void *data, struct drm_file *fil
> if (err || !madvise_range.num_vmas)
> goto madv_fini;
>
> + if (args->type == DRM_XE_MEM_RANGE_ATTR_PAT) {
> + if (!check_pat_args_are_sane(xe, &madvise_range,
> + args->pat_index.val)) {
> + err = -EINVAL;
> + goto free_vmas;
> + }
> + }
> +
> if (madvise_range.has_bo_vmas) {
> if (args->type == DRM_XE_MEM_RANGE_ATTR_ATOMIC) {
> if (!check_bo_args_are_sane(vm, madvise_range.vmas,
> madvise_range.num_vmas,
> args->atomic.val)) {
> err = -EINVAL;
> - goto madv_fini;
> + goto free_vmas;
> }
> }
>
> @@ -485,8 +530,8 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void *data, struct drm_file *fil
> err_fini:
> if (madvise_range.has_bo_vmas)
> drm_exec_fini(&exec);
> +free_vmas:
> kfree(madvise_range.vmas);
> - madvise_range.vmas = NULL;
> madv_fini:
> xe_madvise_details_fini(&details);
> unlock_vm:
^ permalink raw reply [flat|nested] 48+ messages in thread
* RE: [PATCH v4] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise
2026-02-03 16:38 ` Matthew Auld
@ 2026-02-03 16:59 ` Yao, Jia
0 siblings, 0 replies; 48+ messages in thread
From: Yao, Jia @ 2026-02-03 16:59 UTC (permalink / raw)
To: Auld, Matthew, intel-xe@lists.freedesktop.org
Cc: stable@vger.kernel.org, Lin, Shuicheng, Mathew, Alwin,
Mrozek, Michal, Brost, Matthew
I prefer a separate patch to get it landed ASAP. For this one, need clarify the situation with CI, for this patch and the changes in IGT are interdependent.
> -----Original Message-----
> From: Auld, Matthew <matthew.auld@intel.com>
> Sent: Tuesday, February 3, 2026 8:39 AM
> To: Yao, Jia <jia.yao@intel.com>; intel-xe@lists.freedesktop.org
> Cc: stable@vger.kernel.org; Lin, Shuicheng <shuicheng.lin@intel.com>;
> Mathew, Alwin <alwin.mathew@intel.com>; Mrozek, Michal
> <michal.mrozek@intel.com>; Brost, Matthew <matthew.brost@intel.com>
> Subject: Re: [PATCH v4] drm/xe/uapi: Reject coh_none PAT index for CPU
> cached memory in madvise
>
> On 03/02/2026 15:48, Jia Yao wrote:
> > Add validation in xe_vm_madvise_ioctl() to reject PAT indices with
> > XE_COH_NONE coherency mode when applied to CPU cached memory.
> >
> > Using coh_none with CPU cached buffers is a security issue. When the
> > kernel clears pages before reallocation, the clear operation stays in
> > CPU cache (dirty). GPU with coh_none can bypass CPU caches and read
> > stale sensitive data directly from DRAM, potentially leaking data from
> > previously freed pages of other processes.
> >
> > This aligns with the existing validation in vm_bind path
> > (xe_vm_bind_ioctl_validate_bo).
> >
> > v2(Matthew brost)
> > - Add fixes
> > - Move one debug print to better place
> >
> > v3(Matthew Auld)
> > - Should be drm/xe/uapi
> > - More Cc
> >
> > v4(Shuicheng Lin)
> > - Fix kmem leak issues by the way
> >
> > Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
> > Cc: stable@vger.kernel.org # v6.18
> > Cc: Shuicheng Lin <shuicheng.lin@intel.com>
> > Cc: Mathew Alwin <alwin.mathew@intel.com>
> > Cc: Michal Mrozek <michal.mrozek@intel.com>
> > Cc: Matthew Brost <matthew.brost@intel.com>
> > Cc: Matthew Auld <matthew.auld@intel.com>
> > Signed-off-by: Jia Yao <jia.yao@intel.com>
>
> Unless I'm blind, it looks like there is some missing validation on the pat_index
> coming from userspace also, where we can trigger OOB kernel read when
> calling get_coh_mode(), if malicious user gives you a bogus too large index. I
> think we need to fix that also, maybe as a seperate patch in this series or just
> send as seperate fix and get it landed ASAP?
>
> > ---
> > drivers/gpu/drm/xe/xe_vm_madvise.c | 55
> +++++++++++++++++++++++++++---
> > 1 file changed, 50 insertions(+), 5 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c
> > b/drivers/gpu/drm/xe/xe_vm_madvise.c
> > index add9a6ca2390..bf41fe75a336 100644
> > --- a/drivers/gpu/drm/xe/xe_vm_madvise.c
> > +++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
> > @@ -74,7 +74,7 @@ static int get_vmas(struct xe_vm *vm, struct
> xe_vmas_in_madvise_range *madvise_r
> > }
> >
> > madvise_range->vmas[madvise_range->num_vmas] = vma;
> > - (madvise_range->num_vmas)++;
> > + madvise_range->num_vmas++;
> > }
> >
> > if (!madvise_range->num_vmas)
> > @@ -352,6 +352,43 @@ static void xe_madvise_details_fini(struct
> xe_madvise_details *details)
> > drm_pagemap_put(details->dpagemap);
> > }
> >
> > +static bool check_pat_args_are_sane(struct xe_device *xe,
> > + struct xe_vmas_in_madvise_range
> *madvise_range,
> > + u16 pat_index)
> > +{
> > + u16 coh_mode = xe_pat_index_get_coh_mode(xe, pat_index);
> > + int i;
> > +
> > + /*
> > + * Using coh_none with CPU cached buffers is not allowed.
> > + * Otherwise CPU page clearing can be bypassed, which is a
> > + * security issue. GPU can directly access system memory and
> > + * bypass CPU caches, potentially reading stale sensitive data
> > + * from previously freed pages.
> > + */
> > + if (coh_mode != XE_COH_NONE)
> > + return true;
> > +
> > + for (i = 0; i < madvise_range->num_vmas; i++) {
> > + struct xe_vma *vma = madvise_range->vmas[i];
> > + struct xe_bo *bo = xe_vma_bo(vma);
> > +
> > + if (bo) {
> > + /* BO with WB caching + COH_NONE is not allowed */
> > + if (XE_IOCTL_DBG(xe, bo->cpu_caching ==
> DRM_XE_GEM_CPU_CACHING_WB))
> > + return false;
> > + /* Imported dma-buf without caching info, assume
> cached */
> > + if (XE_IOCTL_DBG(xe, !bo->cpu_caching))
> > + return false;
> > + } else if (XE_IOCTL_DBG(xe, xe_vma_is_cpu_addr_mirror(vma)
> ||
> > + xe_vma_is_userptr(vma)))
> > + /* System memory (userptr/SVM) is always CPU
> cached */
> > + return false;
> > + }
> > +
> > + return true;
> > +}
> > +
> > static bool check_bo_args_are_sane(struct xe_vm *vm, struct xe_vma
> **vmas,
> > int num_vmas, u32 atomic_val)
> > {
> > @@ -388,12 +425,12 @@ static bool check_bo_args_are_sane(struct
> xe_vm *vm, struct xe_vma **vmas,
> > return true;
> > }
> > /**
> > - * xe_vm_madvise_ioctl - Handle MADVise ioctl for a VM
> > + * xe_vm_madvise_ioctl - Handle madvise ioctl for a VM
> > * @dev: DRM device pointer
> > * @data: Pointer to ioctl data (drm_xe_madvise*)
> > * @file: DRM file pointer
> > *
> > - * Handles the MADVISE ioctl to provide memory advice for vma's
> > within
> > + * Handles the madvise ioctl to provide memory advice for vma's
> > + within
> > * input range.
> > *
> > * Return: 0 on success or a negative error code on failure.
> > @@ -442,13 +479,21 @@ int xe_vm_madvise_ioctl(struct drm_device *dev,
> void *data, struct drm_file *fil
> > if (err || !madvise_range.num_vmas)
> > goto madv_fini;
> >
> > + if (args->type == DRM_XE_MEM_RANGE_ATTR_PAT) {
> > + if (!check_pat_args_are_sane(xe, &madvise_range,
> > + args->pat_index.val)) {
> > + err = -EINVAL;
> > + goto free_vmas;
> > + }
> > + }
> > +
> > if (madvise_range.has_bo_vmas) {
> > if (args->type == DRM_XE_MEM_RANGE_ATTR_ATOMIC) {
> > if (!check_bo_args_are_sane(vm,
> madvise_range.vmas,
> > madvise_range.num_vmas,
> > args->atomic.val)) {
> > err = -EINVAL;
> > - goto madv_fini;
> > + goto free_vmas;
> > }
> > }
> >
> > @@ -485,8 +530,8 @@ int xe_vm_madvise_ioctl(struct drm_device *dev,
> void *data, struct drm_file *fil
> > err_fini:
> > if (madvise_range.has_bo_vmas)
> > drm_exec_fini(&exec);
> > +free_vmas:
> > kfree(madvise_range.vmas);
> > - madvise_range.vmas = NULL;
> > madv_fini:
> > xe_madvise_details_fini(&details);
> > unlock_vm:
^ permalink raw reply [flat|nested] 48+ messages in thread
* ✗ Xe.CI.BAT: failure for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev4)
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (10 preceding siblings ...)
2026-02-03 16:14 ` ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev4) Patchwork
@ 2026-02-03 17:07 ` Patchwork
2026-02-04 8:47 ` ✗ Xe.CI.FULL: " Patchwork
` (15 subsequent siblings)
27 siblings, 0 replies; 48+ messages in thread
From: Patchwork @ 2026-02-03 17:07 UTC (permalink / raw)
To: Yao, Jia; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 403 bytes --]
== Series Details ==
Series: drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev4)
URL : https://patchwork.freedesktop.org/series/160797/
State : failure
== Summary ==
ERROR: The runconfig 'xe-4490-9f5242e63f0bab74d47ae6792e0c25a324184a6b_BAT' does not exist in the database
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v4/index.html
[-- Attachment #2: Type: text/html, Size: 968 bytes --]
^ permalink raw reply [flat|nested] 48+ messages in thread
* ✗ Xe.CI.FULL: failure for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev4)
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (11 preceding siblings ...)
2026-02-03 17:07 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2026-02-04 8:47 ` Patchwork
2026-02-04 21:13 ` ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev5) Patchwork
` (14 subsequent siblings)
27 siblings, 0 replies; 48+ messages in thread
From: Patchwork @ 2026-02-04 8:47 UTC (permalink / raw)
To: Jia Yao; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 404 bytes --]
== Series Details ==
Series: drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev4)
URL : https://patchwork.freedesktop.org/series/160797/
State : failure
== Summary ==
ERROR: The runconfig 'xe-4490-9f5242e63f0bab74d47ae6792e0c25a324184a6b_FULL' does not exist in the database
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v4/index.html
[-- Attachment #2: Type: text/html, Size: 969 bytes --]
^ permalink raw reply [flat|nested] 48+ messages in thread
* Re: [PATCH v3] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise
2026-01-30 22:07 ` [PATCH v3] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
2026-02-03 2:54 ` Lin, Shuicheng
@ 2026-02-04 15:13 ` Souza, Jose
1 sibling, 0 replies; 48+ messages in thread
From: Souza, Jose @ 2026-02-04 15:13 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org, Yao, Jia
Cc: Brost, Matthew, stable@vger.kernel.org, Auld, Matthew,
Mathew, Alwin, Mrozek, Michal
On Fri, 2026-01-30 at 22:07 +0000, Jia Yao wrote:
> Add validation in xe_vm_madvise_ioctl() to reject PAT indices with
> XE_COH_NONE coherency mode when applied to CPU cached memory.
>
> Using coh_none with CPU cached buffers is a security issue. When the
> kernel clears pages before reallocation, the clear operation stays in
> CPU cache (dirty). GPU with coh_none can bypass CPU caches and read
> stale sensitive data directly from DRAM, potentially leaking data
> from
> previously freed pages of other processes.
>
> This aligns with the existing validation in vm_bind path
> (xe_vm_bind_ioctl_validate_bo).
>
> v2(Matthew brost)
> - Add fixes
> - Move one debug print to better place
>
> v3(Matthew Auld)
> - Should be drm/xe/uapi
> - More Cc
>
> Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
> Cc: stable@vger.kernel.org # v6.18
> Cc: Mathew Alwin <alwin.mathew@intel.com>
> Cc: Michal Mrozek <michal.mrozek@intel.com>
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: Matthew Auld <matthew.auld@intel.com>
Mesa don't use madvise but API but the restriction makes sense, the API
changes is
Acked-by: José Roberto de Souza <jose.souza@intel.com>
> Signed-off-by: Jia Yao <jia.yao@intel.com>
> ---
> drivers/gpu/drm/xe/xe_vm_madvise.c | 47
> ++++++++++++++++++++++++++++++
> 1 file changed, 47 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c
> b/drivers/gpu/drm/xe/xe_vm_madvise.c
> index add9a6ca2390..50b82e821da7 100644
> --- a/drivers/gpu/drm/xe/xe_vm_madvise.c
> +++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
> @@ -352,6 +352,44 @@ static void xe_madvise_details_fini(struct
> xe_madvise_details *details)
> drm_pagemap_put(details->dpagemap);
> }
>
> +static bool check_pat_args_are_sane(struct xe_device *xe,
> + struct xe_vmas_in_madvise_range
> *madvise_range,
> + u16 pat_index)
> +{
> + u16 coh_mode = xe_pat_index_get_coh_mode(xe, pat_index);
> + int i;
> +
> + /*
> + * Using coh_none with CPU cached buffers is not allowed.
> + * Otherwise CPU page clearing can be bypassed, which is a
> + * security issue. GPU can directly access system memory and
> + * bypass CPU caches, potentially reading stale sensitive
> data
> + * from previously freed pages.
> + */
> + if (coh_mode != XE_COH_NONE)
> + return true;
> +
> + for (i = 0; i < madvise_range->num_vmas; i++) {
> + struct xe_vma *vma = madvise_range->vmas[i];
> + struct xe_bo *bo = xe_vma_bo(vma);
> +
> + if (bo) {
> + /* BO with WB caching + COH_NONE is not
> allowed */
> + if (XE_IOCTL_DBG(xe, bo->cpu_caching ==
> DRM_XE_GEM_CPU_CACHING_WB))
> + return false;
> + /* Imported dma-buf without caching info,
> assume cached */
> + if (XE_IOCTL_DBG(xe, !bo->cpu_caching))
> + return false;
> + } else if (XE_IOCTL_DBG(xe,
> xe_vma_is_cpu_addr_mirror(vma)) ||
> + xe_vma_is_userptr(vma)) {
> + /* System memory (userptr/SVM) is always CPU
> cached */
> + return false;
> + }
> + }
> +
> + return true;
> +}
> +
> static bool check_bo_args_are_sane(struct xe_vm *vm, struct xe_vma
> **vmas,
> int num_vmas, u32 atomic_val)
> {
> @@ -442,6 +480,14 @@ int xe_vm_madvise_ioctl(struct drm_device *dev,
> void *data, struct drm_file *fil
> if (err || !madvise_range.num_vmas)
> goto madv_fini;
>
> + if (args->type == DRM_XE_MEM_RANGE_ATTR_PAT) {
> + if (!check_pat_args_are_sane(xe, &madvise_range,
> + args->pat_index.val)) {
> + err = -EINVAL;
> + goto free_vmas;
> + }
> + }
> +
> if (madvise_range.has_bo_vmas) {
> if (args->type == DRM_XE_MEM_RANGE_ATTR_ATOMIC) {
> if (!check_bo_args_are_sane(vm,
> madvise_range.vmas,
> @@ -485,6 +531,7 @@ int xe_vm_madvise_ioctl(struct drm_device *dev,
> void *data, struct drm_file *fil
> err_fini:
> if (madvise_range.has_bo_vmas)
> drm_exec_fini(&exec);
> +free_vmas:
> kfree(madvise_range.vmas);
> madvise_range.vmas = NULL;
> madv_fini:
^ permalink raw reply [flat|nested] 48+ messages in thread
* ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev5)
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (12 preceding siblings ...)
2026-02-04 8:47 ` ✗ Xe.CI.FULL: " Patchwork
@ 2026-02-04 21:13 ` Patchwork
2026-02-04 21:47 ` ✓ Xe.CI.BAT: " Patchwork
` (13 subsequent siblings)
27 siblings, 0 replies; 48+ messages in thread
From: Patchwork @ 2026-02-04 21:13 UTC (permalink / raw)
To: Yao, Jia; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev5)
URL : https://patchwork.freedesktop.org/series/160797/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[21:12:33] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:12:38] 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
[21:13:10] Starting KUnit Kernel (1/1)...
[21:13:10] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:13:10] ================== guc_buf (11 subtests) ===================
[21:13:10] [PASSED] test_smallest
[21:13:10] [PASSED] test_largest
[21:13:10] [PASSED] test_granular
[21:13:10] [PASSED] test_unique
[21:13:10] [PASSED] test_overlap
[21:13:10] [PASSED] test_reusable
[21:13:10] [PASSED] test_too_big
[21:13:10] [PASSED] test_flush
[21:13:10] [PASSED] test_lookup
[21:13:10] [PASSED] test_data
[21:13:10] [PASSED] test_class
[21:13:10] ===================== [PASSED] guc_buf =====================
[21:13:10] =================== guc_dbm (7 subtests) ===================
[21:13:10] [PASSED] test_empty
[21:13:10] [PASSED] test_default
[21:13:10] ======================== test_size ========================
[21:13:10] [PASSED] 4
[21:13:10] [PASSED] 8
[21:13:10] [PASSED] 32
[21:13:10] [PASSED] 256
[21:13:10] ==================== [PASSED] test_size ====================
[21:13:10] ======================= test_reuse ========================
[21:13:10] [PASSED] 4
[21:13:10] [PASSED] 8
[21:13:10] [PASSED] 32
[21:13:10] [PASSED] 256
[21:13:10] =================== [PASSED] test_reuse ====================
[21:13:10] =================== test_range_overlap ====================
[21:13:10] [PASSED] 4
[21:13:10] [PASSED] 8
[21:13:10] [PASSED] 32
[21:13:10] [PASSED] 256
[21:13:10] =============== [PASSED] test_range_overlap ================
[21:13:10] =================== test_range_compact ====================
[21:13:10] [PASSED] 4
[21:13:10] [PASSED] 8
[21:13:10] [PASSED] 32
[21:13:10] [PASSED] 256
[21:13:10] =============== [PASSED] test_range_compact ================
[21:13:10] ==================== test_range_spare =====================
[21:13:10] [PASSED] 4
[21:13:10] [PASSED] 8
[21:13:10] [PASSED] 32
[21:13:10] [PASSED] 256
[21:13:10] ================ [PASSED] test_range_spare =================
[21:13:10] ===================== [PASSED] guc_dbm =====================
[21:13:10] =================== guc_idm (6 subtests) ===================
[21:13:10] [PASSED] bad_init
[21:13:10] [PASSED] no_init
[21:13:10] [PASSED] init_fini
[21:13:10] [PASSED] check_used
[21:13:10] [PASSED] check_quota
[21:13:10] [PASSED] check_all
[21:13:10] ===================== [PASSED] guc_idm =====================
[21:13:10] ================== no_relay (3 subtests) ===================
[21:13:10] [PASSED] xe_drops_guc2pf_if_not_ready
[21:13:10] [PASSED] xe_drops_guc2vf_if_not_ready
[21:13:10] [PASSED] xe_rejects_send_if_not_ready
[21:13:10] ==================== [PASSED] no_relay =====================
[21:13:10] ================== pf_relay (14 subtests) ==================
[21:13:10] [PASSED] pf_rejects_guc2pf_too_short
[21:13:10] [PASSED] pf_rejects_guc2pf_too_long
[21:13:10] [PASSED] pf_rejects_guc2pf_no_payload
[21:13:10] [PASSED] pf_fails_no_payload
[21:13:10] [PASSED] pf_fails_bad_origin
[21:13:10] [PASSED] pf_fails_bad_type
[21:13:10] [PASSED] pf_txn_reports_error
[21:13:10] [PASSED] pf_txn_sends_pf2guc
[21:13:10] [PASSED] pf_sends_pf2guc
[21:13:10] [SKIPPED] pf_loopback_nop
[21:13:10] [SKIPPED] pf_loopback_echo
[21:13:10] [SKIPPED] pf_loopback_fail
[21:13:10] [SKIPPED] pf_loopback_busy
[21:13:10] [SKIPPED] pf_loopback_retry
[21:13:10] ==================== [PASSED] pf_relay =====================
[21:13:10] ================== vf_relay (3 subtests) ===================
[21:13:10] [PASSED] vf_rejects_guc2vf_too_short
[21:13:10] [PASSED] vf_rejects_guc2vf_too_long
[21:13:10] [PASSED] vf_rejects_guc2vf_no_payload
[21:13:10] ==================== [PASSED] vf_relay =====================
[21:13:10] ================ pf_gt_config (6 subtests) =================
[21:13:10] [PASSED] fair_contexts_1vf
[21:13:10] [PASSED] fair_doorbells_1vf
[21:13:10] [PASSED] fair_ggtt_1vf
[21:13:10] ====================== fair_contexts ======================
[21:13:10] [PASSED] 1 VF
[21:13:10] [PASSED] 2 VFs
[21:13:10] [PASSED] 3 VFs
[21:13:10] [PASSED] 4 VFs
[21:13:10] [PASSED] 5 VFs
[21:13:10] [PASSED] 6 VFs
[21:13:10] [PASSED] 7 VFs
[21:13:10] [PASSED] 8 VFs
[21:13:10] [PASSED] 9 VFs
[21:13:10] [PASSED] 10 VFs
[21:13:10] [PASSED] 11 VFs
[21:13:10] [PASSED] 12 VFs
[21:13:10] [PASSED] 13 VFs
[21:13:10] [PASSED] 14 VFs
[21:13:10] [PASSED] 15 VFs
[21:13:10] [PASSED] 16 VFs
[21:13:10] [PASSED] 17 VFs
[21:13:10] [PASSED] 18 VFs
[21:13:10] [PASSED] 19 VFs
[21:13:10] [PASSED] 20 VFs
[21:13:10] [PASSED] 21 VFs
[21:13:10] [PASSED] 22 VFs
[21:13:10] [PASSED] 23 VFs
[21:13:10] [PASSED] 24 VFs
[21:13:10] [PASSED] 25 VFs
[21:13:10] [PASSED] 26 VFs
[21:13:10] [PASSED] 27 VFs
[21:13:10] [PASSED] 28 VFs
[21:13:10] [PASSED] 29 VFs
[21:13:10] [PASSED] 30 VFs
[21:13:10] [PASSED] 31 VFs
[21:13:10] [PASSED] 32 VFs
[21:13:10] [PASSED] 33 VFs
[21:13:10] [PASSED] 34 VFs
[21:13:10] [PASSED] 35 VFs
[21:13:10] [PASSED] 36 VFs
[21:13:10] [PASSED] 37 VFs
[21:13:10] [PASSED] 38 VFs
[21:13:10] [PASSED] 39 VFs
[21:13:10] [PASSED] 40 VFs
[21:13:10] [PASSED] 41 VFs
[21:13:10] [PASSED] 42 VFs
[21:13:10] [PASSED] 43 VFs
[21:13:10] [PASSED] 44 VFs
[21:13:10] [PASSED] 45 VFs
[21:13:10] [PASSED] 46 VFs
[21:13:10] [PASSED] 47 VFs
[21:13:10] [PASSED] 48 VFs
[21:13:10] [PASSED] 49 VFs
[21:13:10] [PASSED] 50 VFs
[21:13:10] [PASSED] 51 VFs
[21:13:10] [PASSED] 52 VFs
[21:13:10] [PASSED] 53 VFs
[21:13:10] [PASSED] 54 VFs
[21:13:10] [PASSED] 55 VFs
[21:13:10] [PASSED] 56 VFs
[21:13:10] [PASSED] 57 VFs
[21:13:10] [PASSED] 58 VFs
[21:13:10] [PASSED] 59 VFs
[21:13:10] [PASSED] 60 VFs
[21:13:10] [PASSED] 61 VFs
[21:13:10] [PASSED] 62 VFs
[21:13:10] [PASSED] 63 VFs
[21:13:10] ================== [PASSED] fair_contexts ==================
[21:13:10] ===================== fair_doorbells ======================
[21:13:10] [PASSED] 1 VF
[21:13:10] [PASSED] 2 VFs
[21:13:10] [PASSED] 3 VFs
[21:13:10] [PASSED] 4 VFs
[21:13:10] [PASSED] 5 VFs
[21:13:10] [PASSED] 6 VFs
[21:13:10] [PASSED] 7 VFs
[21:13:10] [PASSED] 8 VFs
[21:13:10] [PASSED] 9 VFs
[21:13:10] [PASSED] 10 VFs
[21:13:10] [PASSED] 11 VFs
[21:13:10] [PASSED] 12 VFs
[21:13:10] [PASSED] 13 VFs
[21:13:10] [PASSED] 14 VFs
[21:13:10] [PASSED] 15 VFs
[21:13:10] [PASSED] 16 VFs
[21:13:10] [PASSED] 17 VFs
[21:13:10] [PASSED] 18 VFs
[21:13:10] [PASSED] 19 VFs
[21:13:10] [PASSED] 20 VFs
[21:13:10] [PASSED] 21 VFs
[21:13:10] [PASSED] 22 VFs
[21:13:10] [PASSED] 23 VFs
[21:13:10] [PASSED] 24 VFs
[21:13:10] [PASSED] 25 VFs
[21:13:10] [PASSED] 26 VFs
[21:13:10] [PASSED] 27 VFs
[21:13:10] [PASSED] 28 VFs
[21:13:10] [PASSED] 29 VFs
[21:13:10] [PASSED] 30 VFs
[21:13:10] [PASSED] 31 VFs
[21:13:10] [PASSED] 32 VFs
[21:13:10] [PASSED] 33 VFs
[21:13:10] [PASSED] 34 VFs
[21:13:10] [PASSED] 35 VFs
[21:13:10] [PASSED] 36 VFs
[21:13:10] [PASSED] 37 VFs
[21:13:10] [PASSED] 38 VFs
[21:13:10] [PASSED] 39 VFs
[21:13:10] [PASSED] 40 VFs
[21:13:10] [PASSED] 41 VFs
[21:13:10] [PASSED] 42 VFs
[21:13:10] [PASSED] 43 VFs
[21:13:10] [PASSED] 44 VFs
[21:13:10] [PASSED] 45 VFs
[21:13:10] [PASSED] 46 VFs
[21:13:10] [PASSED] 47 VFs
[21:13:10] [PASSED] 48 VFs
[21:13:10] [PASSED] 49 VFs
[21:13:10] [PASSED] 50 VFs
[21:13:10] [PASSED] 51 VFs
[21:13:10] [PASSED] 52 VFs
[21:13:10] [PASSED] 53 VFs
[21:13:10] [PASSED] 54 VFs
[21:13:10] [PASSED] 55 VFs
[21:13:10] [PASSED] 56 VFs
[21:13:10] [PASSED] 57 VFs
[21:13:10] [PASSED] 58 VFs
[21:13:10] [PASSED] 59 VFs
[21:13:10] [PASSED] 60 VFs
[21:13:10] [PASSED] 61 VFs
[21:13:10] [PASSED] 62 VFs
[21:13:10] [PASSED] 63 VFs
[21:13:10] ================= [PASSED] fair_doorbells ==================
[21:13:10] ======================== fair_ggtt ========================
[21:13:10] [PASSED] 1 VF
[21:13:10] [PASSED] 2 VFs
[21:13:10] [PASSED] 3 VFs
[21:13:10] [PASSED] 4 VFs
[21:13:10] [PASSED] 5 VFs
[21:13:10] [PASSED] 6 VFs
[21:13:10] [PASSED] 7 VFs
[21:13:10] [PASSED] 8 VFs
[21:13:10] [PASSED] 9 VFs
[21:13:10] [PASSED] 10 VFs
[21:13:10] [PASSED] 11 VFs
[21:13:10] [PASSED] 12 VFs
[21:13:10] [PASSED] 13 VFs
[21:13:10] [PASSED] 14 VFs
[21:13:10] [PASSED] 15 VFs
[21:13:10] [PASSED] 16 VFs
[21:13:10] [PASSED] 17 VFs
[21:13:10] [PASSED] 18 VFs
[21:13:10] [PASSED] 19 VFs
[21:13:10] [PASSED] 20 VFs
[21:13:10] [PASSED] 21 VFs
[21:13:10] [PASSED] 22 VFs
[21:13:10] [PASSED] 23 VFs
[21:13:10] [PASSED] 24 VFs
[21:13:10] [PASSED] 25 VFs
[21:13:10] [PASSED] 26 VFs
[21:13:10] [PASSED] 27 VFs
[21:13:10] [PASSED] 28 VFs
[21:13:10] [PASSED] 29 VFs
[21:13:10] [PASSED] 30 VFs
[21:13:10] [PASSED] 31 VFs
[21:13:10] [PASSED] 32 VFs
[21:13:10] [PASSED] 33 VFs
[21:13:10] [PASSED] 34 VFs
[21:13:10] [PASSED] 35 VFs
[21:13:10] [PASSED] 36 VFs
[21:13:10] [PASSED] 37 VFs
[21:13:10] [PASSED] 38 VFs
[21:13:10] [PASSED] 39 VFs
[21:13:10] [PASSED] 40 VFs
[21:13:10] [PASSED] 41 VFs
[21:13:10] [PASSED] 42 VFs
[21:13:10] [PASSED] 43 VFs
[21:13:10] [PASSED] 44 VFs
[21:13:10] [PASSED] 45 VFs
[21:13:10] [PASSED] 46 VFs
[21:13:10] [PASSED] 47 VFs
[21:13:10] [PASSED] 48 VFs
[21:13:10] [PASSED] 49 VFs
[21:13:10] [PASSED] 50 VFs
[21:13:10] [PASSED] 51 VFs
[21:13:10] [PASSED] 52 VFs
[21:13:10] [PASSED] 53 VFs
[21:13:10] [PASSED] 54 VFs
[21:13:10] [PASSED] 55 VFs
[21:13:10] [PASSED] 56 VFs
[21:13:10] [PASSED] 57 VFs
[21:13:10] [PASSED] 58 VFs
[21:13:10] [PASSED] 59 VFs
[21:13:10] [PASSED] 60 VFs
[21:13:10] [PASSED] 61 VFs
[21:13:10] [PASSED] 62 VFs
[21:13:10] [PASSED] 63 VFs
[21:13:10] ==================== [PASSED] fair_ggtt ====================
[21:13:10] ================== [PASSED] pf_gt_config ===================
[21:13:10] ===================== lmtt (1 subtest) =====================
[21:13:10] ======================== test_ops =========================
[21:13:10] [PASSED] 2-level
[21:13:10] [PASSED] multi-level
[21:13:10] ==================== [PASSED] test_ops =====================
[21:13:10] ====================== [PASSED] lmtt =======================
[21:13:10] ================= pf_service (11 subtests) =================
[21:13:10] [PASSED] pf_negotiate_any
[21:13:10] [PASSED] pf_negotiate_base_match
[21:13:10] [PASSED] pf_negotiate_base_newer
[21:13:10] [PASSED] pf_negotiate_base_next
[21:13:10] [SKIPPED] pf_negotiate_base_older
[21:13:10] [PASSED] pf_negotiate_base_prev
[21:13:10] [PASSED] pf_negotiate_latest_match
[21:13:10] [PASSED] pf_negotiate_latest_newer
[21:13:10] [PASSED] pf_negotiate_latest_next
[21:13:10] [SKIPPED] pf_negotiate_latest_older
[21:13:10] [SKIPPED] pf_negotiate_latest_prev
[21:13:10] =================== [PASSED] pf_service ====================
[21:13:10] ================= xe_guc_g2g (2 subtests) ==================
[21:13:10] ============== xe_live_guc_g2g_kunit_default ==============
[21:13:10] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[21:13:10] ============== xe_live_guc_g2g_kunit_allmem ===============
[21:13:10] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[21:13:10] =================== [SKIPPED] xe_guc_g2g ===================
[21:13:10] =================== xe_mocs (2 subtests) ===================
[21:13:10] ================ xe_live_mocs_kernel_kunit ================
[21:13:10] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[21:13:10] ================ xe_live_mocs_reset_kunit =================
[21:13:10] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[21:13:10] ==================== [SKIPPED] xe_mocs =====================
[21:13:10] ================= xe_migrate (2 subtests) ==================
[21:13:10] ================= xe_migrate_sanity_kunit =================
[21:13:10] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[21:13:10] ================== xe_validate_ccs_kunit ==================
[21:13:10] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[21:13:10] =================== [SKIPPED] xe_migrate ===================
[21:13:10] ================== xe_dma_buf (1 subtest) ==================
[21:13:10] ==================== xe_dma_buf_kunit =====================
[21:13:10] ================ [SKIPPED] xe_dma_buf_kunit ================
[21:13:10] =================== [SKIPPED] xe_dma_buf ===================
[21:13:10] ================= xe_bo_shrink (1 subtest) =================
[21:13:10] =================== xe_bo_shrink_kunit ====================
[21:13:10] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[21:13:10] ================== [SKIPPED] xe_bo_shrink ==================
[21:13:10] ==================== xe_bo (2 subtests) ====================
[21:13:10] ================== xe_ccs_migrate_kunit ===================
[21:13:10] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[21:13:10] ==================== xe_bo_evict_kunit ====================
[21:13:10] =============== [SKIPPED] xe_bo_evict_kunit ================
[21:13:10] ===================== [SKIPPED] xe_bo ======================
[21:13:10] ==================== args (13 subtests) ====================
[21:13:10] [PASSED] count_args_test
[21:13:10] [PASSED] call_args_example
[21:13:10] [PASSED] call_args_test
[21:13:10] [PASSED] drop_first_arg_example
[21:13:10] [PASSED] drop_first_arg_test
[21:13:10] [PASSED] first_arg_example
[21:13:10] [PASSED] first_arg_test
[21:13:10] [PASSED] last_arg_example
[21:13:10] [PASSED] last_arg_test
[21:13:10] [PASSED] pick_arg_example
[21:13:10] [PASSED] if_args_example
[21:13:10] [PASSED] if_args_test
[21:13:10] [PASSED] sep_comma_example
[21:13:10] ====================== [PASSED] args =======================
[21:13:10] =================== xe_pci (3 subtests) ====================
[21:13:10] ==================== check_graphics_ip ====================
[21:13:10] [PASSED] 12.00 Xe_LP
[21:13:10] [PASSED] 12.10 Xe_LP+
[21:13:10] [PASSED] 12.55 Xe_HPG
[21:13:10] [PASSED] 12.60 Xe_HPC
[21:13:10] [PASSED] 12.70 Xe_LPG
[21:13:10] [PASSED] 12.71 Xe_LPG
[21:13:10] [PASSED] 12.74 Xe_LPG+
[21:13:10] [PASSED] 20.01 Xe2_HPG
[21:13:10] [PASSED] 20.02 Xe2_HPG
[21:13:10] [PASSED] 20.04 Xe2_LPG
[21:13:10] [PASSED] 30.00 Xe3_LPG
[21:13:10] [PASSED] 30.01 Xe3_LPG
[21:13:10] [PASSED] 30.03 Xe3_LPG
[21:13:10] [PASSED] 30.04 Xe3_LPG
[21:13:10] [PASSED] 30.05 Xe3_LPG
[21:13:10] [PASSED] 35.11 Xe3p_XPC
[21:13:10] ================ [PASSED] check_graphics_ip ================
[21:13:10] ===================== check_media_ip ======================
[21:13:10] [PASSED] 12.00 Xe_M
[21:13:10] [PASSED] 12.55 Xe_HPM
[21:13:10] [PASSED] 13.00 Xe_LPM+
[21:13:10] [PASSED] 13.01 Xe2_HPM
[21:13:10] [PASSED] 20.00 Xe2_LPM
[21:13:10] [PASSED] 30.00 Xe3_LPM
[21:13:10] [PASSED] 30.02 Xe3_LPM
[21:13:10] [PASSED] 35.00 Xe3p_LPM
[21:13:10] [PASSED] 35.03 Xe3p_HPM
[21:13:10] ================= [PASSED] check_media_ip ==================
[21:13:10] =================== check_platform_desc ===================
[21:13:10] [PASSED] 0x9A60 (TIGERLAKE)
[21:13:10] [PASSED] 0x9A68 (TIGERLAKE)
[21:13:10] [PASSED] 0x9A70 (TIGERLAKE)
[21:13:10] [PASSED] 0x9A40 (TIGERLAKE)
[21:13:10] [PASSED] 0x9A49 (TIGERLAKE)
[21:13:10] [PASSED] 0x9A59 (TIGERLAKE)
[21:13:10] [PASSED] 0x9A78 (TIGERLAKE)
[21:13:10] [PASSED] 0x9AC0 (TIGERLAKE)
[21:13:10] [PASSED] 0x9AC9 (TIGERLAKE)
[21:13:10] [PASSED] 0x9AD9 (TIGERLAKE)
[21:13:10] [PASSED] 0x9AF8 (TIGERLAKE)
[21:13:10] [PASSED] 0x4C80 (ROCKETLAKE)
[21:13:10] [PASSED] 0x4C8A (ROCKETLAKE)
[21:13:10] [PASSED] 0x4C8B (ROCKETLAKE)
[21:13:10] [PASSED] 0x4C8C (ROCKETLAKE)
[21:13:10] [PASSED] 0x4C90 (ROCKETLAKE)
[21:13:10] [PASSED] 0x4C9A (ROCKETLAKE)
[21:13:10] [PASSED] 0x4680 (ALDERLAKE_S)
[21:13:10] [PASSED] 0x4682 (ALDERLAKE_S)
[21:13:10] [PASSED] 0x4688 (ALDERLAKE_S)
[21:13:10] [PASSED] 0x468A (ALDERLAKE_S)
[21:13:10] [PASSED] 0x468B (ALDERLAKE_S)
[21:13:10] [PASSED] 0x4690 (ALDERLAKE_S)
[21:13:10] [PASSED] 0x4692 (ALDERLAKE_S)
[21:13:10] [PASSED] 0x4693 (ALDERLAKE_S)
[21:13:10] [PASSED] 0x46A0 (ALDERLAKE_P)
[21:13:10] [PASSED] 0x46A1 (ALDERLAKE_P)
[21:13:10] [PASSED] 0x46A2 (ALDERLAKE_P)
[21:13:10] [PASSED] 0x46A3 (ALDERLAKE_P)
[21:13:10] [PASSED] 0x46A6 (ALDERLAKE_P)
[21:13:10] [PASSED] 0x46A8 (ALDERLAKE_P)
[21:13:10] [PASSED] 0x46AA (ALDERLAKE_P)
[21:13:10] [PASSED] 0x462A (ALDERLAKE_P)
[21:13:10] [PASSED] 0x4626 (ALDERLAKE_P)
[21:13:10] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[21:13:10] [PASSED] 0x46B0 (ALDERLAKE_P)
[21:13:10] [PASSED] 0x46B1 (ALDERLAKE_P)
[21:13:10] [PASSED] 0x46B2 (ALDERLAKE_P)
[21:13:10] [PASSED] 0x46B3 (ALDERLAKE_P)
[21:13:10] [PASSED] 0x46C0 (ALDERLAKE_P)
[21:13:10] [PASSED] 0x46C1 (ALDERLAKE_P)
[21:13:10] [PASSED] 0x46C2 (ALDERLAKE_P)
[21:13:10] [PASSED] 0x46C3 (ALDERLAKE_P)
[21:13:10] [PASSED] 0x46D0 (ALDERLAKE_N)
[21:13:10] [PASSED] 0x46D1 (ALDERLAKE_N)
[21:13:10] [PASSED] 0x46D2 (ALDERLAKE_N)
[21:13:10] [PASSED] 0x46D3 (ALDERLAKE_N)
[21:13:10] [PASSED] 0x46D4 (ALDERLAKE_N)
[21:13:10] [PASSED] 0xA721 (ALDERLAKE_P)
[21:13:10] [PASSED] 0xA7A1 (ALDERLAKE_P)
[21:13:10] [PASSED] 0xA7A9 (ALDERLAKE_P)
[21:13:10] [PASSED] 0xA7AC (ALDERLAKE_P)
[21:13:10] [PASSED] 0xA7AD (ALDERLAKE_P)
[21:13:10] [PASSED] 0xA720 (ALDERLAKE_P)
[21:13:10] [PASSED] 0xA7A0 (ALDERLAKE_P)
[21:13:10] [PASSED] 0xA7A8 (ALDERLAKE_P)
[21:13:10] [PASSED] 0xA7AA (ALDERLAKE_P)
[21:13:10] [PASSED] 0xA7AB (ALDERLAKE_P)
[21:13:10] [PASSED] 0xA780 (ALDERLAKE_S)
[21:13:10] [PASSED] 0xA781 (ALDERLAKE_S)
[21:13:10] [PASSED] 0xA782 (ALDERLAKE_S)
[21:13:10] [PASSED] 0xA783 (ALDERLAKE_S)
[21:13:10] [PASSED] 0xA788 (ALDERLAKE_S)
[21:13:10] [PASSED] 0xA789 (ALDERLAKE_S)
[21:13:10] [PASSED] 0xA78A (ALDERLAKE_S)
[21:13:10] [PASSED] 0xA78B (ALDERLAKE_S)
[21:13:10] [PASSED] 0x4905 (DG1)
[21:13:10] [PASSED] 0x4906 (DG1)
[21:13:10] [PASSED] 0x4907 (DG1)
[21:13:10] [PASSED] 0x4908 (DG1)
[21:13:10] [PASSED] 0x4909 (DG1)
[21:13:10] [PASSED] 0x56C0 (DG2)
[21:13:10] [PASSED] 0x56C2 (DG2)
[21:13:10] [PASSED] 0x56C1 (DG2)
[21:13:10] [PASSED] 0x7D51 (METEORLAKE)
[21:13:10] [PASSED] 0x7DD1 (METEORLAKE)
[21:13:10] [PASSED] 0x7D41 (METEORLAKE)
[21:13:10] [PASSED] 0x7D67 (METEORLAKE)
[21:13:10] [PASSED] 0xB640 (METEORLAKE)
[21:13:10] [PASSED] 0x56A0 (DG2)
[21:13:10] [PASSED] 0x56A1 (DG2)
[21:13:10] [PASSED] 0x56A2 (DG2)
[21:13:10] [PASSED] 0x56BE (DG2)
[21:13:10] [PASSED] 0x56BF (DG2)
[21:13:10] [PASSED] 0x5690 (DG2)
[21:13:10] [PASSED] 0x5691 (DG2)
[21:13:10] [PASSED] 0x5692 (DG2)
[21:13:10] [PASSED] 0x56A5 (DG2)
[21:13:10] [PASSED] 0x56A6 (DG2)
[21:13:10] [PASSED] 0x56B0 (DG2)
[21:13:10] [PASSED] 0x56B1 (DG2)
[21:13:10] [PASSED] 0x56BA (DG2)
[21:13:10] [PASSED] 0x56BB (DG2)
[21:13:10] [PASSED] 0x56BC (DG2)
[21:13:10] [PASSED] 0x56BD (DG2)
[21:13:10] [PASSED] 0x5693 (DG2)
[21:13:10] [PASSED] 0x5694 (DG2)
[21:13:10] [PASSED] 0x5695 (DG2)
[21:13:10] [PASSED] 0x56A3 (DG2)
[21:13:10] [PASSED] 0x56A4 (DG2)
[21:13:10] [PASSED] 0x56B2 (DG2)
[21:13:10] [PASSED] 0x56B3 (DG2)
[21:13:10] [PASSED] 0x5696 (DG2)
[21:13:10] [PASSED] 0x5697 (DG2)
[21:13:10] [PASSED] 0xB69 (PVC)
[21:13:10] [PASSED] 0xB6E (PVC)
[21:13:10] [PASSED] 0xBD4 (PVC)
[21:13:10] [PASSED] 0xBD5 (PVC)
[21:13:10] [PASSED] 0xBD6 (PVC)
[21:13:10] [PASSED] 0xBD7 (PVC)
[21:13:10] [PASSED] 0xBD8 (PVC)
[21:13:10] [PASSED] 0xBD9 (PVC)
[21:13:10] [PASSED] 0xBDA (PVC)
[21:13:10] [PASSED] 0xBDB (PVC)
[21:13:10] [PASSED] 0xBE0 (PVC)
[21:13:10] [PASSED] 0xBE1 (PVC)
[21:13:10] [PASSED] 0xBE5 (PVC)
[21:13:10] [PASSED] 0x7D40 (METEORLAKE)
[21:13:10] [PASSED] 0x7D45 (METEORLAKE)
[21:13:10] [PASSED] 0x7D55 (METEORLAKE)
[21:13:10] [PASSED] 0x7D60 (METEORLAKE)
[21:13:10] [PASSED] 0x7DD5 (METEORLAKE)
[21:13:10] [PASSED] 0x6420 (LUNARLAKE)
[21:13:10] [PASSED] 0x64A0 (LUNARLAKE)
[21:13:10] [PASSED] 0x64B0 (LUNARLAKE)
[21:13:10] [PASSED] 0xE202 (BATTLEMAGE)
[21:13:10] [PASSED] 0xE209 (BATTLEMAGE)
[21:13:10] [PASSED] 0xE20B (BATTLEMAGE)
[21:13:10] [PASSED] 0xE20C (BATTLEMAGE)
[21:13:10] [PASSED] 0xE20D (BATTLEMAGE)
[21:13:10] [PASSED] 0xE210 (BATTLEMAGE)
[21:13:10] [PASSED] 0xE211 (BATTLEMAGE)
[21:13:10] [PASSED] 0xE212 (BATTLEMAGE)
[21:13:10] [PASSED] 0xE216 (BATTLEMAGE)
[21:13:10] [PASSED] 0xE220 (BATTLEMAGE)
[21:13:10] [PASSED] 0xE221 (BATTLEMAGE)
[21:13:10] [PASSED] 0xE222 (BATTLEMAGE)
[21:13:10] [PASSED] 0xE223 (BATTLEMAGE)
[21:13:10] [PASSED] 0xB080 (PANTHERLAKE)
[21:13:10] [PASSED] 0xB081 (PANTHERLAKE)
[21:13:10] [PASSED] 0xB082 (PANTHERLAKE)
[21:13:10] [PASSED] 0xB083 (PANTHERLAKE)
[21:13:10] [PASSED] 0xB084 (PANTHERLAKE)
[21:13:10] [PASSED] 0xB085 (PANTHERLAKE)
[21:13:10] [PASSED] 0xB086 (PANTHERLAKE)
[21:13:10] [PASSED] 0xB087 (PANTHERLAKE)
[21:13:10] [PASSED] 0xB08F (PANTHERLAKE)
[21:13:10] [PASSED] 0xB090 (PANTHERLAKE)
[21:13:10] [PASSED] 0xB0A0 (PANTHERLAKE)
[21:13:10] [PASSED] 0xB0B0 (PANTHERLAKE)
[21:13:10] [PASSED] 0xFD80 (PANTHERLAKE)
[21:13:10] [PASSED] 0xFD81 (PANTHERLAKE)
[21:13:10] [PASSED] 0xD740 (NOVALAKE_S)
[21:13:10] [PASSED] 0xD741 (NOVALAKE_S)
[21:13:10] [PASSED] 0xD742 (NOVALAKE_S)
[21:13:10] [PASSED] 0xD743 (NOVALAKE_S)
[21:13:10] [PASSED] 0xD744 (NOVALAKE_S)
[21:13:10] [PASSED] 0xD745 (NOVALAKE_S)
[21:13:10] [PASSED] 0x674C (CRESCENTISLAND)
[21:13:10] =============== [PASSED] check_platform_desc ===============
[21:13:10] ===================== [PASSED] xe_pci ======================
[21:13:10] =================== xe_rtp (2 subtests) ====================
[21:13:10] =============== xe_rtp_process_to_sr_tests ================
[21:13:10] [PASSED] coalesce-same-reg
[21:13:10] [PASSED] no-match-no-add
[21:13:10] [PASSED] match-or
[21:13:10] [PASSED] match-or-xfail
[21:13:10] [PASSED] no-match-no-add-multiple-rules
[21:13:10] [PASSED] two-regs-two-entries
[21:13:10] [PASSED] clr-one-set-other
[21:13:10] [PASSED] set-field
[21:13:10] [PASSED] conflict-duplicate
[21:13:10] [PASSED] conflict-not-disjoint
[21:13:10] [PASSED] conflict-reg-type
[21:13:10] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[21:13:10] ================== xe_rtp_process_tests ===================
[21:13:10] [PASSED] active1
[21:13:10] [PASSED] active2
[21:13:10] [PASSED] active-inactive
[21:13:10] [PASSED] inactive-active
[21:13:10] [PASSED] inactive-1st_or_active-inactive
[21:13:10] [PASSED] inactive-2nd_or_active-inactive
[21:13:10] [PASSED] inactive-last_or_active-inactive
[21:13:10] [PASSED] inactive-no_or_active-inactive
[21:13:10] ============== [PASSED] xe_rtp_process_tests ===============
[21:13:10] ===================== [PASSED] xe_rtp ======================
[21:13:10] ==================== xe_wa (1 subtest) =====================
[21:13:10] ======================== xe_wa_gt =========================
[21:13:10] [PASSED] TIGERLAKE B0
[21:13:10] [PASSED] DG1 A0
[21:13:10] [PASSED] DG1 B0
[21:13:10] [PASSED] ALDERLAKE_S A0
[21:13:10] [PASSED] ALDERLAKE_S B0
[21:13:10] [PASSED] ALDERLAKE_S C0
[21:13:10] [PASSED] ALDERLAKE_S D0
[21:13:10] [PASSED] ALDERLAKE_P A0
[21:13:10] [PASSED] ALDERLAKE_P B0
[21:13:10] [PASSED] ALDERLAKE_P C0
[21:13:10] [PASSED] ALDERLAKE_S RPLS D0
[21:13:10] [PASSED] ALDERLAKE_P RPLU E0
[21:13:10] [PASSED] DG2 G10 C0
[21:13:10] [PASSED] DG2 G11 B1
[21:13:10] [PASSED] DG2 G12 A1
[21:13:10] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[21:13:10] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[21:13:10] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[21:13:10] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[21:13:10] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[21:13:10] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[21:13:10] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[21:13:10] ==================== [PASSED] xe_wa_gt =====================
[21:13:10] ====================== [PASSED] xe_wa ======================
[21:13:10] ============================================================
[21:13:10] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[21:13:10] Elapsed time: 36.670s total, 4.182s configuring, 31.970s building, 0.467s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[21:13:10] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:13:12] 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
[21:13:37] Starting KUnit Kernel (1/1)...
[21:13:37] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:13:37] ============ drm_test_pick_cmdline (2 subtests) ============
[21:13:37] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[21:13:37] =============== drm_test_pick_cmdline_named ===============
[21:13:37] [PASSED] NTSC
[21:13:37] [PASSED] NTSC-J
[21:13:37] [PASSED] PAL
[21:13:37] [PASSED] PAL-M
[21:13:37] =========== [PASSED] drm_test_pick_cmdline_named ===========
[21:13:37] ============== [PASSED] drm_test_pick_cmdline ==============
[21:13:37] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[21:13:37] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[21:13:37] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[21:13:37] =========== drm_validate_clone_mode (2 subtests) ===========
[21:13:37] ============== drm_test_check_in_clone_mode ===============
[21:13:37] [PASSED] in_clone_mode
[21:13:37] [PASSED] not_in_clone_mode
[21:13:37] ========== [PASSED] drm_test_check_in_clone_mode ===========
[21:13:37] =============== drm_test_check_valid_clones ===============
[21:13:37] [PASSED] not_in_clone_mode
[21:13:37] [PASSED] valid_clone
[21:13:37] [PASSED] invalid_clone
[21:13:37] =========== [PASSED] drm_test_check_valid_clones ===========
[21:13:37] ============= [PASSED] drm_validate_clone_mode =============
[21:13:37] ============= drm_validate_modeset (1 subtest) =============
[21:13:37] [PASSED] drm_test_check_connector_changed_modeset
[21:13:37] ============== [PASSED] drm_validate_modeset ===============
[21:13:37] ====== drm_test_bridge_get_current_state (2 subtests) ======
[21:13:37] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[21:13:37] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[21:13:37] ======== [PASSED] drm_test_bridge_get_current_state ========
[21:13:37] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[21:13:37] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[21:13:37] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[21:13:37] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[21:13:37] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[21:13:37] ============== drm_bridge_alloc (2 subtests) ===============
[21:13:37] [PASSED] drm_test_drm_bridge_alloc_basic
[21:13:37] [PASSED] drm_test_drm_bridge_alloc_get_put
[21:13:37] ================ [PASSED] drm_bridge_alloc =================
[21:13:37] ================== drm_buddy (9 subtests) ==================
[21:13:37] [PASSED] drm_test_buddy_alloc_limit
[21:13:37] [PASSED] drm_test_buddy_alloc_optimistic
[21:13:37] [PASSED] drm_test_buddy_alloc_pessimistic
[21:13:37] [PASSED] drm_test_buddy_alloc_pathological
[21:13:37] [PASSED] drm_test_buddy_alloc_contiguous
[21:13:37] [PASSED] drm_test_buddy_alloc_clear
[21:13:38] [PASSED] drm_test_buddy_alloc_range_bias
[21:13:38] [PASSED] drm_test_buddy_fragmentation_performance
[21:13:38] [PASSED] drm_test_buddy_alloc_exceeds_max_order
[21:13:38] ==================== [PASSED] drm_buddy ====================
[21:13:38] ============= drm_cmdline_parser (40 subtests) =============
[21:13:38] [PASSED] drm_test_cmdline_force_d_only
[21:13:38] [PASSED] drm_test_cmdline_force_D_only_dvi
[21:13:38] [PASSED] drm_test_cmdline_force_D_only_hdmi
[21:13:38] [PASSED] drm_test_cmdline_force_D_only_not_digital
[21:13:38] [PASSED] drm_test_cmdline_force_e_only
[21:13:38] [PASSED] drm_test_cmdline_res
[21:13:38] [PASSED] drm_test_cmdline_res_vesa
[21:13:38] [PASSED] drm_test_cmdline_res_vesa_rblank
[21:13:38] [PASSED] drm_test_cmdline_res_rblank
[21:13:38] [PASSED] drm_test_cmdline_res_bpp
[21:13:38] [PASSED] drm_test_cmdline_res_refresh
[21:13:38] [PASSED] drm_test_cmdline_res_bpp_refresh
[21:13:38] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[21:13:38] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[21:13:38] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[21:13:38] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[21:13:38] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[21:13:38] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[21:13:38] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[21:13:38] [PASSED] drm_test_cmdline_res_margins_force_on
[21:13:38] [PASSED] drm_test_cmdline_res_vesa_margins
[21:13:38] [PASSED] drm_test_cmdline_name
[21:13:38] [PASSED] drm_test_cmdline_name_bpp
[21:13:38] [PASSED] drm_test_cmdline_name_option
[21:13:38] [PASSED] drm_test_cmdline_name_bpp_option
[21:13:38] [PASSED] drm_test_cmdline_rotate_0
[21:13:38] [PASSED] drm_test_cmdline_rotate_90
[21:13:38] [PASSED] drm_test_cmdline_rotate_180
[21:13:38] [PASSED] drm_test_cmdline_rotate_270
[21:13:38] [PASSED] drm_test_cmdline_hmirror
[21:13:38] [PASSED] drm_test_cmdline_vmirror
[21:13:38] [PASSED] drm_test_cmdline_margin_options
[21:13:38] [PASSED] drm_test_cmdline_multiple_options
[21:13:38] [PASSED] drm_test_cmdline_bpp_extra_and_option
[21:13:38] [PASSED] drm_test_cmdline_extra_and_option
[21:13:38] [PASSED] drm_test_cmdline_freestanding_options
[21:13:38] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[21:13:38] [PASSED] drm_test_cmdline_panel_orientation
[21:13:38] ================ drm_test_cmdline_invalid =================
[21:13:38] [PASSED] margin_only
[21:13:38] [PASSED] interlace_only
[21:13:38] [PASSED] res_missing_x
[21:13:38] [PASSED] res_missing_y
[21:13:38] [PASSED] res_bad_y
[21:13:38] [PASSED] res_missing_y_bpp
[21:13:38] [PASSED] res_bad_bpp
[21:13:38] [PASSED] res_bad_refresh
[21:13:38] [PASSED] res_bpp_refresh_force_on_off
[21:13:38] [PASSED] res_invalid_mode
[21:13:38] [PASSED] res_bpp_wrong_place_mode
[21:13:38] [PASSED] name_bpp_refresh
[21:13:38] [PASSED] name_refresh
[21:13:38] [PASSED] name_refresh_wrong_mode
[21:13:38] [PASSED] name_refresh_invalid_mode
[21:13:38] [PASSED] rotate_multiple
[21:13:38] [PASSED] rotate_invalid_val
[21:13:38] [PASSED] rotate_truncated
[21:13:38] [PASSED] invalid_option
[21:13:38] [PASSED] invalid_tv_option
[21:13:38] [PASSED] truncated_tv_option
[21:13:38] ============ [PASSED] drm_test_cmdline_invalid =============
[21:13:38] =============== drm_test_cmdline_tv_options ===============
[21:13:38] [PASSED] NTSC
[21:13:38] [PASSED] NTSC_443
[21:13:38] [PASSED] NTSC_J
[21:13:38] [PASSED] PAL
[21:13:38] [PASSED] PAL_M
[21:13:38] [PASSED] PAL_N
[21:13:38] [PASSED] SECAM
[21:13:38] [PASSED] MONO_525
[21:13:38] [PASSED] MONO_625
[21:13:38] =========== [PASSED] drm_test_cmdline_tv_options ===========
[21:13:38] =============== [PASSED] drm_cmdline_parser ================
[21:13:38] ========== drmm_connector_hdmi_init (20 subtests) ==========
[21:13:38] [PASSED] drm_test_connector_hdmi_init_valid
[21:13:38] [PASSED] drm_test_connector_hdmi_init_bpc_8
[21:13:38] [PASSED] drm_test_connector_hdmi_init_bpc_10
[21:13:38] [PASSED] drm_test_connector_hdmi_init_bpc_12
[21:13:38] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[21:13:38] [PASSED] drm_test_connector_hdmi_init_bpc_null
[21:13:38] [PASSED] drm_test_connector_hdmi_init_formats_empty
[21:13:38] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[21:13:38] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[21:13:38] [PASSED] supported_formats=0x9 yuv420_allowed=1
[21:13:38] [PASSED] supported_formats=0x9 yuv420_allowed=0
[21:13:38] [PASSED] supported_formats=0x3 yuv420_allowed=1
[21:13:38] [PASSED] supported_formats=0x3 yuv420_allowed=0
[21:13:38] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[21:13:38] [PASSED] drm_test_connector_hdmi_init_null_ddc
[21:13:38] [PASSED] drm_test_connector_hdmi_init_null_product
[21:13:38] [PASSED] drm_test_connector_hdmi_init_null_vendor
[21:13:38] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[21:13:38] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[21:13:38] [PASSED] drm_test_connector_hdmi_init_product_valid
[21:13:38] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[21:13:38] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[21:13:38] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[21:13:38] ========= drm_test_connector_hdmi_init_type_valid =========
[21:13:38] [PASSED] HDMI-A
[21:13:38] [PASSED] HDMI-B
[21:13:38] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[21:13:38] ======== drm_test_connector_hdmi_init_type_invalid ========
[21:13:38] [PASSED] Unknown
[21:13:38] [PASSED] VGA
[21:13:38] [PASSED] DVI-I
[21:13:38] [PASSED] DVI-D
[21:13:38] [PASSED] DVI-A
[21:13:38] [PASSED] Composite
[21:13:38] [PASSED] SVIDEO
[21:13:38] [PASSED] LVDS
[21:13:38] [PASSED] Component
[21:13:38] [PASSED] DIN
[21:13:38] [PASSED] DP
[21:13:38] [PASSED] TV
[21:13:38] [PASSED] eDP
[21:13:38] [PASSED] Virtual
[21:13:38] [PASSED] DSI
[21:13:38] [PASSED] DPI
[21:13:38] [PASSED] Writeback
[21:13:38] [PASSED] SPI
[21:13:38] [PASSED] USB
[21:13:38] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[21:13:38] ============ [PASSED] drmm_connector_hdmi_init =============
[21:13:38] ============= drmm_connector_init (3 subtests) =============
[21:13:38] [PASSED] drm_test_drmm_connector_init
[21:13:38] [PASSED] drm_test_drmm_connector_init_null_ddc
[21:13:38] ========= drm_test_drmm_connector_init_type_valid =========
[21:13:38] [PASSED] Unknown
[21:13:38] [PASSED] VGA
[21:13:38] [PASSED] DVI-I
[21:13:38] [PASSED] DVI-D
[21:13:38] [PASSED] DVI-A
[21:13:38] [PASSED] Composite
[21:13:38] [PASSED] SVIDEO
[21:13:38] [PASSED] LVDS
[21:13:38] [PASSED] Component
[21:13:38] [PASSED] DIN
[21:13:38] [PASSED] DP
[21:13:38] [PASSED] HDMI-A
[21:13:38] [PASSED] HDMI-B
[21:13:38] [PASSED] TV
[21:13:38] [PASSED] eDP
[21:13:38] [PASSED] Virtual
[21:13:38] [PASSED] DSI
[21:13:38] [PASSED] DPI
[21:13:38] [PASSED] Writeback
[21:13:38] [PASSED] SPI
[21:13:38] [PASSED] USB
[21:13:38] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[21:13:38] =============== [PASSED] drmm_connector_init ===============
[21:13:38] ========= drm_connector_dynamic_init (6 subtests) ==========
[21:13:38] [PASSED] drm_test_drm_connector_dynamic_init
[21:13:38] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[21:13:38] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[21:13:38] [PASSED] drm_test_drm_connector_dynamic_init_properties
[21:13:38] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[21:13:38] [PASSED] Unknown
[21:13:38] [PASSED] VGA
[21:13:38] [PASSED] DVI-I
[21:13:38] [PASSED] DVI-D
[21:13:38] [PASSED] DVI-A
[21:13:38] [PASSED] Composite
[21:13:38] [PASSED] SVIDEO
[21:13:38] [PASSED] LVDS
[21:13:38] [PASSED] Component
[21:13:38] [PASSED] DIN
[21:13:38] [PASSED] DP
[21:13:38] [PASSED] HDMI-A
[21:13:38] [PASSED] HDMI-B
[21:13:38] [PASSED] TV
[21:13:38] [PASSED] eDP
[21:13:38] [PASSED] Virtual
[21:13:38] [PASSED] DSI
[21:13:38] [PASSED] DPI
[21:13:38] [PASSED] Writeback
[21:13:38] [PASSED] SPI
[21:13:38] [PASSED] USB
[21:13:38] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[21:13:38] ======== drm_test_drm_connector_dynamic_init_name =========
[21:13:38] [PASSED] Unknown
[21:13:38] [PASSED] VGA
[21:13:38] [PASSED] DVI-I
[21:13:38] [PASSED] DVI-D
[21:13:38] [PASSED] DVI-A
[21:13:38] [PASSED] Composite
[21:13:38] [PASSED] SVIDEO
[21:13:38] [PASSED] LVDS
[21:13:38] [PASSED] Component
[21:13:38] [PASSED] DIN
[21:13:38] [PASSED] DP
[21:13:38] [PASSED] HDMI-A
[21:13:38] [PASSED] HDMI-B
[21:13:38] [PASSED] TV
[21:13:38] [PASSED] eDP
[21:13:38] [PASSED] Virtual
[21:13:38] [PASSED] DSI
[21:13:38] [PASSED] DPI
[21:13:38] [PASSED] Writeback
[21:13:38] [PASSED] SPI
[21:13:38] [PASSED] USB
[21:13:38] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[21:13:38] =========== [PASSED] drm_connector_dynamic_init ============
[21:13:38] ==== drm_connector_dynamic_register_early (4 subtests) =====
[21:13:38] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[21:13:38] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[21:13:38] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[21:13:38] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[21:13:38] ====== [PASSED] drm_connector_dynamic_register_early =======
[21:13:38] ======= drm_connector_dynamic_register (7 subtests) ========
[21:13:38] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[21:13:38] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[21:13:38] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[21:13:38] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[21:13:38] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[21:13:38] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[21:13:38] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[21:13:38] ========= [PASSED] drm_connector_dynamic_register ==========
[21:13:38] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[21:13:38] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[21:13:38] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[21:13:38] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[21:13:38] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[21:13:38] ========== drm_test_get_tv_mode_from_name_valid ===========
[21:13:38] [PASSED] NTSC
[21:13:38] [PASSED] NTSC-443
[21:13:38] [PASSED] NTSC-J
[21:13:38] [PASSED] PAL
[21:13:38] [PASSED] PAL-M
[21:13:38] [PASSED] PAL-N
[21:13:38] [PASSED] SECAM
[21:13:38] [PASSED] Mono
[21:13:38] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[21:13:38] [PASSED] drm_test_get_tv_mode_from_name_truncated
[21:13:38] ============ [PASSED] drm_get_tv_mode_from_name ============
[21:13:38] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[21:13:38] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[21:13:38] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[21:13:38] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[21:13:38] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[21:13:38] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[21:13:38] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[21:13:38] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[21:13:38] [PASSED] VIC 96
[21:13:38] [PASSED] VIC 97
[21:13:38] [PASSED] VIC 101
[21:13:38] [PASSED] VIC 102
[21:13:38] [PASSED] VIC 106
[21:13:38] [PASSED] VIC 107
[21:13:38] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[21:13:38] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[21:13:38] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[21:13:38] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[21:13:38] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[21:13:38] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[21:13:38] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[21:13:38] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[21:13:38] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[21:13:38] [PASSED] Automatic
[21:13:38] [PASSED] Full
[21:13:38] [PASSED] Limited 16:235
[21:13:38] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[21:13:38] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[21:13:38] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[21:13:38] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[21:13:38] === drm_test_drm_hdmi_connector_get_output_format_name ====
[21:13:38] [PASSED] RGB
[21:13:38] [PASSED] YUV 4:2:0
[21:13:38] [PASSED] YUV 4:2:2
[21:13:38] [PASSED] YUV 4:4:4
[21:13:38] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[21:13:38] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[21:13:38] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[21:13:38] ============= drm_damage_helper (21 subtests) ==============
[21:13:38] [PASSED] drm_test_damage_iter_no_damage
[21:13:38] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[21:13:38] [PASSED] drm_test_damage_iter_no_damage_src_moved
[21:13:38] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[21:13:38] [PASSED] drm_test_damage_iter_no_damage_not_visible
[21:13:38] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[21:13:38] [PASSED] drm_test_damage_iter_no_damage_no_fb
[21:13:38] [PASSED] drm_test_damage_iter_simple_damage
[21:13:38] [PASSED] drm_test_damage_iter_single_damage
[21:13:38] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[21:13:38] [PASSED] drm_test_damage_iter_single_damage_outside_src
[21:13:38] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[21:13:38] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[21:13:38] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[21:13:38] [PASSED] drm_test_damage_iter_single_damage_src_moved
[21:13:38] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[21:13:38] [PASSED] drm_test_damage_iter_damage
[21:13:38] [PASSED] drm_test_damage_iter_damage_one_intersect
[21:13:38] [PASSED] drm_test_damage_iter_damage_one_outside
[21:13:38] [PASSED] drm_test_damage_iter_damage_src_moved
[21:13:38] [PASSED] drm_test_damage_iter_damage_not_visible
[21:13:38] ================ [PASSED] drm_damage_helper ================
[21:13:38] ============== drm_dp_mst_helper (3 subtests) ==============
[21:13:38] ============== drm_test_dp_mst_calc_pbn_mode ==============
[21:13:38] [PASSED] Clock 154000 BPP 30 DSC disabled
[21:13:38] [PASSED] Clock 234000 BPP 30 DSC disabled
[21:13:38] [PASSED] Clock 297000 BPP 24 DSC disabled
[21:13:38] [PASSED] Clock 332880 BPP 24 DSC enabled
[21:13:38] [PASSED] Clock 324540 BPP 24 DSC enabled
[21:13:38] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[21:13:38] ============== drm_test_dp_mst_calc_pbn_div ===============
[21:13:38] [PASSED] Link rate 2000000 lane count 4
[21:13:38] [PASSED] Link rate 2000000 lane count 2
[21:13:38] [PASSED] Link rate 2000000 lane count 1
[21:13:38] [PASSED] Link rate 1350000 lane count 4
[21:13:38] [PASSED] Link rate 1350000 lane count 2
[21:13:38] [PASSED] Link rate 1350000 lane count 1
[21:13:38] [PASSED] Link rate 1000000 lane count 4
[21:13:38] [PASSED] Link rate 1000000 lane count 2
[21:13:38] [PASSED] Link rate 1000000 lane count 1
[21:13:38] [PASSED] Link rate 810000 lane count 4
[21:13:38] [PASSED] Link rate 810000 lane count 2
[21:13:38] [PASSED] Link rate 810000 lane count 1
[21:13:38] [PASSED] Link rate 540000 lane count 4
[21:13:38] [PASSED] Link rate 540000 lane count 2
[21:13:38] [PASSED] Link rate 540000 lane count 1
[21:13:38] [PASSED] Link rate 270000 lane count 4
[21:13:38] [PASSED] Link rate 270000 lane count 2
[21:13:38] [PASSED] Link rate 270000 lane count 1
[21:13:38] [PASSED] Link rate 162000 lane count 4
[21:13:38] [PASSED] Link rate 162000 lane count 2
[21:13:38] [PASSED] Link rate 162000 lane count 1
[21:13:38] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[21:13:38] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[21:13:38] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[21:13:38] [PASSED] DP_POWER_UP_PHY with port number
[21:13:38] [PASSED] DP_POWER_DOWN_PHY with port number
[21:13:38] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[21:13:38] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[21:13:38] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[21:13:38] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[21:13:38] [PASSED] DP_QUERY_PAYLOAD with port number
[21:13:38] [PASSED] DP_QUERY_PAYLOAD with VCPI
[21:13:38] [PASSED] DP_REMOTE_DPCD_READ with port number
[21:13:38] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[21:13:38] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[21:13:38] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[21:13:38] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[21:13:38] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[21:13:38] [PASSED] DP_REMOTE_I2C_READ with port number
[21:13:38] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[21:13:38] [PASSED] DP_REMOTE_I2C_READ with transactions array
[21:13:38] [PASSED] DP_REMOTE_I2C_WRITE with port number
[21:13:38] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[21:13:38] [PASSED] DP_REMOTE_I2C_WRITE with data array
[21:13:38] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[21:13:38] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[21:13:38] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[21:13:38] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[21:13:38] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[21:13:38] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[21:13:38] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[21:13:38] ================ [PASSED] drm_dp_mst_helper ================
[21:13:38] ================== drm_exec (7 subtests) ===================
[21:13:38] [PASSED] sanitycheck
[21:13:38] [PASSED] test_lock
[21:13:38] [PASSED] test_lock_unlock
[21:13:38] [PASSED] test_duplicates
[21:13:38] [PASSED] test_prepare
[21:13:38] [PASSED] test_prepare_array
[21:13:38] [PASSED] test_multiple_loops
[21:13:38] ==================== [PASSED] drm_exec =====================
[21:13:38] =========== drm_format_helper_test (17 subtests) ===========
[21:13:38] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[21:13:38] [PASSED] single_pixel_source_buffer
[21:13:38] [PASSED] single_pixel_clip_rectangle
[21:13:38] [PASSED] well_known_colors
[21:13:38] [PASSED] destination_pitch
[21:13:38] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[21:13:38] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[21:13:38] [PASSED] single_pixel_source_buffer
[21:13:38] [PASSED] single_pixel_clip_rectangle
[21:13:38] [PASSED] well_known_colors
[21:13:38] [PASSED] destination_pitch
[21:13:38] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[21:13:38] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[21:13:38] [PASSED] single_pixel_source_buffer
[21:13:38] [PASSED] single_pixel_clip_rectangle
[21:13:38] [PASSED] well_known_colors
[21:13:38] [PASSED] destination_pitch
[21:13:38] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[21:13:38] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[21:13:38] [PASSED] single_pixel_source_buffer
[21:13:38] [PASSED] single_pixel_clip_rectangle
[21:13:38] [PASSED] well_known_colors
[21:13:38] [PASSED] destination_pitch
[21:13:38] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[21:13:38] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[21:13:38] [PASSED] single_pixel_source_buffer
[21:13:38] [PASSED] single_pixel_clip_rectangle
[21:13:38] [PASSED] well_known_colors
[21:13:38] [PASSED] destination_pitch
[21:13:38] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[21:13:38] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[21:13:38] [PASSED] single_pixel_source_buffer
[21:13:38] [PASSED] single_pixel_clip_rectangle
[21:13:38] [PASSED] well_known_colors
[21:13:38] [PASSED] destination_pitch
[21:13:38] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[21:13:38] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[21:13:38] [PASSED] single_pixel_source_buffer
[21:13:38] [PASSED] single_pixel_clip_rectangle
[21:13:38] [PASSED] well_known_colors
[21:13:38] [PASSED] destination_pitch
[21:13:38] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[21:13:38] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[21:13:38] [PASSED] single_pixel_source_buffer
[21:13:38] [PASSED] single_pixel_clip_rectangle
[21:13:38] [PASSED] well_known_colors
[21:13:38] [PASSED] destination_pitch
[21:13:38] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[21:13:38] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[21:13:38] [PASSED] single_pixel_source_buffer
[21:13:38] [PASSED] single_pixel_clip_rectangle
[21:13:38] [PASSED] well_known_colors
[21:13:38] [PASSED] destination_pitch
[21:13:38] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[21:13:38] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[21:13:38] [PASSED] single_pixel_source_buffer
[21:13:38] [PASSED] single_pixel_clip_rectangle
[21:13:38] [PASSED] well_known_colors
[21:13:38] [PASSED] destination_pitch
[21:13:38] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[21:13:38] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[21:13:38] [PASSED] single_pixel_source_buffer
[21:13:38] [PASSED] single_pixel_clip_rectangle
[21:13:38] [PASSED] well_known_colors
[21:13:38] [PASSED] destination_pitch
[21:13:38] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[21:13:38] ============== drm_test_fb_xrgb8888_to_mono ===============
[21:13:38] [PASSED] single_pixel_source_buffer
[21:13:38] [PASSED] single_pixel_clip_rectangle
[21:13:38] [PASSED] well_known_colors
[21:13:38] [PASSED] destination_pitch
[21:13:38] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[21:13:38] ==================== drm_test_fb_swab =====================
[21:13:38] [PASSED] single_pixel_source_buffer
[21:13:38] [PASSED] single_pixel_clip_rectangle
[21:13:38] [PASSED] well_known_colors
[21:13:38] [PASSED] destination_pitch
[21:13:38] ================ [PASSED] drm_test_fb_swab =================
[21:13:38] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[21:13:38] [PASSED] single_pixel_source_buffer
[21:13:38] [PASSED] single_pixel_clip_rectangle
[21:13:38] [PASSED] well_known_colors
[21:13:38] [PASSED] destination_pitch
[21:13:38] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[21:13:38] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[21:13:38] [PASSED] single_pixel_source_buffer
[21:13:38] [PASSED] single_pixel_clip_rectangle
[21:13:38] [PASSED] well_known_colors
[21:13:38] [PASSED] destination_pitch
[21:13:38] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[21:13:38] ================= drm_test_fb_clip_offset =================
[21:13:38] [PASSED] pass through
[21:13:38] [PASSED] horizontal offset
[21:13:38] [PASSED] vertical offset
[21:13:38] [PASSED] horizontal and vertical offset
[21:13:38] [PASSED] horizontal offset (custom pitch)
[21:13:38] [PASSED] vertical offset (custom pitch)
[21:13:38] [PASSED] horizontal and vertical offset (custom pitch)
[21:13:38] ============= [PASSED] drm_test_fb_clip_offset =============
[21:13:38] =================== drm_test_fb_memcpy ====================
[21:13:38] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[21:13:38] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[21:13:38] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[21:13:38] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[21:13:38] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[21:13:38] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[21:13:38] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[21:13:38] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[21:13:38] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[21:13:38] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[21:13:38] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[21:13:38] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[21:13:38] =============== [PASSED] drm_test_fb_memcpy ================
[21:13:38] ============= [PASSED] drm_format_helper_test ==============
[21:13:38] ================= drm_format (18 subtests) =================
[21:13:38] [PASSED] drm_test_format_block_width_invalid
[21:13:38] [PASSED] drm_test_format_block_width_one_plane
[21:13:38] [PASSED] drm_test_format_block_width_two_plane
[21:13:38] [PASSED] drm_test_format_block_width_three_plane
[21:13:38] [PASSED] drm_test_format_block_width_tiled
[21:13:38] [PASSED] drm_test_format_block_height_invalid
[21:13:38] [PASSED] drm_test_format_block_height_one_plane
[21:13:38] [PASSED] drm_test_format_block_height_two_plane
[21:13:38] [PASSED] drm_test_format_block_height_three_plane
[21:13:38] [PASSED] drm_test_format_block_height_tiled
[21:13:38] [PASSED] drm_test_format_min_pitch_invalid
[21:13:38] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[21:13:38] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[21:13:38] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[21:13:38] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[21:13:38] [PASSED] drm_test_format_min_pitch_two_plane
[21:13:38] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[21:13:38] [PASSED] drm_test_format_min_pitch_tiled
[21:13:38] =================== [PASSED] drm_format ====================
[21:13:38] ============== drm_framebuffer (10 subtests) ===============
[21:13:38] ========== drm_test_framebuffer_check_src_coords ==========
[21:13:38] [PASSED] Success: source fits into fb
[21:13:38] [PASSED] Fail: overflowing fb with x-axis coordinate
[21:13:38] [PASSED] Fail: overflowing fb with y-axis coordinate
[21:13:38] [PASSED] Fail: overflowing fb with source width
[21:13:38] [PASSED] Fail: overflowing fb with source height
[21:13:38] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[21:13:38] [PASSED] drm_test_framebuffer_cleanup
[21:13:38] =============== drm_test_framebuffer_create ===============
[21:13:38] [PASSED] ABGR8888 normal sizes
[21:13:38] [PASSED] ABGR8888 max sizes
[21:13:38] [PASSED] ABGR8888 pitch greater than min required
[21:13:38] [PASSED] ABGR8888 pitch less than min required
[21:13:38] [PASSED] ABGR8888 Invalid width
[21:13:38] [PASSED] ABGR8888 Invalid buffer handle
[21:13:38] [PASSED] No pixel format
[21:13:38] [PASSED] ABGR8888 Width 0
[21:13:38] [PASSED] ABGR8888 Height 0
[21:13:38] [PASSED] ABGR8888 Out of bound height * pitch combination
[21:13:38] [PASSED] ABGR8888 Large buffer offset
[21:13:38] [PASSED] ABGR8888 Buffer offset for inexistent plane
[21:13:38] [PASSED] ABGR8888 Invalid flag
[21:13:38] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[21:13:38] [PASSED] ABGR8888 Valid buffer modifier
[21:13:38] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[21:13:38] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[21:13:38] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[21:13:38] [PASSED] NV12 Normal sizes
[21:13:38] [PASSED] NV12 Max sizes
[21:13:38] [PASSED] NV12 Invalid pitch
[21:13:38] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[21:13:38] [PASSED] NV12 different modifier per-plane
[21:13:38] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[21:13:38] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[21:13:38] [PASSED] NV12 Modifier for inexistent plane
[21:13:38] [PASSED] NV12 Handle for inexistent plane
[21:13:38] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[21:13:38] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[21:13:38] [PASSED] YVU420 Normal sizes
[21:13:38] [PASSED] YVU420 Max sizes
[21:13:38] [PASSED] YVU420 Invalid pitch
[21:13:38] [PASSED] YVU420 Different pitches
[21:13:38] [PASSED] YVU420 Different buffer offsets/pitches
[21:13:38] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[21:13:38] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[21:13:38] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[21:13:38] [PASSED] YVU420 Valid modifier
[21:13:38] [PASSED] YVU420 Different modifiers per plane
[21:13:38] [PASSED] YVU420 Modifier for inexistent plane
[21:13:38] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[21:13:38] [PASSED] X0L2 Normal sizes
[21:13:38] [PASSED] X0L2 Max sizes
[21:13:38] [PASSED] X0L2 Invalid pitch
[21:13:38] [PASSED] X0L2 Pitch greater than minimum required
[21:13:38] [PASSED] X0L2 Handle for inexistent plane
[21:13:38] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[21:13:38] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[21:13:38] [PASSED] X0L2 Valid modifier
[21:13:38] [PASSED] X0L2 Modifier for inexistent plane
[21:13:38] =========== [PASSED] drm_test_framebuffer_create ===========
[21:13:38] [PASSED] drm_test_framebuffer_free
[21:13:38] [PASSED] drm_test_framebuffer_init
[21:13:38] [PASSED] drm_test_framebuffer_init_bad_format
[21:13:38] [PASSED] drm_test_framebuffer_init_dev_mismatch
[21:13:38] [PASSED] drm_test_framebuffer_lookup
[21:13:38] [PASSED] drm_test_framebuffer_lookup_inexistent
[21:13:38] [PASSED] drm_test_framebuffer_modifiers_not_supported
[21:13:38] ================= [PASSED] drm_framebuffer =================
[21:13:38] ================ drm_gem_shmem (8 subtests) ================
[21:13:38] [PASSED] drm_gem_shmem_test_obj_create
[21:13:38] [PASSED] drm_gem_shmem_test_obj_create_private
[21:13:38] [PASSED] drm_gem_shmem_test_pin_pages
[21:13:38] [PASSED] drm_gem_shmem_test_vmap
[21:13:38] [PASSED] drm_gem_shmem_test_get_sg_table
[21:13:38] [PASSED] drm_gem_shmem_test_get_pages_sgt
[21:13:38] [PASSED] drm_gem_shmem_test_madvise
[21:13:38] [PASSED] drm_gem_shmem_test_purge
[21:13:38] ================== [PASSED] drm_gem_shmem ==================
[21:13:38] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[21:13:38] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[21:13:38] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[21:13:38] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[21:13:38] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[21:13:38] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[21:13:38] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[21:13:38] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[21:13:38] [PASSED] Automatic
[21:13:38] [PASSED] Full
[21:13:38] [PASSED] Limited 16:235
[21:13:38] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[21:13:38] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[21:13:38] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[21:13:38] [PASSED] drm_test_check_disable_connector
[21:13:38] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[21:13:38] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[21:13:38] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[21:13:38] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[21:13:38] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[21:13:38] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[21:13:38] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[21:13:38] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[21:13:38] [PASSED] drm_test_check_output_bpc_dvi
[21:13:38] [PASSED] drm_test_check_output_bpc_format_vic_1
[21:13:38] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[21:13:38] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[21:13:38] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[21:13:38] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[21:13:38] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[21:13:38] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[21:13:38] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[21:13:38] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[21:13:38] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[21:13:38] [PASSED] drm_test_check_broadcast_rgb_value
[21:13:38] [PASSED] drm_test_check_bpc_8_value
[21:13:38] [PASSED] drm_test_check_bpc_10_value
[21:13:38] [PASSED] drm_test_check_bpc_12_value
[21:13:38] [PASSED] drm_test_check_format_value
[21:13:38] [PASSED] drm_test_check_tmds_char_value
[21:13:38] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[21:13:38] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[21:13:38] [PASSED] drm_test_check_mode_valid
[21:13:38] [PASSED] drm_test_check_mode_valid_reject
[21:13:38] [PASSED] drm_test_check_mode_valid_reject_rate
[21:13:38] [PASSED] drm_test_check_mode_valid_reject_max_clock
[21:13:38] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[21:13:38] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[21:13:38] [PASSED] drm_test_check_infoframes
[21:13:38] [PASSED] drm_test_check_reject_avi_infoframe
[21:13:38] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[21:13:38] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[21:13:38] [PASSED] drm_test_check_reject_audio_infoframe
[21:13:38] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[21:13:38] ================= drm_managed (2 subtests) =================
[21:13:38] [PASSED] drm_test_managed_release_action
[21:13:38] [PASSED] drm_test_managed_run_action
[21:13:38] =================== [PASSED] drm_managed ===================
[21:13:38] =================== drm_mm (6 subtests) ====================
[21:13:38] [PASSED] drm_test_mm_init
[21:13:38] [PASSED] drm_test_mm_debug
[21:13:38] [PASSED] drm_test_mm_align32
[21:13:38] [PASSED] drm_test_mm_align64
[21:13:38] [PASSED] drm_test_mm_lowest
[21:13:38] [PASSED] drm_test_mm_highest
[21:13:38] ===================== [PASSED] drm_mm ======================
[21:13:38] ============= drm_modes_analog_tv (5 subtests) =============
[21:13:38] [PASSED] drm_test_modes_analog_tv_mono_576i
[21:13:38] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[21:13:38] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[21:13:38] [PASSED] drm_test_modes_analog_tv_pal_576i
[21:13:38] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[21:13:38] =============== [PASSED] drm_modes_analog_tv ===============
[21:13:38] ============== drm_plane_helper (2 subtests) ===============
[21:13:38] =============== drm_test_check_plane_state ================
[21:13:38] [PASSED] clipping_simple
[21:13:38] [PASSED] clipping_rotate_reflect
[21:13:38] [PASSED] positioning_simple
[21:13:38] [PASSED] upscaling
[21:13:38] [PASSED] downscaling
[21:13:38] [PASSED] rounding1
[21:13:38] [PASSED] rounding2
[21:13:38] [PASSED] rounding3
[21:13:38] [PASSED] rounding4
[21:13:38] =========== [PASSED] drm_test_check_plane_state ============
[21:13:38] =========== drm_test_check_invalid_plane_state ============
[21:13:38] [PASSED] positioning_invalid
[21:13:38] [PASSED] upscaling_invalid
[21:13:38] [PASSED] downscaling_invalid
[21:13:38] ======= [PASSED] drm_test_check_invalid_plane_state ========
[21:13:38] ================ [PASSED] drm_plane_helper =================
[21:13:38] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[21:13:38] ====== drm_test_connector_helper_tv_get_modes_check =======
[21:13:38] [PASSED] None
[21:13:38] [PASSED] PAL
[21:13:38] [PASSED] NTSC
[21:13:38] [PASSED] Both, NTSC Default
[21:13:38] [PASSED] Both, PAL Default
[21:13:38] [PASSED] Both, NTSC Default, with PAL on command-line
[21:13:38] [PASSED] Both, PAL Default, with NTSC on command-line
[21:13:38] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[21:13:38] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[21:13:38] ================== drm_rect (9 subtests) ===================
[21:13:38] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[21:13:38] [PASSED] drm_test_rect_clip_scaled_not_clipped
[21:13:38] [PASSED] drm_test_rect_clip_scaled_clipped
[21:13:38] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[21:13:38] ================= drm_test_rect_intersect =================
[21:13:38] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[21:13:38] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[21:13:38] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[21:13:38] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[21:13:38] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[21:13:38] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[21:13:38] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[21:13:38] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[21:13:38] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[21:13:38] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[21:13:38] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[21:13:38] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[21:13:38] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[21:13:38] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[21:13:38] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
stty: 'standard input': Inappropriate ioctl for device
[21:13:38] ============= [PASSED] drm_test_rect_intersect =============
[21:13:38] ================ drm_test_rect_calc_hscale ================
[21:13:38] [PASSED] normal use
[21:13:38] [PASSED] out of max range
[21:13:38] [PASSED] out of min range
[21:13:38] [PASSED] zero dst
[21:13:38] [PASSED] negative src
[21:13:38] [PASSED] negative dst
[21:13:38] ============ [PASSED] drm_test_rect_calc_hscale ============
[21:13:38] ================ drm_test_rect_calc_vscale ================
[21:13:38] [PASSED] normal use
[21:13:38] [PASSED] out of max range
[21:13:38] [PASSED] out of min range
[21:13:38] [PASSED] zero dst
[21:13:38] [PASSED] negative src
[21:13:38] [PASSED] negative dst
[21:13:38] ============ [PASSED] drm_test_rect_calc_vscale ============
[21:13:38] ================== drm_test_rect_rotate ===================
[21:13:38] [PASSED] reflect-x
[21:13:38] [PASSED] reflect-y
[21:13:38] [PASSED] rotate-0
[21:13:38] [PASSED] rotate-90
[21:13:38] [PASSED] rotate-180
[21:13:38] [PASSED] rotate-270
[21:13:38] ============== [PASSED] drm_test_rect_rotate ===============
[21:13:38] ================ drm_test_rect_rotate_inv =================
[21:13:38] [PASSED] reflect-x
[21:13:38] [PASSED] reflect-y
[21:13:38] [PASSED] rotate-0
[21:13:38] [PASSED] rotate-90
[21:13:38] [PASSED] rotate-180
[21:13:38] [PASSED] rotate-270
[21:13:38] ============ [PASSED] drm_test_rect_rotate_inv =============
[21:13:38] ==================== [PASSED] drm_rect =====================
[21:13:38] ============ drm_sysfb_modeset_test (1 subtest) ============
[21:13:38] ============ drm_test_sysfb_build_fourcc_list =============
[21:13:38] [PASSED] no native formats
[21:13:38] [PASSED] XRGB8888 as native format
[21:13:38] [PASSED] remove duplicates
[21:13:38] [PASSED] convert alpha formats
[21:13:38] [PASSED] random formats
[21:13:38] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[21:13:38] ============= [PASSED] drm_sysfb_modeset_test ==============
[21:13:38] ================== drm_fixp (2 subtests) ===================
[21:13:38] [PASSED] drm_test_int2fixp
[21:13:38] [PASSED] drm_test_sm2fixp
[21:13:38] ==================== [PASSED] drm_fixp =====================
[21:13:38] ============================================================
[21:13:38] Testing complete. Ran 630 tests: passed: 630
[21:13:38] Elapsed time: 27.557s total, 1.673s configuring, 25.467s building, 0.364s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[21:13:38] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:13:40] 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
[21:13:49] Starting KUnit Kernel (1/1)...
[21:13:49] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:13:49] ================= ttm_device (5 subtests) ==================
[21:13:49] [PASSED] ttm_device_init_basic
[21:13:49] [PASSED] ttm_device_init_multiple
[21:13:49] [PASSED] ttm_device_fini_basic
[21:13:49] [PASSED] ttm_device_init_no_vma_man
[21:13:49] ================== ttm_device_init_pools ==================
[21:13:49] [PASSED] No DMA allocations, no DMA32 required
[21:13:49] [PASSED] DMA allocations, DMA32 required
[21:13:49] [PASSED] No DMA allocations, DMA32 required
[21:13:49] [PASSED] DMA allocations, no DMA32 required
[21:13:49] ============== [PASSED] ttm_device_init_pools ==============
[21:13:49] =================== [PASSED] ttm_device ====================
[21:13:49] ================== ttm_pool (8 subtests) ===================
[21:13:49] ================== ttm_pool_alloc_basic ===================
[21:13:49] [PASSED] One page
[21:13:49] [PASSED] More than one page
[21:13:49] [PASSED] Above the allocation limit
[21:13:49] [PASSED] One page, with coherent DMA mappings enabled
[21:13:49] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[21:13:49] ============== [PASSED] ttm_pool_alloc_basic ===============
[21:13:49] ============== ttm_pool_alloc_basic_dma_addr ==============
[21:13:49] [PASSED] One page
[21:13:49] [PASSED] More than one page
[21:13:49] [PASSED] Above the allocation limit
[21:13:49] [PASSED] One page, with coherent DMA mappings enabled
[21:13:49] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[21:13:49] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[21:13:49] [PASSED] ttm_pool_alloc_order_caching_match
[21:13:49] [PASSED] ttm_pool_alloc_caching_mismatch
[21:13:49] [PASSED] ttm_pool_alloc_order_mismatch
[21:13:49] [PASSED] ttm_pool_free_dma_alloc
[21:13:49] [PASSED] ttm_pool_free_no_dma_alloc
[21:13:49] [PASSED] ttm_pool_fini_basic
[21:13:49] ==================== [PASSED] ttm_pool =====================
[21:13:49] ================ ttm_resource (8 subtests) =================
[21:13:49] ================= ttm_resource_init_basic =================
[21:13:49] [PASSED] Init resource in TTM_PL_SYSTEM
[21:13:49] [PASSED] Init resource in TTM_PL_VRAM
[21:13:49] [PASSED] Init resource in a private placement
[21:13:49] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[21:13:49] ============= [PASSED] ttm_resource_init_basic =============
[21:13:49] [PASSED] ttm_resource_init_pinned
[21:13:49] [PASSED] ttm_resource_fini_basic
[21:13:49] [PASSED] ttm_resource_manager_init_basic
[21:13:49] [PASSED] ttm_resource_manager_usage_basic
[21:13:49] [PASSED] ttm_resource_manager_set_used_basic
[21:13:49] [PASSED] ttm_sys_man_alloc_basic
[21:13:49] [PASSED] ttm_sys_man_free_basic
[21:13:49] ================== [PASSED] ttm_resource ===================
[21:13:49] =================== ttm_tt (15 subtests) ===================
[21:13:49] ==================== ttm_tt_init_basic ====================
[21:13:49] [PASSED] Page-aligned size
[21:13:49] [PASSED] Extra pages requested
[21:13:49] ================ [PASSED] ttm_tt_init_basic ================
[21:13:49] [PASSED] ttm_tt_init_misaligned
[21:13:49] [PASSED] ttm_tt_fini_basic
[21:13:49] [PASSED] ttm_tt_fini_sg
[21:13:49] [PASSED] ttm_tt_fini_shmem
[21:13:49] [PASSED] ttm_tt_create_basic
[21:13:49] [PASSED] ttm_tt_create_invalid_bo_type
[21:13:49] [PASSED] ttm_tt_create_ttm_exists
[21:13:49] [PASSED] ttm_tt_create_failed
[21:13:49] [PASSED] ttm_tt_destroy_basic
[21:13:49] [PASSED] ttm_tt_populate_null_ttm
[21:13:49] [PASSED] ttm_tt_populate_populated_ttm
[21:13:49] [PASSED] ttm_tt_unpopulate_basic
[21:13:49] [PASSED] ttm_tt_unpopulate_empty_ttm
[21:13:49] [PASSED] ttm_tt_swapin_basic
[21:13:49] ===================== [PASSED] ttm_tt ======================
[21:13:49] =================== ttm_bo (14 subtests) ===================
[21:13:49] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[21:13:49] [PASSED] Cannot be interrupted and sleeps
[21:13:49] [PASSED] Cannot be interrupted, locks straight away
[21:13:49] [PASSED] Can be interrupted, sleeps
[21:13:49] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[21:13:49] [PASSED] ttm_bo_reserve_locked_no_sleep
[21:13:49] [PASSED] ttm_bo_reserve_no_wait_ticket
[21:13:49] [PASSED] ttm_bo_reserve_double_resv
[21:13:49] [PASSED] ttm_bo_reserve_interrupted
[21:13:49] [PASSED] ttm_bo_reserve_deadlock
[21:13:49] [PASSED] ttm_bo_unreserve_basic
[21:13:49] [PASSED] ttm_bo_unreserve_pinned
[21:13:49] [PASSED] ttm_bo_unreserve_bulk
[21:13:49] [PASSED] ttm_bo_fini_basic
[21:13:49] [PASSED] ttm_bo_fini_shared_resv
[21:13:49] [PASSED] ttm_bo_pin_basic
[21:13:49] [PASSED] ttm_bo_pin_unpin_resource
[21:13:49] [PASSED] ttm_bo_multiple_pin_one_unpin
[21:13:49] ===================== [PASSED] ttm_bo ======================
[21:13:49] ============== ttm_bo_validate (21 subtests) ===============
[21:13:49] ============== ttm_bo_init_reserved_sys_man ===============
[21:13:49] [PASSED] Buffer object for userspace
[21:13:49] [PASSED] Kernel buffer object
[21:13:49] [PASSED] Shared buffer object
[21:13:49] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[21:13:49] ============== ttm_bo_init_reserved_mock_man ==============
[21:13:49] [PASSED] Buffer object for userspace
[21:13:49] [PASSED] Kernel buffer object
[21:13:49] [PASSED] Shared buffer object
[21:13:49] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[21:13:49] [PASSED] ttm_bo_init_reserved_resv
[21:13:49] ================== ttm_bo_validate_basic ==================
[21:13:49] [PASSED] Buffer object for userspace
[21:13:49] [PASSED] Kernel buffer object
[21:13:49] [PASSED] Shared buffer object
[21:13:49] ============== [PASSED] ttm_bo_validate_basic ==============
[21:13:49] [PASSED] ttm_bo_validate_invalid_placement
[21:13:49] ============= ttm_bo_validate_same_placement ==============
[21:13:49] [PASSED] System manager
[21:13:49] [PASSED] VRAM manager
[21:13:49] ========= [PASSED] ttm_bo_validate_same_placement ==========
[21:13:49] [PASSED] ttm_bo_validate_failed_alloc
[21:13:49] [PASSED] ttm_bo_validate_pinned
[21:13:49] [PASSED] ttm_bo_validate_busy_placement
[21:13:49] ================ ttm_bo_validate_multihop =================
[21:13:49] [PASSED] Buffer object for userspace
[21:13:49] [PASSED] Kernel buffer object
[21:13:49] [PASSED] Shared buffer object
[21:13:49] ============ [PASSED] ttm_bo_validate_multihop =============
[21:13:49] ========== ttm_bo_validate_no_placement_signaled ==========
[21:13:49] [PASSED] Buffer object in system domain, no page vector
[21:13:49] [PASSED] Buffer object in system domain with an existing page vector
[21:13:49] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[21:13:49] ======== ttm_bo_validate_no_placement_not_signaled ========
[21:13:49] [PASSED] Buffer object for userspace
[21:13:49] [PASSED] Kernel buffer object
[21:13:49] [PASSED] Shared buffer object
[21:13:49] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[21:13:49] [PASSED] ttm_bo_validate_move_fence_signaled
[21:13:49] ========= ttm_bo_validate_move_fence_not_signaled =========
[21:13:49] [PASSED] Waits for GPU
[21:13:49] [PASSED] Tries to lock straight away
[21:13:49] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[21:13:49] [PASSED] ttm_bo_validate_happy_evict
[21:13:49] [PASSED] ttm_bo_validate_all_pinned_evict
[21:13:49] [PASSED] ttm_bo_validate_allowed_only_evict
[21:13:49] [PASSED] ttm_bo_validate_deleted_evict
[21:13:49] [PASSED] ttm_bo_validate_busy_domain_evict
[21:13:49] [PASSED] ttm_bo_validate_evict_gutting
[21:13:49] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[21:13:49] ================= [PASSED] ttm_bo_validate =================
[21:13:49] ============================================================
[21:13:49] Testing complete. Ran 101 tests: passed: 101
[21:13:49] Elapsed time: 11.589s total, 1.680s configuring, 9.692s building, 0.174s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 48+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev5)
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (13 preceding siblings ...)
2026-02-04 21:13 ` ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev5) Patchwork
@ 2026-02-04 21:47 ` Patchwork
2026-02-05 10:35 ` ✗ Xe.CI.FULL: failure " Patchwork
` (12 subsequent siblings)
27 siblings, 0 replies; 48+ messages in thread
From: Patchwork @ 2026-02-04 21:47 UTC (permalink / raw)
To: Yao, Jia; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1441 bytes --]
== Series Details ==
Series: drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev5)
URL : https://patchwork.freedesktop.org/series/160797/
State : success
== Summary ==
CI Bug Log - changes from xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be_BAT -> xe-pw-160797v5_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-160797v5_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@xe_waitfence@reltime:
- bat-dg2-oem2: [FAIL][1] ([Intel XE#6520]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
Build changes
-------------
* Linux: xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be -> xe-pw-160797v5
IGT_8736: 8736
xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be: 689aea2d3dbe6d733e2267bb2f6b81156eba82be
xe-pw-160797v5: 160797v5
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/index.html
[-- Attachment #2: Type: text/html, Size: 2006 bytes --]
^ permalink raw reply [flat|nested] 48+ messages in thread
* ✗ Xe.CI.FULL: failure for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev5)
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (14 preceding siblings ...)
2026-02-04 21:47 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-02-05 10:35 ` Patchwork
2026-03-16 7:22 ` [PATCH v5 0/2] drm/xe: PAT index validation for CPU_ADDR_MIRROR and Jia Yao
` (11 subsequent siblings)
27 siblings, 0 replies; 48+ messages in thread
From: Patchwork @ 2026-02-05 10:35 UTC (permalink / raw)
To: Jia Yao; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 16274 bytes --]
== Series Details ==
Series: drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev5)
URL : https://patchwork.freedesktop.org/series/160797/
State : failure
== Summary ==
CI Bug Log - changes from xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be_FULL -> xe-pw-160797v5_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-160797v5_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-160797v5_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-160797v5_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
- shard-lnl: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma:
- shard-bmg: [PASS][3] -> [FAIL][4] +3 other tests fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-bmg-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-10/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma.html
* igt@xe_exec_system_allocator@process-many-execqueues-new:
- shard-bmg: [PASS][5] -> [ABORT][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-bmg-3/igt@xe_exec_system_allocator@process-many-execqueues-new.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-3/igt@xe_exec_system_allocator@process-many-execqueues-new.html
Known issues
------------
Here are the changes found in xe-pw-160797v5_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#6969]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-7/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-a-dp-2.html
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-dp-2:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#6969] / [Intel XE#7006])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-7/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-dp-2.html
* igt@kms_content_protection@legacy@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][9] ([Intel XE#1178] / [Intel XE#3304])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-7/igt@kms_content_protection@legacy@pipe-a-dp-2.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-bmg: [PASS][10] -> [SKIP][11] ([Intel XE#2291]) +3 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-bmg-9/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [PASS][12] -> [SKIP][13] ([Intel XE#2316]) +6 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-bmg-9/igt@kms_flip@2x-nonexisting-fb.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [PASS][14] -> [SKIP][15] ([Intel XE#1435])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-bmg-2/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [PASS][16] -> [SKIP][17] ([Intel XE#1499])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-bmg-9/igt@kms_vrr@negative-basic.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-5/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [PASS][18] -> [FAIL][19] ([Intel XE#2142]) +1 other test fail
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-lnl-6/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_exec_system_allocator@many-large-execqueues-malloc-multi-fault:
- shard-bmg: [PASS][20] -> [FAIL][21] ([Intel XE#5625]) +1 other test fail
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-bmg-2/igt@xe_exec_system_allocator@many-large-execqueues-malloc-multi-fault.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-3/igt@xe_exec_system_allocator@many-large-execqueues-malloc-multi-fault.html
* igt@xe_exec_system_allocator@threads-many-mmap-race:
- shard-bmg: [PASS][22] -> [ABORT][23] ([Intel XE#5545])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-mmap-race.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-3/igt@xe_exec_system_allocator@threads-many-mmap-race.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-bmg: [PASS][24] -> [DMESG-WARN][25] ([Intel XE#3428])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-bmg-4/igt@xe_pm@s3-d3hot-basic-exec.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-3/igt@xe_pm@s3-d3hot-basic-exec.html
#### Possible fixes ####
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-bmg: [SKIP][26] ([Intel XE#2291]) -> [PASS][27]
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_dp_aux_dev:
- shard-bmg: [SKIP][28] ([Intel XE#3009]) -> [PASS][29]
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-bmg-5/igt@kms_dp_aux_dev.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-7/igt@kms_dp_aux_dev.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-bmg: [SKIP][30] ([Intel XE#2316]) -> [PASS][31] +1 other test pass
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-bmg-5/igt@kms_flip@2x-wf_vblank-ts-check.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-7/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][32] ([Intel XE#301]) -> [PASS][33] +1 other test pass
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [FAIL][34] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][35] +1 other test pass
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-bmg: [DMESG-WARN][36] ([Intel XE#3428]) -> [PASS][37] +2 other tests pass
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-bmg-3/igt@xe_pmu@fn-engine-activity-load.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-3/igt@xe_pmu@fn-engine-activity-load.html
#### Warnings ####
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-bmg: [FAIL][38] ([Intel XE#3304]) -> [SKIP][39] ([Intel XE#7194])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-bmg-2/igt@kms_content_protection@atomic-dpms-hdcp14.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-5/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@legacy:
- shard-bmg: [SKIP][40] ([Intel XE#2341]) -> [FAIL][41] ([Intel XE#1178] / [Intel XE#3304])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-bmg-5/igt@kms_content_protection@legacy.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-7/igt@kms_content_protection@legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [FAIL][42] ([Intel XE#5299]) -> [FAIL][43] ([Intel XE#4633])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][44] ([Intel XE#2312]) -> [SKIP][45] ([Intel XE#2311]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][46] ([Intel XE#2311]) -> [SKIP][47] ([Intel XE#2312]) +10 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][48] ([Intel XE#4141]) -> [SKIP][49] ([Intel XE#2312]) +5 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][50] ([Intel XE#2312]) -> [SKIP][51] ([Intel XE#4141]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][52] ([Intel XE#2312]) -> [SKIP][53] ([Intel XE#2313]) +4 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][54] ([Intel XE#2313]) -> [SKIP][55] ([Intel XE#2312]) +10 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][56] ([Intel XE#1729]) -> [SKIP][57] ([Intel XE#2426])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969
[Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006
[Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194
Build changes
-------------
* Linux: xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be -> xe-pw-160797v5
IGT_8736: 8736
xe-4498-689aea2d3dbe6d733e2267bb2f6b81156eba82be: 689aea2d3dbe6d733e2267bb2f6b81156eba82be
xe-pw-160797v5: 160797v5
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v5/index.html
[-- Attachment #2: Type: text/html, Size: 18643 bytes --]
^ permalink raw reply [flat|nested] 48+ messages in thread
* RE: [PATCH v4] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise
2026-02-03 15:48 ` [PATCH v4] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
2026-02-03 16:38 ` Matthew Auld
@ 2026-03-10 14:50 ` Mrozek, Michal
1 sibling, 0 replies; 48+ messages in thread
From: Mrozek, Michal @ 2026-03-10 14:50 UTC (permalink / raw)
To: Yao, Jia, intel-xe@lists.freedesktop.org
Cc: stable@vger.kernel.org, Lin, Shuicheng, Mathew, Alwin,
Brost, Matthew, Auld, Matthew
Acked-by: Michal Mrozek <michal.mrozek@intel.com>
^ permalink raw reply [flat|nested] 48+ messages in thread
* [PATCH v5 0/2] drm/xe: PAT index validation for CPU_ADDR_MIRROR and
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (15 preceding siblings ...)
2026-02-05 10:35 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-03-16 7:22 ` Jia Yao
2026-03-16 7:22 ` [PATCH v5 1/2] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
2026-03-16 7:22 ` [PATCH v5 2/2] drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR Jia Yao
2026-03-16 7:29 ` ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev6) Patchwork
` (10 subsequent siblings)
27 siblings, 2 replies; 48+ messages in thread
From: Jia Yao @ 2026-03-16 7:22 UTC (permalink / raw)
To: intel-xe
Cc: Jia Yao, stable, Shuicheng Lin, Mathew Alwin, Michal Mrozek,
Matthew Brost, Matthew Auld
This patch series strengthens PAT index validation to reject unsafe
configurations for CPU cached memory, fixing a potential security issue
where GPU could bypass CPU caches and read stale sensitive data.
The first patch adds validation to the madvise ioctl path, rejecting
XE_COH_NONE PAT indices when applied to CPU cached buffers (including
CPU address mirror and userptr mappings).
The second patch extends this validation to the vm_bind ioctl path,
ensuring DRM_XE_VM_BIND_FLAG_CPU_ADDR_MIRROR is treated the same as
DRM_XE_VM_BIND_OP_MAP_USERPTR with respect to PAT index requirements.
Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
Cc: stable@vger.kernel.org # v6.18
Cc: Shuicheng Lin <shuicheng.lin@intel.com>
Cc: Mathew Alwin <alwin.mathew@intel.com>
Cc: Michal Mrozek <michal.mrozek@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Jia Yao (2):
drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in
madvise
drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR
drivers/gpu/drm/xe/xe_vm.c | 2 +-
drivers/gpu/drm/xe/xe_vm_madvise.c | 46 +++++++++++++++++++++++++++++-
2 files changed, 46 insertions(+), 2 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 48+ messages in thread
* [PATCH v5 1/2] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise
2026-03-16 7:22 ` [PATCH v5 0/2] drm/xe: PAT index validation for CPU_ADDR_MIRROR and Jia Yao
@ 2026-03-16 7:22 ` Jia Yao
2026-03-16 10:59 ` Matthew Auld
2026-03-16 7:22 ` [PATCH v5 2/2] drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR Jia Yao
1 sibling, 1 reply; 48+ messages in thread
From: Jia Yao @ 2026-03-16 7:22 UTC (permalink / raw)
To: intel-xe
Cc: Jia Yao, stable, Shuicheng Lin, Mathew Alwin, Michal Mrozek,
Matthew Brost, Matthew Auld, José Roberto de Souza
Add validation in xe_vm_madvise_ioctl() to reject PAT indices with
XE_COH_NONE coherency mode when applied to CPU cached memory.
Using coh_none with CPU cached buffers is a security issue. When the
kernel clears pages before reallocation, the clear operation stays in
CPU cache (dirty). GPU with coh_none can bypass CPU caches and read
stale sensitive data directly from DRAM, potentially leaking data from
previously freed pages of other processes.
This aligns with the existing validation in vm_bind path
(xe_vm_bind_ioctl_validate_bo).
v2(Matthew brost)
- Add fixes
- Move one debug print to better place
v3(Matthew Auld)
- Should be drm/xe/uapi
- More Cc
v4(Shuicheng Lin)
- Fix kmem leak issues by the way
v5
- Remove kmem leak because it has been merged by other patch
Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
Cc: stable@vger.kernel.org # v6.18
Cc: Shuicheng Lin <shuicheng.lin@intel.com>
Cc: Mathew Alwin <alwin.mathew@intel.com>
Cc: Michal Mrozek <michal.mrozek@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Jia Yao <jia.yao@intel.com>
Acked-by: Michal Mrozek <michal.mrozek@intel.com>
Acked-by: José Roberto de Souza <jose.souza@intel.com>
---
drivers/gpu/drm/xe/xe_vm_madvise.c | 46 +++++++++++++++++++++++++++++-
1 file changed, 45 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c b/drivers/gpu/drm/xe/xe_vm_madvise.c
index 869db304d96d..5d0acaad924c 100644
--- a/drivers/gpu/drm/xe/xe_vm_madvise.c
+++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
@@ -365,6 +365,43 @@ static void xe_madvise_details_fini(struct xe_madvise_details *details)
drm_pagemap_put(details->dpagemap);
}
+static bool check_pat_args_are_sane(struct xe_device *xe,
+ struct xe_vmas_in_madvise_range *madvise_range,
+ u16 pat_index)
+{
+ u16 coh_mode = xe_pat_index_get_coh_mode(xe, pat_index);
+ int i;
+
+ /*
+ * Using coh_none with CPU cached buffers is not allowed.
+ * Otherwise CPU page clearing can be bypassed, which is a
+ * security issue. GPU can directly access system memory and
+ * bypass CPU caches, potentially reading stale sensitive data
+ * from previously freed pages.
+ */
+ if (coh_mode != XE_COH_NONE)
+ return true;
+
+ for (i = 0; i < madvise_range->num_vmas; i++) {
+ struct xe_vma *vma = madvise_range->vmas[i];
+ struct xe_bo *bo = xe_vma_bo(vma);
+
+ if (bo) {
+ /* BO with WB caching + COH_NONE is not allowed */
+ if (XE_IOCTL_DBG(xe, bo->cpu_caching == DRM_XE_GEM_CPU_CACHING_WB))
+ return false;
+ /* Imported dma-buf without caching info, assume cached */
+ if (XE_IOCTL_DBG(xe, !bo->cpu_caching))
+ return false;
+ } else if (XE_IOCTL_DBG(xe, xe_vma_is_cpu_addr_mirror(vma) ||
+ xe_vma_is_userptr(vma)))
+ /* System memory (userptr/SVM) is always CPU cached */
+ return false;
+ }
+
+ return true;
+}
+
static bool check_bo_args_are_sane(struct xe_vm *vm, struct xe_vma **vmas,
int num_vmas, u32 atomic_val)
{
@@ -455,6 +492,14 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void *data, struct drm_file *fil
if (err || !madvise_range.num_vmas)
goto madv_fini;
+ if (args->type == DRM_XE_MEM_RANGE_ATTR_PAT) {
+ if (!check_pat_args_are_sane(xe, &madvise_range,
+ args->pat_index.val)) {
+ err = -EINVAL;
+ goto free_vmas;
+ }
+ }
+
if (madvise_range.has_bo_vmas) {
if (args->type == DRM_XE_MEM_RANGE_ATTR_ATOMIC) {
if (!check_bo_args_are_sane(vm, madvise_range.vmas,
@@ -500,7 +545,6 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void *data, struct drm_file *fil
drm_exec_fini(&exec);
free_vmas:
kfree(madvise_range.vmas);
- madvise_range.vmas = NULL;
madv_fini:
xe_madvise_details_fini(&details);
unlock_vm:
--
2.43.0
^ permalink raw reply related [flat|nested] 48+ messages in thread
* [PATCH v5 2/2] drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR
2026-03-16 7:22 ` [PATCH v5 0/2] drm/xe: PAT index validation for CPU_ADDR_MIRROR and Jia Yao
2026-03-16 7:22 ` [PATCH v5 1/2] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
@ 2026-03-16 7:22 ` Jia Yao
2026-03-16 11:40 ` Matthew Auld
1 sibling, 1 reply; 48+ messages in thread
From: Jia Yao @ 2026-03-16 7:22 UTC (permalink / raw)
To: intel-xe
Cc: Jia Yao, stable, Shuicheng Lin, Mathew Alwin, Michal Mrozek,
Matthew Brost, Matthew Auld
Add validation in xe_vm_bind_ioctl() to reject PAT indices with
XE_COH_NONE coherency mode when used with
DRM_XE_VM_BIND_FLAG_CPU_ADDR_MIRROR, consistent with the existing
validation for DRM_XE_VM_BIND_OP_MAP_USERPTR.
CPU address mirror mappings use system memory which is CPU cached,
making them incompatible with COH_NONE PAT index. Using COH_NONE with
CPU cached buffers is a security issue: GPU can bypass CPU caches and
directly read stale sensitive data from DRAM, potentially leaking data
from previously freed pages.
Although CPU_ADDR_MIRROR mappings don't create actual memory mappings
(the range is reserved for dynamic mapping on GPU page faults), the
underlying system memory is still CPU cached, so the same PAT coherency
restrictions as MAP_USERPTR should apply.
Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
Cc: stable@vger.kernel.org # v6.18
Cc: Shuicheng Lin <shuicheng.lin@intel.com>
Cc: Mathew Alwin <alwin.mathew@intel.com>
Cc: Michal Mrozek <michal.mrozek@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Jia Yao <jia.yao@intel.com>
---
drivers/gpu/drm/xe/xe_vm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 5572e12c2a7e..1c4b4a5eeadb 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -3491,7 +3491,7 @@ static int vm_bind_ioctl_check_args(struct xe_device *xe, struct xe_vm *vm,
XE_IOCTL_DBG(xe, obj &&
op == DRM_XE_VM_BIND_OP_MAP_USERPTR) ||
XE_IOCTL_DBG(xe, coh_mode == XE_COH_NONE &&
- op == DRM_XE_VM_BIND_OP_MAP_USERPTR) ||
+ (op == DRM_XE_VM_BIND_OP_MAP_USERPTR || is_cpu_addr_mirror)) ||
XE_IOCTL_DBG(xe, comp_en &&
op == DRM_XE_VM_BIND_OP_MAP_USERPTR) ||
XE_IOCTL_DBG(xe, op == DRM_XE_VM_BIND_OP_MAP_USERPTR &&
--
2.43.0
^ permalink raw reply related [flat|nested] 48+ messages in thread
* ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev6)
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (16 preceding siblings ...)
2026-03-16 7:22 ` [PATCH v5 0/2] drm/xe: PAT index validation for CPU_ADDR_MIRROR and Jia Yao
@ 2026-03-16 7:29 ` Patchwork
2026-03-16 8:18 ` ✓ Xe.CI.BAT: " Patchwork
` (9 subsequent siblings)
27 siblings, 0 replies; 48+ messages in thread
From: Patchwork @ 2026-03-16 7:29 UTC (permalink / raw)
To: Jia Yao; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev6)
URL : https://patchwork.freedesktop.org/series/160797/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[07:28:34] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:28:38] 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
[07:29:08] Starting KUnit Kernel (1/1)...
[07:29:08] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:29:09] ================== guc_buf (11 subtests) ===================
[07:29:09] [PASSED] test_smallest
[07:29:09] [PASSED] test_largest
[07:29:09] [PASSED] test_granular
[07:29:09] [PASSED] test_unique
[07:29:09] [PASSED] test_overlap
[07:29:09] [PASSED] test_reusable
[07:29:09] [PASSED] test_too_big
[07:29:09] [PASSED] test_flush
[07:29:09] [PASSED] test_lookup
[07:29:09] [PASSED] test_data
[07:29:09] [PASSED] test_class
[07:29:09] ===================== [PASSED] guc_buf =====================
[07:29:09] =================== guc_dbm (7 subtests) ===================
[07:29:09] [PASSED] test_empty
[07:29:09] [PASSED] test_default
[07:29:09] ======================== test_size ========================
[07:29:09] [PASSED] 4
[07:29:09] [PASSED] 8
[07:29:09] [PASSED] 32
[07:29:09] [PASSED] 256
[07:29:09] ==================== [PASSED] test_size ====================
[07:29:09] ======================= test_reuse ========================
[07:29:09] [PASSED] 4
[07:29:09] [PASSED] 8
[07:29:09] [PASSED] 32
[07:29:09] [PASSED] 256
[07:29:09] =================== [PASSED] test_reuse ====================
[07:29:09] =================== test_range_overlap ====================
[07:29:09] [PASSED] 4
[07:29:09] [PASSED] 8
[07:29:09] [PASSED] 32
[07:29:09] [PASSED] 256
[07:29:09] =============== [PASSED] test_range_overlap ================
[07:29:09] =================== test_range_compact ====================
[07:29:09] [PASSED] 4
[07:29:09] [PASSED] 8
[07:29:09] [PASSED] 32
[07:29:09] [PASSED] 256
[07:29:09] =============== [PASSED] test_range_compact ================
[07:29:09] ==================== test_range_spare =====================
[07:29:09] [PASSED] 4
[07:29:09] [PASSED] 8
[07:29:09] [PASSED] 32
[07:29:09] [PASSED] 256
[07:29:09] ================ [PASSED] test_range_spare =================
[07:29:09] ===================== [PASSED] guc_dbm =====================
[07:29:09] =================== guc_idm (6 subtests) ===================
[07:29:09] [PASSED] bad_init
[07:29:09] [PASSED] no_init
[07:29:09] [PASSED] init_fini
[07:29:09] [PASSED] check_used
[07:29:09] [PASSED] check_quota
[07:29:09] [PASSED] check_all
[07:29:09] ===================== [PASSED] guc_idm =====================
[07:29:09] ================== no_relay (3 subtests) ===================
[07:29:09] [PASSED] xe_drops_guc2pf_if_not_ready
[07:29:09] [PASSED] xe_drops_guc2vf_if_not_ready
[07:29:09] [PASSED] xe_rejects_send_if_not_ready
[07:29:09] ==================== [PASSED] no_relay =====================
[07:29:09] ================== pf_relay (14 subtests) ==================
[07:29:09] [PASSED] pf_rejects_guc2pf_too_short
[07:29:09] [PASSED] pf_rejects_guc2pf_too_long
[07:29:09] [PASSED] pf_rejects_guc2pf_no_payload
[07:29:09] [PASSED] pf_fails_no_payload
[07:29:09] [PASSED] pf_fails_bad_origin
[07:29:09] [PASSED] pf_fails_bad_type
[07:29:09] [PASSED] pf_txn_reports_error
[07:29:09] [PASSED] pf_txn_sends_pf2guc
[07:29:09] [PASSED] pf_sends_pf2guc
[07:29:09] [SKIPPED] pf_loopback_nop
[07:29:09] [SKIPPED] pf_loopback_echo
[07:29:09] [SKIPPED] pf_loopback_fail
[07:29:09] [SKIPPED] pf_loopback_busy
[07:29:09] [SKIPPED] pf_loopback_retry
[07:29:09] ==================== [PASSED] pf_relay =====================
[07:29:09] ================== vf_relay (3 subtests) ===================
[07:29:09] [PASSED] vf_rejects_guc2vf_too_short
[07:29:09] [PASSED] vf_rejects_guc2vf_too_long
[07:29:09] [PASSED] vf_rejects_guc2vf_no_payload
[07:29:09] ==================== [PASSED] vf_relay =====================
[07:29:09] ================ pf_gt_config (9 subtests) =================
[07:29:09] [PASSED] fair_contexts_1vf
[07:29:09] [PASSED] fair_doorbells_1vf
[07:29:09] [PASSED] fair_ggtt_1vf
[07:29:09] ====================== fair_vram_1vf ======================
[07:29:09] [PASSED] 3.50 GiB
[07:29:09] [PASSED] 11.5 GiB
[07:29:09] [PASSED] 15.5 GiB
[07:29:09] [PASSED] 31.5 GiB
[07:29:09] [PASSED] 63.5 GiB
[07:29:09] [PASSED] 1.91 GiB
[07:29:09] ================== [PASSED] fair_vram_1vf ==================
[07:29:09] ================ fair_vram_1vf_admin_only =================
[07:29:09] [PASSED] 3.50 GiB
[07:29:09] [PASSED] 11.5 GiB
[07:29:09] [PASSED] 15.5 GiB
[07:29:09] [PASSED] 31.5 GiB
[07:29:09] [PASSED] 63.5 GiB
[07:29:09] [PASSED] 1.91 GiB
[07:29:09] ============ [PASSED] fair_vram_1vf_admin_only =============
[07:29:09] ====================== fair_contexts ======================
[07:29:09] [PASSED] 1 VF
[07:29:09] [PASSED] 2 VFs
[07:29:09] [PASSED] 3 VFs
[07:29:09] [PASSED] 4 VFs
[07:29:09] [PASSED] 5 VFs
[07:29:09] [PASSED] 6 VFs
[07:29:09] [PASSED] 7 VFs
[07:29:09] [PASSED] 8 VFs
[07:29:09] [PASSED] 9 VFs
[07:29:09] [PASSED] 10 VFs
[07:29:09] [PASSED] 11 VFs
[07:29:09] [PASSED] 12 VFs
[07:29:09] [PASSED] 13 VFs
[07:29:09] [PASSED] 14 VFs
[07:29:09] [PASSED] 15 VFs
[07:29:09] [PASSED] 16 VFs
[07:29:09] [PASSED] 17 VFs
[07:29:09] [PASSED] 18 VFs
[07:29:09] [PASSED] 19 VFs
[07:29:09] [PASSED] 20 VFs
[07:29:09] [PASSED] 21 VFs
[07:29:09] [PASSED] 22 VFs
[07:29:09] [PASSED] 23 VFs
[07:29:09] [PASSED] 24 VFs
[07:29:09] [PASSED] 25 VFs
[07:29:09] [PASSED] 26 VFs
[07:29:09] [PASSED] 27 VFs
[07:29:09] [PASSED] 28 VFs
[07:29:09] [PASSED] 29 VFs
[07:29:09] [PASSED] 30 VFs
[07:29:09] [PASSED] 31 VFs
[07:29:09] [PASSED] 32 VFs
[07:29:09] [PASSED] 33 VFs
[07:29:09] [PASSED] 34 VFs
[07:29:09] [PASSED] 35 VFs
[07:29:09] [PASSED] 36 VFs
[07:29:09] [PASSED] 37 VFs
[07:29:09] [PASSED] 38 VFs
[07:29:09] [PASSED] 39 VFs
[07:29:09] [PASSED] 40 VFs
[07:29:09] [PASSED] 41 VFs
[07:29:09] [PASSED] 42 VFs
[07:29:09] [PASSED] 43 VFs
[07:29:09] [PASSED] 44 VFs
[07:29:09] [PASSED] 45 VFs
[07:29:09] [PASSED] 46 VFs
[07:29:09] [PASSED] 47 VFs
[07:29:09] [PASSED] 48 VFs
[07:29:09] [PASSED] 49 VFs
[07:29:09] [PASSED] 50 VFs
[07:29:09] [PASSED] 51 VFs
[07:29:09] [PASSED] 52 VFs
[07:29:09] [PASSED] 53 VFs
[07:29:09] [PASSED] 54 VFs
[07:29:09] [PASSED] 55 VFs
[07:29:09] [PASSED] 56 VFs
[07:29:09] [PASSED] 57 VFs
[07:29:09] [PASSED] 58 VFs
[07:29:09] [PASSED] 59 VFs
[07:29:09] [PASSED] 60 VFs
[07:29:09] [PASSED] 61 VFs
[07:29:09] [PASSED] 62 VFs
[07:29:09] [PASSED] 63 VFs
[07:29:09] ================== [PASSED] fair_contexts ==================
[07:29:09] ===================== fair_doorbells ======================
[07:29:09] [PASSED] 1 VF
[07:29:09] [PASSED] 2 VFs
[07:29:09] [PASSED] 3 VFs
[07:29:09] [PASSED] 4 VFs
[07:29:09] [PASSED] 5 VFs
[07:29:09] [PASSED] 6 VFs
[07:29:09] [PASSED] 7 VFs
[07:29:09] [PASSED] 8 VFs
[07:29:09] [PASSED] 9 VFs
[07:29:09] [PASSED] 10 VFs
[07:29:09] [PASSED] 11 VFs
[07:29:09] [PASSED] 12 VFs
[07:29:09] [PASSED] 13 VFs
[07:29:09] [PASSED] 14 VFs
[07:29:09] [PASSED] 15 VFs
[07:29:09] [PASSED] 16 VFs
[07:29:09] [PASSED] 17 VFs
[07:29:09] [PASSED] 18 VFs
[07:29:09] [PASSED] 19 VFs
[07:29:09] [PASSED] 20 VFs
[07:29:09] [PASSED] 21 VFs
[07:29:09] [PASSED] 22 VFs
[07:29:09] [PASSED] 23 VFs
[07:29:09] [PASSED] 24 VFs
[07:29:09] [PASSED] 25 VFs
[07:29:09] [PASSED] 26 VFs
[07:29:09] [PASSED] 27 VFs
[07:29:09] [PASSED] 28 VFs
[07:29:09] [PASSED] 29 VFs
[07:29:09] [PASSED] 30 VFs
[07:29:09] [PASSED] 31 VFs
[07:29:09] [PASSED] 32 VFs
[07:29:09] [PASSED] 33 VFs
[07:29:09] [PASSED] 34 VFs
[07:29:09] [PASSED] 35 VFs
[07:29:09] [PASSED] 36 VFs
[07:29:09] [PASSED] 37 VFs
[07:29:09] [PASSED] 38 VFs
[07:29:09] [PASSED] 39 VFs
[07:29:09] [PASSED] 40 VFs
[07:29:09] [PASSED] 41 VFs
[07:29:09] [PASSED] 42 VFs
[07:29:09] [PASSED] 43 VFs
[07:29:09] [PASSED] 44 VFs
[07:29:09] [PASSED] 45 VFs
[07:29:09] [PASSED] 46 VFs
[07:29:09] [PASSED] 47 VFs
[07:29:09] [PASSED] 48 VFs
[07:29:09] [PASSED] 49 VFs
[07:29:09] [PASSED] 50 VFs
[07:29:09] [PASSED] 51 VFs
[07:29:09] [PASSED] 52 VFs
[07:29:09] [PASSED] 53 VFs
[07:29:09] [PASSED] 54 VFs
[07:29:09] [PASSED] 55 VFs
[07:29:09] [PASSED] 56 VFs
[07:29:09] [PASSED] 57 VFs
[07:29:09] [PASSED] 58 VFs
[07:29:09] [PASSED] 59 VFs
[07:29:09] [PASSED] 60 VFs
[07:29:09] [PASSED] 61 VFs
[07:29:09] [PASSED] 62 VFs
[07:29:09] [PASSED] 63 VFs
[07:29:09] ================= [PASSED] fair_doorbells ==================
[07:29:09] ======================== fair_ggtt ========================
[07:29:09] [PASSED] 1 VF
[07:29:09] [PASSED] 2 VFs
[07:29:09] [PASSED] 3 VFs
[07:29:09] [PASSED] 4 VFs
[07:29:09] [PASSED] 5 VFs
[07:29:09] [PASSED] 6 VFs
[07:29:09] [PASSED] 7 VFs
[07:29:09] [PASSED] 8 VFs
[07:29:09] [PASSED] 9 VFs
[07:29:09] [PASSED] 10 VFs
[07:29:09] [PASSED] 11 VFs
[07:29:09] [PASSED] 12 VFs
[07:29:09] [PASSED] 13 VFs
[07:29:09] [PASSED] 14 VFs
[07:29:09] [PASSED] 15 VFs
[07:29:09] [PASSED] 16 VFs
[07:29:09] [PASSED] 17 VFs
[07:29:09] [PASSED] 18 VFs
[07:29:09] [PASSED] 19 VFs
[07:29:09] [PASSED] 20 VFs
[07:29:09] [PASSED] 21 VFs
[07:29:09] [PASSED] 22 VFs
[07:29:09] [PASSED] 23 VFs
[07:29:09] [PASSED] 24 VFs
[07:29:09] [PASSED] 25 VFs
[07:29:09] [PASSED] 26 VFs
[07:29:09] [PASSED] 27 VFs
[07:29:09] [PASSED] 28 VFs
[07:29:09] [PASSED] 29 VFs
[07:29:09] [PASSED] 30 VFs
[07:29:09] [PASSED] 31 VFs
[07:29:09] [PASSED] 32 VFs
[07:29:09] [PASSED] 33 VFs
[07:29:09] [PASSED] 34 VFs
[07:29:09] [PASSED] 35 VFs
[07:29:09] [PASSED] 36 VFs
[07:29:09] [PASSED] 37 VFs
[07:29:09] [PASSED] 38 VFs
[07:29:09] [PASSED] 39 VFs
[07:29:09] [PASSED] 40 VFs
[07:29:09] [PASSED] 41 VFs
[07:29:09] [PASSED] 42 VFs
[07:29:09] [PASSED] 43 VFs
[07:29:09] [PASSED] 44 VFs
[07:29:09] [PASSED] 45 VFs
[07:29:09] [PASSED] 46 VFs
[07:29:09] [PASSED] 47 VFs
[07:29:09] [PASSED] 48 VFs
[07:29:09] [PASSED] 49 VFs
[07:29:09] [PASSED] 50 VFs
[07:29:09] [PASSED] 51 VFs
[07:29:09] [PASSED] 52 VFs
[07:29:09] [PASSED] 53 VFs
[07:29:09] [PASSED] 54 VFs
[07:29:09] [PASSED] 55 VFs
[07:29:09] [PASSED] 56 VFs
[07:29:09] [PASSED] 57 VFs
[07:29:09] [PASSED] 58 VFs
[07:29:09] [PASSED] 59 VFs
[07:29:09] [PASSED] 60 VFs
[07:29:09] [PASSED] 61 VFs
[07:29:09] [PASSED] 62 VFs
[07:29:09] [PASSED] 63 VFs
[07:29:09] ==================== [PASSED] fair_ggtt ====================
[07:29:09] ======================== fair_vram ========================
[07:29:09] [PASSED] 1 VF
[07:29:09] [PASSED] 2 VFs
[07:29:09] [PASSED] 3 VFs
[07:29:09] [PASSED] 4 VFs
[07:29:09] [PASSED] 5 VFs
[07:29:09] [PASSED] 6 VFs
[07:29:09] [PASSED] 7 VFs
[07:29:09] [PASSED] 8 VFs
[07:29:09] [PASSED] 9 VFs
[07:29:09] [PASSED] 10 VFs
[07:29:09] [PASSED] 11 VFs
[07:29:09] [PASSED] 12 VFs
[07:29:09] [PASSED] 13 VFs
[07:29:09] [PASSED] 14 VFs
[07:29:09] [PASSED] 15 VFs
[07:29:09] [PASSED] 16 VFs
[07:29:09] [PASSED] 17 VFs
[07:29:09] [PASSED] 18 VFs
[07:29:09] [PASSED] 19 VFs
[07:29:09] [PASSED] 20 VFs
[07:29:09] [PASSED] 21 VFs
[07:29:09] [PASSED] 22 VFs
[07:29:09] [PASSED] 23 VFs
[07:29:09] [PASSED] 24 VFs
[07:29:09] [PASSED] 25 VFs
[07:29:09] [PASSED] 26 VFs
[07:29:09] [PASSED] 27 VFs
[07:29:09] [PASSED] 28 VFs
[07:29:09] [PASSED] 29 VFs
[07:29:09] [PASSED] 30 VFs
[07:29:09] [PASSED] 31 VFs
[07:29:09] [PASSED] 32 VFs
[07:29:09] [PASSED] 33 VFs
[07:29:09] [PASSED] 34 VFs
[07:29:09] [PASSED] 35 VFs
[07:29:09] [PASSED] 36 VFs
[07:29:09] [PASSED] 37 VFs
[07:29:09] [PASSED] 38 VFs
[07:29:09] [PASSED] 39 VFs
[07:29:09] [PASSED] 40 VFs
[07:29:09] [PASSED] 41 VFs
[07:29:09] [PASSED] 42 VFs
[07:29:09] [PASSED] 43 VFs
[07:29:09] [PASSED] 44 VFs
[07:29:09] [PASSED] 45 VFs
[07:29:09] [PASSED] 46 VFs
[07:29:09] [PASSED] 47 VFs
[07:29:09] [PASSED] 48 VFs
[07:29:09] [PASSED] 49 VFs
[07:29:09] [PASSED] 50 VFs
[07:29:09] [PASSED] 51 VFs
[07:29:09] [PASSED] 52 VFs
[07:29:09] [PASSED] 53 VFs
[07:29:09] [PASSED] 54 VFs
[07:29:09] [PASSED] 55 VFs
[07:29:09] [PASSED] 56 VFs
[07:29:09] [PASSED] 57 VFs
[07:29:09] [PASSED] 58 VFs
[07:29:09] [PASSED] 59 VFs
[07:29:09] [PASSED] 60 VFs
[07:29:09] [PASSED] 61 VFs
[07:29:09] [PASSED] 62 VFs
[07:29:09] [PASSED] 63 VFs
[07:29:09] ==================== [PASSED] fair_vram ====================
[07:29:09] ================== [PASSED] pf_gt_config ===================
[07:29:09] ===================== lmtt (1 subtest) =====================
[07:29:09] ======================== test_ops =========================
[07:29:09] [PASSED] 2-level
[07:29:09] [PASSED] multi-level
[07:29:09] ==================== [PASSED] test_ops =====================
[07:29:09] ====================== [PASSED] lmtt =======================
[07:29:09] ================= pf_service (11 subtests) =================
[07:29:09] [PASSED] pf_negotiate_any
[07:29:09] [PASSED] pf_negotiate_base_match
[07:29:09] [PASSED] pf_negotiate_base_newer
[07:29:09] [PASSED] pf_negotiate_base_next
[07:29:09] [SKIPPED] pf_negotiate_base_older
[07:29:09] [PASSED] pf_negotiate_base_prev
[07:29:09] [PASSED] pf_negotiate_latest_match
[07:29:09] [PASSED] pf_negotiate_latest_newer
[07:29:09] [PASSED] pf_negotiate_latest_next
[07:29:09] [SKIPPED] pf_negotiate_latest_older
[07:29:09] [SKIPPED] pf_negotiate_latest_prev
[07:29:09] =================== [PASSED] pf_service ====================
[07:29:09] ================= xe_guc_g2g (2 subtests) ==================
[07:29:09] ============== xe_live_guc_g2g_kunit_default ==============
[07:29:09] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[07:29:09] ============== xe_live_guc_g2g_kunit_allmem ===============
[07:29:09] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[07:29:09] =================== [SKIPPED] xe_guc_g2g ===================
[07:29:09] =================== xe_mocs (2 subtests) ===================
[07:29:09] ================ xe_live_mocs_kernel_kunit ================
[07:29:09] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[07:29:09] ================ xe_live_mocs_reset_kunit =================
[07:29:09] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[07:29:09] ==================== [SKIPPED] xe_mocs =====================
[07:29:09] ================= xe_migrate (2 subtests) ==================
[07:29:09] ================= xe_migrate_sanity_kunit =================
[07:29:09] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[07:29:09] ================== xe_validate_ccs_kunit ==================
[07:29:09] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[07:29:09] =================== [SKIPPED] xe_migrate ===================
[07:29:09] ================== xe_dma_buf (1 subtest) ==================
[07:29:09] ==================== xe_dma_buf_kunit =====================
[07:29:09] ================ [SKIPPED] xe_dma_buf_kunit ================
[07:29:09] =================== [SKIPPED] xe_dma_buf ===================
[07:29:09] ================= xe_bo_shrink (1 subtest) =================
[07:29:09] =================== xe_bo_shrink_kunit ====================
[07:29:09] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[07:29:09] ================== [SKIPPED] xe_bo_shrink ==================
[07:29:09] ==================== xe_bo (2 subtests) ====================
[07:29:09] ================== xe_ccs_migrate_kunit ===================
[07:29:09] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[07:29:09] ==================== xe_bo_evict_kunit ====================
[07:29:09] =============== [SKIPPED] xe_bo_evict_kunit ================
[07:29:09] ===================== [SKIPPED] xe_bo ======================
[07:29:09] ==================== args (13 subtests) ====================
[07:29:09] [PASSED] count_args_test
[07:29:09] [PASSED] call_args_example
[07:29:09] [PASSED] call_args_test
[07:29:09] [PASSED] drop_first_arg_example
[07:29:09] [PASSED] drop_first_arg_test
[07:29:09] [PASSED] first_arg_example
[07:29:09] [PASSED] first_arg_test
[07:29:09] [PASSED] last_arg_example
[07:29:09] [PASSED] last_arg_test
[07:29:09] [PASSED] pick_arg_example
[07:29:09] [PASSED] if_args_example
[07:29:09] [PASSED] if_args_test
[07:29:09] [PASSED] sep_comma_example
[07:29:09] ====================== [PASSED] args =======================
[07:29:09] =================== xe_pci (3 subtests) ====================
[07:29:09] ==================== check_graphics_ip ====================
[07:29:09] [PASSED] 12.00 Xe_LP
[07:29:09] [PASSED] 12.10 Xe_LP+
[07:29:09] [PASSED] 12.55 Xe_HPG
[07:29:09] [PASSED] 12.60 Xe_HPC
[07:29:09] [PASSED] 12.70 Xe_LPG
[07:29:09] [PASSED] 12.71 Xe_LPG
[07:29:09] [PASSED] 12.74 Xe_LPG+
[07:29:09] [PASSED] 20.01 Xe2_HPG
[07:29:09] [PASSED] 20.02 Xe2_HPG
[07:29:09] [PASSED] 20.04 Xe2_LPG
[07:29:09] [PASSED] 30.00 Xe3_LPG
[07:29:09] [PASSED] 30.01 Xe3_LPG
[07:29:09] [PASSED] 30.03 Xe3_LPG
[07:29:09] [PASSED] 30.04 Xe3_LPG
[07:29:09] [PASSED] 30.05 Xe3_LPG
[07:29:09] [PASSED] 35.10 Xe3p_LPG
[07:29:09] [PASSED] 35.11 Xe3p_XPC
[07:29:09] ================ [PASSED] check_graphics_ip ================
[07:29:09] ===================== check_media_ip ======================
[07:29:09] [PASSED] 12.00 Xe_M
[07:29:09] [PASSED] 12.55 Xe_HPM
[07:29:09] [PASSED] 13.00 Xe_LPM+
[07:29:09] [PASSED] 13.01 Xe2_HPM
[07:29:09] [PASSED] 20.00 Xe2_LPM
[07:29:09] [PASSED] 30.00 Xe3_LPM
[07:29:09] [PASSED] 30.02 Xe3_LPM
[07:29:09] [PASSED] 35.00 Xe3p_LPM
[07:29:09] [PASSED] 35.03 Xe3p_HPM
[07:29:09] ================= [PASSED] check_media_ip ==================
[07:29:09] =================== check_platform_desc ===================
[07:29:09] [PASSED] 0x9A60 (TIGERLAKE)
[07:29:09] [PASSED] 0x9A68 (TIGERLAKE)
[07:29:09] [PASSED] 0x9A70 (TIGERLAKE)
[07:29:09] [PASSED] 0x9A40 (TIGERLAKE)
[07:29:09] [PASSED] 0x9A49 (TIGERLAKE)
[07:29:09] [PASSED] 0x9A59 (TIGERLAKE)
[07:29:09] [PASSED] 0x9A78 (TIGERLAKE)
[07:29:09] [PASSED] 0x9AC0 (TIGERLAKE)
[07:29:09] [PASSED] 0x9AC9 (TIGERLAKE)
[07:29:09] [PASSED] 0x9AD9 (TIGERLAKE)
[07:29:09] [PASSED] 0x9AF8 (TIGERLAKE)
[07:29:09] [PASSED] 0x4C80 (ROCKETLAKE)
[07:29:09] [PASSED] 0x4C8A (ROCKETLAKE)
[07:29:09] [PASSED] 0x4C8B (ROCKETLAKE)
[07:29:09] [PASSED] 0x4C8C (ROCKETLAKE)
[07:29:09] [PASSED] 0x4C90 (ROCKETLAKE)
[07:29:09] [PASSED] 0x4C9A (ROCKETLAKE)
[07:29:09] [PASSED] 0x4680 (ALDERLAKE_S)
[07:29:09] [PASSED] 0x4682 (ALDERLAKE_S)
[07:29:09] [PASSED] 0x4688 (ALDERLAKE_S)
[07:29:09] [PASSED] 0x468A (ALDERLAKE_S)
[07:29:09] [PASSED] 0x468B (ALDERLAKE_S)
[07:29:09] [PASSED] 0x4690 (ALDERLAKE_S)
[07:29:09] [PASSED] 0x4692 (ALDERLAKE_S)
[07:29:09] [PASSED] 0x4693 (ALDERLAKE_S)
[07:29:09] [PASSED] 0x46A0 (ALDERLAKE_P)
[07:29:09] [PASSED] 0x46A1 (ALDERLAKE_P)
[07:29:09] [PASSED] 0x46A2 (ALDERLAKE_P)
[07:29:09] [PASSED] 0x46A3 (ALDERLAKE_P)
[07:29:09] [PASSED] 0x46A6 (ALDERLAKE_P)
[07:29:09] [PASSED] 0x46A8 (ALDERLAKE_P)
[07:29:09] [PASSED] 0x46AA (ALDERLAKE_P)
[07:29:09] [PASSED] 0x462A (ALDERLAKE_P)
[07:29:09] [PASSED] 0x4626 (ALDERLAKE_P)
[07:29:09] [PASSED] 0x4628 (ALDERLAKE_P)
[07:29:09] [PASSED] 0x46B0 (ALDERLAKE_P)
[07:29:09] [PASSED] 0x46B1 (ALDERLAKE_P)
[07:29:09] [PASSED] 0x46B2 (ALDERLAKE_P)
[07:29:09] [PASSED] 0x46B3 (ALDERLAKE_P)
[07:29:09] [PASSED] 0x46C0 (ALDERLAKE_P)
[07:29:09] [PASSED] 0x46C1 (ALDERLAKE_P)
[07:29:09] [PASSED] 0x46C2 (ALDERLAKE_P)
[07:29:09] [PASSED] 0x46C3 (ALDERLAKE_P)
[07:29:09] [PASSED] 0x46D0 (ALDERLAKE_N)
[07:29:09] [PASSED] 0x46D1 (ALDERLAKE_N)
[07:29:09] [PASSED] 0x46D2 (ALDERLAKE_N)
[07:29:09] [PASSED] 0x46D3 (ALDERLAKE_N)
[07:29:09] [PASSED] 0x46D4 (ALDERLAKE_N)
[07:29:09] [PASSED] 0xA721 (ALDERLAKE_P)
[07:29:09] [PASSED] 0xA7A1 (ALDERLAKE_P)
[07:29:09] [PASSED] 0xA7A9 (ALDERLAKE_P)
[07:29:09] [PASSED] 0xA7AC (ALDERLAKE_P)
[07:29:09] [PASSED] 0xA7AD (ALDERLAKE_P)
[07:29:09] [PASSED] 0xA720 (ALDERLAKE_P)
[07:29:09] [PASSED] 0xA7A0 (ALDERLAKE_P)
[07:29:09] [PASSED] 0xA7A8 (ALDERLAKE_P)
[07:29:09] [PASSED] 0xA7AA (ALDERLAKE_P)
[07:29:09] [PASSED] 0xA7AB (ALDERLAKE_P)
[07:29:09] [PASSED] 0xA780 (ALDERLAKE_S)
[07:29:09] [PASSED] 0xA781 (ALDERLAKE_S)
[07:29:09] [PASSED] 0xA782 (ALDERLAKE_S)
[07:29:09] [PASSED] 0xA783 (ALDERLAKE_S)
[07:29:09] [PASSED] 0xA788 (ALDERLAKE_S)
[07:29:09] [PASSED] 0xA789 (ALDERLAKE_S)
[07:29:09] [PASSED] 0xA78A (ALDERLAKE_S)
[07:29:09] [PASSED] 0xA78B (ALDERLAKE_S)
[07:29:09] [PASSED] 0x4905 (DG1)
[07:29:09] [PASSED] 0x4906 (DG1)
[07:29:09] [PASSED] 0x4907 (DG1)
[07:29:09] [PASSED] 0x4908 (DG1)
[07:29:09] [PASSED] 0x4909 (DG1)
[07:29:09] [PASSED] 0x56C0 (DG2)
[07:29:09] [PASSED] 0x56C2 (DG2)
[07:29:09] [PASSED] 0x56C1 (DG2)
[07:29:09] [PASSED] 0x7D51 (METEORLAKE)
[07:29:09] [PASSED] 0x7DD1 (METEORLAKE)
[07:29:09] [PASSED] 0x7D41 (METEORLAKE)
[07:29:09] [PASSED] 0x7D67 (METEORLAKE)
[07:29:09] [PASSED] 0xB640 (METEORLAKE)
[07:29:09] [PASSED] 0x56A0 (DG2)
[07:29:09] [PASSED] 0x56A1 (DG2)
[07:29:09] [PASSED] 0x56A2 (DG2)
[07:29:09] [PASSED] 0x56BE (DG2)
[07:29:09] [PASSED] 0x56BF (DG2)
[07:29:09] [PASSED] 0x5690 (DG2)
[07:29:09] [PASSED] 0x5691 (DG2)
[07:29:09] [PASSED] 0x5692 (DG2)
[07:29:09] [PASSED] 0x56A5 (DG2)
[07:29:09] [PASSED] 0x56A6 (DG2)
[07:29:09] [PASSED] 0x56B0 (DG2)
[07:29:09] [PASSED] 0x56B1 (DG2)
[07:29:09] [PASSED] 0x56BA (DG2)
[07:29:09] [PASSED] 0x56BB (DG2)
[07:29:09] [PASSED] 0x56BC (DG2)
[07:29:09] [PASSED] 0x56BD (DG2)
[07:29:09] [PASSED] 0x5693 (DG2)
[07:29:09] [PASSED] 0x5694 (DG2)
[07:29:09] [PASSED] 0x5695 (DG2)
[07:29:09] [PASSED] 0x56A3 (DG2)
[07:29:09] [PASSED] 0x56A4 (DG2)
[07:29:09] [PASSED] 0x56B2 (DG2)
[07:29:09] [PASSED] 0x56B3 (DG2)
[07:29:09] [PASSED] 0x5696 (DG2)
[07:29:09] [PASSED] 0x5697 (DG2)
[07:29:09] [PASSED] 0xB69 (PVC)
[07:29:09] [PASSED] 0xB6E (PVC)
[07:29:09] [PASSED] 0xBD4 (PVC)
[07:29:09] [PASSED] 0xBD5 (PVC)
[07:29:09] [PASSED] 0xBD6 (PVC)
[07:29:09] [PASSED] 0xBD7 (PVC)
[07:29:09] [PASSED] 0xBD8 (PVC)
[07:29:09] [PASSED] 0xBD9 (PVC)
[07:29:09] [PASSED] 0xBDA (PVC)
[07:29:09] [PASSED] 0xBDB (PVC)
[07:29:09] [PASSED] 0xBE0 (PVC)
[07:29:09] [PASSED] 0xBE1 (PVC)
[07:29:09] [PASSED] 0xBE5 (PVC)
[07:29:09] [PASSED] 0x7D40 (METEORLAKE)
[07:29:09] [PASSED] 0x7D45 (METEORLAKE)
[07:29:09] [PASSED] 0x7D55 (METEORLAKE)
[07:29:09] [PASSED] 0x7D60 (METEORLAKE)
[07:29:09] [PASSED] 0x7DD5 (METEORLAKE)
[07:29:09] [PASSED] 0x6420 (LUNARLAKE)
[07:29:09] [PASSED] 0x64A0 (LUNARLAKE)
[07:29:09] [PASSED] 0x64B0 (LUNARLAKE)
[07:29:09] [PASSED] 0xE202 (BATTLEMAGE)
[07:29:09] [PASSED] 0xE209 (BATTLEMAGE)
[07:29:09] [PASSED] 0xE20B (BATTLEMAGE)
[07:29:09] [PASSED] 0xE20C (BATTLEMAGE)
[07:29:09] [PASSED] 0xE20D (BATTLEMAGE)
[07:29:09] [PASSED] 0xE210 (BATTLEMAGE)
[07:29:09] [PASSED] 0xE211 (BATTLEMAGE)
[07:29:09] [PASSED] 0xE212 (BATTLEMAGE)
[07:29:09] [PASSED] 0xE216 (BATTLEMAGE)
[07:29:09] [PASSED] 0xE220 (BATTLEMAGE)
[07:29:09] [PASSED] 0xE221 (BATTLEMAGE)
[07:29:09] [PASSED] 0xE222 (BATTLEMAGE)
[07:29:09] [PASSED] 0xE223 (BATTLEMAGE)
[07:29:09] [PASSED] 0xB080 (PANTHERLAKE)
[07:29:09] [PASSED] 0xB081 (PANTHERLAKE)
[07:29:09] [PASSED] 0xB082 (PANTHERLAKE)
[07:29:09] [PASSED] 0xB083 (PANTHERLAKE)
[07:29:09] [PASSED] 0xB084 (PANTHERLAKE)
[07:29:09] [PASSED] 0xB085 (PANTHERLAKE)
[07:29:09] [PASSED] 0xB086 (PANTHERLAKE)
[07:29:09] [PASSED] 0xB087 (PANTHERLAKE)
[07:29:09] [PASSED] 0xB08F (PANTHERLAKE)
[07:29:09] [PASSED] 0xB090 (PANTHERLAKE)
[07:29:09] [PASSED] 0xB0A0 (PANTHERLAKE)
[07:29:09] [PASSED] 0xB0B0 (PANTHERLAKE)
[07:29:09] [PASSED] 0xFD80 (PANTHERLAKE)
[07:29:09] [PASSED] 0xFD81 (PANTHERLAKE)
[07:29:09] [PASSED] 0xD740 (NOVALAKE_S)
[07:29:09] [PASSED] 0xD741 (NOVALAKE_S)
[07:29:09] [PASSED] 0xD742 (NOVALAKE_S)
[07:29:09] [PASSED] 0xD743 (NOVALAKE_S)
[07:29:09] [PASSED] 0xD744 (NOVALAKE_S)
[07:29:09] [PASSED] 0xD745 (NOVALAKE_S)
[07:29:09] [PASSED] 0x674C (CRESCENTISLAND)
[07:29:09] [PASSED] 0xD750 (NOVALAKE_P)
[07:29:09] [PASSED] 0xD751 (NOVALAKE_P)
[07:29:09] [PASSED] 0xD752 (NOVALAKE_P)
[07:29:09] [PASSED] 0xD753 (NOVALAKE_P)
[07:29:09] [PASSED] 0xD754 (NOVALAKE_P)
[07:29:09] [PASSED] 0xD755 (NOVALAKE_P)
[07:29:09] [PASSED] 0xD756 (NOVALAKE_P)
[07:29:09] [PASSED] 0xD757 (NOVALAKE_P)
[07:29:09] [PASSED] 0xD75F (NOVALAKE_P)
[07:29:09] =============== [PASSED] check_platform_desc ===============
[07:29:09] ===================== [PASSED] xe_pci ======================
[07:29:09] =================== xe_rtp (2 subtests) ====================
[07:29:09] =============== xe_rtp_process_to_sr_tests ================
[07:29:09] [PASSED] coalesce-same-reg
[07:29:09] [PASSED] no-match-no-add
[07:29:09] [PASSED] match-or
[07:29:09] [PASSED] match-or-xfail
[07:29:09] [PASSED] no-match-no-add-multiple-rules
[07:29:09] [PASSED] two-regs-two-entries
[07:29:09] [PASSED] clr-one-set-other
[07:29:09] [PASSED] set-field
[07:29:09] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[07:29:09] [PASSED] conflict-not-disjoint
[07:29:09] [PASSED] conflict-reg-type
[07:29:09] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[07:29:09] ================== xe_rtp_process_tests ===================
[07:29:09] [PASSED] active1
[07:29:09] [PASSED] active2
[07:29:09] [PASSED] active-inactive
[07:29:09] [PASSED] inactive-active
[07:29:09] [PASSED] inactive-1st_or_active-inactive
[07:29:09] [PASSED] inactive-2nd_or_active-inactive
[07:29:09] [PASSED] inactive-last_or_active-inactive
[07:29:09] [PASSED] inactive-no_or_active-inactive
[07:29:09] ============== [PASSED] xe_rtp_process_tests ===============
[07:29:09] ===================== [PASSED] xe_rtp ======================
[07:29:09] ==================== xe_wa (1 subtest) =====================
[07:29:09] ======================== xe_wa_gt =========================
[07:29:09] [PASSED] TIGERLAKE B0
[07:29:09] [PASSED] DG1 A0
[07:29:09] [PASSED] DG1 B0
[07:29:09] [PASSED] ALDERLAKE_S A0
[07:29:09] [PASSED] ALDERLAKE_S B0
[07:29:09] [PASSED] ALDERLAKE_S C0
[07:29:09] [PASSED] ALDERLAKE_S D0
[07:29:09] [PASSED] ALDERLAKE_P A0
[07:29:09] [PASSED] ALDERLAKE_P B0
[07:29:09] [PASSED] ALDERLAKE_P C0
[07:29:09] [PASSED] ALDERLAKE_S RPLS D0
[07:29:09] [PASSED] ALDERLAKE_P RPLU E0
[07:29:09] [PASSED] DG2 G10 C0
[07:29:09] [PASSED] DG2 G11 B1
[07:29:09] [PASSED] DG2 G12 A1
[07:29:09] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[07:29:09] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[07:29:09] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[07:29:09] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[07:29:09] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[07:29:09] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[07:29:09] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[07:29:09] ==================== [PASSED] xe_wa_gt =====================
[07:29:09] ====================== [PASSED] xe_wa ======================
[07:29:09] ============================================================
[07:29:09] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[07:29:09] Elapsed time: 35.514s total, 4.258s configuring, 30.590s building, 0.618s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[07:29:09] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:29:11] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[07:29:35] Starting KUnit Kernel (1/1)...
[07:29:35] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:29:35] ============ drm_test_pick_cmdline (2 subtests) ============
[07:29:35] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[07:29:35] =============== drm_test_pick_cmdline_named ===============
[07:29:35] [PASSED] NTSC
[07:29:35] [PASSED] NTSC-J
[07:29:35] [PASSED] PAL
[07:29:35] [PASSED] PAL-M
[07:29:35] =========== [PASSED] drm_test_pick_cmdline_named ===========
[07:29:35] ============== [PASSED] drm_test_pick_cmdline ==============
[07:29:35] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[07:29:35] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[07:29:35] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[07:29:35] =========== drm_validate_clone_mode (2 subtests) ===========
[07:29:35] ============== drm_test_check_in_clone_mode ===============
[07:29:35] [PASSED] in_clone_mode
[07:29:35] [PASSED] not_in_clone_mode
[07:29:35] ========== [PASSED] drm_test_check_in_clone_mode ===========
[07:29:35] =============== drm_test_check_valid_clones ===============
[07:29:35] [PASSED] not_in_clone_mode
[07:29:35] [PASSED] valid_clone
[07:29:35] [PASSED] invalid_clone
[07:29:35] =========== [PASSED] drm_test_check_valid_clones ===========
[07:29:35] ============= [PASSED] drm_validate_clone_mode =============
[07:29:35] ============= drm_validate_modeset (1 subtest) =============
[07:29:35] [PASSED] drm_test_check_connector_changed_modeset
[07:29:35] ============== [PASSED] drm_validate_modeset ===============
[07:29:35] ====== drm_test_bridge_get_current_state (2 subtests) ======
[07:29:35] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[07:29:35] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[07:29:35] ======== [PASSED] drm_test_bridge_get_current_state ========
[07:29:35] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[07:29:35] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[07:29:35] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[07:29:35] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[07:29:35] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[07:29:35] ============== drm_bridge_alloc (2 subtests) ===============
[07:29:35] [PASSED] drm_test_drm_bridge_alloc_basic
[07:29:35] [PASSED] drm_test_drm_bridge_alloc_get_put
[07:29:35] ================ [PASSED] drm_bridge_alloc =================
[07:29:35] ============= drm_cmdline_parser (40 subtests) =============
[07:29:35] [PASSED] drm_test_cmdline_force_d_only
[07:29:35] [PASSED] drm_test_cmdline_force_D_only_dvi
[07:29:35] [PASSED] drm_test_cmdline_force_D_only_hdmi
[07:29:35] [PASSED] drm_test_cmdline_force_D_only_not_digital
[07:29:35] [PASSED] drm_test_cmdline_force_e_only
[07:29:35] [PASSED] drm_test_cmdline_res
[07:29:35] [PASSED] drm_test_cmdline_res_vesa
[07:29:35] [PASSED] drm_test_cmdline_res_vesa_rblank
[07:29:35] [PASSED] drm_test_cmdline_res_rblank
[07:29:35] [PASSED] drm_test_cmdline_res_bpp
[07:29:35] [PASSED] drm_test_cmdline_res_refresh
[07:29:35] [PASSED] drm_test_cmdline_res_bpp_refresh
[07:29:35] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[07:29:35] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[07:29:35] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[07:29:35] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[07:29:35] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[07:29:35] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[07:29:35] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[07:29:35] [PASSED] drm_test_cmdline_res_margins_force_on
[07:29:35] [PASSED] drm_test_cmdline_res_vesa_margins
[07:29:35] [PASSED] drm_test_cmdline_name
[07:29:35] [PASSED] drm_test_cmdline_name_bpp
[07:29:35] [PASSED] drm_test_cmdline_name_option
[07:29:35] [PASSED] drm_test_cmdline_name_bpp_option
[07:29:35] [PASSED] drm_test_cmdline_rotate_0
[07:29:35] [PASSED] drm_test_cmdline_rotate_90
[07:29:35] [PASSED] drm_test_cmdline_rotate_180
[07:29:35] [PASSED] drm_test_cmdline_rotate_270
[07:29:35] [PASSED] drm_test_cmdline_hmirror
[07:29:35] [PASSED] drm_test_cmdline_vmirror
[07:29:35] [PASSED] drm_test_cmdline_margin_options
[07:29:35] [PASSED] drm_test_cmdline_multiple_options
[07:29:35] [PASSED] drm_test_cmdline_bpp_extra_and_option
[07:29:35] [PASSED] drm_test_cmdline_extra_and_option
[07:29:35] [PASSED] drm_test_cmdline_freestanding_options
[07:29:35] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[07:29:35] [PASSED] drm_test_cmdline_panel_orientation
[07:29:35] ================ drm_test_cmdline_invalid =================
[07:29:35] [PASSED] margin_only
[07:29:35] [PASSED] interlace_only
[07:29:35] [PASSED] res_missing_x
[07:29:35] [PASSED] res_missing_y
[07:29:35] [PASSED] res_bad_y
[07:29:35] [PASSED] res_missing_y_bpp
[07:29:35] [PASSED] res_bad_bpp
[07:29:35] [PASSED] res_bad_refresh
[07:29:35] [PASSED] res_bpp_refresh_force_on_off
[07:29:35] [PASSED] res_invalid_mode
[07:29:35] [PASSED] res_bpp_wrong_place_mode
[07:29:35] [PASSED] name_bpp_refresh
[07:29:35] [PASSED] name_refresh
[07:29:35] [PASSED] name_refresh_wrong_mode
[07:29:35] [PASSED] name_refresh_invalid_mode
[07:29:35] [PASSED] rotate_multiple
[07:29:35] [PASSED] rotate_invalid_val
[07:29:35] [PASSED] rotate_truncated
[07:29:35] [PASSED] invalid_option
[07:29:35] [PASSED] invalid_tv_option
[07:29:35] [PASSED] truncated_tv_option
[07:29:35] ============ [PASSED] drm_test_cmdline_invalid =============
[07:29:35] =============== drm_test_cmdline_tv_options ===============
[07:29:35] [PASSED] NTSC
[07:29:35] [PASSED] NTSC_443
[07:29:35] [PASSED] NTSC_J
[07:29:35] [PASSED] PAL
[07:29:35] [PASSED] PAL_M
[07:29:35] [PASSED] PAL_N
[07:29:35] [PASSED] SECAM
[07:29:35] [PASSED] MONO_525
[07:29:35] [PASSED] MONO_625
[07:29:35] =========== [PASSED] drm_test_cmdline_tv_options ===========
[07:29:35] =============== [PASSED] drm_cmdline_parser ================
[07:29:35] ========== drmm_connector_hdmi_init (20 subtests) ==========
[07:29:35] [PASSED] drm_test_connector_hdmi_init_valid
[07:29:35] [PASSED] drm_test_connector_hdmi_init_bpc_8
[07:29:35] [PASSED] drm_test_connector_hdmi_init_bpc_10
[07:29:35] [PASSED] drm_test_connector_hdmi_init_bpc_12
[07:29:35] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[07:29:35] [PASSED] drm_test_connector_hdmi_init_bpc_null
[07:29:35] [PASSED] drm_test_connector_hdmi_init_formats_empty
[07:29:35] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[07:29:35] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[07:29:35] [PASSED] supported_formats=0x9 yuv420_allowed=1
[07:29:35] [PASSED] supported_formats=0x9 yuv420_allowed=0
[07:29:35] [PASSED] supported_formats=0x3 yuv420_allowed=1
[07:29:35] [PASSED] supported_formats=0x3 yuv420_allowed=0
[07:29:35] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[07:29:35] [PASSED] drm_test_connector_hdmi_init_null_ddc
[07:29:35] [PASSED] drm_test_connector_hdmi_init_null_product
[07:29:35] [PASSED] drm_test_connector_hdmi_init_null_vendor
[07:29:35] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[07:29:35] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[07:29:35] [PASSED] drm_test_connector_hdmi_init_product_valid
[07:29:35] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[07:29:35] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[07:29:35] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[07:29:35] ========= drm_test_connector_hdmi_init_type_valid =========
[07:29:35] [PASSED] HDMI-A
[07:29:35] [PASSED] HDMI-B
[07:29:35] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[07:29:35] ======== drm_test_connector_hdmi_init_type_invalid ========
[07:29:35] [PASSED] Unknown
[07:29:35] [PASSED] VGA
[07:29:35] [PASSED] DVI-I
[07:29:35] [PASSED] DVI-D
[07:29:35] [PASSED] DVI-A
[07:29:35] [PASSED] Composite
[07:29:35] [PASSED] SVIDEO
[07:29:35] [PASSED] LVDS
[07:29:35] [PASSED] Component
[07:29:35] [PASSED] DIN
[07:29:35] [PASSED] DP
[07:29:35] [PASSED] TV
[07:29:35] [PASSED] eDP
[07:29:35] [PASSED] Virtual
[07:29:35] [PASSED] DSI
[07:29:35] [PASSED] DPI
[07:29:35] [PASSED] Writeback
[07:29:35] [PASSED] SPI
[07:29:35] [PASSED] USB
[07:29:35] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[07:29:35] ============ [PASSED] drmm_connector_hdmi_init =============
[07:29:35] ============= drmm_connector_init (3 subtests) =============
[07:29:35] [PASSED] drm_test_drmm_connector_init
[07:29:35] [PASSED] drm_test_drmm_connector_init_null_ddc
[07:29:35] ========= drm_test_drmm_connector_init_type_valid =========
[07:29:35] [PASSED] Unknown
[07:29:35] [PASSED] VGA
[07:29:35] [PASSED] DVI-I
[07:29:35] [PASSED] DVI-D
[07:29:35] [PASSED] DVI-A
[07:29:35] [PASSED] Composite
[07:29:35] [PASSED] SVIDEO
[07:29:35] [PASSED] LVDS
[07:29:35] [PASSED] Component
[07:29:35] [PASSED] DIN
[07:29:35] [PASSED] DP
[07:29:35] [PASSED] HDMI-A
[07:29:35] [PASSED] HDMI-B
[07:29:35] [PASSED] TV
[07:29:35] [PASSED] eDP
[07:29:35] [PASSED] Virtual
[07:29:35] [PASSED] DSI
[07:29:35] [PASSED] DPI
[07:29:35] [PASSED] Writeback
[07:29:35] [PASSED] SPI
[07:29:35] [PASSED] USB
[07:29:35] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[07:29:35] =============== [PASSED] drmm_connector_init ===============
[07:29:35] ========= drm_connector_dynamic_init (6 subtests) ==========
[07:29:35] [PASSED] drm_test_drm_connector_dynamic_init
[07:29:35] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[07:29:35] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[07:29:35] [PASSED] drm_test_drm_connector_dynamic_init_properties
[07:29:35] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[07:29:35] [PASSED] Unknown
[07:29:35] [PASSED] VGA
[07:29:35] [PASSED] DVI-I
[07:29:35] [PASSED] DVI-D
[07:29:35] [PASSED] DVI-A
[07:29:35] [PASSED] Composite
[07:29:35] [PASSED] SVIDEO
[07:29:35] [PASSED] LVDS
[07:29:35] [PASSED] Component
[07:29:35] [PASSED] DIN
[07:29:35] [PASSED] DP
[07:29:35] [PASSED] HDMI-A
[07:29:35] [PASSED] HDMI-B
[07:29:35] [PASSED] TV
[07:29:35] [PASSED] eDP
[07:29:35] [PASSED] Virtual
[07:29:35] [PASSED] DSI
[07:29:35] [PASSED] DPI
[07:29:35] [PASSED] Writeback
[07:29:35] [PASSED] SPI
[07:29:35] [PASSED] USB
[07:29:35] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[07:29:35] ======== drm_test_drm_connector_dynamic_init_name =========
[07:29:35] [PASSED] Unknown
[07:29:35] [PASSED] VGA
[07:29:35] [PASSED] DVI-I
[07:29:35] [PASSED] DVI-D
[07:29:35] [PASSED] DVI-A
[07:29:35] [PASSED] Composite
[07:29:35] [PASSED] SVIDEO
[07:29:35] [PASSED] LVDS
[07:29:35] [PASSED] Component
[07:29:35] [PASSED] DIN
[07:29:35] [PASSED] DP
[07:29:35] [PASSED] HDMI-A
[07:29:35] [PASSED] HDMI-B
[07:29:35] [PASSED] TV
[07:29:35] [PASSED] eDP
[07:29:35] [PASSED] Virtual
[07:29:35] [PASSED] DSI
[07:29:35] [PASSED] DPI
[07:29:35] [PASSED] Writeback
[07:29:35] [PASSED] SPI
[07:29:35] [PASSED] USB
[07:29:35] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[07:29:35] =========== [PASSED] drm_connector_dynamic_init ============
[07:29:35] ==== drm_connector_dynamic_register_early (4 subtests) =====
[07:29:35] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[07:29:35] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[07:29:35] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[07:29:35] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[07:29:35] ====== [PASSED] drm_connector_dynamic_register_early =======
[07:29:35] ======= drm_connector_dynamic_register (7 subtests) ========
[07:29:35] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[07:29:35] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[07:29:35] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[07:29:35] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[07:29:35] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[07:29:35] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[07:29:35] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[07:29:35] ========= [PASSED] drm_connector_dynamic_register ==========
[07:29:35] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[07:29:35] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[07:29:35] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[07:29:35] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[07:29:35] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[07:29:35] ========== drm_test_get_tv_mode_from_name_valid ===========
[07:29:35] [PASSED] NTSC
[07:29:35] [PASSED] NTSC-443
[07:29:35] [PASSED] NTSC-J
[07:29:35] [PASSED] PAL
[07:29:35] [PASSED] PAL-M
[07:29:35] [PASSED] PAL-N
[07:29:35] [PASSED] SECAM
[07:29:35] [PASSED] Mono
[07:29:35] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[07:29:35] [PASSED] drm_test_get_tv_mode_from_name_truncated
[07:29:35] ============ [PASSED] drm_get_tv_mode_from_name ============
[07:29:35] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[07:29:35] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[07:29:35] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[07:29:35] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[07:29:35] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[07:29:35] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[07:29:35] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[07:29:35] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[07:29:35] [PASSED] VIC 96
[07:29:35] [PASSED] VIC 97
[07:29:35] [PASSED] VIC 101
[07:29:35] [PASSED] VIC 102
[07:29:35] [PASSED] VIC 106
[07:29:35] [PASSED] VIC 107
[07:29:35] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[07:29:35] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[07:29:35] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[07:29:35] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[07:29:35] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[07:29:35] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[07:29:35] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[07:29:35] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[07:29:35] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[07:29:35] [PASSED] Automatic
[07:29:35] [PASSED] Full
[07:29:35] [PASSED] Limited 16:235
[07:29:35] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[07:29:35] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[07:29:35] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[07:29:35] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[07:29:35] === drm_test_drm_hdmi_connector_get_output_format_name ====
[07:29:35] [PASSED] RGB
[07:29:35] [PASSED] YUV 4:2:0
[07:29:35] [PASSED] YUV 4:2:2
[07:29:35] [PASSED] YUV 4:4:4
[07:29:35] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[07:29:35] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[07:29:35] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[07:29:35] ============= drm_damage_helper (21 subtests) ==============
[07:29:35] [PASSED] drm_test_damage_iter_no_damage
[07:29:35] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[07:29:35] [PASSED] drm_test_damage_iter_no_damage_src_moved
[07:29:35] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[07:29:35] [PASSED] drm_test_damage_iter_no_damage_not_visible
[07:29:35] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[07:29:35] [PASSED] drm_test_damage_iter_no_damage_no_fb
[07:29:35] [PASSED] drm_test_damage_iter_simple_damage
[07:29:35] [PASSED] drm_test_damage_iter_single_damage
[07:29:35] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[07:29:35] [PASSED] drm_test_damage_iter_single_damage_outside_src
[07:29:35] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[07:29:35] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[07:29:35] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[07:29:35] [PASSED] drm_test_damage_iter_single_damage_src_moved
[07:29:35] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[07:29:35] [PASSED] drm_test_damage_iter_damage
[07:29:35] [PASSED] drm_test_damage_iter_damage_one_intersect
[07:29:35] [PASSED] drm_test_damage_iter_damage_one_outside
[07:29:35] [PASSED] drm_test_damage_iter_damage_src_moved
[07:29:35] [PASSED] drm_test_damage_iter_damage_not_visible
[07:29:35] ================ [PASSED] drm_damage_helper ================
[07:29:35] ============== drm_dp_mst_helper (3 subtests) ==============
[07:29:35] ============== drm_test_dp_mst_calc_pbn_mode ==============
[07:29:35] [PASSED] Clock 154000 BPP 30 DSC disabled
[07:29:35] [PASSED] Clock 234000 BPP 30 DSC disabled
[07:29:35] [PASSED] Clock 297000 BPP 24 DSC disabled
[07:29:35] [PASSED] Clock 332880 BPP 24 DSC enabled
[07:29:35] [PASSED] Clock 324540 BPP 24 DSC enabled
[07:29:35] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[07:29:35] ============== drm_test_dp_mst_calc_pbn_div ===============
[07:29:35] [PASSED] Link rate 2000000 lane count 4
[07:29:35] [PASSED] Link rate 2000000 lane count 2
[07:29:35] [PASSED] Link rate 2000000 lane count 1
[07:29:35] [PASSED] Link rate 1350000 lane count 4
[07:29:35] [PASSED] Link rate 1350000 lane count 2
[07:29:35] [PASSED] Link rate 1350000 lane count 1
[07:29:35] [PASSED] Link rate 1000000 lane count 4
[07:29:35] [PASSED] Link rate 1000000 lane count 2
[07:29:35] [PASSED] Link rate 1000000 lane count 1
[07:29:35] [PASSED] Link rate 810000 lane count 4
[07:29:35] [PASSED] Link rate 810000 lane count 2
[07:29:35] [PASSED] Link rate 810000 lane count 1
[07:29:35] [PASSED] Link rate 540000 lane count 4
[07:29:35] [PASSED] Link rate 540000 lane count 2
[07:29:35] [PASSED] Link rate 540000 lane count 1
[07:29:35] [PASSED] Link rate 270000 lane count 4
[07:29:35] [PASSED] Link rate 270000 lane count 2
[07:29:35] [PASSED] Link rate 270000 lane count 1
[07:29:35] [PASSED] Link rate 162000 lane count 4
[07:29:35] [PASSED] Link rate 162000 lane count 2
[07:29:35] [PASSED] Link rate 162000 lane count 1
[07:29:35] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[07:29:35] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[07:29:35] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[07:29:35] [PASSED] DP_POWER_UP_PHY with port number
[07:29:35] [PASSED] DP_POWER_DOWN_PHY with port number
[07:29:35] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[07:29:35] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[07:29:35] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[07:29:35] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[07:29:35] [PASSED] DP_QUERY_PAYLOAD with port number
[07:29:35] [PASSED] DP_QUERY_PAYLOAD with VCPI
[07:29:35] [PASSED] DP_REMOTE_DPCD_READ with port number
[07:29:35] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[07:29:35] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[07:29:35] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[07:29:35] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[07:29:35] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[07:29:35] [PASSED] DP_REMOTE_I2C_READ with port number
[07:29:35] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[07:29:35] [PASSED] DP_REMOTE_I2C_READ with transactions array
[07:29:35] [PASSED] DP_REMOTE_I2C_WRITE with port number
[07:29:35] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[07:29:35] [PASSED] DP_REMOTE_I2C_WRITE with data array
[07:29:35] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[07:29:35] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[07:29:35] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[07:29:35] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[07:29:35] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[07:29:35] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[07:29:35] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[07:29:35] ================ [PASSED] drm_dp_mst_helper ================
[07:29:35] ================== drm_exec (7 subtests) ===================
[07:29:35] [PASSED] sanitycheck
[07:29:35] [PASSED] test_lock
[07:29:35] [PASSED] test_lock_unlock
[07:29:35] [PASSED] test_duplicates
[07:29:35] [PASSED] test_prepare
[07:29:35] [PASSED] test_prepare_array
[07:29:35] [PASSED] test_multiple_loops
[07:29:35] ==================== [PASSED] drm_exec =====================
[07:29:35] =========== drm_format_helper_test (17 subtests) ===========
[07:29:35] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[07:29:35] [PASSED] single_pixel_source_buffer
[07:29:35] [PASSED] single_pixel_clip_rectangle
[07:29:35] [PASSED] well_known_colors
[07:29:35] [PASSED] destination_pitch
[07:29:35] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[07:29:35] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[07:29:35] [PASSED] single_pixel_source_buffer
[07:29:35] [PASSED] single_pixel_clip_rectangle
[07:29:35] [PASSED] well_known_colors
[07:29:35] [PASSED] destination_pitch
[07:29:35] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[07:29:35] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[07:29:35] [PASSED] single_pixel_source_buffer
[07:29:35] [PASSED] single_pixel_clip_rectangle
[07:29:35] [PASSED] well_known_colors
[07:29:35] [PASSED] destination_pitch
[07:29:35] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[07:29:35] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[07:29:35] [PASSED] single_pixel_source_buffer
[07:29:35] [PASSED] single_pixel_clip_rectangle
[07:29:35] [PASSED] well_known_colors
[07:29:35] [PASSED] destination_pitch
[07:29:35] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[07:29:35] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[07:29:35] [PASSED] single_pixel_source_buffer
[07:29:35] [PASSED] single_pixel_clip_rectangle
[07:29:35] [PASSED] well_known_colors
[07:29:35] [PASSED] destination_pitch
[07:29:35] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[07:29:35] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[07:29:35] [PASSED] single_pixel_source_buffer
[07:29:35] [PASSED] single_pixel_clip_rectangle
[07:29:35] [PASSED] well_known_colors
[07:29:35] [PASSED] destination_pitch
[07:29:35] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[07:29:35] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[07:29:35] [PASSED] single_pixel_source_buffer
[07:29:35] [PASSED] single_pixel_clip_rectangle
[07:29:35] [PASSED] well_known_colors
[07:29:35] [PASSED] destination_pitch
[07:29:35] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[07:29:35] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[07:29:35] [PASSED] single_pixel_source_buffer
[07:29:35] [PASSED] single_pixel_clip_rectangle
[07:29:35] [PASSED] well_known_colors
[07:29:35] [PASSED] destination_pitch
[07:29:35] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[07:29:35] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[07:29:35] [PASSED] single_pixel_source_buffer
[07:29:35] [PASSED] single_pixel_clip_rectangle
[07:29:35] [PASSED] well_known_colors
[07:29:35] [PASSED] destination_pitch
[07:29:35] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[07:29:35] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[07:29:35] [PASSED] single_pixel_source_buffer
[07:29:35] [PASSED] single_pixel_clip_rectangle
[07:29:35] [PASSED] well_known_colors
[07:29:35] [PASSED] destination_pitch
[07:29:35] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[07:29:35] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[07:29:35] [PASSED] single_pixel_source_buffer
[07:29:35] [PASSED] single_pixel_clip_rectangle
[07:29:35] [PASSED] well_known_colors
[07:29:35] [PASSED] destination_pitch
[07:29:35] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[07:29:35] ============== drm_test_fb_xrgb8888_to_mono ===============
[07:29:35] [PASSED] single_pixel_source_buffer
[07:29:35] [PASSED] single_pixel_clip_rectangle
[07:29:35] [PASSED] well_known_colors
[07:29:35] [PASSED] destination_pitch
[07:29:35] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[07:29:35] ==================== drm_test_fb_swab =====================
[07:29:35] [PASSED] single_pixel_source_buffer
[07:29:35] [PASSED] single_pixel_clip_rectangle
[07:29:35] [PASSED] well_known_colors
[07:29:35] [PASSED] destination_pitch
[07:29:35] ================ [PASSED] drm_test_fb_swab =================
[07:29:35] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[07:29:35] [PASSED] single_pixel_source_buffer
[07:29:35] [PASSED] single_pixel_clip_rectangle
[07:29:35] [PASSED] well_known_colors
[07:29:35] [PASSED] destination_pitch
[07:29:35] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[07:29:35] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[07:29:35] [PASSED] single_pixel_source_buffer
[07:29:35] [PASSED] single_pixel_clip_rectangle
[07:29:35] [PASSED] well_known_colors
[07:29:35] [PASSED] destination_pitch
[07:29:35] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[07:29:35] ================= drm_test_fb_clip_offset =================
[07:29:35] [PASSED] pass through
[07:29:35] [PASSED] horizontal offset
[07:29:35] [PASSED] vertical offset
[07:29:35] [PASSED] horizontal and vertical offset
[07:29:35] [PASSED] horizontal offset (custom pitch)
[07:29:35] [PASSED] vertical offset (custom pitch)
[07:29:35] [PASSED] horizontal and vertical offset (custom pitch)
[07:29:35] ============= [PASSED] drm_test_fb_clip_offset =============
[07:29:35] =================== drm_test_fb_memcpy ====================
[07:29:35] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[07:29:35] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[07:29:35] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[07:29:35] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[07:29:35] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[07:29:35] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[07:29:35] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[07:29:35] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[07:29:35] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[07:29:35] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[07:29:35] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[07:29:35] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[07:29:35] =============== [PASSED] drm_test_fb_memcpy ================
[07:29:35] ============= [PASSED] drm_format_helper_test ==============
[07:29:35] ================= drm_format (18 subtests) =================
[07:29:35] [PASSED] drm_test_format_block_width_invalid
[07:29:35] [PASSED] drm_test_format_block_width_one_plane
[07:29:35] [PASSED] drm_test_format_block_width_two_plane
[07:29:35] [PASSED] drm_test_format_block_width_three_plane
[07:29:35] [PASSED] drm_test_format_block_width_tiled
[07:29:35] [PASSED] drm_test_format_block_height_invalid
[07:29:35] [PASSED] drm_test_format_block_height_one_plane
[07:29:35] [PASSED] drm_test_format_block_height_two_plane
[07:29:35] [PASSED] drm_test_format_block_height_three_plane
[07:29:35] [PASSED] drm_test_format_block_height_tiled
[07:29:35] [PASSED] drm_test_format_min_pitch_invalid
[07:29:35] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[07:29:35] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[07:29:35] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[07:29:35] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[07:29:35] [PASSED] drm_test_format_min_pitch_two_plane
[07:29:35] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[07:29:35] [PASSED] drm_test_format_min_pitch_tiled
[07:29:35] =================== [PASSED] drm_format ====================
[07:29:35] ============== drm_framebuffer (10 subtests) ===============
[07:29:35] ========== drm_test_framebuffer_check_src_coords ==========
[07:29:35] [PASSED] Success: source fits into fb
[07:29:35] [PASSED] Fail: overflowing fb with x-axis coordinate
[07:29:35] [PASSED] Fail: overflowing fb with y-axis coordinate
[07:29:35] [PASSED] Fail: overflowing fb with source width
[07:29:35] [PASSED] Fail: overflowing fb with source height
[07:29:35] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[07:29:35] [PASSED] drm_test_framebuffer_cleanup
[07:29:35] =============== drm_test_framebuffer_create ===============
[07:29:35] [PASSED] ABGR8888 normal sizes
[07:29:35] [PASSED] ABGR8888 max sizes
[07:29:35] [PASSED] ABGR8888 pitch greater than min required
[07:29:35] [PASSED] ABGR8888 pitch less than min required
[07:29:35] [PASSED] ABGR8888 Invalid width
[07:29:35] [PASSED] ABGR8888 Invalid buffer handle
[07:29:35] [PASSED] No pixel format
[07:29:35] [PASSED] ABGR8888 Width 0
[07:29:35] [PASSED] ABGR8888 Height 0
[07:29:35] [PASSED] ABGR8888 Out of bound height * pitch combination
[07:29:35] [PASSED] ABGR8888 Large buffer offset
[07:29:35] [PASSED] ABGR8888 Buffer offset for inexistent plane
[07:29:35] [PASSED] ABGR8888 Invalid flag
[07:29:35] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[07:29:35] [PASSED] ABGR8888 Valid buffer modifier
[07:29:35] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[07:29:35] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[07:29:35] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[07:29:35] [PASSED] NV12 Normal sizes
[07:29:35] [PASSED] NV12 Max sizes
[07:29:35] [PASSED] NV12 Invalid pitch
[07:29:35] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[07:29:35] [PASSED] NV12 different modifier per-plane
[07:29:35] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[07:29:35] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[07:29:35] [PASSED] NV12 Modifier for inexistent plane
[07:29:35] [PASSED] NV12 Handle for inexistent plane
[07:29:35] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[07:29:35] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[07:29:35] [PASSED] YVU420 Normal sizes
[07:29:35] [PASSED] YVU420 Max sizes
[07:29:35] [PASSED] YVU420 Invalid pitch
[07:29:35] [PASSED] YVU420 Different pitches
[07:29:35] [PASSED] YVU420 Different buffer offsets/pitches
[07:29:35] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[07:29:35] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[07:29:35] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[07:29:35] [PASSED] YVU420 Valid modifier
[07:29:35] [PASSED] YVU420 Different modifiers per plane
[07:29:35] [PASSED] YVU420 Modifier for inexistent plane
[07:29:35] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[07:29:35] [PASSED] X0L2 Normal sizes
[07:29:35] [PASSED] X0L2 Max sizes
[07:29:35] [PASSED] X0L2 Invalid pitch
[07:29:35] [PASSED] X0L2 Pitch greater than minimum required
[07:29:35] [PASSED] X0L2 Handle for inexistent plane
[07:29:35] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[07:29:35] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[07:29:35] [PASSED] X0L2 Valid modifier
[07:29:35] [PASSED] X0L2 Modifier for inexistent plane
[07:29:35] =========== [PASSED] drm_test_framebuffer_create ===========
[07:29:35] [PASSED] drm_test_framebuffer_free
[07:29:35] [PASSED] drm_test_framebuffer_init
[07:29:35] [PASSED] drm_test_framebuffer_init_bad_format
[07:29:35] [PASSED] drm_test_framebuffer_init_dev_mismatch
[07:29:35] [PASSED] drm_test_framebuffer_lookup
[07:29:35] [PASSED] drm_test_framebuffer_lookup_inexistent
[07:29:35] [PASSED] drm_test_framebuffer_modifiers_not_supported
[07:29:35] ================= [PASSED] drm_framebuffer =================
[07:29:35] ================ drm_gem_shmem (8 subtests) ================
[07:29:35] [PASSED] drm_gem_shmem_test_obj_create
[07:29:35] [PASSED] drm_gem_shmem_test_obj_create_private
[07:29:35] [PASSED] drm_gem_shmem_test_pin_pages
[07:29:35] [PASSED] drm_gem_shmem_test_vmap
[07:29:35] [PASSED] drm_gem_shmem_test_get_sg_table
[07:29:35] [PASSED] drm_gem_shmem_test_get_pages_sgt
[07:29:35] [PASSED] drm_gem_shmem_test_madvise
[07:29:35] [PASSED] drm_gem_shmem_test_purge
[07:29:35] ================== [PASSED] drm_gem_shmem ==================
[07:29:35] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[07:29:35] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[07:29:35] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[07:29:35] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[07:29:35] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[07:29:35] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[07:29:35] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[07:29:35] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[07:29:35] [PASSED] Automatic
[07:29:35] [PASSED] Full
[07:29:35] [PASSED] Limited 16:235
[07:29:35] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[07:29:35] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[07:29:35] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[07:29:35] [PASSED] drm_test_check_disable_connector
[07:29:35] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[07:29:35] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[07:29:35] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[07:29:35] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[07:29:35] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[07:29:35] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[07:29:35] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[07:29:35] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[07:29:35] [PASSED] drm_test_check_output_bpc_dvi
[07:29:35] [PASSED] drm_test_check_output_bpc_format_vic_1
[07:29:35] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[07:29:35] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[07:29:35] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[07:29:35] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[07:29:35] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[07:29:35] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[07:29:35] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[07:29:35] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[07:29:35] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[07:29:35] [PASSED] drm_test_check_broadcast_rgb_value
[07:29:35] [PASSED] drm_test_check_bpc_8_value
[07:29:35] [PASSED] drm_test_check_bpc_10_value
[07:29:35] [PASSED] drm_test_check_bpc_12_value
[07:29:35] [PASSED] drm_test_check_format_value
[07:29:35] [PASSED] drm_test_check_tmds_char_value
[07:29:35] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[07:29:35] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[07:29:35] [PASSED] drm_test_check_mode_valid
[07:29:35] [PASSED] drm_test_check_mode_valid_reject
[07:29:35] [PASSED] drm_test_check_mode_valid_reject_rate
[07:29:35] [PASSED] drm_test_check_mode_valid_reject_max_clock
[07:29:35] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[07:29:35] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[07:29:35] [PASSED] drm_test_check_infoframes
[07:29:35] [PASSED] drm_test_check_reject_avi_infoframe
[07:29:35] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[07:29:35] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[07:29:35] [PASSED] drm_test_check_reject_audio_infoframe
[07:29:35] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[07:29:35] ================= drm_managed (2 subtests) =================
[07:29:35] [PASSED] drm_test_managed_release_action
[07:29:35] [PASSED] drm_test_managed_run_action
[07:29:35] =================== [PASSED] drm_managed ===================
[07:29:35] =================== drm_mm (6 subtests) ====================
[07:29:35] [PASSED] drm_test_mm_init
[07:29:35] [PASSED] drm_test_mm_debug
[07:29:35] [PASSED] drm_test_mm_align32
[07:29:35] [PASSED] drm_test_mm_align64
[07:29:35] [PASSED] drm_test_mm_lowest
[07:29:35] [PASSED] drm_test_mm_highest
[07:29:35] ===================== [PASSED] drm_mm ======================
[07:29:35] ============= drm_modes_analog_tv (5 subtests) =============
[07:29:35] [PASSED] drm_test_modes_analog_tv_mono_576i
[07:29:35] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[07:29:35] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[07:29:35] [PASSED] drm_test_modes_analog_tv_pal_576i
[07:29:35] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[07:29:35] =============== [PASSED] drm_modes_analog_tv ===============
[07:29:35] ============== drm_plane_helper (2 subtests) ===============
[07:29:35] =============== drm_test_check_plane_state ================
[07:29:35] [PASSED] clipping_simple
[07:29:35] [PASSED] clipping_rotate_reflect
[07:29:35] [PASSED] positioning_simple
[07:29:35] [PASSED] upscaling
[07:29:35] [PASSED] downscaling
[07:29:35] [PASSED] rounding1
[07:29:35] [PASSED] rounding2
[07:29:35] [PASSED] rounding3
[07:29:35] [PASSED] rounding4
[07:29:35] =========== [PASSED] drm_test_check_plane_state ============
[07:29:35] =========== drm_test_check_invalid_plane_state ============
[07:29:35] [PASSED] positioning_invalid
[07:29:35] [PASSED] upscaling_invalid
[07:29:35] [PASSED] downscaling_invalid
[07:29:35] ======= [PASSED] drm_test_check_invalid_plane_state ========
[07:29:35] ================ [PASSED] drm_plane_helper =================
[07:29:35] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[07:29:35] ====== drm_test_connector_helper_tv_get_modes_check =======
[07:29:35] [PASSED] None
[07:29:35] [PASSED] PAL
[07:29:35] [PASSED] NTSC
[07:29:35] [PASSED] Both, NTSC Default
[07:29:35] [PASSED] Both, PAL Default
[07:29:35] [PASSED] Both, NTSC Default, with PAL on command-line
[07:29:35] [PASSED] Both, PAL Default, with NTSC on command-line
[07:29:35] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[07:29:35] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[07:29:35] ================== drm_rect (9 subtests) ===================
[07:29:35] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[07:29:35] [PASSED] drm_test_rect_clip_scaled_not_clipped
[07:29:35] [PASSED] drm_test_rect_clip_scaled_clipped
[07:29:35] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[07:29:35] ================= drm_test_rect_intersect =================
[07:29:35] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[07:29:35] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[07:29:35] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[07:29:35] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[07:29:35] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[07:29:35] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[07:29:35] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[07:29:35] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[07:29:35] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[07:29:35] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[07:29:35] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[07:29:35] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[07:29:35] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[07:29:35] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[07:29:35] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[07:29:35] ============= [PASSED] drm_test_rect_intersect =============
[07:29:35] ================ drm_test_rect_calc_hscale ================
[07:29:35] [PASSED] normal use
[07:29:35] [PASSED] out of max range
[07:29:35] [PASSED] out of min range
[07:29:35] [PASSED] zero dst
[07:29:35] [PASSED] negative src
[07:29:35] [PASSED] negative dst
[07:29:35] ============ [PASSED] drm_test_rect_calc_hscale ============
[07:29:35] ================ drm_test_rect_calc_vscale ================
[07:29:35] [PASSED] normal use
[07:29:35] [PASSED] out of max range
[07:29:35] [PASSED] out of min range
[07:29:35] [PASSED] zero dst
[07:29:35] [PASSED] negative src
[07:29:35] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[07:29:35] ============ [PASSED] drm_test_rect_calc_vscale ============
[07:29:35] ================== drm_test_rect_rotate ===================
[07:29:35] [PASSED] reflect-x
[07:29:35] [PASSED] reflect-y
[07:29:35] [PASSED] rotate-0
[07:29:35] [PASSED] rotate-90
[07:29:35] [PASSED] rotate-180
[07:29:35] [PASSED] rotate-270
[07:29:35] ============== [PASSED] drm_test_rect_rotate ===============
[07:29:35] ================ drm_test_rect_rotate_inv =================
[07:29:35] [PASSED] reflect-x
[07:29:35] [PASSED] reflect-y
[07:29:35] [PASSED] rotate-0
[07:29:35] [PASSED] rotate-90
[07:29:35] [PASSED] rotate-180
[07:29:35] [PASSED] rotate-270
[07:29:35] ============ [PASSED] drm_test_rect_rotate_inv =============
[07:29:35] ==================== [PASSED] drm_rect =====================
[07:29:35] ============ drm_sysfb_modeset_test (1 subtest) ============
[07:29:35] ============ drm_test_sysfb_build_fourcc_list =============
[07:29:35] [PASSED] no native formats
[07:29:35] [PASSED] XRGB8888 as native format
[07:29:35] [PASSED] remove duplicates
[07:29:35] [PASSED] convert alpha formats
[07:29:35] [PASSED] random formats
[07:29:35] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[07:29:35] ============= [PASSED] drm_sysfb_modeset_test ==============
[07:29:35] ================== drm_fixp (2 subtests) ===================
[07:29:35] [PASSED] drm_test_int2fixp
[07:29:35] [PASSED] drm_test_sm2fixp
[07:29:35] ==================== [PASSED] drm_fixp =====================
[07:29:35] ============================================================
[07:29:35] Testing complete. Ran 621 tests: passed: 621
[07:29:35] Elapsed time: 25.953s total, 1.720s configuring, 24.065s building, 0.118s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[07:29:35] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:29:37] 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
[07:29:47] Starting KUnit Kernel (1/1)...
[07:29:47] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:29:47] ================= ttm_device (5 subtests) ==================
[07:29:47] [PASSED] ttm_device_init_basic
[07:29:47] [PASSED] ttm_device_init_multiple
[07:29:47] [PASSED] ttm_device_fini_basic
[07:29:47] [PASSED] ttm_device_init_no_vma_man
[07:29:47] ================== ttm_device_init_pools ==================
[07:29:47] [PASSED] No DMA allocations, no DMA32 required
[07:29:47] [PASSED] DMA allocations, DMA32 required
[07:29:47] [PASSED] No DMA allocations, DMA32 required
[07:29:47] [PASSED] DMA allocations, no DMA32 required
[07:29:47] ============== [PASSED] ttm_device_init_pools ==============
[07:29:47] =================== [PASSED] ttm_device ====================
[07:29:47] ================== ttm_pool (8 subtests) ===================
[07:29:47] ================== ttm_pool_alloc_basic ===================
[07:29:47] [PASSED] One page
[07:29:47] [PASSED] More than one page
[07:29:47] [PASSED] Above the allocation limit
[07:29:47] [PASSED] One page, with coherent DMA mappings enabled
[07:29:47] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[07:29:47] ============== [PASSED] ttm_pool_alloc_basic ===============
[07:29:47] ============== ttm_pool_alloc_basic_dma_addr ==============
[07:29:47] [PASSED] One page
[07:29:47] [PASSED] More than one page
[07:29:47] [PASSED] Above the allocation limit
[07:29:47] [PASSED] One page, with coherent DMA mappings enabled
[07:29:47] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[07:29:47] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[07:29:47] [PASSED] ttm_pool_alloc_order_caching_match
[07:29:47] [PASSED] ttm_pool_alloc_caching_mismatch
[07:29:47] [PASSED] ttm_pool_alloc_order_mismatch
[07:29:47] [PASSED] ttm_pool_free_dma_alloc
[07:29:47] [PASSED] ttm_pool_free_no_dma_alloc
[07:29:47] [PASSED] ttm_pool_fini_basic
[07:29:47] ==================== [PASSED] ttm_pool =====================
[07:29:47] ================ ttm_resource (8 subtests) =================
[07:29:47] ================= ttm_resource_init_basic =================
[07:29:47] [PASSED] Init resource in TTM_PL_SYSTEM
[07:29:47] [PASSED] Init resource in TTM_PL_VRAM
[07:29:47] [PASSED] Init resource in a private placement
[07:29:47] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[07:29:47] ============= [PASSED] ttm_resource_init_basic =============
[07:29:47] [PASSED] ttm_resource_init_pinned
[07:29:47] [PASSED] ttm_resource_fini_basic
[07:29:47] [PASSED] ttm_resource_manager_init_basic
[07:29:47] [PASSED] ttm_resource_manager_usage_basic
[07:29:47] [PASSED] ttm_resource_manager_set_used_basic
[07:29:47] [PASSED] ttm_sys_man_alloc_basic
[07:29:47] [PASSED] ttm_sys_man_free_basic
[07:29:47] ================== [PASSED] ttm_resource ===================
[07:29:47] =================== ttm_tt (15 subtests) ===================
[07:29:47] ==================== ttm_tt_init_basic ====================
[07:29:47] [PASSED] Page-aligned size
[07:29:47] [PASSED] Extra pages requested
[07:29:47] ================ [PASSED] ttm_tt_init_basic ================
[07:29:47] [PASSED] ttm_tt_init_misaligned
[07:29:47] [PASSED] ttm_tt_fini_basic
[07:29:47] [PASSED] ttm_tt_fini_sg
[07:29:47] [PASSED] ttm_tt_fini_shmem
[07:29:47] [PASSED] ttm_tt_create_basic
[07:29:47] [PASSED] ttm_tt_create_invalid_bo_type
[07:29:47] [PASSED] ttm_tt_create_ttm_exists
[07:29:47] [PASSED] ttm_tt_create_failed
[07:29:47] [PASSED] ttm_tt_destroy_basic
[07:29:47] [PASSED] ttm_tt_populate_null_ttm
[07:29:47] [PASSED] ttm_tt_populate_populated_ttm
[07:29:47] [PASSED] ttm_tt_unpopulate_basic
[07:29:47] [PASSED] ttm_tt_unpopulate_empty_ttm
[07:29:47] [PASSED] ttm_tt_swapin_basic
[07:29:47] ===================== [PASSED] ttm_tt ======================
[07:29:47] =================== ttm_bo (14 subtests) ===================
[07:29:47] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[07:29:47] [PASSED] Cannot be interrupted and sleeps
[07:29:47] [PASSED] Cannot be interrupted, locks straight away
[07:29:47] [PASSED] Can be interrupted, sleeps
[07:29:47] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[07:29:47] [PASSED] ttm_bo_reserve_locked_no_sleep
[07:29:47] [PASSED] ttm_bo_reserve_no_wait_ticket
[07:29:47] [PASSED] ttm_bo_reserve_double_resv
[07:29:47] [PASSED] ttm_bo_reserve_interrupted
[07:29:47] [PASSED] ttm_bo_reserve_deadlock
[07:29:47] [PASSED] ttm_bo_unreserve_basic
[07:29:47] [PASSED] ttm_bo_unreserve_pinned
[07:29:47] [PASSED] ttm_bo_unreserve_bulk
[07:29:47] [PASSED] ttm_bo_fini_basic
[07:29:47] [PASSED] ttm_bo_fini_shared_resv
[07:29:47] [PASSED] ttm_bo_pin_basic
[07:29:47] [PASSED] ttm_bo_pin_unpin_resource
[07:29:47] [PASSED] ttm_bo_multiple_pin_one_unpin
[07:29:47] ===================== [PASSED] ttm_bo ======================
[07:29:47] ============== ttm_bo_validate (22 subtests) ===============
[07:29:47] ============== ttm_bo_init_reserved_sys_man ===============
[07:29:47] [PASSED] Buffer object for userspace
[07:29:47] [PASSED] Kernel buffer object
[07:29:47] [PASSED] Shared buffer object
[07:29:47] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[07:29:47] ============== ttm_bo_init_reserved_mock_man ==============
[07:29:47] [PASSED] Buffer object for userspace
[07:29:47] [PASSED] Kernel buffer object
[07:29:47] [PASSED] Shared buffer object
[07:29:47] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[07:29:47] [PASSED] ttm_bo_init_reserved_resv
[07:29:47] ================== ttm_bo_validate_basic ==================
[07:29:47] [PASSED] Buffer object for userspace
[07:29:47] [PASSED] Kernel buffer object
[07:29:47] [PASSED] Shared buffer object
[07:29:47] ============== [PASSED] ttm_bo_validate_basic ==============
[07:29:47] [PASSED] ttm_bo_validate_invalid_placement
[07:29:47] ============= ttm_bo_validate_same_placement ==============
[07:29:47] [PASSED] System manager
[07:29:47] [PASSED] VRAM manager
[07:29:47] ========= [PASSED] ttm_bo_validate_same_placement ==========
[07:29:47] [PASSED] ttm_bo_validate_failed_alloc
[07:29:47] [PASSED] ttm_bo_validate_pinned
[07:29:47] [PASSED] ttm_bo_validate_busy_placement
[07:29:47] ================ ttm_bo_validate_multihop =================
[07:29:47] [PASSED] Buffer object for userspace
[07:29:47] [PASSED] Kernel buffer object
[07:29:47] [PASSED] Shared buffer object
[07:29:47] ============ [PASSED] ttm_bo_validate_multihop =============
[07:29:47] ========== ttm_bo_validate_no_placement_signaled ==========
[07:29:47] [PASSED] Buffer object in system domain, no page vector
[07:29:47] [PASSED] Buffer object in system domain with an existing page vector
[07:29:47] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[07:29:47] ======== ttm_bo_validate_no_placement_not_signaled ========
[07:29:47] [PASSED] Buffer object for userspace
[07:29:47] [PASSED] Kernel buffer object
[07:29:47] [PASSED] Shared buffer object
[07:29:47] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[07:29:47] [PASSED] ttm_bo_validate_move_fence_signaled
[07:29:47] ========= ttm_bo_validate_move_fence_not_signaled =========
[07:29:47] [PASSED] Waits for GPU
[07:29:47] [PASSED] Tries to lock straight away
[07:29:47] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[07:29:47] [PASSED] ttm_bo_validate_swapout
[07:29:47] [PASSED] ttm_bo_validate_happy_evict
[07:29:47] [PASSED] ttm_bo_validate_all_pinned_evict
[07:29:47] [PASSED] ttm_bo_validate_allowed_only_evict
[07:29:47] [PASSED] ttm_bo_validate_deleted_evict
[07:29:47] [PASSED] ttm_bo_validate_busy_domain_evict
[07:29:47] [PASSED] ttm_bo_validate_evict_gutting
[07:29:47] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[07:29:47] ================= [PASSED] ttm_bo_validate =================
[07:29:47] ============================================================
[07:29:47] Testing complete. Ran 102 tests: passed: 102
[07:29:47] Elapsed time: 11.450s total, 1.694s configuring, 9.540s building, 0.188s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 48+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev6)
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (17 preceding siblings ...)
2026-03-16 7:29 ` ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev6) Patchwork
@ 2026-03-16 8:18 ` Patchwork
2026-03-16 16:42 ` [PATCH v5 0/2] drm/xe: PAT index validation for CPU_ADDR_MIRROR and madvise Jia Yao
` (8 subsequent siblings)
27 siblings, 0 replies; 48+ messages in thread
From: Patchwork @ 2026-03-16 8:18 UTC (permalink / raw)
To: Jia Yao; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 896 bytes --]
== Series Details ==
Series: drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev6)
URL : https://patchwork.freedesktop.org/series/160797/
State : success
== Summary ==
CI Bug Log - changes from xe-4726-7e7f810f52b5287a8a1cce82eebb4e2ffd082b77_BAT -> xe-pw-160797v6_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 14)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-4726-7e7f810f52b5287a8a1cce82eebb4e2ffd082b77 -> xe-pw-160797v6
IGT_8805: 8805
xe-4726-7e7f810f52b5287a8a1cce82eebb4e2ffd082b77: 7e7f810f52b5287a8a1cce82eebb4e2ffd082b77
xe-pw-160797v6: 160797v6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v6/index.html
[-- Attachment #2: Type: text/html, Size: 1444 bytes --]
^ permalink raw reply [flat|nested] 48+ messages in thread
* Re: [PATCH v5 1/2] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise
2026-03-16 7:22 ` [PATCH v5 1/2] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
@ 2026-03-16 10:59 ` Matthew Auld
2026-03-16 15:29 ` Lin, Shuicheng
0 siblings, 1 reply; 48+ messages in thread
From: Matthew Auld @ 2026-03-16 10:59 UTC (permalink / raw)
To: Jia Yao, intel-xe
Cc: stable, Shuicheng Lin, Mathew Alwin, Michal Mrozek, Matthew Brost,
José Roberto de Souza
On 16/03/2026 07:22, Jia Yao wrote:
> Add validation in xe_vm_madvise_ioctl() to reject PAT indices with
> XE_COH_NONE coherency mode when applied to CPU cached memory.
>
> Using coh_none with CPU cached buffers is a security issue. When the
> kernel clears pages before reallocation, the clear operation stays in
> CPU cache (dirty). GPU with coh_none can bypass CPU caches and read
> stale sensitive data directly from DRAM, potentially leaking data from
> previously freed pages of other processes.
>
> This aligns with the existing validation in vm_bind path
> (xe_vm_bind_ioctl_validate_bo).
>
> v2(Matthew brost)
> - Add fixes
> - Move one debug print to better place
>
> v3(Matthew Auld)
> - Should be drm/xe/uapi
> - More Cc
>
> v4(Shuicheng Lin)
> - Fix kmem leak issues by the way
>
> v5
> - Remove kmem leak because it has been merged by other patch
>
> Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
> Cc: stable@vger.kernel.org # v6.18
> Cc: Shuicheng Lin <shuicheng.lin@intel.com>
> Cc: Mathew Alwin <alwin.mathew@intel.com>
> Cc: Michal Mrozek <michal.mrozek@intel.com>
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: Matthew Auld <matthew.auld@intel.com>
> Signed-off-by: Jia Yao <jia.yao@intel.com>
> Acked-by: Michal Mrozek <michal.mrozek@intel.com>
> Acked-by: José Roberto de Souza <jose.souza@intel.com>
> ---
> drivers/gpu/drm/xe/xe_vm_madvise.c | 46 +++++++++++++++++++++++++++++-
> 1 file changed, 45 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c b/drivers/gpu/drm/xe/xe_vm_madvise.c
> index 869db304d96d..5d0acaad924c 100644
> --- a/drivers/gpu/drm/xe/xe_vm_madvise.c
> +++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
> @@ -365,6 +365,43 @@ static void xe_madvise_details_fini(struct xe_madvise_details *details)
> drm_pagemap_put(details->dpagemap);
> }
>
> +static bool check_pat_args_are_sane(struct xe_device *xe,
> + struct xe_vmas_in_madvise_range *madvise_range,
> + u16 pat_index)
> +{
> + u16 coh_mode = xe_pat_index_get_coh_mode(xe, pat_index);
> + int i;
> +
> + /*
> + * Using coh_none with CPU cached buffers is not allowed.
> + * Otherwise CPU page clearing can be bypassed, which is a
> + * security issue. GPU can directly access system memory and
> + * bypass CPU caches, potentially reading stale sensitive data
> + * from previously freed pages.
> + */
> + if (coh_mode != XE_COH_NONE)
> + return true;
> +
> + for (i = 0; i < madvise_range->num_vmas; i++) {
> + struct xe_vma *vma = madvise_range->vmas[i];
> + struct xe_bo *bo = xe_vma_bo(vma);
> +
> + if (bo) {
> + /* BO with WB caching + COH_NONE is not allowed */
> + if (XE_IOCTL_DBG(xe, bo->cpu_caching == DRM_XE_GEM_CPU_CACHING_WB))
> + return false;
> + /* Imported dma-buf without caching info, assume cached */
> + if (XE_IOCTL_DBG(xe, !bo->cpu_caching))
> + return false;
> + } else if (XE_IOCTL_DBG(xe, xe_vma_is_cpu_addr_mirror(vma) ||
> + xe_vma_is_userptr(vma)))
> + /* System memory (userptr/SVM) is always CPU cached */
> + return false;
> + }
> +
> + return true;
> +}
> +
> static bool check_bo_args_are_sane(struct xe_vm *vm, struct xe_vma **vmas,
> int num_vmas, u32 atomic_val)
> {
> @@ -455,6 +492,14 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void *data, struct drm_file *fil
> if (err || !madvise_range.num_vmas)
> goto madv_fini;
>
> + if (args->type == DRM_XE_MEM_RANGE_ATTR_PAT) {
> + if (!check_pat_args_are_sane(xe, &madvise_range,
> + args->pat_index.val)) {
> + err = -EINVAL;
> + goto free_vmas;
> + }
> + }
> +
> if (madvise_range.has_bo_vmas) {
> if (args->type == DRM_XE_MEM_RANGE_ATTR_ATOMIC) {
> if (!check_bo_args_are_sane(vm, madvise_range.vmas,
> @@ -500,7 +545,6 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void *data, struct drm_file *fil
> drm_exec_fini(&exec);
> free_vmas:
> kfree(madvise_range.vmas);
> - madvise_range.vmas = NULL;
Do we really need this change?
Otherwise,
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
> madv_fini:
> xe_madvise_details_fini(&details);
> unlock_vm:
^ permalink raw reply [flat|nested] 48+ messages in thread
* Re: [PATCH v5 2/2] drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR
2026-03-16 7:22 ` [PATCH v5 2/2] drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR Jia Yao
@ 2026-03-16 11:40 ` Matthew Auld
0 siblings, 0 replies; 48+ messages in thread
From: Matthew Auld @ 2026-03-16 11:40 UTC (permalink / raw)
To: Jia Yao, intel-xe
Cc: stable, Shuicheng Lin, Mathew Alwin, Michal Mrozek, Matthew Brost
On 16/03/2026 07:22, Jia Yao wrote:
> Add validation in xe_vm_bind_ioctl() to reject PAT indices with
> XE_COH_NONE coherency mode when used with
> DRM_XE_VM_BIND_FLAG_CPU_ADDR_MIRROR, consistent with the existing
> validation for DRM_XE_VM_BIND_OP_MAP_USERPTR.
>
> CPU address mirror mappings use system memory which is CPU cached,
> making them incompatible with COH_NONE PAT index. Using COH_NONE with
> CPU cached buffers is a security issue: GPU can bypass CPU caches and
> directly read stale sensitive data from DRAM, potentially leaking data
> from previously freed pages.
>
> Although CPU_ADDR_MIRROR mappings don't create actual memory mappings
> (the range is reserved for dynamic mapping on GPU page faults), the
> underlying system memory is still CPU cached, so the same PAT coherency
> restrictions as MAP_USERPTR should apply.
>
> Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
Is this the right fixes tag?
> Cc: stable@vger.kernel.org # v6.18
> Cc: Shuicheng Lin <shuicheng.lin@intel.com>
> Cc: Mathew Alwin <alwin.mathew@intel.com>
> Cc: Michal Mrozek <michal.mrozek@intel.com>
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: Matthew Auld <matthew.auld@intel.com>
> Signed-off-by: Jia Yao <jia.yao@intel.com>
As discussed offline, I think this is needed. My understanding is that
when binding an svm range we use the parent vma pat index, and without
using the madvise pat control, the default pat index is whatever the
user selects here, which could be incoherent, and on least igpu that
will be problematic when accessing CPU cached system memory.
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
> ---
> drivers/gpu/drm/xe/xe_vm.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
> index 5572e12c2a7e..1c4b4a5eeadb 100644
> --- a/drivers/gpu/drm/xe/xe_vm.c
> +++ b/drivers/gpu/drm/xe/xe_vm.c
> @@ -3491,7 +3491,7 @@ static int vm_bind_ioctl_check_args(struct xe_device *xe, struct xe_vm *vm,
> XE_IOCTL_DBG(xe, obj &&
> op == DRM_XE_VM_BIND_OP_MAP_USERPTR) ||
> XE_IOCTL_DBG(xe, coh_mode == XE_COH_NONE &&
> - op == DRM_XE_VM_BIND_OP_MAP_USERPTR) ||
> + (op == DRM_XE_VM_BIND_OP_MAP_USERPTR || is_cpu_addr_mirror)) ||
> XE_IOCTL_DBG(xe, comp_en &&
> op == DRM_XE_VM_BIND_OP_MAP_USERPTR) ||
> XE_IOCTL_DBG(xe, op == DRM_XE_VM_BIND_OP_MAP_USERPTR &&
^ permalink raw reply [flat|nested] 48+ messages in thread
* RE: [PATCH v5 1/2] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise
2026-03-16 10:59 ` Matthew Auld
@ 2026-03-16 15:29 ` Lin, Shuicheng
0 siblings, 0 replies; 48+ messages in thread
From: Lin, Shuicheng @ 2026-03-16 15:29 UTC (permalink / raw)
To: Auld, Matthew, Yao, Jia, intel-xe@lists.freedesktop.org
Cc: stable@vger.kernel.org, Mathew, Alwin, Mrozek, Michal,
Brost, Matthew, Souza, Jose
On Mon, Mar 16, 2026 3:59 AM Matthew Auld wrote:
> On 16/03/2026 07:22, Jia Yao wrote:
> > Add validation in xe_vm_madvise_ioctl() to reject PAT indices with
> > XE_COH_NONE coherency mode when applied to CPU cached memory.
> >
> > Using coh_none with CPU cached buffers is a security issue. When the
> > kernel clears pages before reallocation, the clear operation stays in
> > CPU cache (dirty). GPU with coh_none can bypass CPU caches and read
> > stale sensitive data directly from DRAM, potentially leaking data from
> > previously freed pages of other processes.
> >
> > This aligns with the existing validation in vm_bind path
> > (xe_vm_bind_ioctl_validate_bo).
> >
> > v2(Matthew brost)
> > - Add fixes
> > - Move one debug print to better place
> >
> > v3(Matthew Auld)
> > - Should be drm/xe/uapi
> > - More Cc
> >
> > v4(Shuicheng Lin)
> > - Fix kmem leak issues by the way
It is better to fix issue with different patch, as they should have different Fixes tag.
> >
> > v5
> > - Remove kmem leak because it has been merged by other patch
s/other/another
> >
> > Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
> > Cc: stable@vger.kernel.org # v6.18
> > Cc: Shuicheng Lin <shuicheng.lin@intel.com>
> > Cc: Mathew Alwin <alwin.mathew@intel.com>
> > Cc: Michal Mrozek <michal.mrozek@intel.com>
> > Cc: Matthew Brost <matthew.brost@intel.com>
> > Cc: Matthew Auld <matthew.auld@intel.com>
> > Signed-off-by: Jia Yao <jia.yao@intel.com>
> > Acked-by: Michal Mrozek <michal.mrozek@intel.com>
> > Acked-by: José Roberto de Souza <jose.souza@intel.com>
> > ---
> > drivers/gpu/drm/xe/xe_vm_madvise.c | 46
> +++++++++++++++++++++++++++++-
> > 1 file changed, 45 insertions(+), 1 deletion(-)
> >
> > diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c
> > b/drivers/gpu/drm/xe/xe_vm_madvise.c
> > index 869db304d96d..5d0acaad924c 100644
> > --- a/drivers/gpu/drm/xe/xe_vm_madvise.c
> > +++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
> > @@ -365,6 +365,43 @@ static void xe_madvise_details_fini(struct
> xe_madvise_details *details)
> > drm_pagemap_put(details->dpagemap);
> > }
> >
> > +static bool check_pat_args_are_sane(struct xe_device *xe,
> > + struct xe_vmas_in_madvise_range
> *madvise_range,
> > + u16 pat_index)
> > +{
> > + u16 coh_mode = xe_pat_index_get_coh_mode(xe, pat_index);
> > + int i;
> > +
> > + /*
> > + * Using coh_none with CPU cached buffers is not allowed.
> > + * Otherwise CPU page clearing can be bypassed, which is a
> > + * security issue. GPU can directly access system memory and
> > + * bypass CPU caches, potentially reading stale sensitive data
> > + * from previously freed pages.
> > + */
> > + if (coh_mode != XE_COH_NONE)
> > + return true;
> > +
> > + for (i = 0; i < madvise_range->num_vmas; i++) {
> > + struct xe_vma *vma = madvise_range->vmas[i];
> > + struct xe_bo *bo = xe_vma_bo(vma);
> > +
> > + if (bo) {
> > + /* BO with WB caching + COH_NONE is not allowed */
> > + if (XE_IOCTL_DBG(xe, bo->cpu_caching ==
> DRM_XE_GEM_CPU_CACHING_WB))
> > + return false;
> > + /* Imported dma-buf without caching info, assume
> cached */
> > + if (XE_IOCTL_DBG(xe, !bo->cpu_caching))
> > + return false;
> > + } else if (XE_IOCTL_DBG(xe, xe_vma_is_cpu_addr_mirror(vma)
> ||
> > + xe_vma_is_userptr(vma)))
> > + /* System memory (userptr/SVM) is always CPU
> cached */
> > + return false;
> > + }
> > +
> > + return true;
> > +}
> > +
> > static bool check_bo_args_are_sane(struct xe_vm *vm, struct xe_vma
> **vmas,
> > int num_vmas, u32 atomic_val)
> > {
> > @@ -455,6 +492,14 @@ int xe_vm_madvise_ioctl(struct drm_device *dev,
> void *data, struct drm_file *fil
> > if (err || !madvise_range.num_vmas)
> > goto madv_fini;
> >
> > + if (args->type == DRM_XE_MEM_RANGE_ATTR_PAT) {
> > + if (!check_pat_args_are_sane(xe, &madvise_range,
> > + args->pat_index.val)) {
> > + err = -EINVAL;
> > + goto free_vmas;
> > + }
> > + }
> > +
> > if (madvise_range.has_bo_vmas) {
> > if (args->type == DRM_XE_MEM_RANGE_ATTR_ATOMIC) {
> > if (!check_bo_args_are_sane(vm,
> madvise_range.vmas, @@ -500,7
> > +545,6 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void *data,
> struct drm_file *fil
> > drm_exec_fini(&exec);
> > free_vmas:
> > kfree(madvise_range.vmas);
> > - madvise_range.vmas = NULL;
>
> Do we really need this change?
I think it is suggested by me. Since there is Fixes tag for this patch, to avoid backport conflict and restrict change ONLY to the fix, I prefer we don't do this change also.
Shuicheng
>
> Otherwise,
> Reviewed-by: Matthew Auld <matthew.auld@intel.com>
>
> > madv_fini:
> > xe_madvise_details_fini(&details);
> > unlock_vm:
^ permalink raw reply [flat|nested] 48+ messages in thread
* [PATCH v5 0/2] drm/xe: PAT index validation for CPU_ADDR_MIRROR and madvise
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (18 preceding siblings ...)
2026-03-16 8:18 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-03-16 16:42 ` Jia Yao
2026-03-16 16:42 ` [PATCH v6 1/2] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
2026-03-16 16:42 ` [PATCH v6 2/2] drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR Jia Yao
2026-03-16 21:28 ` ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev7) Patchwork
` (7 subsequent siblings)
27 siblings, 2 replies; 48+ messages in thread
From: Jia Yao @ 2026-03-16 16:42 UTC (permalink / raw)
To: intel-xe
Cc: Jia Yao, stable, Shuicheng Lin, Mathew Alwin, Michal Mrozek,
Matthew Brost, Matthew Auld
This series strengthens PAT index validation to reject unsafe
configurations for CPU cached memory, preventing cases where the GPU may
bypass CPU caches and observe stale or sensitive data.
Patch 1 enforces PAT validation for the madvise ioctl path, ensuring
XE_COH_NONE cannot be used on CPU cached buffers, including CPU address
mirror and userptr-backed memory.
Patch 2 applies the same validation to vm_bind, treating
DRM_XE_VM_BIND_FLAG_CPU_ADDR_MIRROR the same as MAP_USERPTR with
respect to permissible PAT indices.
Both patches close a security gap affecting CPU cached memory access
when incoherent PAT values are used.
Changes since v5:
- Added an additional Fixes tag to correctly reference the root cause
patch enabling the problematic PAT behavior.
Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
Fixes: e1fbc4f18d5b ("drm/xe/uapi: support pat_index selection with vm_bind")
Cc: stable@vger.kernel.org # v6.18
Cc: Shuicheng Lin <shuicheng.lin@intel.com>
Cc: Mathew Alwin <alwin.mathew@intel.com>
Cc: Michal Mrozek <michal.mrozek@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Jia Yao (2):
drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in
madvise
drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR
drivers/gpu/drm/xe/xe_vm.c | 2 +-
drivers/gpu/drm/xe/xe_vm_madvise.c | 45 ++++++++++++++++++++++++++++++
2 files changed, 46 insertions(+), 1 deletion(-)
--
2.43.0
^ permalink raw reply [flat|nested] 48+ messages in thread
* [PATCH v6 1/2] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise
2026-03-16 16:42 ` [PATCH v5 0/2] drm/xe: PAT index validation for CPU_ADDR_MIRROR and madvise Jia Yao
@ 2026-03-16 16:42 ` Jia Yao
2026-03-16 16:42 ` [PATCH v6 2/2] drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR Jia Yao
1 sibling, 0 replies; 48+ messages in thread
From: Jia Yao @ 2026-03-16 16:42 UTC (permalink / raw)
To: intel-xe
Cc: Jia Yao, stable, Shuicheng Lin, Mathew Alwin, Michal Mrozek,
Matthew Brost, Matthew Auld, José Roberto de Souza
Add validation in xe_vm_madvise_ioctl() to reject PAT indices with
XE_COH_NONE coherency mode when applied to CPU cached memory.
Using coh_none with CPU cached buffers is a security issue. When the
kernel clears pages before reallocation, the clear operation stays in
CPU cache (dirty). GPU with coh_none can bypass CPU caches and read
stale sensitive data directly from DRAM, potentially leaking data from
previously freed pages of other processes.
This aligns with the existing validation in vm_bind path
(xe_vm_bind_ioctl_validate_bo).
v2(Matthew brost)
- Add fixes
- Move one debug print to better place
v3(Matthew Auld)
- Should be drm/xe/uapi
- More Cc
v4(Shuicheng Lin)
- Fix kmem leak issues by the way
v5
- Remove kmem leak because it has been merged by another patch
v6
- Remove the fix which is not related to current fix
Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
Cc: stable@vger.kernel.org # v6.18
Cc: Shuicheng Lin <shuicheng.lin@intel.com>
Cc: Mathew Alwin <alwin.mathew@intel.com>
Cc: Michal Mrozek <michal.mrozek@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Jia Yao <jia.yao@intel.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Acked-by: Michal Mrozek <michal.mrozek@intel.com>
Acked-by: José Roberto de Souza <jose.souza@intel.com>
---
drivers/gpu/drm/xe/xe_vm_madvise.c | 45 ++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c b/drivers/gpu/drm/xe/xe_vm_madvise.c
index 869db304d96d..f26eb86e9c47 100644
--- a/drivers/gpu/drm/xe/xe_vm_madvise.c
+++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
@@ -365,6 +365,43 @@ static void xe_madvise_details_fini(struct xe_madvise_details *details)
drm_pagemap_put(details->dpagemap);
}
+static bool check_pat_args_are_sane(struct xe_device *xe,
+ struct xe_vmas_in_madvise_range *madvise_range,
+ u16 pat_index)
+{
+ u16 coh_mode = xe_pat_index_get_coh_mode(xe, pat_index);
+ int i;
+
+ /*
+ * Using coh_none with CPU cached buffers is not allowed.
+ * Otherwise CPU page clearing can be bypassed, which is a
+ * security issue. GPU can directly access system memory and
+ * bypass CPU caches, potentially reading stale sensitive data
+ * from previously freed pages.
+ */
+ if (coh_mode != XE_COH_NONE)
+ return true;
+
+ for (i = 0; i < madvise_range->num_vmas; i++) {
+ struct xe_vma *vma = madvise_range->vmas[i];
+ struct xe_bo *bo = xe_vma_bo(vma);
+
+ if (bo) {
+ /* BO with WB caching + COH_NONE is not allowed */
+ if (XE_IOCTL_DBG(xe, bo->cpu_caching == DRM_XE_GEM_CPU_CACHING_WB))
+ return false;
+ /* Imported dma-buf without caching info, assume cached */
+ if (XE_IOCTL_DBG(xe, !bo->cpu_caching))
+ return false;
+ } else if (XE_IOCTL_DBG(xe, xe_vma_is_cpu_addr_mirror(vma) ||
+ xe_vma_is_userptr(vma)))
+ /* System memory (userptr/SVM) is always CPU cached */
+ return false;
+ }
+
+ return true;
+}
+
static bool check_bo_args_are_sane(struct xe_vm *vm, struct xe_vma **vmas,
int num_vmas, u32 atomic_val)
{
@@ -455,6 +492,14 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void *data, struct drm_file *fil
if (err || !madvise_range.num_vmas)
goto madv_fini;
+ if (args->type == DRM_XE_MEM_RANGE_ATTR_PAT) {
+ if (!check_pat_args_are_sane(xe, &madvise_range,
+ args->pat_index.val)) {
+ err = -EINVAL;
+ goto free_vmas;
+ }
+ }
+
if (madvise_range.has_bo_vmas) {
if (args->type == DRM_XE_MEM_RANGE_ATTR_ATOMIC) {
if (!check_bo_args_are_sane(vm, madvise_range.vmas,
--
2.43.0
^ permalink raw reply related [flat|nested] 48+ messages in thread
* [PATCH v6 2/2] drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR
2026-03-16 16:42 ` [PATCH v5 0/2] drm/xe: PAT index validation for CPU_ADDR_MIRROR and madvise Jia Yao
2026-03-16 16:42 ` [PATCH v6 1/2] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
@ 2026-03-16 16:42 ` Jia Yao
2026-03-17 10:45 ` Matthew Auld
1 sibling, 1 reply; 48+ messages in thread
From: Jia Yao @ 2026-03-16 16:42 UTC (permalink / raw)
To: intel-xe
Cc: Jia Yao, stable, Shuicheng Lin, Mathew Alwin, Michal Mrozek,
Matthew Brost, Matthew Auld
Add validation in xe_vm_bind_ioctl() to reject PAT indices with
XE_COH_NONE coherency mode when used with
DRM_XE_VM_BIND_FLAG_CPU_ADDR_MIRROR, consistent with the existing
validation for DRM_XE_VM_BIND_OP_MAP_USERPTR.
CPU address mirror mappings use system memory which is CPU cached,
making them incompatible with COH_NONE PAT index. Using COH_NONE with
CPU cached buffers is a security issue: GPU can bypass CPU caches and
directly read stale sensitive data from DRAM, potentially leaking data
from previously freed pages.
Although CPU_ADDR_MIRROR mappings don't create actual memory mappings
(the range is reserved for dynamic mapping on GPU page faults), the
underlying system memory is still CPU cached, so the same PAT coherency
restrictions as MAP_USERPTR should apply.
v2:
- Correct fix tag
Fixes: e1fbc4f18d5b ("drm/xe/uapi: support pat_index selection with vm_bind")
Cc: stable@vger.kernel.org # v6.18
Cc: Shuicheng Lin <shuicheng.lin@intel.com>
Cc: Mathew Alwin <alwin.mathew@intel.com>
Cc: Michal Mrozek <michal.mrozek@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Jia Yao <jia.yao@intel.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
---
drivers/gpu/drm/xe/xe_vm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 5572e12c2a7e..1c4b4a5eeadb 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -3491,7 +3491,7 @@ static int vm_bind_ioctl_check_args(struct xe_device *xe, struct xe_vm *vm,
XE_IOCTL_DBG(xe, obj &&
op == DRM_XE_VM_BIND_OP_MAP_USERPTR) ||
XE_IOCTL_DBG(xe, coh_mode == XE_COH_NONE &&
- op == DRM_XE_VM_BIND_OP_MAP_USERPTR) ||
+ (op == DRM_XE_VM_BIND_OP_MAP_USERPTR || is_cpu_addr_mirror)) ||
XE_IOCTL_DBG(xe, comp_en &&
op == DRM_XE_VM_BIND_OP_MAP_USERPTR) ||
XE_IOCTL_DBG(xe, op == DRM_XE_VM_BIND_OP_MAP_USERPTR &&
--
2.43.0
^ permalink raw reply related [flat|nested] 48+ messages in thread
* ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev7)
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (19 preceding siblings ...)
2026-03-16 16:42 ` [PATCH v5 0/2] drm/xe: PAT index validation for CPU_ADDR_MIRROR and madvise Jia Yao
@ 2026-03-16 21:28 ` Patchwork
2026-03-16 22:03 ` ✓ Xe.CI.BAT: " Patchwork
` (6 subsequent siblings)
27 siblings, 0 replies; 48+ messages in thread
From: Patchwork @ 2026-03-16 21:28 UTC (permalink / raw)
To: Jia Yao; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev7)
URL : https://patchwork.freedesktop.org/series/160797/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[21:27:23] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:27:27] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[21:27:57] Starting KUnit Kernel (1/1)...
[21:27:57] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:27:58] ================== guc_buf (11 subtests) ===================
[21:27:58] [PASSED] test_smallest
[21:27:58] [PASSED] test_largest
[21:27:58] [PASSED] test_granular
[21:27:58] [PASSED] test_unique
[21:27:58] [PASSED] test_overlap
[21:27:58] [PASSED] test_reusable
[21:27:58] [PASSED] test_too_big
[21:27:58] [PASSED] test_flush
[21:27:58] [PASSED] test_lookup
[21:27:58] [PASSED] test_data
[21:27:58] [PASSED] test_class
[21:27:58] ===================== [PASSED] guc_buf =====================
[21:27:58] =================== guc_dbm (7 subtests) ===================
[21:27:58] [PASSED] test_empty
[21:27:58] [PASSED] test_default
[21:27:58] ======================== test_size ========================
[21:27:58] [PASSED] 4
[21:27:58] [PASSED] 8
[21:27:58] [PASSED] 32
[21:27:58] [PASSED] 256
[21:27:58] ==================== [PASSED] test_size ====================
[21:27:58] ======================= test_reuse ========================
[21:27:58] [PASSED] 4
[21:27:58] [PASSED] 8
[21:27:58] [PASSED] 32
[21:27:58] [PASSED] 256
[21:27:58] =================== [PASSED] test_reuse ====================
[21:27:58] =================== test_range_overlap ====================
[21:27:58] [PASSED] 4
[21:27:58] [PASSED] 8
[21:27:58] [PASSED] 32
[21:27:58] [PASSED] 256
[21:27:58] =============== [PASSED] test_range_overlap ================
[21:27:58] =================== test_range_compact ====================
[21:27:58] [PASSED] 4
[21:27:58] [PASSED] 8
[21:27:58] [PASSED] 32
[21:27:58] [PASSED] 256
[21:27:58] =============== [PASSED] test_range_compact ================
[21:27:58] ==================== test_range_spare =====================
[21:27:58] [PASSED] 4
[21:27:58] [PASSED] 8
[21:27:58] [PASSED] 32
[21:27:58] [PASSED] 256
[21:27:58] ================ [PASSED] test_range_spare =================
[21:27:58] ===================== [PASSED] guc_dbm =====================
[21:27:58] =================== guc_idm (6 subtests) ===================
[21:27:58] [PASSED] bad_init
[21:27:58] [PASSED] no_init
[21:27:58] [PASSED] init_fini
[21:27:58] [PASSED] check_used
[21:27:58] [PASSED] check_quota
[21:27:58] [PASSED] check_all
[21:27:58] ===================== [PASSED] guc_idm =====================
[21:27:58] ================== no_relay (3 subtests) ===================
[21:27:58] [PASSED] xe_drops_guc2pf_if_not_ready
[21:27:58] [PASSED] xe_drops_guc2vf_if_not_ready
[21:27:58] [PASSED] xe_rejects_send_if_not_ready
[21:27:58] ==================== [PASSED] no_relay =====================
[21:27:58] ================== pf_relay (14 subtests) ==================
[21:27:58] [PASSED] pf_rejects_guc2pf_too_short
[21:27:58] [PASSED] pf_rejects_guc2pf_too_long
[21:27:58] [PASSED] pf_rejects_guc2pf_no_payload
[21:27:58] [PASSED] pf_fails_no_payload
[21:27:58] [PASSED] pf_fails_bad_origin
[21:27:58] [PASSED] pf_fails_bad_type
[21:27:58] [PASSED] pf_txn_reports_error
[21:27:58] [PASSED] pf_txn_sends_pf2guc
[21:27:58] [PASSED] pf_sends_pf2guc
[21:27:58] [SKIPPED] pf_loopback_nop
[21:27:58] [SKIPPED] pf_loopback_echo
[21:27:58] [SKIPPED] pf_loopback_fail
[21:27:58] [SKIPPED] pf_loopback_busy
[21:27:58] [SKIPPED] pf_loopback_retry
[21:27:58] ==================== [PASSED] pf_relay =====================
[21:27:58] ================== vf_relay (3 subtests) ===================
[21:27:58] [PASSED] vf_rejects_guc2vf_too_short
[21:27:58] [PASSED] vf_rejects_guc2vf_too_long
[21:27:58] [PASSED] vf_rejects_guc2vf_no_payload
[21:27:58] ==================== [PASSED] vf_relay =====================
[21:27:58] ================ pf_gt_config (9 subtests) =================
[21:27:58] [PASSED] fair_contexts_1vf
[21:27:58] [PASSED] fair_doorbells_1vf
[21:27:58] [PASSED] fair_ggtt_1vf
[21:27:58] ====================== fair_vram_1vf ======================
[21:27:58] [PASSED] 3.50 GiB
[21:27:58] [PASSED] 11.5 GiB
[21:27:58] [PASSED] 15.5 GiB
[21:27:58] [PASSED] 31.5 GiB
[21:27:58] [PASSED] 63.5 GiB
[21:27:58] [PASSED] 1.91 GiB
[21:27:58] ================== [PASSED] fair_vram_1vf ==================
[21:27:58] ================ fair_vram_1vf_admin_only =================
[21:27:58] [PASSED] 3.50 GiB
[21:27:58] [PASSED] 11.5 GiB
[21:27:58] [PASSED] 15.5 GiB
[21:27:58] [PASSED] 31.5 GiB
[21:27:58] [PASSED] 63.5 GiB
[21:27:58] [PASSED] 1.91 GiB
[21:27:58] ============ [PASSED] fair_vram_1vf_admin_only =============
[21:27:58] ====================== fair_contexts ======================
[21:27:58] [PASSED] 1 VF
[21:27:58] [PASSED] 2 VFs
[21:27:58] [PASSED] 3 VFs
[21:27:58] [PASSED] 4 VFs
[21:27:58] [PASSED] 5 VFs
[21:27:58] [PASSED] 6 VFs
[21:27:58] [PASSED] 7 VFs
[21:27:58] [PASSED] 8 VFs
[21:27:58] [PASSED] 9 VFs
[21:27:58] [PASSED] 10 VFs
[21:27:58] [PASSED] 11 VFs
[21:27:58] [PASSED] 12 VFs
[21:27:58] [PASSED] 13 VFs
[21:27:58] [PASSED] 14 VFs
[21:27:58] [PASSED] 15 VFs
[21:27:58] [PASSED] 16 VFs
[21:27:58] [PASSED] 17 VFs
[21:27:58] [PASSED] 18 VFs
[21:27:58] [PASSED] 19 VFs
[21:27:58] [PASSED] 20 VFs
[21:27:58] [PASSED] 21 VFs
[21:27:58] [PASSED] 22 VFs
[21:27:58] [PASSED] 23 VFs
[21:27:58] [PASSED] 24 VFs
[21:27:58] [PASSED] 25 VFs
[21:27:58] [PASSED] 26 VFs
[21:27:58] [PASSED] 27 VFs
[21:27:58] [PASSED] 28 VFs
[21:27:58] [PASSED] 29 VFs
[21:27:58] [PASSED] 30 VFs
[21:27:58] [PASSED] 31 VFs
[21:27:58] [PASSED] 32 VFs
[21:27:58] [PASSED] 33 VFs
[21:27:58] [PASSED] 34 VFs
[21:27:58] [PASSED] 35 VFs
[21:27:58] [PASSED] 36 VFs
[21:27:58] [PASSED] 37 VFs
[21:27:58] [PASSED] 38 VFs
[21:27:58] [PASSED] 39 VFs
[21:27:58] [PASSED] 40 VFs
[21:27:58] [PASSED] 41 VFs
[21:27:58] [PASSED] 42 VFs
[21:27:58] [PASSED] 43 VFs
[21:27:58] [PASSED] 44 VFs
[21:27:58] [PASSED] 45 VFs
[21:27:58] [PASSED] 46 VFs
[21:27:58] [PASSED] 47 VFs
[21:27:58] [PASSED] 48 VFs
[21:27:58] [PASSED] 49 VFs
[21:27:58] [PASSED] 50 VFs
[21:27:58] [PASSED] 51 VFs
[21:27:58] [PASSED] 52 VFs
[21:27:58] [PASSED] 53 VFs
[21:27:58] [PASSED] 54 VFs
[21:27:58] [PASSED] 55 VFs
[21:27:58] [PASSED] 56 VFs
[21:27:58] [PASSED] 57 VFs
[21:27:58] [PASSED] 58 VFs
[21:27:58] [PASSED] 59 VFs
[21:27:58] [PASSED] 60 VFs
[21:27:58] [PASSED] 61 VFs
[21:27:58] [PASSED] 62 VFs
[21:27:58] [PASSED] 63 VFs
[21:27:58] ================== [PASSED] fair_contexts ==================
[21:27:58] ===================== fair_doorbells ======================
[21:27:58] [PASSED] 1 VF
[21:27:58] [PASSED] 2 VFs
[21:27:58] [PASSED] 3 VFs
[21:27:58] [PASSED] 4 VFs
[21:27:58] [PASSED] 5 VFs
[21:27:58] [PASSED] 6 VFs
[21:27:58] [PASSED] 7 VFs
[21:27:58] [PASSED] 8 VFs
[21:27:58] [PASSED] 9 VFs
[21:27:58] [PASSED] 10 VFs
[21:27:58] [PASSED] 11 VFs
[21:27:58] [PASSED] 12 VFs
[21:27:58] [PASSED] 13 VFs
[21:27:58] [PASSED] 14 VFs
[21:27:58] [PASSED] 15 VFs
[21:27:58] [PASSED] 16 VFs
[21:27:58] [PASSED] 17 VFs
[21:27:58] [PASSED] 18 VFs
[21:27:58] [PASSED] 19 VFs
[21:27:58] [PASSED] 20 VFs
[21:27:58] [PASSED] 21 VFs
[21:27:58] [PASSED] 22 VFs
[21:27:58] [PASSED] 23 VFs
[21:27:58] [PASSED] 24 VFs
[21:27:58] [PASSED] 25 VFs
[21:27:58] [PASSED] 26 VFs
[21:27:58] [PASSED] 27 VFs
[21:27:58] [PASSED] 28 VFs
[21:27:58] [PASSED] 29 VFs
[21:27:58] [PASSED] 30 VFs
[21:27:58] [PASSED] 31 VFs
[21:27:58] [PASSED] 32 VFs
[21:27:58] [PASSED] 33 VFs
[21:27:58] [PASSED] 34 VFs
[21:27:58] [PASSED] 35 VFs
[21:27:58] [PASSED] 36 VFs
[21:27:58] [PASSED] 37 VFs
[21:27:58] [PASSED] 38 VFs
[21:27:58] [PASSED] 39 VFs
[21:27:58] [PASSED] 40 VFs
[21:27:58] [PASSED] 41 VFs
[21:27:58] [PASSED] 42 VFs
[21:27:58] [PASSED] 43 VFs
[21:27:58] [PASSED] 44 VFs
[21:27:58] [PASSED] 45 VFs
[21:27:58] [PASSED] 46 VFs
[21:27:58] [PASSED] 47 VFs
[21:27:58] [PASSED] 48 VFs
[21:27:58] [PASSED] 49 VFs
[21:27:58] [PASSED] 50 VFs
[21:27:58] [PASSED] 51 VFs
[21:27:58] [PASSED] 52 VFs
[21:27:58] [PASSED] 53 VFs
[21:27:58] [PASSED] 54 VFs
[21:27:58] [PASSED] 55 VFs
[21:27:58] [PASSED] 56 VFs
[21:27:58] [PASSED] 57 VFs
[21:27:58] [PASSED] 58 VFs
[21:27:58] [PASSED] 59 VFs
[21:27:58] [PASSED] 60 VFs
[21:27:58] [PASSED] 61 VFs
[21:27:58] [PASSED] 62 VFs
[21:27:58] [PASSED] 63 VFs
[21:27:58] ================= [PASSED] fair_doorbells ==================
[21:27:58] ======================== fair_ggtt ========================
[21:27:58] [PASSED] 1 VF
[21:27:58] [PASSED] 2 VFs
[21:27:58] [PASSED] 3 VFs
[21:27:58] [PASSED] 4 VFs
[21:27:58] [PASSED] 5 VFs
[21:27:58] [PASSED] 6 VFs
[21:27:58] [PASSED] 7 VFs
[21:27:58] [PASSED] 8 VFs
[21:27:58] [PASSED] 9 VFs
[21:27:58] [PASSED] 10 VFs
[21:27:58] [PASSED] 11 VFs
[21:27:58] [PASSED] 12 VFs
[21:27:58] [PASSED] 13 VFs
[21:27:58] [PASSED] 14 VFs
[21:27:58] [PASSED] 15 VFs
[21:27:58] [PASSED] 16 VFs
[21:27:58] [PASSED] 17 VFs
[21:27:58] [PASSED] 18 VFs
[21:27:58] [PASSED] 19 VFs
[21:27:58] [PASSED] 20 VFs
[21:27:58] [PASSED] 21 VFs
[21:27:58] [PASSED] 22 VFs
[21:27:58] [PASSED] 23 VFs
[21:27:58] [PASSED] 24 VFs
[21:27:58] [PASSED] 25 VFs
[21:27:58] [PASSED] 26 VFs
[21:27:58] [PASSED] 27 VFs
[21:27:58] [PASSED] 28 VFs
[21:27:58] [PASSED] 29 VFs
[21:27:58] [PASSED] 30 VFs
[21:27:58] [PASSED] 31 VFs
[21:27:58] [PASSED] 32 VFs
[21:27:58] [PASSED] 33 VFs
[21:27:58] [PASSED] 34 VFs
[21:27:58] [PASSED] 35 VFs
[21:27:58] [PASSED] 36 VFs
[21:27:58] [PASSED] 37 VFs
[21:27:58] [PASSED] 38 VFs
[21:27:58] [PASSED] 39 VFs
[21:27:58] [PASSED] 40 VFs
[21:27:58] [PASSED] 41 VFs
[21:27:58] [PASSED] 42 VFs
[21:27:58] [PASSED] 43 VFs
[21:27:58] [PASSED] 44 VFs
[21:27:58] [PASSED] 45 VFs
[21:27:58] [PASSED] 46 VFs
[21:27:58] [PASSED] 47 VFs
[21:27:58] [PASSED] 48 VFs
[21:27:58] [PASSED] 49 VFs
[21:27:58] [PASSED] 50 VFs
[21:27:58] [PASSED] 51 VFs
[21:27:58] [PASSED] 52 VFs
[21:27:58] [PASSED] 53 VFs
[21:27:58] [PASSED] 54 VFs
[21:27:58] [PASSED] 55 VFs
[21:27:58] [PASSED] 56 VFs
[21:27:58] [PASSED] 57 VFs
[21:27:58] [PASSED] 58 VFs
[21:27:58] [PASSED] 59 VFs
[21:27:58] [PASSED] 60 VFs
[21:27:58] [PASSED] 61 VFs
[21:27:58] [PASSED] 62 VFs
[21:27:58] [PASSED] 63 VFs
[21:27:58] ==================== [PASSED] fair_ggtt ====================
[21:27:58] ======================== fair_vram ========================
[21:27:58] [PASSED] 1 VF
[21:27:58] [PASSED] 2 VFs
[21:27:58] [PASSED] 3 VFs
[21:27:58] [PASSED] 4 VFs
[21:27:58] [PASSED] 5 VFs
[21:27:58] [PASSED] 6 VFs
[21:27:58] [PASSED] 7 VFs
[21:27:58] [PASSED] 8 VFs
[21:27:58] [PASSED] 9 VFs
[21:27:58] [PASSED] 10 VFs
[21:27:58] [PASSED] 11 VFs
[21:27:58] [PASSED] 12 VFs
[21:27:58] [PASSED] 13 VFs
[21:27:58] [PASSED] 14 VFs
[21:27:58] [PASSED] 15 VFs
[21:27:58] [PASSED] 16 VFs
[21:27:58] [PASSED] 17 VFs
[21:27:58] [PASSED] 18 VFs
[21:27:58] [PASSED] 19 VFs
[21:27:58] [PASSED] 20 VFs
[21:27:58] [PASSED] 21 VFs
[21:27:58] [PASSED] 22 VFs
[21:27:58] [PASSED] 23 VFs
[21:27:58] [PASSED] 24 VFs
[21:27:58] [PASSED] 25 VFs
[21:27:58] [PASSED] 26 VFs
[21:27:58] [PASSED] 27 VFs
[21:27:58] [PASSED] 28 VFs
[21:27:58] [PASSED] 29 VFs
[21:27:58] [PASSED] 30 VFs
[21:27:58] [PASSED] 31 VFs
[21:27:58] [PASSED] 32 VFs
[21:27:58] [PASSED] 33 VFs
[21:27:58] [PASSED] 34 VFs
[21:27:58] [PASSED] 35 VFs
[21:27:58] [PASSED] 36 VFs
[21:27:58] [PASSED] 37 VFs
[21:27:58] [PASSED] 38 VFs
[21:27:58] [PASSED] 39 VFs
[21:27:58] [PASSED] 40 VFs
[21:27:58] [PASSED] 41 VFs
[21:27:58] [PASSED] 42 VFs
[21:27:58] [PASSED] 43 VFs
[21:27:58] [PASSED] 44 VFs
[21:27:58] [PASSED] 45 VFs
[21:27:58] [PASSED] 46 VFs
[21:27:58] [PASSED] 47 VFs
[21:27:58] [PASSED] 48 VFs
[21:27:58] [PASSED] 49 VFs
[21:27:58] [PASSED] 50 VFs
[21:27:58] [PASSED] 51 VFs
[21:27:58] [PASSED] 52 VFs
[21:27:58] [PASSED] 53 VFs
[21:27:58] [PASSED] 54 VFs
[21:27:58] [PASSED] 55 VFs
[21:27:58] [PASSED] 56 VFs
[21:27:58] [PASSED] 57 VFs
[21:27:58] [PASSED] 58 VFs
[21:27:58] [PASSED] 59 VFs
[21:27:58] [PASSED] 60 VFs
[21:27:58] [PASSED] 61 VFs
[21:27:58] [PASSED] 62 VFs
[21:27:58] [PASSED] 63 VFs
[21:27:58] ==================== [PASSED] fair_vram ====================
[21:27:58] ================== [PASSED] pf_gt_config ===================
[21:27:58] ===================== lmtt (1 subtest) =====================
[21:27:58] ======================== test_ops =========================
[21:27:58] [PASSED] 2-level
[21:27:58] [PASSED] multi-level
[21:27:58] ==================== [PASSED] test_ops =====================
[21:27:58] ====================== [PASSED] lmtt =======================
[21:27:58] ================= pf_service (11 subtests) =================
[21:27:58] [PASSED] pf_negotiate_any
[21:27:58] [PASSED] pf_negotiate_base_match
[21:27:58] [PASSED] pf_negotiate_base_newer
[21:27:58] [PASSED] pf_negotiate_base_next
[21:27:58] [SKIPPED] pf_negotiate_base_older
[21:27:58] [PASSED] pf_negotiate_base_prev
[21:27:58] [PASSED] pf_negotiate_latest_match
[21:27:58] [PASSED] pf_negotiate_latest_newer
[21:27:58] [PASSED] pf_negotiate_latest_next
[21:27:58] [SKIPPED] pf_negotiate_latest_older
[21:27:58] [SKIPPED] pf_negotiate_latest_prev
[21:27:58] =================== [PASSED] pf_service ====================
[21:27:58] ================= xe_guc_g2g (2 subtests) ==================
[21:27:58] ============== xe_live_guc_g2g_kunit_default ==============
[21:27:58] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[21:27:58] ============== xe_live_guc_g2g_kunit_allmem ===============
[21:27:58] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[21:27:58] =================== [SKIPPED] xe_guc_g2g ===================
[21:27:58] =================== xe_mocs (2 subtests) ===================
[21:27:58] ================ xe_live_mocs_kernel_kunit ================
[21:27:58] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[21:27:58] ================ xe_live_mocs_reset_kunit =================
[21:27:58] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[21:27:58] ==================== [SKIPPED] xe_mocs =====================
[21:27:58] ================= xe_migrate (2 subtests) ==================
[21:27:58] ================= xe_migrate_sanity_kunit =================
[21:27:58] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[21:27:58] ================== xe_validate_ccs_kunit ==================
[21:27:58] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[21:27:58] =================== [SKIPPED] xe_migrate ===================
[21:27:58] ================== xe_dma_buf (1 subtest) ==================
[21:27:58] ==================== xe_dma_buf_kunit =====================
[21:27:58] ================ [SKIPPED] xe_dma_buf_kunit ================
[21:27:58] =================== [SKIPPED] xe_dma_buf ===================
[21:27:58] ================= xe_bo_shrink (1 subtest) =================
[21:27:58] =================== xe_bo_shrink_kunit ====================
[21:27:58] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[21:27:58] ================== [SKIPPED] xe_bo_shrink ==================
[21:27:58] ==================== xe_bo (2 subtests) ====================
[21:27:58] ================== xe_ccs_migrate_kunit ===================
[21:27:58] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[21:27:58] ==================== xe_bo_evict_kunit ====================
[21:27:58] =============== [SKIPPED] xe_bo_evict_kunit ================
[21:27:58] ===================== [SKIPPED] xe_bo ======================
[21:27:58] ==================== args (13 subtests) ====================
[21:27:58] [PASSED] count_args_test
[21:27:58] [PASSED] call_args_example
[21:27:58] [PASSED] call_args_test
[21:27:58] [PASSED] drop_first_arg_example
[21:27:58] [PASSED] drop_first_arg_test
[21:27:58] [PASSED] first_arg_example
[21:27:58] [PASSED] first_arg_test
[21:27:58] [PASSED] last_arg_example
[21:27:58] [PASSED] last_arg_test
[21:27:58] [PASSED] pick_arg_example
[21:27:58] [PASSED] if_args_example
[21:27:58] [PASSED] if_args_test
[21:27:58] [PASSED] sep_comma_example
[21:27:58] ====================== [PASSED] args =======================
[21:27:58] =================== xe_pci (3 subtests) ====================
[21:27:58] ==================== check_graphics_ip ====================
[21:27:58] [PASSED] 12.00 Xe_LP
[21:27:58] [PASSED] 12.10 Xe_LP+
[21:27:58] [PASSED] 12.55 Xe_HPG
[21:27:58] [PASSED] 12.60 Xe_HPC
[21:27:58] [PASSED] 12.70 Xe_LPG
[21:27:58] [PASSED] 12.71 Xe_LPG
[21:27:58] [PASSED] 12.74 Xe_LPG+
[21:27:58] [PASSED] 20.01 Xe2_HPG
[21:27:58] [PASSED] 20.02 Xe2_HPG
[21:27:58] [PASSED] 20.04 Xe2_LPG
[21:27:58] [PASSED] 30.00 Xe3_LPG
[21:27:58] [PASSED] 30.01 Xe3_LPG
[21:27:58] [PASSED] 30.03 Xe3_LPG
[21:27:58] [PASSED] 30.04 Xe3_LPG
[21:27:58] [PASSED] 30.05 Xe3_LPG
[21:27:58] [PASSED] 35.10 Xe3p_LPG
[21:27:58] [PASSED] 35.11 Xe3p_XPC
[21:27:58] ================ [PASSED] check_graphics_ip ================
[21:27:58] ===================== check_media_ip ======================
[21:27:58] [PASSED] 12.00 Xe_M
[21:27:58] [PASSED] 12.55 Xe_HPM
[21:27:58] [PASSED] 13.00 Xe_LPM+
[21:27:58] [PASSED] 13.01 Xe2_HPM
[21:27:58] [PASSED] 20.00 Xe2_LPM
[21:27:58] [PASSED] 30.00 Xe3_LPM
[21:27:58] [PASSED] 30.02 Xe3_LPM
[21:27:58] [PASSED] 35.00 Xe3p_LPM
[21:27:58] [PASSED] 35.03 Xe3p_HPM
[21:27:58] ================= [PASSED] check_media_ip ==================
[21:27:58] =================== check_platform_desc ===================
[21:27:58] [PASSED] 0x9A60 (TIGERLAKE)
[21:27:58] [PASSED] 0x9A68 (TIGERLAKE)
[21:27:58] [PASSED] 0x9A70 (TIGERLAKE)
[21:27:58] [PASSED] 0x9A40 (TIGERLAKE)
[21:27:58] [PASSED] 0x9A49 (TIGERLAKE)
[21:27:58] [PASSED] 0x9A59 (TIGERLAKE)
[21:27:58] [PASSED] 0x9A78 (TIGERLAKE)
[21:27:58] [PASSED] 0x9AC0 (TIGERLAKE)
[21:27:58] [PASSED] 0x9AC9 (TIGERLAKE)
[21:27:58] [PASSED] 0x9AD9 (TIGERLAKE)
[21:27:58] [PASSED] 0x9AF8 (TIGERLAKE)
[21:27:58] [PASSED] 0x4C80 (ROCKETLAKE)
[21:27:58] [PASSED] 0x4C8A (ROCKETLAKE)
[21:27:58] [PASSED] 0x4C8B (ROCKETLAKE)
[21:27:58] [PASSED] 0x4C8C (ROCKETLAKE)
[21:27:58] [PASSED] 0x4C90 (ROCKETLAKE)
[21:27:58] [PASSED] 0x4C9A (ROCKETLAKE)
[21:27:58] [PASSED] 0x4680 (ALDERLAKE_S)
[21:27:58] [PASSED] 0x4682 (ALDERLAKE_S)
[21:27:58] [PASSED] 0x4688 (ALDERLAKE_S)
[21:27:58] [PASSED] 0x468A (ALDERLAKE_S)
[21:27:58] [PASSED] 0x468B (ALDERLAKE_S)
[21:27:58] [PASSED] 0x4690 (ALDERLAKE_S)
[21:27:58] [PASSED] 0x4692 (ALDERLAKE_S)
[21:27:58] [PASSED] 0x4693 (ALDERLAKE_S)
[21:27:58] [PASSED] 0x46A0 (ALDERLAKE_P)
[21:27:58] [PASSED] 0x46A1 (ALDERLAKE_P)
[21:27:58] [PASSED] 0x46A2 (ALDERLAKE_P)
[21:27:58] [PASSED] 0x46A3 (ALDERLAKE_P)
[21:27:58] [PASSED] 0x46A6 (ALDERLAKE_P)
[21:27:58] [PASSED] 0x46A8 (ALDERLAKE_P)
[21:27:58] [PASSED] 0x46AA (ALDERLAKE_P)
[21:27:58] [PASSED] 0x462A (ALDERLAKE_P)
[21:27:58] [PASSED] 0x4626 (ALDERLAKE_P)
[21:27:58] [PASSED] 0x4628 (ALDERLAKE_P)
[21:27:58] [PASSED] 0x46B0 (ALDERLAKE_P)
[21:27:58] [PASSED] 0x46B1 (ALDERLAKE_P)
[21:27:58] [PASSED] 0x46B2 (ALDERLAKE_P)
[21:27:58] [PASSED] 0x46B3 (ALDERLAKE_P)
[21:27:58] [PASSED] 0x46C0 (ALDERLAKE_P)
[21:27:58] [PASSED] 0x46C1 (ALDERLAKE_P)
[21:27:58] [PASSED] 0x46C2 (ALDERLAKE_P)
[21:27:58] [PASSED] 0x46C3 (ALDERLAKE_P)
[21:27:58] [PASSED] 0x46D0 (ALDERLAKE_N)
[21:27:58] [PASSED] 0x46D1 (ALDERLAKE_N)
[21:27:58] [PASSED] 0x46D2 (ALDERLAKE_N)
[21:27:58] [PASSED] 0x46D3 (ALDERLAKE_N)
[21:27:58] [PASSED] 0x46D4 (ALDERLAKE_N)
[21:27:58] [PASSED] 0xA721 (ALDERLAKE_P)
[21:27:58] [PASSED] 0xA7A1 (ALDERLAKE_P)
[21:27:58] [PASSED] 0xA7A9 (ALDERLAKE_P)
[21:27:58] [PASSED] 0xA7AC (ALDERLAKE_P)
[21:27:58] [PASSED] 0xA7AD (ALDERLAKE_P)
[21:27:58] [PASSED] 0xA720 (ALDERLAKE_P)
[21:27:58] [PASSED] 0xA7A0 (ALDERLAKE_P)
[21:27:58] [PASSED] 0xA7A8 (ALDERLAKE_P)
[21:27:58] [PASSED] 0xA7AA (ALDERLAKE_P)
[21:27:58] [PASSED] 0xA7AB (ALDERLAKE_P)
[21:27:58] [PASSED] 0xA780 (ALDERLAKE_S)
[21:27:58] [PASSED] 0xA781 (ALDERLAKE_S)
[21:27:58] [PASSED] 0xA782 (ALDERLAKE_S)
[21:27:58] [PASSED] 0xA783 (ALDERLAKE_S)
[21:27:58] [PASSED] 0xA788 (ALDERLAKE_S)
[21:27:58] [PASSED] 0xA789 (ALDERLAKE_S)
[21:27:58] [PASSED] 0xA78A (ALDERLAKE_S)
[21:27:58] [PASSED] 0xA78B (ALDERLAKE_S)
[21:27:58] [PASSED] 0x4905 (DG1)
[21:27:58] [PASSED] 0x4906 (DG1)
[21:27:58] [PASSED] 0x4907 (DG1)
[21:27:58] [PASSED] 0x4908 (DG1)
[21:27:58] [PASSED] 0x4909 (DG1)
[21:27:58] [PASSED] 0x56C0 (DG2)
[21:27:58] [PASSED] 0x56C2 (DG2)
[21:27:58] [PASSED] 0x56C1 (DG2)
[21:27:58] [PASSED] 0x7D51 (METEORLAKE)
[21:27:58] [PASSED] 0x7DD1 (METEORLAKE)
[21:27:58] [PASSED] 0x7D41 (METEORLAKE)
[21:27:58] [PASSED] 0x7D67 (METEORLAKE)
[21:27:58] [PASSED] 0xB640 (METEORLAKE)
[21:27:58] [PASSED] 0x56A0 (DG2)
[21:27:58] [PASSED] 0x56A1 (DG2)
[21:27:58] [PASSED] 0x56A2 (DG2)
[21:27:58] [PASSED] 0x56BE (DG2)
[21:27:58] [PASSED] 0x56BF (DG2)
[21:27:58] [PASSED] 0x5690 (DG2)
[21:27:58] [PASSED] 0x5691 (DG2)
[21:27:58] [PASSED] 0x5692 (DG2)
[21:27:58] [PASSED] 0x56A5 (DG2)
[21:27:58] [PASSED] 0x56A6 (DG2)
[21:27:58] [PASSED] 0x56B0 (DG2)
[21:27:58] [PASSED] 0x56B1 (DG2)
[21:27:58] [PASSED] 0x56BA (DG2)
[21:27:58] [PASSED] 0x56BB (DG2)
[21:27:58] [PASSED] 0x56BC (DG2)
[21:27:58] [PASSED] 0x56BD (DG2)
[21:27:58] [PASSED] 0x5693 (DG2)
[21:27:58] [PASSED] 0x5694 (DG2)
[21:27:58] [PASSED] 0x5695 (DG2)
[21:27:58] [PASSED] 0x56A3 (DG2)
[21:27:58] [PASSED] 0x56A4 (DG2)
[21:27:58] [PASSED] 0x56B2 (DG2)
[21:27:58] [PASSED] 0x56B3 (DG2)
[21:27:58] [PASSED] 0x5696 (DG2)
[21:27:58] [PASSED] 0x5697 (DG2)
[21:27:58] [PASSED] 0xB69 (PVC)
[21:27:58] [PASSED] 0xB6E (PVC)
[21:27:58] [PASSED] 0xBD4 (PVC)
[21:27:58] [PASSED] 0xBD5 (PVC)
[21:27:58] [PASSED] 0xBD6 (PVC)
[21:27:58] [PASSED] 0xBD7 (PVC)
[21:27:58] [PASSED] 0xBD8 (PVC)
[21:27:58] [PASSED] 0xBD9 (PVC)
[21:27:58] [PASSED] 0xBDA (PVC)
[21:27:58] [PASSED] 0xBDB (PVC)
[21:27:58] [PASSED] 0xBE0 (PVC)
[21:27:58] [PASSED] 0xBE1 (PVC)
[21:27:58] [PASSED] 0xBE5 (PVC)
[21:27:58] [PASSED] 0x7D40 (METEORLAKE)
[21:27:58] [PASSED] 0x7D45 (METEORLAKE)
[21:27:58] [PASSED] 0x7D55 (METEORLAKE)
[21:27:58] [PASSED] 0x7D60 (METEORLAKE)
[21:27:58] [PASSED] 0x7DD5 (METEORLAKE)
[21:27:58] [PASSED] 0x6420 (LUNARLAKE)
[21:27:58] [PASSED] 0x64A0 (LUNARLAKE)
[21:27:58] [PASSED] 0x64B0 (LUNARLAKE)
[21:27:58] [PASSED] 0xE202 (BATTLEMAGE)
[21:27:58] [PASSED] 0xE209 (BATTLEMAGE)
[21:27:58] [PASSED] 0xE20B (BATTLEMAGE)
[21:27:58] [PASSED] 0xE20C (BATTLEMAGE)
[21:27:58] [PASSED] 0xE20D (BATTLEMAGE)
[21:27:58] [PASSED] 0xE210 (BATTLEMAGE)
[21:27:58] [PASSED] 0xE211 (BATTLEMAGE)
[21:27:58] [PASSED] 0xE212 (BATTLEMAGE)
[21:27:58] [PASSED] 0xE216 (BATTLEMAGE)
[21:27:58] [PASSED] 0xE220 (BATTLEMAGE)
[21:27:58] [PASSED] 0xE221 (BATTLEMAGE)
[21:27:58] [PASSED] 0xE222 (BATTLEMAGE)
[21:27:58] [PASSED] 0xE223 (BATTLEMAGE)
[21:27:58] [PASSED] 0xB080 (PANTHERLAKE)
[21:27:58] [PASSED] 0xB081 (PANTHERLAKE)
[21:27:58] [PASSED] 0xB082 (PANTHERLAKE)
[21:27:58] [PASSED] 0xB083 (PANTHERLAKE)
[21:27:58] [PASSED] 0xB084 (PANTHERLAKE)
[21:27:58] [PASSED] 0xB085 (PANTHERLAKE)
[21:27:58] [PASSED] 0xB086 (PANTHERLAKE)
[21:27:58] [PASSED] 0xB087 (PANTHERLAKE)
[21:27:58] [PASSED] 0xB08F (PANTHERLAKE)
[21:27:58] [PASSED] 0xB090 (PANTHERLAKE)
[21:27:58] [PASSED] 0xB0A0 (PANTHERLAKE)
[21:27:58] [PASSED] 0xB0B0 (PANTHERLAKE)
[21:27:58] [PASSED] 0xFD80 (PANTHERLAKE)
[21:27:58] [PASSED] 0xFD81 (PANTHERLAKE)
[21:27:58] [PASSED] 0xD740 (NOVALAKE_S)
[21:27:58] [PASSED] 0xD741 (NOVALAKE_S)
[21:27:58] [PASSED] 0xD742 (NOVALAKE_S)
[21:27:58] [PASSED] 0xD743 (NOVALAKE_S)
[21:27:58] [PASSED] 0xD744 (NOVALAKE_S)
[21:27:58] [PASSED] 0xD745 (NOVALAKE_S)
[21:27:58] [PASSED] 0x674C (CRESCENTISLAND)
[21:27:58] [PASSED] 0xD750 (NOVALAKE_P)
[21:27:58] [PASSED] 0xD751 (NOVALAKE_P)
[21:27:58] [PASSED] 0xD752 (NOVALAKE_P)
[21:27:58] [PASSED] 0xD753 (NOVALAKE_P)
[21:27:58] [PASSED] 0xD754 (NOVALAKE_P)
[21:27:58] [PASSED] 0xD755 (NOVALAKE_P)
[21:27:58] [PASSED] 0xD756 (NOVALAKE_P)
[21:27:58] [PASSED] 0xD757 (NOVALAKE_P)
[21:27:58] [PASSED] 0xD75F (NOVALAKE_P)
[21:27:58] =============== [PASSED] check_platform_desc ===============
[21:27:58] ===================== [PASSED] xe_pci ======================
[21:27:58] =================== xe_rtp (2 subtests) ====================
[21:27:58] =============== xe_rtp_process_to_sr_tests ================
[21:27:58] [PASSED] coalesce-same-reg
[21:27:58] [PASSED] no-match-no-add
[21:27:58] [PASSED] match-or
[21:27:58] [PASSED] match-or-xfail
[21:27:58] [PASSED] no-match-no-add-multiple-rules
[21:27:58] [PASSED] two-regs-two-entries
[21:27:58] [PASSED] clr-one-set-other
[21:27:58] [PASSED] set-field
[21:27:58] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[21:27:58] [PASSED] conflict-not-disjoint
[21:27:58] [PASSED] conflict-reg-type
[21:27:58] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[21:27:58] ================== xe_rtp_process_tests ===================
[21:27:58] [PASSED] active1
[21:27:58] [PASSED] active2
[21:27:58] [PASSED] active-inactive
[21:27:58] [PASSED] inactive-active
[21:27:58] [PASSED] inactive-1st_or_active-inactive
[21:27:58] [PASSED] inactive-2nd_or_active-inactive
[21:27:58] [PASSED] inactive-last_or_active-inactive
[21:27:58] [PASSED] inactive-no_or_active-inactive
[21:27:58] ============== [PASSED] xe_rtp_process_tests ===============
[21:27:58] ===================== [PASSED] xe_rtp ======================
[21:27:58] ==================== xe_wa (1 subtest) =====================
[21:27:58] ======================== xe_wa_gt =========================
[21:27:58] [PASSED] TIGERLAKE B0
[21:27:58] [PASSED] DG1 A0
[21:27:58] [PASSED] DG1 B0
[21:27:58] [PASSED] ALDERLAKE_S A0
[21:27:58] [PASSED] ALDERLAKE_S B0
[21:27:58] [PASSED] ALDERLAKE_S C0
[21:27:58] [PASSED] ALDERLAKE_S D0
[21:27:58] [PASSED] ALDERLAKE_P A0
[21:27:58] [PASSED] ALDERLAKE_P B0
[21:27:58] [PASSED] ALDERLAKE_P C0
[21:27:58] [PASSED] ALDERLAKE_S RPLS D0
[21:27:58] [PASSED] ALDERLAKE_P RPLU E0
[21:27:58] [PASSED] DG2 G10 C0
[21:27:58] [PASSED] DG2 G11 B1
[21:27:58] [PASSED] DG2 G12 A1
[21:27:58] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[21:27:58] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[21:27:58] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[21:27:58] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[21:27:58] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[21:27:58] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[21:27:58] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[21:27:58] ==================== [PASSED] xe_wa_gt =====================
[21:27:58] ====================== [PASSED] xe_wa ======================
[21:27:58] ============================================================
[21:27:58] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[21:27:58] Elapsed time: 35.261s total, 4.240s configuring, 30.404s building, 0.607s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[21:27:58] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:28:00] 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
[21:28:24] Starting KUnit Kernel (1/1)...
[21:28:24] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:28:24] ============ drm_test_pick_cmdline (2 subtests) ============
[21:28:24] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[21:28:24] =============== drm_test_pick_cmdline_named ===============
[21:28:24] [PASSED] NTSC
[21:28:24] [PASSED] NTSC-J
[21:28:24] [PASSED] PAL
[21:28:24] [PASSED] PAL-M
[21:28:24] =========== [PASSED] drm_test_pick_cmdline_named ===========
[21:28:24] ============== [PASSED] drm_test_pick_cmdline ==============
[21:28:24] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[21:28:24] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[21:28:24] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[21:28:24] =========== drm_validate_clone_mode (2 subtests) ===========
[21:28:24] ============== drm_test_check_in_clone_mode ===============
[21:28:24] [PASSED] in_clone_mode
[21:28:24] [PASSED] not_in_clone_mode
[21:28:24] ========== [PASSED] drm_test_check_in_clone_mode ===========
[21:28:24] =============== drm_test_check_valid_clones ===============
[21:28:24] [PASSED] not_in_clone_mode
[21:28:24] [PASSED] valid_clone
[21:28:24] [PASSED] invalid_clone
[21:28:24] =========== [PASSED] drm_test_check_valid_clones ===========
[21:28:24] ============= [PASSED] drm_validate_clone_mode =============
[21:28:24] ============= drm_validate_modeset (1 subtest) =============
[21:28:24] [PASSED] drm_test_check_connector_changed_modeset
[21:28:24] ============== [PASSED] drm_validate_modeset ===============
[21:28:24] ====== drm_test_bridge_get_current_state (2 subtests) ======
[21:28:24] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[21:28:24] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[21:28:24] ======== [PASSED] drm_test_bridge_get_current_state ========
[21:28:24] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[21:28:24] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[21:28:24] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[21:28:24] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[21:28:24] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[21:28:24] ============== drm_bridge_alloc (2 subtests) ===============
[21:28:24] [PASSED] drm_test_drm_bridge_alloc_basic
[21:28:24] [PASSED] drm_test_drm_bridge_alloc_get_put
[21:28:24] ================ [PASSED] drm_bridge_alloc =================
[21:28:24] ============= drm_cmdline_parser (40 subtests) =============
[21:28:24] [PASSED] drm_test_cmdline_force_d_only
[21:28:24] [PASSED] drm_test_cmdline_force_D_only_dvi
[21:28:24] [PASSED] drm_test_cmdline_force_D_only_hdmi
[21:28:24] [PASSED] drm_test_cmdline_force_D_only_not_digital
[21:28:24] [PASSED] drm_test_cmdline_force_e_only
[21:28:24] [PASSED] drm_test_cmdline_res
[21:28:24] [PASSED] drm_test_cmdline_res_vesa
[21:28:24] [PASSED] drm_test_cmdline_res_vesa_rblank
[21:28:24] [PASSED] drm_test_cmdline_res_rblank
[21:28:24] [PASSED] drm_test_cmdline_res_bpp
[21:28:24] [PASSED] drm_test_cmdline_res_refresh
[21:28:24] [PASSED] drm_test_cmdline_res_bpp_refresh
[21:28:24] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[21:28:24] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[21:28:24] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[21:28:24] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[21:28:24] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[21:28:24] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[21:28:24] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[21:28:24] [PASSED] drm_test_cmdline_res_margins_force_on
[21:28:24] [PASSED] drm_test_cmdline_res_vesa_margins
[21:28:24] [PASSED] drm_test_cmdline_name
[21:28:24] [PASSED] drm_test_cmdline_name_bpp
[21:28:24] [PASSED] drm_test_cmdline_name_option
[21:28:24] [PASSED] drm_test_cmdline_name_bpp_option
[21:28:24] [PASSED] drm_test_cmdline_rotate_0
[21:28:24] [PASSED] drm_test_cmdline_rotate_90
[21:28:24] [PASSED] drm_test_cmdline_rotate_180
[21:28:24] [PASSED] drm_test_cmdline_rotate_270
[21:28:24] [PASSED] drm_test_cmdline_hmirror
[21:28:24] [PASSED] drm_test_cmdline_vmirror
[21:28:24] [PASSED] drm_test_cmdline_margin_options
[21:28:24] [PASSED] drm_test_cmdline_multiple_options
[21:28:24] [PASSED] drm_test_cmdline_bpp_extra_and_option
[21:28:24] [PASSED] drm_test_cmdline_extra_and_option
[21:28:24] [PASSED] drm_test_cmdline_freestanding_options
[21:28:24] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[21:28:24] [PASSED] drm_test_cmdline_panel_orientation
[21:28:24] ================ drm_test_cmdline_invalid =================
[21:28:24] [PASSED] margin_only
[21:28:24] [PASSED] interlace_only
[21:28:24] [PASSED] res_missing_x
[21:28:24] [PASSED] res_missing_y
[21:28:24] [PASSED] res_bad_y
[21:28:24] [PASSED] res_missing_y_bpp
[21:28:24] [PASSED] res_bad_bpp
[21:28:24] [PASSED] res_bad_refresh
[21:28:24] [PASSED] res_bpp_refresh_force_on_off
[21:28:24] [PASSED] res_invalid_mode
[21:28:24] [PASSED] res_bpp_wrong_place_mode
[21:28:24] [PASSED] name_bpp_refresh
[21:28:24] [PASSED] name_refresh
[21:28:24] [PASSED] name_refresh_wrong_mode
[21:28:24] [PASSED] name_refresh_invalid_mode
[21:28:24] [PASSED] rotate_multiple
[21:28:24] [PASSED] rotate_invalid_val
[21:28:24] [PASSED] rotate_truncated
[21:28:24] [PASSED] invalid_option
[21:28:24] [PASSED] invalid_tv_option
[21:28:24] [PASSED] truncated_tv_option
[21:28:24] ============ [PASSED] drm_test_cmdline_invalid =============
[21:28:24] =============== drm_test_cmdline_tv_options ===============
[21:28:24] [PASSED] NTSC
[21:28:24] [PASSED] NTSC_443
[21:28:24] [PASSED] NTSC_J
[21:28:24] [PASSED] PAL
[21:28:24] [PASSED] PAL_M
[21:28:24] [PASSED] PAL_N
[21:28:24] [PASSED] SECAM
[21:28:24] [PASSED] MONO_525
[21:28:24] [PASSED] MONO_625
[21:28:24] =========== [PASSED] drm_test_cmdline_tv_options ===========
[21:28:24] =============== [PASSED] drm_cmdline_parser ================
[21:28:24] ========== drmm_connector_hdmi_init (20 subtests) ==========
[21:28:24] [PASSED] drm_test_connector_hdmi_init_valid
[21:28:24] [PASSED] drm_test_connector_hdmi_init_bpc_8
[21:28:24] [PASSED] drm_test_connector_hdmi_init_bpc_10
[21:28:24] [PASSED] drm_test_connector_hdmi_init_bpc_12
[21:28:24] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[21:28:24] [PASSED] drm_test_connector_hdmi_init_bpc_null
[21:28:24] [PASSED] drm_test_connector_hdmi_init_formats_empty
[21:28:24] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[21:28:24] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[21:28:24] [PASSED] supported_formats=0x9 yuv420_allowed=1
[21:28:24] [PASSED] supported_formats=0x9 yuv420_allowed=0
[21:28:24] [PASSED] supported_formats=0x3 yuv420_allowed=1
[21:28:24] [PASSED] supported_formats=0x3 yuv420_allowed=0
[21:28:24] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[21:28:24] [PASSED] drm_test_connector_hdmi_init_null_ddc
[21:28:24] [PASSED] drm_test_connector_hdmi_init_null_product
[21:28:24] [PASSED] drm_test_connector_hdmi_init_null_vendor
[21:28:24] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[21:28:24] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[21:28:24] [PASSED] drm_test_connector_hdmi_init_product_valid
[21:28:24] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[21:28:24] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[21:28:24] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[21:28:24] ========= drm_test_connector_hdmi_init_type_valid =========
[21:28:24] [PASSED] HDMI-A
[21:28:24] [PASSED] HDMI-B
[21:28:24] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[21:28:24] ======== drm_test_connector_hdmi_init_type_invalid ========
[21:28:24] [PASSED] Unknown
[21:28:24] [PASSED] VGA
[21:28:24] [PASSED] DVI-I
[21:28:24] [PASSED] DVI-D
[21:28:24] [PASSED] DVI-A
[21:28:24] [PASSED] Composite
[21:28:24] [PASSED] SVIDEO
[21:28:24] [PASSED] LVDS
[21:28:24] [PASSED] Component
[21:28:24] [PASSED] DIN
[21:28:24] [PASSED] DP
[21:28:24] [PASSED] TV
[21:28:24] [PASSED] eDP
[21:28:24] [PASSED] Virtual
[21:28:24] [PASSED] DSI
[21:28:24] [PASSED] DPI
[21:28:24] [PASSED] Writeback
[21:28:24] [PASSED] SPI
[21:28:24] [PASSED] USB
[21:28:24] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[21:28:24] ============ [PASSED] drmm_connector_hdmi_init =============
[21:28:24] ============= drmm_connector_init (3 subtests) =============
[21:28:24] [PASSED] drm_test_drmm_connector_init
[21:28:24] [PASSED] drm_test_drmm_connector_init_null_ddc
[21:28:24] ========= drm_test_drmm_connector_init_type_valid =========
[21:28:24] [PASSED] Unknown
[21:28:24] [PASSED] VGA
[21:28:24] [PASSED] DVI-I
[21:28:24] [PASSED] DVI-D
[21:28:24] [PASSED] DVI-A
[21:28:24] [PASSED] Composite
[21:28:24] [PASSED] SVIDEO
[21:28:24] [PASSED] LVDS
[21:28:24] [PASSED] Component
[21:28:24] [PASSED] DIN
[21:28:24] [PASSED] DP
[21:28:24] [PASSED] HDMI-A
[21:28:24] [PASSED] HDMI-B
[21:28:24] [PASSED] TV
[21:28:24] [PASSED] eDP
[21:28:24] [PASSED] Virtual
[21:28:24] [PASSED] DSI
[21:28:24] [PASSED] DPI
[21:28:24] [PASSED] Writeback
[21:28:24] [PASSED] SPI
[21:28:24] [PASSED] USB
[21:28:24] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[21:28:24] =============== [PASSED] drmm_connector_init ===============
[21:28:24] ========= drm_connector_dynamic_init (6 subtests) ==========
[21:28:24] [PASSED] drm_test_drm_connector_dynamic_init
[21:28:24] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[21:28:24] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[21:28:24] [PASSED] drm_test_drm_connector_dynamic_init_properties
[21:28:24] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[21:28:24] [PASSED] Unknown
[21:28:24] [PASSED] VGA
[21:28:24] [PASSED] DVI-I
[21:28:24] [PASSED] DVI-D
[21:28:24] [PASSED] DVI-A
[21:28:24] [PASSED] Composite
[21:28:24] [PASSED] SVIDEO
[21:28:24] [PASSED] LVDS
[21:28:24] [PASSED] Component
[21:28:24] [PASSED] DIN
[21:28:24] [PASSED] DP
[21:28:24] [PASSED] HDMI-A
[21:28:24] [PASSED] HDMI-B
[21:28:24] [PASSED] TV
[21:28:24] [PASSED] eDP
[21:28:24] [PASSED] Virtual
[21:28:24] [PASSED] DSI
[21:28:24] [PASSED] DPI
[21:28:24] [PASSED] Writeback
[21:28:24] [PASSED] SPI
[21:28:24] [PASSED] USB
[21:28:24] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[21:28:24] ======== drm_test_drm_connector_dynamic_init_name =========
[21:28:24] [PASSED] Unknown
[21:28:24] [PASSED] VGA
[21:28:24] [PASSED] DVI-I
[21:28:24] [PASSED] DVI-D
[21:28:24] [PASSED] DVI-A
[21:28:24] [PASSED] Composite
[21:28:24] [PASSED] SVIDEO
[21:28:24] [PASSED] LVDS
[21:28:24] [PASSED] Component
[21:28:24] [PASSED] DIN
[21:28:24] [PASSED] DP
[21:28:24] [PASSED] HDMI-A
[21:28:24] [PASSED] HDMI-B
[21:28:24] [PASSED] TV
[21:28:24] [PASSED] eDP
[21:28:24] [PASSED] Virtual
[21:28:24] [PASSED] DSI
[21:28:24] [PASSED] DPI
[21:28:24] [PASSED] Writeback
[21:28:24] [PASSED] SPI
[21:28:24] [PASSED] USB
[21:28:24] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[21:28:24] =========== [PASSED] drm_connector_dynamic_init ============
[21:28:24] ==== drm_connector_dynamic_register_early (4 subtests) =====
[21:28:24] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[21:28:24] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[21:28:24] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[21:28:24] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[21:28:24] ====== [PASSED] drm_connector_dynamic_register_early =======
[21:28:24] ======= drm_connector_dynamic_register (7 subtests) ========
[21:28:24] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[21:28:24] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[21:28:24] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[21:28:24] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[21:28:24] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[21:28:24] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[21:28:24] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[21:28:24] ========= [PASSED] drm_connector_dynamic_register ==========
[21:28:24] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[21:28:24] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[21:28:24] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[21:28:24] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[21:28:24] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[21:28:24] ========== drm_test_get_tv_mode_from_name_valid ===========
[21:28:24] [PASSED] NTSC
[21:28:24] [PASSED] NTSC-443
[21:28:24] [PASSED] NTSC-J
[21:28:24] [PASSED] PAL
[21:28:24] [PASSED] PAL-M
[21:28:24] [PASSED] PAL-N
[21:28:24] [PASSED] SECAM
[21:28:24] [PASSED] Mono
[21:28:24] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[21:28:24] [PASSED] drm_test_get_tv_mode_from_name_truncated
[21:28:24] ============ [PASSED] drm_get_tv_mode_from_name ============
[21:28:24] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[21:28:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[21:28:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[21:28:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[21:28:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[21:28:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[21:28:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[21:28:24] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[21:28:24] [PASSED] VIC 96
[21:28:24] [PASSED] VIC 97
[21:28:24] [PASSED] VIC 101
[21:28:24] [PASSED] VIC 102
[21:28:24] [PASSED] VIC 106
[21:28:24] [PASSED] VIC 107
[21:28:24] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[21:28:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[21:28:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[21:28:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[21:28:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[21:28:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[21:28:24] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[21:28:24] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[21:28:24] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[21:28:24] [PASSED] Automatic
[21:28:24] [PASSED] Full
[21:28:24] [PASSED] Limited 16:235
[21:28:24] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[21:28:24] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[21:28:24] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[21:28:24] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[21:28:24] === drm_test_drm_hdmi_connector_get_output_format_name ====
[21:28:24] [PASSED] RGB
[21:28:24] [PASSED] YUV 4:2:0
[21:28:24] [PASSED] YUV 4:2:2
[21:28:24] [PASSED] YUV 4:4:4
[21:28:24] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[21:28:24] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[21:28:24] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[21:28:24] ============= drm_damage_helper (21 subtests) ==============
[21:28:24] [PASSED] drm_test_damage_iter_no_damage
[21:28:24] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[21:28:24] [PASSED] drm_test_damage_iter_no_damage_src_moved
[21:28:24] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[21:28:24] [PASSED] drm_test_damage_iter_no_damage_not_visible
[21:28:24] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[21:28:24] [PASSED] drm_test_damage_iter_no_damage_no_fb
[21:28:24] [PASSED] drm_test_damage_iter_simple_damage
[21:28:24] [PASSED] drm_test_damage_iter_single_damage
[21:28:24] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[21:28:24] [PASSED] drm_test_damage_iter_single_damage_outside_src
[21:28:24] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[21:28:24] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[21:28:24] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[21:28:24] [PASSED] drm_test_damage_iter_single_damage_src_moved
[21:28:24] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[21:28:24] [PASSED] drm_test_damage_iter_damage
[21:28:24] [PASSED] drm_test_damage_iter_damage_one_intersect
[21:28:24] [PASSED] drm_test_damage_iter_damage_one_outside
[21:28:24] [PASSED] drm_test_damage_iter_damage_src_moved
[21:28:24] [PASSED] drm_test_damage_iter_damage_not_visible
[21:28:24] ================ [PASSED] drm_damage_helper ================
[21:28:24] ============== drm_dp_mst_helper (3 subtests) ==============
[21:28:24] ============== drm_test_dp_mst_calc_pbn_mode ==============
[21:28:24] [PASSED] Clock 154000 BPP 30 DSC disabled
[21:28:24] [PASSED] Clock 234000 BPP 30 DSC disabled
[21:28:24] [PASSED] Clock 297000 BPP 24 DSC disabled
[21:28:24] [PASSED] Clock 332880 BPP 24 DSC enabled
[21:28:24] [PASSED] Clock 324540 BPP 24 DSC enabled
[21:28:24] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[21:28:24] ============== drm_test_dp_mst_calc_pbn_div ===============
[21:28:24] [PASSED] Link rate 2000000 lane count 4
[21:28:24] [PASSED] Link rate 2000000 lane count 2
[21:28:24] [PASSED] Link rate 2000000 lane count 1
[21:28:24] [PASSED] Link rate 1350000 lane count 4
[21:28:24] [PASSED] Link rate 1350000 lane count 2
[21:28:24] [PASSED] Link rate 1350000 lane count 1
[21:28:24] [PASSED] Link rate 1000000 lane count 4
[21:28:24] [PASSED] Link rate 1000000 lane count 2
[21:28:24] [PASSED] Link rate 1000000 lane count 1
[21:28:24] [PASSED] Link rate 810000 lane count 4
[21:28:24] [PASSED] Link rate 810000 lane count 2
[21:28:24] [PASSED] Link rate 810000 lane count 1
[21:28:24] [PASSED] Link rate 540000 lane count 4
[21:28:24] [PASSED] Link rate 540000 lane count 2
[21:28:24] [PASSED] Link rate 540000 lane count 1
[21:28:24] [PASSED] Link rate 270000 lane count 4
[21:28:24] [PASSED] Link rate 270000 lane count 2
[21:28:24] [PASSED] Link rate 270000 lane count 1
[21:28:24] [PASSED] Link rate 162000 lane count 4
[21:28:24] [PASSED] Link rate 162000 lane count 2
[21:28:24] [PASSED] Link rate 162000 lane count 1
[21:28:24] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[21:28:24] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[21:28:24] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[21:28:24] [PASSED] DP_POWER_UP_PHY with port number
[21:28:24] [PASSED] DP_POWER_DOWN_PHY with port number
[21:28:24] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[21:28:24] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[21:28:24] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[21:28:24] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[21:28:24] [PASSED] DP_QUERY_PAYLOAD with port number
[21:28:24] [PASSED] DP_QUERY_PAYLOAD with VCPI
[21:28:24] [PASSED] DP_REMOTE_DPCD_READ with port number
[21:28:24] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[21:28:24] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[21:28:24] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[21:28:24] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[21:28:24] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[21:28:24] [PASSED] DP_REMOTE_I2C_READ with port number
[21:28:24] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[21:28:24] [PASSED] DP_REMOTE_I2C_READ with transactions array
[21:28:24] [PASSED] DP_REMOTE_I2C_WRITE with port number
[21:28:24] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[21:28:24] [PASSED] DP_REMOTE_I2C_WRITE with data array
[21:28:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[21:28:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[21:28:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[21:28:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[21:28:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[21:28:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[21:28:24] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[21:28:24] ================ [PASSED] drm_dp_mst_helper ================
[21:28:24] ================== drm_exec (7 subtests) ===================
[21:28:24] [PASSED] sanitycheck
[21:28:24] [PASSED] test_lock
[21:28:24] [PASSED] test_lock_unlock
[21:28:24] [PASSED] test_duplicates
[21:28:24] [PASSED] test_prepare
[21:28:24] [PASSED] test_prepare_array
[21:28:24] [PASSED] test_multiple_loops
[21:28:24] ==================== [PASSED] drm_exec =====================
[21:28:24] =========== drm_format_helper_test (17 subtests) ===========
[21:28:24] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[21:28:24] [PASSED] single_pixel_source_buffer
[21:28:24] [PASSED] single_pixel_clip_rectangle
[21:28:24] [PASSED] well_known_colors
[21:28:24] [PASSED] destination_pitch
[21:28:24] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[21:28:24] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[21:28:24] [PASSED] single_pixel_source_buffer
[21:28:24] [PASSED] single_pixel_clip_rectangle
[21:28:24] [PASSED] well_known_colors
[21:28:24] [PASSED] destination_pitch
[21:28:24] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[21:28:24] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[21:28:24] [PASSED] single_pixel_source_buffer
[21:28:24] [PASSED] single_pixel_clip_rectangle
[21:28:24] [PASSED] well_known_colors
[21:28:24] [PASSED] destination_pitch
[21:28:24] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[21:28:24] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[21:28:24] [PASSED] single_pixel_source_buffer
[21:28:24] [PASSED] single_pixel_clip_rectangle
[21:28:24] [PASSED] well_known_colors
[21:28:24] [PASSED] destination_pitch
[21:28:24] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[21:28:24] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[21:28:24] [PASSED] single_pixel_source_buffer
[21:28:24] [PASSED] single_pixel_clip_rectangle
[21:28:24] [PASSED] well_known_colors
[21:28:24] [PASSED] destination_pitch
[21:28:24] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[21:28:24] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[21:28:24] [PASSED] single_pixel_source_buffer
[21:28:24] [PASSED] single_pixel_clip_rectangle
[21:28:24] [PASSED] well_known_colors
[21:28:24] [PASSED] destination_pitch
[21:28:24] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[21:28:24] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[21:28:24] [PASSED] single_pixel_source_buffer
[21:28:24] [PASSED] single_pixel_clip_rectangle
[21:28:24] [PASSED] well_known_colors
[21:28:24] [PASSED] destination_pitch
[21:28:24] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[21:28:24] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[21:28:24] [PASSED] single_pixel_source_buffer
[21:28:24] [PASSED] single_pixel_clip_rectangle
[21:28:24] [PASSED] well_known_colors
[21:28:24] [PASSED] destination_pitch
[21:28:24] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[21:28:24] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[21:28:24] [PASSED] single_pixel_source_buffer
[21:28:24] [PASSED] single_pixel_clip_rectangle
[21:28:24] [PASSED] well_known_colors
[21:28:24] [PASSED] destination_pitch
[21:28:24] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[21:28:24] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[21:28:24] [PASSED] single_pixel_source_buffer
[21:28:24] [PASSED] single_pixel_clip_rectangle
[21:28:24] [PASSED] well_known_colors
[21:28:24] [PASSED] destination_pitch
[21:28:24] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[21:28:24] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[21:28:24] [PASSED] single_pixel_source_buffer
[21:28:24] [PASSED] single_pixel_clip_rectangle
[21:28:24] [PASSED] well_known_colors
[21:28:24] [PASSED] destination_pitch
[21:28:24] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[21:28:24] ============== drm_test_fb_xrgb8888_to_mono ===============
[21:28:24] [PASSED] single_pixel_source_buffer
[21:28:24] [PASSED] single_pixel_clip_rectangle
[21:28:24] [PASSED] well_known_colors
[21:28:24] [PASSED] destination_pitch
[21:28:24] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[21:28:24] ==================== drm_test_fb_swab =====================
[21:28:24] [PASSED] single_pixel_source_buffer
[21:28:24] [PASSED] single_pixel_clip_rectangle
[21:28:24] [PASSED] well_known_colors
[21:28:24] [PASSED] destination_pitch
[21:28:24] ================ [PASSED] drm_test_fb_swab =================
[21:28:24] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[21:28:24] [PASSED] single_pixel_source_buffer
[21:28:24] [PASSED] single_pixel_clip_rectangle
[21:28:24] [PASSED] well_known_colors
[21:28:24] [PASSED] destination_pitch
[21:28:24] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[21:28:24] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[21:28:24] [PASSED] single_pixel_source_buffer
[21:28:24] [PASSED] single_pixel_clip_rectangle
[21:28:24] [PASSED] well_known_colors
[21:28:24] [PASSED] destination_pitch
[21:28:24] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[21:28:24] ================= drm_test_fb_clip_offset =================
[21:28:24] [PASSED] pass through
[21:28:24] [PASSED] horizontal offset
[21:28:24] [PASSED] vertical offset
[21:28:24] [PASSED] horizontal and vertical offset
[21:28:24] [PASSED] horizontal offset (custom pitch)
[21:28:24] [PASSED] vertical offset (custom pitch)
[21:28:24] [PASSED] horizontal and vertical offset (custom pitch)
[21:28:24] ============= [PASSED] drm_test_fb_clip_offset =============
[21:28:24] =================== drm_test_fb_memcpy ====================
[21:28:24] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[21:28:24] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[21:28:24] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[21:28:24] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[21:28:24] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[21:28:24] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[21:28:24] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[21:28:24] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[21:28:24] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[21:28:24] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[21:28:24] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[21:28:24] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[21:28:24] =============== [PASSED] drm_test_fb_memcpy ================
[21:28:24] ============= [PASSED] drm_format_helper_test ==============
[21:28:24] ================= drm_format (18 subtests) =================
[21:28:24] [PASSED] drm_test_format_block_width_invalid
[21:28:24] [PASSED] drm_test_format_block_width_one_plane
[21:28:24] [PASSED] drm_test_format_block_width_two_plane
[21:28:24] [PASSED] drm_test_format_block_width_three_plane
[21:28:24] [PASSED] drm_test_format_block_width_tiled
[21:28:24] [PASSED] drm_test_format_block_height_invalid
[21:28:24] [PASSED] drm_test_format_block_height_one_plane
[21:28:24] [PASSED] drm_test_format_block_height_two_plane
[21:28:24] [PASSED] drm_test_format_block_height_three_plane
[21:28:24] [PASSED] drm_test_format_block_height_tiled
[21:28:24] [PASSED] drm_test_format_min_pitch_invalid
[21:28:24] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[21:28:24] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[21:28:24] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[21:28:24] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[21:28:24] [PASSED] drm_test_format_min_pitch_two_plane
[21:28:24] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[21:28:24] [PASSED] drm_test_format_min_pitch_tiled
[21:28:24] =================== [PASSED] drm_format ====================
[21:28:24] ============== drm_framebuffer (10 subtests) ===============
[21:28:24] ========== drm_test_framebuffer_check_src_coords ==========
[21:28:24] [PASSED] Success: source fits into fb
[21:28:24] [PASSED] Fail: overflowing fb with x-axis coordinate
[21:28:24] [PASSED] Fail: overflowing fb with y-axis coordinate
[21:28:24] [PASSED] Fail: overflowing fb with source width
[21:28:24] [PASSED] Fail: overflowing fb with source height
[21:28:24] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[21:28:24] [PASSED] drm_test_framebuffer_cleanup
[21:28:24] =============== drm_test_framebuffer_create ===============
[21:28:24] [PASSED] ABGR8888 normal sizes
[21:28:24] [PASSED] ABGR8888 max sizes
[21:28:24] [PASSED] ABGR8888 pitch greater than min required
[21:28:24] [PASSED] ABGR8888 pitch less than min required
[21:28:24] [PASSED] ABGR8888 Invalid width
[21:28:24] [PASSED] ABGR8888 Invalid buffer handle
[21:28:24] [PASSED] No pixel format
[21:28:24] [PASSED] ABGR8888 Width 0
[21:28:24] [PASSED] ABGR8888 Height 0
[21:28:24] [PASSED] ABGR8888 Out of bound height * pitch combination
[21:28:24] [PASSED] ABGR8888 Large buffer offset
[21:28:24] [PASSED] ABGR8888 Buffer offset for inexistent plane
[21:28:24] [PASSED] ABGR8888 Invalid flag
[21:28:24] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[21:28:24] [PASSED] ABGR8888 Valid buffer modifier
[21:28:24] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[21:28:24] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[21:28:24] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[21:28:24] [PASSED] NV12 Normal sizes
[21:28:24] [PASSED] NV12 Max sizes
[21:28:24] [PASSED] NV12 Invalid pitch
[21:28:24] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[21:28:24] [PASSED] NV12 different modifier per-plane
[21:28:24] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[21:28:24] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[21:28:24] [PASSED] NV12 Modifier for inexistent plane
[21:28:24] [PASSED] NV12 Handle for inexistent plane
[21:28:24] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[21:28:24] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[21:28:24] [PASSED] YVU420 Normal sizes
[21:28:24] [PASSED] YVU420 Max sizes
[21:28:24] [PASSED] YVU420 Invalid pitch
[21:28:24] [PASSED] YVU420 Different pitches
[21:28:24] [PASSED] YVU420 Different buffer offsets/pitches
[21:28:24] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[21:28:24] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[21:28:24] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[21:28:24] [PASSED] YVU420 Valid modifier
[21:28:24] [PASSED] YVU420 Different modifiers per plane
[21:28:24] [PASSED] YVU420 Modifier for inexistent plane
[21:28:24] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[21:28:24] [PASSED] X0L2 Normal sizes
[21:28:24] [PASSED] X0L2 Max sizes
[21:28:24] [PASSED] X0L2 Invalid pitch
[21:28:24] [PASSED] X0L2 Pitch greater than minimum required
[21:28:24] [PASSED] X0L2 Handle for inexistent plane
[21:28:24] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[21:28:24] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[21:28:24] [PASSED] X0L2 Valid modifier
[21:28:24] [PASSED] X0L2 Modifier for inexistent plane
[21:28:24] =========== [PASSED] drm_test_framebuffer_create ===========
[21:28:24] [PASSED] drm_test_framebuffer_free
[21:28:24] [PASSED] drm_test_framebuffer_init
[21:28:24] [PASSED] drm_test_framebuffer_init_bad_format
[21:28:24] [PASSED] drm_test_framebuffer_init_dev_mismatch
[21:28:24] [PASSED] drm_test_framebuffer_lookup
[21:28:24] [PASSED] drm_test_framebuffer_lookup_inexistent
[21:28:24] [PASSED] drm_test_framebuffer_modifiers_not_supported
[21:28:24] ================= [PASSED] drm_framebuffer =================
[21:28:24] ================ drm_gem_shmem (8 subtests) ================
[21:28:24] [PASSED] drm_gem_shmem_test_obj_create
[21:28:24] [PASSED] drm_gem_shmem_test_obj_create_private
[21:28:24] [PASSED] drm_gem_shmem_test_pin_pages
[21:28:24] [PASSED] drm_gem_shmem_test_vmap
[21:28:24] [PASSED] drm_gem_shmem_test_get_sg_table
[21:28:24] [PASSED] drm_gem_shmem_test_get_pages_sgt
[21:28:24] [PASSED] drm_gem_shmem_test_madvise
[21:28:24] [PASSED] drm_gem_shmem_test_purge
[21:28:24] ================== [PASSED] drm_gem_shmem ==================
[21:28:24] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[21:28:24] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[21:28:24] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[21:28:24] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[21:28:24] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[21:28:24] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[21:28:24] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[21:28:24] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[21:28:24] [PASSED] Automatic
[21:28:24] [PASSED] Full
[21:28:24] [PASSED] Limited 16:235
[21:28:24] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[21:28:24] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[21:28:24] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[21:28:24] [PASSED] drm_test_check_disable_connector
[21:28:24] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[21:28:24] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[21:28:24] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[21:28:24] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[21:28:24] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[21:28:24] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[21:28:24] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[21:28:24] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[21:28:24] [PASSED] drm_test_check_output_bpc_dvi
[21:28:24] [PASSED] drm_test_check_output_bpc_format_vic_1
[21:28:24] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[21:28:24] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[21:28:24] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[21:28:24] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[21:28:24] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[21:28:24] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[21:28:24] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[21:28:24] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[21:28:24] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[21:28:24] [PASSED] drm_test_check_broadcast_rgb_value
[21:28:24] [PASSED] drm_test_check_bpc_8_value
[21:28:24] [PASSED] drm_test_check_bpc_10_value
[21:28:24] [PASSED] drm_test_check_bpc_12_value
[21:28:24] [PASSED] drm_test_check_format_value
[21:28:24] [PASSED] drm_test_check_tmds_char_value
[21:28:24] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[21:28:24] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[21:28:24] [PASSED] drm_test_check_mode_valid
[21:28:24] [PASSED] drm_test_check_mode_valid_reject
[21:28:24] [PASSED] drm_test_check_mode_valid_reject_rate
[21:28:24] [PASSED] drm_test_check_mode_valid_reject_max_clock
[21:28:24] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[21:28:24] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[21:28:24] [PASSED] drm_test_check_infoframes
[21:28:24] [PASSED] drm_test_check_reject_avi_infoframe
[21:28:24] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[21:28:24] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[21:28:24] [PASSED] drm_test_check_reject_audio_infoframe
[21:28:24] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[21:28:24] ================= drm_managed (2 subtests) =================
[21:28:24] [PASSED] drm_test_managed_release_action
[21:28:24] [PASSED] drm_test_managed_run_action
[21:28:24] =================== [PASSED] drm_managed ===================
[21:28:24] =================== drm_mm (6 subtests) ====================
[21:28:24] [PASSED] drm_test_mm_init
[21:28:24] [PASSED] drm_test_mm_debug
[21:28:24] [PASSED] drm_test_mm_align32
[21:28:24] [PASSED] drm_test_mm_align64
[21:28:24] [PASSED] drm_test_mm_lowest
[21:28:24] [PASSED] drm_test_mm_highest
[21:28:24] ===================== [PASSED] drm_mm ======================
[21:28:24] ============= drm_modes_analog_tv (5 subtests) =============
[21:28:24] [PASSED] drm_test_modes_analog_tv_mono_576i
[21:28:24] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[21:28:24] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[21:28:24] [PASSED] drm_test_modes_analog_tv_pal_576i
[21:28:24] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[21:28:24] =============== [PASSED] drm_modes_analog_tv ===============
[21:28:24] ============== drm_plane_helper (2 subtests) ===============
[21:28:24] =============== drm_test_check_plane_state ================
[21:28:24] [PASSED] clipping_simple
[21:28:24] [PASSED] clipping_rotate_reflect
[21:28:24] [PASSED] positioning_simple
[21:28:24] [PASSED] upscaling
[21:28:24] [PASSED] downscaling
[21:28:24] [PASSED] rounding1
[21:28:24] [PASSED] rounding2
[21:28:24] [PASSED] rounding3
[21:28:24] [PASSED] rounding4
[21:28:24] =========== [PASSED] drm_test_check_plane_state ============
[21:28:24] =========== drm_test_check_invalid_plane_state ============
[21:28:24] [PASSED] positioning_invalid
[21:28:24] [PASSED] upscaling_invalid
[21:28:24] [PASSED] downscaling_invalid
[21:28:24] ======= [PASSED] drm_test_check_invalid_plane_state ========
[21:28:24] ================ [PASSED] drm_plane_helper =================
[21:28:24] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[21:28:24] ====== drm_test_connector_helper_tv_get_modes_check =======
[21:28:24] [PASSED] None
[21:28:24] [PASSED] PAL
[21:28:24] [PASSED] NTSC
[21:28:24] [PASSED] Both, NTSC Default
[21:28:24] [PASSED] Both, PAL Default
[21:28:24] [PASSED] Both, NTSC Default, with PAL on command-line
[21:28:24] [PASSED] Both, PAL Default, with NTSC on command-line
[21:28:24] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[21:28:24] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[21:28:24] ================== drm_rect (9 subtests) ===================
[21:28:24] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[21:28:24] [PASSED] drm_test_rect_clip_scaled_not_clipped
[21:28:24] [PASSED] drm_test_rect_clip_scaled_clipped
[21:28:24] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[21:28:24] ================= drm_test_rect_intersect =================
[21:28:24] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[21:28:24] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[21:28:24] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[21:28:24] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[21:28:24] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[21:28:24] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[21:28:24] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[21:28:24] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[21:28:24] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[21:28:24] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[21:28:24] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[21:28:24] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[21:28:24] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[21:28:24] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[21:28:24] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[21:28:24] ============= [PASSED] drm_test_rect_intersect =============
[21:28:24] ================ drm_test_rect_calc_hscale ================
[21:28:24] [PASSED] normal use
[21:28:24] [PASSED] out of max range
[21:28:24] [PASSED] out of min range
[21:28:24] [PASSED] zero dst
[21:28:24] [PASSED] negative src
[21:28:24] [PASSED] negative dst
[21:28:24] ============ [PASSED] drm_test_rect_calc_hscale ============
[21:28:24] ================ drm_test_rect_calc_vscale ================
[21:28:24] [PASSED] normal use
[21:28:24] [PASSED] out of max range
[21:28:24] [PASSED] out of min range
[21:28:24] [PASSED] zero dst
[21:28:24] [PASSED] negative src
[21:28:24] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[21:28:24] ============ [PASSED] drm_test_rect_calc_vscale ============
[21:28:24] ================== drm_test_rect_rotate ===================
[21:28:24] [PASSED] reflect-x
[21:28:24] [PASSED] reflect-y
[21:28:24] [PASSED] rotate-0
[21:28:24] [PASSED] rotate-90
[21:28:24] [PASSED] rotate-180
[21:28:24] [PASSED] rotate-270
[21:28:24] ============== [PASSED] drm_test_rect_rotate ===============
[21:28:24] ================ drm_test_rect_rotate_inv =================
[21:28:24] [PASSED] reflect-x
[21:28:24] [PASSED] reflect-y
[21:28:24] [PASSED] rotate-0
[21:28:24] [PASSED] rotate-90
[21:28:24] [PASSED] rotate-180
[21:28:24] [PASSED] rotate-270
[21:28:24] ============ [PASSED] drm_test_rect_rotate_inv =============
[21:28:24] ==================== [PASSED] drm_rect =====================
[21:28:24] ============ drm_sysfb_modeset_test (1 subtest) ============
[21:28:24] ============ drm_test_sysfb_build_fourcc_list =============
[21:28:24] [PASSED] no native formats
[21:28:24] [PASSED] XRGB8888 as native format
[21:28:24] [PASSED] remove duplicates
[21:28:24] [PASSED] convert alpha formats
[21:28:24] [PASSED] random formats
[21:28:24] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[21:28:24] ============= [PASSED] drm_sysfb_modeset_test ==============
[21:28:24] ================== drm_fixp (2 subtests) ===================
[21:28:24] [PASSED] drm_test_int2fixp
[21:28:24] [PASSED] drm_test_sm2fixp
[21:28:24] ==================== [PASSED] drm_fixp =====================
[21:28:24] ============================================================
[21:28:24] Testing complete. Ran 621 tests: passed: 621
[21:28:24] Elapsed time: 26.033s total, 1.706s configuring, 24.157s building, 0.136s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[21:28:24] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:28: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
[21:28:35] Starting KUnit Kernel (1/1)...
[21:28:35] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:28:35] ================= ttm_device (5 subtests) ==================
[21:28:35] [PASSED] ttm_device_init_basic
[21:28:35] [PASSED] ttm_device_init_multiple
[21:28:35] [PASSED] ttm_device_fini_basic
[21:28:35] [PASSED] ttm_device_init_no_vma_man
[21:28:35] ================== ttm_device_init_pools ==================
[21:28:35] [PASSED] No DMA allocations, no DMA32 required
[21:28:35] [PASSED] DMA allocations, DMA32 required
[21:28:35] [PASSED] No DMA allocations, DMA32 required
[21:28:35] [PASSED] DMA allocations, no DMA32 required
[21:28:35] ============== [PASSED] ttm_device_init_pools ==============
[21:28:35] =================== [PASSED] ttm_device ====================
[21:28:35] ================== ttm_pool (8 subtests) ===================
[21:28:35] ================== ttm_pool_alloc_basic ===================
[21:28:35] [PASSED] One page
[21:28:35] [PASSED] More than one page
[21:28:35] [PASSED] Above the allocation limit
[21:28:36] [PASSED] One page, with coherent DMA mappings enabled
[21:28:36] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[21:28:36] ============== [PASSED] ttm_pool_alloc_basic ===============
[21:28:36] ============== ttm_pool_alloc_basic_dma_addr ==============
[21:28:36] [PASSED] One page
[21:28:36] [PASSED] More than one page
[21:28:36] [PASSED] Above the allocation limit
[21:28:36] [PASSED] One page, with coherent DMA mappings enabled
[21:28:36] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[21:28:36] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[21:28:36] [PASSED] ttm_pool_alloc_order_caching_match
[21:28:36] [PASSED] ttm_pool_alloc_caching_mismatch
[21:28:36] [PASSED] ttm_pool_alloc_order_mismatch
[21:28:36] [PASSED] ttm_pool_free_dma_alloc
[21:28:36] [PASSED] ttm_pool_free_no_dma_alloc
[21:28:36] [PASSED] ttm_pool_fini_basic
[21:28:36] ==================== [PASSED] ttm_pool =====================
[21:28:36] ================ ttm_resource (8 subtests) =================
[21:28:36] ================= ttm_resource_init_basic =================
[21:28:36] [PASSED] Init resource in TTM_PL_SYSTEM
[21:28:36] [PASSED] Init resource in TTM_PL_VRAM
[21:28:36] [PASSED] Init resource in a private placement
[21:28:36] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[21:28:36] ============= [PASSED] ttm_resource_init_basic =============
[21:28:36] [PASSED] ttm_resource_init_pinned
[21:28:36] [PASSED] ttm_resource_fini_basic
[21:28:36] [PASSED] ttm_resource_manager_init_basic
[21:28:36] [PASSED] ttm_resource_manager_usage_basic
[21:28:36] [PASSED] ttm_resource_manager_set_used_basic
[21:28:36] [PASSED] ttm_sys_man_alloc_basic
[21:28:36] [PASSED] ttm_sys_man_free_basic
[21:28:36] ================== [PASSED] ttm_resource ===================
[21:28:36] =================== ttm_tt (15 subtests) ===================
[21:28:36] ==================== ttm_tt_init_basic ====================
[21:28:36] [PASSED] Page-aligned size
[21:28:36] [PASSED] Extra pages requested
[21:28:36] ================ [PASSED] ttm_tt_init_basic ================
[21:28:36] [PASSED] ttm_tt_init_misaligned
[21:28:36] [PASSED] ttm_tt_fini_basic
[21:28:36] [PASSED] ttm_tt_fini_sg
[21:28:36] [PASSED] ttm_tt_fini_shmem
[21:28:36] [PASSED] ttm_tt_create_basic
[21:28:36] [PASSED] ttm_tt_create_invalid_bo_type
[21:28:36] [PASSED] ttm_tt_create_ttm_exists
[21:28:36] [PASSED] ttm_tt_create_failed
[21:28:36] [PASSED] ttm_tt_destroy_basic
[21:28:36] [PASSED] ttm_tt_populate_null_ttm
[21:28:36] [PASSED] ttm_tt_populate_populated_ttm
[21:28:36] [PASSED] ttm_tt_unpopulate_basic
[21:28:36] [PASSED] ttm_tt_unpopulate_empty_ttm
[21:28:36] [PASSED] ttm_tt_swapin_basic
[21:28:36] ===================== [PASSED] ttm_tt ======================
[21:28:36] =================== ttm_bo (14 subtests) ===================
[21:28:36] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[21:28:36] [PASSED] Cannot be interrupted and sleeps
[21:28:36] [PASSED] Cannot be interrupted, locks straight away
[21:28:36] [PASSED] Can be interrupted, sleeps
[21:28:36] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[21:28:36] [PASSED] ttm_bo_reserve_locked_no_sleep
[21:28:36] [PASSED] ttm_bo_reserve_no_wait_ticket
[21:28:36] [PASSED] ttm_bo_reserve_double_resv
[21:28:36] [PASSED] ttm_bo_reserve_interrupted
[21:28:36] [PASSED] ttm_bo_reserve_deadlock
[21:28:36] [PASSED] ttm_bo_unreserve_basic
[21:28:36] [PASSED] ttm_bo_unreserve_pinned
[21:28:36] [PASSED] ttm_bo_unreserve_bulk
[21:28:36] [PASSED] ttm_bo_fini_basic
[21:28:36] [PASSED] ttm_bo_fini_shared_resv
[21:28:36] [PASSED] ttm_bo_pin_basic
[21:28:36] [PASSED] ttm_bo_pin_unpin_resource
[21:28:36] [PASSED] ttm_bo_multiple_pin_one_unpin
[21:28:36] ===================== [PASSED] ttm_bo ======================
[21:28:36] ============== ttm_bo_validate (22 subtests) ===============
[21:28:36] ============== ttm_bo_init_reserved_sys_man ===============
[21:28:36] [PASSED] Buffer object for userspace
[21:28:36] [PASSED] Kernel buffer object
[21:28:36] [PASSED] Shared buffer object
[21:28:36] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[21:28:36] ============== ttm_bo_init_reserved_mock_man ==============
[21:28:36] [PASSED] Buffer object for userspace
[21:28:36] [PASSED] Kernel buffer object
[21:28:36] [PASSED] Shared buffer object
[21:28:36] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[21:28:36] [PASSED] ttm_bo_init_reserved_resv
[21:28:36] ================== ttm_bo_validate_basic ==================
[21:28:36] [PASSED] Buffer object for userspace
[21:28:36] [PASSED] Kernel buffer object
[21:28:36] [PASSED] Shared buffer object
[21:28:36] ============== [PASSED] ttm_bo_validate_basic ==============
[21:28:36] [PASSED] ttm_bo_validate_invalid_placement
[21:28:36] ============= ttm_bo_validate_same_placement ==============
[21:28:36] [PASSED] System manager
[21:28:36] [PASSED] VRAM manager
[21:28:36] ========= [PASSED] ttm_bo_validate_same_placement ==========
[21:28:36] [PASSED] ttm_bo_validate_failed_alloc
[21:28:36] [PASSED] ttm_bo_validate_pinned
[21:28:36] [PASSED] ttm_bo_validate_busy_placement
[21:28:36] ================ ttm_bo_validate_multihop =================
[21:28:36] [PASSED] Buffer object for userspace
[21:28:36] [PASSED] Kernel buffer object
[21:28:36] [PASSED] Shared buffer object
[21:28:36] ============ [PASSED] ttm_bo_validate_multihop =============
[21:28:36] ========== ttm_bo_validate_no_placement_signaled ==========
[21:28:36] [PASSED] Buffer object in system domain, no page vector
[21:28:36] [PASSED] Buffer object in system domain with an existing page vector
[21:28:36] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[21:28:36] ======== ttm_bo_validate_no_placement_not_signaled ========
[21:28:36] [PASSED] Buffer object for userspace
[21:28:36] [PASSED] Kernel buffer object
[21:28:36] [PASSED] Shared buffer object
[21:28:36] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[21:28:36] [PASSED] ttm_bo_validate_move_fence_signaled
[21:28:36] ========= ttm_bo_validate_move_fence_not_signaled =========
[21:28:36] [PASSED] Waits for GPU
[21:28:36] [PASSED] Tries to lock straight away
[21:28:36] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[21:28:36] [PASSED] ttm_bo_validate_swapout
[21:28:36] [PASSED] ttm_bo_validate_happy_evict
[21:28:36] [PASSED] ttm_bo_validate_all_pinned_evict
[21:28:36] [PASSED] ttm_bo_validate_allowed_only_evict
[21:28:36] [PASSED] ttm_bo_validate_deleted_evict
[21:28:36] [PASSED] ttm_bo_validate_busy_domain_evict
[21:28:36] [PASSED] ttm_bo_validate_evict_gutting
[21:28:36] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[21:28:36] ================= [PASSED] ttm_bo_validate =================
[21:28:36] ============================================================
[21:28:36] Testing complete. Ran 102 tests: passed: 102
[21:28:36] Elapsed time: 11.397s total, 1.731s configuring, 9.399s building, 0.226s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 48+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev7)
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (20 preceding siblings ...)
2026-03-16 21:28 ` ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev7) Patchwork
@ 2026-03-16 22:03 ` Patchwork
2026-03-17 21:17 ` ✗ Xe.CI.FULL: failure " Patchwork
` (5 subsequent siblings)
27 siblings, 0 replies; 48+ messages in thread
From: Patchwork @ 2026-03-16 22:03 UTC (permalink / raw)
To: Jia Yao; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1979 bytes --]
== Series Details ==
Series: drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev7)
URL : https://patchwork.freedesktop.org/series/160797/
State : success
== Summary ==
CI Bug Log - changes from xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820_BAT -> xe-pw-160797v7_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 14)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-160797v7_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#7483])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
- bat-adlp-7: [DMESG-WARN][3] ([Intel XE#7483]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483
Build changes
-------------
* IGT: IGT_8805 -> IGT_8806
* Linux: xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820 -> xe-pw-160797v7
IGT_8805: 8805
IGT_8806: 8806
xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820: a25d8c583e1e52bde77d371081a7c3fcd0a2e820
xe-pw-160797v7: 160797v7
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/index.html
[-- Attachment #2: Type: text/html, Size: 2656 bytes --]
^ permalink raw reply [flat|nested] 48+ messages in thread
* Re: [PATCH v6 2/2] drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR
2026-03-16 16:42 ` [PATCH v6 2/2] drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR Jia Yao
@ 2026-03-17 10:45 ` Matthew Auld
0 siblings, 0 replies; 48+ messages in thread
From: Matthew Auld @ 2026-03-17 10:45 UTC (permalink / raw)
To: Jia Yao, intel-xe
Cc: stable, Shuicheng Lin, Mathew Alwin, Michal Mrozek, Matthew Brost
On 16/03/2026 16:42, Jia Yao wrote:
> Add validation in xe_vm_bind_ioctl() to reject PAT indices with
> XE_COH_NONE coherency mode when used with
> DRM_XE_VM_BIND_FLAG_CPU_ADDR_MIRROR, consistent with the existing
> validation for DRM_XE_VM_BIND_OP_MAP_USERPTR.
>
> CPU address mirror mappings use system memory which is CPU cached,
> making them incompatible with COH_NONE PAT index. Using COH_NONE with
> CPU cached buffers is a security issue: GPU can bypass CPU caches and
> directly read stale sensitive data from DRAM, potentially leaking data
> from previously freed pages.
>
> Although CPU_ADDR_MIRROR mappings don't create actual memory mappings
> (the range is reserved for dynamic mapping on GPU page faults), the
> underlying system memory is still CPU cached, so the same PAT coherency
> restrictions as MAP_USERPTR should apply.
>
> v2:
> - Correct fix tag
>
> Fixes: e1fbc4f18d5b ("drm/xe/uapi: support pat_index selection with vm_bind")
I don't think addr_mirror existed yet?
Maybe:
Fixes: b43e864af0d4 ("drm/xe/uapi: Add DRM_XE_VM_BIND_FLAG_CPU_ADDR_MIRROR")
Cc: <stable@vger.kernel.org> # v6.15+
> Cc: stable@vger.kernel.org # v6.18
> Cc: Shuicheng Lin <shuicheng.lin@intel.com>
> Cc: Mathew Alwin <alwin.mathew@intel.com>
> Cc: Michal Mrozek <michal.mrozek@intel.com>
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: Matthew Auld <matthew.auld@intel.com>
> Signed-off-by: Jia Yao <jia.yao@intel.com>
> Reviewed-by: Matthew Auld <matthew.auld@intel.com>
> ---
> drivers/gpu/drm/xe/xe_vm.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
> index 5572e12c2a7e..1c4b4a5eeadb 100644
> --- a/drivers/gpu/drm/xe/xe_vm.c
> +++ b/drivers/gpu/drm/xe/xe_vm.c
> @@ -3491,7 +3491,7 @@ static int vm_bind_ioctl_check_args(struct xe_device *xe, struct xe_vm *vm,
> XE_IOCTL_DBG(xe, obj &&
> op == DRM_XE_VM_BIND_OP_MAP_USERPTR) ||
> XE_IOCTL_DBG(xe, coh_mode == XE_COH_NONE &&
> - op == DRM_XE_VM_BIND_OP_MAP_USERPTR) ||
> + (op == DRM_XE_VM_BIND_OP_MAP_USERPTR || is_cpu_addr_mirror)) ||
> XE_IOCTL_DBG(xe, comp_en &&
> op == DRM_XE_VM_BIND_OP_MAP_USERPTR) ||
> XE_IOCTL_DBG(xe, op == DRM_XE_VM_BIND_OP_MAP_USERPTR &&
^ permalink raw reply [flat|nested] 48+ messages in thread
* ✗ Xe.CI.FULL: failure for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev7)
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (21 preceding siblings ...)
2026-03-16 22:03 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-03-17 21:17 ` Patchwork
2026-03-19 11:58 ` [PATCH v7 0/2] drm/xe: PAT index validation for CPU_ADDR_MIRROR and madvise Jia Yao
` (4 subsequent siblings)
27 siblings, 0 replies; 48+ messages in thread
From: Patchwork @ 2026-03-17 21:17 UTC (permalink / raw)
To: Jia Yao; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 61689 bytes --]
== Series Details ==
Series: drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev7)
URL : https://patchwork.freedesktop.org/series/160797/
State : failure
== Summary ==
CI Bug Log - changes from xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820_FULL -> xe-pw-160797v7_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-160797v7_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-160797v7_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-160797v7_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
- shard-lnl: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma:
- shard-bmg: [PASS][3] -> [FAIL][4] +5 other tests fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-10/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma.html
#### Warnings ####
* igt@kms_vrr@lobf@pipe-a-edp-1:
- shard-lnl: [FAIL][5] ([Intel XE#6390] / [Intel XE#7461]) -> [SKIP][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-lnl-3/igt@kms_vrr@lobf@pipe-a-edp-1.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-3/igt@kms_vrr@lobf@pipe-a-edp-1.html
Known issues
------------
Here are the changes found in xe-pw-160797v7_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#7059] / [Intel XE#7085])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1124])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#607] / [Intel XE#7361])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@linear-tiling-1-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#367] / [Intel XE#7354])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2887]) +4 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#2887])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2652]) +7 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2724] / [Intel XE#7449])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-9/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2325] / [Intel XE#7358])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-2/igt@kms_chamelium_color@ctm-0-25.html
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#306] / [Intel XE#7358])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-5/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2252]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-7/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#373]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-4/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][20] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +2 other tests fail
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-3/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2320])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-10/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-sliding-256x256:
- shard-bmg: [PASS][22] -> [FAIL][23] ([Intel XE#6747]) +1 other test fail
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-9/igt@kms_cursor_crc@cursor-sliding-256x256.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-256x256.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [PASS][24] -> [SKIP][25] ([Intel XE#2291]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-bmg: [PASS][26] -> [SKIP][27] ([Intel XE#2291] / [Intel XE#7343])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2286] / [Intel XE#6035])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [PASS][29] -> [SKIP][30] ([Intel XE#4302])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-3/igt@kms_display_modes@extended-mode-basic.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: [PASS][31] -> [SKIP][32] ([Intel XE#2373] / [Intel XE#7344])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-6/igt@kms_feature_discovery@display-2x.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-5/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank@cd-dp2-hdmi-a3:
- shard-bmg: [PASS][33] -> [ABORT][34] ([Intel XE#5545] / [Intel XE#6652]) +1 other test abort
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-9/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@cd-dp2-hdmi-a3.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [PASS][35] -> [SKIP][36] ([Intel XE#2316])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1421])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-3/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [PASS][38] -> [FAIL][39] ([Intel XE#301]) +1 other test fail
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@flip-vs-suspend@d-hdmi-a3:
- shard-bmg: NOTRUN -> [INCOMPLETE][40] ([Intel XE#2049] / [Intel XE#2597])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-4/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#7178] / [Intel XE#7351])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1397] / [Intel XE#7385])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2311]) +11 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#4141]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2312])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#656]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#6312] / [Intel XE#651]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2313]) +11 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#7061] / [Intel XE#7356])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc.html
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#7061] / [Intel XE#7356])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-8/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#7283]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-8/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#7283])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-bmg: [PASS][54] -> [SKIP][55] ([Intel XE#4596])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-none.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-3/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2392] / [Intel XE#6927])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-5/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-7/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#1489]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#1128] / [Intel XE#7413])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-3/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@psr2-basic:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-9/igt@kms_psr@psr2-basic.html
* igt@kms_setmode@basic:
- shard-bmg: [PASS][62] -> [FAIL][63] ([Intel XE#6361]) +2 other tests fail
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-7/igt@kms_setmode@basic.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-9/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [PASS][64] -> [FAIL][65] ([Intel XE#6361]) +2 other tests fail
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-5/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_sharpness_filter@filter-basic:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#6503]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-10/igt@kms_sharpness_filter@filter-basic.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][67] -> [FAIL][68] ([Intel XE#4459]) +1 other test fail
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@max-min@pipe-a-edp-1:
- shard-lnl: [PASS][69] -> [FAIL][70] ([Intel XE#4227]) +1 other test fail
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-lnl-8/igt@kms_vrr@max-min@pipe-a-edp-1.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-8/igt@kms_vrr@max-min@pipe-a-edp-1.html
* igt@xe_eudebug@basic-vm-access-parameters:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#4837]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-4/igt@xe_eudebug@basic-vm-access-parameters.html
* igt@xe_eudebug@multiple-sessions:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#4837])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-1/igt@xe_eudebug@multiple-sessions.html
* igt@xe_eudebug_online@set-breakpoint-faultable:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-6/igt@xe_eudebug_online@set-breakpoint-faultable.html
* igt@xe_evict@evict-beng-cm-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#6540] / [Intel XE#688]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-7/igt@xe_evict@evict-beng-cm-threads-small-multi-vm.html
* igt@xe_evict@evict-cm-threads-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#7140])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-3/igt@xe_evict@evict-cm-threads-small-multi-queue.html
* igt@xe_exec_balancer@once-cm-parallel-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#7482])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-2/igt@xe_exec_balancer@once-cm-parallel-userptr-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1392])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind-prefetch:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#7136]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-1/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind-prefetch.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#7136]) +5 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-10/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch.html
* igt@xe_exec_multi_queue@exec-sanity:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#6874]) +3 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-7/igt@xe_exec_multi_queue@exec-sanity.html
* igt@xe_exec_multi_queue@two-queues-priority:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#6874]) +13 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-6/igt@xe_exec_multi_queue@two-queues-priority.html
* igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#7138]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate-race.html
* igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#7138])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-4/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-rebind.html
* igt@xe_multigpu_svm@mgpu-atomic-op-prefetch:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#6964])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-5/igt@xe_multigpu_svm@mgpu-atomic-op-prefetch.html
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#6964])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-7/igt@xe_multigpu_svm@mgpu-atomic-op-prefetch.html
* igt@xe_prefetch_fault@prefetch-fault:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#7596])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-8/igt@xe_prefetch_fault@prefetch-fault.html
* igt@xe_pxp@pxp-stale-bo-bind-post-rpm:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#4733] / [Intel XE#7417])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-9/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html
* igt@xe_query@multigpu-query-engines:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#944])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-9/igt@xe_query@multigpu-query-engines.html
* igt@xe_sriov_admin@bulk-preempt-timeout-vfs-disabled:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#7174])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-2/igt@xe_sriov_admin@bulk-preempt-timeout-vfs-disabled.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-bmg: [PASS][91] -> [FAIL][92] ([Intel XE#6569])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-5/igt@xe_sriov_flr@flr-each-isolation.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-8/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_survivability@i2c-functionality:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#6529] / [Intel XE#7331] / [Intel XE#7388])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-2/igt@xe_survivability@i2c-functionality.html
* igt@xe_vm@out-of-memory:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#5745])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-5/igt@xe_vm@out-of-memory.html
* igt@xe_waitfence@engine:
- shard-bmg: [PASS][95] -> [FAIL][96] ([Intel XE#6519])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-10/igt@xe_waitfence@engine.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-5/igt@xe_waitfence@engine.html
#### Possible fixes ####
* igt@core_setmaster@master-drop-set-root:
- shard-bmg: [FAIL][97] -> [PASS][98]
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@core_setmaster@master-drop-set-root.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-5/igt@core_setmaster@master-drop-set-root.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-bmg: [INCOMPLETE][99] -> [PASS][100] +1 other test pass
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-5/igt@kms_cursor_crc@cursor-suspend.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-5/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: [SKIP][101] ([Intel XE#2291] / [Intel XE#7343]) -> [PASS][102]
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-bmg: [SKIP][103] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][104] +2 other tests pass
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_flip@2x-flip-vs-wf_vblank.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-8/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-bmg: [SKIP][105] ([Intel XE#2316]) -> [PASS][106] +1 other test pass
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-3/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2:
- shard-bmg: [FAIL][107] ([Intel XE#3098]) -> [PASS][108] +1 other test pass
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-10/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-2/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][109] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][110] +1 other test pass
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend@c-hdmi-a3:
- shard-bmg: [INCOMPLETE][111] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][112] +2 other tests pass
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-10/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-4/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [SKIP][113] ([Intel XE#1435]) -> [PASS][114] +1 other test pass
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [FAIL][115] ([Intel XE#2142]) -> [PASS][116] +1 other test pass
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][117] ([Intel XE#6321]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-cm-threads-small:
- shard-bmg: [INCOMPLETE][119] ([Intel XE#2594]) -> [PASS][120]
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-4/igt@xe_evict@evict-cm-threads-small.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-5/igt@xe_evict@evict-cm-threads-small.html
* igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind:
- shard-bmg: [SKIP][121] ([Intel XE#6703]) -> [PASS][122] +127 other tests pass
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-6/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind.html
* igt@xe_exercise_blt@fast-copy-emit:
- shard-bmg: [INCOMPLETE][123] ([Intel XE#5545]) -> [PASS][124]
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@xe_exercise_blt@fast-copy-emit.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-9/igt@xe_exercise_blt@fast-copy-emit.html
* igt@xe_exercise_blt@fast-copy-emit@tile4-system-vram01-emit:
- shard-bmg: [DMESG-WARN][125] -> [PASS][126]
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@xe_exercise_blt@fast-copy-emit@tile4-system-vram01-emit.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-9/igt@xe_exercise_blt@fast-copy-emit@tile4-system-vram01-emit.html
#### Warnings ####
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-bmg: [SKIP][127] ([Intel XE#6703]) -> [SKIP][128] ([Intel XE#2327]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_big_fb@linear-8bpp-rotate-90.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-7/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: [SKIP][129] ([Intel XE#6703]) -> [SKIP][130] ([Intel XE#1124]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-10/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-bmg: [SKIP][131] ([Intel XE#6703]) -> [SKIP][132] ([Intel XE#367] / [Intel XE#7354])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-9/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs:
- shard-bmg: [SKIP][133] ([Intel XE#6703]) -> [SKIP][134] ([Intel XE#2887])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_ccs@bad-pixel-format-y-tiled-ccs.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-8/igt@kms_ccs@bad-pixel-format-y-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-bmg: [SKIP][135] ([Intel XE#6703]) -> [SKIP][136] ([Intel XE#2652])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-bmg: [SKIP][137] ([Intel XE#6703]) -> [SKIP][138] ([Intel XE#2325] / [Intel XE#7358])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_chamelium_color@ctm-limited-range.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-9/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-bmg: [SKIP][139] ([Intel XE#6703]) -> [SKIP][140] ([Intel XE#2252])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_chamelium_frames@hdmi-crc-fast.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-7/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_content_protection@legacy:
- shard-bmg: [FAIL][141] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][142] ([Intel XE#2341])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-10/igt@kms_content_protection@legacy.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-5/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0-hdcp14:
- shard-bmg: [SKIP][143] ([Intel XE#7194]) -> [FAIL][144] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-5/igt@kms_content_protection@lic-type-0-hdcp14.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-3/igt@kms_content_protection@lic-type-0-hdcp14.html
* igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
- shard-bmg: [SKIP][145] ([Intel XE#6703]) -> [DMESG-WARN][146] ([Intel XE#5354])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-9/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-bmg: [SKIP][147] ([Intel XE#2291]) -> [DMESG-WARN][148] ([Intel XE#5354])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: [SKIP][149] ([Intel XE#6703]) -> [SKIP][150] ([Intel XE#2374] / [Intel XE#6128])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_feature_discovery@psr2.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-6/igt@kms_feature_discovery@psr2.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-bmg: [SKIP][151] ([Intel XE#6703]) -> [SKIP][152] ([Intel XE#7178] / [Intel XE#7351])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
- shard-bmg: [SKIP][153] ([Intel XE#6703]) -> [SKIP][154] ([Intel XE#7179])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-7/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][155] ([Intel XE#6703]) -> [SKIP][156] ([Intel XE#2311]) +3 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][157] ([Intel XE#2311]) -> [SKIP][158] ([Intel XE#2312]) +9 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][159] ([Intel XE#6703]) -> [SKIP][160] ([Intel XE#4141]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][161] ([Intel XE#4141]) -> [SKIP][162] ([Intel XE#2312]) +2 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][163] ([Intel XE#2312]) -> [SKIP][164] ([Intel XE#4141]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][165] ([Intel XE#6557] / [Intel XE#6703]) -> [SKIP][166] ([Intel XE#4141])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][167] ([Intel XE#2312]) -> [SKIP][168] ([Intel XE#2311]) +7 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt:
- shard-bmg: [SKIP][169] ([Intel XE#6703]) -> [SKIP][170] ([Intel XE#2313]) +6 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][171] ([Intel XE#2312]) -> [SKIP][172] ([Intel XE#2313]) +10 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][173] ([Intel XE#6703]) -> [SKIP][174] ([Intel XE#2312])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][175] ([Intel XE#2313]) -> [SKIP][176] ([Intel XE#2312]) +8 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-wc:
- shard-bmg: [SKIP][177] ([Intel XE#6703]) -> [SKIP][178] ([Intel XE#7061] / [Intel XE#7356])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-wc.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][179] ([Intel XE#3544]) -> [SKIP][180] ([Intel XE#3374] / [Intel XE#3544])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-bmg: [SKIP][181] ([Intel XE#6703]) -> [SKIP][182] ([Intel XE#6911] / [Intel XE#7378])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping:
- shard-bmg: [SKIP][183] ([Intel XE#6703]) -> [SKIP][184] ([Intel XE#7283])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-4/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: [SKIP][185] ([Intel XE#6703]) -> [SKIP][186] ([Intel XE#2392] / [Intel XE#6927])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_pm_dc@dc6-psr.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-7/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-bmg: [SKIP][187] ([Intel XE#6703]) -> [SKIP][188] ([Intel XE#1489])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-2/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-bmg: [SKIP][189] ([Intel XE#6703]) -> [SKIP][190] ([Intel XE#2234] / [Intel XE#2850])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_psr@pr-cursor-plane-onoff.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-8/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: [SKIP][191] ([Intel XE#6703]) -> [SKIP][192] ([Intel XE#2234])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_psr@psr2-primary-render.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-2/igt@kms_psr@psr2-primary-render.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-bmg: [SKIP][193] ([Intel XE#6703]) -> [SKIP][194] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_rotation_crc@bad-pixel-format.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-8/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_sharpness_filter@filter-toggle:
- shard-bmg: [SKIP][195] ([Intel XE#6703]) -> [SKIP][196] ([Intel XE#6503])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_sharpness_filter@filter-toggle.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-7/igt@kms_sharpness_filter@filter-toggle.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: [SKIP][197] ([Intel XE#6557] / [Intel XE#6703]) -> [SKIP][198] ([Intel XE#2450] / [Intel XE#5857])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@kms_tv_load_detect@load-detect.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-4/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@lobf:
- shard-lnl: [FAIL][199] ([Intel XE#6390] / [Intel XE#7461]) -> [SKIP][200] ([Intel XE#1499])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-lnl-3/igt@kms_vrr@lobf.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-lnl-3/igt@kms_vrr@lobf.html
* igt@xe_eudebug@basic-vm-bind-ufence-delay-ack:
- shard-bmg: [SKIP][201] ([Intel XE#6703]) -> [SKIP][202] ([Intel XE#4837]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-10/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
- shard-bmg: [SKIP][203] ([Intel XE#6703]) -> [SKIP][204] ([Intel XE#4837] / [Intel XE#6665])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-7/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
- shard-bmg: [SKIP][205] ([Intel XE#6703]) -> [SKIP][206] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind:
- shard-bmg: [SKIP][207] ([Intel XE#6703]) -> [SKIP][208] ([Intel XE#7136]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem:
- shard-bmg: [SKIP][209] ([Intel XE#6703]) -> [SKIP][210] ([Intel XE#6874]) +6 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-6/igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem.html
* igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr:
- shard-bmg: [SKIP][211] ([Intel XE#6703]) -> [SKIP][212] ([Intel XE#7138]) +2 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr.html
* igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
- shard-bmg: [SKIP][213] ([Intel XE#6703]) -> [SKIP][214] ([Intel XE#4733] / [Intel XE#7417])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-7/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-bmg: [SKIP][215] ([Intel XE#6703]) -> [SKIP][216] ([Intel XE#944])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820/shard-bmg-2/igt@xe_query@multigpu-query-uc-fw-version-guc.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/shard-bmg-6/igt@xe_query@multigpu-query-uc-fw-version-guc.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#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#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5745
[Intel XE#5857]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5857
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
[Intel XE#6390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6390
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519
[Intel XE#6529]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6529
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6747]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6747
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7331
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385
[Intel XE#7388]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7388
[Intel XE#7413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7413
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
[Intel XE#7461]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7461
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7596
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8805 -> IGT_8806
* Linux: xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820 -> xe-pw-160797v7
IGT_8805: 8805
IGT_8806: 8806
xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820: a25d8c583e1e52bde77d371081a7c3fcd0a2e820
xe-pw-160797v7: 160797v7
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v7/index.html
[-- Attachment #2: Type: text/html, Size: 73252 bytes --]
^ permalink raw reply [flat|nested] 48+ messages in thread
* [PATCH v7 0/2] drm/xe: PAT index validation for CPU_ADDR_MIRROR and madvise
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (22 preceding siblings ...)
2026-03-17 21:17 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-03-19 11:58 ` Jia Yao
2026-03-19 11:58 ` [PATCH v7 1/2] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
2026-03-19 11:58 ` [PATCH v7 2/2] drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR Jia Yao
2026-03-19 12:24 ` ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev8) Patchwork
` (3 subsequent siblings)
27 siblings, 2 replies; 48+ messages in thread
From: Jia Yao @ 2026-03-19 11:58 UTC (permalink / raw)
To: intel-xe
Cc: Jia Yao, stable, Shuicheng Lin, Mathew Alwin, Michal Mrozek,
Matthew Brost, Matthew Auld
This series strengthens PAT index validation to reject unsafe
configurations for CPU cached memory, preventing cases where the GPU may
bypass CPU caches and observe stale or sensitive data.
Patch 1 enforces PAT validation for the madvise ioctl path, ensuring
XE_COH_NONE cannot be used on CPU cached buffers, including CPU address
mirror and userptr-backed memory.
Patch 2 applies the same validation to vm_bind, treating
DRM_XE_VM_BIND_FLAG_CPU_ADDR_MIRROR the same as MAP_USERPTR with
respect to permissible PAT indices.
Both patches close a security gap affecting CPU cached memory access
when incoherent PAT values are used.
Changes since v6:
- Correct fixes tag
Fixes: b43e864af0d4 ("drm/xe/uapi: Add DRM_XE_VM_BIND_FLAG_CPU_ADDR_MIRROR")
Fixes: e1fbc4f18d5b ("drm/xe/uapi: support pat_index selection with vm_bind")
Cc: stable@vger.kernel.org # v6.18
Cc: Shuicheng Lin <shuicheng.lin@intel.com>
Cc: Mathew Alwin <alwin.mathew@intel.com>
Cc: Michal Mrozek <michal.mrozek@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Jia Yao (2):
drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in
madvise
drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR
drivers/gpu/drm/xe/xe_vm.c | 2 +-
drivers/gpu/drm/xe/xe_vm_madvise.c | 45 ++++++++++++++++++++++++++++++
2 files changed, 46 insertions(+), 1 deletion(-)
--
2.43.0
^ permalink raw reply [flat|nested] 48+ messages in thread
* [PATCH v7 1/2] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise
2026-03-19 11:58 ` [PATCH v7 0/2] drm/xe: PAT index validation for CPU_ADDR_MIRROR and madvise Jia Yao
@ 2026-03-19 11:58 ` Jia Yao
2026-03-19 11:58 ` [PATCH v7 2/2] drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR Jia Yao
1 sibling, 0 replies; 48+ messages in thread
From: Jia Yao @ 2026-03-19 11:58 UTC (permalink / raw)
To: intel-xe
Cc: Jia Yao, stable, Shuicheng Lin, Mathew Alwin, Michal Mrozek,
Matthew Brost, Matthew Auld, José Roberto de Souza
Add validation in xe_vm_madvise_ioctl() to reject PAT indices with
XE_COH_NONE coherency mode when applied to CPU cached memory.
Using coh_none with CPU cached buffers is a security issue. When the
kernel clears pages before reallocation, the clear operation stays in
CPU cache (dirty). GPU with coh_none can bypass CPU caches and read
stale sensitive data directly from DRAM, potentially leaking data from
previously freed pages of other processes.
This aligns with the existing validation in vm_bind path
(xe_vm_bind_ioctl_validate_bo).
v2(Matthew brost)
- Add fixes
- Move one debug print to better place
v3(Matthew Auld)
- Should be drm/xe/uapi
- More Cc
v4(Shuicheng Lin)
- Fix kmem leak issues by the way
v5
- Remove kmem leak because it has been merged by another patch
v6
- Remove the fix which is not related to current fix
v7
- No change
Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
Cc: stable@vger.kernel.org # v6.18
Cc: Shuicheng Lin <shuicheng.lin@intel.com>
Cc: Mathew Alwin <alwin.mathew@intel.com>
Cc: Michal Mrozek <michal.mrozek@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Jia Yao <jia.yao@intel.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Acked-by: Michal Mrozek <michal.mrozek@intel.com>
Acked-by: José Roberto de Souza <jose.souza@intel.com>
---
drivers/gpu/drm/xe/xe_vm_madvise.c | 45 ++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c b/drivers/gpu/drm/xe/xe_vm_madvise.c
index 869db304d96d..f26eb86e9c47 100644
--- a/drivers/gpu/drm/xe/xe_vm_madvise.c
+++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
@@ -365,6 +365,43 @@ static void xe_madvise_details_fini(struct xe_madvise_details *details)
drm_pagemap_put(details->dpagemap);
}
+static bool check_pat_args_are_sane(struct xe_device *xe,
+ struct xe_vmas_in_madvise_range *madvise_range,
+ u16 pat_index)
+{
+ u16 coh_mode = xe_pat_index_get_coh_mode(xe, pat_index);
+ int i;
+
+ /*
+ * Using coh_none with CPU cached buffers is not allowed.
+ * Otherwise CPU page clearing can be bypassed, which is a
+ * security issue. GPU can directly access system memory and
+ * bypass CPU caches, potentially reading stale sensitive data
+ * from previously freed pages.
+ */
+ if (coh_mode != XE_COH_NONE)
+ return true;
+
+ for (i = 0; i < madvise_range->num_vmas; i++) {
+ struct xe_vma *vma = madvise_range->vmas[i];
+ struct xe_bo *bo = xe_vma_bo(vma);
+
+ if (bo) {
+ /* BO with WB caching + COH_NONE is not allowed */
+ if (XE_IOCTL_DBG(xe, bo->cpu_caching == DRM_XE_GEM_CPU_CACHING_WB))
+ return false;
+ /* Imported dma-buf without caching info, assume cached */
+ if (XE_IOCTL_DBG(xe, !bo->cpu_caching))
+ return false;
+ } else if (XE_IOCTL_DBG(xe, xe_vma_is_cpu_addr_mirror(vma) ||
+ xe_vma_is_userptr(vma)))
+ /* System memory (userptr/SVM) is always CPU cached */
+ return false;
+ }
+
+ return true;
+}
+
static bool check_bo_args_are_sane(struct xe_vm *vm, struct xe_vma **vmas,
int num_vmas, u32 atomic_val)
{
@@ -455,6 +492,14 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void *data, struct drm_file *fil
if (err || !madvise_range.num_vmas)
goto madv_fini;
+ if (args->type == DRM_XE_MEM_RANGE_ATTR_PAT) {
+ if (!check_pat_args_are_sane(xe, &madvise_range,
+ args->pat_index.val)) {
+ err = -EINVAL;
+ goto free_vmas;
+ }
+ }
+
if (madvise_range.has_bo_vmas) {
if (args->type == DRM_XE_MEM_RANGE_ATTR_ATOMIC) {
if (!check_bo_args_are_sane(vm, madvise_range.vmas,
--
2.43.0
^ permalink raw reply related [flat|nested] 48+ messages in thread
* [PATCH v7 2/2] drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR
2026-03-19 11:58 ` [PATCH v7 0/2] drm/xe: PAT index validation for CPU_ADDR_MIRROR and madvise Jia Yao
2026-03-19 11:58 ` [PATCH v7 1/2] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
@ 2026-03-19 11:58 ` Jia Yao
1 sibling, 0 replies; 48+ messages in thread
From: Jia Yao @ 2026-03-19 11:58 UTC (permalink / raw)
To: intel-xe
Cc: Jia Yao, stable, Shuicheng Lin, Mathew Alwin, Michal Mrozek,
Matthew Brost, Matthew Auld
Add validation in xe_vm_bind_ioctl() to reject PAT indices with
XE_COH_NONE coherency mode when used with
DRM_XE_VM_BIND_FLAG_CPU_ADDR_MIRROR, consistent with the existing
validation for DRM_XE_VM_BIND_OP_MAP_USERPTR.
CPU address mirror mappings use system memory which is CPU cached,
making them incompatible with COH_NONE PAT index. Using COH_NONE with
CPU cached buffers is a security issue: GPU can bypass CPU caches and
directly read stale sensitive data from DRAM, potentially leaking data
from previously freed pages.
Although CPU_ADDR_MIRROR mappings don't create actual memory mappings
(the range is reserved for dynamic mapping on GPU page faults), the
underlying system memory is still CPU cached, so the same PAT coherency
restrictions as MAP_USERPTR should apply.
v2:
- Correct fix tag
v6:
- No change
v7:
- Correct fix tag
Fixes: b43e864af0d4 ("drm/xe/uapi: Add DRM_XE_VM_BIND_FLAG_CPU_ADDR_MIRROR")
Cc: stable@vger.kernel.org # v6.18
Cc: Shuicheng Lin <shuicheng.lin@intel.com>
Cc: Mathew Alwin <alwin.mathew@intel.com>
Cc: Michal Mrozek <michal.mrozek@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Jia Yao <jia.yao@intel.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
---
drivers/gpu/drm/xe/xe_vm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 5572e12c2a7e..1c4b4a5eeadb 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -3491,7 +3491,7 @@ static int vm_bind_ioctl_check_args(struct xe_device *xe, struct xe_vm *vm,
XE_IOCTL_DBG(xe, obj &&
op == DRM_XE_VM_BIND_OP_MAP_USERPTR) ||
XE_IOCTL_DBG(xe, coh_mode == XE_COH_NONE &&
- op == DRM_XE_VM_BIND_OP_MAP_USERPTR) ||
+ (op == DRM_XE_VM_BIND_OP_MAP_USERPTR || is_cpu_addr_mirror)) ||
XE_IOCTL_DBG(xe, comp_en &&
op == DRM_XE_VM_BIND_OP_MAP_USERPTR) ||
XE_IOCTL_DBG(xe, op == DRM_XE_VM_BIND_OP_MAP_USERPTR &&
--
2.43.0
^ permalink raw reply related [flat|nested] 48+ messages in thread
* ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev8)
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (23 preceding siblings ...)
2026-03-19 11:58 ` [PATCH v7 0/2] drm/xe: PAT index validation for CPU_ADDR_MIRROR and madvise Jia Yao
@ 2026-03-19 12:24 ` Patchwork
2026-03-19 13:12 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
27 siblings, 0 replies; 48+ messages in thread
From: Patchwork @ 2026-03-19 12:24 UTC (permalink / raw)
To: Jia Yao; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev8)
URL : https://patchwork.freedesktop.org/series/160797/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[12:23:07] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:23:11] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:23:41] Starting KUnit Kernel (1/1)...
[12:23:41] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:23:41] ================== guc_buf (11 subtests) ===================
[12:23:41] [PASSED] test_smallest
[12:23:41] [PASSED] test_largest
[12:23:41] [PASSED] test_granular
[12:23:41] [PASSED] test_unique
[12:23:41] [PASSED] test_overlap
[12:23:41] [PASSED] test_reusable
[12:23:41] [PASSED] test_too_big
[12:23:41] [PASSED] test_flush
[12:23:41] [PASSED] test_lookup
[12:23:41] [PASSED] test_data
[12:23:41] [PASSED] test_class
[12:23:41] ===================== [PASSED] guc_buf =====================
[12:23:41] =================== guc_dbm (7 subtests) ===================
[12:23:41] [PASSED] test_empty
[12:23:41] [PASSED] test_default
[12:23:41] ======================== test_size ========================
[12:23:41] [PASSED] 4
[12:23:41] [PASSED] 8
[12:23:41] [PASSED] 32
[12:23:41] [PASSED] 256
[12:23:41] ==================== [PASSED] test_size ====================
[12:23:41] ======================= test_reuse ========================
[12:23:41] [PASSED] 4
[12:23:41] [PASSED] 8
[12:23:41] [PASSED] 32
[12:23:41] [PASSED] 256
[12:23:41] =================== [PASSED] test_reuse ====================
[12:23:41] =================== test_range_overlap ====================
[12:23:41] [PASSED] 4
[12:23:41] [PASSED] 8
[12:23:41] [PASSED] 32
[12:23:41] [PASSED] 256
[12:23:41] =============== [PASSED] test_range_overlap ================
[12:23:41] =================== test_range_compact ====================
[12:23:41] [PASSED] 4
[12:23:41] [PASSED] 8
[12:23:41] [PASSED] 32
[12:23:41] [PASSED] 256
[12:23:41] =============== [PASSED] test_range_compact ================
[12:23:41] ==================== test_range_spare =====================
[12:23:41] [PASSED] 4
[12:23:41] [PASSED] 8
[12:23:41] [PASSED] 32
[12:23:41] [PASSED] 256
[12:23:41] ================ [PASSED] test_range_spare =================
[12:23:41] ===================== [PASSED] guc_dbm =====================
[12:23:41] =================== guc_idm (6 subtests) ===================
[12:23:41] [PASSED] bad_init
[12:23:41] [PASSED] no_init
[12:23:41] [PASSED] init_fini
[12:23:41] [PASSED] check_used
[12:23:41] [PASSED] check_quota
[12:23:41] [PASSED] check_all
[12:23:41] ===================== [PASSED] guc_idm =====================
[12:23:41] ================== no_relay (3 subtests) ===================
[12:23:41] [PASSED] xe_drops_guc2pf_if_not_ready
[12:23:41] [PASSED] xe_drops_guc2vf_if_not_ready
[12:23:41] [PASSED] xe_rejects_send_if_not_ready
[12:23:41] ==================== [PASSED] no_relay =====================
[12:23:41] ================== pf_relay (14 subtests) ==================
[12:23:41] [PASSED] pf_rejects_guc2pf_too_short
[12:23:41] [PASSED] pf_rejects_guc2pf_too_long
[12:23:41] [PASSED] pf_rejects_guc2pf_no_payload
[12:23:41] [PASSED] pf_fails_no_payload
[12:23:41] [PASSED] pf_fails_bad_origin
[12:23:41] [PASSED] pf_fails_bad_type
[12:23:41] [PASSED] pf_txn_reports_error
[12:23:41] [PASSED] pf_txn_sends_pf2guc
[12:23:41] [PASSED] pf_sends_pf2guc
[12:23:41] [SKIPPED] pf_loopback_nop
[12:23:41] [SKIPPED] pf_loopback_echo
[12:23:41] [SKIPPED] pf_loopback_fail
[12:23:41] [SKIPPED] pf_loopback_busy
[12:23:41] [SKIPPED] pf_loopback_retry
[12:23:41] ==================== [PASSED] pf_relay =====================
[12:23:41] ================== vf_relay (3 subtests) ===================
[12:23:41] [PASSED] vf_rejects_guc2vf_too_short
[12:23:41] [PASSED] vf_rejects_guc2vf_too_long
[12:23:41] [PASSED] vf_rejects_guc2vf_no_payload
[12:23:41] ==================== [PASSED] vf_relay =====================
[12:23:41] ================ pf_gt_config (9 subtests) =================
[12:23:41] [PASSED] fair_contexts_1vf
[12:23:41] [PASSED] fair_doorbells_1vf
[12:23:41] [PASSED] fair_ggtt_1vf
[12:23:41] ====================== fair_vram_1vf ======================
[12:23:41] [PASSED] 3.50 GiB
[12:23:41] [PASSED] 11.5 GiB
[12:23:41] [PASSED] 15.5 GiB
[12:23:41] [PASSED] 31.5 GiB
[12:23:41] [PASSED] 63.5 GiB
[12:23:41] [PASSED] 1.91 GiB
[12:23:41] ================== [PASSED] fair_vram_1vf ==================
[12:23:41] ================ fair_vram_1vf_admin_only =================
[12:23:41] [PASSED] 3.50 GiB
[12:23:41] [PASSED] 11.5 GiB
[12:23:41] [PASSED] 15.5 GiB
[12:23:41] [PASSED] 31.5 GiB
[12:23:41] [PASSED] 63.5 GiB
[12:23:41] [PASSED] 1.91 GiB
[12:23:41] ============ [PASSED] fair_vram_1vf_admin_only =============
[12:23:41] ====================== fair_contexts ======================
[12:23:41] [PASSED] 1 VF
[12:23:41] [PASSED] 2 VFs
[12:23:41] [PASSED] 3 VFs
[12:23:41] [PASSED] 4 VFs
[12:23:41] [PASSED] 5 VFs
[12:23:41] [PASSED] 6 VFs
[12:23:41] [PASSED] 7 VFs
[12:23:41] [PASSED] 8 VFs
[12:23:41] [PASSED] 9 VFs
[12:23:41] [PASSED] 10 VFs
[12:23:41] [PASSED] 11 VFs
[12:23:41] [PASSED] 12 VFs
[12:23:41] [PASSED] 13 VFs
[12:23:41] [PASSED] 14 VFs
[12:23:41] [PASSED] 15 VFs
[12:23:41] [PASSED] 16 VFs
[12:23:41] [PASSED] 17 VFs
[12:23:41] [PASSED] 18 VFs
[12:23:41] [PASSED] 19 VFs
[12:23:41] [PASSED] 20 VFs
[12:23:41] [PASSED] 21 VFs
[12:23:41] [PASSED] 22 VFs
[12:23:41] [PASSED] 23 VFs
[12:23:41] [PASSED] 24 VFs
[12:23:41] [PASSED] 25 VFs
[12:23:41] [PASSED] 26 VFs
[12:23:41] [PASSED] 27 VFs
[12:23:41] [PASSED] 28 VFs
[12:23:41] [PASSED] 29 VFs
[12:23:41] [PASSED] 30 VFs
[12:23:41] [PASSED] 31 VFs
[12:23:41] [PASSED] 32 VFs
[12:23:41] [PASSED] 33 VFs
[12:23:41] [PASSED] 34 VFs
[12:23:41] [PASSED] 35 VFs
[12:23:41] [PASSED] 36 VFs
[12:23:41] [PASSED] 37 VFs
[12:23:41] [PASSED] 38 VFs
[12:23:42] [PASSED] 39 VFs
[12:23:42] [PASSED] 40 VFs
[12:23:42] [PASSED] 41 VFs
[12:23:42] [PASSED] 42 VFs
[12:23:42] [PASSED] 43 VFs
[12:23:42] [PASSED] 44 VFs
[12:23:42] [PASSED] 45 VFs
[12:23:42] [PASSED] 46 VFs
[12:23:42] [PASSED] 47 VFs
[12:23:42] [PASSED] 48 VFs
[12:23:42] [PASSED] 49 VFs
[12:23:42] [PASSED] 50 VFs
[12:23:42] [PASSED] 51 VFs
[12:23:42] [PASSED] 52 VFs
[12:23:42] [PASSED] 53 VFs
[12:23:42] [PASSED] 54 VFs
[12:23:42] [PASSED] 55 VFs
[12:23:42] [PASSED] 56 VFs
[12:23:42] [PASSED] 57 VFs
[12:23:42] [PASSED] 58 VFs
[12:23:42] [PASSED] 59 VFs
[12:23:42] [PASSED] 60 VFs
[12:23:42] [PASSED] 61 VFs
[12:23:42] [PASSED] 62 VFs
[12:23:42] [PASSED] 63 VFs
[12:23:42] ================== [PASSED] fair_contexts ==================
[12:23:42] ===================== fair_doorbells ======================
[12:23:42] [PASSED] 1 VF
[12:23:42] [PASSED] 2 VFs
[12:23:42] [PASSED] 3 VFs
[12:23:42] [PASSED] 4 VFs
[12:23:42] [PASSED] 5 VFs
[12:23:42] [PASSED] 6 VFs
[12:23:42] [PASSED] 7 VFs
[12:23:42] [PASSED] 8 VFs
[12:23:42] [PASSED] 9 VFs
[12:23:42] [PASSED] 10 VFs
[12:23:42] [PASSED] 11 VFs
[12:23:42] [PASSED] 12 VFs
[12:23:42] [PASSED] 13 VFs
[12:23:42] [PASSED] 14 VFs
[12:23:42] [PASSED] 15 VFs
[12:23:42] [PASSED] 16 VFs
[12:23:42] [PASSED] 17 VFs
[12:23:42] [PASSED] 18 VFs
[12:23:42] [PASSED] 19 VFs
[12:23:42] [PASSED] 20 VFs
[12:23:42] [PASSED] 21 VFs
[12:23:42] [PASSED] 22 VFs
[12:23:42] [PASSED] 23 VFs
[12:23:42] [PASSED] 24 VFs
[12:23:42] [PASSED] 25 VFs
[12:23:42] [PASSED] 26 VFs
[12:23:42] [PASSED] 27 VFs
[12:23:42] [PASSED] 28 VFs
[12:23:42] [PASSED] 29 VFs
[12:23:42] [PASSED] 30 VFs
[12:23:42] [PASSED] 31 VFs
[12:23:42] [PASSED] 32 VFs
[12:23:42] [PASSED] 33 VFs
[12:23:42] [PASSED] 34 VFs
[12:23:42] [PASSED] 35 VFs
[12:23:42] [PASSED] 36 VFs
[12:23:42] [PASSED] 37 VFs
[12:23:42] [PASSED] 38 VFs
[12:23:42] [PASSED] 39 VFs
[12:23:42] [PASSED] 40 VFs
[12:23:42] [PASSED] 41 VFs
[12:23:42] [PASSED] 42 VFs
[12:23:42] [PASSED] 43 VFs
[12:23:42] [PASSED] 44 VFs
[12:23:42] [PASSED] 45 VFs
[12:23:42] [PASSED] 46 VFs
[12:23:42] [PASSED] 47 VFs
[12:23:42] [PASSED] 48 VFs
[12:23:42] [PASSED] 49 VFs
[12:23:42] [PASSED] 50 VFs
[12:23:42] [PASSED] 51 VFs
[12:23:42] [PASSED] 52 VFs
[12:23:42] [PASSED] 53 VFs
[12:23:42] [PASSED] 54 VFs
[12:23:42] [PASSED] 55 VFs
[12:23:42] [PASSED] 56 VFs
[12:23:42] [PASSED] 57 VFs
[12:23:42] [PASSED] 58 VFs
[12:23:42] [PASSED] 59 VFs
[12:23:42] [PASSED] 60 VFs
[12:23:42] [PASSED] 61 VFs
[12:23:42] [PASSED] 62 VFs
[12:23:42] [PASSED] 63 VFs
[12:23:42] ================= [PASSED] fair_doorbells ==================
[12:23:42] ======================== fair_ggtt ========================
[12:23:42] [PASSED] 1 VF
[12:23:42] [PASSED] 2 VFs
[12:23:42] [PASSED] 3 VFs
[12:23:42] [PASSED] 4 VFs
[12:23:42] [PASSED] 5 VFs
[12:23:42] [PASSED] 6 VFs
[12:23:42] [PASSED] 7 VFs
[12:23:42] [PASSED] 8 VFs
[12:23:42] [PASSED] 9 VFs
[12:23:42] [PASSED] 10 VFs
[12:23:42] [PASSED] 11 VFs
[12:23:42] [PASSED] 12 VFs
[12:23:42] [PASSED] 13 VFs
[12:23:42] [PASSED] 14 VFs
[12:23:42] [PASSED] 15 VFs
[12:23:42] [PASSED] 16 VFs
[12:23:42] [PASSED] 17 VFs
[12:23:42] [PASSED] 18 VFs
[12:23:42] [PASSED] 19 VFs
[12:23:42] [PASSED] 20 VFs
[12:23:42] [PASSED] 21 VFs
[12:23:42] [PASSED] 22 VFs
[12:23:42] [PASSED] 23 VFs
[12:23:42] [PASSED] 24 VFs
[12:23:42] [PASSED] 25 VFs
[12:23:42] [PASSED] 26 VFs
[12:23:42] [PASSED] 27 VFs
[12:23:42] [PASSED] 28 VFs
[12:23:42] [PASSED] 29 VFs
[12:23:42] [PASSED] 30 VFs
[12:23:42] [PASSED] 31 VFs
[12:23:42] [PASSED] 32 VFs
[12:23:42] [PASSED] 33 VFs
[12:23:42] [PASSED] 34 VFs
[12:23:42] [PASSED] 35 VFs
[12:23:42] [PASSED] 36 VFs
[12:23:42] [PASSED] 37 VFs
[12:23:42] [PASSED] 38 VFs
[12:23:42] [PASSED] 39 VFs
[12:23:42] [PASSED] 40 VFs
[12:23:42] [PASSED] 41 VFs
[12:23:42] [PASSED] 42 VFs
[12:23:42] [PASSED] 43 VFs
[12:23:42] [PASSED] 44 VFs
[12:23:42] [PASSED] 45 VFs
[12:23:42] [PASSED] 46 VFs
[12:23:42] [PASSED] 47 VFs
[12:23:42] [PASSED] 48 VFs
[12:23:42] [PASSED] 49 VFs
[12:23:42] [PASSED] 50 VFs
[12:23:42] [PASSED] 51 VFs
[12:23:42] [PASSED] 52 VFs
[12:23:42] [PASSED] 53 VFs
[12:23:42] [PASSED] 54 VFs
[12:23:42] [PASSED] 55 VFs
[12:23:42] [PASSED] 56 VFs
[12:23:42] [PASSED] 57 VFs
[12:23:42] [PASSED] 58 VFs
[12:23:42] [PASSED] 59 VFs
[12:23:42] [PASSED] 60 VFs
[12:23:42] [PASSED] 61 VFs
[12:23:42] [PASSED] 62 VFs
[12:23:42] [PASSED] 63 VFs
[12:23:42] ==================== [PASSED] fair_ggtt ====================
[12:23:42] ======================== fair_vram ========================
[12:23:42] [PASSED] 1 VF
[12:23:42] [PASSED] 2 VFs
[12:23:42] [PASSED] 3 VFs
[12:23:42] [PASSED] 4 VFs
[12:23:42] [PASSED] 5 VFs
[12:23:42] [PASSED] 6 VFs
[12:23:42] [PASSED] 7 VFs
[12:23:42] [PASSED] 8 VFs
[12:23:42] [PASSED] 9 VFs
[12:23:42] [PASSED] 10 VFs
[12:23:42] [PASSED] 11 VFs
[12:23:42] [PASSED] 12 VFs
[12:23:42] [PASSED] 13 VFs
[12:23:42] [PASSED] 14 VFs
[12:23:42] [PASSED] 15 VFs
[12:23:42] [PASSED] 16 VFs
[12:23:42] [PASSED] 17 VFs
[12:23:42] [PASSED] 18 VFs
[12:23:42] [PASSED] 19 VFs
[12:23:42] [PASSED] 20 VFs
[12:23:42] [PASSED] 21 VFs
[12:23:42] [PASSED] 22 VFs
[12:23:42] [PASSED] 23 VFs
[12:23:42] [PASSED] 24 VFs
[12:23:42] [PASSED] 25 VFs
[12:23:42] [PASSED] 26 VFs
[12:23:42] [PASSED] 27 VFs
[12:23:42] [PASSED] 28 VFs
[12:23:42] [PASSED] 29 VFs
[12:23:42] [PASSED] 30 VFs
[12:23:42] [PASSED] 31 VFs
[12:23:42] [PASSED] 32 VFs
[12:23:42] [PASSED] 33 VFs
[12:23:42] [PASSED] 34 VFs
[12:23:42] [PASSED] 35 VFs
[12:23:42] [PASSED] 36 VFs
[12:23:42] [PASSED] 37 VFs
[12:23:42] [PASSED] 38 VFs
[12:23:42] [PASSED] 39 VFs
[12:23:42] [PASSED] 40 VFs
[12:23:42] [PASSED] 41 VFs
[12:23:42] [PASSED] 42 VFs
[12:23:42] [PASSED] 43 VFs
[12:23:42] [PASSED] 44 VFs
[12:23:42] [PASSED] 45 VFs
[12:23:42] [PASSED] 46 VFs
[12:23:42] [PASSED] 47 VFs
[12:23:42] [PASSED] 48 VFs
[12:23:42] [PASSED] 49 VFs
[12:23:42] [PASSED] 50 VFs
[12:23:42] [PASSED] 51 VFs
[12:23:42] [PASSED] 52 VFs
[12:23:42] [PASSED] 53 VFs
[12:23:42] [PASSED] 54 VFs
[12:23:42] [PASSED] 55 VFs
[12:23:42] [PASSED] 56 VFs
[12:23:42] [PASSED] 57 VFs
[12:23:42] [PASSED] 58 VFs
[12:23:42] [PASSED] 59 VFs
[12:23:42] [PASSED] 60 VFs
[12:23:42] [PASSED] 61 VFs
[12:23:42] [PASSED] 62 VFs
[12:23:42] [PASSED] 63 VFs
[12:23:42] ==================== [PASSED] fair_vram ====================
[12:23:42] ================== [PASSED] pf_gt_config ===================
[12:23:42] ===================== lmtt (1 subtest) =====================
[12:23:42] ======================== test_ops =========================
[12:23:42] [PASSED] 2-level
[12:23:42] [PASSED] multi-level
[12:23:42] ==================== [PASSED] test_ops =====================
[12:23:42] ====================== [PASSED] lmtt =======================
[12:23:42] ================= pf_service (11 subtests) =================
[12:23:42] [PASSED] pf_negotiate_any
[12:23:42] [PASSED] pf_negotiate_base_match
[12:23:42] [PASSED] pf_negotiate_base_newer
[12:23:42] [PASSED] pf_negotiate_base_next
[12:23:42] [SKIPPED] pf_negotiate_base_older
[12:23:42] [PASSED] pf_negotiate_base_prev
[12:23:42] [PASSED] pf_negotiate_latest_match
[12:23:42] [PASSED] pf_negotiate_latest_newer
[12:23:42] [PASSED] pf_negotiate_latest_next
[12:23:42] [SKIPPED] pf_negotiate_latest_older
[12:23:42] [SKIPPED] pf_negotiate_latest_prev
[12:23:42] =================== [PASSED] pf_service ====================
[12:23:42] ================= xe_guc_g2g (2 subtests) ==================
[12:23:42] ============== xe_live_guc_g2g_kunit_default ==============
[12:23:42] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[12:23:42] ============== xe_live_guc_g2g_kunit_allmem ===============
[12:23:42] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[12:23:42] =================== [SKIPPED] xe_guc_g2g ===================
[12:23:42] =================== xe_mocs (2 subtests) ===================
[12:23:42] ================ xe_live_mocs_kernel_kunit ================
[12:23:42] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[12:23:42] ================ xe_live_mocs_reset_kunit =================
[12:23:42] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[12:23:42] ==================== [SKIPPED] xe_mocs =====================
[12:23:42] ================= xe_migrate (2 subtests) ==================
[12:23:42] ================= xe_migrate_sanity_kunit =================
[12:23:42] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[12:23:42] ================== xe_validate_ccs_kunit ==================
[12:23:42] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[12:23:42] =================== [SKIPPED] xe_migrate ===================
[12:23:42] ================== xe_dma_buf (1 subtest) ==================
[12:23:42] ==================== xe_dma_buf_kunit =====================
[12:23:42] ================ [SKIPPED] xe_dma_buf_kunit ================
[12:23:42] =================== [SKIPPED] xe_dma_buf ===================
[12:23:42] ================= xe_bo_shrink (1 subtest) =================
[12:23:42] =================== xe_bo_shrink_kunit ====================
[12:23:42] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[12:23:42] ================== [SKIPPED] xe_bo_shrink ==================
[12:23:42] ==================== xe_bo (2 subtests) ====================
[12:23:42] ================== xe_ccs_migrate_kunit ===================
[12:23:42] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[12:23:42] ==================== xe_bo_evict_kunit ====================
[12:23:42] =============== [SKIPPED] xe_bo_evict_kunit ================
[12:23:42] ===================== [SKIPPED] xe_bo ======================
[12:23:42] ==================== args (13 subtests) ====================
[12:23:42] [PASSED] count_args_test
[12:23:42] [PASSED] call_args_example
[12:23:42] [PASSED] call_args_test
[12:23:42] [PASSED] drop_first_arg_example
[12:23:42] [PASSED] drop_first_arg_test
[12:23:42] [PASSED] first_arg_example
[12:23:42] [PASSED] first_arg_test
[12:23:42] [PASSED] last_arg_example
[12:23:42] [PASSED] last_arg_test
[12:23:42] [PASSED] pick_arg_example
[12:23:42] [PASSED] if_args_example
[12:23:42] [PASSED] if_args_test
[12:23:42] [PASSED] sep_comma_example
[12:23:42] ====================== [PASSED] args =======================
[12:23:42] =================== xe_pci (3 subtests) ====================
[12:23:42] ==================== check_graphics_ip ====================
[12:23:42] [PASSED] 12.00 Xe_LP
[12:23:42] [PASSED] 12.10 Xe_LP+
[12:23:42] [PASSED] 12.55 Xe_HPG
[12:23:42] [PASSED] 12.60 Xe_HPC
[12:23:42] [PASSED] 12.70 Xe_LPG
[12:23:42] [PASSED] 12.71 Xe_LPG
[12:23:42] [PASSED] 12.74 Xe_LPG+
[12:23:42] [PASSED] 20.01 Xe2_HPG
[12:23:42] [PASSED] 20.02 Xe2_HPG
[12:23:42] [PASSED] 20.04 Xe2_LPG
[12:23:42] [PASSED] 30.00 Xe3_LPG
[12:23:42] [PASSED] 30.01 Xe3_LPG
[12:23:42] [PASSED] 30.03 Xe3_LPG
[12:23:42] [PASSED] 30.04 Xe3_LPG
[12:23:42] [PASSED] 30.05 Xe3_LPG
[12:23:42] [PASSED] 35.10 Xe3p_LPG
[12:23:42] [PASSED] 35.11 Xe3p_XPC
[12:23:42] ================ [PASSED] check_graphics_ip ================
[12:23:42] ===================== check_media_ip ======================
[12:23:42] [PASSED] 12.00 Xe_M
[12:23:42] [PASSED] 12.55 Xe_HPM
[12:23:42] [PASSED] 13.00 Xe_LPM+
[12:23:42] [PASSED] 13.01 Xe2_HPM
[12:23:42] [PASSED] 20.00 Xe2_LPM
[12:23:42] [PASSED] 30.00 Xe3_LPM
[12:23:42] [PASSED] 30.02 Xe3_LPM
[12:23:42] [PASSED] 35.00 Xe3p_LPM
[12:23:42] [PASSED] 35.03 Xe3p_HPM
[12:23:42] ================= [PASSED] check_media_ip ==================
[12:23:42] =================== check_platform_desc ===================
[12:23:42] [PASSED] 0x9A60 (TIGERLAKE)
[12:23:42] [PASSED] 0x9A68 (TIGERLAKE)
[12:23:42] [PASSED] 0x9A70 (TIGERLAKE)
[12:23:42] [PASSED] 0x9A40 (TIGERLAKE)
[12:23:42] [PASSED] 0x9A49 (TIGERLAKE)
[12:23:42] [PASSED] 0x9A59 (TIGERLAKE)
[12:23:42] [PASSED] 0x9A78 (TIGERLAKE)
[12:23:42] [PASSED] 0x9AC0 (TIGERLAKE)
[12:23:42] [PASSED] 0x9AC9 (TIGERLAKE)
[12:23:42] [PASSED] 0x9AD9 (TIGERLAKE)
[12:23:42] [PASSED] 0x9AF8 (TIGERLAKE)
[12:23:42] [PASSED] 0x4C80 (ROCKETLAKE)
[12:23:42] [PASSED] 0x4C8A (ROCKETLAKE)
[12:23:42] [PASSED] 0x4C8B (ROCKETLAKE)
[12:23:42] [PASSED] 0x4C8C (ROCKETLAKE)
[12:23:42] [PASSED] 0x4C90 (ROCKETLAKE)
[12:23:42] [PASSED] 0x4C9A (ROCKETLAKE)
[12:23:42] [PASSED] 0x4680 (ALDERLAKE_S)
[12:23:42] [PASSED] 0x4682 (ALDERLAKE_S)
[12:23:42] [PASSED] 0x4688 (ALDERLAKE_S)
[12:23:42] [PASSED] 0x468A (ALDERLAKE_S)
[12:23:42] [PASSED] 0x468B (ALDERLAKE_S)
[12:23:42] [PASSED] 0x4690 (ALDERLAKE_S)
[12:23:42] [PASSED] 0x4692 (ALDERLAKE_S)
[12:23:42] [PASSED] 0x4693 (ALDERLAKE_S)
[12:23:42] [PASSED] 0x46A0 (ALDERLAKE_P)
[12:23:42] [PASSED] 0x46A1 (ALDERLAKE_P)
[12:23:42] [PASSED] 0x46A2 (ALDERLAKE_P)
[12:23:42] [PASSED] 0x46A3 (ALDERLAKE_P)
[12:23:42] [PASSED] 0x46A6 (ALDERLAKE_P)
[12:23:42] [PASSED] 0x46A8 (ALDERLAKE_P)
[12:23:42] [PASSED] 0x46AA (ALDERLAKE_P)
[12:23:42] [PASSED] 0x462A (ALDERLAKE_P)
[12:23:42] [PASSED] 0x4626 (ALDERLAKE_P)
[12:23:42] [PASSED] 0x4628 (ALDERLAKE_P)
[12:23:42] [PASSED] 0x46B0 (ALDERLAKE_P)
[12:23:42] [PASSED] 0x46B1 (ALDERLAKE_P)
[12:23:42] [PASSED] 0x46B2 (ALDERLAKE_P)
[12:23:42] [PASSED] 0x46B3 (ALDERLAKE_P)
[12:23:42] [PASSED] 0x46C0 (ALDERLAKE_P)
[12:23:42] [PASSED] 0x46C1 (ALDERLAKE_P)
[12:23:42] [PASSED] 0x46C2 (ALDERLAKE_P)
[12:23:42] [PASSED] 0x46C3 (ALDERLAKE_P)
[12:23:42] [PASSED] 0x46D0 (ALDERLAKE_N)
[12:23:42] [PASSED] 0x46D1 (ALDERLAKE_N)
[12:23:42] [PASSED] 0x46D2 (ALDERLAKE_N)
[12:23:42] [PASSED] 0x46D3 (ALDERLAKE_N)
[12:23:42] [PASSED] 0x46D4 (ALDERLAKE_N)
[12:23:42] [PASSED] 0xA721 (ALDERLAKE_P)
[12:23:42] [PASSED] 0xA7A1 (ALDERLAKE_P)
[12:23:42] [PASSED] 0xA7A9 (ALDERLAKE_P)
[12:23:42] [PASSED] 0xA7AC (ALDERLAKE_P)
[12:23:42] [PASSED] 0xA7AD (ALDERLAKE_P)
[12:23:42] [PASSED] 0xA720 (ALDERLAKE_P)
[12:23:42] [PASSED] 0xA7A0 (ALDERLAKE_P)
[12:23:42] [PASSED] 0xA7A8 (ALDERLAKE_P)
[12:23:42] [PASSED] 0xA7AA (ALDERLAKE_P)
[12:23:42] [PASSED] 0xA7AB (ALDERLAKE_P)
[12:23:42] [PASSED] 0xA780 (ALDERLAKE_S)
[12:23:42] [PASSED] 0xA781 (ALDERLAKE_S)
[12:23:42] [PASSED] 0xA782 (ALDERLAKE_S)
[12:23:42] [PASSED] 0xA783 (ALDERLAKE_S)
[12:23:42] [PASSED] 0xA788 (ALDERLAKE_S)
[12:23:42] [PASSED] 0xA789 (ALDERLAKE_S)
[12:23:42] [PASSED] 0xA78A (ALDERLAKE_S)
[12:23:42] [PASSED] 0xA78B (ALDERLAKE_S)
[12:23:42] [PASSED] 0x4905 (DG1)
[12:23:42] [PASSED] 0x4906 (DG1)
[12:23:42] [PASSED] 0x4907 (DG1)
[12:23:42] [PASSED] 0x4908 (DG1)
[12:23:42] [PASSED] 0x4909 (DG1)
[12:23:42] [PASSED] 0x56C0 (DG2)
[12:23:42] [PASSED] 0x56C2 (DG2)
[12:23:42] [PASSED] 0x56C1 (DG2)
[12:23:42] [PASSED] 0x7D51 (METEORLAKE)
[12:23:42] [PASSED] 0x7DD1 (METEORLAKE)
[12:23:42] [PASSED] 0x7D41 (METEORLAKE)
[12:23:42] [PASSED] 0x7D67 (METEORLAKE)
[12:23:42] [PASSED] 0xB640 (METEORLAKE)
[12:23:42] [PASSED] 0x56A0 (DG2)
[12:23:42] [PASSED] 0x56A1 (DG2)
[12:23:42] [PASSED] 0x56A2 (DG2)
[12:23:42] [PASSED] 0x56BE (DG2)
[12:23:42] [PASSED] 0x56BF (DG2)
[12:23:42] [PASSED] 0x5690 (DG2)
[12:23:42] [PASSED] 0x5691 (DG2)
[12:23:42] [PASSED] 0x5692 (DG2)
[12:23:42] [PASSED] 0x56A5 (DG2)
[12:23:42] [PASSED] 0x56A6 (DG2)
[12:23:42] [PASSED] 0x56B0 (DG2)
[12:23:42] [PASSED] 0x56B1 (DG2)
[12:23:42] [PASSED] 0x56BA (DG2)
[12:23:42] [PASSED] 0x56BB (DG2)
[12:23:42] [PASSED] 0x56BC (DG2)
[12:23:42] [PASSED] 0x56BD (DG2)
[12:23:42] [PASSED] 0x5693 (DG2)
[12:23:42] [PASSED] 0x5694 (DG2)
[12:23:42] [PASSED] 0x5695 (DG2)
[12:23:42] [PASSED] 0x56A3 (DG2)
[12:23:42] [PASSED] 0x56A4 (DG2)
[12:23:42] [PASSED] 0x56B2 (DG2)
[12:23:42] [PASSED] 0x56B3 (DG2)
[12:23:42] [PASSED] 0x5696 (DG2)
[12:23:42] [PASSED] 0x5697 (DG2)
[12:23:42] [PASSED] 0xB69 (PVC)
[12:23:42] [PASSED] 0xB6E (PVC)
[12:23:42] [PASSED] 0xBD4 (PVC)
[12:23:42] [PASSED] 0xBD5 (PVC)
[12:23:42] [PASSED] 0xBD6 (PVC)
[12:23:42] [PASSED] 0xBD7 (PVC)
[12:23:42] [PASSED] 0xBD8 (PVC)
[12:23:42] [PASSED] 0xBD9 (PVC)
[12:23:42] [PASSED] 0xBDA (PVC)
[12:23:42] [PASSED] 0xBDB (PVC)
[12:23:42] [PASSED] 0xBE0 (PVC)
[12:23:42] [PASSED] 0xBE1 (PVC)
[12:23:42] [PASSED] 0xBE5 (PVC)
[12:23:42] [PASSED] 0x7D40 (METEORLAKE)
[12:23:42] [PASSED] 0x7D45 (METEORLAKE)
[12:23:42] [PASSED] 0x7D55 (METEORLAKE)
[12:23:42] [PASSED] 0x7D60 (METEORLAKE)
[12:23:42] [PASSED] 0x7DD5 (METEORLAKE)
[12:23:42] [PASSED] 0x6420 (LUNARLAKE)
[12:23:42] [PASSED] 0x64A0 (LUNARLAKE)
[12:23:42] [PASSED] 0x64B0 (LUNARLAKE)
[12:23:42] [PASSED] 0xE202 (BATTLEMAGE)
[12:23:42] [PASSED] 0xE209 (BATTLEMAGE)
[12:23:42] [PASSED] 0xE20B (BATTLEMAGE)
[12:23:42] [PASSED] 0xE20C (BATTLEMAGE)
[12:23:42] [PASSED] 0xE20D (BATTLEMAGE)
[12:23:42] [PASSED] 0xE210 (BATTLEMAGE)
[12:23:42] [PASSED] 0xE211 (BATTLEMAGE)
[12:23:42] [PASSED] 0xE212 (BATTLEMAGE)
[12:23:42] [PASSED] 0xE216 (BATTLEMAGE)
[12:23:42] [PASSED] 0xE220 (BATTLEMAGE)
[12:23:42] [PASSED] 0xE221 (BATTLEMAGE)
[12:23:42] [PASSED] 0xE222 (BATTLEMAGE)
[12:23:42] [PASSED] 0xE223 (BATTLEMAGE)
[12:23:42] [PASSED] 0xB080 (PANTHERLAKE)
[12:23:42] [PASSED] 0xB081 (PANTHERLAKE)
[12:23:42] [PASSED] 0xB082 (PANTHERLAKE)
[12:23:42] [PASSED] 0xB083 (PANTHERLAKE)
[12:23:42] [PASSED] 0xB084 (PANTHERLAKE)
[12:23:42] [PASSED] 0xB085 (PANTHERLAKE)
[12:23:42] [PASSED] 0xB086 (PANTHERLAKE)
[12:23:42] [PASSED] 0xB087 (PANTHERLAKE)
[12:23:42] [PASSED] 0xB08F (PANTHERLAKE)
[12:23:42] [PASSED] 0xB090 (PANTHERLAKE)
[12:23:42] [PASSED] 0xB0A0 (PANTHERLAKE)
[12:23:42] [PASSED] 0xB0B0 (PANTHERLAKE)
[12:23:42] [PASSED] 0xFD80 (PANTHERLAKE)
[12:23:42] [PASSED] 0xFD81 (PANTHERLAKE)
[12:23:42] [PASSED] 0xD740 (NOVALAKE_S)
[12:23:42] [PASSED] 0xD741 (NOVALAKE_S)
[12:23:42] [PASSED] 0xD742 (NOVALAKE_S)
[12:23:42] [PASSED] 0xD743 (NOVALAKE_S)
[12:23:42] [PASSED] 0xD744 (NOVALAKE_S)
[12:23:42] [PASSED] 0xD745 (NOVALAKE_S)
[12:23:42] [PASSED] 0x674C (CRESCENTISLAND)
[12:23:42] [PASSED] 0xD750 (NOVALAKE_P)
[12:23:42] [PASSED] 0xD751 (NOVALAKE_P)
[12:23:42] [PASSED] 0xD752 (NOVALAKE_P)
[12:23:42] [PASSED] 0xD753 (NOVALAKE_P)
[12:23:42] [PASSED] 0xD754 (NOVALAKE_P)
[12:23:42] [PASSED] 0xD755 (NOVALAKE_P)
[12:23:42] [PASSED] 0xD756 (NOVALAKE_P)
[12:23:42] [PASSED] 0xD757 (NOVALAKE_P)
[12:23:42] [PASSED] 0xD75F (NOVALAKE_P)
[12:23:42] =============== [PASSED] check_platform_desc ===============
[12:23:42] ===================== [PASSED] xe_pci ======================
[12:23:42] =================== xe_rtp (2 subtests) ====================
[12:23:42] =============== xe_rtp_process_to_sr_tests ================
[12:23:42] [PASSED] coalesce-same-reg
[12:23:42] [PASSED] no-match-no-add
[12:23:42] [PASSED] match-or
[12:23:42] [PASSED] match-or-xfail
[12:23:42] [PASSED] no-match-no-add-multiple-rules
[12:23:42] [PASSED] two-regs-two-entries
[12:23:42] [PASSED] clr-one-set-other
[12:23:42] [PASSED] set-field
[12:23:42] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[12:23:42] [PASSED] conflict-not-disjoint
[12:23:42] [PASSED] conflict-reg-type
[12:23:42] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[12:23:42] ================== xe_rtp_process_tests ===================
[12:23:42] [PASSED] active1
[12:23:42] [PASSED] active2
[12:23:42] [PASSED] active-inactive
[12:23:42] [PASSED] inactive-active
[12:23:42] [PASSED] inactive-1st_or_active-inactive
[12:23:42] [PASSED] inactive-2nd_or_active-inactive
[12:23:42] [PASSED] inactive-last_or_active-inactive
[12:23:42] [PASSED] inactive-no_or_active-inactive
[12:23:42] ============== [PASSED] xe_rtp_process_tests ===============
[12:23:42] ===================== [PASSED] xe_rtp ======================
[12:23:42] ==================== xe_wa (1 subtest) =====================
[12:23:42] ======================== xe_wa_gt =========================
[12:23:42] [PASSED] TIGERLAKE B0
[12:23:42] [PASSED] DG1 A0
[12:23:42] [PASSED] DG1 B0
[12:23:42] [PASSED] ALDERLAKE_S A0
[12:23:42] [PASSED] ALDERLAKE_S B0
[12:23:42] [PASSED] ALDERLAKE_S C0
[12:23:42] [PASSED] ALDERLAKE_S D0
[12:23:42] [PASSED] ALDERLAKE_P A0
[12:23:42] [PASSED] ALDERLAKE_P B0
[12:23:42] [PASSED] ALDERLAKE_P C0
[12:23:42] [PASSED] ALDERLAKE_S RPLS D0
[12:23:42] [PASSED] ALDERLAKE_P RPLU E0
[12:23:42] [PASSED] DG2 G10 C0
[12:23:42] [PASSED] DG2 G11 B1
[12:23:42] [PASSED] DG2 G12 A1
[12:23:42] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:23:42] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:23:42] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[12:23:42] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[12:23:42] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[12:23:42] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[12:23:42] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[12:23:42] ==================== [PASSED] xe_wa_gt =====================
[12:23:42] ====================== [PASSED] xe_wa ======================
[12:23:42] ============================================================
[12:23:42] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[12:23:42] Elapsed time: 35.260s total, 4.253s configuring, 30.340s building, 0.613s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[12:23:42] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:23:44] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:24:08] Starting KUnit Kernel (1/1)...
[12:24:08] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:24:08] ============ drm_test_pick_cmdline (2 subtests) ============
[12:24:08] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[12:24:08] =============== drm_test_pick_cmdline_named ===============
[12:24:08] [PASSED] NTSC
[12:24:08] [PASSED] NTSC-J
[12:24:08] [PASSED] PAL
[12:24:08] [PASSED] PAL-M
[12:24:08] =========== [PASSED] drm_test_pick_cmdline_named ===========
[12:24:08] ============== [PASSED] drm_test_pick_cmdline ==============
[12:24:08] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[12:24:08] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[12:24:08] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[12:24:08] =========== drm_validate_clone_mode (2 subtests) ===========
[12:24:08] ============== drm_test_check_in_clone_mode ===============
[12:24:08] [PASSED] in_clone_mode
[12:24:08] [PASSED] not_in_clone_mode
[12:24:08] ========== [PASSED] drm_test_check_in_clone_mode ===========
[12:24:08] =============== drm_test_check_valid_clones ===============
[12:24:08] [PASSED] not_in_clone_mode
[12:24:08] [PASSED] valid_clone
[12:24:08] [PASSED] invalid_clone
[12:24:08] =========== [PASSED] drm_test_check_valid_clones ===========
[12:24:08] ============= [PASSED] drm_validate_clone_mode =============
[12:24:08] ============= drm_validate_modeset (1 subtest) =============
[12:24:08] [PASSED] drm_test_check_connector_changed_modeset
[12:24:08] ============== [PASSED] drm_validate_modeset ===============
[12:24:08] ====== drm_test_bridge_get_current_state (2 subtests) ======
[12:24:08] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[12:24:08] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[12:24:08] ======== [PASSED] drm_test_bridge_get_current_state ========
[12:24:08] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[12:24:08] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[12:24:08] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[12:24:08] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[12:24:08] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[12:24:08] ============== drm_bridge_alloc (2 subtests) ===============
[12:24:08] [PASSED] drm_test_drm_bridge_alloc_basic
[12:24:08] [PASSED] drm_test_drm_bridge_alloc_get_put
[12:24:08] ================ [PASSED] drm_bridge_alloc =================
[12:24:08] ============= drm_cmdline_parser (40 subtests) =============
[12:24:08] [PASSED] drm_test_cmdline_force_d_only
[12:24:08] [PASSED] drm_test_cmdline_force_D_only_dvi
[12:24:08] [PASSED] drm_test_cmdline_force_D_only_hdmi
[12:24:08] [PASSED] drm_test_cmdline_force_D_only_not_digital
[12:24:08] [PASSED] drm_test_cmdline_force_e_only
[12:24:08] [PASSED] drm_test_cmdline_res
[12:24:08] [PASSED] drm_test_cmdline_res_vesa
[12:24:08] [PASSED] drm_test_cmdline_res_vesa_rblank
[12:24:08] [PASSED] drm_test_cmdline_res_rblank
[12:24:08] [PASSED] drm_test_cmdline_res_bpp
[12:24:08] [PASSED] drm_test_cmdline_res_refresh
[12:24:08] [PASSED] drm_test_cmdline_res_bpp_refresh
[12:24:08] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[12:24:08] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[12:24:08] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[12:24:08] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[12:24:08] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[12:24:08] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[12:24:08] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[12:24:08] [PASSED] drm_test_cmdline_res_margins_force_on
[12:24:08] [PASSED] drm_test_cmdline_res_vesa_margins
[12:24:08] [PASSED] drm_test_cmdline_name
[12:24:08] [PASSED] drm_test_cmdline_name_bpp
[12:24:08] [PASSED] drm_test_cmdline_name_option
[12:24:08] [PASSED] drm_test_cmdline_name_bpp_option
[12:24:08] [PASSED] drm_test_cmdline_rotate_0
[12:24:08] [PASSED] drm_test_cmdline_rotate_90
[12:24:08] [PASSED] drm_test_cmdline_rotate_180
[12:24:08] [PASSED] drm_test_cmdline_rotate_270
[12:24:08] [PASSED] drm_test_cmdline_hmirror
[12:24:08] [PASSED] drm_test_cmdline_vmirror
[12:24:08] [PASSED] drm_test_cmdline_margin_options
[12:24:08] [PASSED] drm_test_cmdline_multiple_options
[12:24:08] [PASSED] drm_test_cmdline_bpp_extra_and_option
[12:24:08] [PASSED] drm_test_cmdline_extra_and_option
[12:24:08] [PASSED] drm_test_cmdline_freestanding_options
[12:24:08] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[12:24:08] [PASSED] drm_test_cmdline_panel_orientation
[12:24:08] ================ drm_test_cmdline_invalid =================
[12:24:08] [PASSED] margin_only
[12:24:08] [PASSED] interlace_only
[12:24:08] [PASSED] res_missing_x
[12:24:08] [PASSED] res_missing_y
[12:24:08] [PASSED] res_bad_y
[12:24:08] [PASSED] res_missing_y_bpp
[12:24:08] [PASSED] res_bad_bpp
[12:24:08] [PASSED] res_bad_refresh
[12:24:08] [PASSED] res_bpp_refresh_force_on_off
[12:24:08] [PASSED] res_invalid_mode
[12:24:08] [PASSED] res_bpp_wrong_place_mode
[12:24:08] [PASSED] name_bpp_refresh
[12:24:08] [PASSED] name_refresh
[12:24:08] [PASSED] name_refresh_wrong_mode
[12:24:08] [PASSED] name_refresh_invalid_mode
[12:24:08] [PASSED] rotate_multiple
[12:24:08] [PASSED] rotate_invalid_val
[12:24:08] [PASSED] rotate_truncated
[12:24:08] [PASSED] invalid_option
[12:24:08] [PASSED] invalid_tv_option
[12:24:08] [PASSED] truncated_tv_option
[12:24:08] ============ [PASSED] drm_test_cmdline_invalid =============
[12:24:08] =============== drm_test_cmdline_tv_options ===============
[12:24:08] [PASSED] NTSC
[12:24:08] [PASSED] NTSC_443
[12:24:08] [PASSED] NTSC_J
[12:24:08] [PASSED] PAL
[12:24:08] [PASSED] PAL_M
[12:24:08] [PASSED] PAL_N
[12:24:08] [PASSED] SECAM
[12:24:08] [PASSED] MONO_525
[12:24:08] [PASSED] MONO_625
[12:24:08] =========== [PASSED] drm_test_cmdline_tv_options ===========
[12:24:08] =============== [PASSED] drm_cmdline_parser ================
[12:24:08] ========== drmm_connector_hdmi_init (20 subtests) ==========
[12:24:08] [PASSED] drm_test_connector_hdmi_init_valid
[12:24:08] [PASSED] drm_test_connector_hdmi_init_bpc_8
[12:24:08] [PASSED] drm_test_connector_hdmi_init_bpc_10
[12:24:08] [PASSED] drm_test_connector_hdmi_init_bpc_12
[12:24:08] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[12:24:08] [PASSED] drm_test_connector_hdmi_init_bpc_null
[12:24:08] [PASSED] drm_test_connector_hdmi_init_formats_empty
[12:24:08] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[12:24:08] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[12:24:08] [PASSED] supported_formats=0x9 yuv420_allowed=1
[12:24:08] [PASSED] supported_formats=0x9 yuv420_allowed=0
[12:24:08] [PASSED] supported_formats=0x3 yuv420_allowed=1
[12:24:08] [PASSED] supported_formats=0x3 yuv420_allowed=0
[12:24:08] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[12:24:08] [PASSED] drm_test_connector_hdmi_init_null_ddc
[12:24:08] [PASSED] drm_test_connector_hdmi_init_null_product
[12:24:08] [PASSED] drm_test_connector_hdmi_init_null_vendor
[12:24:08] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[12:24:08] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[12:24:08] [PASSED] drm_test_connector_hdmi_init_product_valid
[12:24:08] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[12:24:08] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[12:24:08] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[12:24:08] ========= drm_test_connector_hdmi_init_type_valid =========
[12:24:08] [PASSED] HDMI-A
[12:24:08] [PASSED] HDMI-B
[12:24:08] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[12:24:08] ======== drm_test_connector_hdmi_init_type_invalid ========
[12:24:08] [PASSED] Unknown
[12:24:08] [PASSED] VGA
[12:24:08] [PASSED] DVI-I
[12:24:08] [PASSED] DVI-D
[12:24:08] [PASSED] DVI-A
[12:24:08] [PASSED] Composite
[12:24:08] [PASSED] SVIDEO
[12:24:08] [PASSED] LVDS
[12:24:08] [PASSED] Component
[12:24:08] [PASSED] DIN
[12:24:08] [PASSED] DP
[12:24:08] [PASSED] TV
[12:24:08] [PASSED] eDP
[12:24:08] [PASSED] Virtual
[12:24:08] [PASSED] DSI
[12:24:08] [PASSED] DPI
[12:24:08] [PASSED] Writeback
[12:24:08] [PASSED] SPI
[12:24:08] [PASSED] USB
[12:24:08] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[12:24:08] ============ [PASSED] drmm_connector_hdmi_init =============
[12:24:08] ============= drmm_connector_init (3 subtests) =============
[12:24:08] [PASSED] drm_test_drmm_connector_init
[12:24:08] [PASSED] drm_test_drmm_connector_init_null_ddc
[12:24:08] ========= drm_test_drmm_connector_init_type_valid =========
[12:24:08] [PASSED] Unknown
[12:24:08] [PASSED] VGA
[12:24:08] [PASSED] DVI-I
[12:24:08] [PASSED] DVI-D
[12:24:08] [PASSED] DVI-A
[12:24:08] [PASSED] Composite
[12:24:08] [PASSED] SVIDEO
[12:24:08] [PASSED] LVDS
[12:24:08] [PASSED] Component
[12:24:08] [PASSED] DIN
[12:24:08] [PASSED] DP
[12:24:08] [PASSED] HDMI-A
[12:24:08] [PASSED] HDMI-B
[12:24:08] [PASSED] TV
[12:24:08] [PASSED] eDP
[12:24:08] [PASSED] Virtual
[12:24:08] [PASSED] DSI
[12:24:08] [PASSED] DPI
[12:24:08] [PASSED] Writeback
[12:24:08] [PASSED] SPI
[12:24:08] [PASSED] USB
[12:24:08] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[12:24:08] =============== [PASSED] drmm_connector_init ===============
[12:24:08] ========= drm_connector_dynamic_init (6 subtests) ==========
[12:24:08] [PASSED] drm_test_drm_connector_dynamic_init
[12:24:08] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[12:24:08] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[12:24:08] [PASSED] drm_test_drm_connector_dynamic_init_properties
[12:24:08] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[12:24:08] [PASSED] Unknown
[12:24:08] [PASSED] VGA
[12:24:08] [PASSED] DVI-I
[12:24:08] [PASSED] DVI-D
[12:24:08] [PASSED] DVI-A
[12:24:08] [PASSED] Composite
[12:24:08] [PASSED] SVIDEO
[12:24:08] [PASSED] LVDS
[12:24:08] [PASSED] Component
[12:24:08] [PASSED] DIN
[12:24:08] [PASSED] DP
[12:24:08] [PASSED] HDMI-A
[12:24:08] [PASSED] HDMI-B
[12:24:08] [PASSED] TV
[12:24:08] [PASSED] eDP
[12:24:08] [PASSED] Virtual
[12:24:08] [PASSED] DSI
[12:24:08] [PASSED] DPI
[12:24:08] [PASSED] Writeback
[12:24:08] [PASSED] SPI
[12:24:08] [PASSED] USB
[12:24:08] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[12:24:08] ======== drm_test_drm_connector_dynamic_init_name =========
[12:24:08] [PASSED] Unknown
[12:24:08] [PASSED] VGA
[12:24:08] [PASSED] DVI-I
[12:24:08] [PASSED] DVI-D
[12:24:08] [PASSED] DVI-A
[12:24:08] [PASSED] Composite
[12:24:08] [PASSED] SVIDEO
[12:24:08] [PASSED] LVDS
[12:24:08] [PASSED] Component
[12:24:08] [PASSED] DIN
[12:24:08] [PASSED] DP
[12:24:08] [PASSED] HDMI-A
[12:24:08] [PASSED] HDMI-B
[12:24:08] [PASSED] TV
[12:24:08] [PASSED] eDP
[12:24:08] [PASSED] Virtual
[12:24:08] [PASSED] DSI
[12:24:08] [PASSED] DPI
[12:24:08] [PASSED] Writeback
[12:24:08] [PASSED] SPI
[12:24:08] [PASSED] USB
[12:24:08] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[12:24:08] =========== [PASSED] drm_connector_dynamic_init ============
[12:24:08] ==== drm_connector_dynamic_register_early (4 subtests) =====
[12:24:08] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[12:24:08] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[12:24:08] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[12:24:08] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[12:24:08] ====== [PASSED] drm_connector_dynamic_register_early =======
[12:24:08] ======= drm_connector_dynamic_register (7 subtests) ========
[12:24:08] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[12:24:08] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[12:24:08] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[12:24:08] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[12:24:08] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[12:24:08] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[12:24:08] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[12:24:08] ========= [PASSED] drm_connector_dynamic_register ==========
[12:24:08] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[12:24:08] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[12:24:08] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[12:24:08] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[12:24:08] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[12:24:08] ========== drm_test_get_tv_mode_from_name_valid ===========
[12:24:08] [PASSED] NTSC
[12:24:08] [PASSED] NTSC-443
[12:24:08] [PASSED] NTSC-J
[12:24:08] [PASSED] PAL
[12:24:08] [PASSED] PAL-M
[12:24:08] [PASSED] PAL-N
[12:24:08] [PASSED] SECAM
[12:24:08] [PASSED] Mono
[12:24:08] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[12:24:08] [PASSED] drm_test_get_tv_mode_from_name_truncated
[12:24:08] ============ [PASSED] drm_get_tv_mode_from_name ============
[12:24:08] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[12:24:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[12:24:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[12:24:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[12:24:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[12:24:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[12:24:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[12:24:08] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[12:24:08] [PASSED] VIC 96
[12:24:08] [PASSED] VIC 97
[12:24:08] [PASSED] VIC 101
[12:24:08] [PASSED] VIC 102
[12:24:08] [PASSED] VIC 106
[12:24:08] [PASSED] VIC 107
[12:24:08] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[12:24:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[12:24:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[12:24:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[12:24:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[12:24:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[12:24:08] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[12:24:08] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[12:24:08] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[12:24:08] [PASSED] Automatic
[12:24:08] [PASSED] Full
[12:24:08] [PASSED] Limited 16:235
[12:24:08] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[12:24:08] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[12:24:08] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[12:24:08] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[12:24:08] === drm_test_drm_hdmi_connector_get_output_format_name ====
[12:24:08] [PASSED] RGB
[12:24:08] [PASSED] YUV 4:2:0
[12:24:08] [PASSED] YUV 4:2:2
[12:24:08] [PASSED] YUV 4:4:4
[12:24:08] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[12:24:08] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[12:24:08] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[12:24:08] ============= drm_damage_helper (21 subtests) ==============
[12:24:08] [PASSED] drm_test_damage_iter_no_damage
[12:24:08] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[12:24:08] [PASSED] drm_test_damage_iter_no_damage_src_moved
[12:24:08] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[12:24:08] [PASSED] drm_test_damage_iter_no_damage_not_visible
[12:24:08] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[12:24:08] [PASSED] drm_test_damage_iter_no_damage_no_fb
[12:24:08] [PASSED] drm_test_damage_iter_simple_damage
[12:24:08] [PASSED] drm_test_damage_iter_single_damage
[12:24:08] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[12:24:08] [PASSED] drm_test_damage_iter_single_damage_outside_src
[12:24:08] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[12:24:08] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[12:24:08] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[12:24:08] [PASSED] drm_test_damage_iter_single_damage_src_moved
[12:24:08] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[12:24:08] [PASSED] drm_test_damage_iter_damage
[12:24:08] [PASSED] drm_test_damage_iter_damage_one_intersect
[12:24:08] [PASSED] drm_test_damage_iter_damage_one_outside
[12:24:08] [PASSED] drm_test_damage_iter_damage_src_moved
[12:24:08] [PASSED] drm_test_damage_iter_damage_not_visible
[12:24:08] ================ [PASSED] drm_damage_helper ================
[12:24:08] ============== drm_dp_mst_helper (3 subtests) ==============
[12:24:08] ============== drm_test_dp_mst_calc_pbn_mode ==============
[12:24:08] [PASSED] Clock 154000 BPP 30 DSC disabled
[12:24:08] [PASSED] Clock 234000 BPP 30 DSC disabled
[12:24:08] [PASSED] Clock 297000 BPP 24 DSC disabled
[12:24:08] [PASSED] Clock 332880 BPP 24 DSC enabled
[12:24:08] [PASSED] Clock 324540 BPP 24 DSC enabled
[12:24:08] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[12:24:08] ============== drm_test_dp_mst_calc_pbn_div ===============
[12:24:08] [PASSED] Link rate 2000000 lane count 4
[12:24:08] [PASSED] Link rate 2000000 lane count 2
[12:24:08] [PASSED] Link rate 2000000 lane count 1
[12:24:08] [PASSED] Link rate 1350000 lane count 4
[12:24:08] [PASSED] Link rate 1350000 lane count 2
[12:24:08] [PASSED] Link rate 1350000 lane count 1
[12:24:08] [PASSED] Link rate 1000000 lane count 4
[12:24:08] [PASSED] Link rate 1000000 lane count 2
[12:24:08] [PASSED] Link rate 1000000 lane count 1
[12:24:08] [PASSED] Link rate 810000 lane count 4
[12:24:08] [PASSED] Link rate 810000 lane count 2
[12:24:08] [PASSED] Link rate 810000 lane count 1
[12:24:08] [PASSED] Link rate 540000 lane count 4
[12:24:08] [PASSED] Link rate 540000 lane count 2
[12:24:08] [PASSED] Link rate 540000 lane count 1
[12:24:08] [PASSED] Link rate 270000 lane count 4
[12:24:08] [PASSED] Link rate 270000 lane count 2
[12:24:08] [PASSED] Link rate 270000 lane count 1
[12:24:08] [PASSED] Link rate 162000 lane count 4
[12:24:08] [PASSED] Link rate 162000 lane count 2
[12:24:08] [PASSED] Link rate 162000 lane count 1
[12:24:08] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[12:24:08] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[12:24:08] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[12:24:08] [PASSED] DP_POWER_UP_PHY with port number
[12:24:08] [PASSED] DP_POWER_DOWN_PHY with port number
[12:24:08] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[12:24:08] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[12:24:08] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[12:24:08] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[12:24:08] [PASSED] DP_QUERY_PAYLOAD with port number
[12:24:08] [PASSED] DP_QUERY_PAYLOAD with VCPI
[12:24:08] [PASSED] DP_REMOTE_DPCD_READ with port number
[12:24:08] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[12:24:08] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[12:24:08] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[12:24:08] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[12:24:08] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[12:24:08] [PASSED] DP_REMOTE_I2C_READ with port number
[12:24:08] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[12:24:08] [PASSED] DP_REMOTE_I2C_READ with transactions array
[12:24:08] [PASSED] DP_REMOTE_I2C_WRITE with port number
[12:24:08] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[12:24:08] [PASSED] DP_REMOTE_I2C_WRITE with data array
[12:24:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[12:24:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[12:24:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[12:24:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[12:24:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[12:24:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[12:24:08] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[12:24:08] ================ [PASSED] drm_dp_mst_helper ================
[12:24:08] ================== drm_exec (7 subtests) ===================
[12:24:08] [PASSED] sanitycheck
[12:24:08] [PASSED] test_lock
[12:24:08] [PASSED] test_lock_unlock
[12:24:08] [PASSED] test_duplicates
[12:24:08] [PASSED] test_prepare
[12:24:08] [PASSED] test_prepare_array
[12:24:08] [PASSED] test_multiple_loops
[12:24:08] ==================== [PASSED] drm_exec =====================
[12:24:08] =========== drm_format_helper_test (17 subtests) ===========
[12:24:08] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[12:24:08] [PASSED] single_pixel_source_buffer
[12:24:08] [PASSED] single_pixel_clip_rectangle
[12:24:08] [PASSED] well_known_colors
[12:24:08] [PASSED] destination_pitch
[12:24:08] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[12:24:08] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[12:24:08] [PASSED] single_pixel_source_buffer
[12:24:08] [PASSED] single_pixel_clip_rectangle
[12:24:08] [PASSED] well_known_colors
[12:24:08] [PASSED] destination_pitch
[12:24:08] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[12:24:08] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[12:24:08] [PASSED] single_pixel_source_buffer
[12:24:08] [PASSED] single_pixel_clip_rectangle
[12:24:08] [PASSED] well_known_colors
[12:24:08] [PASSED] destination_pitch
[12:24:08] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[12:24:08] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[12:24:08] [PASSED] single_pixel_source_buffer
[12:24:08] [PASSED] single_pixel_clip_rectangle
[12:24:08] [PASSED] well_known_colors
[12:24:08] [PASSED] destination_pitch
[12:24:08] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[12:24:08] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[12:24:08] [PASSED] single_pixel_source_buffer
[12:24:08] [PASSED] single_pixel_clip_rectangle
[12:24:08] [PASSED] well_known_colors
[12:24:08] [PASSED] destination_pitch
[12:24:08] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[12:24:08] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[12:24:08] [PASSED] single_pixel_source_buffer
[12:24:08] [PASSED] single_pixel_clip_rectangle
[12:24:08] [PASSED] well_known_colors
[12:24:08] [PASSED] destination_pitch
[12:24:08] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[12:24:08] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[12:24:08] [PASSED] single_pixel_source_buffer
[12:24:08] [PASSED] single_pixel_clip_rectangle
[12:24:08] [PASSED] well_known_colors
[12:24:08] [PASSED] destination_pitch
[12:24:08] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[12:24:08] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[12:24:08] [PASSED] single_pixel_source_buffer
[12:24:08] [PASSED] single_pixel_clip_rectangle
[12:24:08] [PASSED] well_known_colors
[12:24:08] [PASSED] destination_pitch
[12:24:08] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[12:24:08] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[12:24:08] [PASSED] single_pixel_source_buffer
[12:24:08] [PASSED] single_pixel_clip_rectangle
[12:24:08] [PASSED] well_known_colors
[12:24:08] [PASSED] destination_pitch
[12:24:08] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[12:24:08] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[12:24:08] [PASSED] single_pixel_source_buffer
[12:24:08] [PASSED] single_pixel_clip_rectangle
[12:24:08] [PASSED] well_known_colors
[12:24:08] [PASSED] destination_pitch
[12:24:08] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[12:24:08] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[12:24:08] [PASSED] single_pixel_source_buffer
[12:24:08] [PASSED] single_pixel_clip_rectangle
[12:24:08] [PASSED] well_known_colors
[12:24:08] [PASSED] destination_pitch
[12:24:08] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[12:24:08] ============== drm_test_fb_xrgb8888_to_mono ===============
[12:24:08] [PASSED] single_pixel_source_buffer
[12:24:08] [PASSED] single_pixel_clip_rectangle
[12:24:08] [PASSED] well_known_colors
[12:24:08] [PASSED] destination_pitch
[12:24:08] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[12:24:08] ==================== drm_test_fb_swab =====================
[12:24:08] [PASSED] single_pixel_source_buffer
[12:24:08] [PASSED] single_pixel_clip_rectangle
[12:24:08] [PASSED] well_known_colors
[12:24:08] [PASSED] destination_pitch
[12:24:08] ================ [PASSED] drm_test_fb_swab =================
[12:24:08] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[12:24:08] [PASSED] single_pixel_source_buffer
[12:24:08] [PASSED] single_pixel_clip_rectangle
[12:24:08] [PASSED] well_known_colors
[12:24:08] [PASSED] destination_pitch
[12:24:08] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[12:24:08] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[12:24:08] [PASSED] single_pixel_source_buffer
[12:24:08] [PASSED] single_pixel_clip_rectangle
[12:24:08] [PASSED] well_known_colors
[12:24:08] [PASSED] destination_pitch
[12:24:08] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[12:24:08] ================= drm_test_fb_clip_offset =================
[12:24:08] [PASSED] pass through
[12:24:08] [PASSED] horizontal offset
[12:24:08] [PASSED] vertical offset
[12:24:08] [PASSED] horizontal and vertical offset
[12:24:08] [PASSED] horizontal offset (custom pitch)
[12:24:08] [PASSED] vertical offset (custom pitch)
[12:24:08] [PASSED] horizontal and vertical offset (custom pitch)
[12:24:08] ============= [PASSED] drm_test_fb_clip_offset =============
[12:24:08] =================== drm_test_fb_memcpy ====================
[12:24:08] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[12:24:08] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[12:24:08] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[12:24:08] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[12:24:08] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[12:24:08] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[12:24:08] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[12:24:08] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[12:24:08] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[12:24:08] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[12:24:08] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[12:24:08] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[12:24:08] =============== [PASSED] drm_test_fb_memcpy ================
[12:24:08] ============= [PASSED] drm_format_helper_test ==============
[12:24:08] ================= drm_format (18 subtests) =================
[12:24:08] [PASSED] drm_test_format_block_width_invalid
[12:24:08] [PASSED] drm_test_format_block_width_one_plane
[12:24:08] [PASSED] drm_test_format_block_width_two_plane
[12:24:08] [PASSED] drm_test_format_block_width_three_plane
[12:24:08] [PASSED] drm_test_format_block_width_tiled
[12:24:08] [PASSED] drm_test_format_block_height_invalid
[12:24:08] [PASSED] drm_test_format_block_height_one_plane
[12:24:08] [PASSED] drm_test_format_block_height_two_plane
[12:24:08] [PASSED] drm_test_format_block_height_three_plane
[12:24:08] [PASSED] drm_test_format_block_height_tiled
[12:24:08] [PASSED] drm_test_format_min_pitch_invalid
[12:24:08] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[12:24:08] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[12:24:08] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[12:24:08] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[12:24:08] [PASSED] drm_test_format_min_pitch_two_plane
[12:24:08] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[12:24:08] [PASSED] drm_test_format_min_pitch_tiled
[12:24:08] =================== [PASSED] drm_format ====================
[12:24:08] ============== drm_framebuffer (10 subtests) ===============
[12:24:08] ========== drm_test_framebuffer_check_src_coords ==========
[12:24:08] [PASSED] Success: source fits into fb
[12:24:08] [PASSED] Fail: overflowing fb with x-axis coordinate
[12:24:08] [PASSED] Fail: overflowing fb with y-axis coordinate
[12:24:08] [PASSED] Fail: overflowing fb with source width
[12:24:08] [PASSED] Fail: overflowing fb with source height
[12:24:08] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[12:24:08] [PASSED] drm_test_framebuffer_cleanup
[12:24:08] =============== drm_test_framebuffer_create ===============
[12:24:08] [PASSED] ABGR8888 normal sizes
[12:24:08] [PASSED] ABGR8888 max sizes
[12:24:08] [PASSED] ABGR8888 pitch greater than min required
[12:24:08] [PASSED] ABGR8888 pitch less than min required
[12:24:08] [PASSED] ABGR8888 Invalid width
[12:24:08] [PASSED] ABGR8888 Invalid buffer handle
[12:24:08] [PASSED] No pixel format
[12:24:08] [PASSED] ABGR8888 Width 0
[12:24:08] [PASSED] ABGR8888 Height 0
[12:24:08] [PASSED] ABGR8888 Out of bound height * pitch combination
[12:24:08] [PASSED] ABGR8888 Large buffer offset
[12:24:08] [PASSED] ABGR8888 Buffer offset for inexistent plane
[12:24:08] [PASSED] ABGR8888 Invalid flag
[12:24:08] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[12:24:08] [PASSED] ABGR8888 Valid buffer modifier
[12:24:08] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[12:24:08] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[12:24:08] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[12:24:08] [PASSED] NV12 Normal sizes
[12:24:08] [PASSED] NV12 Max sizes
[12:24:08] [PASSED] NV12 Invalid pitch
[12:24:08] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[12:24:08] [PASSED] NV12 different modifier per-plane
[12:24:08] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[12:24:08] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[12:24:08] [PASSED] NV12 Modifier for inexistent plane
[12:24:08] [PASSED] NV12 Handle for inexistent plane
[12:24:08] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[12:24:08] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[12:24:08] [PASSED] YVU420 Normal sizes
[12:24:08] [PASSED] YVU420 Max sizes
[12:24:08] [PASSED] YVU420 Invalid pitch
[12:24:08] [PASSED] YVU420 Different pitches
[12:24:08] [PASSED] YVU420 Different buffer offsets/pitches
[12:24:08] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[12:24:08] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[12:24:08] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[12:24:08] [PASSED] YVU420 Valid modifier
[12:24:08] [PASSED] YVU420 Different modifiers per plane
[12:24:08] [PASSED] YVU420 Modifier for inexistent plane
[12:24:08] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[12:24:08] [PASSED] X0L2 Normal sizes
[12:24:08] [PASSED] X0L2 Max sizes
[12:24:08] [PASSED] X0L2 Invalid pitch
[12:24:08] [PASSED] X0L2 Pitch greater than minimum required
[12:24:08] [PASSED] X0L2 Handle for inexistent plane
[12:24:08] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[12:24:08] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[12:24:08] [PASSED] X0L2 Valid modifier
[12:24:08] [PASSED] X0L2 Modifier for inexistent plane
[12:24:08] =========== [PASSED] drm_test_framebuffer_create ===========
[12:24:08] [PASSED] drm_test_framebuffer_free
[12:24:08] [PASSED] drm_test_framebuffer_init
[12:24:08] [PASSED] drm_test_framebuffer_init_bad_format
[12:24:08] [PASSED] drm_test_framebuffer_init_dev_mismatch
[12:24:08] [PASSED] drm_test_framebuffer_lookup
[12:24:08] [PASSED] drm_test_framebuffer_lookup_inexistent
[12:24:08] [PASSED] drm_test_framebuffer_modifiers_not_supported
[12:24:08] ================= [PASSED] drm_framebuffer =================
[12:24:08] ================ drm_gem_shmem (8 subtests) ================
[12:24:08] [PASSED] drm_gem_shmem_test_obj_create
[12:24:08] [PASSED] drm_gem_shmem_test_obj_create_private
[12:24:08] [PASSED] drm_gem_shmem_test_pin_pages
[12:24:08] [PASSED] drm_gem_shmem_test_vmap
[12:24:08] [PASSED] drm_gem_shmem_test_get_sg_table
[12:24:08] [PASSED] drm_gem_shmem_test_get_pages_sgt
[12:24:08] [PASSED] drm_gem_shmem_test_madvise
[12:24:08] [PASSED] drm_gem_shmem_test_purge
[12:24:08] ================== [PASSED] drm_gem_shmem ==================
[12:24:08] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[12:24:08] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[12:24:08] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[12:24:08] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[12:24:08] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[12:24:08] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[12:24:08] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[12:24:08] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[12:24:08] [PASSED] Automatic
[12:24:08] [PASSED] Full
[12:24:08] [PASSED] Limited 16:235
[12:24:08] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[12:24:08] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[12:24:08] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[12:24:08] [PASSED] drm_test_check_disable_connector
[12:24:08] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[12:24:08] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[12:24:08] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[12:24:08] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[12:24:08] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[12:24:08] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[12:24:08] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[12:24:08] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[12:24:08] [PASSED] drm_test_check_output_bpc_dvi
[12:24:08] [PASSED] drm_test_check_output_bpc_format_vic_1
[12:24:08] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[12:24:08] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[12:24:08] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[12:24:08] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[12:24:08] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[12:24:08] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[12:24:08] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[12:24:08] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[12:24:08] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[12:24:08] [PASSED] drm_test_check_broadcast_rgb_value
[12:24:08] [PASSED] drm_test_check_bpc_8_value
[12:24:08] [PASSED] drm_test_check_bpc_10_value
[12:24:08] [PASSED] drm_test_check_bpc_12_value
[12:24:08] [PASSED] drm_test_check_format_value
[12:24:08] [PASSED] drm_test_check_tmds_char_value
[12:24:08] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[12:24:08] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[12:24:08] [PASSED] drm_test_check_mode_valid
[12:24:08] [PASSED] drm_test_check_mode_valid_reject
[12:24:08] [PASSED] drm_test_check_mode_valid_reject_rate
[12:24:08] [PASSED] drm_test_check_mode_valid_reject_max_clock
[12:24:08] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[12:24:08] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[12:24:08] [PASSED] drm_test_check_infoframes
[12:24:08] [PASSED] drm_test_check_reject_avi_infoframe
[12:24:08] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[12:24:08] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[12:24:08] [PASSED] drm_test_check_reject_audio_infoframe
[12:24:08] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[12:24:08] ================= drm_managed (2 subtests) =================
[12:24:08] [PASSED] drm_test_managed_release_action
[12:24:08] [PASSED] drm_test_managed_run_action
[12:24:08] =================== [PASSED] drm_managed ===================
[12:24:08] =================== drm_mm (6 subtests) ====================
[12:24:08] [PASSED] drm_test_mm_init
[12:24:08] [PASSED] drm_test_mm_debug
[12:24:08] [PASSED] drm_test_mm_align32
[12:24:08] [PASSED] drm_test_mm_align64
[12:24:08] [PASSED] drm_test_mm_lowest
[12:24:08] [PASSED] drm_test_mm_highest
[12:24:08] ===================== [PASSED] drm_mm ======================
[12:24:08] ============= drm_modes_analog_tv (5 subtests) =============
[12:24:08] [PASSED] drm_test_modes_analog_tv_mono_576i
[12:24:08] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[12:24:08] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[12:24:08] [PASSED] drm_test_modes_analog_tv_pal_576i
[12:24:08] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[12:24:08] =============== [PASSED] drm_modes_analog_tv ===============
[12:24:08] ============== drm_plane_helper (2 subtests) ===============
[12:24:08] =============== drm_test_check_plane_state ================
[12:24:08] [PASSED] clipping_simple
[12:24:08] [PASSED] clipping_rotate_reflect
[12:24:08] [PASSED] positioning_simple
[12:24:08] [PASSED] upscaling
[12:24:08] [PASSED] downscaling
[12:24:08] [PASSED] rounding1
[12:24:08] [PASSED] rounding2
[12:24:08] [PASSED] rounding3
[12:24:08] [PASSED] rounding4
[12:24:08] =========== [PASSED] drm_test_check_plane_state ============
[12:24:08] =========== drm_test_check_invalid_plane_state ============
[12:24:08] [PASSED] positioning_invalid
[12:24:08] [PASSED] upscaling_invalid
[12:24:08] [PASSED] downscaling_invalid
[12:24:08] ======= [PASSED] drm_test_check_invalid_plane_state ========
[12:24:08] ================ [PASSED] drm_plane_helper =================
[12:24:08] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[12:24:08] ====== drm_test_connector_helper_tv_get_modes_check =======
[12:24:08] [PASSED] None
[12:24:08] [PASSED] PAL
[12:24:08] [PASSED] NTSC
[12:24:08] [PASSED] Both, NTSC Default
[12:24:08] [PASSED] Both, PAL Default
[12:24:08] [PASSED] Both, NTSC Default, with PAL on command-line
[12:24:08] [PASSED] Both, PAL Default, with NTSC on command-line
[12:24:08] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[12:24:08] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[12:24:08] ================== drm_rect (9 subtests) ===================
[12:24:08] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[12:24:08] [PASSED] drm_test_rect_clip_scaled_not_clipped
[12:24:08] [PASSED] drm_test_rect_clip_scaled_clipped
[12:24:08] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[12:24:08] ================= drm_test_rect_intersect =================
[12:24:08] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[12:24:08] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[12:24:08] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[12:24:08] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[12:24:08] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[12:24:08] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[12:24:08] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[12:24:08] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[12:24:08] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[12:24:08] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[12:24:08] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[12:24:08] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[12:24:08] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[12:24:08] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[12:24:08] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[12:24:08] ============= [PASSED] drm_test_rect_intersect =============
[12:24:08] ================ drm_test_rect_calc_hscale ================
[12:24:08] [PASSED] normal use
[12:24:08] [PASSED] out of max range
[12:24:08] [PASSED] out of min range
[12:24:08] [PASSED] zero dst
[12:24:08] [PASSED] negative src
[12:24:08] [PASSED] negative dst
[12:24:08] ============ [PASSED] drm_test_rect_calc_hscale ============
[12:24:08] ================ drm_test_rect_calc_vscale ================
[12:24:08] [PASSED] normal use
[12:24:08] [PASSED] out of max range
[12:24:08] [PASSED] out of min range
[12:24:08] [PASSED] zero dst
[12:24:08] [PASSED] negative src
[12:24:08] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[12:24:08] ============ [PASSED] drm_test_rect_calc_vscale ============
[12:24:08] ================== drm_test_rect_rotate ===================
[12:24:08] [PASSED] reflect-x
[12:24:08] [PASSED] reflect-y
[12:24:08] [PASSED] rotate-0
[12:24:08] [PASSED] rotate-90
[12:24:08] [PASSED] rotate-180
[12:24:08] [PASSED] rotate-270
[12:24:08] ============== [PASSED] drm_test_rect_rotate ===============
[12:24:08] ================ drm_test_rect_rotate_inv =================
[12:24:08] [PASSED] reflect-x
[12:24:08] [PASSED] reflect-y
[12:24:08] [PASSED] rotate-0
[12:24:08] [PASSED] rotate-90
[12:24:08] [PASSED] rotate-180
[12:24:08] [PASSED] rotate-270
[12:24:08] ============ [PASSED] drm_test_rect_rotate_inv =============
[12:24:08] ==================== [PASSED] drm_rect =====================
[12:24:08] ============ drm_sysfb_modeset_test (1 subtest) ============
[12:24:08] ============ drm_test_sysfb_build_fourcc_list =============
[12:24:08] [PASSED] no native formats
[12:24:08] [PASSED] XRGB8888 as native format
[12:24:08] [PASSED] remove duplicates
[12:24:08] [PASSED] convert alpha formats
[12:24:08] [PASSED] random formats
[12:24:08] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[12:24:08] ============= [PASSED] drm_sysfb_modeset_test ==============
[12:24:08] ================== drm_fixp (2 subtests) ===================
[12:24:08] [PASSED] drm_test_int2fixp
[12:24:08] [PASSED] drm_test_sm2fixp
[12:24:08] ==================== [PASSED] drm_fixp =====================
[12:24:08] ============================================================
[12:24:08] Testing complete. Ran 621 tests: passed: 621
[12:24:08] Elapsed time: 26.032s total, 1.734s configuring, 24.079s building, 0.179s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[12:24:08] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:24:10] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:24:19] Starting KUnit Kernel (1/1)...
[12:24:19] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:24:19] ================= ttm_device (5 subtests) ==================
[12:24:19] [PASSED] ttm_device_init_basic
[12:24:19] [PASSED] ttm_device_init_multiple
[12:24:19] [PASSED] ttm_device_fini_basic
[12:24:19] [PASSED] ttm_device_init_no_vma_man
[12:24:19] ================== ttm_device_init_pools ==================
[12:24:19] [PASSED] No DMA allocations, no DMA32 required
[12:24:19] [PASSED] DMA allocations, DMA32 required
[12:24:19] [PASSED] No DMA allocations, DMA32 required
[12:24:19] [PASSED] DMA allocations, no DMA32 required
[12:24:19] ============== [PASSED] ttm_device_init_pools ==============
[12:24:19] =================== [PASSED] ttm_device ====================
[12:24:19] ================== ttm_pool (8 subtests) ===================
[12:24:19] ================== ttm_pool_alloc_basic ===================
[12:24:19] [PASSED] One page
[12:24:19] [PASSED] More than one page
[12:24:19] [PASSED] Above the allocation limit
[12:24:19] [PASSED] One page, with coherent DMA mappings enabled
[12:24:19] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:24:19] ============== [PASSED] ttm_pool_alloc_basic ===============
[12:24:19] ============== ttm_pool_alloc_basic_dma_addr ==============
[12:24:19] [PASSED] One page
[12:24:19] [PASSED] More than one page
[12:24:19] [PASSED] Above the allocation limit
[12:24:19] [PASSED] One page, with coherent DMA mappings enabled
[12:24:19] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:24:19] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[12:24:19] [PASSED] ttm_pool_alloc_order_caching_match
[12:24:19] [PASSED] ttm_pool_alloc_caching_mismatch
[12:24:19] [PASSED] ttm_pool_alloc_order_mismatch
[12:24:19] [PASSED] ttm_pool_free_dma_alloc
[12:24:19] [PASSED] ttm_pool_free_no_dma_alloc
[12:24:19] [PASSED] ttm_pool_fini_basic
[12:24:19] ==================== [PASSED] ttm_pool =====================
[12:24:19] ================ ttm_resource (8 subtests) =================
[12:24:19] ================= ttm_resource_init_basic =================
[12:24:19] [PASSED] Init resource in TTM_PL_SYSTEM
[12:24:19] [PASSED] Init resource in TTM_PL_VRAM
[12:24:19] [PASSED] Init resource in a private placement
[12:24:19] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[12:24:19] ============= [PASSED] ttm_resource_init_basic =============
[12:24:19] [PASSED] ttm_resource_init_pinned
[12:24:19] [PASSED] ttm_resource_fini_basic
[12:24:19] [PASSED] ttm_resource_manager_init_basic
[12:24:19] [PASSED] ttm_resource_manager_usage_basic
[12:24:19] [PASSED] ttm_resource_manager_set_used_basic
[12:24:19] [PASSED] ttm_sys_man_alloc_basic
[12:24:19] [PASSED] ttm_sys_man_free_basic
[12:24:19] ================== [PASSED] ttm_resource ===================
[12:24:19] =================== ttm_tt (15 subtests) ===================
[12:24:19] ==================== ttm_tt_init_basic ====================
[12:24:19] [PASSED] Page-aligned size
[12:24:19] [PASSED] Extra pages requested
[12:24:19] ================ [PASSED] ttm_tt_init_basic ================
[12:24:19] [PASSED] ttm_tt_init_misaligned
[12:24:19] [PASSED] ttm_tt_fini_basic
[12:24:19] [PASSED] ttm_tt_fini_sg
[12:24:19] [PASSED] ttm_tt_fini_shmem
[12:24:19] [PASSED] ttm_tt_create_basic
[12:24:19] [PASSED] ttm_tt_create_invalid_bo_type
[12:24:19] [PASSED] ttm_tt_create_ttm_exists
[12:24:19] [PASSED] ttm_tt_create_failed
[12:24:19] [PASSED] ttm_tt_destroy_basic
[12:24:19] [PASSED] ttm_tt_populate_null_ttm
[12:24:19] [PASSED] ttm_tt_populate_populated_ttm
[12:24:19] [PASSED] ttm_tt_unpopulate_basic
[12:24:19] [PASSED] ttm_tt_unpopulate_empty_ttm
[12:24:19] [PASSED] ttm_tt_swapin_basic
[12:24:19] ===================== [PASSED] ttm_tt ======================
[12:24:19] =================== ttm_bo (14 subtests) ===================
[12:24:19] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[12:24:19] [PASSED] Cannot be interrupted and sleeps
[12:24:19] [PASSED] Cannot be interrupted, locks straight away
[12:24:19] [PASSED] Can be interrupted, sleeps
[12:24:19] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[12:24:19] [PASSED] ttm_bo_reserve_locked_no_sleep
[12:24:19] [PASSED] ttm_bo_reserve_no_wait_ticket
[12:24:19] [PASSED] ttm_bo_reserve_double_resv
[12:24:19] [PASSED] ttm_bo_reserve_interrupted
[12:24:19] [PASSED] ttm_bo_reserve_deadlock
[12:24:19] [PASSED] ttm_bo_unreserve_basic
[12:24:19] [PASSED] ttm_bo_unreserve_pinned
[12:24:19] [PASSED] ttm_bo_unreserve_bulk
[12:24:19] [PASSED] ttm_bo_fini_basic
[12:24:19] [PASSED] ttm_bo_fini_shared_resv
[12:24:19] [PASSED] ttm_bo_pin_basic
[12:24:19] [PASSED] ttm_bo_pin_unpin_resource
[12:24:19] [PASSED] ttm_bo_multiple_pin_one_unpin
[12:24:19] ===================== [PASSED] ttm_bo ======================
[12:24:19] ============== ttm_bo_validate (22 subtests) ===============
[12:24:19] ============== ttm_bo_init_reserved_sys_man ===============
[12:24:19] [PASSED] Buffer object for userspace
[12:24:19] [PASSED] Kernel buffer object
[12:24:19] [PASSED] Shared buffer object
[12:24:19] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[12:24:19] ============== ttm_bo_init_reserved_mock_man ==============
[12:24:19] [PASSED] Buffer object for userspace
[12:24:19] [PASSED] Kernel buffer object
[12:24:19] [PASSED] Shared buffer object
[12:24:19] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[12:24:19] [PASSED] ttm_bo_init_reserved_resv
[12:24:19] ================== ttm_bo_validate_basic ==================
[12:24:19] [PASSED] Buffer object for userspace
[12:24:19] [PASSED] Kernel buffer object
[12:24:19] [PASSED] Shared buffer object
[12:24:19] ============== [PASSED] ttm_bo_validate_basic ==============
[12:24:19] [PASSED] ttm_bo_validate_invalid_placement
[12:24:19] ============= ttm_bo_validate_same_placement ==============
[12:24:19] [PASSED] System manager
[12:24:19] [PASSED] VRAM manager
[12:24:19] ========= [PASSED] ttm_bo_validate_same_placement ==========
[12:24:19] [PASSED] ttm_bo_validate_failed_alloc
[12:24:19] [PASSED] ttm_bo_validate_pinned
[12:24:19] [PASSED] ttm_bo_validate_busy_placement
[12:24:19] ================ ttm_bo_validate_multihop =================
[12:24:19] [PASSED] Buffer object for userspace
[12:24:19] [PASSED] Kernel buffer object
[12:24:19] [PASSED] Shared buffer object
[12:24:19] ============ [PASSED] ttm_bo_validate_multihop =============
[12:24:19] ========== ttm_bo_validate_no_placement_signaled ==========
[12:24:19] [PASSED] Buffer object in system domain, no page vector
[12:24:19] [PASSED] Buffer object in system domain with an existing page vector
[12:24:19] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[12:24:19] ======== ttm_bo_validate_no_placement_not_signaled ========
[12:24:19] [PASSED] Buffer object for userspace
[12:24:19] [PASSED] Kernel buffer object
[12:24:19] [PASSED] Shared buffer object
[12:24:19] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[12:24:19] [PASSED] ttm_bo_validate_move_fence_signaled
[12:24:19] ========= ttm_bo_validate_move_fence_not_signaled =========
[12:24:19] [PASSED] Waits for GPU
[12:24:19] [PASSED] Tries to lock straight away
[12:24:19] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[12:24:19] [PASSED] ttm_bo_validate_swapout
[12:24:19] [PASSED] ttm_bo_validate_happy_evict
[12:24:19] [PASSED] ttm_bo_validate_all_pinned_evict
[12:24:19] [PASSED] ttm_bo_validate_allowed_only_evict
[12:24:19] [PASSED] ttm_bo_validate_deleted_evict
[12:24:19] [PASSED] ttm_bo_validate_busy_domain_evict
[12:24:19] [PASSED] ttm_bo_validate_evict_gutting
[12:24:19] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[12:24:19] ================= [PASSED] ttm_bo_validate =================
[12:24:19] ============================================================
[12:24:19] Testing complete. Ran 102 tests: passed: 102
[12:24:19] Elapsed time: 11.453s total, 1.722s configuring, 9.465s building, 0.215s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 48+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev8)
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (24 preceding siblings ...)
2026-03-19 12:24 ` ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev8) Patchwork
@ 2026-03-19 13:12 ` Patchwork
2026-03-20 14:04 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-15 6:19 ` [PATCH v8 0/2] drm/xe: Reject unsafe PAT indices for CPU cached memory Jia Yao
27 siblings, 0 replies; 48+ messages in thread
From: Patchwork @ 2026-03-19 13:12 UTC (permalink / raw)
To: Jia Yao; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 2023 bytes --]
== Series Details ==
Series: drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev8)
URL : https://patchwork.freedesktop.org/series/160797/
State : success
== Summary ==
CI Bug Log - changes from xe-4746-73694175c9632682b410199c5987a3420bd5444c_BAT -> xe-pw-160797v8_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 14)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-160797v8_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#7483])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1:
- bat-adlp-7: [DMESG-WARN][3] ([Intel XE#7483]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
[Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483
Build changes
-------------
* Linux: xe-4746-73694175c9632682b410199c5987a3420bd5444c -> xe-pw-160797v8
IGT_8810: eb9035ba642724dc0a7711672805f26d1f34f712 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4746-73694175c9632682b410199c5987a3420bd5444c: 73694175c9632682b410199c5987a3420bd5444c
xe-pw-160797v8: 160797v8
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/index.html
[-- Attachment #2: Type: text/html, Size: 2686 bytes --]
^ permalink raw reply [flat|nested] 48+ messages in thread
* ✗ Xe.CI.FULL: failure for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev8)
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (25 preceding siblings ...)
2026-03-19 13:12 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-03-20 14:04 ` Patchwork
2026-04-15 6:19 ` [PATCH v8 0/2] drm/xe: Reject unsafe PAT indices for CPU cached memory Jia Yao
27 siblings, 0 replies; 48+ messages in thread
From: Patchwork @ 2026-03-20 14:04 UTC (permalink / raw)
To: Jia Yao; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 38300 bytes --]
== Series Details ==
Series: drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev8)
URL : https://patchwork.freedesktop.org/series/160797/
State : failure
== Summary ==
CI Bug Log - changes from xe-4746-73694175c9632682b410199c5987a3420bd5444c_FULL -> xe-pw-160797v8_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-160797v8_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-160797v8_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-160797v8_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@modeset-vs-vblank-race@b-dp2:
- shard-bmg: NOTRUN -> [DMESG-FAIL][1] +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-6/igt@kms_flip@modeset-vs-vblank-race@b-dp2.html
* igt@kms_lease@setcrtc-implicit-plane:
- shard-bmg: [PASS][2] -> [DMESG-WARN][3] +16 other tests dmesg-warn
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-10/igt@kms_lease@setcrtc-implicit-plane.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-6/igt@kms_lease@setcrtc-implicit-plane.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
- shard-lnl: [PASS][4] -> [FAIL][5] +1 other test fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
- shard-bmg: [PASS][6] -> [FAIL][7] +3 other tests fail
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
#### Warnings ####
* igt@xe_module_load@load:
- shard-bmg: ([PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [SKIP][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33]) ([Intel XE#2457] / [Intel XE#7405]) -> ([PASS][34], [PASS][35], [DMESG-WARN][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56], [PASS][57])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-1/igt@xe_module_load@load.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-7/igt@xe_module_load@load.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-7/igt@xe_module_load@load.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-5/igt@xe_module_load@load.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-5/igt@xe_module_load@load.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-3/igt@xe_module_load@load.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-5/igt@xe_module_load@load.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-4/igt@xe_module_load@load.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-4/igt@xe_module_load@load.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-9/igt@xe_module_load@load.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-9/igt@xe_module_load@load.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-9/igt@xe_module_load@load.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-10/igt@xe_module_load@load.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-10/igt@xe_module_load@load.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-10/igt@xe_module_load@load.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-8/igt@xe_module_load@load.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-8/igt@xe_module_load@load.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-8/igt@xe_module_load@load.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-6/igt@xe_module_load@load.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-6/igt@xe_module_load@load.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-5/igt@xe_module_load@load.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-3/igt@xe_module_load@load.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-3/igt@xe_module_load@load.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-1/igt@xe_module_load@load.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-2/igt@xe_module_load@load.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-2/igt@xe_module_load@load.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-2/igt@xe_module_load@load.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-6/igt@xe_module_load@load.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-6/igt@xe_module_load@load.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-6/igt@xe_module_load@load.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-7/igt@xe_module_load@load.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-5/igt@xe_module_load@load.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-8/igt@xe_module_load@load.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-5/igt@xe_module_load@load.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-5/igt@xe_module_load@load.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-3/igt@xe_module_load@load.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-3/igt@xe_module_load@load.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-7/igt@xe_module_load@load.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-7/igt@xe_module_load@load.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-9/igt@xe_module_load@load.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-9/igt@xe_module_load@load.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-4/igt@xe_module_load@load.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-4/igt@xe_module_load@load.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-3/igt@xe_module_load@load.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-4/igt@xe_module_load@load.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-8/igt@xe_module_load@load.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-1/igt@xe_module_load@load.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-1/igt@xe_module_load@load.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-10/igt@xe_module_load@load.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-2/igt@xe_module_load@load.html
New tests
---------
New tests have been introduced between xe-4746-73694175c9632682b410199c5987a3420bd5444c_FULL and xe-pw-160797v8_FULL:
### New IGT tests (1) ###
* igt@kms_atomic@crtc-invalid-params@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.47] s
Known issues
------------
Here are the changes found in xe-pw-160797v8_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2327]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-8/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#7059] / [Intel XE#7085])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#1124])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
- shard-bmg: [PASS][61] -> [SKIP][62] ([Intel XE#7621])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-3/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-2/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2887])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2652]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2252]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-8/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-bmg: NOTRUN -> [FAIL][66] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-7/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_cursor_crc@cursor-offscreen-64x64:
- shard-bmg: [PASS][67] -> [SKIP][68] ([Intel XE#2320])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-10/igt@kms_cursor_crc@cursor-offscreen-64x64.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-64x64.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-bmg: [PASS][69] -> [SKIP][70] ([Intel XE#2291]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-10/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_dp_aux_dev:
- shard-bmg: [PASS][71] -> [SKIP][72] ([Intel XE#3009])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-10/igt@kms_dp_aux_dev.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-3/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-bmg: [PASS][73] -> [SKIP][74] ([Intel XE#4354])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-10/igt@kms_dp_link_training@non-uhbr-sst.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#4422] / [Intel XE#7442])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-7/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-bmg: [PASS][76] -> [SKIP][77] ([Intel XE#2316]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-10/igt@kms_flip@2x-dpms-vs-vblank-race.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-3/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@flip-vs-dpms-on-nop-interruptible@a-dp2:
- shard-bmg: [PASS][78] -> [FAIL][79] ([Intel XE#5408] / [Intel XE#6266]) +2 other tests fail
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-10/igt@kms_flip@flip-vs-dpms-on-nop-interruptible@a-dp2.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-6/igt@kms_flip@flip-vs-dpms-on-nop-interruptible@a-dp2.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [PASS][80] -> [FAIL][81] ([Intel XE#301]) +1 other test fail
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@modeset-vs-vblank-race:
- shard-bmg: [PASS][82] -> [DMESG-FAIL][83] ([Intel XE#5208])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-3/igt@kms_flip@modeset-vs-vblank-race.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-6/igt@kms_flip@modeset-vs-vblank-race.html
* igt@kms_flip@modeset-vs-vblank-race@a-dp2:
- shard-bmg: NOTRUN -> [FAIL][84] ([Intel XE#6266])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-6/igt@kms_flip@modeset-vs-vblank-race@a-dp2.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2311]) +6 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#4141]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2313]) +4 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_hdr@static-swap:
- shard-bmg: [PASS][89] -> [SKIP][90] ([Intel XE#1503])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-10/igt@kms_hdr@static-swap.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-3/igt@kms_hdr@static-swap.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#7283])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-8/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#1489]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr@psr2-sprite-render:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-7/igt@kms_psr@psr2-sprite-render.html
* igt@kms_sharpness_filter@invalid-plane-with-filter:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#6503])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-7/igt@kms_sharpness_filter@invalid-plane-with-filter.html
* igt@xe_eudebug@read-metadata:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#4837])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-8/igt@xe_eudebug@read-metadata.html
* igt@xe_eudebug_online@resume-one:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#4837] / [Intel XE#6665])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-7/igt@xe_eudebug_online@resume-one.html
* igt@xe_evict@evict-cm-threads-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#7140])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-8/igt@xe_evict@evict-cm-threads-small-multi-queue.html
* igt@xe_exec_basic@multigpu-no-exec-null:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-8/igt@xe_exec_basic@multigpu-no-exec-null.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#7136]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-8/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-basic:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#6874]) +4 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-8/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-basic.html
* igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#7138])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-invalidate.html
* igt@xe_multigpu_svm@mgpu-coherency-fail-prefetch:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#6964])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-8/igt@xe_multigpu_svm@mgpu-coherency-fail-prefetch.html
* igt@xe_pxp@pxp-stale-bo-exec-post-rpm:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#4733] / [Intel XE#7417])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-7/igt@xe_pxp@pxp-stale-bo-exec-post-rpm.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [SKIP][104] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) -> [PASS][105]
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_cursor_crc@cursor-random-64x64:
- shard-bmg: [SKIP][106] ([Intel XE#2320]) -> [PASS][107]
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-6/igt@kms_cursor_crc@cursor-random-64x64.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-7/igt@kms_cursor_crc@cursor-random-64x64.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc@pipe-a-dp-2:
- shard-bmg: [SKIP][108] -> [PASS][109]
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-8bpc@pipe-a-dp-2.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-8bpc@pipe-a-dp-2.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc@pipe-a-hdmi-a-3:
- shard-bmg: [FAIL][110] -> [PASS][111] +1 other test pass
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-8bpc@pipe-a-hdmi-a-3.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-8bpc@pipe-a-hdmi-a-3.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-bmg: [SKIP][112] ([Intel XE#2316]) -> [PASS][113] +1 other test pass
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-3/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-2/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [FAIL][114] ([Intel XE#3149] / [Intel XE#5408] / [Intel XE#6266]) -> [PASS][115]
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-plain-flip-fb-recreate@ab-dp2-hdmi-a3:
- shard-bmg: [FAIL][116] ([Intel XE#6266]) -> [PASS][117] +1 other test pass
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate@ab-dp2-hdmi-a3.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip-fb-recreate@cd-dp2-hdmi-a3:
- shard-bmg: [FAIL][118] ([Intel XE#3149] / [Intel XE#6266]) -> [PASS][119]
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate@cd-dp2-hdmi-a3.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate@cd-dp2-hdmi-a3.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][120] ([Intel XE#1503]) -> [PASS][121]
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-2/igt@kms_hdr@invalid-hdr.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-3/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane_alpha_blend@alpha-7efc:
- shard-bmg: [SKIP][122] ([Intel XE#7082]) -> [PASS][123]
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-6/igt@kms_plane_alpha_blend@alpha-7efc.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-8/igt@kms_plane_alpha_blend@alpha-7efc.html
* igt@kms_plane_lowres@tiling-4:
- shard-bmg: [INCOMPLETE][124] ([Intel XE#5681]) -> [PASS][125]
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-2/igt@kms_plane_lowres@tiling-4.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-8/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_lowres@tiling-4@pipe-b-hdmi-a-3:
- shard-bmg: [INCOMPLETE][126] -> [PASS][127]
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-2/igt@kms_plane_lowres@tiling-4@pipe-b-hdmi-a-3.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-8/igt@kms_plane_lowres@tiling-4@pipe-b-hdmi-a-3.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [SKIP][128] ([Intel XE#1435]) -> [PASS][129]
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-7/igt@kms_setmode@clone-exclusive-crtc.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][130] ([Intel XE#6321]) -> [PASS][131]
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-10/igt@xe_evict@evict-mixed-many-threads-small.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
#### Warnings ####
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [FAIL][132] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][133] ([Intel XE#2341])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-10/igt@kms_content_protection@lic-type-0.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-3/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-0-hdcp14:
- shard-bmg: [FAIL][134] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][135] ([Intel XE#7194])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-10/igt@kms_content_protection@lic-type-0-hdcp14.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-6/igt@kms_content_protection@lic-type-0-hdcp14.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-bmg: [SKIP][136] ([Intel XE#2320]) -> [SKIP][137] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][138] ([Intel XE#2312]) -> [SKIP][139] ([Intel XE#2311]) +8 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][140] ([Intel XE#2312]) -> [SKIP][141] ([Intel XE#4141]) +4 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][142] ([Intel XE#4141]) -> [SKIP][143] ([Intel XE#2312]) +5 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][144] ([Intel XE#2311]) -> [SKIP][145] ([Intel XE#2312]) +10 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][146] ([Intel XE#2313]) -> [SKIP][147] ([Intel XE#2312]) +11 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][148] ([Intel XE#2312]) -> [SKIP][149] ([Intel XE#2313]) +7 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][150] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][151] ([Intel XE#3544])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-bmg: [SKIP][152] ([Intel XE#3904] / [Intel XE#7342]) -> [SKIP][153] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-4/igt@kms_rotation_crc@primary-rotation-90.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-5/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-bmg: [SKIP][154] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) -> [SKIP][155] ([Intel XE#3904] / [Intel XE#7342])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4746-73694175c9632682b410199c5987a3420bd5444c/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/shard-bmg-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[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#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408
[Intel XE#5681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5681
[Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7082]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7082
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7373
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7621]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621
Build changes
-------------
* Linux: xe-4746-73694175c9632682b410199c5987a3420bd5444c -> xe-pw-160797v8
IGT_8810: eb9035ba642724dc0a7711672805f26d1f34f712 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4746-73694175c9632682b410199c5987a3420bd5444c: 73694175c9632682b410199c5987a3420bd5444c
xe-pw-160797v8: 160797v8
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160797v8/index.html
[-- Attachment #2: Type: text/html, Size: 43179 bytes --]
^ permalink raw reply [flat|nested] 48+ messages in thread
* [PATCH v8 0/2] drm/xe: Reject unsafe PAT indices for CPU cached memory
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
` (26 preceding siblings ...)
2026-03-20 14:04 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-04-15 6:19 ` Jia Yao
2026-04-15 6:19 ` [PATCH v8 1/2] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
2026-04-15 6:19 ` [PATCH v8 2/2] drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR Jia Yao
27 siblings, 2 replies; 48+ messages in thread
From: Jia Yao @ 2026-04-15 6:19 UTC (permalink / raw)
To: intel-xe
Cc: Jia Yao, stable, Shuicheng Lin, Mathew Alwin, Michal Mrozek,
Matthew Brost, Matthew Auld
This series strengthens PAT index validation to reject unsafe
configurations for CPU cached memory, preventing cases where the GPU
may bypass CPU caches and observe stale or sensitive data.
Patch 1 enforces PAT validation for the madvise ioctl path, ensuring
XE_COH_NONE cannot be used on CPU cached buffers, including CPU address
mirror and userptr-backed memory.
Patch 2 applies the same validation to vm_bind, treating
DRM_XE_VM_BIND_FLAG_CPU_ADDR_MIRROR the same as MAP_USERPTR with respect
to permissible PAT indices.
Together, these patches close a security gap affecting CPU cached
memory access when incoherent PAT values are used.
Changes since v7:
- Rebased onto latest drm/xe tree, no functional changes.
Changes since v6:
- Corrected Fixes tags.
Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
Fixes: b43e864af0d4 ("drm/xe/uapi: Add DRM_XE_VM_BIND_FLAG_CPU_ADDR_MIRROR")
Cc: stable@vger.kernel.org # v6.18
Cc: Shuicheng Lin <shuicheng.lin@intel.com>
Cc: Mathew Alwin <alwin.mathew@intel.com>
Cc: Michal Mrozek <michal.mrozek@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Jia Yao (2):
drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in
madvise
drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR
drivers/gpu/drm/xe/xe_vm.c | 2 +-
drivers/gpu/drm/xe/xe_vm_madvise.c | 45 ++++++++++++++++++++++++++++++
2 files changed, 46 insertions(+), 1 deletion(-)
--
2.43.0
^ permalink raw reply [flat|nested] 48+ messages in thread
* [PATCH v8 1/2] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise
2026-04-15 6:19 ` [PATCH v8 0/2] drm/xe: Reject unsafe PAT indices for CPU cached memory Jia Yao
@ 2026-04-15 6:19 ` Jia Yao
2026-04-15 6:19 ` [PATCH v8 2/2] drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR Jia Yao
1 sibling, 0 replies; 48+ messages in thread
From: Jia Yao @ 2026-04-15 6:19 UTC (permalink / raw)
To: intel-xe
Cc: Jia Yao, stable, Shuicheng Lin, Mathew Alwin, Michal Mrozek,
Matthew Brost, Matthew Auld, José Roberto de Souza
Add validation in xe_vm_madvise_ioctl() to reject PAT indices with
XE_COH_NONE coherency mode when applied to CPU cached memory.
Using coh_none with CPU cached buffers is a security issue. When the
kernel clears pages before reallocation, the clear operation stays in
CPU cache (dirty). GPU with coh_none can bypass CPU caches and read
stale sensitive data directly from DRAM, potentially leaking data from
previously freed pages of other processes.
This aligns with the existing validation in vm_bind path
(xe_vm_bind_ioctl_validate_bo).
v2(Matthew brost)
- Add fixes
- Move one debug print to better place
v3(Matthew Auld)
- Should be drm/xe/uapi
- More Cc
v4(Shuicheng Lin)
- Fix kmem leak issues by the way
v5
- Remove kmem leak because it has been merged by another patch
v6
- Remove the fix which is not related to current fix
v7
- No change
v8
- Rebase
Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
Cc: stable@vger.kernel.org # v6.18
Cc: Shuicheng Lin <shuicheng.lin@intel.com>
Cc: Mathew Alwin <alwin.mathew@intel.com>
Cc: Michal Mrozek <michal.mrozek@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Jia Yao <jia.yao@intel.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Acked-by: Michal Mrozek <michal.mrozek@intel.com>
Acked-by: José Roberto de Souza <jose.souza@intel.com>
---
drivers/gpu/drm/xe/xe_vm_madvise.c | 45 ++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c b/drivers/gpu/drm/xe/xe_vm_madvise.c
index 66f00d3f5c07..f6e4a44db654 100644
--- a/drivers/gpu/drm/xe/xe_vm_madvise.c
+++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
@@ -621,6 +621,43 @@ static int xe_madvise_purgeable_retained_to_user(const struct xe_madvise_details
return 0;
}
+static bool check_pat_args_are_sane(struct xe_device *xe,
+ struct xe_vmas_in_madvise_range *madvise_range,
+ u16 pat_index)
+{
+ u16 coh_mode = xe_pat_index_get_coh_mode(xe, pat_index);
+ int i;
+
+ /*
+ * Using coh_none with CPU cached buffers is not allowed.
+ * Otherwise CPU page clearing can be bypassed, which is a
+ * security issue. GPU can directly access system memory and
+ * bypass CPU caches, potentially reading stale sensitive data
+ * from previously freed pages.
+ */
+ if (coh_mode != XE_COH_NONE)
+ return true;
+
+ for (i = 0; i < madvise_range->num_vmas; i++) {
+ struct xe_vma *vma = madvise_range->vmas[i];
+ struct xe_bo *bo = xe_vma_bo(vma);
+
+ if (bo) {
+ /* BO with WB caching + COH_NONE is not allowed */
+ if (XE_IOCTL_DBG(xe, bo->cpu_caching == DRM_XE_GEM_CPU_CACHING_WB))
+ return false;
+ /* Imported dma-buf without caching info, assume cached */
+ if (XE_IOCTL_DBG(xe, !bo->cpu_caching))
+ return false;
+ } else if (XE_IOCTL_DBG(xe, xe_vma_is_cpu_addr_mirror(vma) ||
+ xe_vma_is_userptr(vma)))
+ /* System memory (userptr/SVM) is always CPU cached */
+ return false;
+ }
+
+ return true;
+}
+
static bool check_bo_args_are_sane(struct xe_vm *vm, struct xe_vma **vmas,
int num_vmas, u32 atomic_val)
{
@@ -750,6 +787,14 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void *data, struct drm_file *fil
}
}
+ if (args->type == DRM_XE_MEM_RANGE_ATTR_PAT) {
+ if (!check_pat_args_are_sane(xe, &madvise_range,
+ args->pat_index.val)) {
+ err = -EINVAL;
+ goto free_vmas;
+ }
+ }
+
if (madvise_range.has_bo_vmas) {
if (args->type == DRM_XE_MEM_RANGE_ATTR_ATOMIC) {
if (!check_bo_args_are_sane(vm, madvise_range.vmas,
--
2.43.0
^ permalink raw reply related [flat|nested] 48+ messages in thread
* [PATCH v8 2/2] drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR
2026-04-15 6:19 ` [PATCH v8 0/2] drm/xe: Reject unsafe PAT indices for CPU cached memory Jia Yao
2026-04-15 6:19 ` [PATCH v8 1/2] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
@ 2026-04-15 6:19 ` Jia Yao
2026-04-15 12:15 ` Matthew Auld
1 sibling, 1 reply; 48+ messages in thread
From: Jia Yao @ 2026-04-15 6:19 UTC (permalink / raw)
To: intel-xe
Cc: Jia Yao, stable, Shuicheng Lin, Mathew Alwin, Michal Mrozek,
Matthew Brost, Matthew Auld
Add validation in xe_vm_bind_ioctl() to reject PAT indices
with XE_COH_NONE coherency mode when used with
DRM_XE_VM_BIND_FLAG_CPU_ADDR_MIRROR.
CPU address mirror mappings use system memory that is CPU
cached, which makes them incompatible with COH_NONE PAT
indices. Allowing COH_NONE with CPU cached buffers is a
security risk, as the GPU may bypass CPU caches and read
stale sensitive data from DRAM.
Although CPU_ADDR_MIRROR does not create an immediate
mapping, the backing system memory is still CPU cached.
Apply the same PAT coherency restrictions as
DRM_XE_VM_BIND_OP_MAP_USERPTR.
v2:
- Correct fix tag
v6:
- No change
v7:
- Correct fix tag
v8:
- Rebase
Fixes: b43e864af0d4 ("drm/xe/uapi: Add DRM_XE_VM_BIND_FLAG_CPU_ADDR_MIRROR")
Cc: stable@vger.kernel.org # v6.18
Cc: Shuicheng Lin <shuicheng.lin@intel.com>
Cc: Mathew Alwin <alwin.mathew@intel.com>
Cc: Michal Mrozek <michal.mrozek@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Jia Yao <jia.yao@intel.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
---
drivers/gpu/drm/xe/xe_vm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 2408b547ca3d..619a22fa9abe 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -3657,7 +3657,7 @@ static int vm_bind_ioctl_check_args(struct xe_device *xe, struct xe_vm *vm,
XE_IOCTL_DBG(xe, obj &&
op == DRM_XE_VM_BIND_OP_MAP_USERPTR) ||
XE_IOCTL_DBG(xe, coh_mode == XE_COH_NONE &&
- op == DRM_XE_VM_BIND_OP_MAP_USERPTR) ||
+ (op == DRM_XE_VM_BIND_OP_MAP_USERPTR || is_cpu_addr_mirror)) ||
XE_IOCTL_DBG(xe, xe_device_is_l2_flush_optimized(xe) &&
(op == DRM_XE_VM_BIND_OP_MAP_USERPTR ||
is_cpu_addr_mirror) &&
--
2.43.0
^ permalink raw reply related [flat|nested] 48+ messages in thread
* Re: [PATCH v8 2/2] drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR
2026-04-15 6:19 ` [PATCH v8 2/2] drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR Jia Yao
@ 2026-04-15 12:15 ` Matthew Auld
0 siblings, 0 replies; 48+ messages in thread
From: Matthew Auld @ 2026-04-15 12:15 UTC (permalink / raw)
To: Jia Yao, intel-xe
Cc: stable, Shuicheng Lin, Mathew Alwin, Michal Mrozek, Matthew Brost
On 15/04/2026 07:19, Jia Yao wrote:
> Add validation in xe_vm_bind_ioctl() to reject PAT indices
> with XE_COH_NONE coherency mode when used with
> DRM_XE_VM_BIND_FLAG_CPU_ADDR_MIRROR.
>
> CPU address mirror mappings use system memory that is CPU
> cached, which makes them incompatible with COH_NONE PAT
> indices. Allowing COH_NONE with CPU cached buffers is a
> security risk, as the GPU may bypass CPU caches and read
> stale sensitive data from DRAM.
>
> Although CPU_ADDR_MIRROR does not create an immediate
> mapping, the backing system memory is still CPU cached.
> Apply the same PAT coherency restrictions as
> DRM_XE_VM_BIND_OP_MAP_USERPTR.
>
> v2:
> - Correct fix tag
>
> v6:
> - No change
>
> v7:
> - Correct fix tag
>
> v8:
> - Rebase
>
> Fixes: b43e864af0d4 ("drm/xe/uapi: Add DRM_XE_VM_BIND_FLAG_CPU_ADDR_MIRROR")
> Cc: stable@vger.kernel.org # v6.18
> Cc: Shuicheng Lin <shuicheng.lin@intel.com>
> Cc: Mathew Alwin <alwin.mathew@intel.com>
> Cc: Michal Mrozek <michal.mrozek@intel.com>
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: Matthew Auld <matthew.auld@intel.com>
> Signed-off-by: Jia Yao <jia.yao@intel.com>
> Reviewed-by: Matthew Auld <matthew.auld@intel.com>
> ---
> drivers/gpu/drm/xe/xe_vm.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
> index 2408b547ca3d..619a22fa9abe 100644
> --- a/drivers/gpu/drm/xe/xe_vm.c
> +++ b/drivers/gpu/drm/xe/xe_vm.c
> @@ -3657,7 +3657,7 @@ static int vm_bind_ioctl_check_args(struct xe_device *xe, struct xe_vm *vm,
> XE_IOCTL_DBG(xe, obj &&
> op == DRM_XE_VM_BIND_OP_MAP_USERPTR) ||
> XE_IOCTL_DBG(xe, coh_mode == XE_COH_NONE &&
> - op == DRM_XE_VM_BIND_OP_MAP_USERPTR) ||
> + (op == DRM_XE_VM_BIND_OP_MAP_USERPTR || is_cpu_addr_mirror)) ||
Chatted to Michal, and it looks like on dgpu an incoherent index is
being used with cpu_addr_mirror, so this will cause regressions. I think
for both patches we need to limit this change to igpu, where coherent
index is fortunately already being used.
> XE_IOCTL_DBG(xe, xe_device_is_l2_flush_optimized(xe) &&
> (op == DRM_XE_VM_BIND_OP_MAP_USERPTR ||
> is_cpu_addr_mirror) &&
^ permalink raw reply [flat|nested] 48+ messages in thread
end of thread, other threads:[~2026-04-15 12:15 UTC | newest]
Thread overview: 48+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-29 0:01 [PATCH] drm/xe: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
2026-01-29 0:09 ` ✓ CI.KUnit: success for " Patchwork
2026-01-29 0:49 ` ✓ Xe.CI.BAT: " Patchwork
2026-01-29 4:35 ` [PATCH] " Matthew Brost
2026-01-29 5:51 ` [PATCH v2] " Jia Yao
2026-01-29 9:58 ` Matthew Auld
2026-01-29 6:44 ` ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev2) Patchwork
2026-01-29 7:24 ` ✓ Xe.CI.BAT: " Patchwork
2026-01-30 22:07 ` [PATCH v3] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
2026-02-03 2:54 ` Lin, Shuicheng
2026-02-04 15:13 ` Souza, Jose
2026-01-30 23:05 ` ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev3) Patchwork
2026-01-30 23:44 ` ✓ Xe.CI.BAT: " Patchwork
2026-02-03 15:48 ` [PATCH v4] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
2026-02-03 16:38 ` Matthew Auld
2026-02-03 16:59 ` Yao, Jia
2026-03-10 14:50 ` Mrozek, Michal
2026-02-03 16:14 ` ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev4) Patchwork
2026-02-03 17:07 ` ✗ Xe.CI.BAT: failure " Patchwork
2026-02-04 8:47 ` ✗ Xe.CI.FULL: " Patchwork
2026-02-04 21:13 ` ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev5) Patchwork
2026-02-04 21:47 ` ✓ Xe.CI.BAT: " Patchwork
2026-02-05 10:35 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-03-16 7:22 ` [PATCH v5 0/2] drm/xe: PAT index validation for CPU_ADDR_MIRROR and Jia Yao
2026-03-16 7:22 ` [PATCH v5 1/2] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
2026-03-16 10:59 ` Matthew Auld
2026-03-16 15:29 ` Lin, Shuicheng
2026-03-16 7:22 ` [PATCH v5 2/2] drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR Jia Yao
2026-03-16 11:40 ` Matthew Auld
2026-03-16 7:29 ` ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev6) Patchwork
2026-03-16 8:18 ` ✓ Xe.CI.BAT: " Patchwork
2026-03-16 16:42 ` [PATCH v5 0/2] drm/xe: PAT index validation for CPU_ADDR_MIRROR and madvise Jia Yao
2026-03-16 16:42 ` [PATCH v6 1/2] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
2026-03-16 16:42 ` [PATCH v6 2/2] drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR Jia Yao
2026-03-17 10:45 ` Matthew Auld
2026-03-16 21:28 ` ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev7) Patchwork
2026-03-16 22:03 ` ✓ Xe.CI.BAT: " Patchwork
2026-03-17 21:17 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-03-19 11:58 ` [PATCH v7 0/2] drm/xe: PAT index validation for CPU_ADDR_MIRROR and madvise Jia Yao
2026-03-19 11:58 ` [PATCH v7 1/2] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
2026-03-19 11:58 ` [PATCH v7 2/2] drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR Jia Yao
2026-03-19 12:24 ` ✓ CI.KUnit: success for drm/xe: Reject coh_none PAT index for CPU cached memory in madvise (rev8) Patchwork
2026-03-19 13:12 ` ✓ Xe.CI.BAT: " Patchwork
2026-03-20 14:04 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-15 6:19 ` [PATCH v8 0/2] drm/xe: Reject unsafe PAT indices for CPU cached memory Jia Yao
2026-04-15 6:19 ` [PATCH v8 1/2] drm/xe/uapi: Reject coh_none PAT index for CPU cached memory in madvise Jia Yao
2026-04-15 6:19 ` [PATCH v8 2/2] drm/xe: Reject coh_none PAT index for CPU_ADDR_MIRROR Jia Yao
2026-04-15 12:15 ` Matthew Auld
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox