* [PATCH] drm/xe: rework PDE PAT index selection
@ 2025-08-01 15:21 Matthew Auld
2025-08-01 17:35 ` ✓ CI.KUnit: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 7+ messages in thread
From: Matthew Auld @ 2025-08-01 15:21 UTC (permalink / raw)
To: intel-xe; +Cc: Stuart Summers, Matthew Brost
For non-leaf paging structures we end up selecting a random index
between [0, 3], depending on the first user if the page-table is shared,
since non-leaf structures only have two bits in the HW for encoding the
PAT index, and here we are just passing along the full user provided
index, which can be an index as large as ~31 on xe2+. The user provided
index is meant for the leaf node, which maps the actual BO pages where
we have more PAT bits, and not the non-leaf nodes which are only mapping
other paging structures, and so only needs a minimal PAT index range.
Also the chosen index might need to consider how the driver mapped the
paging structures on the host side, like wc vs wb, which is separate
from the user provided index.
With that move the PDE PAT index selection under driver control. For now
just use a coherent index on platforms with page-tables that are cached
on host side, and incoherent otherwise. Using a coherent index could
potentially be expensive, and would be overkill if we know the page-table
is always uncached on host side.
BSpec: 59510
Signed-off-by: Matthew Auld <matthew.auld@intel.com>
Cc: Stuart Summers <stuart.summers@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
---
drivers/gpu/drm/xe/xe_migrate.c | 10 ++++------
drivers/gpu/drm/xe/xe_pt.c | 4 ++--
drivers/gpu/drm/xe/xe_pt_types.h | 3 +--
drivers/gpu/drm/xe/xe_vm.c | 15 +++++++++++----
4 files changed, 18 insertions(+), 14 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
index 3a276e2348a2..43599d4419a7 100644
--- a/drivers/gpu/drm/xe/xe_migrate.c
+++ b/drivers/gpu/drm/xe/xe_migrate.c
@@ -151,8 +151,7 @@ static void xe_migrate_program_identity(struct xe_device *xe, struct xe_vm *vm,
for (pos = dpa_base; pos < vram_limit;
pos += SZ_1G, ofs += 8) {
if (pos + SZ_1G >= vram_limit) {
- entry = vm->pt_ops->pde_encode_bo(bo, pt_2m_ofs,
- pat_index);
+ entry = vm->pt_ops->pde_encode_bo(bo, pt_2m_ofs);
xe_map_wr(xe, &bo->vmap, ofs, u64, entry);
flags = vm->pt_ops->pte_encode_addr(xe, 0,
@@ -206,7 +205,7 @@ static int xe_migrate_prepare_vm(struct xe_tile *tile, struct xe_migrate *m,
/* PT30 & PT31 reserved for 2M identity map */
pt29_ofs = xe_bo_size(bo) - 3 * XE_PAGE_SIZE;
- entry = vm->pt_ops->pde_encode_bo(bo, pt29_ofs, pat_index);
+ entry = vm->pt_ops->pde_encode_bo(bo, pt29_ofs);
xe_pt_write(xe, &vm->pt_root[id]->bo->vmap, 0, entry);
map_ofs = (num_entries - num_setup) * XE_PAGE_SIZE;
@@ -274,15 +273,14 @@ static int xe_migrate_prepare_vm(struct xe_tile *tile, struct xe_migrate *m,
flags = XE_PDE_64K;
entry = vm->pt_ops->pde_encode_bo(bo, map_ofs + (u64)(level - 1) *
- XE_PAGE_SIZE, pat_index);
+ XE_PAGE_SIZE);
xe_map_wr(xe, &bo->vmap, map_ofs + XE_PAGE_SIZE * level, u64,
entry | flags);
}
/* Write PDE's that point to our BO. */
for (i = 0; i < map_ofs / PAGE_SIZE; i++) {
- entry = vm->pt_ops->pde_encode_bo(bo, (u64)i * XE_PAGE_SIZE,
- pat_index);
+ entry = vm->pt_ops->pde_encode_bo(bo, (u64)i * XE_PAGE_SIZE);
xe_map_wr(xe, &bo->vmap, map_ofs + XE_PAGE_SIZE +
(i + 1) * 8, u64, entry);
diff --git a/drivers/gpu/drm/xe/xe_pt.c b/drivers/gpu/drm/xe/xe_pt.c
index 330cc0f54a3f..f3a39e734a90 100644
--- a/drivers/gpu/drm/xe/xe_pt.c
+++ b/drivers/gpu/drm/xe/xe_pt.c
@@ -69,7 +69,7 @@ static u64 __xe_pt_empty_pte(struct xe_tile *tile, struct xe_vm *vm,
if (level > MAX_HUGEPTE_LEVEL)
return vm->pt_ops->pde_encode_bo(vm->scratch_pt[id][level - 1]->bo,
- 0, pat_index);
+ 0);
return vm->pt_ops->pte_encode_addr(xe, 0, pat_index, level, IS_DGFX(xe), 0) |
XE_PTE_NULL;
@@ -616,7 +616,7 @@ xe_pt_stage_bind_entry(struct xe_ptw *parent, pgoff_t offset,
xe_child->is_compact = true;
}
- pte = vm->pt_ops->pde_encode_bo(xe_child->bo, 0, pat_index) | flags;
+ pte = vm->pt_ops->pde_encode_bo(xe_child->bo, 0) | flags;
ret = xe_pt_insert_entry(xe_walk, xe_parent, offset, xe_child,
pte);
}
diff --git a/drivers/gpu/drm/xe/xe_pt_types.h b/drivers/gpu/drm/xe/xe_pt_types.h
index 69eab6f37cfe..17cdd7c7e9f5 100644
--- a/drivers/gpu/drm/xe/xe_pt_types.h
+++ b/drivers/gpu/drm/xe/xe_pt_types.h
@@ -45,8 +45,7 @@ struct xe_pt_ops {
u64 (*pte_encode_addr)(struct xe_device *xe, u64 addr,
u16 pat_index,
u32 pt_level, bool devmem, u64 flags);
- u64 (*pde_encode_bo)(struct xe_bo *bo, u64 bo_offset,
- u16 pat_index);
+ u64 (*pde_encode_bo)(struct xe_bo *bo, u64 bo_offset);
};
struct xe_pt_entry {
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 432ea325677d..42e3b1b8be5b 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -1512,13 +1512,21 @@ static u64 pte_encode_ps(u32 pt_level)
return 0;
}
-static u64 xelp_pde_encode_bo(struct xe_bo *bo, u64 bo_offset,
- const u16 pat_index)
+static u64 xelp_pde_encode_bo(struct xe_bo *bo, u64 bo_offset)
{
+ struct xe_device *xe = xe_bo_device(bo);
+ u16 pat_index;
u64 pde;
pde = xe_bo_addr(bo, bo_offset, XE_PAGE_SIZE);
pde |= XE_PAGE_PRESENT | XE_PAGE_RW;
+
+ if (!xe_bo_is_vram(bo) && bo->ttm.ttm->caching == ttm_cached)
+ pat_index = xe->pat.idx[XE_CACHE_WB];
+ else
+ pat_index = xe->pat.idx[XE_CACHE_NONE];
+
+ xe_assert(xe, pat_index <= 3);
pde |= pde_encode_pat_index(pat_index);
return pde;
@@ -2024,8 +2032,7 @@ struct xe_vm *xe_vm_lookup(struct xe_file *xef, u32 id)
u64 xe_vm_pdp4_descriptor(struct xe_vm *vm, struct xe_tile *tile)
{
- return vm->pt_ops->pde_encode_bo(vm->pt_root[tile->id]->bo, 0,
- tile_to_xe(tile)->pat.idx[XE_CACHE_WB]);
+ return vm->pt_ops->pde_encode_bo(vm->pt_root[tile->id]->bo, 0);
}
static struct xe_exec_queue *
--
2.50.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ CI.KUnit: success for drm/xe: rework PDE PAT index selection
2025-08-01 15:21 [PATCH] drm/xe: rework PDE PAT index selection Matthew Auld
@ 2025-08-01 17:35 ` Patchwork
2025-08-01 18:16 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-08-01 17:35 UTC (permalink / raw)
To: Matthew Auld; +Cc: intel-xe
== Series Details ==
Series: drm/xe: rework PDE PAT index selection
URL : https://patchwork.freedesktop.org/series/152432/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[17:34:14] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:34:18] 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
[17:34:52] Starting KUnit Kernel (1/1)...
[17:34:52] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:34:52] ================== guc_buf (11 subtests) ===================
[17:34:52] [PASSED] test_smallest
[17:34:52] [PASSED] test_largest
[17:34:52] [PASSED] test_granular
[17:34:52] [PASSED] test_unique
[17:34:52] [PASSED] test_overlap
[17:34:52] [PASSED] test_reusable
[17:34:52] [PASSED] test_too_big
[17:34:52] [PASSED] test_flush
[17:34:52] [PASSED] test_lookup
[17:34:52] [PASSED] test_data
[17:34:52] [PASSED] test_class
[17:34:52] ===================== [PASSED] guc_buf =====================
[17:34:52] =================== guc_dbm (7 subtests) ===================
[17:34:52] [PASSED] test_empty
[17:34:52] [PASSED] test_default
[17:34:52] ======================== test_size ========================
[17:34:52] [PASSED] 4
[17:34:52] [PASSED] 8
[17:34:52] [PASSED] 32
[17:34:52] [PASSED] 256
[17:34:52] ==================== [PASSED] test_size ====================
[17:34:52] ======================= test_reuse ========================
[17:34:52] [PASSED] 4
[17:34:52] [PASSED] 8
[17:34:52] [PASSED] 32
[17:34:52] [PASSED] 256
[17:34:52] =================== [PASSED] test_reuse ====================
[17:34:52] =================== test_range_overlap ====================
[17:34:52] [PASSED] 4
[17:34:52] [PASSED] 8
[17:34:52] [PASSED] 32
[17:34:52] [PASSED] 256
[17:34:52] =============== [PASSED] test_range_overlap ================
[17:34:52] =================== test_range_compact ====================
[17:34:52] [PASSED] 4
[17:34:52] [PASSED] 8
[17:34:52] [PASSED] 32
[17:34:52] [PASSED] 256
[17:34:52] =============== [PASSED] test_range_compact ================
[17:34:52] ==================== test_range_spare =====================
[17:34:52] [PASSED] 4
[17:34:52] [PASSED] 8
[17:34:52] [PASSED] 32
[17:34:52] [PASSED] 256
[17:34:52] ================ [PASSED] test_range_spare =================
[17:34:52] ===================== [PASSED] guc_dbm =====================
[17:34:52] =================== guc_idm (6 subtests) ===================
[17:34:52] [PASSED] bad_init
[17:34:52] [PASSED] no_init
[17:34:52] [PASSED] init_fini
[17:34:52] [PASSED] check_used
[17:34:52] [PASSED] check_quota
[17:34:52] [PASSED] check_all
[17:34:52] ===================== [PASSED] guc_idm =====================
[17:34:52] ================== no_relay (3 subtests) ===================
[17:34:52] [PASSED] xe_drops_guc2pf_if_not_ready
[17:34:52] [PASSED] xe_drops_guc2vf_if_not_ready
[17:34:52] [PASSED] xe_rejects_send_if_not_ready
[17:34:52] ==================== [PASSED] no_relay =====================
[17:34:52] ================== pf_relay (14 subtests) ==================
[17:34:52] [PASSED] pf_rejects_guc2pf_too_short
[17:34:52] [PASSED] pf_rejects_guc2pf_too_long
[17:34:52] [PASSED] pf_rejects_guc2pf_no_payload
[17:34:52] [PASSED] pf_fails_no_payload
[17:34:52] [PASSED] pf_fails_bad_origin
[17:34:52] [PASSED] pf_fails_bad_type
[17:34:52] [PASSED] pf_txn_reports_error
[17:34:52] [PASSED] pf_txn_sends_pf2guc
[17:34:52] [PASSED] pf_sends_pf2guc
[17:34:52] [SKIPPED] pf_loopback_nop
[17:34:52] [SKIPPED] pf_loopback_echo
[17:34:52] [SKIPPED] pf_loopback_fail
[17:34:52] [SKIPPED] pf_loopback_busy
[17:34:52] [SKIPPED] pf_loopback_retry
[17:34:52] ==================== [PASSED] pf_relay =====================
[17:34:52] ================== vf_relay (3 subtests) ===================
[17:34:52] [PASSED] vf_rejects_guc2vf_too_short
[17:34:52] [PASSED] vf_rejects_guc2vf_too_long
[17:34:52] [PASSED] vf_rejects_guc2vf_no_payload
[17:34:52] ==================== [PASSED] vf_relay =====================
[17:34:52] ===================== lmtt (1 subtest) =====================
[17:34:52] ======================== test_ops =========================
[17:34:52] [PASSED] 2-level
[17:34:52] [PASSED] multi-level
[17:34:52] ==================== [PASSED] test_ops =====================
[17:34:52] ====================== [PASSED] lmtt =======================
[17:34:52] ================= pf_service (11 subtests) =================
[17:34:52] [PASSED] pf_negotiate_any
[17:34:52] [PASSED] pf_negotiate_base_match
[17:34:52] [PASSED] pf_negotiate_base_newer
[17:34:52] [PASSED] pf_negotiate_base_next
[17:34:52] [SKIPPED] pf_negotiate_base_older
[17:34:52] [PASSED] pf_negotiate_base_prev
[17:34:52] [PASSED] pf_negotiate_latest_match
[17:34:52] [PASSED] pf_negotiate_latest_newer
[17:34:52] [PASSED] pf_negotiate_latest_next
[17:34:52] [SKIPPED] pf_negotiate_latest_older
[17:34:52] [SKIPPED] pf_negotiate_latest_prev
[17:34:52] =================== [PASSED] pf_service ====================
[17:34:52] =================== xe_mocs (2 subtests) ===================
[17:34:52] ================ xe_live_mocs_kernel_kunit ================
[17:34:52] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[17:34:52] ================ xe_live_mocs_reset_kunit =================
[17:34:52] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[17:34:52] ==================== [SKIPPED] xe_mocs =====================
[17:34:52] ================= xe_migrate (2 subtests) ==================
[17:34:52] ================= xe_migrate_sanity_kunit =================
[17:34:52] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[17:34:52] ================== xe_validate_ccs_kunit ==================
[17:34:52] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[17:34:52] =================== [SKIPPED] xe_migrate ===================
[17:34:52] ================== xe_dma_buf (1 subtest) ==================
[17:34:52] ==================== xe_dma_buf_kunit =====================
[17:34:52] ================ [SKIPPED] xe_dma_buf_kunit ================
[17:34:52] =================== [SKIPPED] xe_dma_buf ===================
[17:34:52] ================= xe_bo_shrink (1 subtest) =================
[17:34:52] =================== xe_bo_shrink_kunit ====================
[17:34:52] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[17:34:52] ================== [SKIPPED] xe_bo_shrink ==================
[17:34:52] ==================== xe_bo (2 subtests) ====================
[17:34:52] ================== xe_ccs_migrate_kunit ===================
[17:34:52] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[17:34:52] ==================== xe_bo_evict_kunit ====================
[17:34:52] =============== [SKIPPED] xe_bo_evict_kunit ================
[17:34:52] ===================== [SKIPPED] xe_bo ======================
[17:34:52] ==================== args (11 subtests) ====================
[17:34:52] [PASSED] count_args_test
[17:34:52] [PASSED] call_args_example
[17:34:52] [PASSED] call_args_test
[17:34:52] [PASSED] drop_first_arg_example
[17:34:52] [PASSED] drop_first_arg_test
[17:34:52] [PASSED] first_arg_example
[17:34:52] [PASSED] first_arg_test
[17:34:52] [PASSED] last_arg_example
[17:34:52] [PASSED] last_arg_test
[17:34:52] [PASSED] pick_arg_example
[17:34:52] [PASSED] sep_comma_example
[17:34:52] ====================== [PASSED] args =======================
[17:34:52] =================== xe_pci (3 subtests) ====================
[17:34:52] ==================== check_graphics_ip ====================
[17:34:52] [PASSED] 12.70 Xe_LPG
[17:34:52] [PASSED] 12.71 Xe_LPG
[17:34:52] [PASSED] 12.74 Xe_LPG+
[17:34:52] [PASSED] 20.01 Xe2_HPG
[17:34:52] [PASSED] 20.02 Xe2_HPG
[17:34:52] [PASSED] 20.04 Xe2_LPG
[17:34:52] [PASSED] 30.00 Xe3_LPG
[17:34:52] [PASSED] 30.01 Xe3_LPG
[17:34:52] [PASSED] 30.03 Xe3_LPG
[17:34:52] ================ [PASSED] check_graphics_ip ================
[17:34:52] ===================== check_media_ip ======================
[17:34:52] [PASSED] 13.00 Xe_LPM+
[17:34:52] [PASSED] 13.01 Xe2_HPM
[17:34:52] [PASSED] 20.00 Xe2_LPM
[17:34:52] [PASSED] 30.00 Xe3_LPM
[17:34:52] [PASSED] 30.02 Xe3_LPM
[17:34:52] ================= [PASSED] check_media_ip ==================
[17:34:52] ================= check_platform_gt_count =================
[17:34:52] [PASSED] 0x9A60 (TIGERLAKE)
[17:34:52] [PASSED] 0x9A68 (TIGERLAKE)
[17:34:52] [PASSED] 0x9A70 (TIGERLAKE)
[17:34:52] [PASSED] 0x9A40 (TIGERLAKE)
[17:34:52] [PASSED] 0x9A49 (TIGERLAKE)
[17:34:52] [PASSED] 0x9A59 (TIGERLAKE)
[17:34:52] [PASSED] 0x9A78 (TIGERLAKE)
[17:34:52] [PASSED] 0x9AC0 (TIGERLAKE)
[17:34:52] [PASSED] 0x9AC9 (TIGERLAKE)
[17:34:52] [PASSED] 0x9AD9 (TIGERLAKE)
[17:34:52] [PASSED] 0x9AF8 (TIGERLAKE)
[17:34:52] [PASSED] 0x4C80 (ROCKETLAKE)
[17:34:52] [PASSED] 0x4C8A (ROCKETLAKE)
[17:34:52] [PASSED] 0x4C8B (ROCKETLAKE)
[17:34:52] [PASSED] 0x4C8C (ROCKETLAKE)
[17:34:52] [PASSED] 0x4C90 (ROCKETLAKE)
[17:34:52] [PASSED] 0x4C9A (ROCKETLAKE)
[17:34:52] [PASSED] 0x4680 (ALDERLAKE_S)
[17:34:52] [PASSED] 0x4682 (ALDERLAKE_S)
[17:34:52] [PASSED] 0x4688 (ALDERLAKE_S)
[17:34:52] [PASSED] 0x468A (ALDERLAKE_S)
[17:34:52] [PASSED] 0x468B (ALDERLAKE_S)
[17:34:52] [PASSED] 0x4690 (ALDERLAKE_S)
[17:34:52] [PASSED] 0x4692 (ALDERLAKE_S)
[17:34:52] [PASSED] 0x4693 (ALDERLAKE_S)
[17:34:52] [PASSED] 0x46A0 (ALDERLAKE_P)
[17:34:52] [PASSED] 0x46A1 (ALDERLAKE_P)
[17:34:52] [PASSED] 0x46A2 (ALDERLAKE_P)
[17:34:52] [PASSED] 0x46A3 (ALDERLAKE_P)
[17:34:52] [PASSED] 0x46A6 (ALDERLAKE_P)
[17:34:52] [PASSED] 0x46A8 (ALDERLAKE_P)
[17:34:52] [PASSED] 0x46AA (ALDERLAKE_P)
[17:34:52] [PASSED] 0x462A (ALDERLAKE_P)
[17:34:52] [PASSED] 0x4626 (ALDERLAKE_P)
[17:34:52] [PASSED] 0x4628 (ALDERLAKE_P)
[17:34:52] [PASSED] 0x46B0 (ALDERLAKE_P)
[17:34:52] [PASSED] 0x46B1 (ALDERLAKE_P)
[17:34:52] [PASSED] 0x46B2 (ALDERLAKE_P)
[17:34:52] [PASSED] 0x46B3 (ALDERLAKE_P)
[17:34:52] [PASSED] 0x46C0 (ALDERLAKE_P)
[17:34:52] [PASSED] 0x46C1 (ALDERLAKE_P)
[17:34:52] [PASSED] 0x46C2 (ALDERLAKE_P)
[17:34:52] [PASSED] 0x46C3 (ALDERLAKE_P)
[17:34:52] [PASSED] 0x46D0 (ALDERLAKE_N)
[17:34:52] [PASSED] 0x46D1 (ALDERLAKE_N)
[17:34:52] [PASSED] 0x46D2 (ALDERLAKE_N)
[17:34:52] [PASSED] 0x46D3 (ALDERLAKE_N)
[17:34:52] [PASSED] 0x46D4 (ALDERLAKE_N)
[17:34:52] [PASSED] 0xA721 (ALDERLAKE_P)
[17:34:52] [PASSED] 0xA7A1 (ALDERLAKE_P)
[17:34:52] [PASSED] 0xA7A9 (ALDERLAKE_P)
[17:34:52] [PASSED] 0xA7AC (ALDERLAKE_P)
[17:34:52] [PASSED] 0xA7AD (ALDERLAKE_P)
[17:34:52] [PASSED] 0xA720 (ALDERLAKE_P)
[17:34:52] [PASSED] 0xA7A0 (ALDERLAKE_P)
[17:34:52] [PASSED] 0xA7A8 (ALDERLAKE_P)
[17:34:52] [PASSED] 0xA7AA (ALDERLAKE_P)
[17:34:52] [PASSED] 0xA7AB (ALDERLAKE_P)
[17:34:52] [PASSED] 0xA780 (ALDERLAKE_S)
[17:34:52] [PASSED] 0xA781 (ALDERLAKE_S)
[17:34:52] [PASSED] 0xA782 (ALDERLAKE_S)
[17:34:52] [PASSED] 0xA783 (ALDERLAKE_S)
[17:34:52] [PASSED] 0xA788 (ALDERLAKE_S)
[17:34:52] [PASSED] 0xA789 (ALDERLAKE_S)
[17:34:52] [PASSED] 0xA78A (ALDERLAKE_S)
[17:34:52] [PASSED] 0xA78B (ALDERLAKE_S)
[17:34:52] [PASSED] 0x4905 (DG1)
[17:34:52] [PASSED] 0x4906 (DG1)
[17:34:52] [PASSED] 0x4907 (DG1)
[17:34:52] [PASSED] 0x4908 (DG1)
[17:34:52] [PASSED] 0x4909 (DG1)
[17:34:52] [PASSED] 0x56C0 (DG2)
[17:34:52] [PASSED] 0x56C2 (DG2)
[17:34:52] [PASSED] 0x56C1 (DG2)
[17:34:52] [PASSED] 0x7D51 (METEORLAKE)
[17:34:52] [PASSED] 0x7DD1 (METEORLAKE)
[17:34:52] [PASSED] 0x7D41 (METEORLAKE)
[17:34:52] [PASSED] 0x7D67 (METEORLAKE)
[17:34:52] [PASSED] 0xB640 (METEORLAKE)
[17:34:52] [PASSED] 0x56A0 (DG2)
[17:34:52] [PASSED] 0x56A1 (DG2)
[17:34:52] [PASSED] 0x56A2 (DG2)
[17:34:52] [PASSED] 0x56BE (DG2)
[17:34:52] [PASSED] 0x56BF (DG2)
[17:34:52] [PASSED] 0x5690 (DG2)
[17:34:52] [PASSED] 0x5691 (DG2)
[17:34:52] [PASSED] 0x5692 (DG2)
[17:34:52] [PASSED] 0x56A5 (DG2)
[17:34:52] [PASSED] 0x56A6 (DG2)
[17:34:52] [PASSED] 0x56B0 (DG2)
[17:34:52] [PASSED] 0x56B1 (DG2)
[17:34:52] [PASSED] 0x56BA (DG2)
[17:34:52] [PASSED] 0x56BB (DG2)
[17:34:52] [PASSED] 0x56BC (DG2)
[17:34:52] [PASSED] 0x56BD (DG2)
[17:34:52] [PASSED] 0x5693 (DG2)
[17:34:52] [PASSED] 0x5694 (DG2)
[17:34:52] [PASSED] 0x5695 (DG2)
[17:34:52] [PASSED] 0x56A3 (DG2)
[17:34:52] [PASSED] 0x56A4 (DG2)
[17:34:52] [PASSED] 0x56B2 (DG2)
[17:34:52] [PASSED] 0x56B3 (DG2)
[17:34:52] [PASSED] 0x5696 (DG2)
[17:34:52] [PASSED] 0x5697 (DG2)
[17:34:52] [PASSED] 0xB69 (PVC)
[17:34:52] [PASSED] 0xB6E (PVC)
[17:34:52] [PASSED] 0xBD4 (PVC)
[17:34:52] [PASSED] 0xBD5 (PVC)
[17:34:52] [PASSED] 0xBD6 (PVC)
[17:34:52] [PASSED] 0xBD7 (PVC)
[17:34:52] [PASSED] 0xBD8 (PVC)
[17:34:52] [PASSED] 0xBD9 (PVC)
[17:34:52] [PASSED] 0xBDA (PVC)
[17:34:52] [PASSED] 0xBDB (PVC)
[17:34:52] [PASSED] 0xBE0 (PVC)
[17:34:52] [PASSED] 0xBE1 (PVC)
[17:34:52] [PASSED] 0xBE5 (PVC)
[17:34:52] [PASSED] 0x7D40 (METEORLAKE)
[17:34:52] [PASSED] 0x7D45 (METEORLAKE)
[17:34:52] [PASSED] 0x7D55 (METEORLAKE)
[17:34:52] [PASSED] 0x7D60 (METEORLAKE)
[17:34:52] [PASSED] 0x7DD5 (METEORLAKE)
[17:34:52] [PASSED] 0x6420 (LUNARLAKE)
[17:34:52] [PASSED] 0x64A0 (LUNARLAKE)
[17:34:52] [PASSED] 0x64B0 (LUNARLAKE)
[17:34:52] [PASSED] 0xE202 (BATTLEMAGE)
[17:34:52] [PASSED] 0xE209 (BATTLEMAGE)
[17:34:52] [PASSED] 0xE20B (BATTLEMAGE)
[17:34:52] [PASSED] 0xE20C (BATTLEMAGE)
[17:34:52] [PASSED] 0xE20D (BATTLEMAGE)
[17:34:52] [PASSED] 0xE210 (BATTLEMAGE)
[17:34:52] [PASSED] 0xE211 (BATTLEMAGE)
[17:34:52] [PASSED] 0xE212 (BATTLEMAGE)
[17:34:52] [PASSED] 0xE216 (BATTLEMAGE)
[17:34:52] [PASSED] 0xE220 (BATTLEMAGE)
[17:34:52] [PASSED] 0xE221 (BATTLEMAGE)
[17:34:52] [PASSED] 0xE222 (BATTLEMAGE)
[17:34:52] [PASSED] 0xE223 (BATTLEMAGE)
[17:34:52] [PASSED] 0xB080 (PANTHERLAKE)
[17:34:52] [PASSED] 0xB081 (PANTHERLAKE)
[17:34:52] [PASSED] 0xB082 (PANTHERLAKE)
[17:34:52] [PASSED] 0xB083 (PANTHERLAKE)
[17:34:52] [PASSED] 0xB084 (PANTHERLAKE)
[17:34:52] [PASSED] 0xB085 (PANTHERLAKE)
[17:34:52] [PASSED] 0xB086 (PANTHERLAKE)
[17:34:52] [PASSED] 0xB087 (PANTHERLAKE)
[17:34:52] [PASSED] 0xB08F (PANTHERLAKE)
[17:34:52] [PASSED] 0xB090 (PANTHERLAKE)
[17:34:52] [PASSED] 0xB0A0 (PANTHERLAKE)
[17:34:52] [PASSED] 0xB0B0 (PANTHERLAKE)
[17:34:52] [PASSED] 0xFD80 (PANTHERLAKE)
[17:34:52] [PASSED] 0xFD81 (PANTHERLAKE)
[17:34:52] ============= [PASSED] check_platform_gt_count =============
[17:34:52] ===================== [PASSED] xe_pci ======================
[17:34:52] =================== xe_rtp (2 subtests) ====================
[17:34:52] =============== xe_rtp_process_to_sr_tests ================
[17:34:52] [PASSED] coalesce-same-reg
[17:34:52] [PASSED] no-match-no-add
[17:34:52] [PASSED] match-or
[17:34:52] [PASSED] match-or-xfail
[17:34:52] [PASSED] no-match-no-add-multiple-rules
[17:34:52] [PASSED] two-regs-two-entries
[17:34:52] [PASSED] clr-one-set-other
[17:34:52] [PASSED] set-field
[17:34:52] [PASSED] conflict-duplicate
[17:34:52] [PASSED] conflict-not-disjoint
[17:34:52] [PASSED] conflict-reg-type
[17:34:52] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[17:34:52] ================== xe_rtp_process_tests ===================
[17:34:52] [PASSED] active1
[17:34:52] [PASSED] active2
[17:34:52] [PASSED] active-inactive
[17:34:52] [PASSED] inactive-active
[17:34:52] [PASSED] inactive-1st_or_active-inactive
[17:34:52] [PASSED] inactive-2nd_or_active-inactive
[17:34:52] [PASSED] inactive-last_or_active-inactive
[17:34:52] [PASSED] inactive-no_or_active-inactive
[17:34:52] ============== [PASSED] xe_rtp_process_tests ===============
[17:34:52] ===================== [PASSED] xe_rtp ======================
[17:34:52] ==================== xe_wa (1 subtest) =====================
[17:34:52] ======================== xe_wa_gt =========================
[17:34:52] [PASSED] TIGERLAKE (B0)
[17:34:52] [PASSED] DG1 (A0)
[17:34:52] [PASSED] DG1 (B0)
[17:34:52] [PASSED] ALDERLAKE_S (A0)
[17:34:52] [PASSED] ALDERLAKE_S (B0)
[17:34:52] [PASSED] ALDERLAKE_S (C0)
[17:34:52] [PASSED] ALDERLAKE_S (D0)
[17:34:52] [PASSED] ALDERLAKE_P (A0)
[17:34:52] [PASSED] ALDERLAKE_P (B0)
[17:34:52] [PASSED] ALDERLAKE_P (C0)
[17:34:52] [PASSED] ALDERLAKE_S_RPLS (D0)
[17:34:52] [PASSED] ALDERLAKE_P_RPLU (E0)
[17:34:52] [PASSED] DG2_G10 (C0)
[17:34:52] [PASSED] DG2_G11 (B1)
[17:34:52] [PASSED] DG2_G12 (A1)
[17:34:52] [PASSED] METEORLAKE (g:A0, m:A0)
[17:34:52] [PASSED] METEORLAKE (g:A0, m:A0)
[17:34:52] [PASSED] METEORLAKE (g:A0, m:A0)
[17:34:52] [PASSED] LUNARLAKE (g:A0, m:A0)
[17:34:52] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[17:34:52] [PASSED] BATTLEMAGE (g:A0, m:A1)
[17:34:52] ==================== [PASSED] xe_wa_gt =====================
[17:34:52] ====================== [PASSED] xe_wa ======================
[17:34:52] ============================================================
[17:34:52] Testing complete. Ran 297 tests: passed: 281, skipped: 16
[17:34:52] Elapsed time: 38.142s total, 4.172s configuring, 33.603s building, 0.314s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[17:34:53] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:34:54] 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
[17:35:20] Starting KUnit Kernel (1/1)...
[17:35:20] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:35:20] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[17:35:20] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[17:35:20] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[17:35:20] =========== drm_validate_clone_mode (2 subtests) ===========
[17:35:20] ============== drm_test_check_in_clone_mode ===============
[17:35:20] [PASSED] in_clone_mode
[17:35:20] [PASSED] not_in_clone_mode
[17:35:20] ========== [PASSED] drm_test_check_in_clone_mode ===========
[17:35:20] =============== drm_test_check_valid_clones ===============
[17:35:20] [PASSED] not_in_clone_mode
[17:35:20] [PASSED] valid_clone
[17:35:20] [PASSED] invalid_clone
[17:35:20] =========== [PASSED] drm_test_check_valid_clones ===========
[17:35:20] ============= [PASSED] drm_validate_clone_mode =============
[17:35:20] ============= drm_validate_modeset (1 subtest) =============
[17:35:20] [PASSED] drm_test_check_connector_changed_modeset
[17:35:20] ============== [PASSED] drm_validate_modeset ===============
[17:35:20] ====== drm_test_bridge_get_current_state (2 subtests) ======
[17:35:20] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[17:35:20] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[17:35:20] ======== [PASSED] drm_test_bridge_get_current_state ========
[17:35:20] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[17:35:20] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[17:35:20] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[17:35:20] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[17:35:20] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[17:35:20] ============== drm_bridge_alloc (2 subtests) ===============
[17:35:20] [PASSED] drm_test_drm_bridge_alloc_basic
[17:35:20] [PASSED] drm_test_drm_bridge_alloc_get_put
[17:35:20] ================ [PASSED] drm_bridge_alloc =================
[17:35:20] ================== drm_buddy (7 subtests) ==================
[17:35:20] [PASSED] drm_test_buddy_alloc_limit
[17:35:20] [PASSED] drm_test_buddy_alloc_optimistic
[17:35:20] [PASSED] drm_test_buddy_alloc_pessimistic
[17:35:20] [PASSED] drm_test_buddy_alloc_pathological
[17:35:20] [PASSED] drm_test_buddy_alloc_contiguous
[17:35:20] [PASSED] drm_test_buddy_alloc_clear
[17:35:20] [PASSED] drm_test_buddy_alloc_range_bias
[17:35:20] ==================== [PASSED] drm_buddy ====================
[17:35:20] ============= drm_cmdline_parser (40 subtests) =============
[17:35:20] [PASSED] drm_test_cmdline_force_d_only
[17:35:20] [PASSED] drm_test_cmdline_force_D_only_dvi
[17:35:20] [PASSED] drm_test_cmdline_force_D_only_hdmi
[17:35:20] [PASSED] drm_test_cmdline_force_D_only_not_digital
[17:35:20] [PASSED] drm_test_cmdline_force_e_only
[17:35:20] [PASSED] drm_test_cmdline_res
[17:35:20] [PASSED] drm_test_cmdline_res_vesa
[17:35:20] [PASSED] drm_test_cmdline_res_vesa_rblank
[17:35:20] [PASSED] drm_test_cmdline_res_rblank
[17:35:20] [PASSED] drm_test_cmdline_res_bpp
[17:35:20] [PASSED] drm_test_cmdline_res_refresh
[17:35:20] [PASSED] drm_test_cmdline_res_bpp_refresh
[17:35:20] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[17:35:20] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[17:35:20] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[17:35:20] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[17:35:20] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[17:35:20] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[17:35:20] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[17:35:20] [PASSED] drm_test_cmdline_res_margins_force_on
[17:35:20] [PASSED] drm_test_cmdline_res_vesa_margins
[17:35:20] [PASSED] drm_test_cmdline_name
[17:35:20] [PASSED] drm_test_cmdline_name_bpp
[17:35:20] [PASSED] drm_test_cmdline_name_option
[17:35:20] [PASSED] drm_test_cmdline_name_bpp_option
[17:35:20] [PASSED] drm_test_cmdline_rotate_0
[17:35:20] [PASSED] drm_test_cmdline_rotate_90
[17:35:20] [PASSED] drm_test_cmdline_rotate_180
[17:35:20] [PASSED] drm_test_cmdline_rotate_270
[17:35:20] [PASSED] drm_test_cmdline_hmirror
[17:35:20] [PASSED] drm_test_cmdline_vmirror
[17:35:20] [PASSED] drm_test_cmdline_margin_options
[17:35:20] [PASSED] drm_test_cmdline_multiple_options
[17:35:20] [PASSED] drm_test_cmdline_bpp_extra_and_option
[17:35:20] [PASSED] drm_test_cmdline_extra_and_option
[17:35:20] [PASSED] drm_test_cmdline_freestanding_options
[17:35:20] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[17:35:20] [PASSED] drm_test_cmdline_panel_orientation
[17:35:20] ================ drm_test_cmdline_invalid =================
[17:35:20] [PASSED] margin_only
[17:35:20] [PASSED] interlace_only
[17:35:20] [PASSED] res_missing_x
[17:35:20] [PASSED] res_missing_y
[17:35:20] [PASSED] res_bad_y
[17:35:20] [PASSED] res_missing_y_bpp
[17:35:20] [PASSED] res_bad_bpp
[17:35:20] [PASSED] res_bad_refresh
[17:35:20] [PASSED] res_bpp_refresh_force_on_off
[17:35:20] [PASSED] res_invalid_mode
[17:35:20] [PASSED] res_bpp_wrong_place_mode
[17:35:20] [PASSED] name_bpp_refresh
[17:35:20] [PASSED] name_refresh
[17:35:20] [PASSED] name_refresh_wrong_mode
[17:35:20] [PASSED] name_refresh_invalid_mode
[17:35:20] [PASSED] rotate_multiple
[17:35:20] [PASSED] rotate_invalid_val
[17:35:20] [PASSED] rotate_truncated
[17:35:20] [PASSED] invalid_option
[17:35:20] [PASSED] invalid_tv_option
[17:35:20] [PASSED] truncated_tv_option
[17:35:20] ============ [PASSED] drm_test_cmdline_invalid =============
[17:35:20] =============== drm_test_cmdline_tv_options ===============
[17:35:20] [PASSED] NTSC
[17:35:20] [PASSED] NTSC_443
[17:35:20] [PASSED] NTSC_J
[17:35:20] [PASSED] PAL
[17:35:20] [PASSED] PAL_M
[17:35:20] [PASSED] PAL_N
[17:35:20] [PASSED] SECAM
[17:35:20] [PASSED] MONO_525
[17:35:20] [PASSED] MONO_625
[17:35:20] =========== [PASSED] drm_test_cmdline_tv_options ===========
[17:35:20] =============== [PASSED] drm_cmdline_parser ================
[17:35:20] ========== drmm_connector_hdmi_init (20 subtests) ==========
[17:35:20] [PASSED] drm_test_connector_hdmi_init_valid
[17:35:20] [PASSED] drm_test_connector_hdmi_init_bpc_8
[17:35:20] [PASSED] drm_test_connector_hdmi_init_bpc_10
[17:35:20] [PASSED] drm_test_connector_hdmi_init_bpc_12
[17:35:20] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[17:35:20] [PASSED] drm_test_connector_hdmi_init_bpc_null
[17:35:20] [PASSED] drm_test_connector_hdmi_init_formats_empty
[17:35:20] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[17:35:20] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[17:35:20] [PASSED] supported_formats=0x9 yuv420_allowed=1
[17:35:20] [PASSED] supported_formats=0x9 yuv420_allowed=0
[17:35:20] [PASSED] supported_formats=0x3 yuv420_allowed=1
[17:35:20] [PASSED] supported_formats=0x3 yuv420_allowed=0
[17:35:20] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[17:35:20] [PASSED] drm_test_connector_hdmi_init_null_ddc
[17:35:20] [PASSED] drm_test_connector_hdmi_init_null_product
[17:35:20] [PASSED] drm_test_connector_hdmi_init_null_vendor
[17:35:20] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[17:35:20] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[17:35:20] [PASSED] drm_test_connector_hdmi_init_product_valid
[17:35:20] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[17:35:20] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[17:35:20] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[17:35:20] ========= drm_test_connector_hdmi_init_type_valid =========
[17:35:20] [PASSED] HDMI-A
[17:35:20] [PASSED] HDMI-B
[17:35:20] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[17:35:20] ======== drm_test_connector_hdmi_init_type_invalid ========
[17:35:20] [PASSED] Unknown
[17:35:20] [PASSED] VGA
[17:35:20] [PASSED] DVI-I
[17:35:20] [PASSED] DVI-D
[17:35:20] [PASSED] DVI-A
[17:35:20] [PASSED] Composite
[17:35:20] [PASSED] SVIDEO
[17:35:20] [PASSED] LVDS
[17:35:20] [PASSED] Component
[17:35:20] [PASSED] DIN
[17:35:20] [PASSED] DP
[17:35:20] [PASSED] TV
[17:35:20] [PASSED] eDP
[17:35:20] [PASSED] Virtual
[17:35:20] [PASSED] DSI
[17:35:20] [PASSED] DPI
[17:35:20] [PASSED] Writeback
[17:35:20] [PASSED] SPI
[17:35:20] [PASSED] USB
[17:35:20] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[17:35:20] ============ [PASSED] drmm_connector_hdmi_init =============
[17:35:20] ============= drmm_connector_init (3 subtests) =============
[17:35:20] [PASSED] drm_test_drmm_connector_init
[17:35:20] [PASSED] drm_test_drmm_connector_init_null_ddc
[17:35:20] ========= drm_test_drmm_connector_init_type_valid =========
[17:35:20] [PASSED] Unknown
[17:35:20] [PASSED] VGA
[17:35:20] [PASSED] DVI-I
[17:35:20] [PASSED] DVI-D
[17:35:20] [PASSED] DVI-A
[17:35:20] [PASSED] Composite
[17:35:20] [PASSED] SVIDEO
[17:35:20] [PASSED] LVDS
[17:35:20] [PASSED] Component
[17:35:20] [PASSED] DIN
[17:35:20] [PASSED] DP
[17:35:20] [PASSED] HDMI-A
[17:35:20] [PASSED] HDMI-B
[17:35:20] [PASSED] TV
[17:35:20] [PASSED] eDP
[17:35:20] [PASSED] Virtual
[17:35:20] [PASSED] DSI
[17:35:20] [PASSED] DPI
[17:35:20] [PASSED] Writeback
[17:35:20] [PASSED] SPI
[17:35:20] [PASSED] USB
[17:35:20] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[17:35:20] =============== [PASSED] drmm_connector_init ===============
[17:35:20] ========= drm_connector_dynamic_init (6 subtests) ==========
[17:35:20] [PASSED] drm_test_drm_connector_dynamic_init
[17:35:20] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[17:35:20] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[17:35:20] [PASSED] drm_test_drm_connector_dynamic_init_properties
[17:35:20] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[17:35:20] [PASSED] Unknown
[17:35:20] [PASSED] VGA
[17:35:20] [PASSED] DVI-I
[17:35:20] [PASSED] DVI-D
[17:35:20] [PASSED] DVI-A
[17:35:20] [PASSED] Composite
[17:35:20] [PASSED] SVIDEO
[17:35:20] [PASSED] LVDS
[17:35:20] [PASSED] Component
[17:35:20] [PASSED] DIN
[17:35:20] [PASSED] DP
[17:35:20] [PASSED] HDMI-A
[17:35:20] [PASSED] HDMI-B
[17:35:20] [PASSED] TV
[17:35:20] [PASSED] eDP
[17:35:20] [PASSED] Virtual
[17:35:20] [PASSED] DSI
[17:35:20] [PASSED] DPI
[17:35:20] [PASSED] Writeback
[17:35:20] [PASSED] SPI
[17:35:20] [PASSED] USB
[17:35:20] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[17:35:20] ======== drm_test_drm_connector_dynamic_init_name =========
[17:35:20] [PASSED] Unknown
[17:35:20] [PASSED] VGA
[17:35:20] [PASSED] DVI-I
[17:35:20] [PASSED] DVI-D
[17:35:20] [PASSED] DVI-A
[17:35:20] [PASSED] Composite
[17:35:20] [PASSED] SVIDEO
[17:35:20] [PASSED] LVDS
[17:35:20] [PASSED] Component
[17:35:20] [PASSED] DIN
[17:35:20] [PASSED] DP
[17:35:20] [PASSED] HDMI-A
[17:35:20] [PASSED] HDMI-B
[17:35:20] [PASSED] TV
[17:35:20] [PASSED] eDP
[17:35:20] [PASSED] Virtual
[17:35:20] [PASSED] DSI
[17:35:20] [PASSED] DPI
[17:35:20] [PASSED] Writeback
[17:35:20] [PASSED] SPI
[17:35:20] [PASSED] USB
[17:35:20] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[17:35:20] =========== [PASSED] drm_connector_dynamic_init ============
[17:35:20] ==== drm_connector_dynamic_register_early (4 subtests) =====
[17:35:20] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[17:35:20] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[17:35:20] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[17:35:20] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[17:35:20] ====== [PASSED] drm_connector_dynamic_register_early =======
[17:35:20] ======= drm_connector_dynamic_register (7 subtests) ========
[17:35:20] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[17:35:20] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[17:35:20] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[17:35:20] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[17:35:20] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[17:35:20] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[17:35:20] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[17:35:20] ========= [PASSED] drm_connector_dynamic_register ==========
[17:35:20] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[17:35:20] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[17:35:20] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[17:35:20] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[17:35:20] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[17:35:20] ========== drm_test_get_tv_mode_from_name_valid ===========
[17:35:20] [PASSED] NTSC
[17:35:20] [PASSED] NTSC-443
[17:35:20] [PASSED] NTSC-J
[17:35:20] [PASSED] PAL
[17:35:20] [PASSED] PAL-M
[17:35:20] [PASSED] PAL-N
[17:35:20] [PASSED] SECAM
[17:35:20] [PASSED] Mono
[17:35:20] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[17:35:20] [PASSED] drm_test_get_tv_mode_from_name_truncated
[17:35:20] ============ [PASSED] drm_get_tv_mode_from_name ============
[17:35:20] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[17:35:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[17:35:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[17:35:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[17:35:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[17:35:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[17:35:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[17:35:20] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[17:35:20] [PASSED] VIC 96
[17:35:20] [PASSED] VIC 97
[17:35:20] [PASSED] VIC 101
[17:35:20] [PASSED] VIC 102
[17:35:20] [PASSED] VIC 106
[17:35:20] [PASSED] VIC 107
[17:35:20] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[17:35:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[17:35:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[17:35:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[17:35:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[17:35:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[17:35:20] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[17:35:20] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[17:35:20] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[17:35:20] [PASSED] Automatic
[17:35:20] [PASSED] Full
[17:35:20] [PASSED] Limited 16:235
[17:35:20] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[17:35:20] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[17:35:20] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[17:35:20] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[17:35:20] === drm_test_drm_hdmi_connector_get_output_format_name ====
[17:35:20] [PASSED] RGB
[17:35:20] [PASSED] YUV 4:2:0
[17:35:20] [PASSED] YUV 4:2:2
[17:35:20] [PASSED] YUV 4:4:4
[17:35:20] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[17:35:20] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[17:35:20] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[17:35:20] ============= drm_damage_helper (21 subtests) ==============
[17:35:20] [PASSED] drm_test_damage_iter_no_damage
[17:35:20] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[17:35:20] [PASSED] drm_test_damage_iter_no_damage_src_moved
[17:35:20] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[17:35:20] [PASSED] drm_test_damage_iter_no_damage_not_visible
[17:35:20] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[17:35:20] [PASSED] drm_test_damage_iter_no_damage_no_fb
[17:35:20] [PASSED] drm_test_damage_iter_simple_damage
[17:35:20] [PASSED] drm_test_damage_iter_single_damage
[17:35:20] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[17:35:20] [PASSED] drm_test_damage_iter_single_damage_outside_src
[17:35:20] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[17:35:20] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[17:35:20] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[17:35:20] [PASSED] drm_test_damage_iter_single_damage_src_moved
[17:35:20] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[17:35:20] [PASSED] drm_test_damage_iter_damage
[17:35:20] [PASSED] drm_test_damage_iter_damage_one_intersect
[17:35:20] [PASSED] drm_test_damage_iter_damage_one_outside
[17:35:20] [PASSED] drm_test_damage_iter_damage_src_moved
[17:35:20] [PASSED] drm_test_damage_iter_damage_not_visible
[17:35:20] ================ [PASSED] drm_damage_helper ================
[17:35:20] ============== drm_dp_mst_helper (3 subtests) ==============
[17:35:20] ============== drm_test_dp_mst_calc_pbn_mode ==============
[17:35:20] [PASSED] Clock 154000 BPP 30 DSC disabled
[17:35:20] [PASSED] Clock 234000 BPP 30 DSC disabled
[17:35:20] [PASSED] Clock 297000 BPP 24 DSC disabled
[17:35:20] [PASSED] Clock 332880 BPP 24 DSC enabled
[17:35:20] [PASSED] Clock 324540 BPP 24 DSC enabled
[17:35:20] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[17:35:20] ============== drm_test_dp_mst_calc_pbn_div ===============
[17:35:20] [PASSED] Link rate 2000000 lane count 4
[17:35:20] [PASSED] Link rate 2000000 lane count 2
[17:35:20] [PASSED] Link rate 2000000 lane count 1
[17:35:20] [PASSED] Link rate 1350000 lane count 4
[17:35:20] [PASSED] Link rate 1350000 lane count 2
[17:35:20] [PASSED] Link rate 1350000 lane count 1
[17:35:20] [PASSED] Link rate 1000000 lane count 4
[17:35:20] [PASSED] Link rate 1000000 lane count 2
[17:35:20] [PASSED] Link rate 1000000 lane count 1
[17:35:20] [PASSED] Link rate 810000 lane count 4
[17:35:20] [PASSED] Link rate 810000 lane count 2
[17:35:20] [PASSED] Link rate 810000 lane count 1
[17:35:20] [PASSED] Link rate 540000 lane count 4
[17:35:20] [PASSED] Link rate 540000 lane count 2
[17:35:20] [PASSED] Link rate 540000 lane count 1
[17:35:20] [PASSED] Link rate 270000 lane count 4
[17:35:20] [PASSED] Link rate 270000 lane count 2
[17:35:20] [PASSED] Link rate 270000 lane count 1
[17:35:20] [PASSED] Link rate 162000 lane count 4
[17:35:20] [PASSED] Link rate 162000 lane count 2
[17:35:20] [PASSED] Link rate 162000 lane count 1
[17:35:20] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[17:35:20] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[17:35:20] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[17:35:20] [PASSED] DP_POWER_UP_PHY with port number
[17:35:20] [PASSED] DP_POWER_DOWN_PHY with port number
[17:35:20] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[17:35:20] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[17:35:20] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[17:35:20] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[17:35:20] [PASSED] DP_QUERY_PAYLOAD with port number
[17:35:20] [PASSED] DP_QUERY_PAYLOAD with VCPI
[17:35:20] [PASSED] DP_REMOTE_DPCD_READ with port number
[17:35:20] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[17:35:20] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[17:35:20] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[17:35:20] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[17:35:20] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[17:35:20] [PASSED] DP_REMOTE_I2C_READ with port number
[17:35:20] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[17:35:20] [PASSED] DP_REMOTE_I2C_READ with transactions array
[17:35:20] [PASSED] DP_REMOTE_I2C_WRITE with port number
[17:35:20] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[17:35:20] [PASSED] DP_REMOTE_I2C_WRITE with data array
[17:35:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[17:35:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[17:35:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[17:35:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[17:35:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[17:35:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[17:35:20] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[17:35:20] ================ [PASSED] drm_dp_mst_helper ================
[17:35:20] ================== drm_exec (7 subtests) ===================
[17:35:20] [PASSED] sanitycheck
[17:35:20] [PASSED] test_lock
[17:35:20] [PASSED] test_lock_unlock
[17:35:20] [PASSED] test_duplicates
[17:35:20] [PASSED] test_prepare
[17:35:20] [PASSED] test_prepare_array
[17:35:20] [PASSED] test_multiple_loops
[17:35:20] ==================== [PASSED] drm_exec =====================
[17:35:20] =========== drm_format_helper_test (17 subtests) ===========
[17:35:20] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[17:35:20] [PASSED] single_pixel_source_buffer
[17:35:20] [PASSED] single_pixel_clip_rectangle
[17:35:20] [PASSED] well_known_colors
[17:35:20] [PASSED] destination_pitch
[17:35:20] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[17:35:20] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[17:35:20] [PASSED] single_pixel_source_buffer
[17:35:20] [PASSED] single_pixel_clip_rectangle
[17:35:20] [PASSED] well_known_colors
[17:35:20] [PASSED] destination_pitch
[17:35:20] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[17:35:20] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[17:35:20] [PASSED] single_pixel_source_buffer
[17:35:20] [PASSED] single_pixel_clip_rectangle
[17:35:20] [PASSED] well_known_colors
[17:35:20] [PASSED] destination_pitch
[17:35:20] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[17:35:20] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[17:35:20] [PASSED] single_pixel_source_buffer
[17:35:20] [PASSED] single_pixel_clip_rectangle
[17:35:20] [PASSED] well_known_colors
[17:35:20] [PASSED] destination_pitch
[17:35:20] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[17:35:20] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[17:35:20] [PASSED] single_pixel_source_buffer
[17:35:20] [PASSED] single_pixel_clip_rectangle
[17:35:20] [PASSED] well_known_colors
[17:35:20] [PASSED] destination_pitch
[17:35:20] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[17:35:20] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[17:35:20] [PASSED] single_pixel_source_buffer
[17:35:20] [PASSED] single_pixel_clip_rectangle
[17:35:20] [PASSED] well_known_colors
[17:35:20] [PASSED] destination_pitch
[17:35:20] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[17:35:20] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[17:35:20] [PASSED] single_pixel_source_buffer
[17:35:20] [PASSED] single_pixel_clip_rectangle
[17:35:20] [PASSED] well_known_colors
[17:35:20] [PASSED] destination_pitch
[17:35:20] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[17:35:20] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[17:35:20] [PASSED] single_pixel_source_buffer
[17:35:20] [PASSED] single_pixel_clip_rectangle
[17:35:20] [PASSED] well_known_colors
[17:35:20] [PASSED] destination_pitch
[17:35:20] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[17:35:20] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[17:35:20] [PASSED] single_pixel_source_buffer
[17:35:20] [PASSED] single_pixel_clip_rectangle
[17:35:20] [PASSED] well_known_colors
[17:35:20] [PASSED] destination_pitch
[17:35:20] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[17:35:20] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[17:35:20] [PASSED] single_pixel_source_buffer
[17:35:20] [PASSED] single_pixel_clip_rectangle
[17:35:20] [PASSED] well_known_colors
[17:35:20] [PASSED] destination_pitch
[17:35:20] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[17:35:20] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[17:35:20] [PASSED] single_pixel_source_buffer
[17:35:20] [PASSED] single_pixel_clip_rectangle
[17:35:20] [PASSED] well_known_colors
[17:35:20] [PASSED] destination_pitch
[17:35:20] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[17:35:20] ============== drm_test_fb_xrgb8888_to_mono ===============
[17:35:20] [PASSED] single_pixel_source_buffer
[17:35:20] [PASSED] single_pixel_clip_rectangle
[17:35:20] [PASSED] well_known_colors
[17:35:20] [PASSED] destination_pitch
[17:35:20] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[17:35:20] ==================== drm_test_fb_swab =====================
[17:35:20] [PASSED] single_pixel_source_buffer
[17:35:20] [PASSED] single_pixel_clip_rectangle
[17:35:20] [PASSED] well_known_colors
[17:35:20] [PASSED] destination_pitch
[17:35:20] ================ [PASSED] drm_test_fb_swab =================
[17:35:20] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[17:35:20] [PASSED] single_pixel_source_buffer
[17:35:20] [PASSED] single_pixel_clip_rectangle
[17:35:20] [PASSED] well_known_colors
[17:35:20] [PASSED] destination_pitch
[17:35:20] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[17:35:20] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[17:35:20] [PASSED] single_pixel_source_buffer
[17:35:20] [PASSED] single_pixel_clip_rectangle
[17:35:20] [PASSED] well_known_colors
[17:35:20] [PASSED] destination_pitch
[17:35:20] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[17:35:20] ================= drm_test_fb_clip_offset =================
[17:35:20] [PASSED] pass through
[17:35:20] [PASSED] horizontal offset
[17:35:20] [PASSED] vertical offset
[17:35:20] [PASSED] horizontal and vertical offset
[17:35:20] [PASSED] horizontal offset (custom pitch)
[17:35:20] [PASSED] vertical offset (custom pitch)
[17:35:20] [PASSED] horizontal and vertical offset (custom pitch)
[17:35:20] ============= [PASSED] drm_test_fb_clip_offset =============
[17:35:20] =================== drm_test_fb_memcpy ====================
[17:35:20] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[17:35:20] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[17:35:20] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[17:35:20] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[17:35:20] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[17:35:20] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[17:35:20] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[17:35:20] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[17:35:20] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[17:35:20] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[17:35:20] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[17:35:20] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[17:35:20] =============== [PASSED] drm_test_fb_memcpy ================
[17:35:20] ============= [PASSED] drm_format_helper_test ==============
[17:35:20] ================= drm_format (18 subtests) =================
[17:35:20] [PASSED] drm_test_format_block_width_invalid
[17:35:20] [PASSED] drm_test_format_block_width_one_plane
[17:35:20] [PASSED] drm_test_format_block_width_two_plane
[17:35:20] [PASSED] drm_test_format_block_width_three_plane
[17:35:20] [PASSED] drm_test_format_block_width_tiled
[17:35:20] [PASSED] drm_test_format_block_height_invalid
[17:35:20] [PASSED] drm_test_format_block_height_one_plane
[17:35:20] [PASSED] drm_test_format_block_height_two_plane
[17:35:20] [PASSED] drm_test_format_block_height_three_plane
[17:35:20] [PASSED] drm_test_format_block_height_tiled
[17:35:20] [PASSED] drm_test_format_min_pitch_invalid
[17:35:20] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[17:35:20] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[17:35:20] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[17:35:20] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[17:35:20] [PASSED] drm_test_format_min_pitch_two_plane
[17:35:20] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[17:35:20] [PASSED] drm_test_format_min_pitch_tiled
[17:35:20] =================== [PASSED] drm_format ====================
[17:35:20] ============== drm_framebuffer (10 subtests) ===============
[17:35:20] ========== drm_test_framebuffer_check_src_coords ==========
[17:35:20] [PASSED] Success: source fits into fb
[17:35:20] [PASSED] Fail: overflowing fb with x-axis coordinate
[17:35:20] [PASSED] Fail: overflowing fb with y-axis coordinate
[17:35:20] [PASSED] Fail: overflowing fb with source width
[17:35:20] [PASSED] Fail: overflowing fb with source height
[17:35:20] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[17:35:20] [PASSED] drm_test_framebuffer_cleanup
[17:35:20] =============== drm_test_framebuffer_create ===============
[17:35:20] [PASSED] ABGR8888 normal sizes
[17:35:20] [PASSED] ABGR8888 max sizes
[17:35:20] [PASSED] ABGR8888 pitch greater than min required
[17:35:20] [PASSED] ABGR8888 pitch less than min required
[17:35:20] [PASSED] ABGR8888 Invalid width
[17:35:20] [PASSED] ABGR8888 Invalid buffer handle
[17:35:20] [PASSED] No pixel format
[17:35:20] [PASSED] ABGR8888 Width 0
[17:35:20] [PASSED] ABGR8888 Height 0
[17:35:20] [PASSED] ABGR8888 Out of bound height * pitch combination
[17:35:20] [PASSED] ABGR8888 Large buffer offset
[17:35:20] [PASSED] ABGR8888 Buffer offset for inexistent plane
[17:35:20] [PASSED] ABGR8888 Invalid flag
[17:35:20] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[17:35:20] [PASSED] ABGR8888 Valid buffer modifier
[17:35:20] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[17:35:20] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[17:35:20] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[17:35:20] [PASSED] NV12 Normal sizes
[17:35:20] [PASSED] NV12 Max sizes
[17:35:20] [PASSED] NV12 Invalid pitch
[17:35:20] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[17:35:20] [PASSED] NV12 different modifier per-plane
[17:35:20] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[17:35:20] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[17:35:20] [PASSED] NV12 Modifier for inexistent plane
[17:35:20] [PASSED] NV12 Handle for inexistent plane
[17:35:20] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[17:35:20] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[17:35:20] [PASSED] YVU420 Normal sizes
[17:35:20] [PASSED] YVU420 Max sizes
[17:35:20] [PASSED] YVU420 Invalid pitch
[17:35:20] [PASSED] YVU420 Different pitches
[17:35:20] [PASSED] YVU420 Different buffer offsets/pitches
[17:35:20] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[17:35:20] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[17:35:20] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[17:35:20] [PASSED] YVU420 Valid modifier
[17:35:20] [PASSED] YVU420 Different modifiers per plane
[17:35:20] [PASSED] YVU420 Modifier for inexistent plane
[17:35:20] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[17:35:20] [PASSED] X0L2 Normal sizes
[17:35:20] [PASSED] X0L2 Max sizes
[17:35:20] [PASSED] X0L2 Invalid pitch
[17:35:20] [PASSED] X0L2 Pitch greater than minimum required
[17:35:20] [PASSED] X0L2 Handle for inexistent plane
[17:35:20] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[17:35:20] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[17:35:20] [PASSED] X0L2 Valid modifier
[17:35:20] [PASSED] X0L2 Modifier for inexistent plane
[17:35:20] =========== [PASSED] drm_test_framebuffer_create ===========
[17:35:20] [PASSED] drm_test_framebuffer_free
[17:35:20] [PASSED] drm_test_framebuffer_init
[17:35:20] [PASSED] drm_test_framebuffer_init_bad_format
[17:35:20] [PASSED] drm_test_framebuffer_init_dev_mismatch
[17:35:20] [PASSED] drm_test_framebuffer_lookup
[17:35:20] [PASSED] drm_test_framebuffer_lookup_inexistent
[17:35:20] [PASSED] drm_test_framebuffer_modifiers_not_supported
[17:35:20] ================= [PASSED] drm_framebuffer =================
[17:35:20] ================ drm_gem_shmem (8 subtests) ================
[17:35:20] [PASSED] drm_gem_shmem_test_obj_create
[17:35:20] [PASSED] drm_gem_shmem_test_obj_create_private
[17:35:20] [PASSED] drm_gem_shmem_test_pin_pages
[17:35:20] [PASSED] drm_gem_shmem_test_vmap
[17:35:20] [PASSED] drm_gem_shmem_test_get_pages_sgt
[17:35:20] [PASSED] drm_gem_shmem_test_get_sg_table
[17:35:20] [PASSED] drm_gem_shmem_test_madvise
[17:35:20] [PASSED] drm_gem_shmem_test_purge
[17:35:20] ================== [PASSED] drm_gem_shmem ==================
[17:35:20] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[17:35:20] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[17:35:20] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[17:35:20] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[17:35:20] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[17:35:20] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[17:35:20] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[17:35:20] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[17:35:20] [PASSED] Automatic
[17:35:20] [PASSED] Full
[17:35:20] [PASSED] Limited 16:235
[17:35:20] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[17:35:20] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[17:35:20] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[17:35:20] [PASSED] drm_test_check_disable_connector
[17:35:20] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[17:35:20] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[17:35:20] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[17:35:20] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[17:35:20] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[17:35:20] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[17:35:20] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[17:35:20] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[17:35:20] [PASSED] drm_test_check_output_bpc_dvi
[17:35:20] [PASSED] drm_test_check_output_bpc_format_vic_1
[17:35:20] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[17:35:20] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[17:35:20] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[17:35:20] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[17:35:20] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[17:35:20] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[17:35:20] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[17:35:20] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[17:35:20] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[17:35:20] [PASSED] drm_test_check_broadcast_rgb_value
[17:35:20] [PASSED] drm_test_check_bpc_8_value
[17:35:20] [PASSED] drm_test_check_bpc_10_value
[17:35:20] [PASSED] drm_test_check_bpc_12_value
[17:35:20] [PASSED] drm_test_check_format_value
[17:35:20] [PASSED] drm_test_check_tmds_char_value
[17:35:20] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[17:35:20] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[17:35:20] [PASSED] drm_test_check_mode_valid
[17:35:20] [PASSED] drm_test_check_mode_valid_reject
[17:35:20] [PASSED] drm_test_check_mode_valid_reject_rate
[17:35:20] [PASSED] drm_test_check_mode_valid_reject_max_clock
[17:35:20] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[17:35:20] ================= drm_managed (2 subtests) =================
[17:35:20] [PASSED] drm_test_managed_release_action
[17:35:20] [PASSED] drm_test_managed_run_action
[17:35:20] =================== [PASSED] drm_managed ===================
[17:35:20] =================== drm_mm (6 subtests) ====================
[17:35:20] [PASSED] drm_test_mm_init
[17:35:20] [PASSED] drm_test_mm_debug
[17:35:20] [PASSED] drm_test_mm_align32
[17:35:20] [PASSED] drm_test_mm_align64
[17:35:20] [PASSED] drm_test_mm_lowest
[17:35:20] [PASSED] drm_test_mm_highest
[17:35:20] ===================== [PASSED] drm_mm ======================
[17:35:20] ============= drm_modes_analog_tv (5 subtests) =============
[17:35:20] [PASSED] drm_test_modes_analog_tv_mono_576i
[17:35:20] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[17:35:20] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[17:35:20] [PASSED] drm_test_modes_analog_tv_pal_576i
[17:35:20] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[17:35:20] =============== [PASSED] drm_modes_analog_tv ===============
[17:35:20] ============== drm_plane_helper (2 subtests) ===============
[17:35:20] =============== drm_test_check_plane_state ================
[17:35:20] [PASSED] clipping_simple
[17:35:20] [PASSED] clipping_rotate_reflect
[17:35:20] [PASSED] positioning_simple
[17:35:20] [PASSED] upscaling
[17:35:20] [PASSED] downscaling
[17:35:20] [PASSED] rounding1
[17:35:20] [PASSED] rounding2
[17:35:20] [PASSED] rounding3
[17:35:20] [PASSED] rounding4
[17:35:20] =========== [PASSED] drm_test_check_plane_state ============
[17:35:20] =========== drm_test_check_invalid_plane_state ============
[17:35:20] [PASSED] positioning_invalid
[17:35:20] [PASSED] upscaling_invalid
[17:35:20] [PASSED] downscaling_invalid
[17:35:20] ======= [PASSED] drm_test_check_invalid_plane_state ========
[17:35:20] ================ [PASSED] drm_plane_helper =================
[17:35:20] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[17:35:20] ====== drm_test_connector_helper_tv_get_modes_check =======
[17:35:20] [PASSED] None
[17:35:20] [PASSED] PAL
[17:35:20] [PASSED] NTSC
[17:35:20] [PASSED] Both, NTSC Default
[17:35:20] [PASSED] Both, PAL Default
[17:35:20] [PASSED] Both, NTSC Default, with PAL on command-line
[17:35:20] [PASSED] Both, PAL Default, with NTSC on command-line
[17:35:20] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[17:35:20] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[17:35:20] ================== drm_rect (9 subtests) ===================
[17:35:20] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[17:35:20] [PASSED] drm_test_rect_clip_scaled_not_clipped
[17:35:20] [PASSED] drm_test_rect_clip_scaled_clipped
[17:35:20] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[17:35:20] ================= drm_test_rect_intersect =================
[17:35:20] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[17:35:20] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[17:35:20] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[17:35:20] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[17:35:20] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[17:35:20] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[17:35:20] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[17:35:20] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[17:35:20] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[17:35:20] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[17:35:20] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[17:35:20] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[17:35:20] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[17:35:20] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[17:35:20] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[17:35:20] ============= [PASSED] drm_test_rect_intersect =============
[17:35:20] ================ drm_test_rect_calc_hscale ================
[17:35:20] [PASSED] normal use
[17:35:20] [PASSED] out of max range
[17:35:20] [PASSED] out of min range
[17:35:20] [PASSED] zero dst
[17:35:20] [PASSED] negative src
[17:35:20] [PASSED] negative dst
[17:35:20] ============ [PASSED] drm_test_rect_calc_hscale ============
[17:35:20] ================ drm_test_rect_calc_vscale ================
[17:35:20] [PASSED] normal use
[17:35:20] [PASSED] out of max range
[17:35:20] [PASSED] out of min range
[17:35:20] [PASSED] zero dst
[17:35:20] [PASSED] negative src
[17:35:20] [PASSED] negative dst
[17:35:20] ============ [PASSED] drm_test_rect_calc_vscale ============
[17:35:20] ================== drm_test_rect_rotate ===================
[17:35:20] [PASSED] reflect-x
[17:35:20] [PASSED] reflect-y
[17:35:20] [PASSED] rotate-0
[17:35:20] [PASSED] rotate-90
[17:35:20] [PASSED] rotate-180
[17:35:20] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[17:35:20] ============== [PASSED] drm_test_rect_rotate ===============
[17:35:20] ================ drm_test_rect_rotate_inv =================
[17:35:20] [PASSED] reflect-x
[17:35:20] [PASSED] reflect-y
[17:35:20] [PASSED] rotate-0
[17:35:20] [PASSED] rotate-90
[17:35:20] [PASSED] rotate-180
[17:35:20] [PASSED] rotate-270
[17:35:20] ============ [PASSED] drm_test_rect_rotate_inv =============
[17:35:20] ==================== [PASSED] drm_rect =====================
[17:35:20] ============ drm_sysfb_modeset_test (1 subtest) ============
[17:35:20] ============ drm_test_sysfb_build_fourcc_list =============
[17:35:20] [PASSED] no native formats
[17:35:20] [PASSED] XRGB8888 as native format
[17:35:20] [PASSED] remove duplicates
[17:35:20] [PASSED] convert alpha formats
[17:35:20] [PASSED] random formats
[17:35:20] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[17:35:20] ============= [PASSED] drm_sysfb_modeset_test ==============
[17:35:20] ============================================================
[17:35:20] Testing complete. Ran 616 tests: passed: 616
[17:35:20] Elapsed time: 27.512s total, 1.586s configuring, 25.707s building, 0.188s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[17:35:20] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:35:22] 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
[17:35:29] Starting KUnit Kernel (1/1)...
[17:35:29] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:35:30] ================= ttm_device (5 subtests) ==================
[17:35:30] [PASSED] ttm_device_init_basic
[17:35:30] [PASSED] ttm_device_init_multiple
[17:35:30] [PASSED] ttm_device_fini_basic
[17:35:30] [PASSED] ttm_device_init_no_vma_man
[17:35:30] ================== ttm_device_init_pools ==================
[17:35:30] [PASSED] No DMA allocations, no DMA32 required
[17:35:30] [PASSED] DMA allocations, DMA32 required
[17:35:30] [PASSED] No DMA allocations, DMA32 required
[17:35:30] [PASSED] DMA allocations, no DMA32 required
[17:35:30] ============== [PASSED] ttm_device_init_pools ==============
[17:35:30] =================== [PASSED] ttm_device ====================
[17:35:30] ================== ttm_pool (8 subtests) ===================
[17:35:30] ================== ttm_pool_alloc_basic ===================
[17:35:30] [PASSED] One page
[17:35:30] [PASSED] More than one page
[17:35:30] [PASSED] Above the allocation limit
[17:35:30] [PASSED] One page, with coherent DMA mappings enabled
[17:35:30] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[17:35:30] ============== [PASSED] ttm_pool_alloc_basic ===============
[17:35:30] ============== ttm_pool_alloc_basic_dma_addr ==============
[17:35:30] [PASSED] One page
[17:35:30] [PASSED] More than one page
[17:35:30] [PASSED] Above the allocation limit
[17:35:30] [PASSED] One page, with coherent DMA mappings enabled
[17:35:30] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[17:35:30] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[17:35:30] [PASSED] ttm_pool_alloc_order_caching_match
[17:35:30] [PASSED] ttm_pool_alloc_caching_mismatch
[17:35:30] [PASSED] ttm_pool_alloc_order_mismatch
[17:35:30] [PASSED] ttm_pool_free_dma_alloc
[17:35:30] [PASSED] ttm_pool_free_no_dma_alloc
[17:35:30] [PASSED] ttm_pool_fini_basic
[17:35:30] ==================== [PASSED] ttm_pool =====================
[17:35:30] ================ ttm_resource (8 subtests) =================
[17:35:30] ================= ttm_resource_init_basic =================
[17:35:30] [PASSED] Init resource in TTM_PL_SYSTEM
[17:35:30] [PASSED] Init resource in TTM_PL_VRAM
[17:35:30] [PASSED] Init resource in a private placement
[17:35:30] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[17:35:30] ============= [PASSED] ttm_resource_init_basic =============
[17:35:30] [PASSED] ttm_resource_init_pinned
[17:35:30] [PASSED] ttm_resource_fini_basic
[17:35:30] [PASSED] ttm_resource_manager_init_basic
[17:35:30] [PASSED] ttm_resource_manager_usage_basic
[17:35:30] [PASSED] ttm_resource_manager_set_used_basic
[17:35:30] [PASSED] ttm_sys_man_alloc_basic
[17:35:30] [PASSED] ttm_sys_man_free_basic
[17:35:30] ================== [PASSED] ttm_resource ===================
[17:35:30] =================== ttm_tt (15 subtests) ===================
[17:35:30] ==================== ttm_tt_init_basic ====================
[17:35:30] [PASSED] Page-aligned size
[17:35:30] [PASSED] Extra pages requested
[17:35:30] ================ [PASSED] ttm_tt_init_basic ================
[17:35:30] [PASSED] ttm_tt_init_misaligned
[17:35:30] [PASSED] ttm_tt_fini_basic
[17:35:30] [PASSED] ttm_tt_fini_sg
[17:35:30] [PASSED] ttm_tt_fini_shmem
[17:35:30] [PASSED] ttm_tt_create_basic
[17:35:30] [PASSED] ttm_tt_create_invalid_bo_type
[17:35:30] [PASSED] ttm_tt_create_ttm_exists
[17:35:30] [PASSED] ttm_tt_create_failed
[17:35:30] [PASSED] ttm_tt_destroy_basic
[17:35:30] [PASSED] ttm_tt_populate_null_ttm
[17:35:30] [PASSED] ttm_tt_populate_populated_ttm
[17:35:30] [PASSED] ttm_tt_unpopulate_basic
[17:35:30] [PASSED] ttm_tt_unpopulate_empty_ttm
[17:35:30] [PASSED] ttm_tt_swapin_basic
[17:35:30] ===================== [PASSED] ttm_tt ======================
[17:35:30] =================== ttm_bo (14 subtests) ===================
[17:35:30] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[17:35:30] [PASSED] Cannot be interrupted and sleeps
[17:35:30] [PASSED] Cannot be interrupted, locks straight away
[17:35:30] [PASSED] Can be interrupted, sleeps
[17:35:30] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[17:35:30] [PASSED] ttm_bo_reserve_locked_no_sleep
[17:35:30] [PASSED] ttm_bo_reserve_no_wait_ticket
[17:35:30] [PASSED] ttm_bo_reserve_double_resv
[17:35:30] [PASSED] ttm_bo_reserve_interrupted
[17:35:30] [PASSED] ttm_bo_reserve_deadlock
[17:35:30] [PASSED] ttm_bo_unreserve_basic
[17:35:30] [PASSED] ttm_bo_unreserve_pinned
[17:35:30] [PASSED] ttm_bo_unreserve_bulk
[17:35:30] [PASSED] ttm_bo_put_basic
[17:35:30] [PASSED] ttm_bo_put_shared_resv
[17:35:30] [PASSED] ttm_bo_pin_basic
[17:35:30] [PASSED] ttm_bo_pin_unpin_resource
[17:35:30] [PASSED] ttm_bo_multiple_pin_one_unpin
[17:35:30] ===================== [PASSED] ttm_bo ======================
[17:35:30] ============== ttm_bo_validate (21 subtests) ===============
[17:35:30] ============== ttm_bo_init_reserved_sys_man ===============
[17:35:30] [PASSED] Buffer object for userspace
[17:35:30] [PASSED] Kernel buffer object
[17:35:30] [PASSED] Shared buffer object
[17:35:30] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[17:35:30] ============== ttm_bo_init_reserved_mock_man ==============
[17:35:30] [PASSED] Buffer object for userspace
[17:35:30] [PASSED] Kernel buffer object
[17:35:30] [PASSED] Shared buffer object
[17:35:30] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[17:35:30] [PASSED] ttm_bo_init_reserved_resv
[17:35:30] ================== ttm_bo_validate_basic ==================
[17:35:30] [PASSED] Buffer object for userspace
[17:35:30] [PASSED] Kernel buffer object
[17:35:30] [PASSED] Shared buffer object
[17:35:30] ============== [PASSED] ttm_bo_validate_basic ==============
[17:35:30] [PASSED] ttm_bo_validate_invalid_placement
[17:35:30] ============= ttm_bo_validate_same_placement ==============
[17:35:30] [PASSED] System manager
[17:35:30] [PASSED] VRAM manager
[17:35:30] ========= [PASSED] ttm_bo_validate_same_placement ==========
[17:35:30] [PASSED] ttm_bo_validate_failed_alloc
[17:35:30] [PASSED] ttm_bo_validate_pinned
[17:35:30] [PASSED] ttm_bo_validate_busy_placement
[17:35:30] ================ ttm_bo_validate_multihop =================
[17:35:30] [PASSED] Buffer object for userspace
[17:35:30] [PASSED] Kernel buffer object
[17:35:30] [PASSED] Shared buffer object
[17:35:30] ============ [PASSED] ttm_bo_validate_multihop =============
[17:35:30] ========== ttm_bo_validate_no_placement_signaled ==========
[17:35:30] [PASSED] Buffer object in system domain, no page vector
[17:35:30] [PASSED] Buffer object in system domain with an existing page vector
[17:35:30] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[17:35:30] ======== ttm_bo_validate_no_placement_not_signaled ========
[17:35:30] [PASSED] Buffer object for userspace
[17:35:30] [PASSED] Kernel buffer object
[17:35:30] [PASSED] Shared buffer object
[17:35:30] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[17:35:30] [PASSED] ttm_bo_validate_move_fence_signaled
[17:35:30] ========= ttm_bo_validate_move_fence_not_signaled =========
[17:35:30] [PASSED] Waits for GPU
[17:35:30] [PASSED] Tries to lock straight away
[17:35:30] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[17:35:30] [PASSED] ttm_bo_validate_happy_evict
[17:35:30] [PASSED] ttm_bo_validate_all_pinned_evict
[17:35:30] [PASSED] ttm_bo_validate_allowed_only_evict
[17:35:30] [PASSED] ttm_bo_validate_deleted_evict
[17:35:30] [PASSED] ttm_bo_validate_busy_domain_evict
[17:35:30] [PASSED] ttm_bo_validate_evict_gutting
[17:35:30] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[17:35:30] ================= [PASSED] ttm_bo_validate =================
[17:35:30] ============================================================
[17:35:30] Testing complete. Ran 101 tests: passed: 101
[17:35:30] Elapsed time: 9.508s total, 1.583s configuring, 7.658s building, 0.229s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe: rework PDE PAT index selection
2025-08-01 15:21 [PATCH] drm/xe: rework PDE PAT index selection Matthew Auld
2025-08-01 17:35 ` ✓ CI.KUnit: success for " Patchwork
@ 2025-08-01 18:16 ` Patchwork
2025-08-01 19:31 ` [PATCH] " Summers, Stuart
2025-08-01 20:01 ` ✗ Xe.CI.Full: failure for " Patchwork
3 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-08-01 18:16 UTC (permalink / raw)
To: Matthew Auld; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1456 bytes --]
== Series Details ==
Series: drm/xe: rework PDE PAT index selection
URL : https://patchwork.freedesktop.org/series/152432/
State : success
== Summary ==
CI Bug Log - changes from xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a_BAT -> xe-pw-152432v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 7)
------------------------------
Missing (1): bat-adlp-vm
Known issues
------------
Here are the changes found in xe-pw-152432v1_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@kms_flip@basic-plain-flip@a-edp1:
- bat-adlp-7: [DMESG-WARN][1] ([Intel XE#4543]) -> [PASS][2] +1 other test pass
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/bat-adlp-7/igt@kms_flip@basic-plain-flip@a-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/bat-adlp-7/igt@kms_flip@basic-plain-flip@a-edp1.html
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
Build changes
-------------
* Linux: xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a -> xe-pw-152432v1
IGT_8482: 8482
xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a: acb5c859a41719652f1807b30240ca4ee82a473a
xe-pw-152432v1: 152432v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/index.html
[-- Attachment #2: Type: text/html, Size: 2021 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] drm/xe: rework PDE PAT index selection
2025-08-01 15:21 [PATCH] drm/xe: rework PDE PAT index selection Matthew Auld
2025-08-01 17:35 ` ✓ CI.KUnit: success for " Patchwork
2025-08-01 18:16 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-08-01 19:31 ` Summers, Stuart
2025-08-04 14:48 ` Matthew Auld
2025-08-01 20:01 ` ✗ Xe.CI.Full: failure for " Patchwork
3 siblings, 1 reply; 7+ messages in thread
From: Summers, Stuart @ 2025-08-01 19:31 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org, Auld, Matthew; +Cc: Brost, Matthew
On Fri, 2025-08-01 at 16:21 +0100, Matthew Auld wrote:
> For non-leaf paging structures we end up selecting a random index
> between [0, 3], depending on the first user if the page-table is
> shared,
> since non-leaf structures only have two bits in the HW for encoding
> the
> PAT index, and here we are just passing along the full user provided
> index, which can be an index as large as ~31 on xe2+. The user
> provided
> index is meant for the leaf node, which maps the actual BO pages
> where
> we have more PAT bits, and not the non-leaf nodes which are only
> mapping
> other paging structures, and so only needs a minimal PAT index range.
> Also the chosen index might need to consider how the driver mapped
> the
> paging structures on the host side, like wc vs wb, which is separate
> from the user provided index.
>
> With that move the PDE PAT index selection under driver control. For
> now
> just use a coherent index on platforms with page-tables that are
> cached
> on host side, and incoherent otherwise. Using a coherent index could
> potentially be expensive, and would be overkill if we know the page-
> table
> is always uncached on host side.
>
> BSpec: 59510
> Signed-off-by: Matthew Auld <matthew.auld@intel.com>
> Cc: Stuart Summers <stuart.summers@intel.com>
> Cc: Matthew Brost <matthew.brost@intel.com>
Hey Matt,
Do we have any known failures related here? Or what is the motivation
for this change generally?
I see on the LRC side we always set to WB, even on discrete. Why not
use that here too rather than force UC?
The patch is doing what you're saying, I'm just not sure why we need
this change now when to my knowledge things have been working for the
user-defined PAT cases.
Thanks,
Stuart
> ---
> drivers/gpu/drm/xe/xe_migrate.c | 10 ++++------
> drivers/gpu/drm/xe/xe_pt.c | 4 ++--
> drivers/gpu/drm/xe/xe_pt_types.h | 3 +--
> drivers/gpu/drm/xe/xe_vm.c | 15 +++++++++++----
> 4 files changed, 18 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_migrate.c
> b/drivers/gpu/drm/xe/xe_migrate.c
> index 3a276e2348a2..43599d4419a7 100644
> --- a/drivers/gpu/drm/xe/xe_migrate.c
> +++ b/drivers/gpu/drm/xe/xe_migrate.c
> @@ -151,8 +151,7 @@ static void xe_migrate_program_identity(struct
> xe_device *xe, struct xe_vm *vm,
> for (pos = dpa_base; pos < vram_limit;
> pos += SZ_1G, ofs += 8) {
> if (pos + SZ_1G >= vram_limit) {
> - entry = vm->pt_ops->pde_encode_bo(bo,
> pt_2m_ofs,
> - pat_index);
> + entry = vm->pt_ops->pde_encode_bo(bo,
> pt_2m_ofs);
> xe_map_wr(xe, &bo->vmap, ofs, u64, entry);
>
> flags = vm->pt_ops->pte_encode_addr(xe, 0,
> @@ -206,7 +205,7 @@ static int xe_migrate_prepare_vm(struct xe_tile
> *tile, struct xe_migrate *m,
>
> /* PT30 & PT31 reserved for 2M identity map */
> pt29_ofs = xe_bo_size(bo) - 3 * XE_PAGE_SIZE;
> - entry = vm->pt_ops->pde_encode_bo(bo, pt29_ofs, pat_index);
> + entry = vm->pt_ops->pde_encode_bo(bo, pt29_ofs);
> xe_pt_write(xe, &vm->pt_root[id]->bo->vmap, 0, entry);
>
> map_ofs = (num_entries - num_setup) * XE_PAGE_SIZE;
> @@ -274,15 +273,14 @@ static int xe_migrate_prepare_vm(struct xe_tile
> *tile, struct xe_migrate *m,
> flags = XE_PDE_64K;
>
> entry = vm->pt_ops->pde_encode_bo(bo, map_ofs +
> (u64)(level - 1) *
> - XE_PAGE_SIZE,
> pat_index);
> + XE_PAGE_SIZE);
> xe_map_wr(xe, &bo->vmap, map_ofs + XE_PAGE_SIZE *
> level, u64,
> entry | flags);
> }
>
> /* Write PDE's that point to our BO. */
> for (i = 0; i < map_ofs / PAGE_SIZE; i++) {
> - entry = vm->pt_ops->pde_encode_bo(bo, (u64)i *
> XE_PAGE_SIZE,
> - pat_index);
> + entry = vm->pt_ops->pde_encode_bo(bo, (u64)i *
> XE_PAGE_SIZE);
>
> xe_map_wr(xe, &bo->vmap, map_ofs + XE_PAGE_SIZE +
> (i + 1) * 8, u64, entry);
> diff --git a/drivers/gpu/drm/xe/xe_pt.c b/drivers/gpu/drm/xe/xe_pt.c
> index 330cc0f54a3f..f3a39e734a90 100644
> --- a/drivers/gpu/drm/xe/xe_pt.c
> +++ b/drivers/gpu/drm/xe/xe_pt.c
> @@ -69,7 +69,7 @@ static u64 __xe_pt_empty_pte(struct xe_tile *tile,
> struct xe_vm *vm,
>
> if (level > MAX_HUGEPTE_LEVEL)
> return vm->pt_ops->pde_encode_bo(vm-
> >scratch_pt[id][level - 1]->bo,
> - 0, pat_index);
> + 0);
>
> return vm->pt_ops->pte_encode_addr(xe, 0, pat_index, level,
> IS_DGFX(xe), 0) |
> XE_PTE_NULL;
> @@ -616,7 +616,7 @@ xe_pt_stage_bind_entry(struct xe_ptw *parent,
> pgoff_t offset,
> xe_child->is_compact = true;
> }
>
> - pte = vm->pt_ops->pde_encode_bo(xe_child->bo, 0,
> pat_index) | flags;
> + pte = vm->pt_ops->pde_encode_bo(xe_child->bo, 0) |
> flags;
> ret = xe_pt_insert_entry(xe_walk, xe_parent, offset,
> xe_child,
> pte);
> }
> diff --git a/drivers/gpu/drm/xe/xe_pt_types.h
> b/drivers/gpu/drm/xe/xe_pt_types.h
> index 69eab6f37cfe..17cdd7c7e9f5 100644
> --- a/drivers/gpu/drm/xe/xe_pt_types.h
> +++ b/drivers/gpu/drm/xe/xe_pt_types.h
> @@ -45,8 +45,7 @@ struct xe_pt_ops {
> u64 (*pte_encode_addr)(struct xe_device *xe, u64 addr,
> u16 pat_index,
> u32 pt_level, bool devmem, u64 flags);
> - u64 (*pde_encode_bo)(struct xe_bo *bo, u64 bo_offset,
> - u16 pat_index);
> + u64 (*pde_encode_bo)(struct xe_bo *bo, u64 bo_offset);
> };
>
> struct xe_pt_entry {
> diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
> index 432ea325677d..42e3b1b8be5b 100644
> --- a/drivers/gpu/drm/xe/xe_vm.c
> +++ b/drivers/gpu/drm/xe/xe_vm.c
> @@ -1512,13 +1512,21 @@ static u64 pte_encode_ps(u32 pt_level)
> return 0;
> }
>
> -static u64 xelp_pde_encode_bo(struct xe_bo *bo, u64 bo_offset,
> - const u16 pat_index)
> +static u64 xelp_pde_encode_bo(struct xe_bo *bo, u64 bo_offset)
> {
> + struct xe_device *xe = xe_bo_device(bo);
> + u16 pat_index;
> u64 pde;
>
> pde = xe_bo_addr(bo, bo_offset, XE_PAGE_SIZE);
> pde |= XE_PAGE_PRESENT | XE_PAGE_RW;
> +
> + if (!xe_bo_is_vram(bo) && bo->ttm.ttm->caching == ttm_cached)
> + pat_index = xe->pat.idx[XE_CACHE_WB];
> + else
> + pat_index = xe->pat.idx[XE_CACHE_NONE];
> +
> + xe_assert(xe, pat_index <= 3);
> pde |= pde_encode_pat_index(pat_index);
>
> return pde;
> @@ -2024,8 +2032,7 @@ struct xe_vm *xe_vm_lookup(struct xe_file *xef,
> u32 id)
>
> u64 xe_vm_pdp4_descriptor(struct xe_vm *vm, struct xe_tile *tile)
> {
> - return vm->pt_ops->pde_encode_bo(vm->pt_root[tile->id]->bo,
> 0,
> - tile_to_xe(tile)-
> >pat.idx[XE_CACHE_WB]);
> + return vm->pt_ops->pde_encode_bo(vm->pt_root[tile->id]->bo,
> 0);
> }
>
> static struct xe_exec_queue *
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Xe.CI.Full: failure for drm/xe: rework PDE PAT index selection
2025-08-01 15:21 [PATCH] drm/xe: rework PDE PAT index selection Matthew Auld
` (2 preceding siblings ...)
2025-08-01 19:31 ` [PATCH] " Summers, Stuart
@ 2025-08-01 20:01 ` Patchwork
3 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-08-01 20:01 UTC (permalink / raw)
To: Matthew Auld; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 74631 bytes --]
== Series Details ==
Series: drm/xe: rework PDE PAT index selection
URL : https://patchwork.freedesktop.org/series/152432/
State : failure
== Summary ==
CI Bug Log - changes from xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a_FULL -> xe-pw-152432v1_FULL
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with xe-pw-152432v1_FULL need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-152432v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-152432v1_FULL:
### IGT changes ###
#### Warnings ####
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [SKIP][1] ([Intel XE#4950]) -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
Known issues
------------
Here are the changes found in xe-pw-152432v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotunplug-rescan:
- shard-adlp: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#2953] / [Intel XE#4173]) +1 other test dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-adlp-6/igt@core_hotunplug@hotunplug-rescan.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-adlp-2/igt@core_hotunplug@hotunplug-rescan.html
* igt@core_hotunplug@unplug-rescan:
- shard-bmg: [PASS][5] -> [SKIP][6] ([Intel XE#4963])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@core_hotunplug@unplug-rescan.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@core_hotunplug@unplug-rescan.html
* igt@fbdev@eof:
- shard-bmg: [PASS][7] -> [SKIP][8] ([Intel XE#2134]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@fbdev@eof.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@fbdev@eof.html
* igt@kms_big_fb@linear-8bpp-rotate-180:
- shard-bmg: [PASS][9] -> [SKIP][10] ([Intel XE#4947]) +20 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_big_fb@linear-8bpp-rotate-180.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_big_fb@linear-8bpp-rotate-180.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#787]) +153 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-dg2-464/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#455] / [Intel XE#787]) +21 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-2.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs:
- shard-adlp: NOTRUN -> [SKIP][13] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-adlp-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][14] ([Intel XE#787]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-adlp-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [PASS][15] -> [INCOMPLETE][16] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [PASS][17] -> [INCOMPLETE][18] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][19] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][20] ([Intel XE#3124])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][21] ([Intel XE#1727] / [Intel XE#3113])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#4416]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-dg2-464/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-adlp: NOTRUN -> [SKIP][23] ([Intel XE#373])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-adlp-4/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_content_protection@atomic@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][24] ([Intel XE#1178]) +1 other test fail
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-2/igt@kms_content_protection@atomic@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [FAIL][25] ([Intel XE#1178])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-dg2-432/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][26] ([Intel XE#1188])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-dg2-464/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-bmg: [PASS][27] -> [SKIP][28] ([Intel XE#2291])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#4494])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-dg2-432/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-dg2-set2: [PASS][30] -> [FAIL][31] ([Intel XE#3098])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-dg2-432/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-dg2-464/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop@ab-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][32] ([Intel XE#3098])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-dg2-464/igt@kms_flip@2x-flip-vs-dpms-on-nop@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#2316])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-2/igt@kms_flip@2x-flip-vs-modeset.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@flip-vs-blocking-wf-vblank:
- shard-adlp: [PASS][35] -> [DMESG-WARN][36] ([Intel XE#4543]) +3 other tests dmesg-warn
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-adlp-6/igt@kms_flip@flip-vs-blocking-wf-vblank.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-adlp-2/igt@kms_flip@flip-vs-blocking-wf-vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [PASS][37] -> [FAIL][38] ([Intel XE#301]) +3 other tests fail
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2-set2: [PASS][39] -> [INCOMPLETE][40] ([Intel XE#2049] / [Intel XE#2597])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-dg2-435/igt@kms_flip@flip-vs-suspend.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-dg2-432/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [PASS][41] -> [INCOMPLETE][42] ([Intel XE#2049] / [Intel XE#2597]) +3 other tests incomplete
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend@d-dp2:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][43] ([Intel XE#2049] / [Intel XE#2597])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-dg2-432/igt@kms_flip@flip-vs-suspend@d-dp2.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2293]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
- shard-adlp: NOTRUN -> [SKIP][45] ([Intel XE#651])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-adlp-4/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg2-set2: [PASS][46] -> [SKIP][47] ([Intel XE#4208])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][48] -> [SKIP][49] ([Intel XE#1503])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-3/igt@kms_hdr@invalid-hdr.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_lease@possible-crtcs-filtering:
- shard-bmg: [PASS][50] -> [SKIP][51] ([Intel XE#4950]) +81 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@kms_lease@possible-crtcs-filtering.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_lease@possible-crtcs-filtering.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2763]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_rpm@basic-rte:
- shard-bmg: [PASS][53] -> [SKIP][54] ([Intel XE#4962])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@kms_pm_rpm@basic-rte.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_pm_rpm@basic-rte.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-dg2-set2: [PASS][55] -> [SKIP][56] ([Intel XE#1392]) +4 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-dg2-463/igt@xe_exec_basic@multigpu-once-null-rebind.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_reset@cm-close-fd:
- shard-adlp: [PASS][57] -> [DMESG-WARN][58] ([Intel XE#3868])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-adlp-9/igt@xe_exec_reset@cm-close-fd.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-adlp-3/igt@xe_exec_reset@cm-close-fd.html
* igt@xe_exec_system_allocator@process-many-large-mmap-nomemset:
- shard-bmg: [PASS][59] -> [SKIP][60] ([Intel XE#4945]) +410 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@xe_exec_system_allocator@process-many-large-mmap-nomemset.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@xe_exec_system_allocator@process-many-large-mmap-nomemset.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-fork-read:
- shard-adlp: NOTRUN -> [SKIP][61] ([Intel XE#4915] / [Intel XE#5560])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-adlp-4/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-fork-read.html
#### Possible fixes ####
* igt@core_hotunplug@hotunbind-rebind:
- shard-bmg: [SKIP][62] ([Intel XE#4963]) -> [PASS][63] +1 other test pass
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@core_hotunplug@hotunbind-rebind.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-2/igt@core_hotunplug@hotunbind-rebind.html
* igt@fbdev@info:
- shard-bmg: [SKIP][64] ([Intel XE#2134]) -> [PASS][65]
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@fbdev@info.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-8/igt@fbdev@info.html
* igt@intel_hwmon@hwmon-read:
- shard-bmg: [SKIP][66] ([Intel XE#5177]) -> [PASS][67]
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@intel_hwmon@hwmon-read.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-2/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@bad-pitch-999:
- shard-bmg: [SKIP][68] ([Intel XE#4950]) -> [PASS][69] +52 other tests pass
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_addfb_basic@bad-pitch-999.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-8/igt@kms_addfb_basic@bad-pitch-999.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0:
- shard-bmg: [SKIP][70] ([Intel XE#4947]) -> [PASS][71] +9 other tests pass
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-lnl: [FAIL][72] ([Intel XE#1231]) -> [PASS][73]
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-lnl-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-lnl-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-bmg: [SKIP][74] ([Intel XE#2316]) -> [PASS][75]
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-7/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-adlp: [DMESG-WARN][76] ([Intel XE#4543]) -> [PASS][77] +1 other test pass
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-adlp-9/igt@kms_flip@basic-flip-vs-wf_vblank.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-adlp-9/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-bmg: [SKIP][78] ([Intel XE#4962]) -> [PASS][79] +1 other test pass
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_pm_rpm@basic-pci-d3-state.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-8/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue:
- shard-dg2-set2: [SKIP][80] ([Intel XE#1392]) -> [PASS][81] +8 other tests pass
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-dg2-464/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-adlp: [DMESG-WARN][82] ([Intel XE#3876]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-adlp-6/igt@xe_exec_reset@parallel-gt-reset.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-adlp-8/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_system_allocator@process-many-new-nomemset:
- shard-bmg: [SKIP][84] ([Intel XE#4945]) -> [PASS][85] +267 other tests pass
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@xe_exec_system_allocator@process-many-new-nomemset.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-2/igt@xe_exec_system_allocator@process-many-new-nomemset.html
* igt@xe_live_ktest@xe_bo:
- shard-bmg: [SKIP][86] ([Intel XE#2229]) -> [PASS][87] +1 other test pass
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@xe_live_ktest@xe_bo.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-4/igt@xe_live_ktest@xe_bo.html
#### Warnings ####
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-bmg: [SKIP][88] ([Intel XE#3768]) -> [SKIP][89] ([Intel XE#4950])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_async_flips@invalid-async-flip-atomic.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-bmg: [SKIP][90] ([Intel XE#4947]) -> [SKIP][91] ([Intel XE#2327]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_big_fb@linear-64bpp-rotate-90.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-8/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-bmg: [SKIP][92] ([Intel XE#2327]) -> [SKIP][93] ([Intel XE#4947]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: [SKIP][94] ([Intel XE#2328]) -> [SKIP][95] ([Intel XE#4947])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: [SKIP][96] ([Intel XE#610]) -> [SKIP][97] ([Intel XE#4947])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-bmg: [SKIP][98] ([Intel XE#4947]) -> [SKIP][99] ([Intel XE#1124]) +10 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-bmg: [SKIP][100] ([Intel XE#1124]) -> [SKIP][101] ([Intel XE#4947]) +8 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [SKIP][102] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][103] ([Intel XE#4950])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-bmg: [SKIP][104] ([Intel XE#4950]) -> [SKIP][105] ([Intel XE#2314] / [Intel XE#2894])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-2/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: [SKIP][106] ([Intel XE#367]) -> [SKIP][107] ([Intel XE#4950]) +3 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-bmg: [SKIP][108] ([Intel XE#4950]) -> [SKIP][109] ([Intel XE#367])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-8/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: [SKIP][110] ([Intel XE#4947]) -> [SKIP][111] ([Intel XE#2887]) +5 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-2/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-bmg: [SKIP][112] ([Intel XE#2887]) -> [SKIP][113] ([Intel XE#4947]) +13 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-bmg: [SKIP][114] ([Intel XE#3432]) -> [SKIP][115] ([Intel XE#4947])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: [SKIP][116] ([Intel XE#4947]) -> [SKIP][117] ([Intel XE#3432]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: [SKIP][118] ([Intel XE#2724]) -> [SKIP][119] ([Intel XE#4947])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@kms_cdclk@mode-transition-all-outputs.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: [SKIP][120] ([Intel XE#4950]) -> [SKIP][121] ([Intel XE#2325]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_chamelium_color@ctm-0-25.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-8/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-max:
- shard-bmg: [SKIP][122] ([Intel XE#2325]) -> [SKIP][123] ([Intel XE#4950])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_chamelium_color@ctm-max.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-bmg: [SKIP][124] ([Intel XE#4950]) -> [SKIP][125] ([Intel XE#2252]) +5 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_chamelium_frames@dp-crc-single.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-2/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-bmg: [SKIP][126] ([Intel XE#2252]) -> [SKIP][127] ([Intel XE#4950]) +7 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_content_protection@atomic:
- shard-bmg: [SKIP][128] ([Intel XE#4950]) -> [FAIL][129] ([Intel XE#1178]) +1 other test fail
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_content_protection@atomic.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-2/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: [SKIP][130] ([Intel XE#2341]) -> [SKIP][131] ([Intel XE#4950])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_content_protection@content-type-change.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@type1:
- shard-bmg: [SKIP][132] ([Intel XE#4950]) -> [SKIP][133] ([Intel XE#2341])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_content_protection@type1.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-8/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-bmg: [SKIP][134] ([Intel XE#2321]) -> [SKIP][135] ([Intel XE#4950])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: [SKIP][136] ([Intel XE#2320]) -> [SKIP][137] ([Intel XE#4950]) +5 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@kms_cursor_crc@cursor-random-32x32.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: [SKIP][138] ([Intel XE#4950]) -> [SKIP][139] ([Intel XE#2321]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-bmg: [SKIP][140] ([Intel XE#4950]) -> [SKIP][141] ([Intel XE#2320]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-64x21.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-bmg: [SKIP][142] ([Intel XE#2291]) -> [SKIP][143] ([Intel XE#4950]) +5 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [SKIP][144] ([Intel XE#4950]) -> [FAIL][145] ([Intel XE#4633])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: [SKIP][146] ([Intel XE#5428]) -> [SKIP][147] ([Intel XE#4947])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-bmg: [SKIP][148] ([Intel XE#4947]) -> [SKIP][149] ([Intel XE#4354])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_dp_link_training@uhbr-sst.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-8/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: [SKIP][150] ([Intel XE#2244]) -> [SKIP][151] ([Intel XE#4947]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_dsc@dsc-fractional-bpp.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: [SKIP][152] ([Intel XE#4947]) -> [SKIP][153] ([Intel XE#2244])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-4/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: [SKIP][154] ([Intel XE#4945]) -> [SKIP][155] ([Intel XE#4422])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: [SKIP][156] ([Intel XE#776]) -> [SKIP][157] ([Intel XE#4947])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@kms_fbcon_fbt@psr.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-3x:
- shard-bmg: [SKIP][158] ([Intel XE#2373]) -> [SKIP][159] ([Intel XE#4950])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_feature_discovery@display-3x.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: [SKIP][160] ([Intel XE#4950]) -> [SKIP][161] ([Intel XE#1138])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_feature_discovery@display-4x.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-4/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][162] ([Intel XE#2316]) -> [SKIP][163] ([Intel XE#4950]) +2 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-bmg: [SKIP][164] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][165] ([Intel XE#4947]) +5 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-bmg: [SKIP][166] ([Intel XE#4947]) -> [SKIP][167] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][168] ([Intel XE#4947]) -> [SKIP][169] ([Intel XE#2311]) +15 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][170] ([Intel XE#2312]) -> [SKIP][171] ([Intel XE#4947]) +16 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][172] ([Intel XE#2311]) -> [SKIP][173] ([Intel XE#2312]) +4 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][174] ([Intel XE#2312]) -> [SKIP][175] ([Intel XE#2311]) +3 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt:
- shard-bmg: [SKIP][176] ([Intel XE#2311]) -> [SKIP][177] ([Intel XE#4947]) +21 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][178] ([Intel XE#5390]) -> [SKIP][179] ([Intel XE#4947]) +9 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][180] ([Intel XE#5390]) -> [SKIP][181] ([Intel XE#2312])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][182] ([Intel XE#4947]) -> [SKIP][183] ([Intel XE#5390]) +8 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-bmg: [SKIP][184] ([Intel XE#4947]) -> [SKIP][185] ([Intel XE#5427])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][186] ([Intel XE#2312]) -> [SKIP][187] ([Intel XE#5390]) +3 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-bmg: [SKIP][188] ([Intel XE#2352]) -> [SKIP][189] ([Intel XE#4947])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][190] ([Intel XE#2312]) -> [SKIP][191] ([Intel XE#2313]) +2 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-bmg: [SKIP][192] ([Intel XE#4947]) -> [SKIP][193] ([Intel XE#5672])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][194] ([Intel XE#4947]) -> [SKIP][195] ([Intel XE#2313]) +18 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][196] ([Intel XE#2313]) -> [SKIP][197] ([Intel XE#4947]) +18 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][198] ([Intel XE#2313]) -> [SKIP][199] ([Intel XE#2312]) +4 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][200] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][201] ([Intel XE#4950])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: [SKIP][202] ([Intel XE#2934]) -> [SKIP][203] ([Intel XE#4947])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_joiner@basic-force-ultra-joiner.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: [SKIP][204] ([Intel XE#4947]) -> [SKIP][205] ([Intel XE#2934])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: [SKIP][206] ([Intel XE#4950]) -> [SKIP][207] ([Intel XE#2501])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: [SKIP][208] ([Intel XE#4950]) -> [SKIP][209] ([Intel XE#2393])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_plane_lowres@tiling-y.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-4/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: [SKIP][210] ([Intel XE#5021]) -> [SKIP][211] ([Intel XE#4950])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-y.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-bmg: [SKIP][212] ([Intel XE#4950]) -> [SKIP][213] ([Intel XE#2763])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: [SKIP][214] ([Intel XE#2763]) -> [SKIP][215] ([Intel XE#4950])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-bmg: [SKIP][216] ([Intel XE#870]) -> [SKIP][217] ([Intel XE#4947])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_pm_backlight@fade-with-suspend.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: [SKIP][218] ([Intel XE#2505]) -> [SKIP][219] ([Intel XE#4947])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@kms_pm_dc@deep-pkgc.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: [SKIP][220] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][221] ([Intel XE#4962])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_pm_rpm@modeset-lpsp.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-bmg: [SKIP][222] ([Intel XE#4947]) -> [SKIP][223] ([Intel XE#1489]) +4 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: [SKIP][224] ([Intel XE#1489]) -> [SKIP][225] ([Intel XE#4947]) +7 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-bmg: [SKIP][226] ([Intel XE#4947]) -> [SKIP][227] ([Intel XE#2387])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_psr2_su@page_flip-nv12.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-8/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-bmg: [SKIP][228] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][229] ([Intel XE#4947]) +14 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@kms_psr@fbc-psr2-sprite-render.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr2-sprite-blt:
- shard-bmg: [SKIP][230] ([Intel XE#4947]) -> [SKIP][231] ([Intel XE#2234] / [Intel XE#2850]) +8 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_psr@psr2-sprite-blt.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-8/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-bmg: [SKIP][232] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][233] ([Intel XE#4950]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_rotation_crc@primary-rotation-270.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-bmg: [SKIP][234] ([Intel XE#4950]) -> [SKIP][235] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [SKIP][236] ([Intel XE#1435]) -> [SKIP][237] ([Intel XE#4950])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][238] ([Intel XE#4950]) -> [SKIP][239] ([Intel XE#2426])
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][240] ([Intel XE#362]) -> [SKIP][241] ([Intel XE#1500])
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-bmg: [SKIP][242] ([Intel XE#4950]) -> [SKIP][243] ([Intel XE#1499])
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_vrr@seamless-rr-switch-virtual.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-8/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-bmg: [SKIP][244] ([Intel XE#1499]) -> [SKIP][245] ([Intel XE#4950]) +2 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@kms_vrr@seamless-rr-switch-vrr.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-bmg: [SKIP][246] ([Intel XE#4950]) -> [SKIP][247] ([Intel XE#1091] / [Intel XE#2849])
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: [SKIP][248] ([Intel XE#4945]) -> [SKIP][249] ([Intel XE#4837]) +11 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-8/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug_online@set-breakpoint-sigint-debugger:
- shard-bmg: [SKIP][250] ([Intel XE#4837]) -> [SKIP][251] ([Intel XE#4945]) +11 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-bmg: [SKIP][252] ([Intel XE#4518]) -> [SKIP][253] ([Intel XE#4945])
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@xe_eudebug_sriov@deny-sriov.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
- shard-bmg: [SKIP][254] ([Intel XE#2322]) -> [SKIP][255] ([Intel XE#4945]) +7 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind:
- shard-bmg: [SKIP][256] ([Intel XE#4945]) -> [SKIP][257] ([Intel XE#2322]) +4 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-8/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html
* igt@xe_exec_system_allocator@once-mmap-huge-nomemset:
- shard-bmg: [SKIP][258] ([Intel XE#4945]) -> [SKIP][259] ([Intel XE#4943]) +18 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@xe_exec_system_allocator@once-mmap-huge-nomemset.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-8/igt@xe_exec_system_allocator@once-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset:
- shard-bmg: [SKIP][260] ([Intel XE#4943]) -> [SKIP][261] ([Intel XE#4945]) +22 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-bmg: [SKIP][262] ([Intel XE#4945]) -> [ABORT][263] ([Intel XE#4917] / [Intel XE#5466] / [Intel XE#5530])
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_media_fill@media-fill:
- shard-bmg: [SKIP][264] ([Intel XE#4945]) -> [SKIP][265] ([Intel XE#2459] / [Intel XE#2596])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@xe_media_fill@media-fill.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-2/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@small-bar:
- shard-bmg: [SKIP][266] ([Intel XE#586]) -> [SKIP][267] ([Intel XE#4945])
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@xe_mmap@small-bar.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@xe_mmap@small-bar.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: [SKIP][268] ([Intel XE#4945]) -> [SKIP][269] ([Intel XE#2245])
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@xe_pat@pat-index-xelp.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-4/igt@xe_pat@pat-index-xelp.html
* igt@xe_pm@d3cold-basic:
- shard-bmg: [SKIP][270] ([Intel XE#4945]) -> [SKIP][271] ([Intel XE#2284])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@xe_pm@d3cold-basic.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-2/igt@xe_pm@d3cold-basic.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-bmg: [SKIP][272] ([Intel XE#4945]) -> [SKIP][273] ([Intel XE#4650])
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-8/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
* igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
- shard-bmg: [SKIP][274] ([Intel XE#4945]) -> [SKIP][275] ([Intel XE#4733]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-8/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
* igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
- shard-bmg: [SKIP][276] ([Intel XE#4733]) -> [SKIP][277] ([Intel XE#4945]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html
* igt@xe_query@multigpu-query-hwconfig:
- shard-bmg: [SKIP][278] ([Intel XE#944]) -> [SKIP][279] ([Intel XE#4945]) +2 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@xe_query@multigpu-query-hwconfig.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@xe_query@multigpu-query-hwconfig.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: [SKIP][280] ([Intel XE#4945]) -> [SKIP][281] ([Intel XE#944]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@xe_query@multigpu-query-invalid-extension.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-2/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
- shard-bmg: [SKIP][282] ([Intel XE#4945]) -> [SKIP][283] ([Intel XE#4130])
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-2/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: [SKIP][284] ([Intel XE#4273]) -> [SKIP][285] ([Intel XE#4945])
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@xe_sriov_flr@flr-twice.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@xe_sriov_flr@flr-twice.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-bmg: [SKIP][286] ([Intel XE#4351]) -> [SKIP][287] ([Intel XE#4945])
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/shard-bmg-5/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[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#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[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#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[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#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768
[Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494
[Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[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#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#4945]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4945
[Intel XE#4947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4947
[Intel XE#4950]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4950
[Intel XE#4962]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4962
[Intel XE#4963]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4963
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5177]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5177
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5427
[Intel XE#5428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5428
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
[Intel XE#5560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5560
[Intel XE#5672]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5672
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a -> xe-pw-152432v1
IGT_8482: 8482
xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a: acb5c859a41719652f1807b30240ca4ee82a473a
xe-pw-152432v1: 152432v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152432v1/index.html
[-- Attachment #2: Type: text/html, Size: 90171 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] drm/xe: rework PDE PAT index selection
2025-08-01 19:31 ` [PATCH] " Summers, Stuart
@ 2025-08-04 14:48 ` Matthew Auld
2025-08-04 15:39 ` Summers, Stuart
0 siblings, 1 reply; 7+ messages in thread
From: Matthew Auld @ 2025-08-04 14:48 UTC (permalink / raw)
To: Summers, Stuart, intel-xe@lists.freedesktop.org; +Cc: Brost, Matthew
Hi,
On 01/08/2025 20:31, Summers, Stuart wrote:
> On Fri, 2025-08-01 at 16:21 +0100, Matthew Auld wrote:
>> For non-leaf paging structures we end up selecting a random index
>> between [0, 3], depending on the first user if the page-table is
>> shared,
>> since non-leaf structures only have two bits in the HW for encoding
>> the
>> PAT index, and here we are just passing along the full user provided
>> index, which can be an index as large as ~31 on xe2+. The user
>> provided
>> index is meant for the leaf node, which maps the actual BO pages
>> where
>> we have more PAT bits, and not the non-leaf nodes which are only
>> mapping
>> other paging structures, and so only needs a minimal PAT index range.
>> Also the chosen index might need to consider how the driver mapped
>> the
>> paging structures on the host side, like wc vs wb, which is separate
>> from the user provided index.
>>
>> With that move the PDE PAT index selection under driver control. For
>> now
>> just use a coherent index on platforms with page-tables that are
>> cached
>> on host side, and incoherent otherwise. Using a coherent index could
>> potentially be expensive, and would be overkill if we know the page-
>> table
>> is always uncached on host side.
>>
>> BSpec: 59510
>> Signed-off-by: Matthew Auld <matthew.auld@intel.com>
>> Cc: Stuart Summers <stuart.summers@intel.com>
>> Cc: Matthew Brost <matthew.brost@intel.com>
>
> Hey Matt,
>
> Do we have any known failures related here? Or what is the motivation
> for this change generally?
There shouldn't be any failures, I hope. My thinking is that while
nothing bad happens today, that might change on future HW, depending on
what that exact index does, which is very platform specific. Having a
well defined value here under driver control seems sensible to me. Also
as per the commit message the coherency of the PAT index should really
be tied to the allocation type of the page table (or at least we pick
something which is always safe), which is also under driver control and
is an internal detail, and IMO should not be chosen randomly depending
on the first two bits of the user provided PAT index.
>
> I see on the LRC side we always set to WB, even on discrete. Why not
> use that here too rather than force UC?
That is one option, but AFAICT main difference there is that lrc is
allocated as cached on host side, if igpu, so at least 1way coherency is
needed, which WB happens to give. But enabling 1way/2way coherency is
also usually not free. On dgpu the host coherency of the PAT index
doesn't do anything, but also the lrc is allocated in VRAM.
>
> The patch is doing what you're saying, I'm just not sure why we need
> this change now when to my knowledge things have been working for the
> user-defined PAT cases.
>
> Thanks,
> Stuart
>
>> ---
>> drivers/gpu/drm/xe/xe_migrate.c | 10 ++++------
>> drivers/gpu/drm/xe/xe_pt.c | 4 ++--
>> drivers/gpu/drm/xe/xe_pt_types.h | 3 +--
>> drivers/gpu/drm/xe/xe_vm.c | 15 +++++++++++----
>> 4 files changed, 18 insertions(+), 14 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_migrate.c
>> b/drivers/gpu/drm/xe/xe_migrate.c
>> index 3a276e2348a2..43599d4419a7 100644
>> --- a/drivers/gpu/drm/xe/xe_migrate.c
>> +++ b/drivers/gpu/drm/xe/xe_migrate.c
>> @@ -151,8 +151,7 @@ static void xe_migrate_program_identity(struct
>> xe_device *xe, struct xe_vm *vm,
>> for (pos = dpa_base; pos < vram_limit;
>> pos += SZ_1G, ofs += 8) {
>> if (pos + SZ_1G >= vram_limit) {
>> - entry = vm->pt_ops->pde_encode_bo(bo,
>> pt_2m_ofs,
>> - pat_index);
>> + entry = vm->pt_ops->pde_encode_bo(bo,
>> pt_2m_ofs);
>> xe_map_wr(xe, &bo->vmap, ofs, u64, entry);
>>
>> flags = vm->pt_ops->pte_encode_addr(xe, 0,
>> @@ -206,7 +205,7 @@ static int xe_migrate_prepare_vm(struct xe_tile
>> *tile, struct xe_migrate *m,
>>
>> /* PT30 & PT31 reserved for 2M identity map */
>> pt29_ofs = xe_bo_size(bo) - 3 * XE_PAGE_SIZE;
>> - entry = vm->pt_ops->pde_encode_bo(bo, pt29_ofs, pat_index);
>> + entry = vm->pt_ops->pde_encode_bo(bo, pt29_ofs);
>> xe_pt_write(xe, &vm->pt_root[id]->bo->vmap, 0, entry);
>>
>> map_ofs = (num_entries - num_setup) * XE_PAGE_SIZE;
>> @@ -274,15 +273,14 @@ static int xe_migrate_prepare_vm(struct xe_tile
>> *tile, struct xe_migrate *m,
>> flags = XE_PDE_64K;
>>
>> entry = vm->pt_ops->pde_encode_bo(bo, map_ofs +
>> (u64)(level - 1) *
>> - XE_PAGE_SIZE,
>> pat_index);
>> + XE_PAGE_SIZE);
>> xe_map_wr(xe, &bo->vmap, map_ofs + XE_PAGE_SIZE *
>> level, u64,
>> entry | flags);
>> }
>>
>> /* Write PDE's that point to our BO. */
>> for (i = 0; i < map_ofs / PAGE_SIZE; i++) {
>> - entry = vm->pt_ops->pde_encode_bo(bo, (u64)i *
>> XE_PAGE_SIZE,
>> - pat_index);
>> + entry = vm->pt_ops->pde_encode_bo(bo, (u64)i *
>> XE_PAGE_SIZE);
>>
>> xe_map_wr(xe, &bo->vmap, map_ofs + XE_PAGE_SIZE +
>> (i + 1) * 8, u64, entry);
>> diff --git a/drivers/gpu/drm/xe/xe_pt.c b/drivers/gpu/drm/xe/xe_pt.c
>> index 330cc0f54a3f..f3a39e734a90 100644
>> --- a/drivers/gpu/drm/xe/xe_pt.c
>> +++ b/drivers/gpu/drm/xe/xe_pt.c
>> @@ -69,7 +69,7 @@ static u64 __xe_pt_empty_pte(struct xe_tile *tile,
>> struct xe_vm *vm,
>>
>> if (level > MAX_HUGEPTE_LEVEL)
>> return vm->pt_ops->pde_encode_bo(vm-
>>> scratch_pt[id][level - 1]->bo,
>> - 0, pat_index);
>> + 0);
>>
>> return vm->pt_ops->pte_encode_addr(xe, 0, pat_index, level,
>> IS_DGFX(xe), 0) |
>> XE_PTE_NULL;
>> @@ -616,7 +616,7 @@ xe_pt_stage_bind_entry(struct xe_ptw *parent,
>> pgoff_t offset,
>> xe_child->is_compact = true;
>> }
>>
>> - pte = vm->pt_ops->pde_encode_bo(xe_child->bo, 0,
>> pat_index) | flags;
>> + pte = vm->pt_ops->pde_encode_bo(xe_child->bo, 0) |
>> flags;
>> ret = xe_pt_insert_entry(xe_walk, xe_parent, offset,
>> xe_child,
>> pte);
>> }
>> diff --git a/drivers/gpu/drm/xe/xe_pt_types.h
>> b/drivers/gpu/drm/xe/xe_pt_types.h
>> index 69eab6f37cfe..17cdd7c7e9f5 100644
>> --- a/drivers/gpu/drm/xe/xe_pt_types.h
>> +++ b/drivers/gpu/drm/xe/xe_pt_types.h
>> @@ -45,8 +45,7 @@ struct xe_pt_ops {
>> u64 (*pte_encode_addr)(struct xe_device *xe, u64 addr,
>> u16 pat_index,
>> u32 pt_level, bool devmem, u64 flags);
>> - u64 (*pde_encode_bo)(struct xe_bo *bo, u64 bo_offset,
>> - u16 pat_index);
>> + u64 (*pde_encode_bo)(struct xe_bo *bo, u64 bo_offset);
>> };
>>
>> struct xe_pt_entry {
>> diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
>> index 432ea325677d..42e3b1b8be5b 100644
>> --- a/drivers/gpu/drm/xe/xe_vm.c
>> +++ b/drivers/gpu/drm/xe/xe_vm.c
>> @@ -1512,13 +1512,21 @@ static u64 pte_encode_ps(u32 pt_level)
>> return 0;
>> }
>>
>> -static u64 xelp_pde_encode_bo(struct xe_bo *bo, u64 bo_offset,
>> - const u16 pat_index)
>> +static u64 xelp_pde_encode_bo(struct xe_bo *bo, u64 bo_offset)
>> {
>> + struct xe_device *xe = xe_bo_device(bo);
>> + u16 pat_index;
>> u64 pde;
>>
>> pde = xe_bo_addr(bo, bo_offset, XE_PAGE_SIZE);
>> pde |= XE_PAGE_PRESENT | XE_PAGE_RW;
>> +
>> + if (!xe_bo_is_vram(bo) && bo->ttm.ttm->caching == ttm_cached)
>> + pat_index = xe->pat.idx[XE_CACHE_WB];
>> + else
>> + pat_index = xe->pat.idx[XE_CACHE_NONE];
>> +
>> + xe_assert(xe, pat_index <= 3);
>> pde |= pde_encode_pat_index(pat_index);
>>
>> return pde;
>> @@ -2024,8 +2032,7 @@ struct xe_vm *xe_vm_lookup(struct xe_file *xef,
>> u32 id)
>>
>> u64 xe_vm_pdp4_descriptor(struct xe_vm *vm, struct xe_tile *tile)
>> {
>> - return vm->pt_ops->pde_encode_bo(vm->pt_root[tile->id]->bo,
>> 0,
>> - tile_to_xe(tile)-
>>> pat.idx[XE_CACHE_WB]);
>> + return vm->pt_ops->pde_encode_bo(vm->pt_root[tile->id]->bo,
>> 0);
>> }
>>
>> static struct xe_exec_queue *
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] drm/xe: rework PDE PAT index selection
2025-08-04 14:48 ` Matthew Auld
@ 2025-08-04 15:39 ` Summers, Stuart
0 siblings, 0 replies; 7+ messages in thread
From: Summers, Stuart @ 2025-08-04 15:39 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org, Auld, Matthew; +Cc: Brost, Matthew
On Mon, 2025-08-04 at 15:48 +0100, Matthew Auld wrote:
> Hi,
>
> On 01/08/2025 20:31, Summers, Stuart wrote:
> > On Fri, 2025-08-01 at 16:21 +0100, Matthew Auld wrote:
> > > For non-leaf paging structures we end up selecting a random index
> > > between [0, 3], depending on the first user if the page-table is
> > > shared,
> > > since non-leaf structures only have two bits in the HW for
> > > encoding
> > > the
> > > PAT index, and here we are just passing along the full user
> > > provided
> > > index, which can be an index as large as ~31 on xe2+. The user
> > > provided
> > > index is meant for the leaf node, which maps the actual BO pages
> > > where
> > > we have more PAT bits, and not the non-leaf nodes which are only
> > > mapping
> > > other paging structures, and so only needs a minimal PAT index
> > > range.
> > > Also the chosen index might need to consider how the driver
> > > mapped
> > > the
> > > paging structures on the host side, like wc vs wb, which is
> > > separate
> > > from the user provided index.
> > >
> > > With that move the PDE PAT index selection under driver control.
> > > For
> > > now
> > > just use a coherent index on platforms with page-tables that are
> > > cached
> > > on host side, and incoherent otherwise. Using a coherent index
> > > could
> > > potentially be expensive, and would be overkill if we know the
> > > page-
> > > table
> > > is always uncached on host side.
> > >
> > > BSpec: 59510
> > > Signed-off-by: Matthew Auld <matthew.auld@intel.com>
> > > Cc: Stuart Summers <stuart.summers@intel.com>
> > > Cc: Matthew Brost <matthew.brost@intel.com>
> >
> > Hey Matt,
> >
> > Do we have any known failures related here? Or what is the
> > motivation
> > for this change generally?
>
> There shouldn't be any failures, I hope. My thinking is that while
> nothing bad happens today, that might change on future HW, depending
> on
> what that exact index does, which is very platform specific. Having a
> well defined value here under driver control seems sensible to me.
> Also
> as per the commit message the coherency of the PAT index should
> really
> be tied to the allocation type of the page table (or at least we pick
> something which is always safe), which is also under driver control
> and
> is an internal detail, and IMO should not be chosen randomly
> depending
> on the first two bits of the user provided PAT index.
>
> >
> > I see on the LRC side we always set to WB, even on discrete. Why
> > not
> > use that here too rather than force UC?
>
> That is one option, but AFAICT main difference there is that lrc is
> allocated as cached on host side, if igpu, so at least 1way coherency
> is
> needed, which WB happens to give. But enabling 1way/2way coherency is
> also usually not free. On dgpu the host coherency of the PAT index
> doesn't do anything, but also the lrc is allocated in VRAM.
Hm.. well at a minimum I do agree having determinism here is probably
better. And we can always add in platform-specific values here if we
need them.
Minor comment below...
>
> >
> > The patch is doing what you're saying, I'm just not sure why we
> > need
> > this change now when to my knowledge things have been working for
> > the
> > user-defined PAT cases.
> >
> > Thanks,
> > Stuart
> >
> > > ---
> > > drivers/gpu/drm/xe/xe_migrate.c | 10 ++++------
> > > drivers/gpu/drm/xe/xe_pt.c | 4 ++--
> > > drivers/gpu/drm/xe/xe_pt_types.h | 3 +--
> > > drivers/gpu/drm/xe/xe_vm.c | 15 +++++++++++----
> > > 4 files changed, 18 insertions(+), 14 deletions(-)
> > >
> > > diff --git a/drivers/gpu/drm/xe/xe_migrate.c
> > > b/drivers/gpu/drm/xe/xe_migrate.c
> > > index 3a276e2348a2..43599d4419a7 100644
> > > --- a/drivers/gpu/drm/xe/xe_migrate.c
> > > +++ b/drivers/gpu/drm/xe/xe_migrate.c
> > > @@ -151,8 +151,7 @@ static void
> > > xe_migrate_program_identity(struct
> > > xe_device *xe, struct xe_vm *vm,
> > > for (pos = dpa_base; pos < vram_limit;
> > > pos += SZ_1G, ofs += 8) {
> > > if (pos + SZ_1G >= vram_limit) {
> > > - entry = vm->pt_ops->pde_encode_bo(bo,
> > > pt_2m_ofs,
> > > -
> > > pat_index);
> > > + entry = vm->pt_ops->pde_encode_bo(bo,
> > > pt_2m_ofs);
> > > xe_map_wr(xe, &bo->vmap, ofs, u64,
> > > entry);
> > >
> > > flags = vm->pt_ops->pte_encode_addr(xe,
> > > 0,
> > > @@ -206,7 +205,7 @@ static int xe_migrate_prepare_vm(struct
> > > xe_tile
> > > *tile, struct xe_migrate *m,
> > >
> > > /* PT30 & PT31 reserved for 2M identity map */
> > > pt29_ofs = xe_bo_size(bo) - 3 * XE_PAGE_SIZE;
> > > - entry = vm->pt_ops->pde_encode_bo(bo, pt29_ofs,
> > > pat_index);
> > > + entry = vm->pt_ops->pde_encode_bo(bo, pt29_ofs);
> > > xe_pt_write(xe, &vm->pt_root[id]->bo->vmap, 0, entry);
> > >
> > > map_ofs = (num_entries - num_setup) * XE_PAGE_SIZE;
> > > @@ -274,15 +273,14 @@ static int xe_migrate_prepare_vm(struct
> > > xe_tile
> > > *tile, struct xe_migrate *m,
> > > flags = XE_PDE_64K;
> > >
> > > entry = vm->pt_ops->pde_encode_bo(bo, map_ofs +
> > > (u64)(level - 1) *
> > > - XE_PAGE_SIZE,
> > > pat_index);
> > > + XE_PAGE_SIZE);
> > > xe_map_wr(xe, &bo->vmap, map_ofs + XE_PAGE_SIZE
> > > *
> > > level, u64,
> > > entry | flags);
> > > }
> > >
> > > /* Write PDE's that point to our BO. */
> > > for (i = 0; i < map_ofs / PAGE_SIZE; i++) {
> > > - entry = vm->pt_ops->pde_encode_bo(bo, (u64)i *
> > > XE_PAGE_SIZE,
> > > - pat_index);
> > > + entry = vm->pt_ops->pde_encode_bo(bo, (u64)i *
> > > XE_PAGE_SIZE);
> > >
> > > xe_map_wr(xe, &bo->vmap, map_ofs + XE_PAGE_SIZE
> > > +
> > > (i + 1) * 8, u64, entry);
> > > diff --git a/drivers/gpu/drm/xe/xe_pt.c
> > > b/drivers/gpu/drm/xe/xe_pt.c
> > > index 330cc0f54a3f..f3a39e734a90 100644
> > > --- a/drivers/gpu/drm/xe/xe_pt.c
> > > +++ b/drivers/gpu/drm/xe/xe_pt.c
> > > @@ -69,7 +69,7 @@ static u64 __xe_pt_empty_pte(struct xe_tile
> > > *tile,
> > > struct xe_vm *vm,
> > >
> > > if (level > MAX_HUGEPTE_LEVEL)
> > > return vm->pt_ops->pde_encode_bo(vm-
> > > > scratch_pt[id][level - 1]->bo,
> > > - 0, pat_index);
> > > + 0);
> > >
> > > return vm->pt_ops->pte_encode_addr(xe, 0, pat_index,
> > > level,
> > > IS_DGFX(xe), 0) |
> > > XE_PTE_NULL;
> > > @@ -616,7 +616,7 @@ xe_pt_stage_bind_entry(struct xe_ptw *parent,
> > > pgoff_t offset,
> > > xe_child->is_compact = true;
> > > }
> > >
> > > - pte = vm->pt_ops->pde_encode_bo(xe_child->bo, 0,
> > > pat_index) | flags;
> > > + pte = vm->pt_ops->pde_encode_bo(xe_child->bo, 0)
> > > |
> > > flags;
> > > ret = xe_pt_insert_entry(xe_walk, xe_parent,
> > > offset,
> > > xe_child,
> > > pte);
> > > }
> > > diff --git a/drivers/gpu/drm/xe/xe_pt_types.h
> > > b/drivers/gpu/drm/xe/xe_pt_types.h
> > > index 69eab6f37cfe..17cdd7c7e9f5 100644
> > > --- a/drivers/gpu/drm/xe/xe_pt_types.h
> > > +++ b/drivers/gpu/drm/xe/xe_pt_types.h
> > > @@ -45,8 +45,7 @@ struct xe_pt_ops {
> > > u64 (*pte_encode_addr)(struct xe_device *xe, u64 addr,
> > > u16 pat_index,
> > > u32 pt_level, bool devmem, u64
> > > flags);
> > > - u64 (*pde_encode_bo)(struct xe_bo *bo, u64 bo_offset,
> > > - u16 pat_index);
> > > + u64 (*pde_encode_bo)(struct xe_bo *bo, u64 bo_offset);
> > > };
> > >
> > > struct xe_pt_entry {
> > > diff --git a/drivers/gpu/drm/xe/xe_vm.c
> > > b/drivers/gpu/drm/xe/xe_vm.c
> > > index 432ea325677d..42e3b1b8be5b 100644
> > > --- a/drivers/gpu/drm/xe/xe_vm.c
> > > +++ b/drivers/gpu/drm/xe/xe_vm.c
> > > @@ -1512,13 +1512,21 @@ static u64 pte_encode_ps(u32 pt_level)
> > > return 0;
> > > }
> > >
> > > -static u64 xelp_pde_encode_bo(struct xe_bo *bo, u64 bo_offset,
> > > - const u16 pat_index)
> > > +static u64 xelp_pde_encode_bo(struct xe_bo *bo, u64 bo_offset)
> > > {
> > > + struct xe_device *xe = xe_bo_device(bo);
> > > + u16 pat_index;
> > > u64 pde;
> > >
> > > pde = xe_bo_addr(bo, bo_offset, XE_PAGE_SIZE);
> > > pde |= XE_PAGE_PRESENT | XE_PAGE_RW;
> > > +
Can you add a quick comment here indicating we can't use the user-
provided value for the PDE specifically because of the limited number
of bits, so we chose a well known value based on the platform
(basically a short version of what you have in the commit message)?
Also might be nice for this to be in a new function to be clear, but
not required imo.
With the documentation here:
Reviewed-by: Stuart Summers <stuart.summers@intel.com>
> > > + if (!xe_bo_is_vram(bo) && bo->ttm.ttm->caching ==
> > > ttm_cached)
> > > + pat_index = xe->pat.idx[XE_CACHE_WB];
> > > + else
> > > + pat_index = xe->pat.idx[XE_CACHE_NONE];
> > > +
> > > + xe_assert(xe, pat_index <= 3);
> > > pde |= pde_encode_pat_index(pat_index);
> > >
> > > return pde;
> > > @@ -2024,8 +2032,7 @@ struct xe_vm *xe_vm_lookup(struct xe_file
> > > *xef,
> > > u32 id)
> > >
> > > u64 xe_vm_pdp4_descriptor(struct xe_vm *vm, struct xe_tile
> > > *tile)
> > > {
> > > - return vm->pt_ops->pde_encode_bo(vm->pt_root[tile->id]-
> > > >bo,
> > > 0,
> > > - tile_to_xe(tile)-
> > > > pat.idx[XE_CACHE_WB]);
> > > + return vm->pt_ops->pde_encode_bo(vm->pt_root[tile->id]-
> > > >bo,
> > > 0);
> > > }
> > >
> > > static struct xe_exec_queue *
> >
>
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-08-04 15:40 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-01 15:21 [PATCH] drm/xe: rework PDE PAT index selection Matthew Auld
2025-08-01 17:35 ` ✓ CI.KUnit: success for " Patchwork
2025-08-01 18:16 ` ✓ Xe.CI.BAT: " Patchwork
2025-08-01 19:31 ` [PATCH] " Summers, Stuart
2025-08-04 14:48 ` Matthew Auld
2025-08-04 15:39 ` Summers, Stuart
2025-08-01 20:01 ` ✗ Xe.CI.Full: failure for " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).