* [PATCH 1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor
@ 2026-02-04 0:25 Matt Roper
2026-02-04 0:25 ` [PATCH 2/2] drm/xe/xe3p_xpc: XeCore mask spans four registers Matt Roper
` (10 more replies)
0 siblings, 11 replies; 13+ messages in thread
From: Matt Roper @ 2026-02-04 0:25 UTC (permalink / raw)
To: intel-xe; +Cc: matthew.d.roper, Gustavo Sousa
The number of registers used to express the XeCore mask has some
"special cases" that don't always get inherited by later IP versions so
it's cleaner and simpler to record the numbers in the IP descriptor
rather than adding extra conditions to the standalone get_num_dss_regs()
function.
Note that a minor change here is that we now always treat the number of
registers as 0 for the media GT. Technically a copy of these fuse
registers does exist in the media GT as well (at the usual
0x380000+$offset location), but the value of those is always supposed to
read back as 0 because media GTs never have any XeCores or EUs.
Cc: Gustavo Sousa <gustavo.sousa@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
drivers/gpu/drm/xe/xe_gt_topology.c | 37 ++++++-----------------------
drivers/gpu/drm/xe/xe_gt_types.h | 10 ++++++++
drivers/gpu/drm/xe/xe_pci.c | 12 ++++++++++
drivers/gpu/drm/xe/xe_pci_types.h | 2 ++
4 files changed, 31 insertions(+), 30 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_gt_topology.c b/drivers/gpu/drm/xe/xe_gt_topology.c
index bd5260221d8d..575dcfd5eb9d 100644
--- a/drivers/gpu/drm/xe/xe_gt_topology.c
+++ b/drivers/gpu/drm/xe/xe_gt_topology.c
@@ -205,24 +205,6 @@ load_l3_bank_mask(struct xe_gt *gt, xe_l3_bank_mask_t l3_bank_mask)
}
}
-static void
-get_num_dss_regs(struct xe_device *xe, int *geometry_regs, int *compute_regs)
-{
- if (GRAPHICS_VER(xe) > 20) {
- *geometry_regs = 3;
- *compute_regs = 3;
- } else if (GRAPHICS_VERx100(xe) == 1260) {
- *geometry_regs = 0;
- *compute_regs = 2;
- } else if (GRAPHICS_VERx100(xe) >= 1250) {
- *geometry_regs = 1;
- *compute_regs = 1;
- } else {
- *geometry_regs = 1;
- *compute_regs = 0;
- }
-}
-
void
xe_gt_topology_init(struct xe_gt *gt)
{
@@ -236,23 +218,19 @@ xe_gt_topology_init(struct xe_gt *gt)
XEHPC_GT_COMPUTE_DSS_ENABLE_EXT,
XE2_GT_COMPUTE_DSS_2,
};
- int num_geometry_regs, num_compute_regs;
- struct xe_device *xe = gt_to_xe(gt);
struct drm_printer p;
- get_num_dss_regs(xe, &num_geometry_regs, &num_compute_regs);
-
/*
* Register counts returned shouldn't exceed the number of registers
* passed as parameters below.
*/
- xe_gt_assert(gt, num_geometry_regs <= ARRAY_SIZE(geometry_regs));
- xe_gt_assert(gt, num_compute_regs <= ARRAY_SIZE(compute_regs));
+ xe_gt_assert(gt, gt->info.num_geometry_xecore_fuse_regs <= ARRAY_SIZE(geometry_regs));
+ xe_gt_assert(gt, gt->info.num_compute_xecore_fuse_regs <= ARRAY_SIZE(compute_regs));
load_dss_mask(gt, gt->fuse_topo.g_dss_mask,
- num_geometry_regs, geometry_regs);
+ gt->info.num_geometry_xecore_fuse_regs, geometry_regs);
load_dss_mask(gt, gt->fuse_topo.c_dss_mask,
- num_compute_regs, compute_regs);
+ gt->info.num_compute_xecore_fuse_regs, compute_regs);
load_eu_mask(gt, gt->fuse_topo.eu_mask_per_dss, >->fuse_topo.eu_type);
load_l3_bank_mask(gt, gt->fuse_topo.l3_bank_mask);
@@ -330,15 +308,14 @@ xe_l3_bank_mask_ffs(const xe_l3_bank_mask_t mask)
*/
bool xe_gt_topology_has_dss_in_quadrant(struct xe_gt *gt, int quad)
{
- struct xe_device *xe = gt_to_xe(gt);
xe_dss_mask_t all_dss;
- int g_dss_regs, c_dss_regs, dss_per_quad, quad_first;
+ int dss_per_quad, quad_first;
bitmap_or(all_dss, gt->fuse_topo.g_dss_mask, gt->fuse_topo.c_dss_mask,
XE_MAX_DSS_FUSE_BITS);
- get_num_dss_regs(xe, &g_dss_regs, &c_dss_regs);
- dss_per_quad = 32 * max(g_dss_regs, c_dss_regs) / 4;
+ dss_per_quad = 32 * max(gt->info.num_geometry_xecore_fuse_regs,
+ gt->info.num_compute_xecore_fuse_regs) / 4;
quad_first = xe_dss_mask_group_ffs(all_dss, dss_per_quad, quad);
diff --git a/drivers/gpu/drm/xe/xe_gt_types.h b/drivers/gpu/drm/xe/xe_gt_types.h
index 5318d92fd473..bede105f37b4 100644
--- a/drivers/gpu/drm/xe/xe_gt_types.h
+++ b/drivers/gpu/drm/xe/xe_gt_types.h
@@ -149,6 +149,16 @@ struct xe_gt {
u8 id;
/** @info.has_indirect_ring_state: GT has indirect ring state support */
u8 has_indirect_ring_state:1;
+ /**
+ * @info.num_geometry_xecore_fuse_regs: Number of 32b-bit fuse
+ * registers the geometry XeCore mask spans.
+ */
+ u8 num_geometry_xecore_fuse_regs;
+ /**
+ * @info.num_compute_xecore_fuse_regs: Number of 32b-bit fuse
+ * registers the compute XeCore mask spans.
+ */
+ u8 num_compute_xecore_fuse_regs;
} info;
#if IS_ENABLED(CONFIG_DEBUG_FS)
diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
index b5e8935fff1d..e3a574835f35 100644
--- a/drivers/gpu/drm/xe/xe_pci.c
+++ b/drivers/gpu/drm/xe/xe_pci.c
@@ -52,6 +52,7 @@ __diag_ignore_all("-Woverride-init", "Allow field overrides in table");
static const struct xe_graphics_desc graphics_xelp = {
.hw_engine_mask = BIT(XE_HW_ENGINE_RCS0) | BIT(XE_HW_ENGINE_BCS0),
+ .num_geometry_xecore_fuse_regs = 1,
};
#define XE_HP_FEATURES \
@@ -62,6 +63,8 @@ static const struct xe_graphics_desc graphics_xehpg = {
BIT(XE_HW_ENGINE_RCS0) | BIT(XE_HW_ENGINE_BCS0) |
BIT(XE_HW_ENGINE_CCS0) | BIT(XE_HW_ENGINE_CCS1) |
BIT(XE_HW_ENGINE_CCS2) | BIT(XE_HW_ENGINE_CCS3),
+ .num_geometry_xecore_fuse_regs = 1,
+ .num_compute_xecore_fuse_regs = 1,
XE_HP_FEATURES,
};
@@ -81,12 +84,15 @@ static const struct xe_graphics_desc graphics_xehpc = {
.has_asid = 1,
.has_atomic_enable_pte_bit = 1,
.has_usm = 1,
+ .num_compute_xecore_fuse_regs = 2,
};
static const struct xe_graphics_desc graphics_xelpg = {
.hw_engine_mask =
BIT(XE_HW_ENGINE_RCS0) | BIT(XE_HW_ENGINE_BCS0) |
BIT(XE_HW_ENGINE_CCS0),
+ .num_geometry_xecore_fuse_regs = 1,
+ .num_compute_xecore_fuse_regs = 1,
XE_HP_FEATURES,
};
@@ -104,6 +110,8 @@ static const struct xe_graphics_desc graphics_xelpg = {
static const struct xe_graphics_desc graphics_xe2 = {
XE2_GFX_FEATURES,
+ .num_geometry_xecore_fuse_regs = 3,
+ .num_compute_xecore_fuse_regs = 3,
};
static const struct xe_graphics_desc graphics_xe3p_xpc = {
@@ -114,6 +122,8 @@ static const struct xe_graphics_desc graphics_xe3p_xpc = {
GENMASK(XE_HW_ENGINE_CCS3, XE_HW_ENGINE_CCS0),
.multi_queue_engine_class_mask = BIT(XE_ENGINE_CLASS_COPY) |
BIT(XE_ENGINE_CLASS_COMPUTE),
+ .num_geometry_xecore_fuse_regs = 3,
+ .num_compute_xecore_fuse_regs = 3,
};
static const struct xe_media_desc media_xem = {
@@ -783,6 +793,8 @@ static struct xe_gt *alloc_primary_gt(struct xe_tile *tile,
gt->info.has_indirect_ring_state = graphics_desc->has_indirect_ring_state;
gt->info.multi_queue_engine_class_mask = graphics_desc->multi_queue_engine_class_mask;
gt->info.engine_mask = graphics_desc->hw_engine_mask;
+ gt->info.num_geometry_xecore_fuse_regs = graphics_desc->num_geometry_xecore_fuse_regs;
+ gt->info.num_compute_xecore_fuse_regs = graphics_desc->num_compute_xecore_fuse_regs;
/*
* Before media version 13, the media IP was part of the primary GT
diff --git a/drivers/gpu/drm/xe/xe_pci_types.h b/drivers/gpu/drm/xe/xe_pci_types.h
index 8b2ff3f25607..470d31a1f0d6 100644
--- a/drivers/gpu/drm/xe/xe_pci_types.h
+++ b/drivers/gpu/drm/xe/xe_pci_types.h
@@ -66,6 +66,8 @@ struct xe_device_desc {
struct xe_graphics_desc {
u64 hw_engine_mask; /* hardware engines provided by graphics IP */
u16 multi_queue_engine_class_mask; /* bitmask of engine classes which support multi queue */
+ u8 num_geometry_xecore_fuse_regs;
+ u8 num_compute_xecore_fuse_regs;
u8 has_asid:1;
u8 has_atomic_enable_pte_bit:1;
--
2.52.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 2/2] drm/xe/xe3p_xpc: XeCore mask spans four registers
2026-02-04 0:25 [PATCH 1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor Matt Roper
@ 2026-02-04 0:25 ` Matt Roper
2026-02-04 20:10 ` Gustavo Sousa
2026-02-04 0:57 ` ✓ CI.KUnit: success for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor Patchwork
` (9 subsequent siblings)
10 siblings, 1 reply; 13+ messages in thread
From: Matt Roper @ 2026-02-04 0:25 UTC (permalink / raw)
To: intel-xe; +Cc: matthew.d.roper
On Xe3p_XPC, there are now four registers reserved to express the XeCore
mask rather than just three. Define the new registers and update the IP
descriptor accordingly.
Note that this only applies to Xe3p_XPC for now; Xe3p_LPG still only
uses three registers to express the mask.
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
drivers/gpu/drm/xe/regs/xe_gt_regs.h | 2 ++
drivers/gpu/drm/xe/xe_gt_topology.c | 2 ++
drivers/gpu/drm/xe/xe_gt_types.h | 2 +-
drivers/gpu/drm/xe/xe_pci.c | 4 ++--
4 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
index 24fc64fc832e..1b7bd34dcc38 100644
--- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
@@ -253,6 +253,8 @@
#define XE2_GT_COMPUTE_DSS_2 XE_REG(0x914c)
#define XE2_GT_GEOMETRY_DSS_1 XE_REG(0x9150)
#define XE2_GT_GEOMETRY_DSS_2 XE_REG(0x9154)
+#define XE3P_XPC_GT_GEOMETRY_DSS_3 XE_REG(0x915c)
+#define XE3P_XPC_GT_COMPUTE_DSS_3 XE_REG(0x9160)
#define SERVICE_COPY_ENABLE XE_REG(0x9170)
#define FUSE_SERVICE_COPY_ENABLE_MASK REG_GENMASK(7, 0)
diff --git a/drivers/gpu/drm/xe/xe_gt_topology.c b/drivers/gpu/drm/xe/xe_gt_topology.c
index 575dcfd5eb9d..bfe87e682879 100644
--- a/drivers/gpu/drm/xe/xe_gt_topology.c
+++ b/drivers/gpu/drm/xe/xe_gt_topology.c
@@ -212,11 +212,13 @@ xe_gt_topology_init(struct xe_gt *gt)
XELP_GT_GEOMETRY_DSS_ENABLE,
XE2_GT_GEOMETRY_DSS_1,
XE2_GT_GEOMETRY_DSS_2,
+ XE3P_XPC_GT_GEOMETRY_DSS_3,
};
static const struct xe_reg compute_regs[] = {
XEHP_GT_COMPUTE_DSS_ENABLE,
XEHPC_GT_COMPUTE_DSS_ENABLE_EXT,
XE2_GT_COMPUTE_DSS_2,
+ XE3P_XPC_GT_COMPUTE_DSS_3,
};
struct drm_printer p;
diff --git a/drivers/gpu/drm/xe/xe_gt_types.h b/drivers/gpu/drm/xe/xe_gt_types.h
index bede105f37b4..bcb63dced7f9 100644
--- a/drivers/gpu/drm/xe/xe_gt_types.h
+++ b/drivers/gpu/drm/xe/xe_gt_types.h
@@ -35,7 +35,7 @@ enum xe_gt_eu_type {
XE_GT_EU_TYPE_SIMD16,
};
-#define XE_MAX_DSS_FUSE_REGS 3
+#define XE_MAX_DSS_FUSE_REGS 4
#define XE_MAX_DSS_FUSE_BITS (32 * XE_MAX_DSS_FUSE_REGS)
#define XE_MAX_EU_FUSE_REGS 1
#define XE_MAX_EU_FUSE_BITS (32 * XE_MAX_EU_FUSE_REGS)
diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
index e3a574835f35..42f15cd394f6 100644
--- a/drivers/gpu/drm/xe/xe_pci.c
+++ b/drivers/gpu/drm/xe/xe_pci.c
@@ -122,8 +122,8 @@ static const struct xe_graphics_desc graphics_xe3p_xpc = {
GENMASK(XE_HW_ENGINE_CCS3, XE_HW_ENGINE_CCS0),
.multi_queue_engine_class_mask = BIT(XE_ENGINE_CLASS_COPY) |
BIT(XE_ENGINE_CLASS_COMPUTE),
- .num_geometry_xecore_fuse_regs = 3,
- .num_compute_xecore_fuse_regs = 3,
+ .num_geometry_xecore_fuse_regs = 4,
+ .num_compute_xecore_fuse_regs = 4,
};
static const struct xe_media_desc media_xem = {
--
2.52.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* ✓ CI.KUnit: success for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor
2026-02-04 0:25 [PATCH 1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor Matt Roper
2026-02-04 0:25 ` [PATCH 2/2] drm/xe/xe3p_xpc: XeCore mask spans four registers Matt Roper
@ 2026-02-04 0:57 ` Patchwork
2026-02-04 1:31 ` ✗ Xe.CI.BAT: failure " Patchwork
` (8 subsequent siblings)
10 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-02-04 0:57 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
== Series Details ==
Series: series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor
URL : https://patchwork.freedesktop.org/series/161113/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[00:56:05] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[00:56:09] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[00:56:41] Starting KUnit Kernel (1/1)...
[00:56:41] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[00:56:42] ================== guc_buf (11 subtests) ===================
[00:56:42] [PASSED] test_smallest
[00:56:42] [PASSED] test_largest
[00:56:42] [PASSED] test_granular
[00:56:42] [PASSED] test_unique
[00:56:42] [PASSED] test_overlap
[00:56:42] [PASSED] test_reusable
[00:56:42] [PASSED] test_too_big
[00:56:42] [PASSED] test_flush
[00:56:42] [PASSED] test_lookup
[00:56:42] [PASSED] test_data
[00:56:42] [PASSED] test_class
[00:56:42] ===================== [PASSED] guc_buf =====================
[00:56:42] =================== guc_dbm (7 subtests) ===================
[00:56:42] [PASSED] test_empty
[00:56:42] [PASSED] test_default
[00:56:42] ======================== test_size ========================
[00:56:42] [PASSED] 4
[00:56:42] [PASSED] 8
[00:56:42] [PASSED] 32
[00:56:42] [PASSED] 256
[00:56:42] ==================== [PASSED] test_size ====================
[00:56:42] ======================= test_reuse ========================
[00:56:42] [PASSED] 4
[00:56:42] [PASSED] 8
[00:56:42] [PASSED] 32
[00:56:42] [PASSED] 256
[00:56:42] =================== [PASSED] test_reuse ====================
[00:56:42] =================== test_range_overlap ====================
[00:56:42] [PASSED] 4
[00:56:42] [PASSED] 8
[00:56:42] [PASSED] 32
[00:56:42] [PASSED] 256
[00:56:42] =============== [PASSED] test_range_overlap ================
[00:56:42] =================== test_range_compact ====================
[00:56:42] [PASSED] 4
[00:56:42] [PASSED] 8
[00:56:42] [PASSED] 32
[00:56:42] [PASSED] 256
[00:56:42] =============== [PASSED] test_range_compact ================
[00:56:42] ==================== test_range_spare =====================
[00:56:42] [PASSED] 4
[00:56:42] [PASSED] 8
[00:56:42] [PASSED] 32
[00:56:42] [PASSED] 256
[00:56:42] ================ [PASSED] test_range_spare =================
[00:56:42] ===================== [PASSED] guc_dbm =====================
[00:56:42] =================== guc_idm (6 subtests) ===================
[00:56:42] [PASSED] bad_init
[00:56:42] [PASSED] no_init
[00:56:42] [PASSED] init_fini
[00:56:42] [PASSED] check_used
[00:56:42] [PASSED] check_quota
[00:56:42] [PASSED] check_all
[00:56:42] ===================== [PASSED] guc_idm =====================
[00:56:42] ================== no_relay (3 subtests) ===================
[00:56:42] [PASSED] xe_drops_guc2pf_if_not_ready
[00:56:42] [PASSED] xe_drops_guc2vf_if_not_ready
[00:56:42] [PASSED] xe_rejects_send_if_not_ready
[00:56:42] ==================== [PASSED] no_relay =====================
[00:56:42] ================== pf_relay (14 subtests) ==================
[00:56:42] [PASSED] pf_rejects_guc2pf_too_short
[00:56:42] [PASSED] pf_rejects_guc2pf_too_long
[00:56:42] [PASSED] pf_rejects_guc2pf_no_payload
[00:56:42] [PASSED] pf_fails_no_payload
[00:56:42] [PASSED] pf_fails_bad_origin
[00:56:42] [PASSED] pf_fails_bad_type
[00:56:42] [PASSED] pf_txn_reports_error
[00:56:42] [PASSED] pf_txn_sends_pf2guc
[00:56:42] [PASSED] pf_sends_pf2guc
[00:56:42] [SKIPPED] pf_loopback_nop
[00:56:42] [SKIPPED] pf_loopback_echo
[00:56:42] [SKIPPED] pf_loopback_fail
[00:56:42] [SKIPPED] pf_loopback_busy
[00:56:42] [SKIPPED] pf_loopback_retry
[00:56:42] ==================== [PASSED] pf_relay =====================
[00:56:42] ================== vf_relay (3 subtests) ===================
[00:56:42] [PASSED] vf_rejects_guc2vf_too_short
[00:56:42] [PASSED] vf_rejects_guc2vf_too_long
[00:56:42] [PASSED] vf_rejects_guc2vf_no_payload
[00:56:42] ==================== [PASSED] vf_relay =====================
[00:56:42] ================ pf_gt_config (6 subtests) =================
[00:56:42] [PASSED] fair_contexts_1vf
[00:56:42] [PASSED] fair_doorbells_1vf
[00:56:42] [PASSED] fair_ggtt_1vf
[00:56:42] ====================== fair_contexts ======================
[00:56:42] [PASSED] 1 VF
[00:56:42] [PASSED] 2 VFs
[00:56:42] [PASSED] 3 VFs
[00:56:42] [PASSED] 4 VFs
[00:56:42] [PASSED] 5 VFs
[00:56:42] [PASSED] 6 VFs
[00:56:42] [PASSED] 7 VFs
[00:56:42] [PASSED] 8 VFs
[00:56:42] [PASSED] 9 VFs
[00:56:42] [PASSED] 10 VFs
[00:56:42] [PASSED] 11 VFs
[00:56:42] [PASSED] 12 VFs
[00:56:42] [PASSED] 13 VFs
[00:56:42] [PASSED] 14 VFs
[00:56:42] [PASSED] 15 VFs
[00:56:42] [PASSED] 16 VFs
[00:56:42] [PASSED] 17 VFs
[00:56:42] [PASSED] 18 VFs
[00:56:42] [PASSED] 19 VFs
[00:56:42] [PASSED] 20 VFs
[00:56:42] [PASSED] 21 VFs
[00:56:42] [PASSED] 22 VFs
[00:56:42] [PASSED] 23 VFs
[00:56:42] [PASSED] 24 VFs
[00:56:42] [PASSED] 25 VFs
[00:56:42] [PASSED] 26 VFs
[00:56:42] [PASSED] 27 VFs
[00:56:42] [PASSED] 28 VFs
[00:56:42] [PASSED] 29 VFs
[00:56:42] [PASSED] 30 VFs
[00:56:42] [PASSED] 31 VFs
[00:56:42] [PASSED] 32 VFs
[00:56:42] [PASSED] 33 VFs
[00:56:42] [PASSED] 34 VFs
[00:56:42] [PASSED] 35 VFs
[00:56:42] [PASSED] 36 VFs
[00:56:42] [PASSED] 37 VFs
[00:56:42] [PASSED] 38 VFs
[00:56:42] [PASSED] 39 VFs
[00:56:42] [PASSED] 40 VFs
[00:56:42] [PASSED] 41 VFs
[00:56:42] [PASSED] 42 VFs
[00:56:42] [PASSED] 43 VFs
[00:56:42] [PASSED] 44 VFs
[00:56:42] [PASSED] 45 VFs
[00:56:42] [PASSED] 46 VFs
[00:56:42] [PASSED] 47 VFs
[00:56:42] [PASSED] 48 VFs
[00:56:42] [PASSED] 49 VFs
[00:56:42] [PASSED] 50 VFs
[00:56:42] [PASSED] 51 VFs
[00:56:42] [PASSED] 52 VFs
[00:56:42] [PASSED] 53 VFs
[00:56:42] [PASSED] 54 VFs
[00:56:42] [PASSED] 55 VFs
[00:56:42] [PASSED] 56 VFs
[00:56:42] [PASSED] 57 VFs
[00:56:42] [PASSED] 58 VFs
[00:56:42] [PASSED] 59 VFs
[00:56:42] [PASSED] 60 VFs
[00:56:42] [PASSED] 61 VFs
[00:56:42] [PASSED] 62 VFs
[00:56:42] [PASSED] 63 VFs
[00:56:42] ================== [PASSED] fair_contexts ==================
[00:56:42] ===================== fair_doorbells ======================
[00:56:42] [PASSED] 1 VF
[00:56:42] [PASSED] 2 VFs
[00:56:42] [PASSED] 3 VFs
[00:56:42] [PASSED] 4 VFs
[00:56:42] [PASSED] 5 VFs
[00:56:42] [PASSED] 6 VFs
[00:56:42] [PASSED] 7 VFs
[00:56:42] [PASSED] 8 VFs
[00:56:42] [PASSED] 9 VFs
[00:56:42] [PASSED] 10 VFs
[00:56:42] [PASSED] 11 VFs
[00:56:42] [PASSED] 12 VFs
[00:56:42] [PASSED] 13 VFs
[00:56:42] [PASSED] 14 VFs
[00:56:42] [PASSED] 15 VFs
[00:56:42] [PASSED] 16 VFs
[00:56:42] [PASSED] 17 VFs
[00:56:42] [PASSED] 18 VFs
[00:56:42] [PASSED] 19 VFs
[00:56:42] [PASSED] 20 VFs
[00:56:42] [PASSED] 21 VFs
[00:56:42] [PASSED] 22 VFs
[00:56:42] [PASSED] 23 VFs
[00:56:42] [PASSED] 24 VFs
[00:56:42] [PASSED] 25 VFs
[00:56:42] [PASSED] 26 VFs
[00:56:42] [PASSED] 27 VFs
[00:56:42] [PASSED] 28 VFs
[00:56:42] [PASSED] 29 VFs
[00:56:42] [PASSED] 30 VFs
[00:56:42] [PASSED] 31 VFs
[00:56:42] [PASSED] 32 VFs
[00:56:42] [PASSED] 33 VFs
[00:56:42] [PASSED] 34 VFs
[00:56:42] [PASSED] 35 VFs
[00:56:42] [PASSED] 36 VFs
[00:56:42] [PASSED] 37 VFs
[00:56:42] [PASSED] 38 VFs
[00:56:42] [PASSED] 39 VFs
[00:56:42] [PASSED] 40 VFs
[00:56:42] [PASSED] 41 VFs
[00:56:42] [PASSED] 42 VFs
[00:56:42] [PASSED] 43 VFs
[00:56:42] [PASSED] 44 VFs
[00:56:42] [PASSED] 45 VFs
[00:56:42] [PASSED] 46 VFs
[00:56:42] [PASSED] 47 VFs
[00:56:42] [PASSED] 48 VFs
[00:56:42] [PASSED] 49 VFs
[00:56:42] [PASSED] 50 VFs
[00:56:42] [PASSED] 51 VFs
[00:56:42] [PASSED] 52 VFs
[00:56:42] [PASSED] 53 VFs
[00:56:42] [PASSED] 54 VFs
[00:56:42] [PASSED] 55 VFs
[00:56:42] [PASSED] 56 VFs
[00:56:42] [PASSED] 57 VFs
[00:56:42] [PASSED] 58 VFs
[00:56:42] [PASSED] 59 VFs
[00:56:42] [PASSED] 60 VFs
[00:56:42] [PASSED] 61 VFs
[00:56:42] [PASSED] 62 VFs
[00:56:42] [PASSED] 63 VFs
[00:56:42] ================= [PASSED] fair_doorbells ==================
[00:56:42] ======================== fair_ggtt ========================
[00:56:42] [PASSED] 1 VF
[00:56:42] [PASSED] 2 VFs
[00:56:42] [PASSED] 3 VFs
[00:56:42] [PASSED] 4 VFs
[00:56:42] [PASSED] 5 VFs
[00:56:42] [PASSED] 6 VFs
[00:56:42] [PASSED] 7 VFs
[00:56:42] [PASSED] 8 VFs
[00:56:42] [PASSED] 9 VFs
[00:56:42] [PASSED] 10 VFs
[00:56:42] [PASSED] 11 VFs
[00:56:42] [PASSED] 12 VFs
[00:56:42] [PASSED] 13 VFs
[00:56:42] [PASSED] 14 VFs
[00:56:42] [PASSED] 15 VFs
[00:56:42] [PASSED] 16 VFs
[00:56:42] [PASSED] 17 VFs
[00:56:42] [PASSED] 18 VFs
[00:56:42] [PASSED] 19 VFs
[00:56:42] [PASSED] 20 VFs
[00:56:42] [PASSED] 21 VFs
[00:56:42] [PASSED] 22 VFs
[00:56:42] [PASSED] 23 VFs
[00:56:42] [PASSED] 24 VFs
[00:56:42] [PASSED] 25 VFs
[00:56:42] [PASSED] 26 VFs
[00:56:42] [PASSED] 27 VFs
[00:56:42] [PASSED] 28 VFs
[00:56:42] [PASSED] 29 VFs
[00:56:42] [PASSED] 30 VFs
[00:56:42] [PASSED] 31 VFs
[00:56:42] [PASSED] 32 VFs
[00:56:42] [PASSED] 33 VFs
[00:56:42] [PASSED] 34 VFs
[00:56:42] [PASSED] 35 VFs
[00:56:42] [PASSED] 36 VFs
[00:56:42] [PASSED] 37 VFs
[00:56:42] [PASSED] 38 VFs
[00:56:42] [PASSED] 39 VFs
[00:56:42] [PASSED] 40 VFs
[00:56:42] [PASSED] 41 VFs
[00:56:42] [PASSED] 42 VFs
[00:56:42] [PASSED] 43 VFs
[00:56:42] [PASSED] 44 VFs
[00:56:42] [PASSED] 45 VFs
[00:56:42] [PASSED] 46 VFs
[00:56:42] [PASSED] 47 VFs
[00:56:42] [PASSED] 48 VFs
[00:56:42] [PASSED] 49 VFs
[00:56:42] [PASSED] 50 VFs
[00:56:42] [PASSED] 51 VFs
[00:56:42] [PASSED] 52 VFs
[00:56:42] [PASSED] 53 VFs
[00:56:42] [PASSED] 54 VFs
[00:56:42] [PASSED] 55 VFs
[00:56:42] [PASSED] 56 VFs
[00:56:42] [PASSED] 57 VFs
[00:56:42] [PASSED] 58 VFs
[00:56:42] [PASSED] 59 VFs
[00:56:42] [PASSED] 60 VFs
[00:56:42] [PASSED] 61 VFs
[00:56:42] [PASSED] 62 VFs
[00:56:42] [PASSED] 63 VFs
[00:56:42] ==================== [PASSED] fair_ggtt ====================
[00:56:42] ================== [PASSED] pf_gt_config ===================
[00:56:42] ===================== lmtt (1 subtest) =====================
[00:56:42] ======================== test_ops =========================
[00:56:42] [PASSED] 2-level
[00:56:42] [PASSED] multi-level
[00:56:42] ==================== [PASSED] test_ops =====================
[00:56:42] ====================== [PASSED] lmtt =======================
[00:56:42] ================= pf_service (11 subtests) =================
[00:56:42] [PASSED] pf_negotiate_any
[00:56:42] [PASSED] pf_negotiate_base_match
[00:56:42] [PASSED] pf_negotiate_base_newer
[00:56:42] [PASSED] pf_negotiate_base_next
[00:56:42] [SKIPPED] pf_negotiate_base_older
[00:56:42] [PASSED] pf_negotiate_base_prev
[00:56:42] [PASSED] pf_negotiate_latest_match
[00:56:42] [PASSED] pf_negotiate_latest_newer
[00:56:42] [PASSED] pf_negotiate_latest_next
[00:56:42] [SKIPPED] pf_negotiate_latest_older
[00:56:42] [SKIPPED] pf_negotiate_latest_prev
[00:56:42] =================== [PASSED] pf_service ====================
[00:56:42] ================= xe_guc_g2g (2 subtests) ==================
[00:56:42] ============== xe_live_guc_g2g_kunit_default ==============
[00:56:42] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[00:56:42] ============== xe_live_guc_g2g_kunit_allmem ===============
[00:56:42] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[00:56:42] =================== [SKIPPED] xe_guc_g2g ===================
[00:56:42] =================== xe_mocs (2 subtests) ===================
[00:56:42] ================ xe_live_mocs_kernel_kunit ================
[00:56:42] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[00:56:42] ================ xe_live_mocs_reset_kunit =================
[00:56:42] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[00:56:42] ==================== [SKIPPED] xe_mocs =====================
[00:56:42] ================= xe_migrate (2 subtests) ==================
[00:56:42] ================= xe_migrate_sanity_kunit =================
[00:56:42] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[00:56:42] ================== xe_validate_ccs_kunit ==================
[00:56:42] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[00:56:42] =================== [SKIPPED] xe_migrate ===================
[00:56:42] ================== xe_dma_buf (1 subtest) ==================
[00:56:42] ==================== xe_dma_buf_kunit =====================
[00:56:42] ================ [SKIPPED] xe_dma_buf_kunit ================
[00:56:42] =================== [SKIPPED] xe_dma_buf ===================
[00:56:42] ================= xe_bo_shrink (1 subtest) =================
[00:56:42] =================== xe_bo_shrink_kunit ====================
[00:56:42] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[00:56:42] ================== [SKIPPED] xe_bo_shrink ==================
[00:56:42] ==================== xe_bo (2 subtests) ====================
[00:56:42] ================== xe_ccs_migrate_kunit ===================
[00:56:42] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[00:56:42] ==================== xe_bo_evict_kunit ====================
[00:56:42] =============== [SKIPPED] xe_bo_evict_kunit ================
[00:56:42] ===================== [SKIPPED] xe_bo ======================
[00:56:42] ==================== args (13 subtests) ====================
[00:56:42] [PASSED] count_args_test
[00:56:42] [PASSED] call_args_example
[00:56:42] [PASSED] call_args_test
[00:56:42] [PASSED] drop_first_arg_example
[00:56:42] [PASSED] drop_first_arg_test
[00:56:42] [PASSED] first_arg_example
[00:56:42] [PASSED] first_arg_test
[00:56:42] [PASSED] last_arg_example
[00:56:42] [PASSED] last_arg_test
[00:56:42] [PASSED] pick_arg_example
[00:56:42] [PASSED] if_args_example
[00:56:42] [PASSED] if_args_test
[00:56:42] [PASSED] sep_comma_example
[00:56:42] ====================== [PASSED] args =======================
[00:56:42] =================== xe_pci (3 subtests) ====================
[00:56:42] ==================== check_graphics_ip ====================
[00:56:42] [PASSED] 12.00 Xe_LP
[00:56:42] [PASSED] 12.10 Xe_LP+
[00:56:42] [PASSED] 12.55 Xe_HPG
[00:56:42] [PASSED] 12.60 Xe_HPC
[00:56:42] [PASSED] 12.70 Xe_LPG
[00:56:42] [PASSED] 12.71 Xe_LPG
[00:56:42] [PASSED] 12.74 Xe_LPG+
[00:56:42] [PASSED] 20.01 Xe2_HPG
[00:56:42] [PASSED] 20.02 Xe2_HPG
[00:56:42] [PASSED] 20.04 Xe2_LPG
[00:56:42] [PASSED] 30.00 Xe3_LPG
[00:56:42] [PASSED] 30.01 Xe3_LPG
[00:56:42] [PASSED] 30.03 Xe3_LPG
[00:56:42] [PASSED] 30.04 Xe3_LPG
[00:56:42] [PASSED] 30.05 Xe3_LPG
[00:56:42] [PASSED] 35.11 Xe3p_XPC
[00:56:42] ================ [PASSED] check_graphics_ip ================
[00:56:42] ===================== check_media_ip ======================
[00:56:42] [PASSED] 12.00 Xe_M
[00:56:42] [PASSED] 12.55 Xe_HPM
[00:56:42] [PASSED] 13.00 Xe_LPM+
[00:56:42] [PASSED] 13.01 Xe2_HPM
[00:56:42] [PASSED] 20.00 Xe2_LPM
[00:56:42] [PASSED] 30.00 Xe3_LPM
[00:56:42] [PASSED] 30.02 Xe3_LPM
[00:56:42] [PASSED] 35.00 Xe3p_LPM
[00:56:42] [PASSED] 35.03 Xe3p_HPM
[00:56:42] ================= [PASSED] check_media_ip ==================
[00:56:42] =================== check_platform_desc ===================
[00:56:42] [PASSED] 0x9A60 (TIGERLAKE)
[00:56:42] [PASSED] 0x9A68 (TIGERLAKE)
[00:56:42] [PASSED] 0x9A70 (TIGERLAKE)
[00:56:42] [PASSED] 0x9A40 (TIGERLAKE)
[00:56:42] [PASSED] 0x9A49 (TIGERLAKE)
[00:56:42] [PASSED] 0x9A59 (TIGERLAKE)
[00:56:42] [PASSED] 0x9A78 (TIGERLAKE)
[00:56:42] [PASSED] 0x9AC0 (TIGERLAKE)
[00:56:42] [PASSED] 0x9AC9 (TIGERLAKE)
[00:56:42] [PASSED] 0x9AD9 (TIGERLAKE)
[00:56:42] [PASSED] 0x9AF8 (TIGERLAKE)
[00:56:42] [PASSED] 0x4C80 (ROCKETLAKE)
[00:56:42] [PASSED] 0x4C8A (ROCKETLAKE)
[00:56:42] [PASSED] 0x4C8B (ROCKETLAKE)
[00:56:42] [PASSED] 0x4C8C (ROCKETLAKE)
[00:56:42] [PASSED] 0x4C90 (ROCKETLAKE)
[00:56:42] [PASSED] 0x4C9A (ROCKETLAKE)
[00:56:42] [PASSED] 0x4680 (ALDERLAKE_S)
[00:56:42] [PASSED] 0x4682 (ALDERLAKE_S)
[00:56:42] [PASSED] 0x4688 (ALDERLAKE_S)
[00:56:42] [PASSED] 0x468A (ALDERLAKE_S)
[00:56:42] [PASSED] 0x468B (ALDERLAKE_S)
[00:56:42] [PASSED] 0x4690 (ALDERLAKE_S)
[00:56:42] [PASSED] 0x4692 (ALDERLAKE_S)
[00:56:42] [PASSED] 0x4693 (ALDERLAKE_S)
[00:56:42] [PASSED] 0x46A0 (ALDERLAKE_P)
[00:56:42] [PASSED] 0x46A1 (ALDERLAKE_P)
[00:56:42] [PASSED] 0x46A2 (ALDERLAKE_P)
[00:56:42] [PASSED] 0x46A3 (ALDERLAKE_P)
[00:56:42] [PASSED] 0x46A6 (ALDERLAKE_P)
[00:56:42] [PASSED] 0x46A8 (ALDERLAKE_P)
[00:56:42] [PASSED] 0x46AA (ALDERLAKE_P)
[00:56:42] [PASSED] 0x462A (ALDERLAKE_P)
[00:56:42] [PASSED] 0x4626 (ALDERLAKE_P)
[00:56:42] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[00:56:42] [PASSED] 0x46B0 (ALDERLAKE_P)
[00:56:42] [PASSED] 0x46B1 (ALDERLAKE_P)
[00:56:42] [PASSED] 0x46B2 (ALDERLAKE_P)
[00:56:42] [PASSED] 0x46B3 (ALDERLAKE_P)
[00:56:42] [PASSED] 0x46C0 (ALDERLAKE_P)
[00:56:42] [PASSED] 0x46C1 (ALDERLAKE_P)
[00:56:42] [PASSED] 0x46C2 (ALDERLAKE_P)
[00:56:42] [PASSED] 0x46C3 (ALDERLAKE_P)
[00:56:42] [PASSED] 0x46D0 (ALDERLAKE_N)
[00:56:42] [PASSED] 0x46D1 (ALDERLAKE_N)
[00:56:42] [PASSED] 0x46D2 (ALDERLAKE_N)
[00:56:42] [PASSED] 0x46D3 (ALDERLAKE_N)
[00:56:42] [PASSED] 0x46D4 (ALDERLAKE_N)
[00:56:42] [PASSED] 0xA721 (ALDERLAKE_P)
[00:56:42] [PASSED] 0xA7A1 (ALDERLAKE_P)
[00:56:42] [PASSED] 0xA7A9 (ALDERLAKE_P)
[00:56:42] [PASSED] 0xA7AC (ALDERLAKE_P)
[00:56:42] [PASSED] 0xA7AD (ALDERLAKE_P)
[00:56:42] [PASSED] 0xA720 (ALDERLAKE_P)
[00:56:42] [PASSED] 0xA7A0 (ALDERLAKE_P)
[00:56:42] [PASSED] 0xA7A8 (ALDERLAKE_P)
[00:56:42] [PASSED] 0xA7AA (ALDERLAKE_P)
[00:56:42] [PASSED] 0xA7AB (ALDERLAKE_P)
[00:56:42] [PASSED] 0xA780 (ALDERLAKE_S)
[00:56:42] [PASSED] 0xA781 (ALDERLAKE_S)
[00:56:42] [PASSED] 0xA782 (ALDERLAKE_S)
[00:56:42] [PASSED] 0xA783 (ALDERLAKE_S)
[00:56:42] [PASSED] 0xA788 (ALDERLAKE_S)
[00:56:42] [PASSED] 0xA789 (ALDERLAKE_S)
[00:56:42] [PASSED] 0xA78A (ALDERLAKE_S)
[00:56:42] [PASSED] 0xA78B (ALDERLAKE_S)
[00:56:42] [PASSED] 0x4905 (DG1)
[00:56:42] [PASSED] 0x4906 (DG1)
[00:56:42] [PASSED] 0x4907 (DG1)
[00:56:42] [PASSED] 0x4908 (DG1)
[00:56:42] [PASSED] 0x4909 (DG1)
[00:56:42] [PASSED] 0x56C0 (DG2)
[00:56:42] [PASSED] 0x56C2 (DG2)
[00:56:42] [PASSED] 0x56C1 (DG2)
[00:56:42] [PASSED] 0x7D51 (METEORLAKE)
[00:56:42] [PASSED] 0x7DD1 (METEORLAKE)
[00:56:42] [PASSED] 0x7D41 (METEORLAKE)
[00:56:42] [PASSED] 0x7D67 (METEORLAKE)
[00:56:42] [PASSED] 0xB640 (METEORLAKE)
[00:56:42] [PASSED] 0x56A0 (DG2)
[00:56:42] [PASSED] 0x56A1 (DG2)
[00:56:42] [PASSED] 0x56A2 (DG2)
[00:56:42] [PASSED] 0x56BE (DG2)
[00:56:42] [PASSED] 0x56BF (DG2)
[00:56:42] [PASSED] 0x5690 (DG2)
[00:56:42] [PASSED] 0x5691 (DG2)
[00:56:42] [PASSED] 0x5692 (DG2)
[00:56:42] [PASSED] 0x56A5 (DG2)
[00:56:42] [PASSED] 0x56A6 (DG2)
[00:56:42] [PASSED] 0x56B0 (DG2)
[00:56:42] [PASSED] 0x56B1 (DG2)
[00:56:42] [PASSED] 0x56BA (DG2)
[00:56:42] [PASSED] 0x56BB (DG2)
[00:56:42] [PASSED] 0x56BC (DG2)
[00:56:42] [PASSED] 0x56BD (DG2)
[00:56:42] [PASSED] 0x5693 (DG2)
[00:56:42] [PASSED] 0x5694 (DG2)
[00:56:42] [PASSED] 0x5695 (DG2)
[00:56:42] [PASSED] 0x56A3 (DG2)
[00:56:42] [PASSED] 0x56A4 (DG2)
[00:56:42] [PASSED] 0x56B2 (DG2)
[00:56:42] [PASSED] 0x56B3 (DG2)
[00:56:42] [PASSED] 0x5696 (DG2)
[00:56:42] [PASSED] 0x5697 (DG2)
[00:56:42] [PASSED] 0xB69 (PVC)
[00:56:42] [PASSED] 0xB6E (PVC)
[00:56:42] [PASSED] 0xBD4 (PVC)
[00:56:42] [PASSED] 0xBD5 (PVC)
[00:56:42] [PASSED] 0xBD6 (PVC)
[00:56:42] [PASSED] 0xBD7 (PVC)
[00:56:42] [PASSED] 0xBD8 (PVC)
[00:56:42] [PASSED] 0xBD9 (PVC)
[00:56:42] [PASSED] 0xBDA (PVC)
[00:56:42] [PASSED] 0xBDB (PVC)
[00:56:42] [PASSED] 0xBE0 (PVC)
[00:56:42] [PASSED] 0xBE1 (PVC)
[00:56:42] [PASSED] 0xBE5 (PVC)
[00:56:42] [PASSED] 0x7D40 (METEORLAKE)
[00:56:42] [PASSED] 0x7D45 (METEORLAKE)
[00:56:42] [PASSED] 0x7D55 (METEORLAKE)
[00:56:42] [PASSED] 0x7D60 (METEORLAKE)
[00:56:42] [PASSED] 0x7DD5 (METEORLAKE)
[00:56:42] [PASSED] 0x6420 (LUNARLAKE)
[00:56:42] [PASSED] 0x64A0 (LUNARLAKE)
[00:56:42] [PASSED] 0x64B0 (LUNARLAKE)
[00:56:42] [PASSED] 0xE202 (BATTLEMAGE)
[00:56:42] [PASSED] 0xE209 (BATTLEMAGE)
[00:56:42] [PASSED] 0xE20B (BATTLEMAGE)
[00:56:42] [PASSED] 0xE20C (BATTLEMAGE)
[00:56:42] [PASSED] 0xE20D (BATTLEMAGE)
[00:56:42] [PASSED] 0xE210 (BATTLEMAGE)
[00:56:42] [PASSED] 0xE211 (BATTLEMAGE)
[00:56:42] [PASSED] 0xE212 (BATTLEMAGE)
[00:56:42] [PASSED] 0xE216 (BATTLEMAGE)
[00:56:42] [PASSED] 0xE220 (BATTLEMAGE)
[00:56:42] [PASSED] 0xE221 (BATTLEMAGE)
[00:56:42] [PASSED] 0xE222 (BATTLEMAGE)
[00:56:42] [PASSED] 0xE223 (BATTLEMAGE)
[00:56:42] [PASSED] 0xB080 (PANTHERLAKE)
[00:56:42] [PASSED] 0xB081 (PANTHERLAKE)
[00:56:42] [PASSED] 0xB082 (PANTHERLAKE)
[00:56:42] [PASSED] 0xB083 (PANTHERLAKE)
[00:56:42] [PASSED] 0xB084 (PANTHERLAKE)
[00:56:42] [PASSED] 0xB085 (PANTHERLAKE)
[00:56:42] [PASSED] 0xB086 (PANTHERLAKE)
[00:56:42] [PASSED] 0xB087 (PANTHERLAKE)
[00:56:42] [PASSED] 0xB08F (PANTHERLAKE)
[00:56:42] [PASSED] 0xB090 (PANTHERLAKE)
[00:56:42] [PASSED] 0xB0A0 (PANTHERLAKE)
[00:56:42] [PASSED] 0xB0B0 (PANTHERLAKE)
[00:56:42] [PASSED] 0xFD80 (PANTHERLAKE)
[00:56:42] [PASSED] 0xFD81 (PANTHERLAKE)
[00:56:42] [PASSED] 0xD740 (NOVALAKE_S)
[00:56:42] [PASSED] 0xD741 (NOVALAKE_S)
[00:56:42] [PASSED] 0xD742 (NOVALAKE_S)
[00:56:42] [PASSED] 0xD743 (NOVALAKE_S)
[00:56:42] [PASSED] 0xD744 (NOVALAKE_S)
[00:56:42] [PASSED] 0xD745 (NOVALAKE_S)
[00:56:42] [PASSED] 0x674C (CRESCENTISLAND)
[00:56:42] =============== [PASSED] check_platform_desc ===============
[00:56:42] ===================== [PASSED] xe_pci ======================
[00:56:42] =================== xe_rtp (2 subtests) ====================
[00:56:42] =============== xe_rtp_process_to_sr_tests ================
[00:56:42] [PASSED] coalesce-same-reg
[00:56:42] [PASSED] no-match-no-add
[00:56:42] [PASSED] match-or
[00:56:42] [PASSED] match-or-xfail
[00:56:42] [PASSED] no-match-no-add-multiple-rules
[00:56:42] [PASSED] two-regs-two-entries
[00:56:42] [PASSED] clr-one-set-other
[00:56:42] [PASSED] set-field
[00:56:42] [PASSED] conflict-duplicate
[00:56:42] [PASSED] conflict-not-disjoint
[00:56:42] [PASSED] conflict-reg-type
[00:56:42] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[00:56:42] ================== xe_rtp_process_tests ===================
[00:56:42] [PASSED] active1
[00:56:42] [PASSED] active2
[00:56:42] [PASSED] active-inactive
[00:56:42] [PASSED] inactive-active
[00:56:42] [PASSED] inactive-1st_or_active-inactive
[00:56:42] [PASSED] inactive-2nd_or_active-inactive
[00:56:42] [PASSED] inactive-last_or_active-inactive
[00:56:42] [PASSED] inactive-no_or_active-inactive
[00:56:42] ============== [PASSED] xe_rtp_process_tests ===============
[00:56:42] ===================== [PASSED] xe_rtp ======================
[00:56:42] ==================== xe_wa (1 subtest) =====================
[00:56:42] ======================== xe_wa_gt =========================
[00:56:42] [PASSED] TIGERLAKE B0
[00:56:42] [PASSED] DG1 A0
[00:56:42] [PASSED] DG1 B0
[00:56:42] [PASSED] ALDERLAKE_S A0
[00:56:42] [PASSED] ALDERLAKE_S B0
[00:56:42] [PASSED] ALDERLAKE_S C0
[00:56:42] [PASSED] ALDERLAKE_S D0
[00:56:42] [PASSED] ALDERLAKE_P A0
[00:56:42] [PASSED] ALDERLAKE_P B0
[00:56:42] [PASSED] ALDERLAKE_P C0
[00:56:42] [PASSED] ALDERLAKE_S RPLS D0
[00:56:42] [PASSED] ALDERLAKE_P RPLU E0
[00:56:42] [PASSED] DG2 G10 C0
[00:56:42] [PASSED] DG2 G11 B1
[00:56:42] [PASSED] DG2 G12 A1
[00:56:42] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[00:56:42] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[00:56:42] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[00:56:42] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[00:56:42] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[00:56:42] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[00:56:42] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[00:56:42] ==================== [PASSED] xe_wa_gt =====================
[00:56:42] ====================== [PASSED] xe_wa ======================
[00:56:42] ============================================================
[00:56:42] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[00:56:42] Elapsed time: 36.975s total, 4.162s configuring, 32.296s building, 0.470s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[00:56:42] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[00:56:44] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[00:57:10] Starting KUnit Kernel (1/1)...
[00:57:10] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[00:57:10] ============ drm_test_pick_cmdline (2 subtests) ============
[00:57:10] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[00:57:10] =============== drm_test_pick_cmdline_named ===============
[00:57:10] [PASSED] NTSC
[00:57:10] [PASSED] NTSC-J
[00:57:10] [PASSED] PAL
[00:57:10] [PASSED] PAL-M
[00:57:10] =========== [PASSED] drm_test_pick_cmdline_named ===========
[00:57:10] ============== [PASSED] drm_test_pick_cmdline ==============
[00:57:10] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[00:57:10] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[00:57:10] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[00:57:10] =========== drm_validate_clone_mode (2 subtests) ===========
[00:57:10] ============== drm_test_check_in_clone_mode ===============
[00:57:10] [PASSED] in_clone_mode
[00:57:10] [PASSED] not_in_clone_mode
[00:57:10] ========== [PASSED] drm_test_check_in_clone_mode ===========
[00:57:10] =============== drm_test_check_valid_clones ===============
[00:57:10] [PASSED] not_in_clone_mode
[00:57:10] [PASSED] valid_clone
[00:57:10] [PASSED] invalid_clone
[00:57:10] =========== [PASSED] drm_test_check_valid_clones ===========
[00:57:10] ============= [PASSED] drm_validate_clone_mode =============
[00:57:10] ============= drm_validate_modeset (1 subtest) =============
[00:57:10] [PASSED] drm_test_check_connector_changed_modeset
[00:57:10] ============== [PASSED] drm_validate_modeset ===============
[00:57:10] ====== drm_test_bridge_get_current_state (2 subtests) ======
[00:57:10] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[00:57:10] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[00:57:10] ======== [PASSED] drm_test_bridge_get_current_state ========
[00:57:10] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[00:57:10] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[00:57:10] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[00:57:10] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[00:57:10] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[00:57:10] ============== drm_bridge_alloc (2 subtests) ===============
[00:57:10] [PASSED] drm_test_drm_bridge_alloc_basic
[00:57:10] [PASSED] drm_test_drm_bridge_alloc_get_put
[00:57:10] ================ [PASSED] drm_bridge_alloc =================
[00:57:10] ================== drm_buddy (9 subtests) ==================
[00:57:10] [PASSED] drm_test_buddy_alloc_limit
[00:57:10] [PASSED] drm_test_buddy_alloc_optimistic
[00:57:10] [PASSED] drm_test_buddy_alloc_pessimistic
[00:57:10] [PASSED] drm_test_buddy_alloc_pathological
[00:57:10] [PASSED] drm_test_buddy_alloc_contiguous
[00:57:10] [PASSED] drm_test_buddy_alloc_clear
[00:57:10] [PASSED] drm_test_buddy_alloc_range_bias
[00:57:10] [PASSED] drm_test_buddy_fragmentation_performance
[00:57:10] [PASSED] drm_test_buddy_alloc_exceeds_max_order
[00:57:10] ==================== [PASSED] drm_buddy ====================
[00:57:10] ============= drm_cmdline_parser (40 subtests) =============
[00:57:10] [PASSED] drm_test_cmdline_force_d_only
[00:57:10] [PASSED] drm_test_cmdline_force_D_only_dvi
[00:57:10] [PASSED] drm_test_cmdline_force_D_only_hdmi
[00:57:10] [PASSED] drm_test_cmdline_force_D_only_not_digital
[00:57:10] [PASSED] drm_test_cmdline_force_e_only
[00:57:10] [PASSED] drm_test_cmdline_res
[00:57:10] [PASSED] drm_test_cmdline_res_vesa
[00:57:10] [PASSED] drm_test_cmdline_res_vesa_rblank
[00:57:10] [PASSED] drm_test_cmdline_res_rblank
[00:57:10] [PASSED] drm_test_cmdline_res_bpp
[00:57:10] [PASSED] drm_test_cmdline_res_refresh
[00:57:10] [PASSED] drm_test_cmdline_res_bpp_refresh
[00:57:10] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[00:57:10] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[00:57:10] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[00:57:10] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[00:57:10] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[00:57:10] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[00:57:10] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[00:57:10] [PASSED] drm_test_cmdline_res_margins_force_on
[00:57:10] [PASSED] drm_test_cmdline_res_vesa_margins
[00:57:10] [PASSED] drm_test_cmdline_name
[00:57:10] [PASSED] drm_test_cmdline_name_bpp
[00:57:10] [PASSED] drm_test_cmdline_name_option
[00:57:10] [PASSED] drm_test_cmdline_name_bpp_option
[00:57:10] [PASSED] drm_test_cmdline_rotate_0
[00:57:10] [PASSED] drm_test_cmdline_rotate_90
[00:57:10] [PASSED] drm_test_cmdline_rotate_180
[00:57:10] [PASSED] drm_test_cmdline_rotate_270
[00:57:10] [PASSED] drm_test_cmdline_hmirror
[00:57:10] [PASSED] drm_test_cmdline_vmirror
[00:57:10] [PASSED] drm_test_cmdline_margin_options
[00:57:10] [PASSED] drm_test_cmdline_multiple_options
[00:57:10] [PASSED] drm_test_cmdline_bpp_extra_and_option
[00:57:10] [PASSED] drm_test_cmdline_extra_and_option
[00:57:10] [PASSED] drm_test_cmdline_freestanding_options
[00:57:10] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[00:57:10] [PASSED] drm_test_cmdline_panel_orientation
[00:57:10] ================ drm_test_cmdline_invalid =================
[00:57:10] [PASSED] margin_only
[00:57:10] [PASSED] interlace_only
[00:57:10] [PASSED] res_missing_x
[00:57:10] [PASSED] res_missing_y
[00:57:10] [PASSED] res_bad_y
[00:57:10] [PASSED] res_missing_y_bpp
[00:57:10] [PASSED] res_bad_bpp
[00:57:10] [PASSED] res_bad_refresh
[00:57:10] [PASSED] res_bpp_refresh_force_on_off
[00:57:10] [PASSED] res_invalid_mode
[00:57:10] [PASSED] res_bpp_wrong_place_mode
[00:57:10] [PASSED] name_bpp_refresh
[00:57:10] [PASSED] name_refresh
[00:57:10] [PASSED] name_refresh_wrong_mode
[00:57:10] [PASSED] name_refresh_invalid_mode
[00:57:10] [PASSED] rotate_multiple
[00:57:10] [PASSED] rotate_invalid_val
[00:57:10] [PASSED] rotate_truncated
[00:57:10] [PASSED] invalid_option
[00:57:10] [PASSED] invalid_tv_option
[00:57:10] [PASSED] truncated_tv_option
[00:57:10] ============ [PASSED] drm_test_cmdline_invalid =============
[00:57:10] =============== drm_test_cmdline_tv_options ===============
[00:57:10] [PASSED] NTSC
[00:57:10] [PASSED] NTSC_443
[00:57:10] [PASSED] NTSC_J
[00:57:10] [PASSED] PAL
[00:57:10] [PASSED] PAL_M
[00:57:10] [PASSED] PAL_N
[00:57:10] [PASSED] SECAM
[00:57:10] [PASSED] MONO_525
[00:57:10] [PASSED] MONO_625
[00:57:10] =========== [PASSED] drm_test_cmdline_tv_options ===========
[00:57:10] =============== [PASSED] drm_cmdline_parser ================
[00:57:10] ========== drmm_connector_hdmi_init (20 subtests) ==========
[00:57:10] [PASSED] drm_test_connector_hdmi_init_valid
[00:57:10] [PASSED] drm_test_connector_hdmi_init_bpc_8
[00:57:10] [PASSED] drm_test_connector_hdmi_init_bpc_10
[00:57:10] [PASSED] drm_test_connector_hdmi_init_bpc_12
[00:57:10] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[00:57:10] [PASSED] drm_test_connector_hdmi_init_bpc_null
[00:57:10] [PASSED] drm_test_connector_hdmi_init_formats_empty
[00:57:10] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[00:57:10] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[00:57:10] [PASSED] supported_formats=0x9 yuv420_allowed=1
[00:57:10] [PASSED] supported_formats=0x9 yuv420_allowed=0
[00:57:10] [PASSED] supported_formats=0x3 yuv420_allowed=1
[00:57:10] [PASSED] supported_formats=0x3 yuv420_allowed=0
[00:57:10] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[00:57:10] [PASSED] drm_test_connector_hdmi_init_null_ddc
[00:57:10] [PASSED] drm_test_connector_hdmi_init_null_product
[00:57:10] [PASSED] drm_test_connector_hdmi_init_null_vendor
[00:57:10] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[00:57:10] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[00:57:10] [PASSED] drm_test_connector_hdmi_init_product_valid
[00:57:10] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[00:57:10] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[00:57:10] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[00:57:10] ========= drm_test_connector_hdmi_init_type_valid =========
[00:57:10] [PASSED] HDMI-A
[00:57:10] [PASSED] HDMI-B
[00:57:10] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[00:57:10] ======== drm_test_connector_hdmi_init_type_invalid ========
[00:57:10] [PASSED] Unknown
[00:57:10] [PASSED] VGA
[00:57:10] [PASSED] DVI-I
[00:57:10] [PASSED] DVI-D
[00:57:10] [PASSED] DVI-A
[00:57:10] [PASSED] Composite
[00:57:10] [PASSED] SVIDEO
[00:57:10] [PASSED] LVDS
[00:57:10] [PASSED] Component
[00:57:10] [PASSED] DIN
[00:57:10] [PASSED] DP
[00:57:10] [PASSED] TV
[00:57:10] [PASSED] eDP
[00:57:10] [PASSED] Virtual
[00:57:10] [PASSED] DSI
[00:57:10] [PASSED] DPI
[00:57:10] [PASSED] Writeback
[00:57:10] [PASSED] SPI
[00:57:10] [PASSED] USB
[00:57:10] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[00:57:10] ============ [PASSED] drmm_connector_hdmi_init =============
[00:57:10] ============= drmm_connector_init (3 subtests) =============
[00:57:10] [PASSED] drm_test_drmm_connector_init
[00:57:10] [PASSED] drm_test_drmm_connector_init_null_ddc
[00:57:10] ========= drm_test_drmm_connector_init_type_valid =========
[00:57:10] [PASSED] Unknown
[00:57:10] [PASSED] VGA
[00:57:10] [PASSED] DVI-I
[00:57:10] [PASSED] DVI-D
[00:57:10] [PASSED] DVI-A
[00:57:10] [PASSED] Composite
[00:57:10] [PASSED] SVIDEO
[00:57:10] [PASSED] LVDS
[00:57:10] [PASSED] Component
[00:57:10] [PASSED] DIN
[00:57:10] [PASSED] DP
[00:57:10] [PASSED] HDMI-A
[00:57:10] [PASSED] HDMI-B
[00:57:10] [PASSED] TV
[00:57:10] [PASSED] eDP
[00:57:10] [PASSED] Virtual
[00:57:10] [PASSED] DSI
[00:57:10] [PASSED] DPI
[00:57:10] [PASSED] Writeback
[00:57:10] [PASSED] SPI
[00:57:10] [PASSED] USB
[00:57:10] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[00:57:10] =============== [PASSED] drmm_connector_init ===============
[00:57:10] ========= drm_connector_dynamic_init (6 subtests) ==========
[00:57:10] [PASSED] drm_test_drm_connector_dynamic_init
[00:57:10] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[00:57:10] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[00:57:10] [PASSED] drm_test_drm_connector_dynamic_init_properties
[00:57:10] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[00:57:10] [PASSED] Unknown
[00:57:10] [PASSED] VGA
[00:57:10] [PASSED] DVI-I
[00:57:10] [PASSED] DVI-D
[00:57:10] [PASSED] DVI-A
[00:57:10] [PASSED] Composite
[00:57:10] [PASSED] SVIDEO
[00:57:10] [PASSED] LVDS
[00:57:10] [PASSED] Component
[00:57:10] [PASSED] DIN
[00:57:10] [PASSED] DP
[00:57:10] [PASSED] HDMI-A
[00:57:10] [PASSED] HDMI-B
[00:57:10] [PASSED] TV
[00:57:10] [PASSED] eDP
[00:57:10] [PASSED] Virtual
[00:57:10] [PASSED] DSI
[00:57:10] [PASSED] DPI
[00:57:10] [PASSED] Writeback
[00:57:10] [PASSED] SPI
[00:57:10] [PASSED] USB
[00:57:10] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[00:57:10] ======== drm_test_drm_connector_dynamic_init_name =========
[00:57:10] [PASSED] Unknown
[00:57:10] [PASSED] VGA
[00:57:10] [PASSED] DVI-I
[00:57:10] [PASSED] DVI-D
[00:57:10] [PASSED] DVI-A
[00:57:10] [PASSED] Composite
[00:57:10] [PASSED] SVIDEO
[00:57:10] [PASSED] LVDS
[00:57:10] [PASSED] Component
[00:57:10] [PASSED] DIN
[00:57:10] [PASSED] DP
[00:57:10] [PASSED] HDMI-A
[00:57:10] [PASSED] HDMI-B
[00:57:10] [PASSED] TV
[00:57:10] [PASSED] eDP
[00:57:10] [PASSED] Virtual
[00:57:10] [PASSED] DSI
[00:57:10] [PASSED] DPI
[00:57:10] [PASSED] Writeback
[00:57:10] [PASSED] SPI
[00:57:10] [PASSED] USB
[00:57:10] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[00:57:10] =========== [PASSED] drm_connector_dynamic_init ============
[00:57:10] ==== drm_connector_dynamic_register_early (4 subtests) =====
[00:57:10] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[00:57:10] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[00:57:10] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[00:57:10] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[00:57:10] ====== [PASSED] drm_connector_dynamic_register_early =======
[00:57:10] ======= drm_connector_dynamic_register (7 subtests) ========
[00:57:10] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[00:57:10] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[00:57:10] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[00:57:10] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[00:57:10] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[00:57:10] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[00:57:10] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[00:57:10] ========= [PASSED] drm_connector_dynamic_register ==========
[00:57:10] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[00:57:10] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[00:57:10] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[00:57:10] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[00:57:10] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[00:57:10] ========== drm_test_get_tv_mode_from_name_valid ===========
[00:57:10] [PASSED] NTSC
[00:57:10] [PASSED] NTSC-443
[00:57:10] [PASSED] NTSC-J
[00:57:10] [PASSED] PAL
[00:57:10] [PASSED] PAL-M
[00:57:10] [PASSED] PAL-N
[00:57:10] [PASSED] SECAM
[00:57:10] [PASSED] Mono
[00:57:10] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[00:57:10] [PASSED] drm_test_get_tv_mode_from_name_truncated
[00:57:10] ============ [PASSED] drm_get_tv_mode_from_name ============
[00:57:10] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[00:57:10] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[00:57:10] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[00:57:10] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[00:57:10] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[00:57:10] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[00:57:10] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[00:57:10] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[00:57:10] [PASSED] VIC 96
[00:57:10] [PASSED] VIC 97
[00:57:10] [PASSED] VIC 101
[00:57:10] [PASSED] VIC 102
[00:57:10] [PASSED] VIC 106
[00:57:10] [PASSED] VIC 107
[00:57:10] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[00:57:10] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[00:57:10] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[00:57:10] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[00:57:10] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[00:57:10] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[00:57:10] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[00:57:10] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[00:57:10] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[00:57:10] [PASSED] Automatic
[00:57:10] [PASSED] Full
[00:57:10] [PASSED] Limited 16:235
[00:57:10] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[00:57:10] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[00:57:10] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[00:57:10] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[00:57:10] === drm_test_drm_hdmi_connector_get_output_format_name ====
[00:57:10] [PASSED] RGB
[00:57:10] [PASSED] YUV 4:2:0
[00:57:10] [PASSED] YUV 4:2:2
[00:57:10] [PASSED] YUV 4:4:4
[00:57:10] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[00:57:10] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[00:57:10] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[00:57:10] ============= drm_damage_helper (21 subtests) ==============
[00:57:10] [PASSED] drm_test_damage_iter_no_damage
[00:57:10] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[00:57:10] [PASSED] drm_test_damage_iter_no_damage_src_moved
[00:57:10] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[00:57:10] [PASSED] drm_test_damage_iter_no_damage_not_visible
[00:57:10] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[00:57:10] [PASSED] drm_test_damage_iter_no_damage_no_fb
[00:57:10] [PASSED] drm_test_damage_iter_simple_damage
[00:57:10] [PASSED] drm_test_damage_iter_single_damage
[00:57:10] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[00:57:10] [PASSED] drm_test_damage_iter_single_damage_outside_src
[00:57:10] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[00:57:10] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[00:57:10] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[00:57:10] [PASSED] drm_test_damage_iter_single_damage_src_moved
[00:57:10] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[00:57:10] [PASSED] drm_test_damage_iter_damage
[00:57:10] [PASSED] drm_test_damage_iter_damage_one_intersect
[00:57:10] [PASSED] drm_test_damage_iter_damage_one_outside
[00:57:10] [PASSED] drm_test_damage_iter_damage_src_moved
[00:57:10] [PASSED] drm_test_damage_iter_damage_not_visible
[00:57:10] ================ [PASSED] drm_damage_helper ================
[00:57:10] ============== drm_dp_mst_helper (3 subtests) ==============
[00:57:10] ============== drm_test_dp_mst_calc_pbn_mode ==============
[00:57:10] [PASSED] Clock 154000 BPP 30 DSC disabled
[00:57:10] [PASSED] Clock 234000 BPP 30 DSC disabled
[00:57:10] [PASSED] Clock 297000 BPP 24 DSC disabled
[00:57:10] [PASSED] Clock 332880 BPP 24 DSC enabled
[00:57:10] [PASSED] Clock 324540 BPP 24 DSC enabled
[00:57:10] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[00:57:10] ============== drm_test_dp_mst_calc_pbn_div ===============
[00:57:10] [PASSED] Link rate 2000000 lane count 4
[00:57:10] [PASSED] Link rate 2000000 lane count 2
[00:57:10] [PASSED] Link rate 2000000 lane count 1
[00:57:10] [PASSED] Link rate 1350000 lane count 4
[00:57:10] [PASSED] Link rate 1350000 lane count 2
[00:57:10] [PASSED] Link rate 1350000 lane count 1
[00:57:10] [PASSED] Link rate 1000000 lane count 4
[00:57:10] [PASSED] Link rate 1000000 lane count 2
[00:57:10] [PASSED] Link rate 1000000 lane count 1
[00:57:10] [PASSED] Link rate 810000 lane count 4
[00:57:10] [PASSED] Link rate 810000 lane count 2
[00:57:10] [PASSED] Link rate 810000 lane count 1
[00:57:10] [PASSED] Link rate 540000 lane count 4
[00:57:10] [PASSED] Link rate 540000 lane count 2
[00:57:10] [PASSED] Link rate 540000 lane count 1
[00:57:10] [PASSED] Link rate 270000 lane count 4
[00:57:10] [PASSED] Link rate 270000 lane count 2
[00:57:10] [PASSED] Link rate 270000 lane count 1
[00:57:10] [PASSED] Link rate 162000 lane count 4
[00:57:10] [PASSED] Link rate 162000 lane count 2
[00:57:10] [PASSED] Link rate 162000 lane count 1
[00:57:10] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[00:57:10] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[00:57:10] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[00:57:10] [PASSED] DP_POWER_UP_PHY with port number
[00:57:10] [PASSED] DP_POWER_DOWN_PHY with port number
[00:57:10] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[00:57:10] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[00:57:10] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[00:57:10] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[00:57:10] [PASSED] DP_QUERY_PAYLOAD with port number
[00:57:10] [PASSED] DP_QUERY_PAYLOAD with VCPI
[00:57:10] [PASSED] DP_REMOTE_DPCD_READ with port number
[00:57:10] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[00:57:10] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[00:57:10] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[00:57:10] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[00:57:10] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[00:57:10] [PASSED] DP_REMOTE_I2C_READ with port number
[00:57:10] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[00:57:10] [PASSED] DP_REMOTE_I2C_READ with transactions array
[00:57:10] [PASSED] DP_REMOTE_I2C_WRITE with port number
[00:57:10] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[00:57:10] [PASSED] DP_REMOTE_I2C_WRITE with data array
[00:57:10] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[00:57:10] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[00:57:10] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[00:57:10] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[00:57:10] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[00:57:10] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[00:57:10] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[00:57:10] ================ [PASSED] drm_dp_mst_helper ================
[00:57:10] ================== drm_exec (7 subtests) ===================
[00:57:10] [PASSED] sanitycheck
[00:57:10] [PASSED] test_lock
[00:57:10] [PASSED] test_lock_unlock
[00:57:10] [PASSED] test_duplicates
[00:57:10] [PASSED] test_prepare
[00:57:10] [PASSED] test_prepare_array
[00:57:10] [PASSED] test_multiple_loops
[00:57:10] ==================== [PASSED] drm_exec =====================
[00:57:10] =========== drm_format_helper_test (17 subtests) ===========
[00:57:10] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[00:57:10] [PASSED] single_pixel_source_buffer
[00:57:10] [PASSED] single_pixel_clip_rectangle
[00:57:10] [PASSED] well_known_colors
[00:57:10] [PASSED] destination_pitch
[00:57:10] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[00:57:10] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[00:57:10] [PASSED] single_pixel_source_buffer
[00:57:10] [PASSED] single_pixel_clip_rectangle
[00:57:10] [PASSED] well_known_colors
[00:57:10] [PASSED] destination_pitch
[00:57:10] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[00:57:10] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[00:57:10] [PASSED] single_pixel_source_buffer
[00:57:10] [PASSED] single_pixel_clip_rectangle
[00:57:10] [PASSED] well_known_colors
[00:57:10] [PASSED] destination_pitch
[00:57:10] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[00:57:10] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[00:57:10] [PASSED] single_pixel_source_buffer
[00:57:10] [PASSED] single_pixel_clip_rectangle
[00:57:10] [PASSED] well_known_colors
[00:57:10] [PASSED] destination_pitch
[00:57:10] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[00:57:10] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[00:57:10] [PASSED] single_pixel_source_buffer
[00:57:10] [PASSED] single_pixel_clip_rectangle
[00:57:10] [PASSED] well_known_colors
[00:57:10] [PASSED] destination_pitch
[00:57:10] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[00:57:10] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[00:57:10] [PASSED] single_pixel_source_buffer
[00:57:10] [PASSED] single_pixel_clip_rectangle
[00:57:10] [PASSED] well_known_colors
[00:57:10] [PASSED] destination_pitch
[00:57:10] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[00:57:10] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[00:57:10] [PASSED] single_pixel_source_buffer
[00:57:10] [PASSED] single_pixel_clip_rectangle
[00:57:10] [PASSED] well_known_colors
[00:57:10] [PASSED] destination_pitch
[00:57:10] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[00:57:10] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[00:57:10] [PASSED] single_pixel_source_buffer
[00:57:10] [PASSED] single_pixel_clip_rectangle
[00:57:10] [PASSED] well_known_colors
[00:57:10] [PASSED] destination_pitch
[00:57:10] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[00:57:10] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[00:57:10] [PASSED] single_pixel_source_buffer
[00:57:10] [PASSED] single_pixel_clip_rectangle
[00:57:10] [PASSED] well_known_colors
[00:57:10] [PASSED] destination_pitch
[00:57:10] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[00:57:10] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[00:57:10] [PASSED] single_pixel_source_buffer
[00:57:10] [PASSED] single_pixel_clip_rectangle
[00:57:10] [PASSED] well_known_colors
[00:57:10] [PASSED] destination_pitch
[00:57:10] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[00:57:10] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[00:57:10] [PASSED] single_pixel_source_buffer
[00:57:10] [PASSED] single_pixel_clip_rectangle
[00:57:10] [PASSED] well_known_colors
[00:57:10] [PASSED] destination_pitch
[00:57:10] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[00:57:10] ============== drm_test_fb_xrgb8888_to_mono ===============
[00:57:10] [PASSED] single_pixel_source_buffer
[00:57:10] [PASSED] single_pixel_clip_rectangle
[00:57:10] [PASSED] well_known_colors
[00:57:10] [PASSED] destination_pitch
[00:57:10] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[00:57:10] ==================== drm_test_fb_swab =====================
[00:57:10] [PASSED] single_pixel_source_buffer
[00:57:10] [PASSED] single_pixel_clip_rectangle
[00:57:10] [PASSED] well_known_colors
[00:57:10] [PASSED] destination_pitch
[00:57:10] ================ [PASSED] drm_test_fb_swab =================
[00:57:10] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[00:57:10] [PASSED] single_pixel_source_buffer
[00:57:10] [PASSED] single_pixel_clip_rectangle
[00:57:10] [PASSED] well_known_colors
[00:57:10] [PASSED] destination_pitch
[00:57:10] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[00:57:10] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[00:57:10] [PASSED] single_pixel_source_buffer
[00:57:10] [PASSED] single_pixel_clip_rectangle
[00:57:10] [PASSED] well_known_colors
[00:57:10] [PASSED] destination_pitch
[00:57:10] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[00:57:10] ================= drm_test_fb_clip_offset =================
[00:57:10] [PASSED] pass through
[00:57:10] [PASSED] horizontal offset
[00:57:10] [PASSED] vertical offset
[00:57:10] [PASSED] horizontal and vertical offset
[00:57:10] [PASSED] horizontal offset (custom pitch)
[00:57:10] [PASSED] vertical offset (custom pitch)
[00:57:10] [PASSED] horizontal and vertical offset (custom pitch)
[00:57:10] ============= [PASSED] drm_test_fb_clip_offset =============
[00:57:10] =================== drm_test_fb_memcpy ====================
[00:57:10] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[00:57:10] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[00:57:10] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[00:57:10] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[00:57:10] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[00:57:10] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[00:57:10] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[00:57:10] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[00:57:10] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[00:57:10] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[00:57:10] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[00:57:10] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[00:57:10] =============== [PASSED] drm_test_fb_memcpy ================
[00:57:10] ============= [PASSED] drm_format_helper_test ==============
[00:57:10] ================= drm_format (18 subtests) =================
[00:57:10] [PASSED] drm_test_format_block_width_invalid
[00:57:10] [PASSED] drm_test_format_block_width_one_plane
[00:57:10] [PASSED] drm_test_format_block_width_two_plane
[00:57:10] [PASSED] drm_test_format_block_width_three_plane
[00:57:10] [PASSED] drm_test_format_block_width_tiled
[00:57:10] [PASSED] drm_test_format_block_height_invalid
[00:57:10] [PASSED] drm_test_format_block_height_one_plane
[00:57:10] [PASSED] drm_test_format_block_height_two_plane
[00:57:10] [PASSED] drm_test_format_block_height_three_plane
[00:57:10] [PASSED] drm_test_format_block_height_tiled
[00:57:10] [PASSED] drm_test_format_min_pitch_invalid
[00:57:10] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[00:57:10] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[00:57:10] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[00:57:10] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[00:57:10] [PASSED] drm_test_format_min_pitch_two_plane
[00:57:10] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[00:57:10] [PASSED] drm_test_format_min_pitch_tiled
[00:57:10] =================== [PASSED] drm_format ====================
[00:57:10] ============== drm_framebuffer (10 subtests) ===============
[00:57:10] ========== drm_test_framebuffer_check_src_coords ==========
[00:57:10] [PASSED] Success: source fits into fb
[00:57:10] [PASSED] Fail: overflowing fb with x-axis coordinate
[00:57:10] [PASSED] Fail: overflowing fb with y-axis coordinate
[00:57:10] [PASSED] Fail: overflowing fb with source width
[00:57:10] [PASSED] Fail: overflowing fb with source height
[00:57:10] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[00:57:10] [PASSED] drm_test_framebuffer_cleanup
[00:57:10] =============== drm_test_framebuffer_create ===============
[00:57:10] [PASSED] ABGR8888 normal sizes
[00:57:10] [PASSED] ABGR8888 max sizes
[00:57:10] [PASSED] ABGR8888 pitch greater than min required
[00:57:10] [PASSED] ABGR8888 pitch less than min required
[00:57:10] [PASSED] ABGR8888 Invalid width
[00:57:10] [PASSED] ABGR8888 Invalid buffer handle
[00:57:10] [PASSED] No pixel format
[00:57:10] [PASSED] ABGR8888 Width 0
[00:57:10] [PASSED] ABGR8888 Height 0
[00:57:10] [PASSED] ABGR8888 Out of bound height * pitch combination
[00:57:10] [PASSED] ABGR8888 Large buffer offset
[00:57:10] [PASSED] ABGR8888 Buffer offset for inexistent plane
[00:57:10] [PASSED] ABGR8888 Invalid flag
[00:57:10] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[00:57:10] [PASSED] ABGR8888 Valid buffer modifier
[00:57:10] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[00:57:10] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[00:57:10] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[00:57:10] [PASSED] NV12 Normal sizes
[00:57:10] [PASSED] NV12 Max sizes
[00:57:10] [PASSED] NV12 Invalid pitch
[00:57:10] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[00:57:10] [PASSED] NV12 different modifier per-plane
[00:57:10] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[00:57:10] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[00:57:10] [PASSED] NV12 Modifier for inexistent plane
[00:57:10] [PASSED] NV12 Handle for inexistent plane
[00:57:10] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[00:57:10] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[00:57:10] [PASSED] YVU420 Normal sizes
[00:57:10] [PASSED] YVU420 Max sizes
[00:57:10] [PASSED] YVU420 Invalid pitch
[00:57:10] [PASSED] YVU420 Different pitches
[00:57:10] [PASSED] YVU420 Different buffer offsets/pitches
[00:57:10] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[00:57:10] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[00:57:10] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[00:57:10] [PASSED] YVU420 Valid modifier
[00:57:10] [PASSED] YVU420 Different modifiers per plane
[00:57:10] [PASSED] YVU420 Modifier for inexistent plane
[00:57:10] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[00:57:10] [PASSED] X0L2 Normal sizes
[00:57:10] [PASSED] X0L2 Max sizes
[00:57:10] [PASSED] X0L2 Invalid pitch
[00:57:10] [PASSED] X0L2 Pitch greater than minimum required
[00:57:10] [PASSED] X0L2 Handle for inexistent plane
[00:57:10] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[00:57:10] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[00:57:10] [PASSED] X0L2 Valid modifier
[00:57:10] [PASSED] X0L2 Modifier for inexistent plane
[00:57:10] =========== [PASSED] drm_test_framebuffer_create ===========
[00:57:10] [PASSED] drm_test_framebuffer_free
[00:57:10] [PASSED] drm_test_framebuffer_init
[00:57:10] [PASSED] drm_test_framebuffer_init_bad_format
[00:57:10] [PASSED] drm_test_framebuffer_init_dev_mismatch
[00:57:10] [PASSED] drm_test_framebuffer_lookup
[00:57:10] [PASSED] drm_test_framebuffer_lookup_inexistent
[00:57:10] [PASSED] drm_test_framebuffer_modifiers_not_supported
[00:57:10] ================= [PASSED] drm_framebuffer =================
[00:57:10] ================ drm_gem_shmem (8 subtests) ================
[00:57:10] [PASSED] drm_gem_shmem_test_obj_create
[00:57:10] [PASSED] drm_gem_shmem_test_obj_create_private
[00:57:10] [PASSED] drm_gem_shmem_test_pin_pages
[00:57:10] [PASSED] drm_gem_shmem_test_vmap
[00:57:10] [PASSED] drm_gem_shmem_test_get_sg_table
[00:57:10] [PASSED] drm_gem_shmem_test_get_pages_sgt
[00:57:10] [PASSED] drm_gem_shmem_test_madvise
[00:57:10] [PASSED] drm_gem_shmem_test_purge
[00:57:10] ================== [PASSED] drm_gem_shmem ==================
[00:57:10] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[00:57:10] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[00:57:10] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[00:57:10] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[00:57:10] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[00:57:10] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[00:57:10] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[00:57:10] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[00:57:10] [PASSED] Automatic
[00:57:10] [PASSED] Full
[00:57:10] [PASSED] Limited 16:235
[00:57:10] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[00:57:10] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[00:57:10] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[00:57:10] [PASSED] drm_test_check_disable_connector
[00:57:10] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[00:57:10] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[00:57:10] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[00:57:10] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[00:57:10] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[00:57:10] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[00:57:10] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[00:57:10] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[00:57:10] [PASSED] drm_test_check_output_bpc_dvi
[00:57:10] [PASSED] drm_test_check_output_bpc_format_vic_1
[00:57:10] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[00:57:10] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[00:57:10] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[00:57:10] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[00:57:10] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[00:57:10] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[00:57:10] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[00:57:10] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[00:57:10] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[00:57:10] [PASSED] drm_test_check_broadcast_rgb_value
[00:57:10] [PASSED] drm_test_check_bpc_8_value
[00:57:10] [PASSED] drm_test_check_bpc_10_value
[00:57:10] [PASSED] drm_test_check_bpc_12_value
[00:57:10] [PASSED] drm_test_check_format_value
[00:57:10] [PASSED] drm_test_check_tmds_char_value
[00:57:10] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[00:57:10] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[00:57:10] [PASSED] drm_test_check_mode_valid
[00:57:10] [PASSED] drm_test_check_mode_valid_reject
[00:57:10] [PASSED] drm_test_check_mode_valid_reject_rate
[00:57:10] [PASSED] drm_test_check_mode_valid_reject_max_clock
[00:57:10] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[00:57:10] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[00:57:10] [PASSED] drm_test_check_infoframes
[00:57:10] [PASSED] drm_test_check_reject_avi_infoframe
[00:57:10] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[00:57:10] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[00:57:10] [PASSED] drm_test_check_reject_audio_infoframe
[00:57:10] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[00:57:10] ================= drm_managed (2 subtests) =================
[00:57:10] [PASSED] drm_test_managed_release_action
[00:57:10] [PASSED] drm_test_managed_run_action
[00:57:10] =================== [PASSED] drm_managed ===================
[00:57:10] =================== drm_mm (6 subtests) ====================
[00:57:10] [PASSED] drm_test_mm_init
[00:57:10] [PASSED] drm_test_mm_debug
[00:57:10] [PASSED] drm_test_mm_align32
[00:57:10] [PASSED] drm_test_mm_align64
[00:57:10] [PASSED] drm_test_mm_lowest
[00:57:10] [PASSED] drm_test_mm_highest
[00:57:10] ===================== [PASSED] drm_mm ======================
[00:57:10] ============= drm_modes_analog_tv (5 subtests) =============
[00:57:10] [PASSED] drm_test_modes_analog_tv_mono_576i
[00:57:10] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[00:57:10] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[00:57:10] [PASSED] drm_test_modes_analog_tv_pal_576i
[00:57:10] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[00:57:10] =============== [PASSED] drm_modes_analog_tv ===============
[00:57:10] ============== drm_plane_helper (2 subtests) ===============
[00:57:10] =============== drm_test_check_plane_state ================
[00:57:10] [PASSED] clipping_simple
[00:57:10] [PASSED] clipping_rotate_reflect
[00:57:10] [PASSED] positioning_simple
[00:57:10] [PASSED] upscaling
[00:57:10] [PASSED] downscaling
[00:57:10] [PASSED] rounding1
[00:57:10] [PASSED] rounding2
[00:57:10] [PASSED] rounding3
[00:57:10] [PASSED] rounding4
[00:57:10] =========== [PASSED] drm_test_check_plane_state ============
[00:57:10] =========== drm_test_check_invalid_plane_state ============
[00:57:10] [PASSED] positioning_invalid
[00:57:10] [PASSED] upscaling_invalid
[00:57:10] [PASSED] downscaling_invalid
[00:57:10] ======= [PASSED] drm_test_check_invalid_plane_state ========
[00:57:10] ================ [PASSED] drm_plane_helper =================
[00:57:10] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[00:57:10] ====== drm_test_connector_helper_tv_get_modes_check =======
[00:57:10] [PASSED] None
[00:57:10] [PASSED] PAL
[00:57:10] [PASSED] NTSC
[00:57:10] [PASSED] Both, NTSC Default
[00:57:10] [PASSED] Both, PAL Default
[00:57:10] [PASSED] Both, NTSC Default, with PAL on command-line
[00:57:10] [PASSED] Both, PAL Default, with NTSC on command-line
[00:57:10] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[00:57:10] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[00:57:10] ================== drm_rect (9 subtests) ===================
[00:57:10] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[00:57:10] [PASSED] drm_test_rect_clip_scaled_not_clipped
[00:57:10] [PASSED] drm_test_rect_clip_scaled_clipped
[00:57:10] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[00:57:10] ================= drm_test_rect_intersect =================
[00:57:10] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[00:57:10] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[00:57:10] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[00:57:10] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[00:57:10] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[00:57:10] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[00:57:10] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[00:57:10] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[00:57:10] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[00:57:10] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[00:57:10] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[00:57:10] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[00:57:10] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[00:57:10] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[00:57:10] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
stty: 'standard input': Inappropriate ioctl for device
[00:57:10] ============= [PASSED] drm_test_rect_intersect =============
[00:57:10] ================ drm_test_rect_calc_hscale ================
[00:57:10] [PASSED] normal use
[00:57:10] [PASSED] out of max range
[00:57:10] [PASSED] out of min range
[00:57:10] [PASSED] zero dst
[00:57:10] [PASSED] negative src
[00:57:10] [PASSED] negative dst
[00:57:10] ============ [PASSED] drm_test_rect_calc_hscale ============
[00:57:10] ================ drm_test_rect_calc_vscale ================
[00:57:10] [PASSED] normal use
[00:57:10] [PASSED] out of max range
[00:57:10] [PASSED] out of min range
[00:57:10] [PASSED] zero dst
[00:57:10] [PASSED] negative src
[00:57:10] [PASSED] negative dst
[00:57:10] ============ [PASSED] drm_test_rect_calc_vscale ============
[00:57:10] ================== drm_test_rect_rotate ===================
[00:57:10] [PASSED] reflect-x
[00:57:10] [PASSED] reflect-y
[00:57:10] [PASSED] rotate-0
[00:57:10] [PASSED] rotate-90
[00:57:10] [PASSED] rotate-180
[00:57:10] [PASSED] rotate-270
[00:57:10] ============== [PASSED] drm_test_rect_rotate ===============
[00:57:10] ================ drm_test_rect_rotate_inv =================
[00:57:10] [PASSED] reflect-x
[00:57:10] [PASSED] reflect-y
[00:57:10] [PASSED] rotate-0
[00:57:10] [PASSED] rotate-90
[00:57:10] [PASSED] rotate-180
[00:57:10] [PASSED] rotate-270
[00:57:10] ============ [PASSED] drm_test_rect_rotate_inv =============
[00:57:10] ==================== [PASSED] drm_rect =====================
[00:57:10] ============ drm_sysfb_modeset_test (1 subtest) ============
[00:57:10] ============ drm_test_sysfb_build_fourcc_list =============
[00:57:10] [PASSED] no native formats
[00:57:10] [PASSED] XRGB8888 as native format
[00:57:10] [PASSED] remove duplicates
[00:57:10] [PASSED] convert alpha formats
[00:57:10] [PASSED] random formats
[00:57:10] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[00:57:10] ============= [PASSED] drm_sysfb_modeset_test ==============
[00:57:10] ================== drm_fixp (2 subtests) ===================
[00:57:10] [PASSED] drm_test_int2fixp
[00:57:10] [PASSED] drm_test_sm2fixp
[00:57:10] ==================== [PASSED] drm_fixp =====================
[00:57:10] ============================================================
[00:57:10] Testing complete. Ran 630 tests: passed: 630
[00:57:10] Elapsed time: 28.092s total, 1.614s configuring, 26.011s building, 0.436s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[00:57:10] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[00:57:12] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[00:57:21] Starting KUnit Kernel (1/1)...
[00:57:21] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[00:57:21] ================= ttm_device (5 subtests) ==================
[00:57:21] [PASSED] ttm_device_init_basic
[00:57:21] [PASSED] ttm_device_init_multiple
[00:57:21] [PASSED] ttm_device_fini_basic
[00:57:21] [PASSED] ttm_device_init_no_vma_man
[00:57:21] ================== ttm_device_init_pools ==================
[00:57:21] [PASSED] No DMA allocations, no DMA32 required
[00:57:21] [PASSED] DMA allocations, DMA32 required
[00:57:21] [PASSED] No DMA allocations, DMA32 required
[00:57:21] [PASSED] DMA allocations, no DMA32 required
[00:57:21] ============== [PASSED] ttm_device_init_pools ==============
[00:57:21] =================== [PASSED] ttm_device ====================
[00:57:21] ================== ttm_pool (8 subtests) ===================
[00:57:21] ================== ttm_pool_alloc_basic ===================
[00:57:21] [PASSED] One page
[00:57:21] [PASSED] More than one page
[00:57:21] [PASSED] Above the allocation limit
[00:57:22] [PASSED] One page, with coherent DMA mappings enabled
[00:57:22] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[00:57:22] ============== [PASSED] ttm_pool_alloc_basic ===============
[00:57:22] ============== ttm_pool_alloc_basic_dma_addr ==============
[00:57:22] [PASSED] One page
[00:57:22] [PASSED] More than one page
[00:57:22] [PASSED] Above the allocation limit
[00:57:22] [PASSED] One page, with coherent DMA mappings enabled
[00:57:22] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[00:57:22] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[00:57:22] [PASSED] ttm_pool_alloc_order_caching_match
[00:57:22] [PASSED] ttm_pool_alloc_caching_mismatch
[00:57:22] [PASSED] ttm_pool_alloc_order_mismatch
[00:57:22] [PASSED] ttm_pool_free_dma_alloc
[00:57:22] [PASSED] ttm_pool_free_no_dma_alloc
[00:57:22] [PASSED] ttm_pool_fini_basic
[00:57:22] ==================== [PASSED] ttm_pool =====================
[00:57:22] ================ ttm_resource (8 subtests) =================
[00:57:22] ================= ttm_resource_init_basic =================
[00:57:22] [PASSED] Init resource in TTM_PL_SYSTEM
[00:57:22] [PASSED] Init resource in TTM_PL_VRAM
[00:57:22] [PASSED] Init resource in a private placement
[00:57:22] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[00:57:22] ============= [PASSED] ttm_resource_init_basic =============
[00:57:22] [PASSED] ttm_resource_init_pinned
[00:57:22] [PASSED] ttm_resource_fini_basic
[00:57:22] [PASSED] ttm_resource_manager_init_basic
[00:57:22] [PASSED] ttm_resource_manager_usage_basic
[00:57:22] [PASSED] ttm_resource_manager_set_used_basic
[00:57:22] [PASSED] ttm_sys_man_alloc_basic
[00:57:22] [PASSED] ttm_sys_man_free_basic
[00:57:22] ================== [PASSED] ttm_resource ===================
[00:57:22] =================== ttm_tt (15 subtests) ===================
[00:57:22] ==================== ttm_tt_init_basic ====================
[00:57:22] [PASSED] Page-aligned size
[00:57:22] [PASSED] Extra pages requested
[00:57:22] ================ [PASSED] ttm_tt_init_basic ================
[00:57:22] [PASSED] ttm_tt_init_misaligned
[00:57:22] [PASSED] ttm_tt_fini_basic
[00:57:22] [PASSED] ttm_tt_fini_sg
[00:57:22] [PASSED] ttm_tt_fini_shmem
[00:57:22] [PASSED] ttm_tt_create_basic
[00:57:22] [PASSED] ttm_tt_create_invalid_bo_type
[00:57:22] [PASSED] ttm_tt_create_ttm_exists
[00:57:22] [PASSED] ttm_tt_create_failed
[00:57:22] [PASSED] ttm_tt_destroy_basic
[00:57:22] [PASSED] ttm_tt_populate_null_ttm
[00:57:22] [PASSED] ttm_tt_populate_populated_ttm
[00:57:22] [PASSED] ttm_tt_unpopulate_basic
[00:57:22] [PASSED] ttm_tt_unpopulate_empty_ttm
[00:57:22] [PASSED] ttm_tt_swapin_basic
[00:57:22] ===================== [PASSED] ttm_tt ======================
[00:57:22] =================== ttm_bo (14 subtests) ===================
[00:57:22] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[00:57:22] [PASSED] Cannot be interrupted and sleeps
[00:57:22] [PASSED] Cannot be interrupted, locks straight away
[00:57:22] [PASSED] Can be interrupted, sleeps
[00:57:22] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[00:57:22] [PASSED] ttm_bo_reserve_locked_no_sleep
[00:57:22] [PASSED] ttm_bo_reserve_no_wait_ticket
[00:57:22] [PASSED] ttm_bo_reserve_double_resv
[00:57:22] [PASSED] ttm_bo_reserve_interrupted
[00:57:22] [PASSED] ttm_bo_reserve_deadlock
[00:57:22] [PASSED] ttm_bo_unreserve_basic
[00:57:22] [PASSED] ttm_bo_unreserve_pinned
[00:57:22] [PASSED] ttm_bo_unreserve_bulk
[00:57:22] [PASSED] ttm_bo_fini_basic
[00:57:22] [PASSED] ttm_bo_fini_shared_resv
[00:57:22] [PASSED] ttm_bo_pin_basic
[00:57:22] [PASSED] ttm_bo_pin_unpin_resource
[00:57:22] [PASSED] ttm_bo_multiple_pin_one_unpin
[00:57:22] ===================== [PASSED] ttm_bo ======================
[00:57:22] ============== ttm_bo_validate (21 subtests) ===============
[00:57:22] ============== ttm_bo_init_reserved_sys_man ===============
[00:57:22] [PASSED] Buffer object for userspace
[00:57:22] [PASSED] Kernel buffer object
[00:57:22] [PASSED] Shared buffer object
[00:57:22] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[00:57:22] ============== ttm_bo_init_reserved_mock_man ==============
[00:57:22] [PASSED] Buffer object for userspace
[00:57:22] [PASSED] Kernel buffer object
[00:57:22] [PASSED] Shared buffer object
[00:57:22] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[00:57:22] [PASSED] ttm_bo_init_reserved_resv
[00:57:22] ================== ttm_bo_validate_basic ==================
[00:57:22] [PASSED] Buffer object for userspace
[00:57:22] [PASSED] Kernel buffer object
[00:57:22] [PASSED] Shared buffer object
[00:57:22] ============== [PASSED] ttm_bo_validate_basic ==============
[00:57:22] [PASSED] ttm_bo_validate_invalid_placement
[00:57:22] ============= ttm_bo_validate_same_placement ==============
[00:57:22] [PASSED] System manager
[00:57:22] [PASSED] VRAM manager
[00:57:22] ========= [PASSED] ttm_bo_validate_same_placement ==========
[00:57:22] [PASSED] ttm_bo_validate_failed_alloc
[00:57:22] [PASSED] ttm_bo_validate_pinned
[00:57:22] [PASSED] ttm_bo_validate_busy_placement
[00:57:22] ================ ttm_bo_validate_multihop =================
[00:57:22] [PASSED] Buffer object for userspace
[00:57:22] [PASSED] Kernel buffer object
[00:57:22] [PASSED] Shared buffer object
[00:57:22] ============ [PASSED] ttm_bo_validate_multihop =============
[00:57:22] ========== ttm_bo_validate_no_placement_signaled ==========
[00:57:22] [PASSED] Buffer object in system domain, no page vector
[00:57:22] [PASSED] Buffer object in system domain with an existing page vector
[00:57:22] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[00:57:22] ======== ttm_bo_validate_no_placement_not_signaled ========
[00:57:22] [PASSED] Buffer object for userspace
[00:57:22] [PASSED] Kernel buffer object
[00:57:22] [PASSED] Shared buffer object
[00:57:22] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[00:57:22] [PASSED] ttm_bo_validate_move_fence_signaled
[00:57:22] ========= ttm_bo_validate_move_fence_not_signaled =========
[00:57:22] [PASSED] Waits for GPU
[00:57:22] [PASSED] Tries to lock straight away
[00:57:22] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[00:57:22] [PASSED] ttm_bo_validate_happy_evict
[00:57:22] [PASSED] ttm_bo_validate_all_pinned_evict
[00:57:22] [PASSED] ttm_bo_validate_allowed_only_evict
[00:57:22] [PASSED] ttm_bo_validate_deleted_evict
[00:57:22] [PASSED] ttm_bo_validate_busy_domain_evict
[00:57:22] [PASSED] ttm_bo_validate_evict_gutting
[00:57:22] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[00:57:22] ================= [PASSED] ttm_bo_validate =================
[00:57:22] ============================================================
[00:57:22] Testing complete. Ran 101 tests: passed: 101
[00:57:22] Elapsed time: 11.462s total, 1.689s configuring, 9.556s building, 0.187s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.BAT: failure for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor
2026-02-04 0:25 [PATCH 1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor Matt Roper
2026-02-04 0:25 ` [PATCH 2/2] drm/xe/xe3p_xpc: XeCore mask spans four registers Matt Roper
2026-02-04 0:57 ` ✓ CI.KUnit: success for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor Patchwork
@ 2026-02-04 1:31 ` Patchwork
2026-02-04 14:53 ` ✓ CI.KUnit: success for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor (rev2) Patchwork
` (7 subsequent siblings)
10 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-02-04 1:31 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 424 bytes --]
== Series Details ==
Series: series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor
URL : https://patchwork.freedesktop.org/series/161113/
State : failure
== Summary ==
ERROR: The runconfig 'xe-4493-ff449f153b0966cfd7a7291670c927f6b6971d2a_BAT' does not exist in the database
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v1/index.html
[-- Attachment #2: Type: text/html, Size: 989 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ CI.KUnit: success for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor (rev2)
2026-02-04 0:25 [PATCH 1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor Matt Roper
` (2 preceding siblings ...)
2026-02-04 1:31 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2026-02-04 14:53 ` Patchwork
2026-02-04 15:48 ` ✗ Xe.CI.FULL: failure for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor Patchwork
` (6 subsequent siblings)
10 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-02-04 14:53 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
== Series Details ==
Series: series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor (rev2)
URL : https://patchwork.freedesktop.org/series/161113/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[14:50:26] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:50:33] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[14:51:42] Starting KUnit Kernel (1/1)...
[14:51:42] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:51:42] ================== guc_buf (11 subtests) ===================
[14:51:42] [PASSED] test_smallest
[14:51:42] [PASSED] test_largest
[14:51:42] [PASSED] test_granular
[14:51:42] [PASSED] test_unique
[14:51:42] [PASSED] test_overlap
[14:51:42] [PASSED] test_reusable
[14:51:42] [PASSED] test_too_big
[14:51:42] [PASSED] test_flush
[14:51:42] [PASSED] test_lookup
[14:51:42] [PASSED] test_data
[14:51:42] [PASSED] test_class
[14:51:42] ===================== [PASSED] guc_buf =====================
[14:51:42] =================== guc_dbm (7 subtests) ===================
[14:51:42] [PASSED] test_empty
[14:51:42] [PASSED] test_default
[14:51:42] ======================== test_size ========================
[14:51:42] [PASSED] 4
[14:51:42] [PASSED] 8
[14:51:42] [PASSED] 32
[14:51:42] [PASSED] 256
[14:51:42] ==================== [PASSED] test_size ====================
[14:51:42] ======================= test_reuse ========================
[14:51:42] [PASSED] 4
[14:51:42] [PASSED] 8
[14:51:42] [PASSED] 32
[14:51:42] [PASSED] 256
[14:51:42] =================== [PASSED] test_reuse ====================
[14:51:42] =================== test_range_overlap ====================
[14:51:42] [PASSED] 4
[14:51:42] [PASSED] 8
[14:51:42] [PASSED] 32
[14:51:42] [PASSED] 256
[14:51:42] =============== [PASSED] test_range_overlap ================
[14:51:42] =================== test_range_compact ====================
[14:51:42] [PASSED] 4
[14:51:42] [PASSED] 8
[14:51:42] [PASSED] 32
[14:51:42] [PASSED] 256
[14:51:42] =============== [PASSED] test_range_compact ================
[14:51:42] ==================== test_range_spare =====================
[14:51:42] [PASSED] 4
[14:51:42] [PASSED] 8
[14:51:42] [PASSED] 32
[14:51:42] [PASSED] 256
[14:51:42] ================ [PASSED] test_range_spare =================
[14:51:42] ===================== [PASSED] guc_dbm =====================
[14:51:42] =================== guc_idm (6 subtests) ===================
[14:51:42] [PASSED] bad_init
[14:51:42] [PASSED] no_init
[14:51:42] [PASSED] init_fini
[14:51:42] [PASSED] check_used
[14:51:42] [PASSED] check_quota
[14:51:42] [PASSED] check_all
[14:51:42] ===================== [PASSED] guc_idm =====================
[14:51:42] ================== no_relay (3 subtests) ===================
[14:51:42] [PASSED] xe_drops_guc2pf_if_not_ready
[14:51:42] [PASSED] xe_drops_guc2vf_if_not_ready
[14:51:42] [PASSED] xe_rejects_send_if_not_ready
[14:51:42] ==================== [PASSED] no_relay =====================
[14:51:42] ================== pf_relay (14 subtests) ==================
[14:51:42] [PASSED] pf_rejects_guc2pf_too_short
[14:51:42] [PASSED] pf_rejects_guc2pf_too_long
[14:51:42] [PASSED] pf_rejects_guc2pf_no_payload
[14:51:42] [PASSED] pf_fails_no_payload
[14:51:42] [PASSED] pf_fails_bad_origin
[14:51:42] [PASSED] pf_fails_bad_type
[14:51:42] [PASSED] pf_txn_reports_error
[14:51:42] [PASSED] pf_txn_sends_pf2guc
[14:51:42] [PASSED] pf_sends_pf2guc
[14:51:42] [SKIPPED] pf_loopback_nop
[14:51:42] [SKIPPED] pf_loopback_echo
[14:51:42] [SKIPPED] pf_loopback_fail
[14:51:42] [SKIPPED] pf_loopback_busy
[14:51:42] [SKIPPED] pf_loopback_retry
[14:51:42] ==================== [PASSED] pf_relay =====================
[14:51:42] ================== vf_relay (3 subtests) ===================
[14:51:42] [PASSED] vf_rejects_guc2vf_too_short
[14:51:42] [PASSED] vf_rejects_guc2vf_too_long
[14:51:42] [PASSED] vf_rejects_guc2vf_no_payload
[14:51:42] ==================== [PASSED] vf_relay =====================
[14:51:42] ================ pf_gt_config (6 subtests) =================
[14:51:42] [PASSED] fair_contexts_1vf
[14:51:42] [PASSED] fair_doorbells_1vf
[14:51:42] [PASSED] fair_ggtt_1vf
[14:51:42] ====================== fair_contexts ======================
[14:51:42] [PASSED] 1 VF
[14:51:42] [PASSED] 2 VFs
[14:51:42] [PASSED] 3 VFs
[14:51:42] [PASSED] 4 VFs
[14:51:42] [PASSED] 5 VFs
[14:51:42] [PASSED] 6 VFs
[14:51:42] [PASSED] 7 VFs
[14:51:42] [PASSED] 8 VFs
[14:51:42] [PASSED] 9 VFs
[14:51:42] [PASSED] 10 VFs
[14:51:42] [PASSED] 11 VFs
[14:51:42] [PASSED] 12 VFs
[14:51:42] [PASSED] 13 VFs
[14:51:42] [PASSED] 14 VFs
[14:51:42] [PASSED] 15 VFs
[14:51:42] [PASSED] 16 VFs
[14:51:42] [PASSED] 17 VFs
[14:51:42] [PASSED] 18 VFs
[14:51:42] [PASSED] 19 VFs
[14:51:42] [PASSED] 20 VFs
[14:51:42] [PASSED] 21 VFs
[14:51:42] [PASSED] 22 VFs
[14:51:42] [PASSED] 23 VFs
[14:51:42] [PASSED] 24 VFs
[14:51:42] [PASSED] 25 VFs
[14:51:42] [PASSED] 26 VFs
[14:51:42] [PASSED] 27 VFs
[14:51:42] [PASSED] 28 VFs
[14:51:42] [PASSED] 29 VFs
[14:51:42] [PASSED] 30 VFs
[14:51:42] [PASSED] 31 VFs
[14:51:42] [PASSED] 32 VFs
[14:51:42] [PASSED] 33 VFs
[14:51:42] [PASSED] 34 VFs
[14:51:42] [PASSED] 35 VFs
[14:51:42] [PASSED] 36 VFs
[14:51:42] [PASSED] 37 VFs
[14:51:42] [PASSED] 38 VFs
[14:51:42] [PASSED] 39 VFs
[14:51:42] [PASSED] 40 VFs
[14:51:42] [PASSED] 41 VFs
[14:51:42] [PASSED] 42 VFs
[14:51:42] [PASSED] 43 VFs
[14:51:42] [PASSED] 44 VFs
[14:51:42] [PASSED] 45 VFs
[14:51:42] [PASSED] 46 VFs
[14:51:42] [PASSED] 47 VFs
[14:51:42] [PASSED] 48 VFs
[14:51:42] [PASSED] 49 VFs
[14:51:42] [PASSED] 50 VFs
[14:51:42] [PASSED] 51 VFs
[14:51:42] [PASSED] 52 VFs
[14:51:42] [PASSED] 53 VFs
[14:51:42] [PASSED] 54 VFs
[14:51:42] [PASSED] 55 VFs
[14:51:42] [PASSED] 56 VFs
[14:51:42] [PASSED] 57 VFs
[14:51:42] [PASSED] 58 VFs
[14:51:42] [PASSED] 59 VFs
[14:51:42] [PASSED] 60 VFs
[14:51:42] [PASSED] 61 VFs
[14:51:42] [PASSED] 62 VFs
[14:51:42] [PASSED] 63 VFs
[14:51:42] ================== [PASSED] fair_contexts ==================
[14:51:42] ===================== fair_doorbells ======================
[14:51:42] [PASSED] 1 VF
[14:51:42] [PASSED] 2 VFs
[14:51:42] [PASSED] 3 VFs
[14:51:42] [PASSED] 4 VFs
[14:51:42] [PASSED] 5 VFs
[14:51:42] [PASSED] 6 VFs
[14:51:42] [PASSED] 7 VFs
[14:51:42] [PASSED] 8 VFs
[14:51:42] [PASSED] 9 VFs
[14:51:42] [PASSED] 10 VFs
[14:51:42] [PASSED] 11 VFs
[14:51:42] [PASSED] 12 VFs
[14:51:42] [PASSED] 13 VFs
[14:51:42] [PASSED] 14 VFs
[14:51:42] [PASSED] 15 VFs
[14:51:42] [PASSED] 16 VFs
[14:51:42] [PASSED] 17 VFs
[14:51:42] [PASSED] 18 VFs
[14:51:42] [PASSED] 19 VFs
[14:51:42] [PASSED] 20 VFs
[14:51:42] [PASSED] 21 VFs
[14:51:42] [PASSED] 22 VFs
[14:51:42] [PASSED] 23 VFs
[14:51:42] [PASSED] 24 VFs
[14:51:42] [PASSED] 25 VFs
[14:51:42] [PASSED] 26 VFs
[14:51:43] [PASSED] 27 VFs
[14:51:43] [PASSED] 28 VFs
[14:51:43] [PASSED] 29 VFs
[14:51:43] [PASSED] 30 VFs
[14:51:43] [PASSED] 31 VFs
[14:51:43] [PASSED] 32 VFs
[14:51:43] [PASSED] 33 VFs
[14:51:43] [PASSED] 34 VFs
[14:51:43] [PASSED] 35 VFs
[14:51:43] [PASSED] 36 VFs
[14:51:43] [PASSED] 37 VFs
[14:51:43] [PASSED] 38 VFs
[14:51:43] [PASSED] 39 VFs
[14:51:43] [PASSED] 40 VFs
[14:51:43] [PASSED] 41 VFs
[14:51:43] [PASSED] 42 VFs
[14:51:43] [PASSED] 43 VFs
[14:51:43] [PASSED] 44 VFs
[14:51:43] [PASSED] 45 VFs
[14:51:43] [PASSED] 46 VFs
[14:51:43] [PASSED] 47 VFs
[14:51:43] [PASSED] 48 VFs
[14:51:43] [PASSED] 49 VFs
[14:51:43] [PASSED] 50 VFs
[14:51:43] [PASSED] 51 VFs
[14:51:43] [PASSED] 52 VFs
[14:51:43] [PASSED] 53 VFs
[14:51:43] [PASSED] 54 VFs
[14:51:43] [PASSED] 55 VFs
[14:51:43] [PASSED] 56 VFs
[14:51:43] [PASSED] 57 VFs
[14:51:43] [PASSED] 58 VFs
[14:51:43] [PASSED] 59 VFs
[14:51:43] [PASSED] 60 VFs
[14:51:43] [PASSED] 61 VFs
[14:51:43] [PASSED] 62 VFs
[14:51:43] [PASSED] 63 VFs
[14:51:43] ================= [PASSED] fair_doorbells ==================
[14:51:43] ======================== fair_ggtt ========================
[14:51:43] [PASSED] 1 VF
[14:51:43] [PASSED] 2 VFs
[14:51:43] [PASSED] 3 VFs
[14:51:43] [PASSED] 4 VFs
[14:51:43] [PASSED] 5 VFs
[14:51:43] [PASSED] 6 VFs
[14:51:43] [PASSED] 7 VFs
[14:51:43] [PASSED] 8 VFs
[14:51:43] [PASSED] 9 VFs
[14:51:43] [PASSED] 10 VFs
[14:51:43] [PASSED] 11 VFs
[14:51:43] [PASSED] 12 VFs
[14:51:43] [PASSED] 13 VFs
[14:51:43] [PASSED] 14 VFs
[14:51:43] [PASSED] 15 VFs
[14:51:43] [PASSED] 16 VFs
[14:51:43] [PASSED] 17 VFs
[14:51:43] [PASSED] 18 VFs
[14:51:43] [PASSED] 19 VFs
[14:51:43] [PASSED] 20 VFs
[14:51:43] [PASSED] 21 VFs
[14:51:43] [PASSED] 22 VFs
[14:51:43] [PASSED] 23 VFs
[14:51:43] [PASSED] 24 VFs
[14:51:43] [PASSED] 25 VFs
[14:51:43] [PASSED] 26 VFs
[14:51:43] [PASSED] 27 VFs
[14:51:43] [PASSED] 28 VFs
[14:51:43] [PASSED] 29 VFs
[14:51:43] [PASSED] 30 VFs
[14:51:43] [PASSED] 31 VFs
[14:51:43] [PASSED] 32 VFs
[14:51:43] [PASSED] 33 VFs
[14:51:43] [PASSED] 34 VFs
[14:51:43] [PASSED] 35 VFs
[14:51:43] [PASSED] 36 VFs
[14:51:43] [PASSED] 37 VFs
[14:51:43] [PASSED] 38 VFs
[14:51:43] [PASSED] 39 VFs
[14:51:43] [PASSED] 40 VFs
[14:51:43] [PASSED] 41 VFs
[14:51:43] [PASSED] 42 VFs
[14:51:43] [PASSED] 43 VFs
[14:51:43] [PASSED] 44 VFs
[14:51:43] [PASSED] 45 VFs
[14:51:43] [PASSED] 46 VFs
[14:51:43] [PASSED] 47 VFs
[14:51:43] [PASSED] 48 VFs
[14:51:43] [PASSED] 49 VFs
[14:51:43] [PASSED] 50 VFs
[14:51:43] [PASSED] 51 VFs
[14:51:43] [PASSED] 52 VFs
[14:51:43] [PASSED] 53 VFs
[14:51:43] [PASSED] 54 VFs
[14:51:43] [PASSED] 55 VFs
[14:51:43] [PASSED] 56 VFs
[14:51:43] [PASSED] 57 VFs
[14:51:43] [PASSED] 58 VFs
[14:51:43] [PASSED] 59 VFs
[14:51:43] [PASSED] 60 VFs
[14:51:43] [PASSED] 61 VFs
[14:51:43] [PASSED] 62 VFs
[14:51:43] [PASSED] 63 VFs
[14:51:43] ==================== [PASSED] fair_ggtt ====================
[14:51:43] ================== [PASSED] pf_gt_config ===================
[14:51:43] ===================== lmtt (1 subtest) =====================
[14:51:43] ======================== test_ops =========================
[14:51:43] [PASSED] 2-level
[14:51:43] [PASSED] multi-level
[14:51:43] ==================== [PASSED] test_ops =====================
[14:51:43] ====================== [PASSED] lmtt =======================
[14:51:43] ================= pf_service (11 subtests) =================
[14:51:43] [PASSED] pf_negotiate_any
[14:51:43] [PASSED] pf_negotiate_base_match
[14:51:43] [PASSED] pf_negotiate_base_newer
[14:51:43] [PASSED] pf_negotiate_base_next
[14:51:43] [SKIPPED] pf_negotiate_base_older
[14:51:43] [PASSED] pf_negotiate_base_prev
[14:51:43] [PASSED] pf_negotiate_latest_match
[14:51:43] [PASSED] pf_negotiate_latest_newer
[14:51:43] [PASSED] pf_negotiate_latest_next
[14:51:43] [SKIPPED] pf_negotiate_latest_older
[14:51:43] [SKIPPED] pf_negotiate_latest_prev
[14:51:43] =================== [PASSED] pf_service ====================
[14:51:43] ================= xe_guc_g2g (2 subtests) ==================
[14:51:43] ============== xe_live_guc_g2g_kunit_default ==============
[14:51:43] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[14:51:43] ============== xe_live_guc_g2g_kunit_allmem ===============
[14:51:43] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[14:51:43] =================== [SKIPPED] xe_guc_g2g ===================
[14:51:43] =================== xe_mocs (2 subtests) ===================
[14:51:43] ================ xe_live_mocs_kernel_kunit ================
[14:51:43] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[14:51:43] ================ xe_live_mocs_reset_kunit =================
[14:51:43] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[14:51:43] ==================== [SKIPPED] xe_mocs =====================
[14:51:43] ================= xe_migrate (2 subtests) ==================
[14:51:43] ================= xe_migrate_sanity_kunit =================
[14:51:43] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[14:51:43] ================== xe_validate_ccs_kunit ==================
[14:51:43] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[14:51:43] =================== [SKIPPED] xe_migrate ===================
[14:51:43] ================== xe_dma_buf (1 subtest) ==================
[14:51:43] ==================== xe_dma_buf_kunit =====================
[14:51:43] ================ [SKIPPED] xe_dma_buf_kunit ================
[14:51:43] =================== [SKIPPED] xe_dma_buf ===================
[14:51:43] ================= xe_bo_shrink (1 subtest) =================
[14:51:43] =================== xe_bo_shrink_kunit ====================
[14:51:43] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[14:51:43] ================== [SKIPPED] xe_bo_shrink ==================
[14:51:43] ==================== xe_bo (2 subtests) ====================
[14:51:43] ================== xe_ccs_migrate_kunit ===================
[14:51:43] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[14:51:43] ==================== xe_bo_evict_kunit ====================
[14:51:43] =============== [SKIPPED] xe_bo_evict_kunit ================
[14:51:43] ===================== [SKIPPED] xe_bo ======================
[14:51:43] ==================== args (13 subtests) ====================
[14:51:43] [PASSED] count_args_test
[14:51:43] [PASSED] call_args_example
[14:51:43] [PASSED] call_args_test
[14:51:43] [PASSED] drop_first_arg_example
[14:51:43] [PASSED] drop_first_arg_test
[14:51:43] [PASSED] first_arg_example
[14:51:43] [PASSED] first_arg_test
[14:51:43] [PASSED] last_arg_example
[14:51:43] [PASSED] last_arg_test
[14:51:43] [PASSED] pick_arg_example
[14:51:43] [PASSED] if_args_example
[14:51:43] [PASSED] if_args_test
[14:51:43] [PASSED] sep_comma_example
[14:51:43] ====================== [PASSED] args =======================
[14:51:43] =================== xe_pci (3 subtests) ====================
[14:51:43] ==================== check_graphics_ip ====================
[14:51:43] [PASSED] 12.00 Xe_LP
[14:51:43] [PASSED] 12.10 Xe_LP+
[14:51:43] [PASSED] 12.55 Xe_HPG
[14:51:43] [PASSED] 12.60 Xe_HPC
[14:51:43] [PASSED] 12.70 Xe_LPG
[14:51:43] [PASSED] 12.71 Xe_LPG
[14:51:43] [PASSED] 12.74 Xe_LPG+
[14:51:43] [PASSED] 20.01 Xe2_HPG
[14:51:43] [PASSED] 20.02 Xe2_HPG
[14:51:43] [PASSED] 20.04 Xe2_LPG
[14:51:43] [PASSED] 30.00 Xe3_LPG
[14:51:43] [PASSED] 30.01 Xe3_LPG
[14:51:43] [PASSED] 30.03 Xe3_LPG
[14:51:43] [PASSED] 30.04 Xe3_LPG
[14:51:43] [PASSED] 30.05 Xe3_LPG
[14:51:43] [PASSED] 35.11 Xe3p_XPC
[14:51:43] ================ [PASSED] check_graphics_ip ================
[14:51:43] ===================== check_media_ip ======================
[14:51:43] [PASSED] 12.00 Xe_M
[14:51:43] [PASSED] 12.55 Xe_HPM
[14:51:43] [PASSED] 13.00 Xe_LPM+
[14:51:43] [PASSED] 13.01 Xe2_HPM
[14:51:43] [PASSED] 20.00 Xe2_LPM
[14:51:43] [PASSED] 30.00 Xe3_LPM
[14:51:43] [PASSED] 30.02 Xe3_LPM
[14:51:43] [PASSED] 35.00 Xe3p_LPM
[14:51:43] [PASSED] 35.03 Xe3p_HPM
[14:51:43] ================= [PASSED] check_media_ip ==================
[14:51:43] =================== check_platform_desc ===================
[14:51:43] [PASSED] 0x9A60 (TIGERLAKE)
[14:51:43] [PASSED] 0x9A68 (TIGERLAKE)
[14:51:43] [PASSED] 0x9A70 (TIGERLAKE)
[14:51:43] [PASSED] 0x9A40 (TIGERLAKE)
[14:51:43] [PASSED] 0x9A49 (TIGERLAKE)
[14:51:43] [PASSED] 0x9A59 (TIGERLAKE)
[14:51:43] [PASSED] 0x9A78 (TIGERLAKE)
[14:51:43] [PASSED] 0x9AC0 (TIGERLAKE)
[14:51:43] [PASSED] 0x9AC9 (TIGERLAKE)
[14:51:43] [PASSED] 0x9AD9 (TIGERLAKE)
[14:51:43] [PASSED] 0x9AF8 (TIGERLAKE)
[14:51:43] [PASSED] 0x4C80 (ROCKETLAKE)
[14:51:43] [PASSED] 0x4C8A (ROCKETLAKE)
[14:51:43] [PASSED] 0x4C8B (ROCKETLAKE)
[14:51:43] [PASSED] 0x4C8C (ROCKETLAKE)
[14:51:43] [PASSED] 0x4C90 (ROCKETLAKE)
[14:51:43] [PASSED] 0x4C9A (ROCKETLAKE)
[14:51:43] [PASSED] 0x4680 (ALDERLAKE_S)
[14:51:43] [PASSED] 0x4682 (ALDERLAKE_S)
[14:51:43] [PASSED] 0x4688 (ALDERLAKE_S)
[14:51:43] [PASSED] 0x468A (ALDERLAKE_S)
[14:51:43] [PASSED] 0x468B (ALDERLAKE_S)
[14:51:43] [PASSED] 0x4690 (ALDERLAKE_S)
[14:51:43] [PASSED] 0x4692 (ALDERLAKE_S)
[14:51:43] [PASSED] 0x4693 (ALDERLAKE_S)
[14:51:43] [PASSED] 0x46A0 (ALDERLAKE_P)
[14:51:43] [PASSED] 0x46A1 (ALDERLAKE_P)
[14:51:43] [PASSED] 0x46A2 (ALDERLAKE_P)
[14:51:43] [PASSED] 0x46A3 (ALDERLAKE_P)
[14:51:43] [PASSED] 0x46A6 (ALDERLAKE_P)
[14:51:43] [PASSED] 0x46A8 (ALDERLAKE_P)
[14:51:43] [PASSED] 0x46AA (ALDERLAKE_P)
[14:51:43] [PASSED] 0x462A (ALDERLAKE_P)
[14:51:43] [PASSED] 0x4626 (ALDERLAKE_P)
[14:51:43] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[14:51:43] [PASSED] 0x46B0 (ALDERLAKE_P)
[14:51:43] [PASSED] 0x46B1 (ALDERLAKE_P)
[14:51:43] [PASSED] 0x46B2 (ALDERLAKE_P)
[14:51:43] [PASSED] 0x46B3 (ALDERLAKE_P)
[14:51:43] [PASSED] 0x46C0 (ALDERLAKE_P)
[14:51:43] [PASSED] 0x46C1 (ALDERLAKE_P)
[14:51:43] [PASSED] 0x46C2 (ALDERLAKE_P)
[14:51:43] [PASSED] 0x46C3 (ALDERLAKE_P)
[14:51:43] [PASSED] 0x46D0 (ALDERLAKE_N)
[14:51:43] [PASSED] 0x46D1 (ALDERLAKE_N)
[14:51:43] [PASSED] 0x46D2 (ALDERLAKE_N)
[14:51:43] [PASSED] 0x46D3 (ALDERLAKE_N)
[14:51:43] [PASSED] 0x46D4 (ALDERLAKE_N)
[14:51:43] [PASSED] 0xA721 (ALDERLAKE_P)
[14:51:43] [PASSED] 0xA7A1 (ALDERLAKE_P)
[14:51:43] [PASSED] 0xA7A9 (ALDERLAKE_P)
[14:51:43] [PASSED] 0xA7AC (ALDERLAKE_P)
[14:51:43] [PASSED] 0xA7AD (ALDERLAKE_P)
[14:51:43] [PASSED] 0xA720 (ALDERLAKE_P)
[14:51:43] [PASSED] 0xA7A0 (ALDERLAKE_P)
[14:51:43] [PASSED] 0xA7A8 (ALDERLAKE_P)
[14:51:43] [PASSED] 0xA7AA (ALDERLAKE_P)
[14:51:43] [PASSED] 0xA7AB (ALDERLAKE_P)
[14:51:43] [PASSED] 0xA780 (ALDERLAKE_S)
[14:51:43] [PASSED] 0xA781 (ALDERLAKE_S)
[14:51:43] [PASSED] 0xA782 (ALDERLAKE_S)
[14:51:43] [PASSED] 0xA783 (ALDERLAKE_S)
[14:51:43] [PASSED] 0xA788 (ALDERLAKE_S)
[14:51:43] [PASSED] 0xA789 (ALDERLAKE_S)
[14:51:43] [PASSED] 0xA78A (ALDERLAKE_S)
[14:51:43] [PASSED] 0xA78B (ALDERLAKE_S)
[14:51:43] [PASSED] 0x4905 (DG1)
[14:51:43] [PASSED] 0x4906 (DG1)
[14:51:43] [PASSED] 0x4907 (DG1)
[14:51:43] [PASSED] 0x4908 (DG1)
[14:51:43] [PASSED] 0x4909 (DG1)
[14:51:43] [PASSED] 0x56C0 (DG2)
[14:51:43] [PASSED] 0x56C2 (DG2)
[14:51:43] [PASSED] 0x56C1 (DG2)
[14:51:43] [PASSED] 0x7D51 (METEORLAKE)
[14:51:43] [PASSED] 0x7DD1 (METEORLAKE)
[14:51:43] [PASSED] 0x7D41 (METEORLAKE)
[14:51:43] [PASSED] 0x7D67 (METEORLAKE)
[14:51:43] [PASSED] 0xB640 (METEORLAKE)
[14:51:43] [PASSED] 0x56A0 (DG2)
[14:51:43] [PASSED] 0x56A1 (DG2)
[14:51:43] [PASSED] 0x56A2 (DG2)
[14:51:43] [PASSED] 0x56BE (DG2)
[14:51:43] [PASSED] 0x56BF (DG2)
[14:51:43] [PASSED] 0x5690 (DG2)
[14:51:43] [PASSED] 0x5691 (DG2)
[14:51:43] [PASSED] 0x5692 (DG2)
[14:51:43] [PASSED] 0x56A5 (DG2)
[14:51:43] [PASSED] 0x56A6 (DG2)
[14:51:43] [PASSED] 0x56B0 (DG2)
[14:51:43] [PASSED] 0x56B1 (DG2)
[14:51:43] [PASSED] 0x56BA (DG2)
[14:51:43] [PASSED] 0x56BB (DG2)
[14:51:43] [PASSED] 0x56BC (DG2)
[14:51:43] [PASSED] 0x56BD (DG2)
[14:51:43] [PASSED] 0x5693 (DG2)
[14:51:43] [PASSED] 0x5694 (DG2)
[14:51:43] [PASSED] 0x5695 (DG2)
[14:51:43] [PASSED] 0x56A3 (DG2)
[14:51:43] [PASSED] 0x56A4 (DG2)
[14:51:43] [PASSED] 0x56B2 (DG2)
[14:51:43] [PASSED] 0x56B3 (DG2)
[14:51:43] [PASSED] 0x5696 (DG2)
[14:51:43] [PASSED] 0x5697 (DG2)
[14:51:43] [PASSED] 0xB69 (PVC)
[14:51:43] [PASSED] 0xB6E (PVC)
[14:51:43] [PASSED] 0xBD4 (PVC)
[14:51:43] [PASSED] 0xBD5 (PVC)
[14:51:43] [PASSED] 0xBD6 (PVC)
[14:51:43] [PASSED] 0xBD7 (PVC)
[14:51:43] [PASSED] 0xBD8 (PVC)
[14:51:43] [PASSED] 0xBD9 (PVC)
[14:51:43] [PASSED] 0xBDA (PVC)
[14:51:43] [PASSED] 0xBDB (PVC)
[14:51:43] [PASSED] 0xBE0 (PVC)
[14:51:43] [PASSED] 0xBE1 (PVC)
[14:51:43] [PASSED] 0xBE5 (PVC)
[14:51:43] [PASSED] 0x7D40 (METEORLAKE)
[14:51:43] [PASSED] 0x7D45 (METEORLAKE)
[14:51:43] [PASSED] 0x7D55 (METEORLAKE)
[14:51:43] [PASSED] 0x7D60 (METEORLAKE)
[14:51:43] [PASSED] 0x7DD5 (METEORLAKE)
[14:51:43] [PASSED] 0x6420 (LUNARLAKE)
[14:51:43] [PASSED] 0x64A0 (LUNARLAKE)
[14:51:43] [PASSED] 0x64B0 (LUNARLAKE)
[14:51:43] [PASSED] 0xE202 (BATTLEMAGE)
[14:51:43] [PASSED] 0xE209 (BATTLEMAGE)
[14:51:43] [PASSED] 0xE20B (BATTLEMAGE)
[14:51:43] [PASSED] 0xE20C (BATTLEMAGE)
[14:51:43] [PASSED] 0xE20D (BATTLEMAGE)
[14:51:43] [PASSED] 0xE210 (BATTLEMAGE)
[14:51:43] [PASSED] 0xE211 (BATTLEMAGE)
[14:51:43] [PASSED] 0xE212 (BATTLEMAGE)
[14:51:43] [PASSED] 0xE216 (BATTLEMAGE)
[14:51:43] [PASSED] 0xE220 (BATTLEMAGE)
[14:51:43] [PASSED] 0xE221 (BATTLEMAGE)
[14:51:43] [PASSED] 0xE222 (BATTLEMAGE)
[14:51:43] [PASSED] 0xE223 (BATTLEMAGE)
[14:51:43] [PASSED] 0xB080 (PANTHERLAKE)
[14:51:43] [PASSED] 0xB081 (PANTHERLAKE)
[14:51:43] [PASSED] 0xB082 (PANTHERLAKE)
[14:51:43] [PASSED] 0xB083 (PANTHERLAKE)
[14:51:43] [PASSED] 0xB084 (PANTHERLAKE)
[14:51:43] [PASSED] 0xB085 (PANTHERLAKE)
[14:51:43] [PASSED] 0xB086 (PANTHERLAKE)
[14:51:43] [PASSED] 0xB087 (PANTHERLAKE)
[14:51:43] [PASSED] 0xB08F (PANTHERLAKE)
[14:51:43] [PASSED] 0xB090 (PANTHERLAKE)
[14:51:43] [PASSED] 0xB0A0 (PANTHERLAKE)
[14:51:43] [PASSED] 0xB0B0 (PANTHERLAKE)
[14:51:43] [PASSED] 0xFD80 (PANTHERLAKE)
[14:51:43] [PASSED] 0xFD81 (PANTHERLAKE)
[14:51:43] [PASSED] 0xD740 (NOVALAKE_S)
[14:51:43] [PASSED] 0xD741 (NOVALAKE_S)
[14:51:43] [PASSED] 0xD742 (NOVALAKE_S)
[14:51:43] [PASSED] 0xD743 (NOVALAKE_S)
[14:51:43] [PASSED] 0xD744 (NOVALAKE_S)
[14:51:43] [PASSED] 0xD745 (NOVALAKE_S)
[14:51:43] [PASSED] 0x674C (CRESCENTISLAND)
[14:51:43] =============== [PASSED] check_platform_desc ===============
[14:51:43] ===================== [PASSED] xe_pci ======================
[14:51:43] =================== xe_rtp (2 subtests) ====================
[14:51:43] =============== xe_rtp_process_to_sr_tests ================
[14:51:43] [PASSED] coalesce-same-reg
[14:51:43] [PASSED] no-match-no-add
[14:51:43] [PASSED] match-or
[14:51:43] [PASSED] match-or-xfail
[14:51:43] [PASSED] no-match-no-add-multiple-rules
[14:51:43] [PASSED] two-regs-two-entries
[14:51:43] [PASSED] clr-one-set-other
[14:51:43] [PASSED] set-field
[14:51:43] [PASSED] conflict-duplicate
[14:51:43] [PASSED] conflict-not-disjoint
[14:51:43] [PASSED] conflict-reg-type
[14:51:43] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[14:51:43] ================== xe_rtp_process_tests ===================
[14:51:43] [PASSED] active1
[14:51:43] [PASSED] active2
[14:51:43] [PASSED] active-inactive
[14:51:43] [PASSED] inactive-active
[14:51:43] [PASSED] inactive-1st_or_active-inactive
[14:51:43] [PASSED] inactive-2nd_or_active-inactive
[14:51:43] [PASSED] inactive-last_or_active-inactive
[14:51:43] [PASSED] inactive-no_or_active-inactive
[14:51:43] ============== [PASSED] xe_rtp_process_tests ===============
[14:51:43] ===================== [PASSED] xe_rtp ======================
[14:51:43] ==================== xe_wa (1 subtest) =====================
[14:51:43] ======================== xe_wa_gt =========================
[14:51:43] [PASSED] TIGERLAKE B0
[14:51:43] [PASSED] DG1 A0
[14:51:43] [PASSED] DG1 B0
[14:51:43] [PASSED] ALDERLAKE_S A0
[14:51:43] [PASSED] ALDERLAKE_S B0
[14:51:43] [PASSED] ALDERLAKE_S C0
[14:51:43] [PASSED] ALDERLAKE_S D0
[14:51:43] [PASSED] ALDERLAKE_P A0
[14:51:43] [PASSED] ALDERLAKE_P B0
[14:51:43] [PASSED] ALDERLAKE_P C0
[14:51:43] [PASSED] ALDERLAKE_S RPLS D0
[14:51:43] [PASSED] ALDERLAKE_P RPLU E0
[14:51:43] [PASSED] DG2 G10 C0
[14:51:43] [PASSED] DG2 G11 B1
[14:51:43] [PASSED] DG2 G12 A1
[14:51:43] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[14:51:43] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[14:51:43] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[14:51:43] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[14:51:43] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[14:51:43] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[14:51:43] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[14:51:43] ==================== [PASSED] xe_wa_gt =====================
[14:51:43] ====================== [PASSED] xe_wa ======================
[14:51:43] ============================================================
[14:51:43] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[14:51:43] Elapsed time: 76.484s total, 6.971s configuring, 68.637s building, 0.850s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[14:51:43] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:51:46] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[14:52:37] Starting KUnit Kernel (1/1)...
[14:52:37] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:52:37] ============ drm_test_pick_cmdline (2 subtests) ============
[14:52:37] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[14:52:37] =============== drm_test_pick_cmdline_named ===============
[14:52:37] [PASSED] NTSC
[14:52:37] [PASSED] NTSC-J
[14:52:37] [PASSED] PAL
[14:52:37] [PASSED] PAL-M
[14:52:37] =========== [PASSED] drm_test_pick_cmdline_named ===========
[14:52:37] ============== [PASSED] drm_test_pick_cmdline ==============
[14:52:37] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[14:52:37] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[14:52:37] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[14:52:37] =========== drm_validate_clone_mode (2 subtests) ===========
[14:52:37] ============== drm_test_check_in_clone_mode ===============
[14:52:37] [PASSED] in_clone_mode
[14:52:37] [PASSED] not_in_clone_mode
[14:52:37] ========== [PASSED] drm_test_check_in_clone_mode ===========
[14:52:37] =============== drm_test_check_valid_clones ===============
[14:52:37] [PASSED] not_in_clone_mode
[14:52:37] [PASSED] valid_clone
[14:52:37] [PASSED] invalid_clone
[14:52:37] =========== [PASSED] drm_test_check_valid_clones ===========
[14:52:37] ============= [PASSED] drm_validate_clone_mode =============
[14:52:37] ============= drm_validate_modeset (1 subtest) =============
[14:52:37] [PASSED] drm_test_check_connector_changed_modeset
[14:52:37] ============== [PASSED] drm_validate_modeset ===============
[14:52:37] ====== drm_test_bridge_get_current_state (2 subtests) ======
[14:52:37] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[14:52:37] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[14:52:37] ======== [PASSED] drm_test_bridge_get_current_state ========
[14:52:37] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[14:52:37] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[14:52:37] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[14:52:37] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[14:52:37] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[14:52:37] ============== drm_bridge_alloc (2 subtests) ===============
[14:52:37] [PASSED] drm_test_drm_bridge_alloc_basic
[14:52:37] [PASSED] drm_test_drm_bridge_alloc_get_put
[14:52:37] ================ [PASSED] drm_bridge_alloc =================
[14:52:37] ================== drm_buddy (9 subtests) ==================
[14:52:37] [PASSED] drm_test_buddy_alloc_limit
[14:52:37] [PASSED] drm_test_buddy_alloc_optimistic
[14:52:37] [PASSED] drm_test_buddy_alloc_pessimistic
[14:52:37] [PASSED] drm_test_buddy_alloc_pathological
[14:52:37] [PASSED] drm_test_buddy_alloc_contiguous
[14:52:37] [PASSED] drm_test_buddy_alloc_clear
[14:52:37] [PASSED] drm_test_buddy_alloc_range_bias
[14:52:38] [PASSED] drm_test_buddy_fragmentation_performance
[14:52:38] [PASSED] drm_test_buddy_alloc_exceeds_max_order
[14:52:38] ==================== [PASSED] drm_buddy ====================
[14:52:38] ============= drm_cmdline_parser (40 subtests) =============
[14:52:38] [PASSED] drm_test_cmdline_force_d_only
[14:52:38] [PASSED] drm_test_cmdline_force_D_only_dvi
[14:52:38] [PASSED] drm_test_cmdline_force_D_only_hdmi
[14:52:38] [PASSED] drm_test_cmdline_force_D_only_not_digital
[14:52:38] [PASSED] drm_test_cmdline_force_e_only
[14:52:38] [PASSED] drm_test_cmdline_res
[14:52:38] [PASSED] drm_test_cmdline_res_vesa
[14:52:38] [PASSED] drm_test_cmdline_res_vesa_rblank
[14:52:38] [PASSED] drm_test_cmdline_res_rblank
[14:52:38] [PASSED] drm_test_cmdline_res_bpp
[14:52:38] [PASSED] drm_test_cmdline_res_refresh
[14:52:38] [PASSED] drm_test_cmdline_res_bpp_refresh
[14:52:38] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[14:52:38] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[14:52:38] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[14:52:38] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[14:52:38] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[14:52:38] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[14:52:38] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[14:52:38] [PASSED] drm_test_cmdline_res_margins_force_on
[14:52:38] [PASSED] drm_test_cmdline_res_vesa_margins
[14:52:38] [PASSED] drm_test_cmdline_name
[14:52:38] [PASSED] drm_test_cmdline_name_bpp
[14:52:38] [PASSED] drm_test_cmdline_name_option
[14:52:38] [PASSED] drm_test_cmdline_name_bpp_option
[14:52:38] [PASSED] drm_test_cmdline_rotate_0
[14:52:38] [PASSED] drm_test_cmdline_rotate_90
[14:52:38] [PASSED] drm_test_cmdline_rotate_180
[14:52:38] [PASSED] drm_test_cmdline_rotate_270
[14:52:38] [PASSED] drm_test_cmdline_hmirror
[14:52:38] [PASSED] drm_test_cmdline_vmirror
[14:52:38] [PASSED] drm_test_cmdline_margin_options
[14:52:38] [PASSED] drm_test_cmdline_multiple_options
[14:52:38] [PASSED] drm_test_cmdline_bpp_extra_and_option
[14:52:38] [PASSED] drm_test_cmdline_extra_and_option
[14:52:38] [PASSED] drm_test_cmdline_freestanding_options
[14:52:38] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[14:52:38] [PASSED] drm_test_cmdline_panel_orientation
[14:52:38] ================ drm_test_cmdline_invalid =================
[14:52:38] [PASSED] margin_only
[14:52:38] [PASSED] interlace_only
[14:52:38] [PASSED] res_missing_x
[14:52:38] [PASSED] res_missing_y
[14:52:38] [PASSED] res_bad_y
[14:52:38] [PASSED] res_missing_y_bpp
[14:52:38] [PASSED] res_bad_bpp
[14:52:38] [PASSED] res_bad_refresh
[14:52:38] [PASSED] res_bpp_refresh_force_on_off
[14:52:38] [PASSED] res_invalid_mode
[14:52:38] [PASSED] res_bpp_wrong_place_mode
[14:52:38] [PASSED] name_bpp_refresh
[14:52:38] [PASSED] name_refresh
[14:52:38] [PASSED] name_refresh_wrong_mode
[14:52:38] [PASSED] name_refresh_invalid_mode
[14:52:38] [PASSED] rotate_multiple
[14:52:38] [PASSED] rotate_invalid_val
[14:52:38] [PASSED] rotate_truncated
[14:52:38] [PASSED] invalid_option
[14:52:38] [PASSED] invalid_tv_option
[14:52:38] [PASSED] truncated_tv_option
[14:52:38] ============ [PASSED] drm_test_cmdline_invalid =============
[14:52:38] =============== drm_test_cmdline_tv_options ===============
[14:52:38] [PASSED] NTSC
[14:52:38] [PASSED] NTSC_443
[14:52:38] [PASSED] NTSC_J
[14:52:38] [PASSED] PAL
[14:52:38] [PASSED] PAL_M
[14:52:38] [PASSED] PAL_N
[14:52:38] [PASSED] SECAM
[14:52:38] [PASSED] MONO_525
[14:52:38] [PASSED] MONO_625
[14:52:38] =========== [PASSED] drm_test_cmdline_tv_options ===========
[14:52:38] =============== [PASSED] drm_cmdline_parser ================
[14:52:38] ========== drmm_connector_hdmi_init (20 subtests) ==========
[14:52:38] [PASSED] drm_test_connector_hdmi_init_valid
[14:52:38] [PASSED] drm_test_connector_hdmi_init_bpc_8
[14:52:38] [PASSED] drm_test_connector_hdmi_init_bpc_10
[14:52:38] [PASSED] drm_test_connector_hdmi_init_bpc_12
[14:52:38] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[14:52:38] [PASSED] drm_test_connector_hdmi_init_bpc_null
[14:52:38] [PASSED] drm_test_connector_hdmi_init_formats_empty
[14:52:38] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[14:52:38] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[14:52:38] [PASSED] supported_formats=0x9 yuv420_allowed=1
[14:52:38] [PASSED] supported_formats=0x9 yuv420_allowed=0
[14:52:38] [PASSED] supported_formats=0x3 yuv420_allowed=1
[14:52:38] [PASSED] supported_formats=0x3 yuv420_allowed=0
[14:52:38] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[14:52:38] [PASSED] drm_test_connector_hdmi_init_null_ddc
[14:52:38] [PASSED] drm_test_connector_hdmi_init_null_product
[14:52:38] [PASSED] drm_test_connector_hdmi_init_null_vendor
[14:52:38] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[14:52:38] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[14:52:38] [PASSED] drm_test_connector_hdmi_init_product_valid
[14:52:38] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[14:52:38] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[14:52:38] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[14:52:38] ========= drm_test_connector_hdmi_init_type_valid =========
[14:52:38] [PASSED] HDMI-A
[14:52:38] [PASSED] HDMI-B
[14:52:38] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[14:52:38] ======== drm_test_connector_hdmi_init_type_invalid ========
[14:52:38] [PASSED] Unknown
[14:52:38] [PASSED] VGA
[14:52:38] [PASSED] DVI-I
[14:52:38] [PASSED] DVI-D
[14:52:38] [PASSED] DVI-A
[14:52:38] [PASSED] Composite
[14:52:38] [PASSED] SVIDEO
[14:52:38] [PASSED] LVDS
[14:52:38] [PASSED] Component
[14:52:38] [PASSED] DIN
[14:52:38] [PASSED] DP
[14:52:38] [PASSED] TV
[14:52:38] [PASSED] eDP
[14:52:38] [PASSED] Virtual
[14:52:38] [PASSED] DSI
[14:52:38] [PASSED] DPI
[14:52:38] [PASSED] Writeback
[14:52:38] [PASSED] SPI
[14:52:38] [PASSED] USB
[14:52:38] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[14:52:38] ============ [PASSED] drmm_connector_hdmi_init =============
[14:52:38] ============= drmm_connector_init (3 subtests) =============
[14:52:38] [PASSED] drm_test_drmm_connector_init
[14:52:38] [PASSED] drm_test_drmm_connector_init_null_ddc
[14:52:38] ========= drm_test_drmm_connector_init_type_valid =========
[14:52:38] [PASSED] Unknown
[14:52:38] [PASSED] VGA
[14:52:38] [PASSED] DVI-I
[14:52:38] [PASSED] DVI-D
[14:52:38] [PASSED] DVI-A
[14:52:38] [PASSED] Composite
[14:52:38] [PASSED] SVIDEO
[14:52:38] [PASSED] LVDS
[14:52:38] [PASSED] Component
[14:52:38] [PASSED] DIN
[14:52:38] [PASSED] DP
[14:52:38] [PASSED] HDMI-A
[14:52:38] [PASSED] HDMI-B
[14:52:38] [PASSED] TV
[14:52:38] [PASSED] eDP
[14:52:38] [PASSED] Virtual
[14:52:38] [PASSED] DSI
[14:52:38] [PASSED] DPI
[14:52:38] [PASSED] Writeback
[14:52:38] [PASSED] SPI
[14:52:38] [PASSED] USB
[14:52:38] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[14:52:38] =============== [PASSED] drmm_connector_init ===============
[14:52:38] ========= drm_connector_dynamic_init (6 subtests) ==========
[14:52:38] [PASSED] drm_test_drm_connector_dynamic_init
[14:52:38] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[14:52:38] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[14:52:38] [PASSED] drm_test_drm_connector_dynamic_init_properties
[14:52:38] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[14:52:38] [PASSED] Unknown
[14:52:38] [PASSED] VGA
[14:52:38] [PASSED] DVI-I
[14:52:38] [PASSED] DVI-D
[14:52:38] [PASSED] DVI-A
[14:52:38] [PASSED] Composite
[14:52:38] [PASSED] SVIDEO
[14:52:38] [PASSED] LVDS
[14:52:38] [PASSED] Component
[14:52:38] [PASSED] DIN
[14:52:38] [PASSED] DP
[14:52:38] [PASSED] HDMI-A
[14:52:38] [PASSED] HDMI-B
[14:52:38] [PASSED] TV
[14:52:38] [PASSED] eDP
[14:52:38] [PASSED] Virtual
[14:52:38] [PASSED] DSI
[14:52:38] [PASSED] DPI
[14:52:38] [PASSED] Writeback
[14:52:38] [PASSED] SPI
[14:52:38] [PASSED] USB
[14:52:38] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[14:52:38] ======== drm_test_drm_connector_dynamic_init_name =========
[14:52:38] [PASSED] Unknown
[14:52:38] [PASSED] VGA
[14:52:38] [PASSED] DVI-I
[14:52:38] [PASSED] DVI-D
[14:52:38] [PASSED] DVI-A
[14:52:38] [PASSED] Composite
[14:52:38] [PASSED] SVIDEO
[14:52:38] [PASSED] LVDS
[14:52:38] [PASSED] Component
[14:52:38] [PASSED] DIN
[14:52:38] [PASSED] DP
[14:52:38] [PASSED] HDMI-A
[14:52:38] [PASSED] HDMI-B
[14:52:38] [PASSED] TV
[14:52:38] [PASSED] eDP
[14:52:38] [PASSED] Virtual
[14:52:38] [PASSED] DSI
[14:52:38] [PASSED] DPI
[14:52:38] [PASSED] Writeback
[14:52:38] [PASSED] SPI
[14:52:38] [PASSED] USB
[14:52:38] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[14:52:38] =========== [PASSED] drm_connector_dynamic_init ============
[14:52:38] ==== drm_connector_dynamic_register_early (4 subtests) =====
[14:52:38] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[14:52:38] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[14:52:38] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[14:52:38] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[14:52:38] ====== [PASSED] drm_connector_dynamic_register_early =======
[14:52:38] ======= drm_connector_dynamic_register (7 subtests) ========
[14:52:38] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[14:52:38] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[14:52:38] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[14:52:38] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[14:52:38] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[14:52:38] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[14:52:38] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[14:52:38] ========= [PASSED] drm_connector_dynamic_register ==========
[14:52:38] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[14:52:38] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[14:52:38] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[14:52:38] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[14:52:38] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[14:52:38] ========== drm_test_get_tv_mode_from_name_valid ===========
[14:52:38] [PASSED] NTSC
[14:52:38] [PASSED] NTSC-443
[14:52:38] [PASSED] NTSC-J
[14:52:38] [PASSED] PAL
[14:52:38] [PASSED] PAL-M
[14:52:38] [PASSED] PAL-N
[14:52:38] [PASSED] SECAM
[14:52:38] [PASSED] Mono
[14:52:38] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[14:52:38] [PASSED] drm_test_get_tv_mode_from_name_truncated
[14:52:38] ============ [PASSED] drm_get_tv_mode_from_name ============
[14:52:38] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[14:52:38] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[14:52:38] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[14:52:38] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[14:52:38] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[14:52:38] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[14:52:38] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[14:52:38] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[14:52:38] [PASSED] VIC 96
[14:52:38] [PASSED] VIC 97
[14:52:38] [PASSED] VIC 101
[14:52:38] [PASSED] VIC 102
[14:52:38] [PASSED] VIC 106
[14:52:38] [PASSED] VIC 107
[14:52:38] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[14:52:38] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[14:52:38] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[14:52:38] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[14:52:38] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[14:52:38] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[14:52:38] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[14:52:38] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[14:52:38] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[14:52:38] [PASSED] Automatic
[14:52:38] [PASSED] Full
[14:52:38] [PASSED] Limited 16:235
[14:52:38] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[14:52:38] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[14:52:38] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[14:52:38] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[14:52:38] === drm_test_drm_hdmi_connector_get_output_format_name ====
[14:52:38] [PASSED] RGB
[14:52:38] [PASSED] YUV 4:2:0
[14:52:38] [PASSED] YUV 4:2:2
[14:52:38] [PASSED] YUV 4:4:4
[14:52:38] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[14:52:38] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[14:52:38] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[14:52:38] ============= drm_damage_helper (21 subtests) ==============
[14:52:38] [PASSED] drm_test_damage_iter_no_damage
[14:52:38] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[14:52:38] [PASSED] drm_test_damage_iter_no_damage_src_moved
[14:52:38] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[14:52:38] [PASSED] drm_test_damage_iter_no_damage_not_visible
[14:52:38] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[14:52:38] [PASSED] drm_test_damage_iter_no_damage_no_fb
[14:52:38] [PASSED] drm_test_damage_iter_simple_damage
[14:52:38] [PASSED] drm_test_damage_iter_single_damage
[14:52:38] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[14:52:38] [PASSED] drm_test_damage_iter_single_damage_outside_src
[14:52:38] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[14:52:38] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[14:52:38] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[14:52:38] [PASSED] drm_test_damage_iter_single_damage_src_moved
[14:52:38] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[14:52:38] [PASSED] drm_test_damage_iter_damage
[14:52:38] [PASSED] drm_test_damage_iter_damage_one_intersect
[14:52:38] [PASSED] drm_test_damage_iter_damage_one_outside
[14:52:38] [PASSED] drm_test_damage_iter_damage_src_moved
[14:52:38] [PASSED] drm_test_damage_iter_damage_not_visible
[14:52:38] ================ [PASSED] drm_damage_helper ================
[14:52:38] ============== drm_dp_mst_helper (3 subtests) ==============
[14:52:38] ============== drm_test_dp_mst_calc_pbn_mode ==============
[14:52:38] [PASSED] Clock 154000 BPP 30 DSC disabled
[14:52:38] [PASSED] Clock 234000 BPP 30 DSC disabled
[14:52:38] [PASSED] Clock 297000 BPP 24 DSC disabled
[14:52:38] [PASSED] Clock 332880 BPP 24 DSC enabled
[14:52:38] [PASSED] Clock 324540 BPP 24 DSC enabled
[14:52:38] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[14:52:38] ============== drm_test_dp_mst_calc_pbn_div ===============
[14:52:38] [PASSED] Link rate 2000000 lane count 4
[14:52:38] [PASSED] Link rate 2000000 lane count 2
[14:52:38] [PASSED] Link rate 2000000 lane count 1
[14:52:38] [PASSED] Link rate 1350000 lane count 4
[14:52:38] [PASSED] Link rate 1350000 lane count 2
[14:52:38] [PASSED] Link rate 1350000 lane count 1
[14:52:38] [PASSED] Link rate 1000000 lane count 4
[14:52:38] [PASSED] Link rate 1000000 lane count 2
[14:52:38] [PASSED] Link rate 1000000 lane count 1
[14:52:38] [PASSED] Link rate 810000 lane count 4
[14:52:38] [PASSED] Link rate 810000 lane count 2
[14:52:38] [PASSED] Link rate 810000 lane count 1
[14:52:38] [PASSED] Link rate 540000 lane count 4
[14:52:38] [PASSED] Link rate 540000 lane count 2
[14:52:38] [PASSED] Link rate 540000 lane count 1
[14:52:38] [PASSED] Link rate 270000 lane count 4
[14:52:38] [PASSED] Link rate 270000 lane count 2
[14:52:38] [PASSED] Link rate 270000 lane count 1
[14:52:38] [PASSED] Link rate 162000 lane count 4
[14:52:38] [PASSED] Link rate 162000 lane count 2
[14:52:38] [PASSED] Link rate 162000 lane count 1
[14:52:38] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[14:52:38] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[14:52:38] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[14:52:38] [PASSED] DP_POWER_UP_PHY with port number
[14:52:38] [PASSED] DP_POWER_DOWN_PHY with port number
[14:52:38] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[14:52:38] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[14:52:38] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[14:52:38] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[14:52:38] [PASSED] DP_QUERY_PAYLOAD with port number
[14:52:38] [PASSED] DP_QUERY_PAYLOAD with VCPI
[14:52:38] [PASSED] DP_REMOTE_DPCD_READ with port number
[14:52:38] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[14:52:38] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[14:52:38] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[14:52:38] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[14:52:38] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[14:52:38] [PASSED] DP_REMOTE_I2C_READ with port number
[14:52:38] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[14:52:38] [PASSED] DP_REMOTE_I2C_READ with transactions array
[14:52:38] [PASSED] DP_REMOTE_I2C_WRITE with port number
[14:52:38] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[14:52:38] [PASSED] DP_REMOTE_I2C_WRITE with data array
[14:52:38] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[14:52:38] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[14:52:38] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[14:52:38] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[14:52:38] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[14:52:38] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[14:52:38] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[14:52:38] ================ [PASSED] drm_dp_mst_helper ================
[14:52:38] ================== drm_exec (7 subtests) ===================
[14:52:38] [PASSED] sanitycheck
[14:52:38] [PASSED] test_lock
[14:52:38] [PASSED] test_lock_unlock
[14:52:38] [PASSED] test_duplicates
[14:52:38] [PASSED] test_prepare
[14:52:38] [PASSED] test_prepare_array
[14:52:38] [PASSED] test_multiple_loops
[14:52:38] ==================== [PASSED] drm_exec =====================
[14:52:38] =========== drm_format_helper_test (17 subtests) ===========
[14:52:38] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[14:52:38] [PASSED] single_pixel_source_buffer
[14:52:38] [PASSED] single_pixel_clip_rectangle
[14:52:38] [PASSED] well_known_colors
[14:52:38] [PASSED] destination_pitch
[14:52:38] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[14:52:38] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[14:52:38] [PASSED] single_pixel_source_buffer
[14:52:38] [PASSED] single_pixel_clip_rectangle
[14:52:38] [PASSED] well_known_colors
[14:52:38] [PASSED] destination_pitch
[14:52:38] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[14:52:38] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[14:52:38] [PASSED] single_pixel_source_buffer
[14:52:38] [PASSED] single_pixel_clip_rectangle
[14:52:38] [PASSED] well_known_colors
[14:52:38] [PASSED] destination_pitch
[14:52:38] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[14:52:38] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[14:52:38] [PASSED] single_pixel_source_buffer
[14:52:38] [PASSED] single_pixel_clip_rectangle
[14:52:38] [PASSED] well_known_colors
[14:52:38] [PASSED] destination_pitch
[14:52:38] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[14:52:38] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[14:52:38] [PASSED] single_pixel_source_buffer
[14:52:38] [PASSED] single_pixel_clip_rectangle
[14:52:38] [PASSED] well_known_colors
[14:52:38] [PASSED] destination_pitch
[14:52:38] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[14:52:38] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[14:52:38] [PASSED] single_pixel_source_buffer
[14:52:38] [PASSED] single_pixel_clip_rectangle
[14:52:38] [PASSED] well_known_colors
[14:52:38] [PASSED] destination_pitch
[14:52:38] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[14:52:38] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[14:52:38] [PASSED] single_pixel_source_buffer
[14:52:38] [PASSED] single_pixel_clip_rectangle
[14:52:38] [PASSED] well_known_colors
[14:52:38] [PASSED] destination_pitch
[14:52:38] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[14:52:38] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[14:52:38] [PASSED] single_pixel_source_buffer
[14:52:38] [PASSED] single_pixel_clip_rectangle
[14:52:38] [PASSED] well_known_colors
[14:52:38] [PASSED] destination_pitch
[14:52:38] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[14:52:38] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[14:52:38] [PASSED] single_pixel_source_buffer
[14:52:38] [PASSED] single_pixel_clip_rectangle
[14:52:38] [PASSED] well_known_colors
[14:52:38] [PASSED] destination_pitch
[14:52:38] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[14:52:38] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[14:52:38] [PASSED] single_pixel_source_buffer
[14:52:38] [PASSED] single_pixel_clip_rectangle
[14:52:38] [PASSED] well_known_colors
[14:52:38] [PASSED] destination_pitch
[14:52:38] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[14:52:38] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[14:52:38] [PASSED] single_pixel_source_buffer
[14:52:38] [PASSED] single_pixel_clip_rectangle
[14:52:38] [PASSED] well_known_colors
[14:52:38] [PASSED] destination_pitch
[14:52:38] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[14:52:38] ============== drm_test_fb_xrgb8888_to_mono ===============
[14:52:38] [PASSED] single_pixel_source_buffer
[14:52:38] [PASSED] single_pixel_clip_rectangle
[14:52:38] [PASSED] well_known_colors
[14:52:38] [PASSED] destination_pitch
[14:52:38] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[14:52:38] ==================== drm_test_fb_swab =====================
[14:52:38] [PASSED] single_pixel_source_buffer
[14:52:38] [PASSED] single_pixel_clip_rectangle
[14:52:38] [PASSED] well_known_colors
[14:52:38] [PASSED] destination_pitch
[14:52:38] ================ [PASSED] drm_test_fb_swab =================
[14:52:38] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[14:52:38] [PASSED] single_pixel_source_buffer
[14:52:38] [PASSED] single_pixel_clip_rectangle
[14:52:38] [PASSED] well_known_colors
[14:52:38] [PASSED] destination_pitch
[14:52:38] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[14:52:38] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[14:52:38] [PASSED] single_pixel_source_buffer
[14:52:38] [PASSED] single_pixel_clip_rectangle
[14:52:38] [PASSED] well_known_colors
[14:52:38] [PASSED] destination_pitch
[14:52:38] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[14:52:38] ================= drm_test_fb_clip_offset =================
[14:52:38] [PASSED] pass through
[14:52:38] [PASSED] horizontal offset
[14:52:38] [PASSED] vertical offset
[14:52:38] [PASSED] horizontal and vertical offset
[14:52:38] [PASSED] horizontal offset (custom pitch)
[14:52:38] [PASSED] vertical offset (custom pitch)
[14:52:38] [PASSED] horizontal and vertical offset (custom pitch)
[14:52:38] ============= [PASSED] drm_test_fb_clip_offset =============
[14:52:38] =================== drm_test_fb_memcpy ====================
[14:52:38] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[14:52:38] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[14:52:38] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[14:52:38] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[14:52:38] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[14:52:38] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[14:52:38] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[14:52:38] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[14:52:38] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[14:52:38] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[14:52:38] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[14:52:38] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[14:52:38] =============== [PASSED] drm_test_fb_memcpy ================
[14:52:38] ============= [PASSED] drm_format_helper_test ==============
[14:52:38] ================= drm_format (18 subtests) =================
[14:52:38] [PASSED] drm_test_format_block_width_invalid
[14:52:38] [PASSED] drm_test_format_block_width_one_plane
[14:52:38] [PASSED] drm_test_format_block_width_two_plane
[14:52:38] [PASSED] drm_test_format_block_width_three_plane
[14:52:38] [PASSED] drm_test_format_block_width_tiled
[14:52:38] [PASSED] drm_test_format_block_height_invalid
[14:52:38] [PASSED] drm_test_format_block_height_one_plane
[14:52:38] [PASSED] drm_test_format_block_height_two_plane
[14:52:38] [PASSED] drm_test_format_block_height_three_plane
[14:52:38] [PASSED] drm_test_format_block_height_tiled
[14:52:38] [PASSED] drm_test_format_min_pitch_invalid
[14:52:38] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[14:52:38] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[14:52:38] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[14:52:38] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[14:52:38] [PASSED] drm_test_format_min_pitch_two_plane
[14:52:38] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[14:52:38] [PASSED] drm_test_format_min_pitch_tiled
[14:52:38] =================== [PASSED] drm_format ====================
[14:52:38] ============== drm_framebuffer (10 subtests) ===============
[14:52:38] ========== drm_test_framebuffer_check_src_coords ==========
[14:52:38] [PASSED] Success: source fits into fb
[14:52:38] [PASSED] Fail: overflowing fb with x-axis coordinate
[14:52:38] [PASSED] Fail: overflowing fb with y-axis coordinate
[14:52:38] [PASSED] Fail: overflowing fb with source width
[14:52:38] [PASSED] Fail: overflowing fb with source height
[14:52:38] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[14:52:38] [PASSED] drm_test_framebuffer_cleanup
[14:52:38] =============== drm_test_framebuffer_create ===============
[14:52:38] [PASSED] ABGR8888 normal sizes
[14:52:38] [PASSED] ABGR8888 max sizes
[14:52:38] [PASSED] ABGR8888 pitch greater than min required
[14:52:38] [PASSED] ABGR8888 pitch less than min required
[14:52:38] [PASSED] ABGR8888 Invalid width
[14:52:38] [PASSED] ABGR8888 Invalid buffer handle
[14:52:38] [PASSED] No pixel format
[14:52:38] [PASSED] ABGR8888 Width 0
[14:52:38] [PASSED] ABGR8888 Height 0
[14:52:38] [PASSED] ABGR8888 Out of bound height * pitch combination
[14:52:38] [PASSED] ABGR8888 Large buffer offset
[14:52:38] [PASSED] ABGR8888 Buffer offset for inexistent plane
[14:52:38] [PASSED] ABGR8888 Invalid flag
[14:52:38] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[14:52:38] [PASSED] ABGR8888 Valid buffer modifier
[14:52:38] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[14:52:38] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[14:52:38] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[14:52:38] [PASSED] NV12 Normal sizes
[14:52:38] [PASSED] NV12 Max sizes
[14:52:38] [PASSED] NV12 Invalid pitch
[14:52:38] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[14:52:38] [PASSED] NV12 different modifier per-plane
[14:52:38] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[14:52:38] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[14:52:38] [PASSED] NV12 Modifier for inexistent plane
[14:52:38] [PASSED] NV12 Handle for inexistent plane
[14:52:38] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[14:52:38] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[14:52:38] [PASSED] YVU420 Normal sizes
[14:52:38] [PASSED] YVU420 Max sizes
[14:52:38] [PASSED] YVU420 Invalid pitch
[14:52:38] [PASSED] YVU420 Different pitches
[14:52:38] [PASSED] YVU420 Different buffer offsets/pitches
[14:52:38] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[14:52:38] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[14:52:38] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[14:52:38] [PASSED] YVU420 Valid modifier
[14:52:38] [PASSED] YVU420 Different modifiers per plane
[14:52:38] [PASSED] YVU420 Modifier for inexistent plane
[14:52:38] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[14:52:38] [PASSED] X0L2 Normal sizes
[14:52:38] [PASSED] X0L2 Max sizes
[14:52:38] [PASSED] X0L2 Invalid pitch
[14:52:38] [PASSED] X0L2 Pitch greater than minimum required
[14:52:38] [PASSED] X0L2 Handle for inexistent plane
[14:52:38] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[14:52:38] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[14:52:38] [PASSED] X0L2 Valid modifier
[14:52:38] [PASSED] X0L2 Modifier for inexistent plane
[14:52:38] =========== [PASSED] drm_test_framebuffer_create ===========
[14:52:38] [PASSED] drm_test_framebuffer_free
[14:52:38] [PASSED] drm_test_framebuffer_init
[14:52:38] [PASSED] drm_test_framebuffer_init_bad_format
[14:52:38] [PASSED] drm_test_framebuffer_init_dev_mismatch
[14:52:38] [PASSED] drm_test_framebuffer_lookup
[14:52:38] [PASSED] drm_test_framebuffer_lookup_inexistent
[14:52:38] [PASSED] drm_test_framebuffer_modifiers_not_supported
[14:52:38] ================= [PASSED] drm_framebuffer =================
[14:52:38] ================ drm_gem_shmem (8 subtests) ================
[14:52:38] [PASSED] drm_gem_shmem_test_obj_create
[14:52:38] [PASSED] drm_gem_shmem_test_obj_create_private
[14:52:38] [PASSED] drm_gem_shmem_test_pin_pages
[14:52:38] [PASSED] drm_gem_shmem_test_vmap
[14:52:38] [PASSED] drm_gem_shmem_test_get_sg_table
[14:52:38] [PASSED] drm_gem_shmem_test_get_pages_sgt
[14:52:38] [PASSED] drm_gem_shmem_test_madvise
[14:52:38] [PASSED] drm_gem_shmem_test_purge
[14:52:38] ================== [PASSED] drm_gem_shmem ==================
[14:52:38] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[14:52:38] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[14:52:38] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[14:52:38] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[14:52:38] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[14:52:38] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[14:52:38] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[14:52:38] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[14:52:38] [PASSED] Automatic
[14:52:38] [PASSED] Full
[14:52:38] [PASSED] Limited 16:235
[14:52:38] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[14:52:38] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[14:52:38] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[14:52:38] [PASSED] drm_test_check_disable_connector
[14:52:38] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[14:52:38] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[14:52:38] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[14:52:38] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[14:52:38] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[14:52:38] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[14:52:38] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[14:52:38] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[14:52:38] [PASSED] drm_test_check_output_bpc_dvi
[14:52:38] [PASSED] drm_test_check_output_bpc_format_vic_1
[14:52:38] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[14:52:38] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[14:52:38] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[14:52:38] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[14:52:38] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[14:52:38] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[14:52:38] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[14:52:38] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[14:52:38] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[14:52:38] [PASSED] drm_test_check_broadcast_rgb_value
[14:52:38] [PASSED] drm_test_check_bpc_8_value
[14:52:38] [PASSED] drm_test_check_bpc_10_value
[14:52:38] [PASSED] drm_test_check_bpc_12_value
[14:52:38] [PASSED] drm_test_check_format_value
[14:52:38] [PASSED] drm_test_check_tmds_char_value
[14:52:38] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[14:52:38] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[14:52:38] [PASSED] drm_test_check_mode_valid
[14:52:38] [PASSED] drm_test_check_mode_valid_reject
[14:52:38] [PASSED] drm_test_check_mode_valid_reject_rate
[14:52:38] [PASSED] drm_test_check_mode_valid_reject_max_clock
[14:52:38] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[14:52:38] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[14:52:38] [PASSED] drm_test_check_infoframes
[14:52:38] [PASSED] drm_test_check_reject_avi_infoframe
[14:52:38] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[14:52:38] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[14:52:38] [PASSED] drm_test_check_reject_audio_infoframe
[14:52:38] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[14:52:38] ================= drm_managed (2 subtests) =================
[14:52:38] [PASSED] drm_test_managed_release_action
[14:52:38] [PASSED] drm_test_managed_run_action
[14:52:38] =================== [PASSED] drm_managed ===================
[14:52:38] =================== drm_mm (6 subtests) ====================
[14:52:38] [PASSED] drm_test_mm_init
[14:52:38] [PASSED] drm_test_mm_debug
[14:52:38] [PASSED] drm_test_mm_align32
[14:52:38] [PASSED] drm_test_mm_align64
[14:52:38] [PASSED] drm_test_mm_lowest
[14:52:38] [PASSED] drm_test_mm_highest
[14:52:38] ===================== [PASSED] drm_mm ======================
[14:52:38] ============= drm_modes_analog_tv (5 subtests) =============
[14:52:38] [PASSED] drm_test_modes_analog_tv_mono_576i
[14:52:38] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[14:52:38] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[14:52:38] [PASSED] drm_test_modes_analog_tv_pal_576i
[14:52:38] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[14:52:38] =============== [PASSED] drm_modes_analog_tv ===============
[14:52:38] ============== drm_plane_helper (2 subtests) ===============
[14:52:38] =============== drm_test_check_plane_state ================
[14:52:38] [PASSED] clipping_simple
[14:52:38] [PASSED] clipping_rotate_reflect
[14:52:38] [PASSED] positioning_simple
[14:52:38] [PASSED] upscaling
[14:52:38] [PASSED] downscaling
[14:52:38] [PASSED] rounding1
[14:52:38] [PASSED] rounding2
[14:52:38] [PASSED] rounding3
[14:52:38] [PASSED] rounding4
[14:52:38] =========== [PASSED] drm_test_check_plane_state ============
[14:52:38] =========== drm_test_check_invalid_plane_state ============
[14:52:38] [PASSED] positioning_invalid
[14:52:38] [PASSED] upscaling_invalid
[14:52:38] [PASSED] downscaling_invalid
[14:52:38] ======= [PASSED] drm_test_check_invalid_plane_state ========
[14:52:38] ================ [PASSED] drm_plane_helper =================
[14:52:38] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[14:52:38] ====== drm_test_connector_helper_tv_get_modes_check =======
[14:52:38] [PASSED] None
[14:52:38] [PASSED] PAL
[14:52:38] [PASSED] NTSC
[14:52:38] [PASSED] Both, NTSC Default
[14:52:38] [PASSED] Both, PAL Default
[14:52:38] [PASSED] Both, NTSC Default, with PAL on command-line
[14:52:38] [PASSED] Both, PAL Default, with NTSC on command-line
[14:52:38] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[14:52:38] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[14:52:38] ================== drm_rect (9 subtests) ===================
[14:52:38] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[14:52:38] [PASSED] drm_test_rect_clip_scaled_not_clipped
[14:52:38] [PASSED] drm_test_rect_clip_scaled_clipped
[14:52:38] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[14:52:38] ================= drm_test_rect_intersect =================
[14:52:38] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[14:52:38] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[14:52:38] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[14:52:38] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[14:52:38] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[14:52:38] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[14:52:38] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[14:52:38] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[14:52:38] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[14:52:38] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[14:52:38] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[14:52:38] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[14:52:38] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[14:52:38] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[14:52:38] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
stty: 'standard input': Inappropriate ioctl for device
[14:52:38] ============= [PASSED] drm_test_rect_intersect =============
[14:52:38] ================ drm_test_rect_calc_hscale ================
[14:52:38] [PASSED] normal use
[14:52:38] [PASSED] out of max range
[14:52:38] [PASSED] out of min range
[14:52:38] [PASSED] zero dst
[14:52:38] [PASSED] negative src
[14:52:38] [PASSED] negative dst
[14:52:38] ============ [PASSED] drm_test_rect_calc_hscale ============
[14:52:38] ================ drm_test_rect_calc_vscale ================
[14:52:38] [PASSED] normal use
[14:52:38] [PASSED] out of max range
[14:52:38] [PASSED] out of min range
[14:52:38] [PASSED] zero dst
[14:52:38] [PASSED] negative src
[14:52:38] [PASSED] negative dst
[14:52:38] ============ [PASSED] drm_test_rect_calc_vscale ============
[14:52:38] ================== drm_test_rect_rotate ===================
[14:52:38] [PASSED] reflect-x
[14:52:38] [PASSED] reflect-y
[14:52:38] [PASSED] rotate-0
[14:52:38] [PASSED] rotate-90
[14:52:38] [PASSED] rotate-180
[14:52:38] [PASSED] rotate-270
[14:52:38] ============== [PASSED] drm_test_rect_rotate ===============
[14:52:38] ================ drm_test_rect_rotate_inv =================
[14:52:38] [PASSED] reflect-x
[14:52:38] [PASSED] reflect-y
[14:52:38] [PASSED] rotate-0
[14:52:38] [PASSED] rotate-90
[14:52:38] [PASSED] rotate-180
[14:52:38] [PASSED] rotate-270
[14:52:38] ============ [PASSED] drm_test_rect_rotate_inv =============
[14:52:38] ==================== [PASSED] drm_rect =====================
[14:52:38] ============ drm_sysfb_modeset_test (1 subtest) ============
[14:52:38] ============ drm_test_sysfb_build_fourcc_list =============
[14:52:38] [PASSED] no native formats
[14:52:38] [PASSED] XRGB8888 as native format
[14:52:38] [PASSED] remove duplicates
[14:52:38] [PASSED] convert alpha formats
[14:52:38] [PASSED] random formats
[14:52:38] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[14:52:38] ============= [PASSED] drm_sysfb_modeset_test ==============
[14:52:38] ================== drm_fixp (2 subtests) ===================
[14:52:38] [PASSED] drm_test_int2fixp
[14:52:38] [PASSED] drm_test_sm2fixp
[14:52:38] ==================== [PASSED] drm_fixp =====================
[14:52:38] ============================================================
[14:52:38] Testing complete. Ran 630 tests: passed: 630
[14:52:38] Elapsed time: 54.820s total, 3.052s configuring, 50.939s building, 0.795s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[14:52:38] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:52:41] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[14:52:58] Starting KUnit Kernel (1/1)...
[14:52:58] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:52:58] ================= ttm_device (5 subtests) ==================
[14:52:58] [PASSED] ttm_device_init_basic
[14:52:58] [PASSED] ttm_device_init_multiple
[14:52:58] [PASSED] ttm_device_fini_basic
[14:52:58] [PASSED] ttm_device_init_no_vma_man
[14:52:58] ================== ttm_device_init_pools ==================
[14:52:58] [PASSED] No DMA allocations, no DMA32 required
[14:52:58] [PASSED] DMA allocations, DMA32 required
[14:52:58] [PASSED] No DMA allocations, DMA32 required
[14:52:58] [PASSED] DMA allocations, no DMA32 required
[14:52:58] ============== [PASSED] ttm_device_init_pools ==============
[14:52:58] =================== [PASSED] ttm_device ====================
[14:52:58] ================== ttm_pool (8 subtests) ===================
[14:52:58] ================== ttm_pool_alloc_basic ===================
[14:52:58] [PASSED] One page
[14:52:58] [PASSED] More than one page
[14:52:58] [PASSED] Above the allocation limit
[14:52:58] [PASSED] One page, with coherent DMA mappings enabled
[14:52:58] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[14:52:58] ============== [PASSED] ttm_pool_alloc_basic ===============
[14:52:58] ============== ttm_pool_alloc_basic_dma_addr ==============
[14:52:58] [PASSED] One page
[14:52:58] [PASSED] More than one page
[14:52:58] [PASSED] Above the allocation limit
[14:52:58] [PASSED] One page, with coherent DMA mappings enabled
[14:52:58] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[14:52:58] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[14:52:58] [PASSED] ttm_pool_alloc_order_caching_match
[14:52:58] [PASSED] ttm_pool_alloc_caching_mismatch
[14:52:58] [PASSED] ttm_pool_alloc_order_mismatch
[14:52:58] [PASSED] ttm_pool_free_dma_alloc
[14:52:58] [PASSED] ttm_pool_free_no_dma_alloc
[14:52:58] [PASSED] ttm_pool_fini_basic
[14:52:58] ==================== [PASSED] ttm_pool =====================
[14:52:58] ================ ttm_resource (8 subtests) =================
[14:52:58] ================= ttm_resource_init_basic =================
[14:52:58] [PASSED] Init resource in TTM_PL_SYSTEM
[14:52:58] [PASSED] Init resource in TTM_PL_VRAM
[14:52:58] [PASSED] Init resource in a private placement
[14:52:58] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[14:52:58] ============= [PASSED] ttm_resource_init_basic =============
[14:52:58] [PASSED] ttm_resource_init_pinned
[14:52:58] [PASSED] ttm_resource_fini_basic
[14:52:58] [PASSED] ttm_resource_manager_init_basic
[14:52:58] [PASSED] ttm_resource_manager_usage_basic
[14:52:58] [PASSED] ttm_resource_manager_set_used_basic
[14:52:58] [PASSED] ttm_sys_man_alloc_basic
[14:52:58] [PASSED] ttm_sys_man_free_basic
[14:52:58] ================== [PASSED] ttm_resource ===================
[14:52:58] =================== ttm_tt (15 subtests) ===================
[14:52:58] ==================== ttm_tt_init_basic ====================
[14:52:58] [PASSED] Page-aligned size
[14:52:58] [PASSED] Extra pages requested
[14:52:58] ================ [PASSED] ttm_tt_init_basic ================
[14:52:58] [PASSED] ttm_tt_init_misaligned
[14:52:58] [PASSED] ttm_tt_fini_basic
[14:52:58] [PASSED] ttm_tt_fini_sg
[14:52:58] [PASSED] ttm_tt_fini_shmem
[14:52:58] [PASSED] ttm_tt_create_basic
[14:52:58] [PASSED] ttm_tt_create_invalid_bo_type
[14:52:58] [PASSED] ttm_tt_create_ttm_exists
[14:52:58] [PASSED] ttm_tt_create_failed
[14:52:58] [PASSED] ttm_tt_destroy_basic
[14:52:58] [PASSED] ttm_tt_populate_null_ttm
[14:52:58] [PASSED] ttm_tt_populate_populated_ttm
[14:52:58] [PASSED] ttm_tt_unpopulate_basic
[14:52:58] [PASSED] ttm_tt_unpopulate_empty_ttm
[14:52:58] [PASSED] ttm_tt_swapin_basic
[14:52:58] ===================== [PASSED] ttm_tt ======================
[14:52:58] =================== ttm_bo (14 subtests) ===================
[14:52:58] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[14:52:58] [PASSED] Cannot be interrupted and sleeps
[14:52:58] [PASSED] Cannot be interrupted, locks straight away
[14:52:58] [PASSED] Can be interrupted, sleeps
[14:52:58] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[14:52:58] [PASSED] ttm_bo_reserve_locked_no_sleep
[14:52:58] [PASSED] ttm_bo_reserve_no_wait_ticket
[14:52:58] [PASSED] ttm_bo_reserve_double_resv
[14:52:58] [PASSED] ttm_bo_reserve_interrupted
[14:52:58] [PASSED] ttm_bo_reserve_deadlock
[14:52:58] [PASSED] ttm_bo_unreserve_basic
[14:52:58] [PASSED] ttm_bo_unreserve_pinned
[14:52:58] [PASSED] ttm_bo_unreserve_bulk
[14:52:58] [PASSED] ttm_bo_fini_basic
[14:52:58] [PASSED] ttm_bo_fini_shared_resv
[14:52:58] [PASSED] ttm_bo_pin_basic
[14:52:58] [PASSED] ttm_bo_pin_unpin_resource
[14:52:58] [PASSED] ttm_bo_multiple_pin_one_unpin
[14:52:58] ===================== [PASSED] ttm_bo ======================
[14:52:58] ============== ttm_bo_validate (21 subtests) ===============
[14:52:58] ============== ttm_bo_init_reserved_sys_man ===============
[14:52:58] [PASSED] Buffer object for userspace
[14:52:58] [PASSED] Kernel buffer object
[14:52:58] [PASSED] Shared buffer object
[14:52:58] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[14:52:58] ============== ttm_bo_init_reserved_mock_man ==============
[14:52:58] [PASSED] Buffer object for userspace
[14:52:58] [PASSED] Kernel buffer object
[14:52:58] [PASSED] Shared buffer object
[14:52:58] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[14:52:58] [PASSED] ttm_bo_init_reserved_resv
[14:52:58] ================== ttm_bo_validate_basic ==================
[14:52:58] [PASSED] Buffer object for userspace
[14:52:58] [PASSED] Kernel buffer object
[14:52:58] [PASSED] Shared buffer object
[14:52:58] ============== [PASSED] ttm_bo_validate_basic ==============
[14:52:58] [PASSED] ttm_bo_validate_invalid_placement
[14:52:58] ============= ttm_bo_validate_same_placement ==============
[14:52:58] [PASSED] System manager
[14:52:58] [PASSED] VRAM manager
[14:52:58] ========= [PASSED] ttm_bo_validate_same_placement ==========
[14:52:58] [PASSED] ttm_bo_validate_failed_alloc
[14:52:58] [PASSED] ttm_bo_validate_pinned
[14:52:58] [PASSED] ttm_bo_validate_busy_placement
[14:52:58] ================ ttm_bo_validate_multihop =================
[14:52:58] [PASSED] Buffer object for userspace
[14:52:58] [PASSED] Kernel buffer object
[14:52:58] [PASSED] Shared buffer object
[14:52:58] ============ [PASSED] ttm_bo_validate_multihop =============
[14:52:58] ========== ttm_bo_validate_no_placement_signaled ==========
[14:52:58] [PASSED] Buffer object in system domain, no page vector
[14:52:58] [PASSED] Buffer object in system domain with an existing page vector
[14:52:58] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[14:52:58] ======== ttm_bo_validate_no_placement_not_signaled ========
[14:52:58] [PASSED] Buffer object for userspace
[14:52:58] [PASSED] Kernel buffer object
[14:52:58] [PASSED] Shared buffer object
[14:52:58] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[14:52:58] [PASSED] ttm_bo_validate_move_fence_signaled
[14:52:58] ========= ttm_bo_validate_move_fence_not_signaled =========
[14:52:58] [PASSED] Waits for GPU
[14:52:58] [PASSED] Tries to lock straight away
[14:52:58] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[14:52:58] [PASSED] ttm_bo_validate_happy_evict
[14:52:58] [PASSED] ttm_bo_validate_all_pinned_evict
[14:52:58] [PASSED] ttm_bo_validate_allowed_only_evict
[14:52:58] [PASSED] ttm_bo_validate_deleted_evict
[14:52:58] [PASSED] ttm_bo_validate_busy_domain_evict
[14:52:58] [PASSED] ttm_bo_validate_evict_gutting
[14:52:58] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[14:52:58] ================= [PASSED] ttm_bo_validate =================
[14:52:58] ============================================================
[14:52:58] Testing complete. Ran 101 tests: passed: 101
[14:52:58] Elapsed time: 20.261s total, 3.043s configuring, 16.894s building, 0.271s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.FULL: failure for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor
2026-02-04 0:25 [PATCH 1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor Matt Roper
` (3 preceding siblings ...)
2026-02-04 14:53 ` ✓ CI.KUnit: success for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor (rev2) Patchwork
@ 2026-02-04 15:48 ` Patchwork
2026-02-04 15:59 ` ✗ Xe.CI.BAT: failure for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor (rev2) Patchwork
` (5 subsequent siblings)
10 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-02-04 15:48 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 425 bytes --]
== Series Details ==
Series: series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor
URL : https://patchwork.freedesktop.org/series/161113/
State : failure
== Summary ==
ERROR: The runconfig 'xe-4493-ff449f153b0966cfd7a7291670c927f6b6971d2a_FULL' does not exist in the database
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v1/index.html
[-- Attachment #2: Type: text/html, Size: 990 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.BAT: failure for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor (rev2)
2026-02-04 0:25 [PATCH 1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor Matt Roper
` (4 preceding siblings ...)
2026-02-04 15:48 ` ✗ Xe.CI.FULL: failure for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor Patchwork
@ 2026-02-04 15:59 ` Patchwork
2026-02-04 20:05 ` [PATCH 1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor Gustavo Sousa
` (4 subsequent siblings)
10 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-02-04 15:59 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 431 bytes --]
== Series Details ==
Series: series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor (rev2)
URL : https://patchwork.freedesktop.org/series/161113/
State : failure
== Summary ==
ERROR: The runconfig 'xe-4495-241994730989320c926da9f2d0a5ec80b48f993d_BAT' does not exist in the database
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/index.html
[-- Attachment #2: Type: text/html, Size: 996 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor
2026-02-04 0:25 [PATCH 1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor Matt Roper
` (5 preceding siblings ...)
2026-02-04 15:59 ` ✗ Xe.CI.BAT: failure for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor (rev2) Patchwork
@ 2026-02-04 20:05 ` Gustavo Sousa
2026-02-05 1:49 ` ✗ Xe.CI.FULL: failure for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor (rev2) Patchwork
` (3 subsequent siblings)
10 siblings, 0 replies; 13+ messages in thread
From: Gustavo Sousa @ 2026-02-04 20:05 UTC (permalink / raw)
To: Matt Roper, intel-xe; +Cc: matthew.d.roper
Matt Roper <matthew.d.roper@intel.com> writes:
> The number of registers used to express the XeCore mask has some
> "special cases" that don't always get inherited by later IP versions so
> it's cleaner and simpler to record the numbers in the IP descriptor
> rather than adding extra conditions to the standalone get_num_dss_regs()
> function.
>
> Note that a minor change here is that we now always treat the number of
> registers as 0 for the media GT. Technically a copy of these fuse
> registers does exist in the media GT as well (at the usual
> 0x380000+$offset location), but the value of those is always supposed to
> read back as 0 because media GTs never have any XeCores or EUs.
>
> Cc: Gustavo Sousa <gustavo.sousa@intel.com>
> Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com>
It would also be nice to add a check in check_graphics_ip() to catch
cases of descriptors in graphics_ips[] missing defining at least one of
those fields.
--
Gustavo Sousa
> ---
> drivers/gpu/drm/xe/xe_gt_topology.c | 37 ++++++-----------------------
> drivers/gpu/drm/xe/xe_gt_types.h | 10 ++++++++
> drivers/gpu/drm/xe/xe_pci.c | 12 ++++++++++
> drivers/gpu/drm/xe/xe_pci_types.h | 2 ++
> 4 files changed, 31 insertions(+), 30 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_topology.c b/drivers/gpu/drm/xe/xe_gt_topology.c
> index bd5260221d8d..575dcfd5eb9d 100644
> --- a/drivers/gpu/drm/xe/xe_gt_topology.c
> +++ b/drivers/gpu/drm/xe/xe_gt_topology.c
> @@ -205,24 +205,6 @@ load_l3_bank_mask(struct xe_gt *gt, xe_l3_bank_mask_t l3_bank_mask)
> }
> }
>
> -static void
> -get_num_dss_regs(struct xe_device *xe, int *geometry_regs, int *compute_regs)
> -{
> - if (GRAPHICS_VER(xe) > 20) {
> - *geometry_regs = 3;
> - *compute_regs = 3;
> - } else if (GRAPHICS_VERx100(xe) == 1260) {
> - *geometry_regs = 0;
> - *compute_regs = 2;
> - } else if (GRAPHICS_VERx100(xe) >= 1250) {
> - *geometry_regs = 1;
> - *compute_regs = 1;
> - } else {
> - *geometry_regs = 1;
> - *compute_regs = 0;
> - }
> -}
> -
> void
> xe_gt_topology_init(struct xe_gt *gt)
> {
> @@ -236,23 +218,19 @@ xe_gt_topology_init(struct xe_gt *gt)
> XEHPC_GT_COMPUTE_DSS_ENABLE_EXT,
> XE2_GT_COMPUTE_DSS_2,
> };
> - int num_geometry_regs, num_compute_regs;
> - struct xe_device *xe = gt_to_xe(gt);
> struct drm_printer p;
>
> - get_num_dss_regs(xe, &num_geometry_regs, &num_compute_regs);
> -
> /*
> * Register counts returned shouldn't exceed the number of registers
> * passed as parameters below.
> */
> - xe_gt_assert(gt, num_geometry_regs <= ARRAY_SIZE(geometry_regs));
> - xe_gt_assert(gt, num_compute_regs <= ARRAY_SIZE(compute_regs));
> + xe_gt_assert(gt, gt->info.num_geometry_xecore_fuse_regs <= ARRAY_SIZE(geometry_regs));
> + xe_gt_assert(gt, gt->info.num_compute_xecore_fuse_regs <= ARRAY_SIZE(compute_regs));
>
> load_dss_mask(gt, gt->fuse_topo.g_dss_mask,
> - num_geometry_regs, geometry_regs);
> + gt->info.num_geometry_xecore_fuse_regs, geometry_regs);
> load_dss_mask(gt, gt->fuse_topo.c_dss_mask,
> - num_compute_regs, compute_regs);
> + gt->info.num_compute_xecore_fuse_regs, compute_regs);
>
> load_eu_mask(gt, gt->fuse_topo.eu_mask_per_dss, >->fuse_topo.eu_type);
> load_l3_bank_mask(gt, gt->fuse_topo.l3_bank_mask);
> @@ -330,15 +308,14 @@ xe_l3_bank_mask_ffs(const xe_l3_bank_mask_t mask)
> */
> bool xe_gt_topology_has_dss_in_quadrant(struct xe_gt *gt, int quad)
> {
> - struct xe_device *xe = gt_to_xe(gt);
> xe_dss_mask_t all_dss;
> - int g_dss_regs, c_dss_regs, dss_per_quad, quad_first;
> + int dss_per_quad, quad_first;
>
> bitmap_or(all_dss, gt->fuse_topo.g_dss_mask, gt->fuse_topo.c_dss_mask,
> XE_MAX_DSS_FUSE_BITS);
>
> - get_num_dss_regs(xe, &g_dss_regs, &c_dss_regs);
> - dss_per_quad = 32 * max(g_dss_regs, c_dss_regs) / 4;
> + dss_per_quad = 32 * max(gt->info.num_geometry_xecore_fuse_regs,
> + gt->info.num_compute_xecore_fuse_regs) / 4;
>
> quad_first = xe_dss_mask_group_ffs(all_dss, dss_per_quad, quad);
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_types.h b/drivers/gpu/drm/xe/xe_gt_types.h
> index 5318d92fd473..bede105f37b4 100644
> --- a/drivers/gpu/drm/xe/xe_gt_types.h
> +++ b/drivers/gpu/drm/xe/xe_gt_types.h
> @@ -149,6 +149,16 @@ struct xe_gt {
> u8 id;
> /** @info.has_indirect_ring_state: GT has indirect ring state support */
> u8 has_indirect_ring_state:1;
> + /**
> + * @info.num_geometry_xecore_fuse_regs: Number of 32b-bit fuse
> + * registers the geometry XeCore mask spans.
> + */
> + u8 num_geometry_xecore_fuse_regs;
> + /**
> + * @info.num_compute_xecore_fuse_regs: Number of 32b-bit fuse
> + * registers the compute XeCore mask spans.
> + */
> + u8 num_compute_xecore_fuse_regs;
> } info;
>
> #if IS_ENABLED(CONFIG_DEBUG_FS)
> diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
> index b5e8935fff1d..e3a574835f35 100644
> --- a/drivers/gpu/drm/xe/xe_pci.c
> +++ b/drivers/gpu/drm/xe/xe_pci.c
> @@ -52,6 +52,7 @@ __diag_ignore_all("-Woverride-init", "Allow field overrides in table");
>
> static const struct xe_graphics_desc graphics_xelp = {
> .hw_engine_mask = BIT(XE_HW_ENGINE_RCS0) | BIT(XE_HW_ENGINE_BCS0),
> + .num_geometry_xecore_fuse_regs = 1,
> };
>
> #define XE_HP_FEATURES \
> @@ -62,6 +63,8 @@ static const struct xe_graphics_desc graphics_xehpg = {
> BIT(XE_HW_ENGINE_RCS0) | BIT(XE_HW_ENGINE_BCS0) |
> BIT(XE_HW_ENGINE_CCS0) | BIT(XE_HW_ENGINE_CCS1) |
> BIT(XE_HW_ENGINE_CCS2) | BIT(XE_HW_ENGINE_CCS3),
> + .num_geometry_xecore_fuse_regs = 1,
> + .num_compute_xecore_fuse_regs = 1,
>
> XE_HP_FEATURES,
> };
> @@ -81,12 +84,15 @@ static const struct xe_graphics_desc graphics_xehpc = {
> .has_asid = 1,
> .has_atomic_enable_pte_bit = 1,
> .has_usm = 1,
> + .num_compute_xecore_fuse_regs = 2,
> };
>
> static const struct xe_graphics_desc graphics_xelpg = {
> .hw_engine_mask =
> BIT(XE_HW_ENGINE_RCS0) | BIT(XE_HW_ENGINE_BCS0) |
> BIT(XE_HW_ENGINE_CCS0),
> + .num_geometry_xecore_fuse_regs = 1,
> + .num_compute_xecore_fuse_regs = 1,
>
> XE_HP_FEATURES,
> };
> @@ -104,6 +110,8 @@ static const struct xe_graphics_desc graphics_xelpg = {
>
> static const struct xe_graphics_desc graphics_xe2 = {
> XE2_GFX_FEATURES,
> + .num_geometry_xecore_fuse_regs = 3,
> + .num_compute_xecore_fuse_regs = 3,
> };
>
> static const struct xe_graphics_desc graphics_xe3p_xpc = {
> @@ -114,6 +122,8 @@ static const struct xe_graphics_desc graphics_xe3p_xpc = {
> GENMASK(XE_HW_ENGINE_CCS3, XE_HW_ENGINE_CCS0),
> .multi_queue_engine_class_mask = BIT(XE_ENGINE_CLASS_COPY) |
> BIT(XE_ENGINE_CLASS_COMPUTE),
> + .num_geometry_xecore_fuse_regs = 3,
> + .num_compute_xecore_fuse_regs = 3,
> };
>
> static const struct xe_media_desc media_xem = {
> @@ -783,6 +793,8 @@ static struct xe_gt *alloc_primary_gt(struct xe_tile *tile,
> gt->info.has_indirect_ring_state = graphics_desc->has_indirect_ring_state;
> gt->info.multi_queue_engine_class_mask = graphics_desc->multi_queue_engine_class_mask;
> gt->info.engine_mask = graphics_desc->hw_engine_mask;
> + gt->info.num_geometry_xecore_fuse_regs = graphics_desc->num_geometry_xecore_fuse_regs;
> + gt->info.num_compute_xecore_fuse_regs = graphics_desc->num_compute_xecore_fuse_regs;
>
> /*
> * Before media version 13, the media IP was part of the primary GT
> diff --git a/drivers/gpu/drm/xe/xe_pci_types.h b/drivers/gpu/drm/xe/xe_pci_types.h
> index 8b2ff3f25607..470d31a1f0d6 100644
> --- a/drivers/gpu/drm/xe/xe_pci_types.h
> +++ b/drivers/gpu/drm/xe/xe_pci_types.h
> @@ -66,6 +66,8 @@ struct xe_device_desc {
> struct xe_graphics_desc {
> u64 hw_engine_mask; /* hardware engines provided by graphics IP */
> u16 multi_queue_engine_class_mask; /* bitmask of engine classes which support multi queue */
> + u8 num_geometry_xecore_fuse_regs;
> + u8 num_compute_xecore_fuse_regs;
>
> u8 has_asid:1;
> u8 has_atomic_enable_pte_bit:1;
> --
> 2.52.0
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 2/2] drm/xe/xe3p_xpc: XeCore mask spans four registers
2026-02-04 0:25 ` [PATCH 2/2] drm/xe/xe3p_xpc: XeCore mask spans four registers Matt Roper
@ 2026-02-04 20:10 ` Gustavo Sousa
0 siblings, 0 replies; 13+ messages in thread
From: Gustavo Sousa @ 2026-02-04 20:10 UTC (permalink / raw)
To: Matt Roper, intel-xe; +Cc: matthew.d.roper
Matt Roper <matthew.d.roper@intel.com> writes:
> On Xe3p_XPC, there are now four registers reserved to express the XeCore
> mask rather than just three. Define the new registers and update the IP
> descriptor accordingly.
>
> Note that this only applies to Xe3p_XPC for now; Xe3p_LPG still only
> uses three registers to express the mask.
>
> Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com>
> ---
> drivers/gpu/drm/xe/regs/xe_gt_regs.h | 2 ++
> drivers/gpu/drm/xe/xe_gt_topology.c | 2 ++
> drivers/gpu/drm/xe/xe_gt_types.h | 2 +-
> drivers/gpu/drm/xe/xe_pci.c | 4 ++--
> 4 files changed, 7 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> index 24fc64fc832e..1b7bd34dcc38 100644
> --- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> +++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> @@ -253,6 +253,8 @@
> #define XE2_GT_COMPUTE_DSS_2 XE_REG(0x914c)
> #define XE2_GT_GEOMETRY_DSS_1 XE_REG(0x9150)
> #define XE2_GT_GEOMETRY_DSS_2 XE_REG(0x9154)
> +#define XE3P_XPC_GT_GEOMETRY_DSS_3 XE_REG(0x915c)
> +#define XE3P_XPC_GT_COMPUTE_DSS_3 XE_REG(0x9160)
>
> #define SERVICE_COPY_ENABLE XE_REG(0x9170)
> #define FUSE_SERVICE_COPY_ENABLE_MASK REG_GENMASK(7, 0)
> diff --git a/drivers/gpu/drm/xe/xe_gt_topology.c b/drivers/gpu/drm/xe/xe_gt_topology.c
> index 575dcfd5eb9d..bfe87e682879 100644
> --- a/drivers/gpu/drm/xe/xe_gt_topology.c
> +++ b/drivers/gpu/drm/xe/xe_gt_topology.c
> @@ -212,11 +212,13 @@ xe_gt_topology_init(struct xe_gt *gt)
> XELP_GT_GEOMETRY_DSS_ENABLE,
> XE2_GT_GEOMETRY_DSS_1,
> XE2_GT_GEOMETRY_DSS_2,
> + XE3P_XPC_GT_GEOMETRY_DSS_3,
> };
> static const struct xe_reg compute_regs[] = {
> XEHP_GT_COMPUTE_DSS_ENABLE,
> XEHPC_GT_COMPUTE_DSS_ENABLE_EXT,
> XE2_GT_COMPUTE_DSS_2,
> + XE3P_XPC_GT_COMPUTE_DSS_3,
> };
> struct drm_printer p;
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_types.h b/drivers/gpu/drm/xe/xe_gt_types.h
> index bede105f37b4..bcb63dced7f9 100644
> --- a/drivers/gpu/drm/xe/xe_gt_types.h
> +++ b/drivers/gpu/drm/xe/xe_gt_types.h
> @@ -35,7 +35,7 @@ enum xe_gt_eu_type {
> XE_GT_EU_TYPE_SIMD16,
> };
>
> -#define XE_MAX_DSS_FUSE_REGS 3
> +#define XE_MAX_DSS_FUSE_REGS 4
> #define XE_MAX_DSS_FUSE_BITS (32 * XE_MAX_DSS_FUSE_REGS)
> #define XE_MAX_EU_FUSE_REGS 1
> #define XE_MAX_EU_FUSE_BITS (32 * XE_MAX_EU_FUSE_REGS)
> diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
> index e3a574835f35..42f15cd394f6 100644
> --- a/drivers/gpu/drm/xe/xe_pci.c
> +++ b/drivers/gpu/drm/xe/xe_pci.c
> @@ -122,8 +122,8 @@ static const struct xe_graphics_desc graphics_xe3p_xpc = {
> GENMASK(XE_HW_ENGINE_CCS3, XE_HW_ENGINE_CCS0),
> .multi_queue_engine_class_mask = BIT(XE_ENGINE_CLASS_COPY) |
> BIT(XE_ENGINE_CLASS_COMPUTE),
> - .num_geometry_xecore_fuse_regs = 3,
> - .num_compute_xecore_fuse_regs = 3,
> + .num_geometry_xecore_fuse_regs = 4,
> + .num_compute_xecore_fuse_regs = 4,
> };
>
> static const struct xe_media_desc media_xem = {
> --
> 2.52.0
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.FULL: failure for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor (rev2)
2026-02-04 0:25 [PATCH 1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor Matt Roper
` (6 preceding siblings ...)
2026-02-04 20:05 ` [PATCH 1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor Gustavo Sousa
@ 2026-02-05 1:49 ` Patchwork
2026-02-05 2:08 ` ✓ CI.KUnit: success for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor (rev3) Patchwork
` (2 subsequent siblings)
10 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-02-05 1:49 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 47041 bytes --]
== Series Details ==
Series: series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor (rev2)
URL : https://patchwork.freedesktop.org/series/161113/
State : failure
== Summary ==
CI Bug Log - changes from xe-4497-241994730989320c926da9f2d0a5ec80b48f993d_FULL -> xe-pw-161113v2_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-161113v2_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-161113v2_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-161113v2_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_legacy@short-flip-before-cursor-toggle:
- shard-bmg: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-4/igt@kms_cursor_legacy@short-flip-before-cursor-toggle.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-3/igt@kms_cursor_legacy@short-flip-before-cursor-toggle.html
Known issues
------------
Here are the changes found in xe-pw-161113v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#1407])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2327])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1467])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +4 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2314] / [Intel XE#2894])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#367])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#3432])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#3432])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2887]) +4 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#2887]) +3 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
* igt@kms_chamelium_color@gamma:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2325])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#373]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2252]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-1/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_color_pipeline@plane-lut1d-post-ctm3x4:
- shard-lnl: NOTRUN -> [FAIL][17] ([Intel XE#6968]) +3 other tests fail
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_color_pipeline@plane-lut1d-post-ctm3x4.html
* igt@kms_content_protection@atomic-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][18] ([Intel XE#3304])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-9/igt@kms_content_protection@atomic-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][19] ([Intel XE#1178] / [Intel XE#3304])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-9/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@type1:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#3278])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2320]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#2321])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1424])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-bmg: [PASS][24] -> [SKIP][25] ([Intel XE#2291]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-9/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2286])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#4354])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#4354])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1421]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-bmg: [PASS][30] -> [SKIP][31] ([Intel XE#2316]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-9/igt@kms_flip@2x-flip-vs-rmfb.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-5/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [PASS][32] -> [FAIL][33] ([Intel XE#301] / [Intel XE#3149])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#7178])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#7179])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#352])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#651]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2311]) +9 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#4141]) +5 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#7061]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#656]) +11 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2313]) +10 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7061])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-wc.html
* igt@kms_hdr@static-toggle:
- shard-bmg: [PASS][44] -> [SKIP][45] ([Intel XE#1503])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-8/igt@kms_hdr@static-toggle.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-5/igt@kms_hdr@static-toggle.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-5:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#7131]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#7111] / [Intel XE#7130] / [Intel XE#7131])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-a-plane-3:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7130]) +8 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-a-plane-3.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-a-plane-5:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#7131])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#7111] / [Intel XE#7131])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#7130] / [Intel XE#7131]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-modifier:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#7111] / [Intel XE#7130]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@kms_plane@pixel-format-y-tiled-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-modifier@pipe-b-plane-5:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#7130]) +14 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_plane@pixel-format-yf-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#5020])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-1/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#6886]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1439] / [Intel XE#3141])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1406] / [Intel XE#2893])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#1406] / [Intel XE#2387])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-1/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-dpms:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-1/igt@kms_psr@fbc-psr-dpms.html
* igt@kms_psr@fbc-psr2-sprite-blt@edp-1:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1406] / [Intel XE#4609])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html
* igt@kms_psr@pr-sprite-render:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1406]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_psr@pr-sprite-render.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-bmg: [PASS][63] -> [DMESG-WARN][64] ([Intel XE#7129])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-2/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-3/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_sharpness_filter@filter-dpms:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#6503])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@kms_sharpness_filter@filter-dpms.html
* igt@kms_vrr@negative-basic:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1499])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@kms_vrr@negative-basic.html
- shard-bmg: [PASS][67] -> [SKIP][68] ([Intel XE#1499])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-4/igt@kms_vrr@negative-basic.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-5/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#1499])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@xe_eudebug@basic-client-th:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#4837]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@xe_eudebug@basic-client-th.html
* igt@xe_eudebug@discovery-empty-clients:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#4837]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@xe_eudebug@discovery-empty-clients.html
* igt@xe_eudebug_online@pagefault-read-stress:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#6665] / [Intel XE#6681])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@xe_eudebug_online@pagefault-read-stress.html
* igt@xe_eudebug_online@resume-one:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@xe_eudebug_online@resume-one.html
* igt@xe_evict@evict-beng-cm-threads-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#688]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@xe_evict@evict-beng-cm-threads-large-multi-vm.html
* igt@xe_exec_basic@multigpu-no-exec-null-rebind:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1392]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2322]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-userptr-rebind.html
* igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-prefetch:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#7136]) +3 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-prefetch.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#7136]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm.html
* igt@xe_exec_multi_queue@one-queue-priority:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#6874]) +6 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@xe_exec_multi_queue@one-queue-priority.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-dyn-priority-smem:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#6874]) +9 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-dyn-priority-smem.html
* igt@xe_exec_system_allocator@process-many-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#4943]) +8 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@xe_exec_system_allocator@process-many-mmap-new-huge.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#4943]) +5 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge-nomemset.html
* igt@xe_exec_threads@threads-many-queues:
- shard-lnl: NOTRUN -> [FAIL][83] ([Intel XE#7166])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@xe_exec_threads@threads-many-queues.html
* igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#7138]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate.html
* igt@xe_exec_threads@threads-multi-queue-userptr-rebind-err:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#7138]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@xe_exec_threads@threads-multi-queue-userptr-rebind-err.html
* igt@xe_multigpu_svm@mgpu-xgpu-access-prefetch:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#6964])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@xe_multigpu_svm@mgpu-xgpu-access-prefetch.html
* igt@xe_pm@d3cold-mmap-system:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#2284] / [Intel XE#366])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2284])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#944]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#4351])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
* igt@xe_vm@out-of-memory:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#5745])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-8/igt@xe_vm@out-of-memory.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-bmg: [DMESG-FAIL][92] ([Intel XE#1727]) -> [PASS][93] +1 other test pass
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-bmg: [SKIP][94] ([Intel XE#2291]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-9/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: [SKIP][96] ([Intel XE#2316]) -> [PASS][97] +3 other tests pass
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-9/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
- shard-lnl: [FAIL][98] ([Intel XE#301]) -> [PASS][99]
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
- shard-lnl: [FAIL][100] ([Intel XE#3098]) -> [PASS][101] +1 other test pass
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-lnl-8/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-3/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-2:
- shard-bmg: [SKIP][102] -> [PASS][103]
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-3/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-2.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-1/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-2.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [SKIP][104] ([Intel XE#1503]) -> [PASS][105] +1 other test pass
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-5/igt@kms_hdr@static-toggle-suspend.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-9/igt@kms_hdr@static-toggle-suspend.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [SKIP][130], [PASS][131]) ([Intel XE#2457]) -> ([PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-5/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-2/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-7/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-4/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-7/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-3/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-3/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-5/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-5/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-9/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-10/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-9/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-2/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-8/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-1/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-9/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-9/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-7/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-1/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-1/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-2/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-4/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-10/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-4/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-7/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-8/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-8/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-8/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-5/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-5/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-3/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-3/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-10/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-10/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-1/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-1/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-3/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-7/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-4/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-4/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-4/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-7/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-10/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-9/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-9/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-8/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-2/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-5/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-5/igt@xe_module_load@load.html
* igt@xe_pm@s4-basic:
- shard-lnl: [DMESG-WARN][157] -> [PASS][158] +1 other test pass
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-lnl-3/igt@xe_pm@s4-basic.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-1/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-basic-exec:
- shard-bmg: [ABORT][159] ([Intel XE#1727] / [Intel XE#5545] / [Intel XE#6652]) -> [PASS][160]
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-3/igt@xe_pm@s4-basic-exec.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-1/igt@xe_pm@s4-basic-exec.html
#### Warnings ####
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-bmg: [FAIL][161] ([Intel XE#3304]) -> [SKIP][162] ([Intel XE#7194])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-4/igt@kms_content_protection@atomic-dpms-hdcp14.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-3/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-bmg: [SKIP][163] ([Intel XE#7194]) -> [FAIL][164] ([Intel XE#3304])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-5/igt@kms_content_protection@atomic-hdcp14.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-9/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [SKIP][165] ([Intel XE#2341]) -> [FAIL][166] ([Intel XE#1178] / [Intel XE#3304])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-5/igt@kms_content_protection@lic-type-0.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-9/igt@kms_content_protection@lic-type-0.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][167] ([Intel XE#301]) -> [FAIL][168] ([Intel XE#301] / [Intel XE#3149])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][169] ([Intel XE#2311]) -> [SKIP][170] ([Intel XE#2312]) +12 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][171] ([Intel XE#4141]) -> [SKIP][172] ([Intel XE#2312]) +6 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][173] ([Intel XE#2312]) -> [SKIP][174] ([Intel XE#4141])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][175] ([Intel XE#2312]) -> [SKIP][176] ([Intel XE#2311]) +3 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][177] ([Intel XE#2312]) -> [SKIP][178] ([Intel XE#2313]) +5 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][179] ([Intel XE#2313]) -> [SKIP][180] ([Intel XE#2312]) +11 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[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#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[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#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5745
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6968]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6968
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111
[Intel XE#7129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7129
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[Intel XE#7131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7166
[Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4497-241994730989320c926da9f2d0a5ec80b48f993d -> xe-pw-161113v2
IGT_8735: 8735
xe-4497-241994730989320c926da9f2d0a5ec80b48f993d: 241994730989320c926da9f2d0a5ec80b48f993d
xe-pw-161113v2: 161113v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v2/index.html
[-- Attachment #2: Type: text/html, Size: 54253 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ CI.KUnit: success for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor (rev3)
2026-02-04 0:25 [PATCH 1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor Matt Roper
` (7 preceding siblings ...)
2026-02-05 1:49 ` ✗ Xe.CI.FULL: failure for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor (rev2) Patchwork
@ 2026-02-05 2:08 ` Patchwork
2026-02-05 2:42 ` ✓ Xe.CI.BAT: " Patchwork
2026-02-05 17:21 ` ✗ Xe.CI.FULL: failure " Patchwork
10 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-02-05 2:08 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
== Series Details ==
Series: series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor (rev3)
URL : https://patchwork.freedesktop.org/series/161113/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[02:07:38] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[02:07:42] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[02:08:13] Starting KUnit Kernel (1/1)...
[02:08:13] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[02:08:14] ================== guc_buf (11 subtests) ===================
[02:08:14] [PASSED] test_smallest
[02:08:14] [PASSED] test_largest
[02:08:14] [PASSED] test_granular
[02:08:14] [PASSED] test_unique
[02:08:14] [PASSED] test_overlap
[02:08:14] [PASSED] test_reusable
[02:08:14] [PASSED] test_too_big
[02:08:14] [PASSED] test_flush
[02:08:14] [PASSED] test_lookup
[02:08:14] [PASSED] test_data
[02:08:14] [PASSED] test_class
[02:08:14] ===================== [PASSED] guc_buf =====================
[02:08:14] =================== guc_dbm (7 subtests) ===================
[02:08:14] [PASSED] test_empty
[02:08:14] [PASSED] test_default
[02:08:14] ======================== test_size ========================
[02:08:14] [PASSED] 4
[02:08:14] [PASSED] 8
[02:08:14] [PASSED] 32
[02:08:14] [PASSED] 256
[02:08:14] ==================== [PASSED] test_size ====================
[02:08:14] ======================= test_reuse ========================
[02:08:14] [PASSED] 4
[02:08:14] [PASSED] 8
[02:08:14] [PASSED] 32
[02:08:14] [PASSED] 256
[02:08:14] =================== [PASSED] test_reuse ====================
[02:08:14] =================== test_range_overlap ====================
[02:08:14] [PASSED] 4
[02:08:14] [PASSED] 8
[02:08:14] [PASSED] 32
[02:08:14] [PASSED] 256
[02:08:14] =============== [PASSED] test_range_overlap ================
[02:08:14] =================== test_range_compact ====================
[02:08:14] [PASSED] 4
[02:08:14] [PASSED] 8
[02:08:14] [PASSED] 32
[02:08:14] [PASSED] 256
[02:08:14] =============== [PASSED] test_range_compact ================
[02:08:14] ==================== test_range_spare =====================
[02:08:14] [PASSED] 4
[02:08:14] [PASSED] 8
[02:08:14] [PASSED] 32
[02:08:14] [PASSED] 256
[02:08:14] ================ [PASSED] test_range_spare =================
[02:08:14] ===================== [PASSED] guc_dbm =====================
[02:08:14] =================== guc_idm (6 subtests) ===================
[02:08:14] [PASSED] bad_init
[02:08:14] [PASSED] no_init
[02:08:14] [PASSED] init_fini
[02:08:14] [PASSED] check_used
[02:08:14] [PASSED] check_quota
[02:08:14] [PASSED] check_all
[02:08:14] ===================== [PASSED] guc_idm =====================
[02:08:14] ================== no_relay (3 subtests) ===================
[02:08:14] [PASSED] xe_drops_guc2pf_if_not_ready
[02:08:14] [PASSED] xe_drops_guc2vf_if_not_ready
[02:08:14] [PASSED] xe_rejects_send_if_not_ready
[02:08:14] ==================== [PASSED] no_relay =====================
[02:08:14] ================== pf_relay (14 subtests) ==================
[02:08:14] [PASSED] pf_rejects_guc2pf_too_short
[02:08:14] [PASSED] pf_rejects_guc2pf_too_long
[02:08:14] [PASSED] pf_rejects_guc2pf_no_payload
[02:08:14] [PASSED] pf_fails_no_payload
[02:08:14] [PASSED] pf_fails_bad_origin
[02:08:14] [PASSED] pf_fails_bad_type
[02:08:14] [PASSED] pf_txn_reports_error
[02:08:14] [PASSED] pf_txn_sends_pf2guc
[02:08:14] [PASSED] pf_sends_pf2guc
[02:08:14] [SKIPPED] pf_loopback_nop
[02:08:14] [SKIPPED] pf_loopback_echo
[02:08:14] [SKIPPED] pf_loopback_fail
[02:08:14] [SKIPPED] pf_loopback_busy
[02:08:14] [SKIPPED] pf_loopback_retry
[02:08:14] ==================== [PASSED] pf_relay =====================
[02:08:14] ================== vf_relay (3 subtests) ===================
[02:08:14] [PASSED] vf_rejects_guc2vf_too_short
[02:08:14] [PASSED] vf_rejects_guc2vf_too_long
[02:08:14] [PASSED] vf_rejects_guc2vf_no_payload
[02:08:14] ==================== [PASSED] vf_relay =====================
[02:08:14] ================ pf_gt_config (6 subtests) =================
[02:08:14] [PASSED] fair_contexts_1vf
[02:08:14] [PASSED] fair_doorbells_1vf
[02:08:14] [PASSED] fair_ggtt_1vf
[02:08:14] ====================== fair_contexts ======================
[02:08:14] [PASSED] 1 VF
[02:08:14] [PASSED] 2 VFs
[02:08:14] [PASSED] 3 VFs
[02:08:14] [PASSED] 4 VFs
[02:08:14] [PASSED] 5 VFs
[02:08:14] [PASSED] 6 VFs
[02:08:14] [PASSED] 7 VFs
[02:08:14] [PASSED] 8 VFs
[02:08:14] [PASSED] 9 VFs
[02:08:14] [PASSED] 10 VFs
[02:08:14] [PASSED] 11 VFs
[02:08:14] [PASSED] 12 VFs
[02:08:14] [PASSED] 13 VFs
[02:08:14] [PASSED] 14 VFs
[02:08:14] [PASSED] 15 VFs
[02:08:14] [PASSED] 16 VFs
[02:08:14] [PASSED] 17 VFs
[02:08:14] [PASSED] 18 VFs
[02:08:14] [PASSED] 19 VFs
[02:08:14] [PASSED] 20 VFs
[02:08:14] [PASSED] 21 VFs
[02:08:14] [PASSED] 22 VFs
[02:08:14] [PASSED] 23 VFs
[02:08:14] [PASSED] 24 VFs
[02:08:14] [PASSED] 25 VFs
[02:08:14] [PASSED] 26 VFs
[02:08:14] [PASSED] 27 VFs
[02:08:14] [PASSED] 28 VFs
[02:08:14] [PASSED] 29 VFs
[02:08:14] [PASSED] 30 VFs
[02:08:14] [PASSED] 31 VFs
[02:08:14] [PASSED] 32 VFs
[02:08:14] [PASSED] 33 VFs
[02:08:14] [PASSED] 34 VFs
[02:08:14] [PASSED] 35 VFs
[02:08:14] [PASSED] 36 VFs
[02:08:14] [PASSED] 37 VFs
[02:08:14] [PASSED] 38 VFs
[02:08:14] [PASSED] 39 VFs
[02:08:14] [PASSED] 40 VFs
[02:08:14] [PASSED] 41 VFs
[02:08:14] [PASSED] 42 VFs
[02:08:14] [PASSED] 43 VFs
[02:08:14] [PASSED] 44 VFs
[02:08:14] [PASSED] 45 VFs
[02:08:14] [PASSED] 46 VFs
[02:08:14] [PASSED] 47 VFs
[02:08:14] [PASSED] 48 VFs
[02:08:14] [PASSED] 49 VFs
[02:08:14] [PASSED] 50 VFs
[02:08:14] [PASSED] 51 VFs
[02:08:14] [PASSED] 52 VFs
[02:08:14] [PASSED] 53 VFs
[02:08:14] [PASSED] 54 VFs
[02:08:14] [PASSED] 55 VFs
[02:08:14] [PASSED] 56 VFs
[02:08:14] [PASSED] 57 VFs
[02:08:14] [PASSED] 58 VFs
[02:08:14] [PASSED] 59 VFs
[02:08:14] [PASSED] 60 VFs
[02:08:14] [PASSED] 61 VFs
[02:08:14] [PASSED] 62 VFs
[02:08:14] [PASSED] 63 VFs
[02:08:14] ================== [PASSED] fair_contexts ==================
[02:08:14] ===================== fair_doorbells ======================
[02:08:14] [PASSED] 1 VF
[02:08:14] [PASSED] 2 VFs
[02:08:14] [PASSED] 3 VFs
[02:08:14] [PASSED] 4 VFs
[02:08:14] [PASSED] 5 VFs
[02:08:14] [PASSED] 6 VFs
[02:08:14] [PASSED] 7 VFs
[02:08:14] [PASSED] 8 VFs
[02:08:14] [PASSED] 9 VFs
[02:08:14] [PASSED] 10 VFs
[02:08:14] [PASSED] 11 VFs
[02:08:14] [PASSED] 12 VFs
[02:08:14] [PASSED] 13 VFs
[02:08:14] [PASSED] 14 VFs
[02:08:14] [PASSED] 15 VFs
[02:08:14] [PASSED] 16 VFs
[02:08:14] [PASSED] 17 VFs
[02:08:14] [PASSED] 18 VFs
[02:08:14] [PASSED] 19 VFs
[02:08:14] [PASSED] 20 VFs
[02:08:14] [PASSED] 21 VFs
[02:08:14] [PASSED] 22 VFs
[02:08:14] [PASSED] 23 VFs
[02:08:14] [PASSED] 24 VFs
[02:08:14] [PASSED] 25 VFs
[02:08:14] [PASSED] 26 VFs
[02:08:14] [PASSED] 27 VFs
[02:08:14] [PASSED] 28 VFs
[02:08:14] [PASSED] 29 VFs
[02:08:14] [PASSED] 30 VFs
[02:08:14] [PASSED] 31 VFs
[02:08:14] [PASSED] 32 VFs
[02:08:14] [PASSED] 33 VFs
[02:08:14] [PASSED] 34 VFs
[02:08:14] [PASSED] 35 VFs
[02:08:14] [PASSED] 36 VFs
[02:08:14] [PASSED] 37 VFs
[02:08:14] [PASSED] 38 VFs
[02:08:14] [PASSED] 39 VFs
[02:08:14] [PASSED] 40 VFs
[02:08:14] [PASSED] 41 VFs
[02:08:14] [PASSED] 42 VFs
[02:08:14] [PASSED] 43 VFs
[02:08:14] [PASSED] 44 VFs
[02:08:14] [PASSED] 45 VFs
[02:08:14] [PASSED] 46 VFs
[02:08:14] [PASSED] 47 VFs
[02:08:14] [PASSED] 48 VFs
[02:08:14] [PASSED] 49 VFs
[02:08:14] [PASSED] 50 VFs
[02:08:14] [PASSED] 51 VFs
[02:08:14] [PASSED] 52 VFs
[02:08:14] [PASSED] 53 VFs
[02:08:14] [PASSED] 54 VFs
[02:08:14] [PASSED] 55 VFs
[02:08:14] [PASSED] 56 VFs
[02:08:14] [PASSED] 57 VFs
[02:08:14] [PASSED] 58 VFs
[02:08:14] [PASSED] 59 VFs
[02:08:14] [PASSED] 60 VFs
[02:08:14] [PASSED] 61 VFs
[02:08:14] [PASSED] 62 VFs
[02:08:14] [PASSED] 63 VFs
[02:08:14] ================= [PASSED] fair_doorbells ==================
[02:08:14] ======================== fair_ggtt ========================
[02:08:14] [PASSED] 1 VF
[02:08:14] [PASSED] 2 VFs
[02:08:14] [PASSED] 3 VFs
[02:08:14] [PASSED] 4 VFs
[02:08:14] [PASSED] 5 VFs
[02:08:14] [PASSED] 6 VFs
[02:08:14] [PASSED] 7 VFs
[02:08:14] [PASSED] 8 VFs
[02:08:14] [PASSED] 9 VFs
[02:08:14] [PASSED] 10 VFs
[02:08:14] [PASSED] 11 VFs
[02:08:14] [PASSED] 12 VFs
[02:08:14] [PASSED] 13 VFs
[02:08:14] [PASSED] 14 VFs
[02:08:14] [PASSED] 15 VFs
[02:08:14] [PASSED] 16 VFs
[02:08:14] [PASSED] 17 VFs
[02:08:14] [PASSED] 18 VFs
[02:08:14] [PASSED] 19 VFs
[02:08:14] [PASSED] 20 VFs
[02:08:14] [PASSED] 21 VFs
[02:08:14] [PASSED] 22 VFs
[02:08:14] [PASSED] 23 VFs
[02:08:14] [PASSED] 24 VFs
[02:08:14] [PASSED] 25 VFs
[02:08:14] [PASSED] 26 VFs
[02:08:14] [PASSED] 27 VFs
[02:08:14] [PASSED] 28 VFs
[02:08:14] [PASSED] 29 VFs
[02:08:14] [PASSED] 30 VFs
[02:08:14] [PASSED] 31 VFs
[02:08:14] [PASSED] 32 VFs
[02:08:14] [PASSED] 33 VFs
[02:08:14] [PASSED] 34 VFs
[02:08:14] [PASSED] 35 VFs
[02:08:14] [PASSED] 36 VFs
[02:08:14] [PASSED] 37 VFs
[02:08:14] [PASSED] 38 VFs
[02:08:14] [PASSED] 39 VFs
[02:08:14] [PASSED] 40 VFs
[02:08:14] [PASSED] 41 VFs
[02:08:14] [PASSED] 42 VFs
[02:08:14] [PASSED] 43 VFs
[02:08:14] [PASSED] 44 VFs
[02:08:14] [PASSED] 45 VFs
[02:08:14] [PASSED] 46 VFs
[02:08:14] [PASSED] 47 VFs
[02:08:14] [PASSED] 48 VFs
[02:08:14] [PASSED] 49 VFs
[02:08:14] [PASSED] 50 VFs
[02:08:14] [PASSED] 51 VFs
[02:08:14] [PASSED] 52 VFs
[02:08:14] [PASSED] 53 VFs
[02:08:14] [PASSED] 54 VFs
[02:08:14] [PASSED] 55 VFs
[02:08:14] [PASSED] 56 VFs
[02:08:14] [PASSED] 57 VFs
[02:08:14] [PASSED] 58 VFs
[02:08:14] [PASSED] 59 VFs
[02:08:14] [PASSED] 60 VFs
[02:08:14] [PASSED] 61 VFs
[02:08:14] [PASSED] 62 VFs
[02:08:14] [PASSED] 63 VFs
[02:08:14] ==================== [PASSED] fair_ggtt ====================
[02:08:14] ================== [PASSED] pf_gt_config ===================
[02:08:14] ===================== lmtt (1 subtest) =====================
[02:08:14] ======================== test_ops =========================
[02:08:14] [PASSED] 2-level
[02:08:14] [PASSED] multi-level
[02:08:14] ==================== [PASSED] test_ops =====================
[02:08:14] ====================== [PASSED] lmtt =======================
[02:08:14] ================= pf_service (11 subtests) =================
[02:08:14] [PASSED] pf_negotiate_any
[02:08:14] [PASSED] pf_negotiate_base_match
[02:08:14] [PASSED] pf_negotiate_base_newer
[02:08:14] [PASSED] pf_negotiate_base_next
[02:08:14] [SKIPPED] pf_negotiate_base_older
[02:08:14] [PASSED] pf_negotiate_base_prev
[02:08:14] [PASSED] pf_negotiate_latest_match
[02:08:14] [PASSED] pf_negotiate_latest_newer
[02:08:14] [PASSED] pf_negotiate_latest_next
[02:08:14] [SKIPPED] pf_negotiate_latest_older
[02:08:14] [SKIPPED] pf_negotiate_latest_prev
[02:08:14] =================== [PASSED] pf_service ====================
[02:08:14] ================= xe_guc_g2g (2 subtests) ==================
[02:08:14] ============== xe_live_guc_g2g_kunit_default ==============
[02:08:14] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[02:08:14] ============== xe_live_guc_g2g_kunit_allmem ===============
[02:08:14] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[02:08:14] =================== [SKIPPED] xe_guc_g2g ===================
[02:08:14] =================== xe_mocs (2 subtests) ===================
[02:08:14] ================ xe_live_mocs_kernel_kunit ================
[02:08:14] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[02:08:14] ================ xe_live_mocs_reset_kunit =================
[02:08:14] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[02:08:14] ==================== [SKIPPED] xe_mocs =====================
[02:08:14] ================= xe_migrate (2 subtests) ==================
[02:08:14] ================= xe_migrate_sanity_kunit =================
[02:08:14] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[02:08:14] ================== xe_validate_ccs_kunit ==================
[02:08:14] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[02:08:14] =================== [SKIPPED] xe_migrate ===================
[02:08:14] ================== xe_dma_buf (1 subtest) ==================
[02:08:14] ==================== xe_dma_buf_kunit =====================
[02:08:14] ================ [SKIPPED] xe_dma_buf_kunit ================
[02:08:14] =================== [SKIPPED] xe_dma_buf ===================
[02:08:14] ================= xe_bo_shrink (1 subtest) =================
[02:08:14] =================== xe_bo_shrink_kunit ====================
[02:08:14] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[02:08:14] ================== [SKIPPED] xe_bo_shrink ==================
[02:08:14] ==================== xe_bo (2 subtests) ====================
[02:08:14] ================== xe_ccs_migrate_kunit ===================
[02:08:14] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[02:08:14] ==================== xe_bo_evict_kunit ====================
[02:08:14] =============== [SKIPPED] xe_bo_evict_kunit ================
[02:08:14] ===================== [SKIPPED] xe_bo ======================
[02:08:14] ==================== args (13 subtests) ====================
[02:08:14] [PASSED] count_args_test
[02:08:14] [PASSED] call_args_example
[02:08:14] [PASSED] call_args_test
[02:08:14] [PASSED] drop_first_arg_example
[02:08:14] [PASSED] drop_first_arg_test
[02:08:14] [PASSED] first_arg_example
[02:08:14] [PASSED] first_arg_test
[02:08:14] [PASSED] last_arg_example
[02:08:14] [PASSED] last_arg_test
[02:08:14] [PASSED] pick_arg_example
[02:08:14] [PASSED] if_args_example
[02:08:14] [PASSED] if_args_test
[02:08:14] [PASSED] sep_comma_example
[02:08:14] ====================== [PASSED] args =======================
[02:08:14] =================== xe_pci (3 subtests) ====================
[02:08:14] ==================== check_graphics_ip ====================
[02:08:14] [PASSED] 12.00 Xe_LP
[02:08:14] [PASSED] 12.10 Xe_LP+
[02:08:14] [PASSED] 12.55 Xe_HPG
[02:08:14] [PASSED] 12.60 Xe_HPC
[02:08:14] [PASSED] 12.70 Xe_LPG
[02:08:14] [PASSED] 12.71 Xe_LPG
[02:08:14] [PASSED] 12.74 Xe_LPG+
[02:08:14] [PASSED] 20.01 Xe2_HPG
[02:08:14] [PASSED] 20.02 Xe2_HPG
[02:08:14] [PASSED] 20.04 Xe2_LPG
[02:08:14] [PASSED] 30.00 Xe3_LPG
[02:08:14] [PASSED] 30.01 Xe3_LPG
[02:08:14] [PASSED] 30.03 Xe3_LPG
[02:08:14] [PASSED] 30.04 Xe3_LPG
[02:08:14] [PASSED] 30.05 Xe3_LPG
[02:08:14] [PASSED] 35.11 Xe3p_XPC
[02:08:14] ================ [PASSED] check_graphics_ip ================
[02:08:14] ===================== check_media_ip ======================
[02:08:14] [PASSED] 12.00 Xe_M
[02:08:14] [PASSED] 12.55 Xe_HPM
[02:08:14] [PASSED] 13.00 Xe_LPM+
[02:08:14] [PASSED] 13.01 Xe2_HPM
[02:08:14] [PASSED] 20.00 Xe2_LPM
[02:08:14] [PASSED] 30.00 Xe3_LPM
[02:08:14] [PASSED] 30.02 Xe3_LPM
[02:08:14] [PASSED] 35.00 Xe3p_LPM
[02:08:14] [PASSED] 35.03 Xe3p_HPM
[02:08:14] ================= [PASSED] check_media_ip ==================
[02:08:14] =================== check_platform_desc ===================
[02:08:14] [PASSED] 0x9A60 (TIGERLAKE)
[02:08:14] [PASSED] 0x9A68 (TIGERLAKE)
[02:08:14] [PASSED] 0x9A70 (TIGERLAKE)
[02:08:14] [PASSED] 0x9A40 (TIGERLAKE)
[02:08:14] [PASSED] 0x9A49 (TIGERLAKE)
[02:08:14] [PASSED] 0x9A59 (TIGERLAKE)
[02:08:14] [PASSED] 0x9A78 (TIGERLAKE)
[02:08:14] [PASSED] 0x9AC0 (TIGERLAKE)
[02:08:14] [PASSED] 0x9AC9 (TIGERLAKE)
[02:08:14] [PASSED] 0x9AD9 (TIGERLAKE)
[02:08:14] [PASSED] 0x9AF8 (TIGERLAKE)
[02:08:14] [PASSED] 0x4C80 (ROCKETLAKE)
[02:08:14] [PASSED] 0x4C8A (ROCKETLAKE)
[02:08:14] [PASSED] 0x4C8B (ROCKETLAKE)
[02:08:14] [PASSED] 0x4C8C (ROCKETLAKE)
[02:08:14] [PASSED] 0x4C90 (ROCKETLAKE)
[02:08:14] [PASSED] 0x4C9A (ROCKETLAKE)
[02:08:14] [PASSED] 0x4680 (ALDERLAKE_S)
[02:08:14] [PASSED] 0x4682 (ALDERLAKE_S)
[02:08:14] [PASSED] 0x4688 (ALDERLAKE_S)
[02:08:14] [PASSED] 0x468A (ALDERLAKE_S)
[02:08:14] [PASSED] 0x468B (ALDERLAKE_S)
[02:08:14] [PASSED] 0x4690 (ALDERLAKE_S)
[02:08:14] [PASSED] 0x4692 (ALDERLAKE_S)
[02:08:14] [PASSED] 0x4693 (ALDERLAKE_S)
[02:08:14] [PASSED] 0x46A0 (ALDERLAKE_P)
[02:08:14] [PASSED] 0x46A1 (ALDERLAKE_P)
[02:08:14] [PASSED] 0x46A2 (ALDERLAKE_P)
[02:08:14] [PASSED] 0x46A3 (ALDERLAKE_P)
[02:08:14] [PASSED] 0x46A6 (ALDERLAKE_P)
[02:08:14] [PASSED] 0x46A8 (ALDERLAKE_P)
[02:08:14] [PASSED] 0x46AA (ALDERLAKE_P)
[02:08:14] [PASSED] 0x462A (ALDERLAKE_P)
[02:08:14] [PASSED] 0x4626 (ALDERLAKE_P)
[02:08:14] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[02:08:14] [PASSED] 0x46B0 (ALDERLAKE_P)
[02:08:14] [PASSED] 0x46B1 (ALDERLAKE_P)
[02:08:14] [PASSED] 0x46B2 (ALDERLAKE_P)
[02:08:14] [PASSED] 0x46B3 (ALDERLAKE_P)
[02:08:14] [PASSED] 0x46C0 (ALDERLAKE_P)
[02:08:14] [PASSED] 0x46C1 (ALDERLAKE_P)
[02:08:14] [PASSED] 0x46C2 (ALDERLAKE_P)
[02:08:14] [PASSED] 0x46C3 (ALDERLAKE_P)
[02:08:14] [PASSED] 0x46D0 (ALDERLAKE_N)
[02:08:14] [PASSED] 0x46D1 (ALDERLAKE_N)
[02:08:14] [PASSED] 0x46D2 (ALDERLAKE_N)
[02:08:14] [PASSED] 0x46D3 (ALDERLAKE_N)
[02:08:14] [PASSED] 0x46D4 (ALDERLAKE_N)
[02:08:14] [PASSED] 0xA721 (ALDERLAKE_P)
[02:08:14] [PASSED] 0xA7A1 (ALDERLAKE_P)
[02:08:14] [PASSED] 0xA7A9 (ALDERLAKE_P)
[02:08:14] [PASSED] 0xA7AC (ALDERLAKE_P)
[02:08:14] [PASSED] 0xA7AD (ALDERLAKE_P)
[02:08:14] [PASSED] 0xA720 (ALDERLAKE_P)
[02:08:14] [PASSED] 0xA7A0 (ALDERLAKE_P)
[02:08:14] [PASSED] 0xA7A8 (ALDERLAKE_P)
[02:08:14] [PASSED] 0xA7AA (ALDERLAKE_P)
[02:08:14] [PASSED] 0xA7AB (ALDERLAKE_P)
[02:08:14] [PASSED] 0xA780 (ALDERLAKE_S)
[02:08:14] [PASSED] 0xA781 (ALDERLAKE_S)
[02:08:14] [PASSED] 0xA782 (ALDERLAKE_S)
[02:08:14] [PASSED] 0xA783 (ALDERLAKE_S)
[02:08:14] [PASSED] 0xA788 (ALDERLAKE_S)
[02:08:14] [PASSED] 0xA789 (ALDERLAKE_S)
[02:08:14] [PASSED] 0xA78A (ALDERLAKE_S)
[02:08:14] [PASSED] 0xA78B (ALDERLAKE_S)
[02:08:14] [PASSED] 0x4905 (DG1)
[02:08:14] [PASSED] 0x4906 (DG1)
[02:08:14] [PASSED] 0x4907 (DG1)
[02:08:14] [PASSED] 0x4908 (DG1)
[02:08:14] [PASSED] 0x4909 (DG1)
[02:08:14] [PASSED] 0x56C0 (DG2)
[02:08:14] [PASSED] 0x56C2 (DG2)
[02:08:14] [PASSED] 0x56C1 (DG2)
[02:08:14] [PASSED] 0x7D51 (METEORLAKE)
[02:08:14] [PASSED] 0x7DD1 (METEORLAKE)
[02:08:14] [PASSED] 0x7D41 (METEORLAKE)
[02:08:14] [PASSED] 0x7D67 (METEORLAKE)
[02:08:14] [PASSED] 0xB640 (METEORLAKE)
[02:08:14] [PASSED] 0x56A0 (DG2)
[02:08:14] [PASSED] 0x56A1 (DG2)
[02:08:14] [PASSED] 0x56A2 (DG2)
[02:08:14] [PASSED] 0x56BE (DG2)
[02:08:14] [PASSED] 0x56BF (DG2)
[02:08:14] [PASSED] 0x5690 (DG2)
[02:08:14] [PASSED] 0x5691 (DG2)
[02:08:14] [PASSED] 0x5692 (DG2)
[02:08:14] [PASSED] 0x56A5 (DG2)
[02:08:14] [PASSED] 0x56A6 (DG2)
[02:08:14] [PASSED] 0x56B0 (DG2)
[02:08:14] [PASSED] 0x56B1 (DG2)
[02:08:14] [PASSED] 0x56BA (DG2)
[02:08:14] [PASSED] 0x56BB (DG2)
[02:08:14] [PASSED] 0x56BC (DG2)
[02:08:14] [PASSED] 0x56BD (DG2)
[02:08:14] [PASSED] 0x5693 (DG2)
[02:08:14] [PASSED] 0x5694 (DG2)
[02:08:14] [PASSED] 0x5695 (DG2)
[02:08:14] [PASSED] 0x56A3 (DG2)
[02:08:14] [PASSED] 0x56A4 (DG2)
[02:08:14] [PASSED] 0x56B2 (DG2)
[02:08:14] [PASSED] 0x56B3 (DG2)
[02:08:14] [PASSED] 0x5696 (DG2)
[02:08:14] [PASSED] 0x5697 (DG2)
[02:08:14] [PASSED] 0xB69 (PVC)
[02:08:14] [PASSED] 0xB6E (PVC)
[02:08:14] [PASSED] 0xBD4 (PVC)
[02:08:14] [PASSED] 0xBD5 (PVC)
[02:08:14] [PASSED] 0xBD6 (PVC)
[02:08:14] [PASSED] 0xBD7 (PVC)
[02:08:14] [PASSED] 0xBD8 (PVC)
[02:08:14] [PASSED] 0xBD9 (PVC)
[02:08:14] [PASSED] 0xBDA (PVC)
[02:08:14] [PASSED] 0xBDB (PVC)
[02:08:14] [PASSED] 0xBE0 (PVC)
[02:08:14] [PASSED] 0xBE1 (PVC)
[02:08:14] [PASSED] 0xBE5 (PVC)
[02:08:14] [PASSED] 0x7D40 (METEORLAKE)
[02:08:14] [PASSED] 0x7D45 (METEORLAKE)
[02:08:14] [PASSED] 0x7D55 (METEORLAKE)
[02:08:14] [PASSED] 0x7D60 (METEORLAKE)
[02:08:14] [PASSED] 0x7DD5 (METEORLAKE)
[02:08:14] [PASSED] 0x6420 (LUNARLAKE)
[02:08:14] [PASSED] 0x64A0 (LUNARLAKE)
[02:08:14] [PASSED] 0x64B0 (LUNARLAKE)
[02:08:14] [PASSED] 0xE202 (BATTLEMAGE)
[02:08:14] [PASSED] 0xE209 (BATTLEMAGE)
[02:08:14] [PASSED] 0xE20B (BATTLEMAGE)
[02:08:14] [PASSED] 0xE20C (BATTLEMAGE)
[02:08:14] [PASSED] 0xE20D (BATTLEMAGE)
[02:08:14] [PASSED] 0xE210 (BATTLEMAGE)
[02:08:14] [PASSED] 0xE211 (BATTLEMAGE)
[02:08:14] [PASSED] 0xE212 (BATTLEMAGE)
[02:08:14] [PASSED] 0xE216 (BATTLEMAGE)
[02:08:14] [PASSED] 0xE220 (BATTLEMAGE)
[02:08:14] [PASSED] 0xE221 (BATTLEMAGE)
[02:08:14] [PASSED] 0xE222 (BATTLEMAGE)
[02:08:14] [PASSED] 0xE223 (BATTLEMAGE)
[02:08:14] [PASSED] 0xB080 (PANTHERLAKE)
[02:08:14] [PASSED] 0xB081 (PANTHERLAKE)
[02:08:14] [PASSED] 0xB082 (PANTHERLAKE)
[02:08:14] [PASSED] 0xB083 (PANTHERLAKE)
[02:08:14] [PASSED] 0xB084 (PANTHERLAKE)
[02:08:14] [PASSED] 0xB085 (PANTHERLAKE)
[02:08:14] [PASSED] 0xB086 (PANTHERLAKE)
[02:08:14] [PASSED] 0xB087 (PANTHERLAKE)
[02:08:14] [PASSED] 0xB08F (PANTHERLAKE)
[02:08:14] [PASSED] 0xB090 (PANTHERLAKE)
[02:08:14] [PASSED] 0xB0A0 (PANTHERLAKE)
[02:08:14] [PASSED] 0xB0B0 (PANTHERLAKE)
[02:08:14] [PASSED] 0xFD80 (PANTHERLAKE)
[02:08:14] [PASSED] 0xFD81 (PANTHERLAKE)
[02:08:14] [PASSED] 0xD740 (NOVALAKE_S)
[02:08:14] [PASSED] 0xD741 (NOVALAKE_S)
[02:08:14] [PASSED] 0xD742 (NOVALAKE_S)
[02:08:14] [PASSED] 0xD743 (NOVALAKE_S)
[02:08:14] [PASSED] 0xD744 (NOVALAKE_S)
[02:08:14] [PASSED] 0xD745 (NOVALAKE_S)
[02:08:14] [PASSED] 0x674C (CRESCENTISLAND)
[02:08:14] =============== [PASSED] check_platform_desc ===============
[02:08:14] ===================== [PASSED] xe_pci ======================
[02:08:14] =================== xe_rtp (2 subtests) ====================
[02:08:14] =============== xe_rtp_process_to_sr_tests ================
[02:08:14] [PASSED] coalesce-same-reg
[02:08:14] [PASSED] no-match-no-add
[02:08:14] [PASSED] match-or
[02:08:14] [PASSED] match-or-xfail
[02:08:14] [PASSED] no-match-no-add-multiple-rules
[02:08:14] [PASSED] two-regs-two-entries
[02:08:14] [PASSED] clr-one-set-other
[02:08:14] [PASSED] set-field
[02:08:14] [PASSED] conflict-duplicate
[02:08:14] [PASSED] conflict-not-disjoint
[02:08:14] [PASSED] conflict-reg-type
[02:08:14] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[02:08:14] ================== xe_rtp_process_tests ===================
[02:08:14] [PASSED] active1
[02:08:14] [PASSED] active2
[02:08:14] [PASSED] active-inactive
[02:08:14] [PASSED] inactive-active
[02:08:14] [PASSED] inactive-1st_or_active-inactive
[02:08:14] [PASSED] inactive-2nd_or_active-inactive
[02:08:14] [PASSED] inactive-last_or_active-inactive
[02:08:14] [PASSED] inactive-no_or_active-inactive
[02:08:14] ============== [PASSED] xe_rtp_process_tests ===============
[02:08:14] ===================== [PASSED] xe_rtp ======================
[02:08:14] ==================== xe_wa (1 subtest) =====================
[02:08:14] ======================== xe_wa_gt =========================
[02:08:14] [PASSED] TIGERLAKE B0
[02:08:14] [PASSED] DG1 A0
[02:08:14] [PASSED] DG1 B0
[02:08:14] [PASSED] ALDERLAKE_S A0
[02:08:14] [PASSED] ALDERLAKE_S B0
[02:08:14] [PASSED] ALDERLAKE_S C0
[02:08:14] [PASSED] ALDERLAKE_S D0
[02:08:14] [PASSED] ALDERLAKE_P A0
[02:08:14] [PASSED] ALDERLAKE_P B0
[02:08:14] [PASSED] ALDERLAKE_P C0
[02:08:14] [PASSED] ALDERLAKE_S RPLS D0
[02:08:14] [PASSED] ALDERLAKE_P RPLU E0
[02:08:14] [PASSED] DG2 G10 C0
[02:08:14] [PASSED] DG2 G11 B1
[02:08:14] [PASSED] DG2 G12 A1
[02:08:14] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[02:08:14] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[02:08:14] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[02:08:14] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[02:08:14] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[02:08:14] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[02:08:14] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[02:08:14] ==================== [PASSED] xe_wa_gt =====================
[02:08:14] ====================== [PASSED] xe_wa ======================
[02:08:14] ============================================================
[02:08:14] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[02:08:14] Elapsed time: 36.306s total, 4.230s configuring, 31.559s building, 0.467s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[02:08:14] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[02:08:16] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[02:08:41] Starting KUnit Kernel (1/1)...
[02:08:41] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[02:08:41] ============ drm_test_pick_cmdline (2 subtests) ============
[02:08:41] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[02:08:42] =============== drm_test_pick_cmdline_named ===============
[02:08:42] [PASSED] NTSC
[02:08:42] [PASSED] NTSC-J
[02:08:42] [PASSED] PAL
[02:08:42] [PASSED] PAL-M
[02:08:42] =========== [PASSED] drm_test_pick_cmdline_named ===========
[02:08:42] ============== [PASSED] drm_test_pick_cmdline ==============
[02:08:42] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[02:08:42] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[02:08:42] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[02:08:42] =========== drm_validate_clone_mode (2 subtests) ===========
[02:08:42] ============== drm_test_check_in_clone_mode ===============
[02:08:42] [PASSED] in_clone_mode
[02:08:42] [PASSED] not_in_clone_mode
[02:08:42] ========== [PASSED] drm_test_check_in_clone_mode ===========
[02:08:42] =============== drm_test_check_valid_clones ===============
[02:08:42] [PASSED] not_in_clone_mode
[02:08:42] [PASSED] valid_clone
[02:08:42] [PASSED] invalid_clone
[02:08:42] =========== [PASSED] drm_test_check_valid_clones ===========
[02:08:42] ============= [PASSED] drm_validate_clone_mode =============
[02:08:42] ============= drm_validate_modeset (1 subtest) =============
[02:08:42] [PASSED] drm_test_check_connector_changed_modeset
[02:08:42] ============== [PASSED] drm_validate_modeset ===============
[02:08:42] ====== drm_test_bridge_get_current_state (2 subtests) ======
[02:08:42] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[02:08:42] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[02:08:42] ======== [PASSED] drm_test_bridge_get_current_state ========
[02:08:42] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[02:08:42] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[02:08:42] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[02:08:42] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[02:08:42] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[02:08:42] ============== drm_bridge_alloc (2 subtests) ===============
[02:08:42] [PASSED] drm_test_drm_bridge_alloc_basic
[02:08:42] [PASSED] drm_test_drm_bridge_alloc_get_put
[02:08:42] ================ [PASSED] drm_bridge_alloc =================
[02:08:42] ================== drm_buddy (9 subtests) ==================
[02:08:42] [PASSED] drm_test_buddy_alloc_limit
[02:08:42] [PASSED] drm_test_buddy_alloc_optimistic
[02:08:42] [PASSED] drm_test_buddy_alloc_pessimistic
[02:08:42] [PASSED] drm_test_buddy_alloc_pathological
[02:08:42] [PASSED] drm_test_buddy_alloc_contiguous
[02:08:42] [PASSED] drm_test_buddy_alloc_clear
[02:08:42] [PASSED] drm_test_buddy_alloc_range_bias
[02:08:42] [PASSED] drm_test_buddy_fragmentation_performance
[02:08:42] [PASSED] drm_test_buddy_alloc_exceeds_max_order
[02:08:42] ==================== [PASSED] drm_buddy ====================
[02:08:42] ============= drm_cmdline_parser (40 subtests) =============
[02:08:42] [PASSED] drm_test_cmdline_force_d_only
[02:08:42] [PASSED] drm_test_cmdline_force_D_only_dvi
[02:08:42] [PASSED] drm_test_cmdline_force_D_only_hdmi
[02:08:42] [PASSED] drm_test_cmdline_force_D_only_not_digital
[02:08:42] [PASSED] drm_test_cmdline_force_e_only
[02:08:42] [PASSED] drm_test_cmdline_res
[02:08:42] [PASSED] drm_test_cmdline_res_vesa
[02:08:42] [PASSED] drm_test_cmdline_res_vesa_rblank
[02:08:42] [PASSED] drm_test_cmdline_res_rblank
[02:08:42] [PASSED] drm_test_cmdline_res_bpp
[02:08:42] [PASSED] drm_test_cmdline_res_refresh
[02:08:42] [PASSED] drm_test_cmdline_res_bpp_refresh
[02:08:42] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[02:08:42] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[02:08:42] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[02:08:42] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[02:08:42] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[02:08:42] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[02:08:42] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[02:08:42] [PASSED] drm_test_cmdline_res_margins_force_on
[02:08:42] [PASSED] drm_test_cmdline_res_vesa_margins
[02:08:42] [PASSED] drm_test_cmdline_name
[02:08:42] [PASSED] drm_test_cmdline_name_bpp
[02:08:42] [PASSED] drm_test_cmdline_name_option
[02:08:42] [PASSED] drm_test_cmdline_name_bpp_option
[02:08:42] [PASSED] drm_test_cmdline_rotate_0
[02:08:42] [PASSED] drm_test_cmdline_rotate_90
[02:08:42] [PASSED] drm_test_cmdline_rotate_180
[02:08:42] [PASSED] drm_test_cmdline_rotate_270
[02:08:42] [PASSED] drm_test_cmdline_hmirror
[02:08:42] [PASSED] drm_test_cmdline_vmirror
[02:08:42] [PASSED] drm_test_cmdline_margin_options
[02:08:42] [PASSED] drm_test_cmdline_multiple_options
[02:08:42] [PASSED] drm_test_cmdline_bpp_extra_and_option
[02:08:42] [PASSED] drm_test_cmdline_extra_and_option
[02:08:42] [PASSED] drm_test_cmdline_freestanding_options
[02:08:42] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[02:08:42] [PASSED] drm_test_cmdline_panel_orientation
[02:08:42] ================ drm_test_cmdline_invalid =================
[02:08:42] [PASSED] margin_only
[02:08:42] [PASSED] interlace_only
[02:08:42] [PASSED] res_missing_x
[02:08:42] [PASSED] res_missing_y
[02:08:42] [PASSED] res_bad_y
[02:08:42] [PASSED] res_missing_y_bpp
[02:08:42] [PASSED] res_bad_bpp
[02:08:42] [PASSED] res_bad_refresh
[02:08:42] [PASSED] res_bpp_refresh_force_on_off
[02:08:42] [PASSED] res_invalid_mode
[02:08:42] [PASSED] res_bpp_wrong_place_mode
[02:08:42] [PASSED] name_bpp_refresh
[02:08:42] [PASSED] name_refresh
[02:08:42] [PASSED] name_refresh_wrong_mode
[02:08:42] [PASSED] name_refresh_invalid_mode
[02:08:42] [PASSED] rotate_multiple
[02:08:42] [PASSED] rotate_invalid_val
[02:08:42] [PASSED] rotate_truncated
[02:08:42] [PASSED] invalid_option
[02:08:42] [PASSED] invalid_tv_option
[02:08:42] [PASSED] truncated_tv_option
[02:08:42] ============ [PASSED] drm_test_cmdline_invalid =============
[02:08:42] =============== drm_test_cmdline_tv_options ===============
[02:08:42] [PASSED] NTSC
[02:08:42] [PASSED] NTSC_443
[02:08:42] [PASSED] NTSC_J
[02:08:42] [PASSED] PAL
[02:08:42] [PASSED] PAL_M
[02:08:42] [PASSED] PAL_N
[02:08:42] [PASSED] SECAM
[02:08:42] [PASSED] MONO_525
[02:08:42] [PASSED] MONO_625
[02:08:42] =========== [PASSED] drm_test_cmdline_tv_options ===========
[02:08:42] =============== [PASSED] drm_cmdline_parser ================
[02:08:42] ========== drmm_connector_hdmi_init (20 subtests) ==========
[02:08:42] [PASSED] drm_test_connector_hdmi_init_valid
[02:08:42] [PASSED] drm_test_connector_hdmi_init_bpc_8
[02:08:42] [PASSED] drm_test_connector_hdmi_init_bpc_10
[02:08:42] [PASSED] drm_test_connector_hdmi_init_bpc_12
[02:08:42] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[02:08:42] [PASSED] drm_test_connector_hdmi_init_bpc_null
[02:08:42] [PASSED] drm_test_connector_hdmi_init_formats_empty
[02:08:42] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[02:08:42] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[02:08:42] [PASSED] supported_formats=0x9 yuv420_allowed=1
[02:08:42] [PASSED] supported_formats=0x9 yuv420_allowed=0
[02:08:42] [PASSED] supported_formats=0x3 yuv420_allowed=1
[02:08:42] [PASSED] supported_formats=0x3 yuv420_allowed=0
[02:08:42] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[02:08:42] [PASSED] drm_test_connector_hdmi_init_null_ddc
[02:08:42] [PASSED] drm_test_connector_hdmi_init_null_product
[02:08:42] [PASSED] drm_test_connector_hdmi_init_null_vendor
[02:08:42] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[02:08:42] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[02:08:42] [PASSED] drm_test_connector_hdmi_init_product_valid
[02:08:42] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[02:08:42] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[02:08:42] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[02:08:42] ========= drm_test_connector_hdmi_init_type_valid =========
[02:08:42] [PASSED] HDMI-A
[02:08:42] [PASSED] HDMI-B
[02:08:42] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[02:08:42] ======== drm_test_connector_hdmi_init_type_invalid ========
[02:08:42] [PASSED] Unknown
[02:08:42] [PASSED] VGA
[02:08:42] [PASSED] DVI-I
[02:08:42] [PASSED] DVI-D
[02:08:42] [PASSED] DVI-A
[02:08:42] [PASSED] Composite
[02:08:42] [PASSED] SVIDEO
[02:08:42] [PASSED] LVDS
[02:08:42] [PASSED] Component
[02:08:42] [PASSED] DIN
[02:08:42] [PASSED] DP
[02:08:42] [PASSED] TV
[02:08:42] [PASSED] eDP
[02:08:42] [PASSED] Virtual
[02:08:42] [PASSED] DSI
[02:08:42] [PASSED] DPI
[02:08:42] [PASSED] Writeback
[02:08:42] [PASSED] SPI
[02:08:42] [PASSED] USB
[02:08:42] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[02:08:42] ============ [PASSED] drmm_connector_hdmi_init =============
[02:08:42] ============= drmm_connector_init (3 subtests) =============
[02:08:42] [PASSED] drm_test_drmm_connector_init
[02:08:42] [PASSED] drm_test_drmm_connector_init_null_ddc
[02:08:42] ========= drm_test_drmm_connector_init_type_valid =========
[02:08:42] [PASSED] Unknown
[02:08:42] [PASSED] VGA
[02:08:42] [PASSED] DVI-I
[02:08:42] [PASSED] DVI-D
[02:08:42] [PASSED] DVI-A
[02:08:42] [PASSED] Composite
[02:08:42] [PASSED] SVIDEO
[02:08:42] [PASSED] LVDS
[02:08:42] [PASSED] Component
[02:08:42] [PASSED] DIN
[02:08:42] [PASSED] DP
[02:08:42] [PASSED] HDMI-A
[02:08:42] [PASSED] HDMI-B
[02:08:42] [PASSED] TV
[02:08:42] [PASSED] eDP
[02:08:42] [PASSED] Virtual
[02:08:42] [PASSED] DSI
[02:08:42] [PASSED] DPI
[02:08:42] [PASSED] Writeback
[02:08:42] [PASSED] SPI
[02:08:42] [PASSED] USB
[02:08:42] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[02:08:42] =============== [PASSED] drmm_connector_init ===============
[02:08:42] ========= drm_connector_dynamic_init (6 subtests) ==========
[02:08:42] [PASSED] drm_test_drm_connector_dynamic_init
[02:08:42] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[02:08:42] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[02:08:42] [PASSED] drm_test_drm_connector_dynamic_init_properties
[02:08:42] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[02:08:42] [PASSED] Unknown
[02:08:42] [PASSED] VGA
[02:08:42] [PASSED] DVI-I
[02:08:42] [PASSED] DVI-D
[02:08:42] [PASSED] DVI-A
[02:08:42] [PASSED] Composite
[02:08:42] [PASSED] SVIDEO
[02:08:42] [PASSED] LVDS
[02:08:42] [PASSED] Component
[02:08:42] [PASSED] DIN
[02:08:42] [PASSED] DP
[02:08:42] [PASSED] HDMI-A
[02:08:42] [PASSED] HDMI-B
[02:08:42] [PASSED] TV
[02:08:42] [PASSED] eDP
[02:08:42] [PASSED] Virtual
[02:08:42] [PASSED] DSI
[02:08:42] [PASSED] DPI
[02:08:42] [PASSED] Writeback
[02:08:42] [PASSED] SPI
[02:08:42] [PASSED] USB
[02:08:42] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[02:08:42] ======== drm_test_drm_connector_dynamic_init_name =========
[02:08:42] [PASSED] Unknown
[02:08:42] [PASSED] VGA
[02:08:42] [PASSED] DVI-I
[02:08:42] [PASSED] DVI-D
[02:08:42] [PASSED] DVI-A
[02:08:42] [PASSED] Composite
[02:08:42] [PASSED] SVIDEO
[02:08:42] [PASSED] LVDS
[02:08:42] [PASSED] Component
[02:08:42] [PASSED] DIN
[02:08:42] [PASSED] DP
[02:08:42] [PASSED] HDMI-A
[02:08:42] [PASSED] HDMI-B
[02:08:42] [PASSED] TV
[02:08:42] [PASSED] eDP
[02:08:42] [PASSED] Virtual
[02:08:42] [PASSED] DSI
[02:08:42] [PASSED] DPI
[02:08:42] [PASSED] Writeback
[02:08:42] [PASSED] SPI
[02:08:42] [PASSED] USB
[02:08:42] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[02:08:42] =========== [PASSED] drm_connector_dynamic_init ============
[02:08:42] ==== drm_connector_dynamic_register_early (4 subtests) =====
[02:08:42] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[02:08:42] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[02:08:42] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[02:08:42] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[02:08:42] ====== [PASSED] drm_connector_dynamic_register_early =======
[02:08:42] ======= drm_connector_dynamic_register (7 subtests) ========
[02:08:42] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[02:08:42] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[02:08:42] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[02:08:42] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[02:08:42] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[02:08:42] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[02:08:42] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[02:08:42] ========= [PASSED] drm_connector_dynamic_register ==========
[02:08:42] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[02:08:42] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[02:08:42] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[02:08:42] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[02:08:42] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[02:08:42] ========== drm_test_get_tv_mode_from_name_valid ===========
[02:08:42] [PASSED] NTSC
[02:08:42] [PASSED] NTSC-443
[02:08:42] [PASSED] NTSC-J
[02:08:42] [PASSED] PAL
[02:08:42] [PASSED] PAL-M
[02:08:42] [PASSED] PAL-N
[02:08:42] [PASSED] SECAM
[02:08:42] [PASSED] Mono
[02:08:42] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[02:08:42] [PASSED] drm_test_get_tv_mode_from_name_truncated
[02:08:42] ============ [PASSED] drm_get_tv_mode_from_name ============
[02:08:42] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[02:08:42] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[02:08:42] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[02:08:42] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[02:08:42] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[02:08:42] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[02:08:42] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[02:08:42] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[02:08:42] [PASSED] VIC 96
[02:08:42] [PASSED] VIC 97
[02:08:42] [PASSED] VIC 101
[02:08:42] [PASSED] VIC 102
[02:08:42] [PASSED] VIC 106
[02:08:42] [PASSED] VIC 107
[02:08:42] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[02:08:42] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[02:08:42] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[02:08:42] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[02:08:42] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[02:08:42] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[02:08:42] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[02:08:42] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[02:08:42] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[02:08:42] [PASSED] Automatic
[02:08:42] [PASSED] Full
[02:08:42] [PASSED] Limited 16:235
[02:08:42] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[02:08:42] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[02:08:42] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[02:08:42] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[02:08:42] === drm_test_drm_hdmi_connector_get_output_format_name ====
[02:08:42] [PASSED] RGB
[02:08:42] [PASSED] YUV 4:2:0
[02:08:42] [PASSED] YUV 4:2:2
[02:08:42] [PASSED] YUV 4:4:4
[02:08:42] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[02:08:42] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[02:08:42] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[02:08:42] ============= drm_damage_helper (21 subtests) ==============
[02:08:42] [PASSED] drm_test_damage_iter_no_damage
[02:08:42] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[02:08:42] [PASSED] drm_test_damage_iter_no_damage_src_moved
[02:08:42] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[02:08:42] [PASSED] drm_test_damage_iter_no_damage_not_visible
[02:08:42] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[02:08:42] [PASSED] drm_test_damage_iter_no_damage_no_fb
[02:08:42] [PASSED] drm_test_damage_iter_simple_damage
[02:08:42] [PASSED] drm_test_damage_iter_single_damage
[02:08:42] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[02:08:42] [PASSED] drm_test_damage_iter_single_damage_outside_src
[02:08:42] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[02:08:42] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[02:08:42] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[02:08:42] [PASSED] drm_test_damage_iter_single_damage_src_moved
[02:08:42] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[02:08:42] [PASSED] drm_test_damage_iter_damage
[02:08:42] [PASSED] drm_test_damage_iter_damage_one_intersect
[02:08:42] [PASSED] drm_test_damage_iter_damage_one_outside
[02:08:42] [PASSED] drm_test_damage_iter_damage_src_moved
[02:08:42] [PASSED] drm_test_damage_iter_damage_not_visible
[02:08:42] ================ [PASSED] drm_damage_helper ================
[02:08:42] ============== drm_dp_mst_helper (3 subtests) ==============
[02:08:42] ============== drm_test_dp_mst_calc_pbn_mode ==============
[02:08:42] [PASSED] Clock 154000 BPP 30 DSC disabled
[02:08:42] [PASSED] Clock 234000 BPP 30 DSC disabled
[02:08:42] [PASSED] Clock 297000 BPP 24 DSC disabled
[02:08:42] [PASSED] Clock 332880 BPP 24 DSC enabled
[02:08:42] [PASSED] Clock 324540 BPP 24 DSC enabled
[02:08:42] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[02:08:42] ============== drm_test_dp_mst_calc_pbn_div ===============
[02:08:42] [PASSED] Link rate 2000000 lane count 4
[02:08:42] [PASSED] Link rate 2000000 lane count 2
[02:08:42] [PASSED] Link rate 2000000 lane count 1
[02:08:42] [PASSED] Link rate 1350000 lane count 4
[02:08:42] [PASSED] Link rate 1350000 lane count 2
[02:08:42] [PASSED] Link rate 1350000 lane count 1
[02:08:42] [PASSED] Link rate 1000000 lane count 4
[02:08:42] [PASSED] Link rate 1000000 lane count 2
[02:08:42] [PASSED] Link rate 1000000 lane count 1
[02:08:42] [PASSED] Link rate 810000 lane count 4
[02:08:42] [PASSED] Link rate 810000 lane count 2
[02:08:42] [PASSED] Link rate 810000 lane count 1
[02:08:42] [PASSED] Link rate 540000 lane count 4
[02:08:42] [PASSED] Link rate 540000 lane count 2
[02:08:42] [PASSED] Link rate 540000 lane count 1
[02:08:42] [PASSED] Link rate 270000 lane count 4
[02:08:42] [PASSED] Link rate 270000 lane count 2
[02:08:42] [PASSED] Link rate 270000 lane count 1
[02:08:42] [PASSED] Link rate 162000 lane count 4
[02:08:42] [PASSED] Link rate 162000 lane count 2
[02:08:42] [PASSED] Link rate 162000 lane count 1
[02:08:42] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[02:08:42] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[02:08:42] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[02:08:42] [PASSED] DP_POWER_UP_PHY with port number
[02:08:42] [PASSED] DP_POWER_DOWN_PHY with port number
[02:08:42] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[02:08:42] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[02:08:42] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[02:08:42] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[02:08:42] [PASSED] DP_QUERY_PAYLOAD with port number
[02:08:42] [PASSED] DP_QUERY_PAYLOAD with VCPI
[02:08:42] [PASSED] DP_REMOTE_DPCD_READ with port number
[02:08:42] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[02:08:42] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[02:08:42] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[02:08:42] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[02:08:42] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[02:08:42] [PASSED] DP_REMOTE_I2C_READ with port number
[02:08:42] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[02:08:42] [PASSED] DP_REMOTE_I2C_READ with transactions array
[02:08:42] [PASSED] DP_REMOTE_I2C_WRITE with port number
[02:08:42] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[02:08:42] [PASSED] DP_REMOTE_I2C_WRITE with data array
[02:08:42] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[02:08:42] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[02:08:42] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[02:08:42] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[02:08:42] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[02:08:42] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[02:08:42] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[02:08:42] ================ [PASSED] drm_dp_mst_helper ================
[02:08:42] ================== drm_exec (7 subtests) ===================
[02:08:42] [PASSED] sanitycheck
[02:08:42] [PASSED] test_lock
[02:08:42] [PASSED] test_lock_unlock
[02:08:42] [PASSED] test_duplicates
[02:08:42] [PASSED] test_prepare
[02:08:42] [PASSED] test_prepare_array
[02:08:42] [PASSED] test_multiple_loops
[02:08:42] ==================== [PASSED] drm_exec =====================
[02:08:42] =========== drm_format_helper_test (17 subtests) ===========
[02:08:42] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[02:08:42] [PASSED] single_pixel_source_buffer
[02:08:42] [PASSED] single_pixel_clip_rectangle
[02:08:42] [PASSED] well_known_colors
[02:08:42] [PASSED] destination_pitch
[02:08:42] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[02:08:42] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[02:08:42] [PASSED] single_pixel_source_buffer
[02:08:42] [PASSED] single_pixel_clip_rectangle
[02:08:42] [PASSED] well_known_colors
[02:08:42] [PASSED] destination_pitch
[02:08:42] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[02:08:42] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[02:08:42] [PASSED] single_pixel_source_buffer
[02:08:42] [PASSED] single_pixel_clip_rectangle
[02:08:42] [PASSED] well_known_colors
[02:08:42] [PASSED] destination_pitch
[02:08:42] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[02:08:42] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[02:08:42] [PASSED] single_pixel_source_buffer
[02:08:42] [PASSED] single_pixel_clip_rectangle
[02:08:42] [PASSED] well_known_colors
[02:08:42] [PASSED] destination_pitch
[02:08:42] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[02:08:42] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[02:08:42] [PASSED] single_pixel_source_buffer
[02:08:42] [PASSED] single_pixel_clip_rectangle
[02:08:42] [PASSED] well_known_colors
[02:08:42] [PASSED] destination_pitch
[02:08:42] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[02:08:42] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[02:08:42] [PASSED] single_pixel_source_buffer
[02:08:42] [PASSED] single_pixel_clip_rectangle
[02:08:42] [PASSED] well_known_colors
[02:08:42] [PASSED] destination_pitch
[02:08:42] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[02:08:42] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[02:08:42] [PASSED] single_pixel_source_buffer
[02:08:42] [PASSED] single_pixel_clip_rectangle
[02:08:42] [PASSED] well_known_colors
[02:08:42] [PASSED] destination_pitch
[02:08:42] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[02:08:42] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[02:08:42] [PASSED] single_pixel_source_buffer
[02:08:42] [PASSED] single_pixel_clip_rectangle
[02:08:42] [PASSED] well_known_colors
[02:08:42] [PASSED] destination_pitch
[02:08:42] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[02:08:42] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[02:08:42] [PASSED] single_pixel_source_buffer
[02:08:42] [PASSED] single_pixel_clip_rectangle
[02:08:42] [PASSED] well_known_colors
[02:08:42] [PASSED] destination_pitch
[02:08:42] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[02:08:42] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[02:08:42] [PASSED] single_pixel_source_buffer
[02:08:42] [PASSED] single_pixel_clip_rectangle
[02:08:42] [PASSED] well_known_colors
[02:08:42] [PASSED] destination_pitch
[02:08:42] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[02:08:42] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[02:08:42] [PASSED] single_pixel_source_buffer
[02:08:42] [PASSED] single_pixel_clip_rectangle
[02:08:42] [PASSED] well_known_colors
[02:08:42] [PASSED] destination_pitch
[02:08:42] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[02:08:42] ============== drm_test_fb_xrgb8888_to_mono ===============
[02:08:42] [PASSED] single_pixel_source_buffer
[02:08:42] [PASSED] single_pixel_clip_rectangle
[02:08:42] [PASSED] well_known_colors
[02:08:42] [PASSED] destination_pitch
[02:08:42] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[02:08:42] ==================== drm_test_fb_swab =====================
[02:08:42] [PASSED] single_pixel_source_buffer
[02:08:42] [PASSED] single_pixel_clip_rectangle
[02:08:42] [PASSED] well_known_colors
[02:08:42] [PASSED] destination_pitch
[02:08:42] ================ [PASSED] drm_test_fb_swab =================
[02:08:42] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[02:08:42] [PASSED] single_pixel_source_buffer
[02:08:42] [PASSED] single_pixel_clip_rectangle
[02:08:42] [PASSED] well_known_colors
[02:08:42] [PASSED] destination_pitch
[02:08:42] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[02:08:42] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[02:08:42] [PASSED] single_pixel_source_buffer
[02:08:42] [PASSED] single_pixel_clip_rectangle
[02:08:42] [PASSED] well_known_colors
[02:08:42] [PASSED] destination_pitch
[02:08:42] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[02:08:42] ================= drm_test_fb_clip_offset =================
[02:08:42] [PASSED] pass through
[02:08:42] [PASSED] horizontal offset
[02:08:42] [PASSED] vertical offset
[02:08:42] [PASSED] horizontal and vertical offset
[02:08:42] [PASSED] horizontal offset (custom pitch)
[02:08:42] [PASSED] vertical offset (custom pitch)
[02:08:42] [PASSED] horizontal and vertical offset (custom pitch)
[02:08:42] ============= [PASSED] drm_test_fb_clip_offset =============
[02:08:42] =================== drm_test_fb_memcpy ====================
[02:08:42] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[02:08:42] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[02:08:42] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[02:08:42] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[02:08:42] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[02:08:42] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[02:08:42] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[02:08:42] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[02:08:42] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[02:08:42] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[02:08:42] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[02:08:42] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[02:08:42] =============== [PASSED] drm_test_fb_memcpy ================
[02:08:42] ============= [PASSED] drm_format_helper_test ==============
[02:08:42] ================= drm_format (18 subtests) =================
[02:08:42] [PASSED] drm_test_format_block_width_invalid
[02:08:42] [PASSED] drm_test_format_block_width_one_plane
[02:08:42] [PASSED] drm_test_format_block_width_two_plane
[02:08:42] [PASSED] drm_test_format_block_width_three_plane
[02:08:42] [PASSED] drm_test_format_block_width_tiled
[02:08:42] [PASSED] drm_test_format_block_height_invalid
[02:08:42] [PASSED] drm_test_format_block_height_one_plane
[02:08:42] [PASSED] drm_test_format_block_height_two_plane
[02:08:42] [PASSED] drm_test_format_block_height_three_plane
[02:08:42] [PASSED] drm_test_format_block_height_tiled
[02:08:42] [PASSED] drm_test_format_min_pitch_invalid
[02:08:42] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[02:08:42] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[02:08:42] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[02:08:42] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[02:08:42] [PASSED] drm_test_format_min_pitch_two_plane
[02:08:42] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[02:08:42] [PASSED] drm_test_format_min_pitch_tiled
[02:08:42] =================== [PASSED] drm_format ====================
[02:08:42] ============== drm_framebuffer (10 subtests) ===============
[02:08:42] ========== drm_test_framebuffer_check_src_coords ==========
[02:08:42] [PASSED] Success: source fits into fb
[02:08:42] [PASSED] Fail: overflowing fb with x-axis coordinate
[02:08:42] [PASSED] Fail: overflowing fb with y-axis coordinate
[02:08:42] [PASSED] Fail: overflowing fb with source width
[02:08:42] [PASSED] Fail: overflowing fb with source height
[02:08:42] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[02:08:42] [PASSED] drm_test_framebuffer_cleanup
[02:08:42] =============== drm_test_framebuffer_create ===============
[02:08:42] [PASSED] ABGR8888 normal sizes
[02:08:42] [PASSED] ABGR8888 max sizes
[02:08:42] [PASSED] ABGR8888 pitch greater than min required
[02:08:42] [PASSED] ABGR8888 pitch less than min required
[02:08:42] [PASSED] ABGR8888 Invalid width
[02:08:42] [PASSED] ABGR8888 Invalid buffer handle
[02:08:42] [PASSED] No pixel format
[02:08:42] [PASSED] ABGR8888 Width 0
[02:08:42] [PASSED] ABGR8888 Height 0
[02:08:42] [PASSED] ABGR8888 Out of bound height * pitch combination
[02:08:42] [PASSED] ABGR8888 Large buffer offset
[02:08:42] [PASSED] ABGR8888 Buffer offset for inexistent plane
[02:08:42] [PASSED] ABGR8888 Invalid flag
[02:08:42] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[02:08:42] [PASSED] ABGR8888 Valid buffer modifier
[02:08:42] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[02:08:42] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[02:08:42] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[02:08:42] [PASSED] NV12 Normal sizes
[02:08:42] [PASSED] NV12 Max sizes
[02:08:42] [PASSED] NV12 Invalid pitch
[02:08:42] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[02:08:42] [PASSED] NV12 different modifier per-plane
[02:08:42] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[02:08:42] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[02:08:42] [PASSED] NV12 Modifier for inexistent plane
[02:08:42] [PASSED] NV12 Handle for inexistent plane
[02:08:42] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[02:08:42] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[02:08:42] [PASSED] YVU420 Normal sizes
[02:08:42] [PASSED] YVU420 Max sizes
[02:08:42] [PASSED] YVU420 Invalid pitch
[02:08:42] [PASSED] YVU420 Different pitches
[02:08:42] [PASSED] YVU420 Different buffer offsets/pitches
[02:08:42] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[02:08:42] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[02:08:42] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[02:08:42] [PASSED] YVU420 Valid modifier
[02:08:42] [PASSED] YVU420 Different modifiers per plane
[02:08:42] [PASSED] YVU420 Modifier for inexistent plane
[02:08:42] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[02:08:42] [PASSED] X0L2 Normal sizes
[02:08:42] [PASSED] X0L2 Max sizes
[02:08:42] [PASSED] X0L2 Invalid pitch
[02:08:42] [PASSED] X0L2 Pitch greater than minimum required
[02:08:42] [PASSED] X0L2 Handle for inexistent plane
[02:08:42] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[02:08:42] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[02:08:42] [PASSED] X0L2 Valid modifier
[02:08:42] [PASSED] X0L2 Modifier for inexistent plane
[02:08:42] =========== [PASSED] drm_test_framebuffer_create ===========
[02:08:42] [PASSED] drm_test_framebuffer_free
[02:08:42] [PASSED] drm_test_framebuffer_init
[02:08:42] [PASSED] drm_test_framebuffer_init_bad_format
[02:08:42] [PASSED] drm_test_framebuffer_init_dev_mismatch
[02:08:42] [PASSED] drm_test_framebuffer_lookup
[02:08:42] [PASSED] drm_test_framebuffer_lookup_inexistent
[02:08:42] [PASSED] drm_test_framebuffer_modifiers_not_supported
[02:08:42] ================= [PASSED] drm_framebuffer =================
[02:08:42] ================ drm_gem_shmem (8 subtests) ================
[02:08:42] [PASSED] drm_gem_shmem_test_obj_create
[02:08:42] [PASSED] drm_gem_shmem_test_obj_create_private
[02:08:42] [PASSED] drm_gem_shmem_test_pin_pages
[02:08:42] [PASSED] drm_gem_shmem_test_vmap
[02:08:42] [PASSED] drm_gem_shmem_test_get_sg_table
[02:08:42] [PASSED] drm_gem_shmem_test_get_pages_sgt
[02:08:42] [PASSED] drm_gem_shmem_test_madvise
[02:08:42] [PASSED] drm_gem_shmem_test_purge
[02:08:42] ================== [PASSED] drm_gem_shmem ==================
[02:08:42] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[02:08:42] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[02:08:42] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[02:08:42] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[02:08:42] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[02:08:42] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[02:08:42] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[02:08:42] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[02:08:42] [PASSED] Automatic
[02:08:42] [PASSED] Full
[02:08:42] [PASSED] Limited 16:235
[02:08:42] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[02:08:42] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[02:08:42] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[02:08:42] [PASSED] drm_test_check_disable_connector
[02:08:42] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[02:08:42] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[02:08:42] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[02:08:42] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[02:08:42] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[02:08:42] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[02:08:42] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[02:08:42] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[02:08:42] [PASSED] drm_test_check_output_bpc_dvi
[02:08:42] [PASSED] drm_test_check_output_bpc_format_vic_1
[02:08:42] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[02:08:42] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[02:08:42] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[02:08:42] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[02:08:42] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[02:08:42] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[02:08:42] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[02:08:42] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[02:08:42] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[02:08:42] [PASSED] drm_test_check_broadcast_rgb_value
[02:08:42] [PASSED] drm_test_check_bpc_8_value
[02:08:42] [PASSED] drm_test_check_bpc_10_value
[02:08:42] [PASSED] drm_test_check_bpc_12_value
[02:08:42] [PASSED] drm_test_check_format_value
[02:08:42] [PASSED] drm_test_check_tmds_char_value
[02:08:42] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[02:08:42] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[02:08:42] [PASSED] drm_test_check_mode_valid
[02:08:42] [PASSED] drm_test_check_mode_valid_reject
[02:08:42] [PASSED] drm_test_check_mode_valid_reject_rate
[02:08:42] [PASSED] drm_test_check_mode_valid_reject_max_clock
[02:08:42] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[02:08:42] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[02:08:42] [PASSED] drm_test_check_infoframes
[02:08:42] [PASSED] drm_test_check_reject_avi_infoframe
[02:08:42] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[02:08:42] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[02:08:42] [PASSED] drm_test_check_reject_audio_infoframe
[02:08:42] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[02:08:42] ================= drm_managed (2 subtests) =================
[02:08:42] [PASSED] drm_test_managed_release_action
[02:08:42] [PASSED] drm_test_managed_run_action
[02:08:42] =================== [PASSED] drm_managed ===================
[02:08:42] =================== drm_mm (6 subtests) ====================
[02:08:42] [PASSED] drm_test_mm_init
[02:08:42] [PASSED] drm_test_mm_debug
[02:08:42] [PASSED] drm_test_mm_align32
[02:08:42] [PASSED] drm_test_mm_align64
[02:08:42] [PASSED] drm_test_mm_lowest
[02:08:42] [PASSED] drm_test_mm_highest
[02:08:42] ===================== [PASSED] drm_mm ======================
[02:08:42] ============= drm_modes_analog_tv (5 subtests) =============
[02:08:42] [PASSED] drm_test_modes_analog_tv_mono_576i
[02:08:42] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[02:08:42] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[02:08:42] [PASSED] drm_test_modes_analog_tv_pal_576i
[02:08:42] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[02:08:42] =============== [PASSED] drm_modes_analog_tv ===============
[02:08:42] ============== drm_plane_helper (2 subtests) ===============
[02:08:42] =============== drm_test_check_plane_state ================
[02:08:42] [PASSED] clipping_simple
[02:08:42] [PASSED] clipping_rotate_reflect
[02:08:42] [PASSED] positioning_simple
[02:08:42] [PASSED] upscaling
[02:08:42] [PASSED] downscaling
[02:08:42] [PASSED] rounding1
[02:08:42] [PASSED] rounding2
[02:08:42] [PASSED] rounding3
[02:08:42] [PASSED] rounding4
[02:08:42] =========== [PASSED] drm_test_check_plane_state ============
[02:08:42] =========== drm_test_check_invalid_plane_state ============
[02:08:42] [PASSED] positioning_invalid
[02:08:42] [PASSED] upscaling_invalid
[02:08:42] [PASSED] downscaling_invalid
[02:08:42] ======= [PASSED] drm_test_check_invalid_plane_state ========
[02:08:42] ================ [PASSED] drm_plane_helper =================
[02:08:42] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[02:08:42] ====== drm_test_connector_helper_tv_get_modes_check =======
[02:08:42] [PASSED] None
[02:08:42] [PASSED] PAL
[02:08:42] [PASSED] NTSC
[02:08:42] [PASSED] Both, NTSC Default
[02:08:42] [PASSED] Both, PAL Default
[02:08:42] [PASSED] Both, NTSC Default, with PAL on command-line
[02:08:42] [PASSED] Both, PAL Default, with NTSC on command-line
[02:08:42] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[02:08:42] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[02:08:42] ================== drm_rect (9 subtests) ===================
[02:08:42] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[02:08:42] [PASSED] drm_test_rect_clip_scaled_not_clipped
[02:08:42] [PASSED] drm_test_rect_clip_scaled_clipped
[02:08:42] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[02:08:42] ================= drm_test_rect_intersect =================
[02:08:42] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[02:08:42] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[02:08:42] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[02:08:42] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[02:08:42] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[02:08:42] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[02:08:42] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[02:08:42] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[02:08:42] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[02:08:42] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[02:08:42] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[02:08:42] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[02:08:42] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[02:08:42] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[02:08:42] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
stty: 'standard input': Inappropriate ioctl for device
[02:08:42] ============= [PASSED] drm_test_rect_intersect =============
[02:08:42] ================ drm_test_rect_calc_hscale ================
[02:08:42] [PASSED] normal use
[02:08:42] [PASSED] out of max range
[02:08:42] [PASSED] out of min range
[02:08:42] [PASSED] zero dst
[02:08:42] [PASSED] negative src
[02:08:42] [PASSED] negative dst
[02:08:42] ============ [PASSED] drm_test_rect_calc_hscale ============
[02:08:42] ================ drm_test_rect_calc_vscale ================
[02:08:42] [PASSED] normal use
[02:08:42] [PASSED] out of max range
[02:08:42] [PASSED] out of min range
[02:08:42] [PASSED] zero dst
[02:08:42] [PASSED] negative src
[02:08:42] [PASSED] negative dst
[02:08:42] ============ [PASSED] drm_test_rect_calc_vscale ============
[02:08:42] ================== drm_test_rect_rotate ===================
[02:08:42] [PASSED] reflect-x
[02:08:42] [PASSED] reflect-y
[02:08:42] [PASSED] rotate-0
[02:08:42] [PASSED] rotate-90
[02:08:42] [PASSED] rotate-180
[02:08:42] [PASSED] rotate-270
[02:08:42] ============== [PASSED] drm_test_rect_rotate ===============
[02:08:42] ================ drm_test_rect_rotate_inv =================
[02:08:42] [PASSED] reflect-x
[02:08:42] [PASSED] reflect-y
[02:08:42] [PASSED] rotate-0
[02:08:42] [PASSED] rotate-90
[02:08:42] [PASSED] rotate-180
[02:08:42] [PASSED] rotate-270
[02:08:42] ============ [PASSED] drm_test_rect_rotate_inv =============
[02:08:42] ==================== [PASSED] drm_rect =====================
[02:08:42] ============ drm_sysfb_modeset_test (1 subtest) ============
[02:08:42] ============ drm_test_sysfb_build_fourcc_list =============
[02:08:42] [PASSED] no native formats
[02:08:42] [PASSED] XRGB8888 as native format
[02:08:42] [PASSED] remove duplicates
[02:08:42] [PASSED] convert alpha formats
[02:08:42] [PASSED] random formats
[02:08:42] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[02:08:42] ============= [PASSED] drm_sysfb_modeset_test ==============
[02:08:42] ================== drm_fixp (2 subtests) ===================
[02:08:42] [PASSED] drm_test_int2fixp
[02:08:42] [PASSED] drm_test_sm2fixp
[02:08:42] ==================== [PASSED] drm_fixp =====================
[02:08:42] ============================================================
[02:08:42] Testing complete. Ran 630 tests: passed: 630
[02:08:42] Elapsed time: 27.853s total, 1.695s configuring, 25.690s building, 0.424s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[02:08:42] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[02:08:44] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[02:08:53] Starting KUnit Kernel (1/1)...
[02:08:53] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[02:08:53] ================= ttm_device (5 subtests) ==================
[02:08:53] [PASSED] ttm_device_init_basic
[02:08:53] [PASSED] ttm_device_init_multiple
[02:08:53] [PASSED] ttm_device_fini_basic
[02:08:53] [PASSED] ttm_device_init_no_vma_man
[02:08:53] ================== ttm_device_init_pools ==================
[02:08:53] [PASSED] No DMA allocations, no DMA32 required
[02:08:53] [PASSED] DMA allocations, DMA32 required
[02:08:53] [PASSED] No DMA allocations, DMA32 required
[02:08:53] [PASSED] DMA allocations, no DMA32 required
[02:08:53] ============== [PASSED] ttm_device_init_pools ==============
[02:08:53] =================== [PASSED] ttm_device ====================
[02:08:53] ================== ttm_pool (8 subtests) ===================
[02:08:53] ================== ttm_pool_alloc_basic ===================
[02:08:53] [PASSED] One page
[02:08:53] [PASSED] More than one page
[02:08:53] [PASSED] Above the allocation limit
[02:08:53] [PASSED] One page, with coherent DMA mappings enabled
[02:08:53] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[02:08:53] ============== [PASSED] ttm_pool_alloc_basic ===============
[02:08:53] ============== ttm_pool_alloc_basic_dma_addr ==============
[02:08:53] [PASSED] One page
[02:08:53] [PASSED] More than one page
[02:08:53] [PASSED] Above the allocation limit
[02:08:53] [PASSED] One page, with coherent DMA mappings enabled
[02:08:53] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[02:08:53] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[02:08:53] [PASSED] ttm_pool_alloc_order_caching_match
[02:08:53] [PASSED] ttm_pool_alloc_caching_mismatch
[02:08:53] [PASSED] ttm_pool_alloc_order_mismatch
[02:08:53] [PASSED] ttm_pool_free_dma_alloc
[02:08:53] [PASSED] ttm_pool_free_no_dma_alloc
[02:08:53] [PASSED] ttm_pool_fini_basic
[02:08:53] ==================== [PASSED] ttm_pool =====================
[02:08:53] ================ ttm_resource (8 subtests) =================
[02:08:53] ================= ttm_resource_init_basic =================
[02:08:53] [PASSED] Init resource in TTM_PL_SYSTEM
[02:08:53] [PASSED] Init resource in TTM_PL_VRAM
[02:08:53] [PASSED] Init resource in a private placement
[02:08:53] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[02:08:53] ============= [PASSED] ttm_resource_init_basic =============
[02:08:53] [PASSED] ttm_resource_init_pinned
[02:08:53] [PASSED] ttm_resource_fini_basic
[02:08:53] [PASSED] ttm_resource_manager_init_basic
[02:08:53] [PASSED] ttm_resource_manager_usage_basic
[02:08:53] [PASSED] ttm_resource_manager_set_used_basic
[02:08:53] [PASSED] ttm_sys_man_alloc_basic
[02:08:53] [PASSED] ttm_sys_man_free_basic
[02:08:53] ================== [PASSED] ttm_resource ===================
[02:08:53] =================== ttm_tt (15 subtests) ===================
[02:08:53] ==================== ttm_tt_init_basic ====================
[02:08:53] [PASSED] Page-aligned size
[02:08:53] [PASSED] Extra pages requested
[02:08:53] ================ [PASSED] ttm_tt_init_basic ================
[02:08:53] [PASSED] ttm_tt_init_misaligned
[02:08:53] [PASSED] ttm_tt_fini_basic
[02:08:53] [PASSED] ttm_tt_fini_sg
[02:08:53] [PASSED] ttm_tt_fini_shmem
[02:08:53] [PASSED] ttm_tt_create_basic
[02:08:53] [PASSED] ttm_tt_create_invalid_bo_type
[02:08:53] [PASSED] ttm_tt_create_ttm_exists
[02:08:53] [PASSED] ttm_tt_create_failed
[02:08:53] [PASSED] ttm_tt_destroy_basic
[02:08:53] [PASSED] ttm_tt_populate_null_ttm
[02:08:53] [PASSED] ttm_tt_populate_populated_ttm
[02:08:53] [PASSED] ttm_tt_unpopulate_basic
[02:08:53] [PASSED] ttm_tt_unpopulate_empty_ttm
[02:08:53] [PASSED] ttm_tt_swapin_basic
[02:08:53] ===================== [PASSED] ttm_tt ======================
[02:08:53] =================== ttm_bo (14 subtests) ===================
[02:08:53] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[02:08:53] [PASSED] Cannot be interrupted and sleeps
[02:08:53] [PASSED] Cannot be interrupted, locks straight away
[02:08:53] [PASSED] Can be interrupted, sleeps
[02:08:53] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[02:08:53] [PASSED] ttm_bo_reserve_locked_no_sleep
[02:08:53] [PASSED] ttm_bo_reserve_no_wait_ticket
[02:08:53] [PASSED] ttm_bo_reserve_double_resv
[02:08:53] [PASSED] ttm_bo_reserve_interrupted
[02:08:53] [PASSED] ttm_bo_reserve_deadlock
[02:08:53] [PASSED] ttm_bo_unreserve_basic
[02:08:53] [PASSED] ttm_bo_unreserve_pinned
[02:08:53] [PASSED] ttm_bo_unreserve_bulk
[02:08:53] [PASSED] ttm_bo_fini_basic
[02:08:53] [PASSED] ttm_bo_fini_shared_resv
[02:08:53] [PASSED] ttm_bo_pin_basic
[02:08:53] [PASSED] ttm_bo_pin_unpin_resource
[02:08:53] [PASSED] ttm_bo_multiple_pin_one_unpin
[02:08:53] ===================== [PASSED] ttm_bo ======================
[02:08:53] ============== ttm_bo_validate (21 subtests) ===============
[02:08:53] ============== ttm_bo_init_reserved_sys_man ===============
[02:08:53] [PASSED] Buffer object for userspace
[02:08:53] [PASSED] Kernel buffer object
[02:08:53] [PASSED] Shared buffer object
[02:08:53] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[02:08:53] ============== ttm_bo_init_reserved_mock_man ==============
[02:08:53] [PASSED] Buffer object for userspace
[02:08:53] [PASSED] Kernel buffer object
[02:08:53] [PASSED] Shared buffer object
[02:08:53] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[02:08:53] [PASSED] ttm_bo_init_reserved_resv
[02:08:53] ================== ttm_bo_validate_basic ==================
[02:08:53] [PASSED] Buffer object for userspace
[02:08:53] [PASSED] Kernel buffer object
[02:08:53] [PASSED] Shared buffer object
[02:08:53] ============== [PASSED] ttm_bo_validate_basic ==============
[02:08:53] [PASSED] ttm_bo_validate_invalid_placement
[02:08:53] ============= ttm_bo_validate_same_placement ==============
[02:08:53] [PASSED] System manager
[02:08:53] [PASSED] VRAM manager
[02:08:53] ========= [PASSED] ttm_bo_validate_same_placement ==========
[02:08:53] [PASSED] ttm_bo_validate_failed_alloc
[02:08:53] [PASSED] ttm_bo_validate_pinned
[02:08:53] [PASSED] ttm_bo_validate_busy_placement
[02:08:53] ================ ttm_bo_validate_multihop =================
[02:08:53] [PASSED] Buffer object for userspace
[02:08:53] [PASSED] Kernel buffer object
[02:08:53] [PASSED] Shared buffer object
[02:08:53] ============ [PASSED] ttm_bo_validate_multihop =============
[02:08:53] ========== ttm_bo_validate_no_placement_signaled ==========
[02:08:53] [PASSED] Buffer object in system domain, no page vector
[02:08:53] [PASSED] Buffer object in system domain with an existing page vector
[02:08:53] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[02:08:53] ======== ttm_bo_validate_no_placement_not_signaled ========
[02:08:53] [PASSED] Buffer object for userspace
[02:08:53] [PASSED] Kernel buffer object
[02:08:53] [PASSED] Shared buffer object
[02:08:53] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[02:08:53] [PASSED] ttm_bo_validate_move_fence_signaled
[02:08:53] ========= ttm_bo_validate_move_fence_not_signaled =========
[02:08:53] [PASSED] Waits for GPU
[02:08:53] [PASSED] Tries to lock straight away
[02:08:53] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[02:08:53] [PASSED] ttm_bo_validate_happy_evict
[02:08:53] [PASSED] ttm_bo_validate_all_pinned_evict
[02:08:53] [PASSED] ttm_bo_validate_allowed_only_evict
[02:08:53] [PASSED] ttm_bo_validate_deleted_evict
[02:08:53] [PASSED] ttm_bo_validate_busy_domain_evict
[02:08:53] [PASSED] ttm_bo_validate_evict_gutting
[02:08:53] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[02:08:53] ================= [PASSED] ttm_bo_validate =================
[02:08:53] ============================================================
[02:08:53] Testing complete. Ran 101 tests: passed: 101
[02:08:53] Elapsed time: 11.414s total, 1.621s configuring, 9.577s building, 0.183s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor (rev3)
2026-02-04 0:25 [PATCH 1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor Matt Roper
` (8 preceding siblings ...)
2026-02-05 2:08 ` ✓ CI.KUnit: success for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor (rev3) Patchwork
@ 2026-02-05 2:42 ` Patchwork
2026-02-05 17:21 ` ✗ Xe.CI.FULL: failure " Patchwork
10 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-02-05 2:42 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1462 bytes --]
== Series Details ==
Series: series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor (rev3)
URL : https://patchwork.freedesktop.org/series/161113/
State : success
== Summary ==
CI Bug Log - changes from xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3_BAT -> xe-pw-161113v3_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-161113v3_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_waitfence@engine:
- bat-dg2-oem2: [PASS][1] -> [FAIL][2] ([Intel XE#6519])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/bat-dg2-oem2/igt@xe_waitfence@engine.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/bat-dg2-oem2/igt@xe_waitfence@engine.html
[Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519
Build changes
-------------
* Linux: xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3 -> xe-pw-161113v3
IGT_8737: 8737
xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3: 55e3e3aeecf80d9fd2536acd8ed785282be5a7b3
xe-pw-161113v3: 161113v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/index.html
[-- Attachment #2: Type: text/html, Size: 2027 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.FULL: failure for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor (rev3)
2026-02-04 0:25 [PATCH 1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor Matt Roper
` (9 preceding siblings ...)
2026-02-05 2:42 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-02-05 17:21 ` Patchwork
10 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-02-05 17:21 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 40377 bytes --]
== Series Details ==
Series: series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor (rev3)
URL : https://patchwork.freedesktop.org/series/161113/
State : failure
== Summary ==
CI Bug Log - changes from xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3_FULL -> xe-pw-161113v3_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-161113v3_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-161113v3_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-161113v3_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_lowres@tiling-none@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-2/igt@kms_plane_lowres@tiling-none@pipe-a-dp-2.html
Known issues
------------
Here are the changes found in xe-pw-161113v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-read:
- shard-lnl: NOTRUN -> [SKIP][2] ([Intel XE#1125])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@intel_hwmon@hwmon-read.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2370])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2327])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#7059])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2314] / [Intel XE#2894])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#367])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1512])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#2887]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2887]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_chamelium_color@gamma:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#306])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2252]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#373])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][16] ([Intel XE#1178] / [Intel XE#3304])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-8/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@atomic-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][17] ([Intel XE#3304])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@kms_content_protection@atomic-hdcp14@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2320]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1424]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2321])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-bmg: [PASS][21] -> [SKIP][22] ([Intel XE#2291]) +4 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-8/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#309])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-bmg: [PASS][24] -> [DMESG-WARN][25] ([Intel XE#5354])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-bmg: [PASS][26] -> [SKIP][27] ([Intel XE#4354])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-2/igt@kms_dp_link_training@non-uhbr-sst.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-5/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2244])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [PASS][29] -> [SKIP][30] ([Intel XE#2316]) +5 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-10/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [PASS][31] -> [FAIL][32] ([Intel XE#301])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [PASS][33] -> [FAIL][34] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3:
- shard-bmg: NOTRUN -> [INCOMPLETE][35] ([Intel XE#2049] / [Intel XE#2597])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-10/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#7178])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#7178])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#352])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#651]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#4141]) +4 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#7061])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2311]) +4 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#7061]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#656]) +5 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2313]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [PASS][46] -> [SKIP][47] ([Intel XE#1503])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-3/igt@kms_hdr@static-toggle-suspend.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-5/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#6900])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-a-plane-5:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#7131]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-3:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#7130]) +6 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-3.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#7111] / [Intel XE#7130]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier@pipe-a-plane-0:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#7130]) +4 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier@pipe-a-plane-0.html
* igt@kms_plane_lowres@tiling-none:
- shard-bmg: [PASS][53] -> [ABORT][54] ([Intel XE#5545] / [Intel XE#6652]) +3 other tests abort
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-5/igt@kms_plane_lowres@tiling-none.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-2/igt@kms_plane_lowres@tiling-none.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: NOTRUN -> [FAIL][55] ([Intel XE#2029])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1406] / [Intel XE#2893])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#1406] / [Intel XE#1489])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr@fbc-psr2-primary-page-flip:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1406])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@kms_psr@fbc-psr2-primary-page-flip.html
* igt@kms_psr@fbc-psr2-primary-page-flip@edp-1:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#1406] / [Intel XE#4609])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@kms_psr@fbc-psr2-primary-page-flip@edp-1.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_sharpness_filter@invalid-filter-with-scaler:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#6503])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@kms_sharpness_filter@invalid-filter-with-scaler.html
* igt@xe_eudebug@multiple-sessions:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#4837]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@xe_eudebug@multiple-sessions.html
* igt@xe_eudebug_online@stopped-thread:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@xe_eudebug_online@stopped-thread.html
* igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#4837] / [Intel XE#6665])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html
* igt@xe_evict@evict-beng-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#688]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@xe_evict@evict-beng-small-multi-vm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2322]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html
* igt@xe_exec_basic@multigpu-no-exec-userptr:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1392]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-userptr.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind-imm:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#7136])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind-imm.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-imm:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#7136]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@xe_exec_fault_mode@once-multi-queue-userptr-imm.html
* igt@xe_exec_multi_queue@max-queues-preempt-mode-basic:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#6874]) +7 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@xe_exec_multi_queue@max-queues-preempt-mode-basic.html
* igt@xe_exec_multi_queue@two-queues-close-fd-smem:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#6874]) +5 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@xe_exec_multi_queue@two-queues-close-fd-smem.html
* igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#5007])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset.html
* igt@xe_exec_system_allocator@many-stride-mmap-new-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#4943]) +4 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@xe_exec_system_allocator@many-stride-mmap-new-huge-nomemset.html
* igt@xe_exec_system_allocator@process-many-execqueues-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#4943]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@xe_exec_system_allocator@process-many-execqueues-mmap-huge-nomemset.html
* igt@xe_exec_threads@threads-many-queues:
- shard-lnl: NOTRUN -> [FAIL][76] ([Intel XE#7166])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@xe_exec_threads@threads-many-queues.html
* igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#7138]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind.html
* igt@xe_multigpu_svm@mgpu-pagefault-prefetch:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#6964])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@xe_multigpu_svm@mgpu-pagefault-prefetch.html
* igt@xe_multigpu_svm@mgpu-xgpu-access-prefetch:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#6964])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@xe_multigpu_svm@mgpu-xgpu-access-prefetch.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1948])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#4733])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html
* igt@xe_query@multigpu-query-oa-units:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#944])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_sriov_admin@bulk-sched-priority-vfs-disabled:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#7174])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@xe_sriov_admin@bulk-sched-priority-vfs-disabled.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#4273])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@xe_sriov_flr@flr-vfs-parallel.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [SKIP][85] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-bmg: [SKIP][87] ([Intel XE#2291]) -> [PASS][88] +3 other tests pass
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_dp_aux_dev:
- shard-bmg: [SKIP][89] ([Intel XE#3009]) -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-5/igt@kms_dp_aux_dev.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-8/igt@kms_dp_aux_dev.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: [SKIP][91] ([Intel XE#2373]) -> [PASS][92]
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-6/igt@kms_feature_discovery@display-2x.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-8/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-bmg: [SKIP][93] ([Intel XE#2316]) -> [PASS][94] +11 other tests pass
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@dpms-off-confusion-interruptible:
- shard-lnl: [INCOMPLETE][95] -> [PASS][96] +1 other test pass
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-lnl-6/igt@kms_flip@dpms-off-confusion-interruptible.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-8/igt@kms_flip@dpms-off-confusion-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3:
- shard-bmg: [INCOMPLETE][97] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][98]
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-10/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][99] ([Intel XE#1503]) -> [PASS][100]
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-10/igt@kms_hdr@invalid-hdr.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [SKIP][101] ([Intel XE#4596]) -> [PASS][102]
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-4.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-lnl: [FAIL][103] ([Intel XE#1874]) -> [PASS][104]
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-lnl-3/igt@kms_rotation_crc@multiplane-rotation.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-5/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [SKIP][105] ([Intel XE#1435]) -> [PASS][106]
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][107] ([Intel XE#4459]) -> [PASS][108] +1 other test pass
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][109] ([Intel XE#6321]) -> [PASS][110] +1 other test pass
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
- shard-lnl: [FAIL][111] ([Intel XE#5625]) -> [PASS][112]
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
#### Warnings ####
* igt@kms_content_protection@atomic-dpms:
- shard-bmg: [SKIP][113] ([Intel XE#2341]) -> [FAIL][114] ([Intel XE#1178] / [Intel XE#3304])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-8/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-bmg: [FAIL][115] ([Intel XE#3304]) -> [SKIP][116] ([Intel XE#7194])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-3/igt@kms_content_protection@atomic-dpms-hdcp14.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-5/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-bmg: [SKIP][117] ([Intel XE#7194]) -> [FAIL][118] ([Intel XE#3304])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-6/igt@kms_content_protection@atomic-hdcp14.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-9/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@suspend-resume:
- shard-bmg: [FAIL][119] ([Intel XE#1178] / [Intel XE#3304]) -> [SKIP][120] ([Intel XE#6705])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-3/igt@kms_content_protection@suspend-resume.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-5/igt@kms_content_protection@suspend-resume.html
* igt@kms_content_protection@uevent:
- shard-bmg: [FAIL][121] ([Intel XE#6707]) -> [SKIP][122] ([Intel XE#2341])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-2/igt@kms_content_protection@uevent.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-5/igt@kms_content_protection@uevent.html
* igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
- shard-bmg: [SKIP][123] ([Intel XE#2311]) -> [SKIP][124] ([Intel XE#2312]) +15 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][125] ([Intel XE#2312]) -> [SKIP][126] ([Intel XE#2311]) +14 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][127] ([Intel XE#2312]) -> [SKIP][128] ([Intel XE#4141]) +5 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][129] ([Intel XE#4141]) -> [SKIP][130] ([Intel XE#2312]) +6 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][131] ([Intel XE#2313]) -> [SKIP][132] ([Intel XE#2312]) +12 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-rte:
- shard-bmg: [SKIP][133] ([Intel XE#2312]) -> [SKIP][134] ([Intel XE#2313]) +16 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[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#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[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#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6705
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[Intel XE#7131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7166
[Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3 -> xe-pw-161113v3
IGT_8737: 8737
xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3: 55e3e3aeecf80d9fd2536acd8ed785282be5a7b3
xe-pw-161113v3: 161113v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161113v3/index.html
[-- Attachment #2: Type: text/html, Size: 46318 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2026-02-05 17:21 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-04 0:25 [PATCH 1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor Matt Roper
2026-02-04 0:25 ` [PATCH 2/2] drm/xe/xe3p_xpc: XeCore mask spans four registers Matt Roper
2026-02-04 20:10 ` Gustavo Sousa
2026-02-04 0:57 ` ✓ CI.KUnit: success for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor Patchwork
2026-02-04 1:31 ` ✗ Xe.CI.BAT: failure " Patchwork
2026-02-04 14:53 ` ✓ CI.KUnit: success for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor (rev2) Patchwork
2026-02-04 15:48 ` ✗ Xe.CI.FULL: failure for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor Patchwork
2026-02-04 15:59 ` ✗ Xe.CI.BAT: failure for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor (rev2) Patchwork
2026-02-04 20:05 ` [PATCH 1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor Gustavo Sousa
2026-02-05 1:49 ` ✗ Xe.CI.FULL: failure for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor (rev2) Patchwork
2026-02-05 2:08 ` ✓ CI.KUnit: success for series starting with [1/2] drm/xe: Move number of XeCore fuse registers to graphics descriptor (rev3) Patchwork
2026-02-05 2:42 ` ✓ Xe.CI.BAT: " Patchwork
2026-02-05 17:21 ` ✗ Xe.CI.FULL: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox