* [PATCH v6 0/7] KUnit test for VF provisioning error handling
@ 2026-08-12 12:43 Satyanarayana K V P
2026-08-12 12:43 ` [PATCH v6 1/7] drm/xe/guc: Allow to replace xe_guc_mmio_send_recv() with KUNIT stub Satyanarayana K V P
` (10 more replies)
0 siblings, 11 replies; 16+ messages in thread
From: Satyanarayana K V P @ 2026-08-12 12:43 UTC (permalink / raw)
To: intel-xe; +Cc: Satyanarayana K V P, Michal Wajdeczko
This patchset adds infrastructure and tests to verify that a VF
properly handles malformed or invalid device configuration
responses from the PF.
A VF relies on the PF to provide valid hardware configuration through GuC
KLV responses during initialization. If the PF is misconfigured or
malfunctioning, a VF may receive zero, incomplete, or out-of-range
values for critical resources like GGTT, VRAM, Contexts or Doorbells.
Add KUnit test cases that use the xe_guc_mmio_send_recv() stub to inject
bad KLV responses and verify that VF can survive without crashing for
the invalid configuration data received.
While adding this kunit test, found some missing error handling in the VF
code path for invalid doorbell, GGTT and VRAM configurations. This
patchset also adds the missing error handling to the VF code path.
Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Satyanarayana K V P (7):
drm/xe/guc: Allow to replace xe_guc_mmio_send_recv() with KUNIT stub
drm/xe/vf: Split submission config query helpers
drm/xe/vf: Add bounds checking for queried context and doorbell counts
drm/xe: Introduce helpers for xe_vram size
drm/xe/vf: Add bounds checking for queried GGTT base and size
drm/xe/vf: Add bounds checking for queried VRAM size
drm/xe/tests: Add KUnit tests for VF provisioning error handling
drivers/gpu/drm/xe/display/xe_fb_pin.c | 2 +-
drivers/gpu/drm/xe/display/xe_initial_plane.c | 2 +-
drivers/gpu/drm/xe/tests/xe_bo.c | 2 +-
drivers/gpu/drm/xe/tests/xe_dma_buf.c | 2 +-
.../gpu/drm/xe/tests/xe_gt_sriov_vf_kunit.c | 484 ++++++++++++++++++
drivers/gpu/drm/xe/xe_bo.c | 6 +-
drivers/gpu/drm/xe/xe_device.h | 10 +
drivers/gpu/drm/xe/xe_ggtt.c | 2 +-
drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c | 4 +-
drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 81 ++-
drivers/gpu/drm/xe/xe_guc.c | 5 +
drivers/gpu/drm/xe/xe_query.c | 5 +-
drivers/gpu/drm/xe/xe_vm.c | 4 +-
13 files changed, 585 insertions(+), 24 deletions(-)
create mode 100644 drivers/gpu/drm/xe/tests/xe_gt_sriov_vf_kunit.c
--
2.53.0
^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH v6 1/7] drm/xe/guc: Allow to replace xe_guc_mmio_send_recv() with KUNIT stub
2026-08-12 12:43 [PATCH v6 0/7] KUnit test for VF provisioning error handling Satyanarayana K V P
@ 2026-08-12 12:43 ` Satyanarayana K V P
2026-08-12 12:43 ` [PATCH v6 2/7] drm/xe/vf: Split submission config query helpers Satyanarayana K V P
` (9 subsequent siblings)
10 siblings, 0 replies; 16+ messages in thread
From: Satyanarayana K V P @ 2026-08-12 12:43 UTC (permalink / raw)
To: intel-xe; +Cc: Satyanarayana K V P, Michal Wajdeczko
Allow to replace xe_guc_mmio_send_recv() with the stub so we can
exercise more code paths on the fake xe device during kunit tests.
Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
V4 -> V5:
- Fixed review comments (Michal W).
---
drivers/gpu/drm/xe/xe_guc.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_guc.c b/drivers/gpu/drm/xe/xe_guc.c
index 4286bd05c686..82e67e9219bd 100644
--- a/drivers/gpu/drm/xe/xe_guc.c
+++ b/drivers/gpu/drm/xe/xe_guc.c
@@ -6,6 +6,8 @@
#include "xe_guc.h"
#include <linux/iopoll.h>
+#include <kunit/static_stub.h>
+
#include <drm/drm_managed.h>
#include <generated/xe_wa_oob.h>
@@ -1509,6 +1511,9 @@ int xe_guc_mmio_send_recv(struct xe_guc *guc, const u32 *request,
int ret;
int i;
+ KUNIT_STATIC_STUB_REDIRECT(xe_guc_mmio_send_recv, guc, request, len,
+ response_buf);
+
BUILD_BUG_ON(VF_SW_FLAG_COUNT != MED_VF_SW_FLAG_COUNT);
xe_assert(xe, len);
--
2.53.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH v6 2/7] drm/xe/vf: Split submission config query helpers
2026-08-12 12:43 [PATCH v6 0/7] KUnit test for VF provisioning error handling Satyanarayana K V P
2026-08-12 12:43 ` [PATCH v6 1/7] drm/xe/guc: Allow to replace xe_guc_mmio_send_recv() with KUNIT stub Satyanarayana K V P
@ 2026-08-12 12:43 ` Satyanarayana K V P
2026-08-12 12:43 ` [PATCH v6 3/7] drm/xe/vf: Add bounds checking for queried context and doorbell counts Satyanarayana K V P
` (8 subsequent siblings)
10 siblings, 0 replies; 16+ messages in thread
From: Satyanarayana K V P @ 2026-08-12 12:43 UTC (permalink / raw)
To: intel-xe; +Cc: Satyanarayana K V P, Michal Wajdeczko
Refactor vf_get_submission_cfg() into separate vf_get_ctxs_cfg()
and vf_get_dbs_cfg() functions which allows independent error
handling and validation for each resource, and improves testability.
Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
V4 -> V5:
- Allow zero DBs are valid configuration (Michal W).
V3 -> V4:
- Removed coverage for more error scenarios. (Michal W).
- Updated fucntion names. (Michal W)
- Added error scenarios in new commit.
- Updated commit message.
V2 -> V3:
- Added coverage for more error scenarios.
---
drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 49 +++++++++++++++++++++++------
1 file changed, 40 insertions(+), 9 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
index 37899fcf5b22..339ea0d3344c 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
@@ -568,11 +568,11 @@ static int vf_get_lmem_info(struct xe_gt *gt)
return size ? 0 : -ENODATA;
}
-static int vf_get_submission_cfg(struct xe_gt *gt)
+static int vf_get_ctxs_cfg(struct xe_gt *gt)
{
struct xe_gt_sriov_vf_selfconfig *config = >->sriov.vf.self_config;
struct xe_guc *guc = >->uc.guc;
- u32 num_ctxs, num_dbs;
+ u32 num_ctxs;
int err;
xe_gt_assert(gt, IS_SRIOV_VF(gt_to_xe(gt)));
@@ -581,27 +581,58 @@ static int vf_get_submission_cfg(struct xe_gt *gt)
if (unlikely(err))
return err;
- err = guc_action_query_single_klv32(guc, GUC_KLV_VF_CFG_NUM_DOORBELLS_KEY, &num_dbs);
- if (unlikely(err))
- return err;
-
if (config->num_ctxs && config->num_ctxs != num_ctxs) {
xe_gt_sriov_err(gt, "Unexpected CTXs reassignment: %u != %u\n",
num_ctxs, config->num_ctxs);
return -EREMCHG;
}
+
+ xe_gt_sriov_dbg_verbose(gt, "CTXs %u\n", num_ctxs);
+
+ config->num_ctxs = num_ctxs;
+
+ return config->num_ctxs ? 0 : -ENODATA;
+}
+
+static int vf_get_dbs_cfg(struct xe_gt *gt)
+{
+ struct xe_gt_sriov_vf_selfconfig *config = >->sriov.vf.self_config;
+ struct xe_guc *guc = >->uc.guc;
+ u32 num_dbs;
+ int err;
+
+ xe_gt_assert(gt, IS_SRIOV_VF(gt_to_xe(gt)));
+
+ err = guc_action_query_single_klv32(guc, GUC_KLV_VF_CFG_NUM_DOORBELLS_KEY, &num_dbs);
+ if (unlikely(err))
+ return err;
+
if (config->num_dbs && config->num_dbs != num_dbs) {
xe_gt_sriov_err(gt, "Unexpected DBs reassignment: %u != %u\n",
num_dbs, config->num_dbs);
return -EREMCHG;
}
- xe_gt_sriov_dbg_verbose(gt, "CTXs %u DBs %u\n", num_ctxs, num_dbs);
+ xe_gt_sriov_dbg_verbose(gt, "DBs %u\n", num_dbs);
- config->num_ctxs = num_ctxs;
config->num_dbs = num_dbs;
- return config->num_ctxs ? 0 : -ENODATA;
+ return 0;
+}
+
+static int vf_get_submission_cfg(struct xe_gt *gt)
+{
+ int err;
+
+ err = vf_get_ctxs_cfg(gt);
+ if (unlikely(err))
+ return err;
+
+ err = vf_get_dbs_cfg(gt);
+ if (unlikely(err))
+ return err;
+
+ return 0;
}
static void vf_cache_gmdid(struct xe_gt *gt)
--
2.53.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH v6 3/7] drm/xe/vf: Add bounds checking for queried context and doorbell counts
2026-08-12 12:43 [PATCH v6 0/7] KUnit test for VF provisioning error handling Satyanarayana K V P
2026-08-12 12:43 ` [PATCH v6 1/7] drm/xe/guc: Allow to replace xe_guc_mmio_send_recv() with KUNIT stub Satyanarayana K V P
2026-08-12 12:43 ` [PATCH v6 2/7] drm/xe/vf: Split submission config query helpers Satyanarayana K V P
@ 2026-08-12 12:43 ` Satyanarayana K V P
2026-08-12 12:43 ` [PATCH v6 4/7] drm/xe: Introduce helpers for xe_vram size Satyanarayana K V P
` (7 subsequent siblings)
10 siblings, 0 replies; 16+ messages in thread
From: Satyanarayana K V P @ 2026-08-12 12:43 UTC (permalink / raw)
To: intel-xe; +Cc: Satyanarayana K V P, Michal Wajdeczko
Add explicit bounds checks for context and doorbells which can detect
and reject invalid configuration data from a misconfigured or
malfunctioning PF, preventing protocol violations and protecting VF
initialization.
Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
V4 -> V5:
- Fixed review comments (Michal W).
V3 -> V4:
- New commit
---
drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
index 339ea0d3344c..81d68fe5ad7c 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
@@ -15,6 +15,7 @@
#include "abi/guc_klvs_abi.h"
#include "abi/guc_relay_actions_abi.h"
#include "regs/xe_gt_regs.h"
+#include "regs/xe_guc_regs.h"
#include "xe_assert.h"
#include "xe_device.h"
@@ -581,6 +582,11 @@ static int vf_get_ctxs_cfg(struct xe_gt *gt)
if (unlikely(err))
return err;
+ if (num_ctxs > GUC_ID_MAX) {
+ xe_gt_sriov_err(gt, "Out of bound CTXs %u received\n", num_ctxs);
+ return -EPROTO;
+ }
+
if (config->num_ctxs && config->num_ctxs != num_ctxs) {
xe_gt_sriov_err(gt, "Unexpected CTXs reassignment: %u != %u\n",
num_ctxs, config->num_ctxs);
@@ -607,6 +613,11 @@ static int vf_get_dbs_cfg(struct xe_gt *gt)
if (unlikely(err))
return err;
+ if (num_dbs > GUC_NUM_DOORBELLS) {
+ xe_gt_sriov_err(gt, "Out of bound DBs %u received\n", num_dbs);
+ return -EPROTO;
+ }
+
if (config->num_dbs && config->num_dbs != num_dbs) {
xe_gt_sriov_err(gt, "Unexpected DBs reassignment: %u != %u\n",
num_dbs, config->num_dbs);
--
2.53.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH v6 4/7] drm/xe: Introduce helpers for xe_vram size
2026-08-12 12:43 [PATCH v6 0/7] KUnit test for VF provisioning error handling Satyanarayana K V P
` (2 preceding siblings ...)
2026-08-12 12:43 ` [PATCH v6 3/7] drm/xe/vf: Add bounds checking for queried context and doorbell counts Satyanarayana K V P
@ 2026-08-12 12:43 ` Satyanarayana K V P
2026-08-12 12:55 ` sashiko-bot
2026-08-12 12:43 ` [PATCH v6 5/7] drm/xe/vf: Add bounds checking for queried GGTT base and size Satyanarayana K V P
` (6 subsequent siblings)
10 siblings, 1 reply; 16+ messages in thread
From: Satyanarayana K V P @ 2026-08-12 12:43 UTC (permalink / raw)
To: intel-xe; +Cc: Satyanarayana K V P, Michal Wajdeczko
Add a new xe_vram_alignment() and xe_vram_needs_64k() helpers to get the
VRAM minimum alignment (4K vs 64K).
Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
V5 -> V6:
- New commit.
---
drivers/gpu/drm/xe/display/xe_fb_pin.c | 2 +-
drivers/gpu/drm/xe/display/xe_initial_plane.c | 2 +-
drivers/gpu/drm/xe/tests/xe_bo.c | 2 +-
drivers/gpu/drm/xe/tests/xe_dma_buf.c | 2 +-
drivers/gpu/drm/xe/xe_bo.c | 6 +++---
drivers/gpu/drm/xe/xe_device.h | 10 ++++++++++
drivers/gpu/drm/xe/xe_ggtt.c | 2 +-
drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c | 4 +---
drivers/gpu/drm/xe/xe_query.c | 5 ++---
drivers/gpu/drm/xe/xe_vm.c | 4 ++--
10 files changed, 23 insertions(+), 16 deletions(-)
diff --git a/drivers/gpu/drm/xe/display/xe_fb_pin.c b/drivers/gpu/drm/xe/display/xe_fb_pin.c
index 73469ea5f333..88e0db1ff13a 100644
--- a/drivers/gpu/drm/xe/display/xe_fb_pin.c
+++ b/drivers/gpu/drm/xe/display/xe_fb_pin.c
@@ -273,7 +273,7 @@ static int __xe_pin_fb_vma_ggtt(struct drm_gem_object *obj,
guard(xe_pm_runtime_noresume)(xe);
align = max(XE_PAGE_SIZE, pin_params->alignment);
- if (xe_bo_is_vram(bo) && xe->info.vram_flags & XE_VRAM_FLAGS_NEED64K)
+ if (xe_bo_is_vram(bo) && xe_vram_needs_64k(xe))
align = max(align, SZ_64K);
/* Fast case, preallocated GGTT view? */
diff --git a/drivers/gpu/drm/xe/display/xe_initial_plane.c b/drivers/gpu/drm/xe/display/xe_initial_plane.c
index 0f86b73036d0..b2c8a22485a3 100644
--- a/drivers/gpu/drm/xe/display/xe_initial_plane.c
+++ b/drivers/gpu/drm/xe/display/xe_initial_plane.c
@@ -45,7 +45,7 @@ initial_plane_bo(struct xe_device *xe,
struct xe_bo *bo;
resource_size_t phys_base;
u32 base, size, flags;
- u64 page_size = xe->info.vram_flags & XE_VRAM_FLAGS_NEED64K ? SZ_64K : SZ_4K;
+ u64 page_size = xe_vram_alignment(xe);
if (plane_config->size == 0)
return NULL;
diff --git a/drivers/gpu/drm/xe/tests/xe_bo.c b/drivers/gpu/drm/xe/tests/xe_bo.c
index 6a17e13d58cf..ade31e274db9 100644
--- a/drivers/gpu/drm/xe/tests/xe_bo.c
+++ b/drivers/gpu/drm/xe/tests/xe_bo.c
@@ -210,7 +210,7 @@ static void xe_bo_page_size_alloc_mixed_bos(struct kunit *test)
*/
if (flags == 0) {
expected_align = SZ_4K;
- if (xe->info.vram_flags & XE_VRAM_FLAGS_NEED64K)
+ if (xe_vram_needs_64k(xe))
expected_align = SZ_64K;
} else if (flags == XE_BO_FLAG_NEEDS_64K) {
expected_align = SZ_64K;
diff --git a/drivers/gpu/drm/xe/tests/xe_dma_buf.c b/drivers/gpu/drm/xe/tests/xe_dma_buf.c
index 0be8440b3976..31bc218b2446 100644
--- a/drivers/gpu/drm/xe/tests/xe_dma_buf.c
+++ b/drivers/gpu/drm/xe/tests/xe_dma_buf.c
@@ -122,7 +122,7 @@ static void xe_test_dmabuf_import_same_driver(struct xe_device *xe)
size = PAGE_SIZE;
if ((params->mem_mask & XE_BO_FLAG_VRAM0) &&
- xe->info.vram_flags & XE_VRAM_FLAGS_NEED64K)
+ xe_vram_needs_64k(xe))
size = SZ_64K;
kunit_info(test, "running %s\n", __func__);
diff --git a/drivers/gpu/drm/xe/xe_bo.c b/drivers/gpu/drm/xe/xe_bo.c
index dde309821237..93cd656faf63 100644
--- a/drivers/gpu/drm/xe/xe_bo.c
+++ b/drivers/gpu/drm/xe/xe_bo.c
@@ -2351,7 +2351,7 @@ struct xe_bo *xe_bo_init_locked(struct xe_device *xe, struct xe_bo *bo,
if (flags & (XE_BO_FLAG_VRAM_MASK | XE_BO_FLAG_STOLEN) &&
!(flags & XE_BO_FLAG_IGNORE_MIN_PAGE_SIZE) &&
- ((xe->info.vram_flags & XE_VRAM_FLAGS_NEED64K) ||
+ (xe_vram_needs_64k(xe) ||
(flags & (XE_BO_FLAG_NEEDS_64K | XE_BO_FLAG_NEEDS_2M |
XE_BO_FLAG_NEEDS_1G)))) {
size_t align;
@@ -3575,7 +3575,7 @@ int xe_gem_create_ioctl(struct drm_device *dev, void *data,
/* CCS formats need physical placement at a 64K alignment in VRAM. */
if ((bo_flags & XE_BO_FLAG_VRAM_MASK) &&
(args->flags & DRM_XE_GEM_CREATE_FLAG_SCANOUT) &&
- !(xe->info.vram_flags & XE_VRAM_FLAGS_NEED64K) &&
+ !xe_vram_needs_64k(xe) &&
IS_ALIGNED(args->size, SZ_64K))
bo_flags |= XE_BO_FLAG_NEEDS_64K;
@@ -4055,7 +4055,7 @@ int xe_bo_dumb_create(struct drm_file *file_priv,
uint32_t handle;
int err;
u32 page_size = max_t(u32, PAGE_SIZE,
- xe->info.vram_flags & XE_VRAM_FLAGS_NEED64K ? SZ_64K : SZ_4K);
+ xe_vram_alignment(xe));
err = drm_mode_size_dumb(dev, args, SZ_64, page_size);
if (err)
diff --git a/drivers/gpu/drm/xe/xe_device.h b/drivers/gpu/drm/xe/xe_device.h
index 6c4cfaebc44a..79252282bb10 100644
--- a/drivers/gpu/drm/xe/xe_device.h
+++ b/drivers/gpu/drm/xe/xe_device.h
@@ -283,6 +283,16 @@ static inline bool xe_device_is_admin_only(const struct xe_device *xe)
}
#endif
+static inline bool xe_vram_needs_64k(struct xe_device *xe)
+{
+ return IS_DGFX(xe) && xe->info.vram_flags & XE_VRAM_FLAGS_NEED64K;
+}
+
+static inline u64 xe_vram_alignment(struct xe_device *xe)
+{
+ return xe_vram_needs_64k(xe) ? SZ_64K : SZ_4K;
+}
+
/*
* Occasionally it is seen that the G2H worker starts running after a delay of more than
* a second even after being queued and activated by the Linux workqueue subsystem. This
diff --git a/drivers/gpu/drm/xe/xe_ggtt.c b/drivers/gpu/drm/xe/xe_ggtt.c
index 8ec23862477f..4067125510c3 100644
--- a/drivers/gpu/drm/xe/xe_ggtt.c
+++ b/drivers/gpu/drm/xe/xe_ggtt.c
@@ -420,7 +420,7 @@ int xe_ggtt_init_early(struct xe_ggtt *ggtt)
}
ggtt->gsm = ggtt->tile->mmio.regs + SZ_8M;
- if (IS_DGFX(xe) && xe->info.vram_flags & XE_VRAM_FLAGS_NEED64K)
+ if (xe_vram_needs_64k(xe))
ggtt->flags |= XE_GGTT_FLAGS_64K;
if (ggtt_size + ggtt_start > GUC_GGTT_TOP)
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c b/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
index be0a413ee17c..61d36f6c2a14 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
@@ -441,9 +441,7 @@ static int pf_refresh_vf_cfg(struct xe_gt *gt, unsigned int vfid)
static u64 pf_get_ggtt_alignment(struct xe_gt *gt)
{
- struct xe_device *xe = gt_to_xe(gt);
-
- return IS_DGFX(xe) && xe->info.vram_flags & XE_VRAM_FLAGS_NEED64K ? SZ_64K : SZ_4K;
+ return xe_vram_alignment(gt_to_xe(gt));
}
static u64 pf_get_min_spare_ggtt(struct xe_gt *gt)
diff --git a/drivers/gpu/drm/xe/xe_query.c b/drivers/gpu/drm/xe/xe_query.c
index dc975f595368..9af98f08b0e5 100644
--- a/drivers/gpu/drm/xe/xe_query.c
+++ b/drivers/gpu/drm/xe/xe_query.c
@@ -289,8 +289,7 @@ static int query_mem_regions(struct xe_device *xe,
mem_regions->mem_regions[mem_regions->num_mem_regions].instance =
mem_regions->num_mem_regions;
mem_regions->mem_regions[mem_regions->num_mem_regions].min_page_size =
- xe->info.vram_flags & XE_VRAM_FLAGS_NEED64K ?
- SZ_64K : PAGE_SIZE;
+ xe_vram_alignment(xe);
mem_regions->mem_regions[mem_regions->num_mem_regions].total_size =
man->size;
@@ -355,7 +354,7 @@ static int query_config(struct xe_device *xe, struct drm_xe_device_query *query)
config->info[DRM_XE_QUERY_CONFIG_FLAGS] |=
DRM_XE_QUERY_CONFIG_FLAG_HAS_PURGING_SUPPORT;
config->info[DRM_XE_QUERY_CONFIG_MIN_ALIGNMENT] =
- xe->info.vram_flags & XE_VRAM_FLAGS_NEED64K ? SZ_64K : SZ_4K;
+ xe_vram_alignment(xe);
config->info[DRM_XE_QUERY_CONFIG_VA_BITS] = xe->info.va_bits;
config->info[DRM_XE_QUERY_CONFIG_MAX_EXEC_QUEUE_PRIORITY] =
xe_exec_queue_device_get_max_priority(xe);
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index b37ade64f4eb..8db88bc80844 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -1750,7 +1750,7 @@ struct xe_vm *xe_vm_create(struct xe_device *xe, u32 flags, struct xe_file *xef)
err = xe_vm_drm_exec_lock(vm, &exec);
drm_exec_retry_on_contention(&exec);
- if (IS_DGFX(xe) && xe->info.vram_flags & XE_VRAM_FLAGS_NEED64K)
+ if (xe_vram_needs_64k(xe))
vm->flags |= XE_VM_FLAG_64K;
for_each_tile(tile, xe, id) {
@@ -3965,7 +3965,7 @@ static int xe_vm_bind_ioctl_validate_bo(struct xe_device *xe, struct xe_bo *bo,
* there for the former case.
*/
if ((bo->flags & XE_BO_FLAG_INTERNAL_64K) &&
- (xe->info.vram_flags & XE_VRAM_FLAGS_NEED64K)) {
+ xe_vram_needs_64k(xe)) {
if (XE_IOCTL_DBG(xe, obj_offset &
XE_64K_PAGE_MASK) ||
XE_IOCTL_DBG(xe, addr & XE_64K_PAGE_MASK) ||
--
2.53.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH v6 5/7] drm/xe/vf: Add bounds checking for queried GGTT base and size
2026-08-12 12:43 [PATCH v6 0/7] KUnit test for VF provisioning error handling Satyanarayana K V P
` (3 preceding siblings ...)
2026-08-12 12:43 ` [PATCH v6 4/7] drm/xe: Introduce helpers for xe_vram size Satyanarayana K V P
@ 2026-08-12 12:43 ` Satyanarayana K V P
2026-08-12 12:55 ` sashiko-bot
2026-08-12 12:43 ` [PATCH v6 6/7] drm/xe/vf: Add bounds checking for queried VRAM size Satyanarayana K V P
` (5 subsequent siblings)
10 siblings, 1 reply; 16+ messages in thread
From: Satyanarayana K V P @ 2026-08-12 12:43 UTC (permalink / raw)
To: intel-xe; +Cc: Satyanarayana K V P, Michal Wajdeczko
Add explicit bounds checks for GGTT base and size which can detect
and reject invalid configuration data from a misconfigured or
malfunctioning PF, preventing protocol violations and protecting VF
initialization.
Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
V5 -> V6:
- Updated error codes for unaligned GGTT base and size (Michal W).
- Fixed review comments (Michal W).
V4 -> V5:
- New commit.
---
drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
index 81d68fe5ad7c..d805c064377c 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
@@ -488,6 +488,7 @@ u32 xe_gt_sriov_vf_gmdid(struct xe_gt *gt)
static int vf_get_ggtt_info(struct xe_gt *gt)
{
+ u64 alignment = xe_vram_alignment(gt_to_xe(gt));
struct xe_tile *tile = gt_to_tile(gt);
struct xe_guc *guc = >->uc.guc;
u64 start, size, ggtt_size;
@@ -526,6 +527,18 @@ static int vf_get_ggtt_info(struct xe_gt *gt)
return -EREMCHG;
}
+ if (!IS_ALIGNED(start, alignment)) {
+ xe_gt_sriov_err(gt, "Unaligned GGTT base: %llu, expected %llu\n",
+ start, ALIGN(start, alignment));
+ return -EINVAL;
+ }
+
+ if (!IS_ALIGNED(size, alignment)) {
+ xe_gt_sriov_err(gt, "Unaligned GGTT size %llu, expected %llu\n",
+ size, ALIGN(size, alignment));
+ return -EINVAL;
+ }
+
xe_gt_sriov_dbg_verbose(gt, "GGTT %#llx-%#llx = %lluK\n",
start, start + size - 1, size / SZ_1K);
--
2.53.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH v6 6/7] drm/xe/vf: Add bounds checking for queried VRAM size
2026-08-12 12:43 [PATCH v6 0/7] KUnit test for VF provisioning error handling Satyanarayana K V P
` (4 preceding siblings ...)
2026-08-12 12:43 ` [PATCH v6 5/7] drm/xe/vf: Add bounds checking for queried GGTT base and size Satyanarayana K V P
@ 2026-08-12 12:43 ` Satyanarayana K V P
2026-08-12 13:02 ` sashiko-bot
2026-08-12 12:43 ` [PATCH v6 7/7] drm/xe/tests: Add KUnit tests for VF provisioning error handling Satyanarayana K V P
` (4 subsequent siblings)
10 siblings, 1 reply; 16+ messages in thread
From: Satyanarayana K V P @ 2026-08-12 12:43 UTC (permalink / raw)
To: intel-xe; +Cc: Satyanarayana K V P, Michal Wajdeczko
Add explicit bounds checks for VRAM size which can detect and reject
invalid configuration data from a misconfigured or malfunctioning PF,
preventing protocol violations and protecting VF initialization.
Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
V5 -> V6:
- Return -EINVAL for unaligned LMEM size (Michal W).
V4 -> V5:
- New commit.
---
drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
index d805c064377c..be932ebe6a8d 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
@@ -574,6 +574,12 @@ static int vf_get_lmem_info(struct xe_gt *gt)
return -EREMCHG;
}
+ if (!IS_ALIGNED(size, SZ_2M)) {
+ xe_gt_sriov_err(gt, "Unaligned LMEM size %llu, expected %llu\n",
+ size, ALIGN(size, SZ_2M));
+ return -EINVAL;
+ }
+
string_get_size(size, 1, STRING_UNITS_2, size_str, sizeof(size_str));
xe_gt_sriov_dbg_verbose(gt, "LMEM %lluM %s\n", size / SZ_1M, size_str);
--
2.53.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH v6 7/7] drm/xe/tests: Add KUnit tests for VF provisioning error handling
2026-08-12 12:43 [PATCH v6 0/7] KUnit test for VF provisioning error handling Satyanarayana K V P
` (5 preceding siblings ...)
2026-08-12 12:43 ` [PATCH v6 6/7] drm/xe/vf: Add bounds checking for queried VRAM size Satyanarayana K V P
@ 2026-08-12 12:43 ` Satyanarayana K V P
2026-08-12 13:00 ` sashiko-bot
2026-08-12 13:18 ` ✗ CI.checkpatch: warning for KUnit test for VF provisioning error handling (rev6) Patchwork
` (3 subsequent siblings)
10 siblings, 1 reply; 16+ messages in thread
From: Satyanarayana K V P @ 2026-08-12 12:43 UTC (permalink / raw)
To: intel-xe; +Cc: Satyanarayana K V P, Michal Wajdeczko
VF relies on the PF to provide a valid hardware configuration via GuC
KLV responses. In unlikely event of PF malfunction or misconfiguration,
a VF may receive incomplete, zero, or out-of-range values for its
submission contexts, doorbells, VRAM or GGTT assignment.
Add KUnit test cases that use the xe_guc_mmio_send_recv() stub to inject
bad KLV responses and verify that VF can survive without crashing for
the invalid configuration data received.
Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
V5 -> V6:
- Fixed review comments (Michal W).
V4 -> V5:
- Added alignment tests for vram, GGTT base and size (Michal W).
- Separated stubs for ctx, db, vram and GGTT (Michal W).
- Added new test cases for xe_guc_mmio_send_recv() (Michal W).
V3 -> V4:
- Changed stub function from guc_action_query_single_klv32() and
guc_action_query_single_klv64() to xe_guc_mmio_send_recv() (Michal W).
- Fixed review comments (Michal W).
V2 -> V3:
- Renamed the test names. (Michal W).
- Fixed review comments (Michal W).
V1 -> V2:
- Renamed the test file (Michal W).
- Fixed review comments (Michal W).
---
.../gpu/drm/xe/tests/xe_gt_sriov_vf_kunit.c | 484 ++++++++++++++++++
drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 4 +
2 files changed, 488 insertions(+)
create mode 100644 drivers/gpu/drm/xe/tests/xe_gt_sriov_vf_kunit.c
diff --git a/drivers/gpu/drm/xe/tests/xe_gt_sriov_vf_kunit.c b/drivers/gpu/drm/xe/tests/xe_gt_sriov_vf_kunit.c
new file mode 100644
index 000000000000..8cb7f3cebb31
--- /dev/null
+++ b/drivers/gpu/drm/xe/tests/xe_gt_sriov_vf_kunit.c
@@ -0,0 +1,484 @@
+// SPDX-License-Identifier: GPL-2.0 AND MIT
+/*
+ * Copyright © 2026 Intel Corporation
+ */
+
+#include <kunit/static_stub.h>
+#include <kunit/test.h>
+
+#include "regs/xe_guc_regs.h"
+#include "xe_device.h"
+#include "xe_kunit_helpers.h"
+#include "xe_pci_test.h"
+#include "xe_guc.h"
+
+#define TEST_VRAM SZ_8G
+#define TEST_GGTT_SIZE SZ_2G
+#define TEST_CTXS 1024
+#define TEST_DBS 128
+#define TEST_GGTT_START 0xa0a00000ull
+
+struct config {
+ u32 orig;
+ u32 query;
+ int expected_ret;
+ int ret;
+ const char *name;
+} vf_ctx_testcase[] = {
+ {
+ .orig = TEST_CTXS, .query = TEST_CTXS,
+ .expected_ret = 0, .name = "same",
+ },
+ {
+ .orig = 0, .query = 0,
+ .expected_ret = -ENODATA, .name = "none",
+ },
+ {
+ .orig = 0, .query = GUC_ID_MAX + 1,
+ .expected_ret = -EPROTO, .name = "overflow",
+ },
+ {
+ .orig = TEST_CTXS, .query = 0,
+ .expected_ret = -EREMCHG, .name = "lost",
+ },
+ {
+ .orig = TEST_CTXS, .query = TEST_CTXS / 2,
+ .expected_ret = -EREMCHG, .name = "reduced",
+ },
+ {
+ .orig = TEST_CTXS, .query = TEST_CTXS * 2,
+ .expected_ret = -EREMCHG, .name = "increased",
+ },
+ {
+ .expected_ret = -EPROTO, .ret = -EPROTO,
+ .name = "proto_error",
+ },
+ {
+ .expected_ret = -EIO, .ret = -EIO,
+ .name = "IO error",
+ },
+}, vf_db_testcase[] = {
+ {
+ .orig = TEST_DBS, .query = TEST_DBS,
+ .expected_ret = 0, .name = "same",
+ },
+ {
+ .orig = 0, .query = 0,
+ .expected_ret = 0, .name = "none",
+ },
+ {
+ .orig = TEST_DBS, .query = GUC_NUM_DOORBELLS + 1,
+ .expected_ret = -EPROTO, .name = "overflow",
+ },
+ {
+ .orig = TEST_DBS, .query = 0,
+ .expected_ret = -EREMCHG, .name = "lost",
+ },
+ {
+ .orig = TEST_DBS, .query = TEST_DBS / 2,
+ .expected_ret = -EREMCHG, .name = "reduced",
+ },
+ {
+ .orig = TEST_DBS, .query = GUC_NUM_DOORBELLS - 1,
+ .expected_ret = -EREMCHG, .name = "increased",
+ },
+ {
+ .expected_ret = -EPROTO, .ret = -EPROTO,
+ .name = "proto_error"
+ },
+ {
+ .expected_ret = -EIO, .ret = -EIO,
+ .name = "IO error",
+ },
+};
+
+struct config_vram {
+ u64 orig;
+ u64 query;
+ int expected_ret;
+ int ret;
+ const char *name;
+} vf_vram_testcase[] = {
+ {
+ .orig = TEST_VRAM, .query = TEST_VRAM,
+ .expected_ret = 0, .name = "same",
+ },
+ {
+ .orig = 0, .query = 0,
+ .expected_ret = -ENODATA, .name = "none",
+ },
+ {
+ .orig = TEST_VRAM / 2, .query = TEST_VRAM + SZ_1G,
+ .expected_ret = -EREMCHG, .name = "overflow",
+ },
+ {
+ .orig = TEST_VRAM / 2, .query = 0,
+ .expected_ret = -EREMCHG, .name = "lost",
+ },
+ {
+ .orig = TEST_VRAM / 2, .query = TEST_VRAM / 4,
+ .expected_ret = -EREMCHG, .name = "reduced",
+ },
+ {
+ .orig = TEST_VRAM, .query = TEST_VRAM * 2,
+ .expected_ret = -EREMCHG, .name = "increased",
+ },
+ {
+ .orig = TEST_VRAM - SZ_1M, .query = TEST_VRAM - SZ_1M,
+ .expected_ret = -EINVAL, .name = "unaligned",
+ },
+ {
+ .expected_ret = -EPROTO, .ret = -EPROTO,
+ .name = "proto_error"
+ },
+ {
+ .expected_ret = -EIO, .ret = -EIO,
+ .name = "IO error",
+ },
+};
+
+struct config_ggtt {
+ u64 start_orig;
+ u64 start_query;
+ u64 size_orig;
+ u64 size_query;
+ int expected_ret;
+ int ret;
+ int flags;
+ const char *name;
+} vf_ggtt_testcase[] = {
+ {
+ .start_orig = TEST_GGTT_START, .start_query = TEST_GGTT_START,
+ .size_orig = TEST_GGTT_SIZE, .size_query = TEST_GGTT_SIZE,
+ .expected_ret = 0, .flags = 0,
+ .name = "same",
+ },
+ {
+ .start_orig = 0, .start_query = 0,
+ .size_orig = 0, .size_query = 0,
+ .expected_ret = -ENODATA, .flags = 0,
+ .name = "none",
+ },
+ {
+ .start_orig = TEST_GGTT_START, .start_query = TEST_GGTT_START,
+ .size_orig = TEST_GGTT_SIZE, .size_query = TEST_GGTT_SIZE + SZ_1G,
+ .expected_ret = -EREMCHG, .flags = 0,
+ .name = "overflow",
+ },
+ {
+ .start_orig = TEST_GGTT_START, .start_query = TEST_GGTT_START,
+ .size_orig = TEST_GGTT_SIZE, .size_query = 0,
+ .expected_ret = -ENODATA, .flags = 0,
+ .name = "lost",
+ },
+ {
+ .start_orig = TEST_GGTT_START, .start_query = TEST_GGTT_START,
+ .size_orig = TEST_GGTT_SIZE, .size_query = TEST_GGTT_SIZE - SZ_1M,
+ .expected_ret = -EREMCHG, .flags = 0,
+ .name = "reduced",
+ },
+ {
+ .start_orig = TEST_GGTT_START, .start_query = TEST_GGTT_START,
+ .size_orig = TEST_GGTT_SIZE, .size_query = TEST_GGTT_SIZE + SZ_1M,
+ .expected_ret = -EREMCHG, .flags = 0,
+ .name = "increased",
+ },
+ {
+ .start_orig = TEST_GGTT_START, .start_query = TEST_GGTT_START,
+ .size_orig = TEST_GGTT_SIZE - SZ_2K, .size_query = TEST_GGTT_SIZE - SZ_2K,
+ .expected_ret = -EINVAL, .flags = 0,
+ .name = "unaligned_size_4K",
+
+ },
+ {
+ .start_orig = TEST_GGTT_START, .start_query = TEST_GGTT_START,
+ .size_orig = TEST_GGTT_SIZE - SZ_8K, .size_query = TEST_GGTT_SIZE - SZ_8K,
+ .expected_ret = -EINVAL, .flags = XE_VRAM_FLAGS_NEED64K,
+ .name = "unaligned_size_64K",
+ },
+ {
+ .start_orig = TEST_GGTT_START - SZ_2K, .start_query = TEST_GGTT_START - SZ_2K,
+ .size_orig = TEST_GGTT_SIZE, .size_query = TEST_GGTT_SIZE,
+ .expected_ret = -EINVAL, .flags = 0,
+ .name = "unaligned_base_4k",
+ },
+ {
+ .start_orig = TEST_GGTT_START - SZ_8K, .start_query = TEST_GGTT_START - SZ_8K,
+ .size_orig = TEST_GGTT_SIZE, .size_query = TEST_GGTT_SIZE,
+ .expected_ret = -EINVAL, .flags = XE_VRAM_FLAGS_NEED64K,
+ .name = "unaligned_base_64k",
+ },
+ {
+ .expected_ret = -EPROTO, .ret = -EPROTO,
+ .name = "proto_error"
+ },
+ {
+ .expected_ret = -EIO, .ret = -EIO,
+ .name = "IO error",
+ },
+};
+
+struct config_mmio {
+ u32 response_length;
+ u32 response_value;
+ int expected_ret;
+ int ret;
+ const char *name;
+} guc_mmio_resp_testcase[] = {
+ {
+ .response_length = sizeof(u32) / sizeof(u32),
+ .response_value = TEST_CTXS, .expected_ret = 0, .name = "same",
+ },
+ {
+ .response_length = 0, .response_value = 0,
+ .expected_ret = -ENODATA, .name = "none",
+ },
+ {
+ .response_length = sizeof(u64) / sizeof(u32),
+ .response_value = TEST_CTXS, .expected_ret = -EOVERFLOW,
+ .name = "overflow",
+ },
+ {
+ .response_length = sizeof(u32) / sizeof(u32),
+ .response_value = 0, .expected_ret = -EREMCHG,
+ .name = "lost",
+ },
+ {
+ .response_length = 0xffff, .response_value = 0xffff,
+ .expected_ret = -EOVERFLOW, .name = "invalid",
+ },
+ {
+ .expected_ret = -EPROTO, .ret = -EPROTO,
+ .name = "proto_error",
+ },
+ {
+ .expected_ret = -EIO, .ret = -EIO,
+ .name = "IO error",
+ },
+};
+
+KUNIT_ARRAY_PARAM_DESC(ctx_testcase, vf_ctx_testcase, name);
+KUNIT_ARRAY_PARAM_DESC(db_testcase, vf_db_testcase, name);
+KUNIT_ARRAY_PARAM_DESC(vram_testcase, vf_vram_testcase, name);
+KUNIT_ARRAY_PARAM_DESC(ggtt_testcase, vf_ggtt_testcase, name);
+KUNIT_ARRAY_PARAM_DESC(guc_mmio_resp, guc_mmio_resp_testcase, name);
+
+static int xe_guc_mmio_send_recv_stub_ctx(struct xe_guc *guc, const u32 *request,
+ u32 len, u32 *response_buf)
+{
+ struct kunit *test = kunit_get_current_test();
+ const struct config *c = test->param_value;
+
+ if (c->ret)
+ return c->ret;
+
+ KUNIT_ASSERT_EQ(test, FIELD_GET(GUC_HXG_REQUEST_MSG_0_ACTION, request[0]),
+ GUC_ACTION_VF2GUC_QUERY_SINGLE_KLV);
+ KUNIT_ASSERT_EQ(test,
+ FIELD_GET(VF2GUC_QUERY_SINGLE_KLV_REQUEST_MSG_1_KEY, request[1]),
+ GUC_KLV_VF_CFG_NUM_CONTEXTS_KEY);
+
+ response_buf[0] = sizeof(u32) / sizeof(u32);
+ response_buf[1] = c->query;
+
+ return 0;
+}
+
+static int xe_guc_mmio_send_recv_stub_db(struct xe_guc *guc, const u32 *request,
+ u32 len, u32 *response_buf)
+{
+ struct kunit *test = kunit_get_current_test();
+ const struct config *c = test->param_value;
+
+ if (c->ret)
+ return c->ret;
+
+ KUNIT_ASSERT_EQ(test, FIELD_GET(GUC_HXG_REQUEST_MSG_0_ACTION, request[0]),
+ GUC_ACTION_VF2GUC_QUERY_SINGLE_KLV);
+ KUNIT_ASSERT_EQ(test,
+ FIELD_GET(VF2GUC_QUERY_SINGLE_KLV_REQUEST_MSG_1_KEY, request[1]),
+ GUC_KLV_VF_CFG_NUM_DOORBELLS_KEY);
+
+ response_buf[0] = sizeof(u32) / sizeof(u32);
+ response_buf[1] = c->query;
+
+ return 0;
+}
+
+static int xe_guc_mmio_send_recv_stub_vram(struct xe_guc *guc, const u32 *request,
+ u32 len, u32 *response_buf)
+{
+ struct kunit *test = kunit_get_current_test();
+ const struct config_vram *c = test->param_value;
+
+ if (c->ret)
+ return c->ret;
+
+ KUNIT_ASSERT_EQ(test, FIELD_GET(GUC_HXG_REQUEST_MSG_0_ACTION, request[0]),
+ GUC_ACTION_VF2GUC_QUERY_SINGLE_KLV);
+ KUNIT_ASSERT_EQ(test,
+ FIELD_GET(VF2GUC_QUERY_SINGLE_KLV_REQUEST_MSG_1_KEY, request[1]),
+ GUC_KLV_VF_CFG_LMEM_SIZE_KEY);
+
+ response_buf[0] = sizeof(u64) / sizeof(u32);
+ response_buf[1] = lower_32_bits(c->query);
+ response_buf[2] = upper_32_bits(c->query);
+
+ return 0;
+}
+
+static int xe_guc_mmio_send_recv_stub_ggtt(struct xe_guc *guc, const u32 *request,
+ u32 len, u32 *response_buf)
+{
+ struct kunit *test = kunit_get_current_test();
+ const struct config_ggtt *c = test->param_value;
+ u32 key;
+
+ if (c->ret)
+ return c->ret;
+
+ KUNIT_ASSERT_EQ(test, FIELD_GET(GUC_HXG_REQUEST_MSG_0_ACTION, request[0]),
+ GUC_ACTION_VF2GUC_QUERY_SINGLE_KLV);
+ key = FIELD_GET(VF2GUC_QUERY_SINGLE_KLV_REQUEST_MSG_1_KEY, request[1]);
+ KUNIT_ASSERT_TRUE(test,
+ key == GUC_KLV_VF_CFG_GGTT_START_KEY ||
+ key == GUC_KLV_VF_CFG_GGTT_SIZE_KEY);
+
+ response_buf[0] = sizeof(u64) / sizeof(u32);
+ if (key == GUC_KLV_VF_CFG_GGTT_START_KEY) {
+ response_buf[1] = lower_32_bits(c->start_query);
+ response_buf[2] = upper_32_bits(c->start_query);
+ } else {
+ response_buf[1] = lower_32_bits(c->size_query);
+ response_buf[2] = upper_32_bits(c->size_query);
+ }
+
+ return 0;
+}
+
+static int xe_guc_mmio_send_recv_stub(struct xe_guc *guc, const u32 *request,
+ u32 len, u32 *response_buf)
+{
+ struct kunit *test = kunit_get_current_test();
+ const struct config_mmio *c = test->param_value;
+
+ if (c->ret)
+ return c->ret;
+
+ KUNIT_ASSERT_EQ(test, FIELD_GET(GUC_HXG_REQUEST_MSG_0_ACTION, request[0]),
+ GUC_ACTION_VF2GUC_QUERY_SINGLE_KLV);
+ /**
+ * Let us take help of vf_get_ctxs_cfg() function to test responses
+ * from Guc.
+ */
+ KUNIT_ASSERT_EQ(test,
+ FIELD_GET(VF2GUC_QUERY_SINGLE_KLV_REQUEST_MSG_1_KEY, request[1]),
+ GUC_KLV_VF_CFG_NUM_CONTEXTS_KEY);
+
+ response_buf[0] = c->response_length;
+ response_buf[1] = c->response_value;
+
+ return 0;
+}
+
+static void test_ctxs(struct kunit *test)
+{
+ struct xe_gt *gt = test->priv;
+ const struct config *c = test->param_value;
+
+ gt->sriov.vf.self_config.num_ctxs = c->orig;
+ kunit_activate_static_stub(test, xe_guc_mmio_send_recv,
+ xe_guc_mmio_send_recv_stub_ctx);
+ KUNIT_EXPECT_EQ(test, vf_get_ctxs_cfg(gt), c->expected_ret);
+}
+
+static void test_dbs(struct kunit *test)
+{
+ struct xe_gt *gt = test->priv;
+ const struct config *c = test->param_value;
+
+ gt->sriov.vf.self_config.num_dbs = c->orig;
+ kunit_activate_static_stub(test, xe_guc_mmio_send_recv,
+ xe_guc_mmio_send_recv_stub_db);
+ KUNIT_EXPECT_EQ(test, vf_get_dbs_cfg(gt), c->expected_ret);
+}
+
+static void test_vram(struct kunit *test)
+{
+ struct xe_gt *gt = test->priv;
+ const struct config_vram *c = test->param_value;
+
+ gt->tile->sriov.vf.self_config.lmem_size = c->orig;
+ kunit_activate_static_stub(test, xe_guc_mmio_send_recv,
+ xe_guc_mmio_send_recv_stub_vram);
+ KUNIT_EXPECT_EQ(test, vf_get_lmem_info(gt), c->expected_ret);
+}
+
+static void test_ggtt(struct kunit *test)
+{
+ const struct config_ggtt *c = test->param_value;
+ struct xe_gt *gt = test->priv;
+ struct xe_device *xe = gt_to_xe(gt);
+
+ gt->tile->sriov.vf.self_config.ggtt_base = c->start_orig;
+ gt->tile->sriov.vf.self_config.ggtt_size = c->size_orig;
+
+ xe->info.vram_flags = c->flags;
+
+ kunit_activate_static_stub(test, xe_guc_mmio_send_recv,
+ xe_guc_mmio_send_recv_stub_ggtt);
+ KUNIT_EXPECT_EQ(test, vf_get_ggtt_info(gt), c->expected_ret);
+}
+
+static void test_guc_mmio(struct kunit *test)
+{
+ const struct config_mmio *c = test->param_value;
+ struct xe_gt *gt = test->priv;
+
+ gt->sriov.vf.self_config.num_ctxs = TEST_CTXS;
+ kunit_activate_static_stub(test, xe_guc_mmio_send_recv,
+ xe_guc_mmio_send_recv_stub);
+ KUNIT_EXPECT_EQ(test, vf_get_ctxs_cfg(gt), c->expected_ret);
+}
+
+static int vf_gt_config_test_init(struct kunit *test)
+{
+ struct xe_pci_fake_data fake = {
+ .sriov_mode = XE_SRIOV_MODE_VF,
+ .platform = XE_BATTLEMAGE, /* any random DGFX platform with SR-IOV */
+ .subplatform = XE_SUBPLATFORM_NONE,
+ .graphics_verx100 = 2001,
+ };
+ struct xe_device *xe;
+ struct xe_gt *gt;
+
+ test->priv = &fake;
+ xe_kunit_helper_xe_device_test_init(test);
+
+ xe = test->priv;
+ KUNIT_ASSERT_TRUE(test, IS_SRIOV_VF(xe));
+ KUNIT_ASSERT_TRUE(test, IS_DGFX(xe));
+
+ gt = xe_root_mmio_gt(xe);
+ KUNIT_ASSERT_NOT_ERR_OR_NULL(test, gt);
+ test->priv = gt;
+
+ return 0;
+}
+
+static struct kunit_case vf_gt_config_test_cases[] = {
+ KUNIT_CASE_PARAM(test_ctxs, ctx_testcase_gen_params),
+ KUNIT_CASE_PARAM(test_dbs, db_testcase_gen_params),
+ KUNIT_CASE_PARAM(test_vram, vram_testcase_gen_params),
+ KUNIT_CASE_PARAM(test_ggtt, ggtt_testcase_gen_params),
+ KUNIT_CASE_PARAM(test_guc_mmio, guc_mmio_resp_gen_params),
+ {}
+};
+
+static struct kunit_suite vf_gt_config_suite = {
+ .name = "vf_gt_config",
+ .test_cases = vf_gt_config_test_cases,
+ .init = vf_gt_config_test_init,
+};
+
+kunit_test_suite(vf_gt_config_suite);
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
index be932ebe6a8d..d6b631cd4dfc 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
@@ -1684,3 +1684,7 @@ int xe_gt_sriov_vf_wait_valid_ggtt(struct xe_gt *gt)
return atomic_read(>->sriov.vf.migration.fixups_complete_count);
}
+
+#if IS_BUILTIN(CONFIG_DRM_XE_KUNIT_TEST)
+#include "tests/xe_gt_sriov_vf_kunit.c"
+#endif
--
2.53.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH v6 4/7] drm/xe: Introduce helpers for xe_vram size
2026-08-12 12:43 ` [PATCH v6 4/7] drm/xe: Introduce helpers for xe_vram size Satyanarayana K V P
@ 2026-08-12 12:55 ` sashiko-bot
0 siblings, 0 replies; 16+ messages in thread
From: sashiko-bot @ 2026-08-12 12:55 UTC (permalink / raw)
To: Satyanarayana K V P; +Cc: intel-xe
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [High] `query_mem_regions()` now reports VRAM `min_page_size` as `SZ_4K` instead of `PAGE_SIZE` on architectures with `PAGE_SIZE > 4K`, leading to userspace allocation failures.
--
--- Patch [4]: [PATCH v6 4/7] drm/xe: Introduce helpers for xe_vram size ---
commit 8d2aa91dbef321fc3453eaed963150727bdc7dd0
Author: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
drm/xe: Introduce helpers for xe_vram size
This commit introduces xe_vram_alignment() and xe_vram_needs_64k() helpers.
It updates various files in the xe driver to use these new helpers instead of
directly checking the XE_VRAM_FLAGS_NEED64K flag.
> diff --git a/drivers/gpu/drm/xe/xe_query.c b/drivers/gpu/drm/xe/xe_query.c
> index dc975f5953683..9af98f08b0e59 100644
> --- a/drivers/gpu/drm/xe/xe_query.c
> +++ b/drivers/gpu/drm/xe/xe_query.c
> @@ -289,8 +289,7 @@ static int query_mem_regions(struct xe_device *xe,
> mem_regions->mem_regions[mem_regions->num_mem_regions].instance =
> mem_regions->num_mem_regions;
> mem_regions->mem_regions[mem_regions->num_mem_regions].min_page_size =
> - xe->info.vram_flags & XE_VRAM_FLAGS_NEED64K ?
> - SZ_64K : PAGE_SIZE;
> + xe_vram_alignment(xe);
[Severity: High]
Does this code report the minimum page size correctly on architectures where
PAGE_SIZE is greater than 4K?
The previous code returned PAGE_SIZE when 64K alignment was not needed, but
xe_vram_alignment() now always returns SZ_4K in that case.
If userspace uses this 4K value to size its allocations, could those
allocations be rejected in xe_gem_create_ioctl()?
drivers/gpu/drm/xe/xe_bo.c:xe_gem_create_ioctl() {
...
if (XE_IOCTL_DBG(xe, args->size & ~PAGE_MASK))
return -EINVAL;
...
}
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260812124313.1377582-9-satyanarayana.k.v.p@intel.com?part=4
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v6 5/7] drm/xe/vf: Add bounds checking for queried GGTT base and size
2026-08-12 12:43 ` [PATCH v6 5/7] drm/xe/vf: Add bounds checking for queried GGTT base and size Satyanarayana K V P
@ 2026-08-12 12:55 ` sashiko-bot
0 siblings, 0 replies; 16+ messages in thread
From: sashiko-bot @ 2026-08-12 12:55 UTC (permalink / raw)
To: Satyanarayana K V P; +Cc: intel-xe
Thank you for your contribution! Sashiko AI review found 3 potential issue(s) to consider:
New issues:
- [High] Validation bypass and state corruption in `vf_get_ggtt_info()`.
- [Medium] Missing implementation of bounds checking.
Pre-existing issues:
- [High] Integer wrap-around vulnerability in GGTT bounds check.
--
--- Patch [5]: [PATCH v6 5/7] drm/xe/vf: Add bounds checking for queried GGTT base and size ---
commit 79b0ebbde860ecafbd9642c6e961750508666c39
Author: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
drm/xe/vf: Add bounds checking for queried GGTT base and size
This commit adds explicit alignment checks for the queried GGTT base
and size in the VF to protect against invalid configuration data from
the PF.
> drm/xe/vf: Add bounds checking for queried GGTT base and size
>
> Add explicit bounds checks for GGTT base and size which can detect
> and reject invalid configuration data from a misconfigured or
> malfunctioning PF, preventing protocol violations and protecting VF
> initialization.
[Severity: Medium]
Does this patch implement bounds checking?
The commit message states bounds checking is being added, but the code
only appears to implement alignment checks using IS_ALIGNED(). It seems
actual bounds verification (to ensure start and size do not exceed physical
limits) is missing from this change.
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> index 81d68fe5ad7cd..d805c064377c3 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
[ ... ]
> @@ -526,6 +527,18 @@ static int vf_get_ggtt_info(struct xe_gt *gt)
> return -EREMCHG;
> }
>
> + if (!IS_ALIGNED(start, alignment)) {
> + xe_gt_sriov_err(gt, "Unaligned GGTT base: %llu, expected %llu\n",
> + start, ALIGN(start, alignment));
> + return -EINVAL;
> + }
> +
> + if (!IS_ALIGNED(size, alignment)) {
> + xe_gt_sriov_err(gt, "Unaligned GGTT size %llu, expected %llu\n",
> + size, ALIGN(size, alignment));
> + return -EINVAL;
> + }
[Severity: High]
Can untrusted input from the PF bypass these new alignment checks during
VF initialization?
Looking at vf_get_ggtt_info() earlier in this function:
xe_tile_sriov_vf_ggtt_base_store(tile, start);
ggtt_size = xe_tile_sriov_vf_ggtt(tile);
if (!ggtt_size) {
/*
* This function is called once during xe_guc_init_noalloc(),
* at which point ggtt_size = 0 and we have to initialize everything,
* and GGTT is not yet initialized.
*
* Return early as there's nothing to fixup.
*/
xe_tile_sriov_vf_ggtt_store(tile, size);
return 0;
}
Because ggtt_size is initially 0 during xe_guc_init_noalloc(), the function
will take this early return path and completely skip the newly added
IS_ALIGNED() checks.
Additionally, if invalid parameters are sent during a post-migration update,
will the unaligned start address be cached in the tile state by the call to
xe_tile_sriov_vf_ggtt_base_store(tile, start) before these checks can reject
it?
[Severity: High]
This isn't a bug introduced by this patch, but does the bounds check in
xe_ggtt_init_early() have an integer wrap-around vulnerability?
If a misconfigured or malicious PF returns an extremely large ggtt_size
via the GuC KLV query (for example, 0xFFFFFFFFFFF00000), it looks like it
could bypass the checks:
drivers/gpu/drm/xe/xe_ggtt.c:xe_ggtt_init_early() {
...
if (ggtt_start < wopcm ||
ggtt_start + ggtt_size > GUC_GGTT_TOP) {
...
}
Could the unprotected addition ggtt_start + ggtt_size wrap around the 64-bit
limit and evaluate to a small value?
This would bypass the GUC_GGTT_TOP check and pass the massive size to
drm_mm_init(), potentially allowing future allocations to generate offsets
far beyond the valid MMIO region.
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260812124313.1377582-9-satyanarayana.k.v.p@intel.com?part=5
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v6 7/7] drm/xe/tests: Add KUnit tests for VF provisioning error handling
2026-08-12 12:43 ` [PATCH v6 7/7] drm/xe/tests: Add KUnit tests for VF provisioning error handling Satyanarayana K V P
@ 2026-08-12 13:00 ` sashiko-bot
0 siblings, 0 replies; 16+ messages in thread
From: sashiko-bot @ 2026-08-12 13:00 UTC (permalink / raw)
To: Satyanarayana K V P; +Cc: intel-xe
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [High] The GGTT initialization path skips alignment validation and performs partial state updates before validation completes, which the new KUnit tests fail to detect.
--
--- Patch [7]: [PATCH v6 7/7] drm/xe/tests: Add KUnit tests for VF provisioning error handling ---
commit 5074ef2c8cf15b0dd4c9cdf94819ab386e4100b7
Author: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
drm/xe/tests: Add KUnit tests for VF provisioning error handling
This commit adds KUnit test cases for VF provisioning error handling. It
uses the xe_guc_mmio_send_recv() stub to inject bad KLV responses and
verifies that the VF can handle invalid configuration data.
> diff --git a/drivers/gpu/drm/xe/tests/xe_gt_sriov_vf_kunit.c b/drivers/gpu/drm/xe/tests/xe_gt_sriov_vf_kunit.c
> new file mode 100644
> index 0000000000000..8cb7f3cebb311
> --- /dev/null
> +++ b/drivers/gpu/drm/xe/tests/xe_gt_sriov_vf_kunit.c
[ ... ]
> +struct config_ggtt {
> + u64 start_orig;
> + u64 start_query;
> + u64 size_orig;
> + u64 size_query;
> + int expected_ret;
> + int ret;
> + int flags;
> + const char *name;
> +} vf_ggtt_testcase[] = {
[ ... ]
> + {
> + .start_orig = TEST_GGTT_START, .start_query = TEST_GGTT_START,
> + .size_orig = TEST_GGTT_SIZE - SZ_2K, .size_query = TEST_GGTT_SIZE - SZ_2K,
> + .expected_ret = -EINVAL, .flags = 0,
> + .name = "unaligned_size_4K",
> +
> + },
[Severity: High]
This is a pre-existing issue, but the new KUnit tests unintentionally mask
a bug in the early return path of vf_get_ggtt_info().
By setting size_orig to a non-zero value (TEST_GGTT_SIZE - SZ_2K) in this
unaligned test case, the test avoids the initial provisioning path. If
size_orig was set to 0 (which reflects the actual initial provisioning state),
the test would fail because vf_get_ggtt_info() incorrectly returns 0 instead
of -EINVAL.
Looking at vf_get_ggtt_info() in drivers/gpu/drm/xe/xe_gt_sriov_vf.c:
xe_tile_sriov_vf_ggtt_base_store(tile, start);
ggtt_size = xe_tile_sriov_vf_ggtt(tile);
if (!ggtt_size) {
/* ... */
xe_tile_sriov_vf_ggtt_store(tile, size);
return 0;
}
During initial provisioning (when ggtt_size is 0), unvalidated start and size
values are stored and the function returns early, completely bypassing the
IS_ALIGNED validation checks that occur later in the function.
Should the alignment checks in vf_get_ggtt_info() be moved before this early
return, and should these KUnit tests be updated to include scenarios where
size_orig is 0 to verify the initial provisioning path?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260812124313.1377582-9-satyanarayana.k.v.p@intel.com?part=7
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v6 6/7] drm/xe/vf: Add bounds checking for queried VRAM size
2026-08-12 12:43 ` [PATCH v6 6/7] drm/xe/vf: Add bounds checking for queried VRAM size Satyanarayana K V P
@ 2026-08-12 13:02 ` sashiko-bot
0 siblings, 0 replies; 16+ messages in thread
From: sashiko-bot @ 2026-08-12 13:02 UTC (permalink / raw)
To: Satyanarayana K V P; +Cc: intel-xe
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [High] Missing upper bounds check for queried VRAM size
--
--- Patch [6]: [PATCH v6 6/7] drm/xe/vf: Add bounds checking for queried VRAM size ---
commit 2089489a65d04a75b7e07c3d3903caf61610c1eb
Author: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
drm/xe/vf: Add bounds checking for queried VRAM size
This commit attempts to add checks for the VRAM size queried from the PF
to protect VF initialization from invalid configuration data.
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> index d805c064377c3..be932ebe6a8d0 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> @@ -574,6 +574,12 @@ static int vf_get_lmem_info(struct xe_gt *gt)
> return -EREMCHG;
> }
>
> + if (!IS_ALIGNED(size, SZ_2M)) {
> + xe_gt_sriov_err(gt, "Unaligned LMEM size %llu, expected %llu\n",
> + size, ALIGN(size, SZ_2M));
> + return -EINVAL;
> + }
> +
[Severity: High]
This is a pre-existing issue, but the commit message states this patch adds
"bounds checking" to reject invalid configuration data, while this code
only implements an alignment check.
Does vf_get_lmem_info() also need an upper bounds check for the queried size?
If a misconfigured or compromised PF provides an artificially large VRAM
size, there doesn't appear to be a check against the VF's PCI LMEM BAR
size here. Could this unverified size propagate to vram->usable_size and
allow userspace to allocate VRAM beyond physical capacity, leading to
out-of-bounds memory accesses?
> string_get_size(size, 1, STRING_UNITS_2, size_str, sizeof(size_str));
> xe_gt_sriov_dbg_verbose(gt, "LMEM %lluM %s\n", size / SZ_1M, size_str);
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260812124313.1377582-9-satyanarayana.k.v.p@intel.com?part=6
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ CI.checkpatch: warning for KUnit test for VF provisioning error handling (rev6)
2026-08-12 12:43 [PATCH v6 0/7] KUnit test for VF provisioning error handling Satyanarayana K V P
` (6 preceding siblings ...)
2026-08-12 12:43 ` [PATCH v6 7/7] drm/xe/tests: Add KUnit tests for VF provisioning error handling Satyanarayana K V P
@ 2026-08-12 13:18 ` Patchwork
2026-08-12 13:19 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
10 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2026-08-12 13:18 UTC (permalink / raw)
To: Satyanarayana K V P; +Cc: intel-xe
== Series Details ==
Series: KUnit test for VF provisioning error handling (rev6)
URL : https://patchwork.freedesktop.org/series/170198/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
061140b9bc586ae7f40abc1249c97e1cc72d1b9d
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 8510b89e4fba95d20fce5a5b5cc0d63f3f8f0e00
Author: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Date: Wed Aug 12 18:13:19 2026 +0530
drm/xe/tests: Add KUnit tests for VF provisioning error handling
VF relies on the PF to provide a valid hardware configuration via GuC
KLV responses. In unlikely event of PF malfunction or misconfiguration,
a VF may receive incomplete, zero, or out-of-range values for its
submission contexts, doorbells, VRAM or GGTT assignment.
Add KUnit test cases that use the xe_guc_mmio_send_recv() stub to inject
bad KLV responses and verify that VF can survive without crashing for
the invalid configuration data received.
Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
+ /mt/dim checkpatch 96ddbb14986632af742523e68f90d51c138c57f0 drm-intel
8b58c9599759 drm/xe/guc: Allow to replace xe_guc_mmio_send_recv() with KUNIT stub
ff840c2645a3 drm/xe/vf: Split submission config query helpers
351c415258e2 drm/xe/vf: Add bounds checking for queried context and doorbell counts
a6a356f3e280 drm/xe: Introduce helpers for xe_vram size
cf6dffd4f6b4 drm/xe/vf: Add bounds checking for queried GGTT base and size
4d8e0d5ca3e8 drm/xe/vf: Add bounds checking for queried VRAM size
8510b89e4fba drm/xe/tests: Add KUnit tests for VF provisioning error handling
-:20: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#20:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 491 lines checked
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✓ CI.KUnit: success for KUnit test for VF provisioning error handling (rev6)
2026-08-12 12:43 [PATCH v6 0/7] KUnit test for VF provisioning error handling Satyanarayana K V P
` (7 preceding siblings ...)
2026-08-12 13:18 ` ✗ CI.checkpatch: warning for KUnit test for VF provisioning error handling (rev6) Patchwork
@ 2026-08-12 13:19 ` Patchwork
2026-08-12 14:20 ` ✓ Xe.CI.BAT: " Patchwork
2026-08-12 18:27 ` ✓ Xe.CI.FULL: " Patchwork
10 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2026-08-12 13:19 UTC (permalink / raw)
To: Satyanarayana K V P; +Cc: intel-xe
== Series Details ==
Series: KUnit test for VF provisioning error handling (rev6)
URL : https://patchwork.freedesktop.org/series/170198/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[13:18:06] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:18:10] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[13:18:42] Starting KUnit Kernel (1/1)...
[13:18:42] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:18:42] ================== guc_buf (11 subtests) ===================
[13:18:42] [PASSED] test_smallest
[13:18:42] [PASSED] test_largest
[13:18:42] [PASSED] test_granular
[13:18:42] [PASSED] test_unique
[13:18:42] [PASSED] test_overlap
[13:18:42] [PASSED] test_reusable
[13:18:42] [PASSED] test_too_big
[13:18:42] [PASSED] test_flush
[13:18:42] [PASSED] test_lookup
[13:18:42] [PASSED] test_data
[13:18:42] [PASSED] test_class
[13:18:42] ===================== [PASSED] guc_buf =====================
[13:18:42] =================== guc_dbm (7 subtests) ===================
[13:18:42] [PASSED] test_empty
[13:18:42] [PASSED] test_default
[13:18:42] ======================== test_size ========================
[13:18:42] [PASSED] 4
[13:18:42] [PASSED] 8
[13:18:42] [PASSED] 32
[13:18:42] [PASSED] 256
[13:18:42] ==================== [PASSED] test_size ====================
[13:18:42] ======================= test_reuse ========================
[13:18:42] [PASSED] 4
[13:18:42] [PASSED] 8
[13:18:42] [PASSED] 32
[13:18:42] [PASSED] 256
[13:18:42] =================== [PASSED] test_reuse ====================
[13:18:42] =================== test_range_overlap ====================
[13:18:42] [PASSED] 4
[13:18:42] [PASSED] 8
[13:18:42] [PASSED] 32
[13:18:42] [PASSED] 256
[13:18:42] =============== [PASSED] test_range_overlap ================
[13:18:42] =================== test_range_compact ====================
[13:18:42] [PASSED] 4
[13:18:42] [PASSED] 8
[13:18:42] [PASSED] 32
[13:18:42] [PASSED] 256
[13:18:42] =============== [PASSED] test_range_compact ================
[13:18:42] ==================== test_range_spare =====================
[13:18:42] [PASSED] 4
[13:18:42] [PASSED] 8
[13:18:42] [PASSED] 32
[13:18:42] [PASSED] 256
[13:18:42] ================ [PASSED] test_range_spare =================
[13:18:42] ===================== [PASSED] guc_dbm =====================
[13:18:42] =================== guc_idm (6 subtests) ===================
[13:18:42] [PASSED] bad_init
[13:18:42] [PASSED] no_init
[13:18:42] [PASSED] init_fini
[13:18:42] [PASSED] check_used
[13:18:42] [PASSED] check_quota
[13:18:42] [PASSED] check_all
[13:18:42] ===================== [PASSED] guc_idm =====================
[13:18:42] =============== guc_klv_helpers (9 subtests) ===============
[13:18:42] [PASSED] test_count
[13:18:42] [PASSED] test_encode_u32
[13:18:42] [PASSED] test_encode_u64
[13:18:42] [PASSED] test_encode_string
[13:18:42] [PASSED] test_encode_object_raw
[13:18:42] [PASSED] test_encode_object_klv
[13:18:42] [PASSED] test_encode_object_nested
[13:18:42] [PASSED] test_encode_object_basic
[13:18:42] [PASSED] test_print
[13:18:42] ================= [PASSED] guc_klv_helpers =================
[13:18:42] ================ vf_gt_config (5 subtests) =================
[13:18:42] ======================== test_ctxs ========================
[13:18:42] [PASSED] same
[13:18:42] [PASSED] none
[13:18:42] [PASSED] overflow
[13:18:42] [PASSED] lost
[13:18:42] [PASSED] reduced
[13:18:42] [PASSED] increased
[13:18:42] [PASSED] proto_error
[13:18:42] [PASSED] IO error
[13:18:42] ==================== [PASSED] test_ctxs ====================
[13:18:42] ======================== test_dbs =========================
[13:18:42] [PASSED] same
[13:18:42] [PASSED] none
[13:18:42] [PASSED] overflow
[13:18:42] [PASSED] lost
[13:18:42] [PASSED] reduced
[13:18:42] [PASSED] increased
[13:18:42] [PASSED] proto_error
[13:18:42] [PASSED] IO error
[13:18:42] ==================== [PASSED] test_dbs =====================
[13:18:42] ======================== test_vram ========================
[13:18:42] [PASSED] same
[13:18:42] [PASSED] none
[13:18:42] [PASSED] overflow
[13:18:42] [PASSED] lost
[13:18:42] [PASSED] reduced
[13:18:42] [PASSED] increased
[13:18:42] [PASSED] unaligned
[13:18:42] [PASSED] proto_error
[13:18:42] [PASSED] IO error
[13:18:42] ==================== [PASSED] test_vram ====================
[13:18:42] ======================== test_ggtt ========================
[13:18:42] [PASSED] same
[13:18:42] [PASSED] none
[13:18:42] [PASSED] overflow
[13:18:42] [PASSED] lost
[13:18:42] [PASSED] reduced
[13:18:42] [PASSED] increased
[13:18:42] [PASSED] unaligned_size_4K
[13:18:42] [PASSED] unaligned_size_64K
[13:18:42] [PASSED] unaligned_base_4k
[13:18:42] [PASSED] unaligned_base_64k
[13:18:42] [PASSED] proto_error
[13:18:42] [PASSED] IO error
[13:18:42] ==================== [PASSED] test_ggtt ====================
[13:18:42] ====================== test_guc_mmio ======================
[13:18:42] [PASSED] same
[13:18:42] [PASSED] none
[13:18:42] [PASSED] overflow
[13:18:42] [PASSED] lost
[13:18:42] [PASSED] invalid
[13:18:42] [PASSED] proto_error
[13:18:42] [PASSED] IO error
[13:18:42] ================== [PASSED] test_guc_mmio ==================
[13:18:42] ================== [PASSED] vf_gt_config ===================
[13:18:42] ================== no_relay (3 subtests) ===================
[13:18:42] [PASSED] xe_drops_guc2pf_if_not_ready
[13:18:42] [PASSED] xe_drops_guc2vf_if_not_ready
[13:18:42] [PASSED] xe_rejects_send_if_not_ready
[13:18:42] ==================== [PASSED] no_relay =====================
[13:18:42] ================== pf_relay (14 subtests) ==================
[13:18:42] [PASSED] pf_rejects_guc2pf_too_short
[13:18:42] [PASSED] pf_rejects_guc2pf_too_long
[13:18:42] [PASSED] pf_rejects_guc2pf_no_payload
[13:18:42] [PASSED] pf_fails_no_payload
[13:18:42] [PASSED] pf_fails_bad_origin
[13:18:42] [PASSED] pf_fails_bad_type
[13:18:42] [PASSED] pf_txn_reports_error
[13:18:42] [PASSED] pf_txn_sends_pf2guc
[13:18:42] [PASSED] pf_sends_pf2guc
[13:18:42] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:18:42] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:18:42] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:18:42] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:18:42] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:18:42] ==================== [PASSED] pf_relay =====================
[13:18:42] ================== vf_relay (3 subtests) ===================
[13:18:42] [PASSED] vf_rejects_guc2vf_too_short
[13:18:42] [PASSED] vf_rejects_guc2vf_too_long
[13:18:42] [PASSED] vf_rejects_guc2vf_no_payload
[13:18:42] ==================== [PASSED] vf_relay =====================
[13:18:42] ================ pf_gt_config (9 subtests) =================
[13:18:42] [PASSED] fair_contexts_1vf
[13:18:42] [PASSED] fair_doorbells_1vf
[13:18:42] [PASSED] fair_ggtt_1vf
[13:18:42] ====================== fair_vram_1vf ======================
[13:18:42] [PASSED] 3.50 GiB
[13:18:42] [PASSED] 11.5 GiB
[13:18:42] [PASSED] 15.5 GiB
[13:18:42] [PASSED] 31.5 GiB
[13:18:42] [PASSED] 63.5 GiB
[13:18:42] [PASSED] 1.91 GiB
[13:18:42] ================== [PASSED] fair_vram_1vf ==================
[13:18:42] ================ fair_vram_1vf_admin_only =================
[13:18:42] [PASSED] 3.50 GiB
[13:18:42] [PASSED] 11.5 GiB
[13:18:42] [PASSED] 15.5 GiB
[13:18:42] [PASSED] 31.5 GiB
[13:18:42] [PASSED] 63.5 GiB
[13:18:42] [PASSED] 1.91 GiB
[13:18:42] ============ [PASSED] fair_vram_1vf_admin_only =============
[13:18:42] ====================== fair_contexts ======================
[13:18:42] [PASSED] 1 VF
[13:18:42] [PASSED] 2 VFs
[13:18:42] [PASSED] 3 VFs
[13:18:42] [PASSED] 4 VFs
[13:18:42] [PASSED] 5 VFs
[13:18:42] [PASSED] 6 VFs
[13:18:42] [PASSED] 7 VFs
[13:18:42] [PASSED] 8 VFs
[13:18:42] [PASSED] 9 VFs
[13:18:42] [PASSED] 10 VFs
[13:18:42] [PASSED] 11 VFs
[13:18:42] [PASSED] 12 VFs
[13:18:42] [PASSED] 13 VFs
[13:18:42] [PASSED] 14 VFs
[13:18:42] [PASSED] 15 VFs
[13:18:42] [PASSED] 16 VFs
[13:18:42] [PASSED] 17 VFs
[13:18:42] [PASSED] 18 VFs
[13:18:42] [PASSED] 19 VFs
[13:18:42] [PASSED] 20 VFs
[13:18:42] [PASSED] 21 VFs
[13:18:42] [PASSED] 22 VFs
[13:18:42] [PASSED] 23 VFs
[13:18:42] [PASSED] 24 VFs
[13:18:42] [PASSED] 25 VFs
[13:18:42] [PASSED] 26 VFs
[13:18:42] [PASSED] 27 VFs
[13:18:42] [PASSED] 28 VFs
[13:18:42] [PASSED] 29 VFs
[13:18:42] [PASSED] 30 VFs
[13:18:42] [PASSED] 31 VFs
[13:18:42] [PASSED] 32 VFs
[13:18:42] [PASSED] 33 VFs
[13:18:42] [PASSED] 34 VFs
[13:18:42] [PASSED] 35 VFs
[13:18:42] [PASSED] 36 VFs
[13:18:42] [PASSED] 37 VFs
[13:18:42] [PASSED] 38 VFs
[13:18:42] [PASSED] 39 VFs
[13:18:42] [PASSED] 40 VFs
[13:18:42] [PASSED] 41 VFs
[13:18:42] [PASSED] 42 VFs
[13:18:42] [PASSED] 43 VFs
[13:18:42] [PASSED] 44 VFs
[13:18:42] [PASSED] 45 VFs
[13:18:42] [PASSED] 46 VFs
[13:18:42] [PASSED] 47 VFs
[13:18:42] [PASSED] 48 VFs
[13:18:42] [PASSED] 49 VFs
[13:18:42] [PASSED] 50 VFs
[13:18:42] [PASSED] 51 VFs
[13:18:42] [PASSED] 52 VFs
[13:18:42] [PASSED] 53 VFs
[13:18:42] [PASSED] 54 VFs
[13:18:42] [PASSED] 55 VFs
[13:18:42] [PASSED] 56 VFs
[13:18:42] [PASSED] 57 VFs
[13:18:42] [PASSED] 58 VFs
[13:18:42] [PASSED] 59 VFs
[13:18:42] [PASSED] 60 VFs
[13:18:42] [PASSED] 61 VFs
[13:18:42] [PASSED] 62 VFs
[13:18:42] [PASSED] 63 VFs
[13:18:42] ================== [PASSED] fair_contexts ==================
[13:18:42] ===================== fair_doorbells ======================
[13:18:42] [PASSED] 1 VF
[13:18:42] [PASSED] 2 VFs
[13:18:42] [PASSED] 3 VFs
[13:18:42] [PASSED] 4 VFs
[13:18:42] [PASSED] 5 VFs
[13:18:42] [PASSED] 6 VFs
[13:18:42] [PASSED] 7 VFs
[13:18:42] [PASSED] 8 VFs
[13:18:42] [PASSED] 9 VFs
[13:18:42] [PASSED] 10 VFs
[13:18:42] [PASSED] 11 VFs
[13:18:42] [PASSED] 12 VFs
[13:18:42] [PASSED] 13 VFs
[13:18:42] [PASSED] 14 VFs
[13:18:42] [PASSED] 15 VFs
[13:18:42] [PASSED] 16 VFs
[13:18:42] [PASSED] 17 VFs
[13:18:42] [PASSED] 18 VFs
[13:18:42] [PASSED] 19 VFs
[13:18:42] [PASSED] 20 VFs
[13:18:42] [PASSED] 21 VFs
[13:18:42] [PASSED] 22 VFs
[13:18:42] [PASSED] 23 VFs
[13:18:42] [PASSED] 24 VFs
[13:18:42] [PASSED] 25 VFs
[13:18:42] [PASSED] 26 VFs
[13:18:42] [PASSED] 27 VFs
[13:18:42] [PASSED] 28 VFs
[13:18:42] [PASSED] 29 VFs
[13:18:42] [PASSED] 30 VFs
[13:18:42] [PASSED] 31 VFs
[13:18:42] [PASSED] 32 VFs
[13:18:42] [PASSED] 33 VFs
[13:18:42] [PASSED] 34 VFs
[13:18:42] [PASSED] 35 VFs
[13:18:42] [PASSED] 36 VFs
[13:18:42] [PASSED] 37 VFs
[13:18:42] [PASSED] 38 VFs
[13:18:42] [PASSED] 39 VFs
[13:18:42] [PASSED] 40 VFs
[13:18:42] [PASSED] 41 VFs
[13:18:42] [PASSED] 42 VFs
[13:18:42] [PASSED] 43 VFs
[13:18:42] [PASSED] 44 VFs
[13:18:42] [PASSED] 45 VFs
[13:18:42] [PASSED] 46 VFs
[13:18:42] [PASSED] 47 VFs
[13:18:42] [PASSED] 48 VFs
[13:18:42] [PASSED] 49 VFs
[13:18:42] [PASSED] 50 VFs
[13:18:42] [PASSED] 51 VFs
[13:18:42] [PASSED] 52 VFs
[13:18:42] [PASSED] 53 VFs
[13:18:42] [PASSED] 54 VFs
[13:18:42] [PASSED] 55 VFs
[13:18:42] [PASSED] 56 VFs
[13:18:42] [PASSED] 57 VFs
[13:18:42] [PASSED] 58 VFs
[13:18:42] [PASSED] 59 VFs
[13:18:42] [PASSED] 60 VFs
[13:18:42] [PASSED] 61 VFs
[13:18:42] [PASSED] 62 VFs
[13:18:42] [PASSED] 63 VFs
[13:18:42] ================= [PASSED] fair_doorbells ==================
[13:18:42] ======================== fair_ggtt ========================
[13:18:42] [PASSED] 1 VF
[13:18:42] [PASSED] 2 VFs
[13:18:42] [PASSED] 3 VFs
[13:18:42] [PASSED] 4 VFs
[13:18:42] [PASSED] 5 VFs
[13:18:42] [PASSED] 6 VFs
[13:18:42] [PASSED] 7 VFs
[13:18:42] [PASSED] 8 VFs
[13:18:42] [PASSED] 9 VFs
[13:18:42] [PASSED] 10 VFs
[13:18:42] [PASSED] 11 VFs
[13:18:42] [PASSED] 12 VFs
[13:18:42] [PASSED] 13 VFs
[13:18:42] [PASSED] 14 VFs
[13:18:42] [PASSED] 15 VFs
[13:18:42] [PASSED] 16 VFs
[13:18:42] [PASSED] 17 VFs
[13:18:42] [PASSED] 18 VFs
[13:18:42] [PASSED] 19 VFs
[13:18:42] [PASSED] 20 VFs
[13:18:42] [PASSED] 21 VFs
[13:18:42] [PASSED] 22 VFs
[13:18:42] [PASSED] 23 VFs
[13:18:42] [PASSED] 24 VFs
[13:18:42] [PASSED] 25 VFs
[13:18:42] [PASSED] 26 VFs
[13:18:42] [PASSED] 27 VFs
[13:18:42] [PASSED] 28 VFs
[13:18:42] [PASSED] 29 VFs
[13:18:42] [PASSED] 30 VFs
[13:18:42] [PASSED] 31 VFs
[13:18:42] [PASSED] 32 VFs
[13:18:42] [PASSED] 33 VFs
[13:18:42] [PASSED] 34 VFs
[13:18:42] [PASSED] 35 VFs
[13:18:42] [PASSED] 36 VFs
[13:18:42] [PASSED] 37 VFs
[13:18:42] [PASSED] 38 VFs
[13:18:42] [PASSED] 39 VFs
[13:18:42] [PASSED] 40 VFs
[13:18:42] [PASSED] 41 VFs
[13:18:42] [PASSED] 42 VFs
[13:18:42] [PASSED] 43 VFs
[13:18:42] [PASSED] 44 VFs
[13:18:42] [PASSED] 45 VFs
[13:18:42] [PASSED] 46 VFs
[13:18:42] [PASSED] 47 VFs
[13:18:42] [PASSED] 48 VFs
[13:18:42] [PASSED] 49 VFs
[13:18:42] [PASSED] 50 VFs
[13:18:42] [PASSED] 51 VFs
[13:18:42] [PASSED] 52 VFs
[13:18:42] [PASSED] 53 VFs
[13:18:42] [PASSED] 54 VFs
[13:18:42] [PASSED] 55 VFs
[13:18:42] [PASSED] 56 VFs
[13:18:42] [PASSED] 57 VFs
[13:18:42] [PASSED] 58 VFs
[13:18:42] [PASSED] 59 VFs
[13:18:42] [PASSED] 60 VFs
[13:18:42] [PASSED] 61 VFs
[13:18:42] [PASSED] 62 VFs
[13:18:42] [PASSED] 63 VFs
[13:18:42] ==================== [PASSED] fair_ggtt ====================
[13:18:42] ======================== fair_vram ========================
[13:18:42] [PASSED] 1 VF
[13:18:42] [PASSED] 2 VFs
[13:18:42] [PASSED] 3 VFs
[13:18:42] [PASSED] 4 VFs
[13:18:42] [PASSED] 5 VFs
[13:18:42] [PASSED] 6 VFs
[13:18:42] [PASSED] 7 VFs
[13:18:42] [PASSED] 8 VFs
[13:18:42] [PASSED] 9 VFs
[13:18:42] [PASSED] 10 VFs
[13:18:42] [PASSED] 11 VFs
[13:18:42] [PASSED] 12 VFs
[13:18:42] [PASSED] 13 VFs
[13:18:42] [PASSED] 14 VFs
[13:18:42] [PASSED] 15 VFs
[13:18:42] [PASSED] 16 VFs
[13:18:42] [PASSED] 17 VFs
[13:18:42] [PASSED] 18 VFs
[13:18:42] [PASSED] 19 VFs
[13:18:42] [PASSED] 20 VFs
[13:18:42] [PASSED] 21 VFs
[13:18:42] [PASSED] 22 VFs
[13:18:42] [PASSED] 23 VFs
[13:18:42] [PASSED] 24 VFs
[13:18:42] [PASSED] 25 VFs
[13:18:42] [PASSED] 26 VFs
[13:18:42] [PASSED] 27 VFs
[13:18:42] [PASSED] 28 VFs
[13:18:42] [PASSED] 29 VFs
[13:18:42] [PASSED] 30 VFs
[13:18:42] [PASSED] 31 VFs
[13:18:42] [PASSED] 32 VFs
[13:18:42] [PASSED] 33 VFs
[13:18:42] [PASSED] 34 VFs
[13:18:42] [PASSED] 35 VFs
[13:18:42] [PASSED] 36 VFs
[13:18:42] [PASSED] 37 VFs
[13:18:42] [PASSED] 38 VFs
[13:18:42] [PASSED] 39 VFs
[13:18:42] [PASSED] 40 VFs
[13:18:42] [PASSED] 41 VFs
[13:18:42] [PASSED] 42 VFs
[13:18:42] [PASSED] 43 VFs
[13:18:42] [PASSED] 44 VFs
[13:18:42] [PASSED] 45 VFs
[13:18:42] [PASSED] 46 VFs
[13:18:42] [PASSED] 47 VFs
[13:18:42] [PASSED] 48 VFs
[13:18:42] [PASSED] 49 VFs
[13:18:42] [PASSED] 50 VFs
[13:18:42] [PASSED] 51 VFs
[13:18:42] [PASSED] 52 VFs
[13:18:42] [PASSED] 53 VFs
[13:18:42] [PASSED] 54 VFs
[13:18:42] [PASSED] 55 VFs
[13:18:42] [PASSED] 56 VFs
[13:18:42] [PASSED] 57 VFs
[13:18:42] [PASSED] 58 VFs
[13:18:42] [PASSED] 59 VFs
[13:18:42] [PASSED] 60 VFs
[13:18:42] [PASSED] 61 VFs
[13:18:42] [PASSED] 62 VFs
[13:18:42] [PASSED] 63 VFs
[13:18:42] ==================== [PASSED] fair_vram ====================
[13:18:42] ================== [PASSED] pf_gt_config ===================
[13:18:42] ===================== lmtt (1 subtest) =====================
[13:18:42] ======================== test_ops =========================
[13:18:42] [PASSED] 2-level
[13:18:42] [PASSED] multi-level
[13:18:42] ==================== [PASSED] test_ops =====================
[13:18:42] ====================== [PASSED] lmtt =======================
[13:18:42] ================= sriov_packet (1 subtest) =================
[13:18:42] [PASSED] test_descriptor_init
[13:18:42] ================== [PASSED] sriov_packet ===================
[13:18:42] ================= pf_service (11 subtests) =================
[13:18:42] [PASSED] pf_negotiate_any
[13:18:42] [PASSED] pf_negotiate_base_match
[13:18:42] [PASSED] pf_negotiate_base_newer
[13:18:42] [PASSED] pf_negotiate_base_next
[13:18:42] [SKIPPED] pf_negotiate_base_older (no older minor)
[13:18:42] [PASSED] pf_negotiate_base_prev
[13:18:42] [PASSED] pf_negotiate_latest_match
[13:18:42] [PASSED] pf_negotiate_latest_newer
[13:18:42] [PASSED] pf_negotiate_latest_next
[13:18:42] [SKIPPED] pf_negotiate_latest_older (no older minor)
[13:18:42] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[13:18:42] =================== [PASSED] pf_service ====================
[13:18:42] ================= xe_guc_g2g (2 subtests) ==================
[13:18:42] ============== xe_live_guc_g2g_kunit_default ==============
[13:18:42] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[13:18:42] ============== xe_live_guc_g2g_kunit_allmem ===============
[13:18:42] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[13:18:42] =================== [SKIPPED] xe_guc_g2g ===================
[13:18:42] =================== xe_mocs (2 subtests) ===================
[13:18:42] ================ xe_live_mocs_kernel_kunit ================
[13:18:42] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[13:18:42] ================ xe_live_mocs_reset_kunit =================
[13:18:42] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[13:18:42] ==================== [SKIPPED] xe_mocs =====================
[13:18:42] ================= xe_migrate (2 subtests) ==================
[13:18:42] ================= xe_migrate_sanity_kunit =================
[13:18:42] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[13:18:42] ================== xe_validate_ccs_kunit ==================
[13:18:42] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[13:18:42] =================== [SKIPPED] xe_migrate ===================
[13:18:42] ================== xe_dma_buf (1 subtest) ==================
[13:18:42] ==================== xe_dma_buf_kunit =====================
[13:18:42] ================ [SKIPPED] xe_dma_buf_kunit ================
[13:18:42] =================== [SKIPPED] xe_dma_buf ===================
[13:18:42] ================= xe_bo_shrink (1 subtest) =================
[13:18:42] =================== xe_bo_shrink_kunit ====================
[13:18:42] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[13:18:42] ================== [SKIPPED] xe_bo_shrink ==================
[13:18:42] ==================== xe_bo (2 subtests) ====================
[13:18:42] ================== xe_ccs_migrate_kunit ===================
[13:18:42] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[13:18:42] ==================== xe_bo_evict_kunit ====================
[13:18:42] =============== [SKIPPED] xe_bo_evict_kunit ================
[13:18:42] ===================== [SKIPPED] xe_bo ======================
[13:18:42] ==================== args (13 subtests) ====================
[13:18:42] [PASSED] count_args_test
[13:18:42] [PASSED] call_args_example
[13:18:42] [PASSED] call_args_test
[13:18:42] [PASSED] drop_first_arg_example
[13:18:42] [PASSED] drop_first_arg_test
[13:18:42] [PASSED] first_arg_example
[13:18:42] [PASSED] first_arg_test
[13:18:42] [PASSED] last_arg_example
[13:18:42] [PASSED] last_arg_test
[13:18:42] [PASSED] pick_arg_example
[13:18:42] [PASSED] if_args_example
[13:18:42] [PASSED] if_args_test
[13:18:42] [PASSED] sep_comma_example
[13:18:42] ====================== [PASSED] args =======================
[13:18:42] =================== xe_pci (3 subtests) ====================
[13:18:42] ==================== check_graphics_ip ====================
[13:18:42] [PASSED] 12.00 Xe_LP
[13:18:42] [PASSED] 12.10 Xe_LP+
[13:18:42] [PASSED] 12.55 Xe_HPG
[13:18:42] [PASSED] 12.60 Xe_HPC
[13:18:42] [PASSED] 12.70 Xe_LPG
[13:18:42] [PASSED] 12.71 Xe_LPG
[13:18:42] [PASSED] 12.74 Xe_LPG+
[13:18:42] [PASSED] 20.01 Xe2_HPG
[13:18:42] [PASSED] 20.02 Xe2_HPG
[13:18:42] [PASSED] 20.04 Xe2_LPG
[13:18:42] [PASSED] 30.00 Xe3_LPG
[13:18:42] [PASSED] 30.01 Xe3_LPG
[13:18:42] [PASSED] 30.03 Xe3_LPG
[13:18:42] [PASSED] 30.04 Xe3_LPG
[13:18:42] [PASSED] 30.05 Xe3_LPG
[13:18:42] [PASSED] 35.10 Xe3p_LPG
[13:18:42] [PASSED] 35.11 Xe3p_XPC
[13:18:42] ================ [PASSED] check_graphics_ip ================
[13:18:42] ===================== check_media_ip ======================
[13:18:42] [PASSED] 12.00 Xe_M
[13:18:42] [PASSED] 12.55 Xe_HPM
[13:18:42] [PASSED] 13.00 Xe_LPM+
[13:18:42] [PASSED] 13.01 Xe2_HPM
[13:18:42] [PASSED] 20.00 Xe2_LPM
[13:18:42] [PASSED] 30.00 Xe3_LPM
[13:18:42] [PASSED] 30.02 Xe3_LPM
[13:18:42] [PASSED] 35.00 Xe3p_LPM
[13:18:42] [PASSED] 35.03 Xe3p_HPM
[13:18:42] ================= [PASSED] check_media_ip ==================
[13:18:42] =================== check_platform_desc ===================
[13:18:42] [PASSED] 0x9A60 (TIGERLAKE)
[13:18:42] [PASSED] 0x9A68 (TIGERLAKE)
[13:18:42] [PASSED] 0x9A70 (TIGERLAKE)
[13:18:42] [PASSED] 0x9A40 (TIGERLAKE)
[13:18:42] [PASSED] 0x9A49 (TIGERLAKE)
[13:18:42] [PASSED] 0x9A59 (TIGERLAKE)
[13:18:42] [PASSED] 0x9A78 (TIGERLAKE)
[13:18:42] [PASSED] 0x9AC0 (TIGERLAKE)
[13:18:42] [PASSED] 0x9AC9 (TIGERLAKE)
[13:18:42] [PASSED] 0x9AD9 (TIGERLAKE)
[13:18:42] [PASSED] 0x9AF8 (TIGERLAKE)
[13:18:42] [PASSED] 0x4C80 (ROCKETLAKE)
[13:18:42] [PASSED] 0x4C8A (ROCKETLAKE)
[13:18:42] [PASSED] 0x4C8B (ROCKETLAKE)
[13:18:42] [PASSED] 0x4C8C (ROCKETLAKE)
[13:18:42] [PASSED] 0x4C90 (ROCKETLAKE)
[13:18:42] [PASSED] 0x4C9A (ROCKETLAKE)
[13:18:42] [PASSED] 0x4680 (ALDERLAKE_S)
[13:18:42] [PASSED] 0x4682 (ALDERLAKE_S)
[13:18:42] [PASSED] 0x4688 (ALDERLAKE_S)
[13:18:42] [PASSED] 0x468A (ALDERLAKE_S)
[13:18:42] [PASSED] 0x468B (ALDERLAKE_S)
[13:18:42] [PASSED] 0x4690 (ALDERLAKE_S)
[13:18:42] [PASSED] 0x4692 (ALDERLAKE_S)
[13:18:42] [PASSED] 0x4693 (ALDERLAKE_S)
[13:18:42] [PASSED] 0x46A0 (ALDERLAKE_P)
[13:18:42] [PASSED] 0x46A1 (ALDERLAKE_P)
[13:18:42] [PASSED] 0x46A2 (ALDERLAKE_P)
[13:18:42] [PASSED] 0x46A3 (ALDERLAKE_P)
[13:18:42] [PASSED] 0x46A6 (ALDERLAKE_P)
[13:18:42] [PASSED] 0x46A8 (ALDERLAKE_P)
[13:18:42] [PASSED] 0x46AA (ALDERLAKE_P)
[13:18:42] [PASSED] 0x462A (ALDERLAKE_P)
[13:18:42] [PASSED] 0x4626 (ALDERLAKE_P)
[13:18:42] [PASSED] 0x4628 (ALDERLAKE_P)
[13:18:42] [PASSED] 0x46B0 (ALDERLAKE_P)
[13:18:42] [PASSED] 0x46B1 (ALDERLAKE_P)
[13:18:42] [PASSED] 0x46B2 (ALDERLAKE_P)
[13:18:42] [PASSED] 0x46B3 (ALDERLAKE_P)
[13:18:42] [PASSED] 0x46C0 (ALDERLAKE_P)
[13:18:42] [PASSED] 0x46C1 (ALDERLAKE_P)
[13:18:42] [PASSED] 0x46C2 (ALDERLAKE_P)
[13:18:42] [PASSED] 0x46C3 (ALDERLAKE_P)
[13:18:42] [PASSED] 0x46D0 (ALDERLAKE_N)
[13:18:42] [PASSED] 0x46D1 (ALDERLAKE_N)
[13:18:42] [PASSED] 0x46D2 (ALDERLAKE_N)
[13:18:42] [PASSED] 0x46D3 (ALDERLAKE_N)
[13:18:42] [PASSED] 0x46D4 (ALDERLAKE_N)
[13:18:42] [PASSED] 0xA721 (ALDERLAKE_P)
[13:18:42] [PASSED] 0xA7A1 (ALDERLAKE_P)
[13:18:42] [PASSED] 0xA7A9 (ALDERLAKE_P)
[13:18:42] [PASSED] 0xA7AC (ALDERLAKE_P)
[13:18:42] [PASSED] 0xA7AD (ALDERLAKE_P)
[13:18:42] [PASSED] 0xA720 (ALDERLAKE_P)
[13:18:42] [PASSED] 0xA7A0 (ALDERLAKE_P)
[13:18:42] [PASSED] 0xA7A8 (ALDERLAKE_P)
[13:18:42] [PASSED] 0xA7AA (ALDERLAKE_P)
[13:18:42] [PASSED] 0xA7AB (ALDERLAKE_P)
[13:18:42] [PASSED] 0xA780 (ALDERLAKE_S)
[13:18:42] [PASSED] 0xA781 (ALDERLAKE_S)
[13:18:42] [PASSED] 0xA782 (ALDERLAKE_S)
[13:18:42] [PASSED] 0xA783 (ALDERLAKE_S)
[13:18:42] [PASSED] 0xA788 (ALDERLAKE_S)
[13:18:42] [PASSED] 0xA789 (ALDERLAKE_S)
[13:18:42] [PASSED] 0xA78A (ALDERLAKE_S)
[13:18:42] [PASSED] 0xA78B (ALDERLAKE_S)
[13:18:42] [PASSED] 0x4905 (DG1)
[13:18:42] [PASSED] 0x4906 (DG1)
[13:18:42] [PASSED] 0x4907 (DG1)
[13:18:42] [PASSED] 0x4908 (DG1)
[13:18:42] [PASSED] 0x4909 (DG1)
[13:18:42] [PASSED] 0x56C0 (DG2)
[13:18:42] [PASSED] 0x56C2 (DG2)
[13:18:42] [PASSED] 0x56C1 (DG2)
[13:18:42] [PASSED] 0x7D51 (METEORLAKE)
[13:18:42] [PASSED] 0x7DD1 (METEORLAKE)
[13:18:42] [PASSED] 0x7D41 (METEORLAKE)
[13:18:42] [PASSED] 0x7D67 (METEORLAKE)
[13:18:42] [PASSED] 0xB640 (METEORLAKE)
[13:18:42] [PASSED] 0x56A0 (DG2)
[13:18:42] [PASSED] 0x56A1 (DG2)
[13:18:42] [PASSED] 0x56A2 (DG2)
[13:18:42] [PASSED] 0x56BE (DG2)
[13:18:42] [PASSED] 0x56BF (DG2)
[13:18:42] [PASSED] 0x5690 (DG2)
[13:18:42] [PASSED] 0x5691 (DG2)
[13:18:42] [PASSED] 0x5692 (DG2)
[13:18:42] [PASSED] 0x56A5 (DG2)
[13:18:42] [PASSED] 0x56A6 (DG2)
[13:18:42] [PASSED] 0x56B0 (DG2)
[13:18:42] [PASSED] 0x56B1 (DG2)
[13:18:42] [PASSED] 0x56BA (DG2)
[13:18:42] [PASSED] 0x56BB (DG2)
[13:18:42] [PASSED] 0x56BC (DG2)
[13:18:42] [PASSED] 0x56BD (DG2)
[13:18:42] [PASSED] 0x5693 (DG2)
[13:18:42] [PASSED] 0x5694 (DG2)
[13:18:42] [PASSED] 0x5695 (DG2)
[13:18:42] [PASSED] 0x56A3 (DG2)
[13:18:42] [PASSED] 0x56A4 (DG2)
[13:18:42] [PASSED] 0x56B2 (DG2)
[13:18:42] [PASSED] 0x56B3 (DG2)
[13:18:42] [PASSED] 0x5696 (DG2)
[13:18:42] [PASSED] 0x5697 (DG2)
[13:18:42] [PASSED] 0xB69 (PVC)
[13:18:42] [PASSED] 0xB6E (PVC)
[13:18:42] [PASSED] 0xBD4 (PVC)
[13:18:42] [PASSED] 0xBD5 (PVC)
[13:18:42] [PASSED] 0xBD6 (PVC)
[13:18:42] [PASSED] 0xBD7 (PVC)
[13:18:42] [PASSED] 0xBD8 (PVC)
[13:18:42] [PASSED] 0xBD9 (PVC)
[13:18:42] [PASSED] 0xBDA (PVC)
[13:18:42] [PASSED] 0xBDB (PVC)
[13:18:42] [PASSED] 0xBE0 (PVC)
[13:18:42] [PASSED] 0xBE1 (PVC)
[13:18:42] [PASSED] 0xBE5 (PVC)
[13:18:42] [PASSED] 0x7D40 (METEORLAKE)
[13:18:42] [PASSED] 0x7D45 (METEORLAKE)
[13:18:42] [PASSED] 0x7D55 (METEORLAKE)
[13:18:42] [PASSED] 0x7D60 (METEORLAKE)
[13:18:42] [PASSED] 0x7DD5 (METEORLAKE)
[13:18:42] [PASSED] 0x6420 (LUNARLAKE)
[13:18:42] [PASSED] 0x64A0 (LUNARLAKE)
[13:18:42] [PASSED] 0x64B0 (LUNARLAKE)
[13:18:42] [PASSED] 0xE202 (BATTLEMAGE)
[13:18:42] [PASSED] 0xE209 (BATTLEMAGE)
[13:18:42] [PASSED] 0xE20B (BATTLEMAGE)
[13:18:42] [PASSED] 0xE20C (BATTLEMAGE)
[13:18:42] [PASSED] 0xE20D (BATTLEMAGE)
[13:18:42] [PASSED] 0xE210 (BATTLEMAGE)
[13:18:42] [PASSED] 0xE211 (BATTLEMAGE)
[13:18:42] [PASSED] 0xE212 (BATTLEMAGE)
[13:18:42] [PASSED] 0xE216 (BATTLEMAGE)
[13:18:42] [PASSED] 0xE220 (BATTLEMAGE)
[13:18:42] [PASSED] 0xE221 (BATTLEMAGE)
[13:18:42] [PASSED] 0xE222 (BATTLEMAGE)
[13:18:42] [PASSED] 0xE223 (BATTLEMAGE)
[13:18:42] [PASSED] 0xB080 (PANTHERLAKE)
[13:18:42] [PASSED] 0xB081 (PANTHERLAKE)
[13:18:42] [PASSED] 0xB082 (PANTHERLAKE)
[13:18:42] [PASSED] 0xB083 (PANTHERLAKE)
[13:18:42] [PASSED] 0xB084 (PANTHERLAKE)
[13:18:42] [PASSED] 0xB085 (PANTHERLAKE)
[13:18:42] [PASSED] 0xB086 (PANTHERLAKE)
[13:18:42] [PASSED] 0xB087 (PANTHERLAKE)
[13:18:42] [PASSED] 0xB08F (PANTHERLAKE)
[13:18:42] [PASSED] 0xB090 (PANTHERLAKE)
[13:18:42] [PASSED] 0xB0A0 (PANTHERLAKE)
[13:18:42] [PASSED] 0xB0B0 (PANTHERLAKE)
[13:18:42] [PASSED] 0xFD80 (PANTHERLAKE)
[13:18:42] [PASSED] 0xFD81 (PANTHERLAKE)
[13:18:42] [PASSED] 0xD740 (NOVALAKE_S)
[13:18:42] [PASSED] 0xD741 (NOVALAKE_S)
[13:18:42] [PASSED] 0xD742 (NOVALAKE_S)
[13:18:42] [PASSED] 0xD743 (NOVALAKE_S)
[13:18:42] [PASSED] 0xD745 (NOVALAKE_S)
[13:18:42] [PASSED] 0xD74A (NOVALAKE_S)
[13:18:42] [PASSED] 0xD74B (NOVALAKE_S)
[13:18:42] [PASSED] 0x674C (CRESCENTISLAND)
[13:18:42] [PASSED] 0x674D (CRESCENTISLAND)
[13:18:42] [PASSED] 0x674E (CRESCENTISLAND)
[13:18:42] [PASSED] 0x674F (CRESCENTISLAND)
[13:18:42] [PASSED] 0x6750 (CRESCENTISLAND)
[13:18:42] [PASSED] 0xD750 (NOVALAKE_P)
[13:18:42] [PASSED] 0xD751 (NOVALAKE_P)
[13:18:42] [PASSED] 0xD752 (NOVALAKE_P)
[13:18:42] [PASSED] 0xD753 (NOVALAKE_P)
[13:18:42] [PASSED] 0xD754 (NOVALAKE_P)
[13:18:42] [PASSED] 0xD755 (NOVALAKE_P)
[13:18:42] [PASSED] 0xD756 (NOVALAKE_P)
[13:18:42] [PASSED] 0xD757 (NOVALAKE_P)
[13:18:42] [PASSED] 0xD75F (NOVALAKE_P)
[13:18:42] =============== [PASSED] check_platform_desc ===============
[13:18:42] ===================== [PASSED] xe_pci ======================
[13:18:42] ============= xe_rtp_tables_test (5 subtests) ==============
[13:18:42] ================== xe_rtp_table_gt_test ===================
[13:18:42] [PASSED] gt_was/14011060649
[13:18:42] [PASSED] gt_was/14011059788
[13:18:42] [PASSED] gt_was/14015795083
[13:18:42] [PASSED] gt_was/16021867713
[13:18:42] [PASSED] gt_was/14019449301
[13:18:42] [PASSED] gt_was/16028005424
[13:18:42] [PASSED] gt_was/14026578760
[13:18:42] [PASSED] gt_was/1409420604
[13:18:42] [PASSED] gt_was/1408615072
[13:18:42] [PASSED] gt_was/22010523718
[13:18:42] [PASSED] gt_was/14011006942
[13:18:42] [PASSED] gt_was/14014830051
[13:18:42] [PASSED] gt_was/18018781329
[13:18:42] [PASSED] gt_was/1509235366
[13:18:42] [PASSED] gt_was/18018781329
[13:18:42] [PASSED] gt_was/16016694945
[13:18:42] [PASSED] gt_was/14018575942
[13:18:42] [PASSED] gt_was/22016670082
[13:18:42] [PASSED] gt_was/22016670082
[13:18:42] [PASSED] gt_was/14017421178
[13:18:42] [PASSED] gt_was/16025250150
[13:18:42] [PASSED] gt_was/14021871409
[13:18:42] [PASSED] gt_was/16021865536
[13:18:42] [PASSED] gt_was/14021486841
[13:18:42] [PASSED] gt_was/14025160223
[13:18:42] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[13:18:42] [PASSED] gt_was/14025635424
[13:18:42] [PASSED] gt_was/16028005424
[13:18:42] ============== [PASSED] xe_rtp_table_gt_test ===============
[13:18:42] ================== xe_rtp_table_gt_test ===================
[13:18:42] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[13:18:42] [PASSED] gt_tunings/Tuning: 32B Access Enable
[13:18:42] [PASSED] gt_tunings/Tuning: L3 cache
[13:18:42] [PASSED] gt_tunings/Tuning: L3 cache - media
[13:18:42] [PASSED] gt_tunings/Tuning: Compression Overfetch
[13:18:42] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[13:18:42] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[13:18:42] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[13:18:42] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[13:18:42] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[13:18:42] [PASSED] gt_tunings/Tuning: Stateless compression control
[13:18:42] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[13:18:42] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[13:18:42] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[13:18:42] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[13:18:42] ============== [PASSED] xe_rtp_table_gt_test ===============
[13:18:42] ================== xe_rtp_table_oob_test ==================
[13:18:42] [PASSED] oob_was/1607983814
[13:18:42] [PASSED] oob_was/16010904313
[13:18:42] [PASSED] oob_was/18022495364
[13:18:42] [PASSED] oob_was/22012773006
[13:18:42] [PASSED] oob_was/14014475959
[13:18:42] [PASSED] oob_was/22011391025
[13:18:42] [PASSED] oob_was/22012727170
[13:18:42] [PASSED] oob_was/22012727685
[13:18:42] [PASSED] oob_was/22016596838
[13:18:42] [PASSED] oob_was/18020744125
[13:18:42] [PASSED] oob_was/1409600907
[13:18:42] [PASSED] oob_was/22014953428
[13:18:42] [PASSED] oob_was/16017236439
[13:18:42] [PASSED] oob_was/14019821291
[13:18:42] [PASSED] oob_was/14015076503
[13:18:42] [PASSED] oob_was/14018913170
[13:18:42] [PASSED] oob_was/14018094691
[13:18:42] [PASSED] oob_was/18024947630
[13:18:42] [PASSED] oob_was/16022287689
[13:18:42] [PASSED] oob_was/13011645652
[13:18:42] [PASSED] oob_was/14022293748
[13:18:42] [PASSED] oob_was/22019794406
[13:18:42] [PASSED] oob_was/22019338487
[13:18:42] [PASSED] oob_was/16023588340
[13:18:42] [PASSED] oob_was/14019789679
[13:18:42] [PASSED] oob_was/14022866841
[13:18:42] [PASSED] oob_was/16021333562
[13:18:42] [PASSED] oob_was/14016712196
[13:18:42] [PASSED] oob_was/14015568240
[13:18:42] [PASSED] oob_was/18013179988
[13:18:42] [PASSED] oob_was/1508761755
[13:18:42] [PASSED] oob_was/16023105232
[13:18:42] [PASSED] oob_was/16026508708
[13:18:42] [PASSED] oob_was/14020001231
[13:18:42] [PASSED] oob_was/16023683509
[13:18:42] [PASSED] oob_was/14025515070
[13:18:42] [PASSED] oob_was/15015404425_disable
[13:18:42] [PASSED] oob_was/16026007364
[13:18:42] [PASSED] oob_was/14020316580
[13:18:42] [PASSED] oob_was/14025883347
[13:18:42] [PASSED] oob_was/16029380221
[13:18:42] [PASSED] oob_was/22022079272
[13:18:42] [PASSED] oob_was/16029897822
[13:18:42] [PASSED] oob_was/14027054324
[13:18:42] ============== [PASSED] xe_rtp_table_oob_test ==============
[13:18:42] ================ xe_rtp_table_dev_oob_test ================
[13:18:42] [PASSED] device_oob_was/22010954014
[13:18:42] [PASSED] device_oob_was/15015404425
[13:18:42] [PASSED] device_oob_was/22019338487_display
[13:18:42] [PASSED] device_oob_was/14022085890
[13:18:42] [PASSED] device_oob_was/14026539277
[13:18:42] [PASSED] device_oob_was/14026633728
[13:18:42] [PASSED] device_oob_was/14026746987
[13:18:42] [PASSED] device_oob_was/14026779378
[13:18:42] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[13:18:42] ========== xe_rtp_table_missing_upper_bound_test ==========
[13:18:42] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[13:18:42] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[13:18:42] [PASSED] register_whitelist/1806527549
[13:18:42] [PASSED] register_whitelist/allow_read_ctx_timestamp
[13:18:42] [PASSED] register_whitelist/allow_read_queue_timestamp
[13:18:42] [PASSED] register_whitelist/16014440446
[13:18:42] [PASSED] register_whitelist/16017236439
[13:18:42] [PASSED] register_whitelist/16020183090
[13:18:42] [PASSED] register_whitelist/14024997852
[13:18:42] [PASSED] register_whitelist/14024997852
[13:18:42] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[13:18:42] =============== [PASSED] xe_rtp_tables_test ================
[13:18:42] =================== xe_rtp (3 subtests) ====================
[13:18:42] =================== xe_rtp_rules_tests ====================
[13:18:42] [PASSED] no
[13:18:42] [PASSED] yes
[13:18:42] [PASSED] no-and-no
[13:18:42] [PASSED] no-and-yes
[13:18:42] [PASSED] yes-and-no
[13:18:42] [PASSED] yes-and-yes
[13:18:42] [PASSED] no-or-no
[13:18:42] [PASSED] no-or-yes
[13:18:42] [PASSED] yes-or-no
[13:18:42] [PASSED] yes-or-yes
[13:18:42] [PASSED] no-yes-or-yes-no
[13:18:42] [PASSED] no-yes-or-yes-yes
[13:18:42] [PASSED] yes-yes-or-no-yes
[13:18:42] [PASSED] yes-yes-or-yes-yes
[13:18:42] [PASSED] no-no-or-yes-or-no
[13:18:42] [PASSED] or
[13:18:42] [PASSED] or-yes
[13:18:42] [PASSED] or-no
[13:18:42] [PASSED] yes-or
[13:18:42] [PASSED] no-or
[13:18:42] [PASSED] no-or-or-yes
[13:18:42] [PASSED] yes-or-or-no
[13:18:42] [PASSED] no-or-or-no
[13:18:42] [PASSED] missing-context-engine-class
[13:18:42] [PASSED] missing-context-engine-class-or-yes
[13:18:42] [PASSED] missing-context-engine-class-or-or-yes
[13:18:42] =============== [PASSED] xe_rtp_rules_tests ================
[13:18:42] =============== xe_rtp_process_to_sr_tests ================
[13:18:42] [PASSED] coalesce-same-reg
[13:18:42] [PASSED] coalesce-same-reg-literal-and-func
[13:18:42] [PASSED] no-match-no-add
[13:18:42] [PASSED] two-regs-two-entries
[13:18:42] [PASSED] clr-one-set-other
[13:18:42] [PASSED] set-field
[13:18:42] [PASSED] conflict-duplicate
[13:18:42] [PASSED] conflict-not-disjoint
[13:18:42] [PASSED] conflict-not-disjoint-literal-and-func
[13:18:42] [PASSED] conflict-reg-type
[13:18:42] [PASSED] bad-mcr-reg-forced-to-regular
[13:18:42] [PASSED] bad-regular-reg-forced-to-mcr
[13:18:42] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[13:18:42] ================== xe_rtp_process_tests ===================
[13:18:42] [PASSED] active1
[13:18:42] [PASSED] active2
[13:18:42] [PASSED] active-inactive
[13:18:42] [PASSED] inactive-active
[13:18:42] [PASSED] inactive-active-inactive
[13:18:42] [PASSED] inactive-inactive-inactive
[13:18:42] ============== [PASSED] xe_rtp_process_tests ===============
[13:18:42] ===================== [PASSED] xe_rtp ======================
[13:18:42] ==================== xe_wa (1 subtest) =====================
[13:18:42] ======================== xe_wa_gt =========================
[13:18:42] [PASSED] TIGERLAKE B0
[13:18:42] [PASSED] DG1 A0
[13:18:42] [PASSED] DG1 B0
[13:18:42] [PASSED] ALDERLAKE_S A0
[13:18:42] [PASSED] ALDERLAKE_S B0
[13:18:42] [PASSED] ALDERLAKE_S C0
[13:18:42] [PASSED] ALDERLAKE_S D0
[13:18:42] [PASSED] ALDERLAKE_P A0
[13:18:42] [PASSED] ALDERLAKE_P B0
[13:18:42] [PASSED] ALDERLAKE_P C0
[13:18:42] [PASSED] ALDERLAKE_S RPLS D0
[13:18:42] [PASSED] ALDERLAKE_P RPLU E0
[13:18:42] [PASSED] DG2 G10 C0
[13:18:42] [PASSED] DG2 G11 B1
[13:18:42] [PASSED] DG2 G12 A1
[13:18:42] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[13:18:42] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[13:18:42] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[13:18:42] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[13:18:42] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[13:18:42] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[13:18:42] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[13:18:42] ==================== [PASSED] xe_wa_gt =====================
[13:18:42] ====================== [PASSED] xe_wa ======================
[13:18:42] ============================================================
[13:18:42] Testing complete. Ran 786 tests: passed: 768, skipped: 18
[13:18:42] Elapsed time: 36.848s total, 4.409s configuring, 31.724s building, 0.675s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[13:18:43] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:18: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
[13:19:09] Starting KUnit Kernel (1/1)...
[13:19:09] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:19:09] ============ drm_test_pick_cmdline (2 subtests) ============
[13:19:09] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[13:19:09] =============== drm_test_pick_cmdline_named ===============
[13:19:09] [PASSED] NTSC
[13:19:09] [PASSED] NTSC-J
[13:19:09] [PASSED] PAL
[13:19:09] [PASSED] PAL-M
[13:19:09] =========== [PASSED] drm_test_pick_cmdline_named ===========
[13:19:09] ============== [PASSED] drm_test_pick_cmdline ==============
[13:19:09] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[13:19:09] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[13:19:09] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[13:19:09] =========== drm_validate_clone_mode (2 subtests) ===========
[13:19:09] ============== drm_test_check_in_clone_mode ===============
[13:19:09] [PASSED] in_clone_mode
[13:19:09] [PASSED] not_in_clone_mode
[13:19:09] ========== [PASSED] drm_test_check_in_clone_mode ===========
[13:19:09] =============== drm_test_check_valid_clones ===============
[13:19:09] [PASSED] not_in_clone_mode
[13:19:09] [PASSED] valid_clone
[13:19:09] [PASSED] invalid_clone
[13:19:09] =========== [PASSED] drm_test_check_valid_clones ===========
[13:19:09] ============= [PASSED] drm_validate_clone_mode =============
[13:19:09] ============= drm_validate_modeset (1 subtest) =============
[13:19:09] [PASSED] drm_test_check_connector_changed_modeset
[13:19:09] ============== [PASSED] drm_validate_modeset ===============
[13:19:09] ====== drm_test_bridge_get_current_state (1 subtest) =======
[13:19:09] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[13:19:09] ======== [PASSED] drm_test_bridge_get_current_state ========
[13:19:09] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[13:19:09] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[13:19:09] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[13:19:09] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[13:19:09] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[13:19:09] ============== drm_bridge_alloc (2 subtests) ===============
[13:19:09] [PASSED] drm_test_drm_bridge_alloc_basic
[13:19:09] [PASSED] drm_test_drm_bridge_alloc_get_put
[13:19:09] ================ [PASSED] drm_bridge_alloc =================
[13:19:09] ============= drm_bridge_bus_fmt (5 subtests) ==============
[13:19:09] [PASSED] drm_test_bridge_rgb_yuv_rgb
[13:19:09] [PASSED] drm_test_bridge_must_convert_to_yuv444
[13:19:09] [PASSED] drm_test_bridge_hdmi_auto_rgb
[13:19:09] [PASSED] drm_test_bridge_auto_first
[13:19:09] [PASSED] drm_test_bridge_rgb_yuv_no_path
[13:19:09] =============== [PASSED] drm_bridge_bus_fmt ================
[13:19:09] ============= drm_cmdline_parser (40 subtests) =============
[13:19:09] [PASSED] drm_test_cmdline_force_d_only
[13:19:09] [PASSED] drm_test_cmdline_force_D_only_dvi
[13:19:09] [PASSED] drm_test_cmdline_force_D_only_hdmi
[13:19:09] [PASSED] drm_test_cmdline_force_D_only_not_digital
[13:19:09] [PASSED] drm_test_cmdline_force_e_only
[13:19:09] [PASSED] drm_test_cmdline_res
[13:19:09] [PASSED] drm_test_cmdline_res_vesa
[13:19:09] [PASSED] drm_test_cmdline_res_vesa_rblank
[13:19:09] [PASSED] drm_test_cmdline_res_rblank
[13:19:09] [PASSED] drm_test_cmdline_res_bpp
[13:19:09] [PASSED] drm_test_cmdline_res_refresh
[13:19:09] [PASSED] drm_test_cmdline_res_bpp_refresh
[13:19:09] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[13:19:09] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[13:19:09] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[13:19:09] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[13:19:09] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[13:19:09] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[13:19:09] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[13:19:09] [PASSED] drm_test_cmdline_res_margins_force_on
[13:19:09] [PASSED] drm_test_cmdline_res_vesa_margins
[13:19:09] [PASSED] drm_test_cmdline_name
[13:19:09] [PASSED] drm_test_cmdline_name_bpp
[13:19:09] [PASSED] drm_test_cmdline_name_option
[13:19:09] [PASSED] drm_test_cmdline_name_bpp_option
[13:19:09] [PASSED] drm_test_cmdline_rotate_0
[13:19:09] [PASSED] drm_test_cmdline_rotate_90
[13:19:09] [PASSED] drm_test_cmdline_rotate_180
[13:19:09] [PASSED] drm_test_cmdline_rotate_270
[13:19:09] [PASSED] drm_test_cmdline_hmirror
[13:19:09] [PASSED] drm_test_cmdline_vmirror
[13:19:09] [PASSED] drm_test_cmdline_margin_options
[13:19:09] [PASSED] drm_test_cmdline_multiple_options
[13:19:09] [PASSED] drm_test_cmdline_bpp_extra_and_option
[13:19:09] [PASSED] drm_test_cmdline_extra_and_option
[13:19:09] [PASSED] drm_test_cmdline_freestanding_options
[13:19:09] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[13:19:09] [PASSED] drm_test_cmdline_panel_orientation
[13:19:09] ================ drm_test_cmdline_invalid =================
[13:19:09] [PASSED] margin_only
[13:19:09] [PASSED] interlace_only
[13:19:09] [PASSED] res_missing_x
[13:19:09] [PASSED] res_missing_y
[13:19:09] [PASSED] res_bad_y
[13:19:09] [PASSED] res_missing_y_bpp
[13:19:09] [PASSED] res_bad_bpp
[13:19:09] [PASSED] res_bad_refresh
[13:19:09] [PASSED] res_bpp_refresh_force_on_off
[13:19:09] [PASSED] res_invalid_mode
[13:19:09] [PASSED] res_bpp_wrong_place_mode
[13:19:09] [PASSED] name_bpp_refresh
[13:19:09] [PASSED] name_refresh
[13:19:09] [PASSED] name_refresh_wrong_mode
[13:19:09] [PASSED] name_refresh_invalid_mode
[13:19:09] [PASSED] rotate_multiple
[13:19:09] [PASSED] rotate_invalid_val
[13:19:09] [PASSED] rotate_truncated
[13:19:09] [PASSED] invalid_option
[13:19:09] [PASSED] invalid_tv_option
[13:19:09] [PASSED] truncated_tv_option
[13:19:09] ============ [PASSED] drm_test_cmdline_invalid =============
[13:19:09] =============== drm_test_cmdline_tv_options ===============
[13:19:09] [PASSED] NTSC
[13:19:09] [PASSED] NTSC_443
[13:19:09] [PASSED] NTSC_J
[13:19:09] [PASSED] PAL
[13:19:09] [PASSED] PAL_M
[13:19:09] [PASSED] PAL_N
[13:19:09] [PASSED] SECAM
[13:19:09] [PASSED] MONO_525
[13:19:09] [PASSED] MONO_625
[13:19:09] =========== [PASSED] drm_test_cmdline_tv_options ===========
[13:19:09] =============== [PASSED] drm_cmdline_parser ================
[13:19:09] ========== drmm_connector_hdmi_init (20 subtests) ==========
[13:19:09] [PASSED] drm_test_connector_hdmi_init_valid
[13:19:09] [PASSED] drm_test_connector_hdmi_init_bpc_8
[13:19:09] [PASSED] drm_test_connector_hdmi_init_bpc_10
[13:19:09] [PASSED] drm_test_connector_hdmi_init_bpc_12
[13:19:09] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[13:19:09] [PASSED] drm_test_connector_hdmi_init_bpc_null
[13:19:09] [PASSED] drm_test_connector_hdmi_init_formats_empty
[13:19:09] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[13:19:09] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[13:19:09] [PASSED] supported_formats=0x9 yuv420_allowed=1
[13:19:09] [PASSED] supported_formats=0x9 yuv420_allowed=0
[13:19:09] [PASSED] supported_formats=0x5 yuv420_allowed=1
[13:19:09] [PASSED] supported_formats=0x5 yuv420_allowed=0
[13:19:09] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[13:19:09] [PASSED] drm_test_connector_hdmi_init_null_ddc
[13:19:09] [PASSED] drm_test_connector_hdmi_init_null_product
[13:19:09] [PASSED] drm_test_connector_hdmi_init_null_vendor
[13:19:09] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[13:19:09] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[13:19:09] [PASSED] drm_test_connector_hdmi_init_product_valid
[13:19:09] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[13:19:09] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[13:19:09] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[13:19:09] ========= drm_test_connector_hdmi_init_type_valid =========
[13:19:09] [PASSED] HDMI-A
[13:19:09] [PASSED] HDMI-B
[13:19:09] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[13:19:09] ======== drm_test_connector_hdmi_init_type_invalid ========
[13:19:09] [PASSED] Unknown
[13:19:09] [PASSED] VGA
[13:19:09] [PASSED] DVI-I
[13:19:09] [PASSED] DVI-D
[13:19:09] [PASSED] DVI-A
[13:19:09] [PASSED] Composite
[13:19:09] [PASSED] SVIDEO
[13:19:09] [PASSED] LVDS
[13:19:09] [PASSED] Component
[13:19:09] [PASSED] DIN
[13:19:09] [PASSED] DP
[13:19:09] [PASSED] TV
[13:19:09] [PASSED] eDP
[13:19:09] [PASSED] Virtual
[13:19:09] [PASSED] DSI
[13:19:09] [PASSED] DPI
[13:19:09] [PASSED] Writeback
[13:19:09] [PASSED] SPI
[13:19:09] [PASSED] USB
[13:19:09] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[13:19:09] ============ [PASSED] drmm_connector_hdmi_init =============
[13:19:09] ============= drmm_connector_init (3 subtests) =============
[13:19:09] [PASSED] drm_test_drmm_connector_init
[13:19:09] [PASSED] drm_test_drmm_connector_init_null_ddc
[13:19:09] ========= drm_test_drmm_connector_init_type_valid =========
[13:19:09] [PASSED] Unknown
[13:19:09] [PASSED] VGA
[13:19:09] [PASSED] DVI-I
[13:19:09] [PASSED] DVI-D
[13:19:09] [PASSED] DVI-A
[13:19:09] [PASSED] Composite
[13:19:09] [PASSED] SVIDEO
[13:19:09] [PASSED] LVDS
[13:19:09] [PASSED] Component
[13:19:09] [PASSED] DIN
[13:19:09] [PASSED] DP
[13:19:09] [PASSED] HDMI-A
[13:19:09] [PASSED] HDMI-B
[13:19:09] [PASSED] TV
[13:19:09] [PASSED] eDP
[13:19:09] [PASSED] Virtual
[13:19:09] [PASSED] DSI
[13:19:09] [PASSED] DPI
[13:19:09] [PASSED] Writeback
[13:19:09] [PASSED] SPI
[13:19:09] [PASSED] USB
[13:19:09] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[13:19:09] =============== [PASSED] drmm_connector_init ===============
[13:19:09] ========= drm_connector_dynamic_init (6 subtests) ==========
[13:19:09] [PASSED] drm_test_drm_connector_dynamic_init
[13:19:09] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[13:19:09] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[13:19:09] [PASSED] drm_test_drm_connector_dynamic_init_properties
[13:19:09] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[13:19:09] [PASSED] Unknown
[13:19:09] [PASSED] VGA
[13:19:09] [PASSED] DVI-I
[13:19:09] [PASSED] DVI-D
[13:19:09] [PASSED] DVI-A
[13:19:09] [PASSED] Composite
[13:19:09] [PASSED] SVIDEO
[13:19:09] [PASSED] LVDS
[13:19:09] [PASSED] Component
[13:19:09] [PASSED] DIN
[13:19:09] [PASSED] DP
[13:19:09] [PASSED] HDMI-A
[13:19:09] [PASSED] HDMI-B
[13:19:09] [PASSED] TV
[13:19:09] [PASSED] eDP
[13:19:09] [PASSED] Virtual
[13:19:09] [PASSED] DSI
[13:19:09] [PASSED] DPI
[13:19:09] [PASSED] Writeback
[13:19:09] [PASSED] SPI
[13:19:09] [PASSED] USB
[13:19:09] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[13:19:09] ======== drm_test_drm_connector_dynamic_init_name =========
[13:19:09] [PASSED] Unknown
[13:19:09] [PASSED] VGA
[13:19:09] [PASSED] DVI-I
[13:19:09] [PASSED] DVI-D
[13:19:09] [PASSED] DVI-A
[13:19:09] [PASSED] Composite
[13:19:09] [PASSED] SVIDEO
[13:19:09] [PASSED] LVDS
[13:19:09] [PASSED] Component
[13:19:09] [PASSED] DIN
[13:19:09] [PASSED] DP
[13:19:09] [PASSED] HDMI-A
[13:19:09] [PASSED] HDMI-B
[13:19:09] [PASSED] TV
[13:19:09] [PASSED] eDP
[13:19:09] [PASSED] Virtual
[13:19:09] [PASSED] DSI
[13:19:09] [PASSED] DPI
[13:19:09] [PASSED] Writeback
[13:19:09] [PASSED] SPI
[13:19:09] [PASSED] USB
[13:19:09] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[13:19:09] =========== [PASSED] drm_connector_dynamic_init ============
[13:19:09] ==== drm_connector_dynamic_register_early (4 subtests) =====
[13:19:09] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[13:19:09] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[13:19:09] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[13:19:09] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[13:19:09] ====== [PASSED] drm_connector_dynamic_register_early =======
[13:19:09] ======= drm_connector_dynamic_register (7 subtests) ========
[13:19:09] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[13:19:09] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[13:19:09] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[13:19:09] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[13:19:09] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[13:19:09] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[13:19:09] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[13:19:09] ========= [PASSED] drm_connector_dynamic_register ==========
[13:19:09] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[13:19:09] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[13:19:09] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[13:19:09] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[13:19:09] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[13:19:09] ========== drm_test_get_tv_mode_from_name_valid ===========
[13:19:09] [PASSED] NTSC
[13:19:09] [PASSED] NTSC-443
[13:19:09] [PASSED] NTSC-J
[13:19:09] [PASSED] PAL
[13:19:09] [PASSED] PAL-M
[13:19:09] [PASSED] PAL-N
[13:19:09] [PASSED] SECAM
[13:19:09] [PASSED] Mono
[13:19:09] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[13:19:09] [PASSED] drm_test_get_tv_mode_from_name_truncated
[13:19:09] ============ [PASSED] drm_get_tv_mode_from_name ============
[13:19:09] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[13:19:09] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[13:19:09] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[13:19:09] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[13:19:09] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[13:19:09] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[13:19:09] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[13:19:09] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[13:19:09] [PASSED] VIC 96
[13:19:09] [PASSED] VIC 97
[13:19:09] [PASSED] VIC 101
[13:19:09] [PASSED] VIC 102
[13:19:09] [PASSED] VIC 106
[13:19:09] [PASSED] VIC 107
[13:19:09] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[13:19:09] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[13:19:09] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[13:19:09] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[13:19:09] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[13:19:09] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[13:19:09] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[13:19:09] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[13:19:09] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[13:19:09] [PASSED] Automatic
[13:19:09] [PASSED] Full
[13:19:09] [PASSED] Limited 16:235
[13:19:09] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[13:19:09] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[13:19:09] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[13:19:09] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[13:19:09] === drm_test_drm_hdmi_connector_get_output_format_name ====
[13:19:09] [PASSED] RGB
[13:19:09] [PASSED] YUV 4:2:0
[13:19:09] [PASSED] YUV 4:2:2
[13:19:09] [PASSED] YUV 4:4:4
[13:19:09] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[13:19:09] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[13:19:09] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[13:19:09] ============= drm_damage_helper (21 subtests) ==============
[13:19:09] [PASSED] drm_test_damage_iter_no_damage
[13:19:09] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[13:19:09] [PASSED] drm_test_damage_iter_no_damage_src_moved
[13:19:09] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[13:19:09] [PASSED] drm_test_damage_iter_no_damage_not_visible
[13:19:09] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[13:19:09] [PASSED] drm_test_damage_iter_no_damage_no_fb
[13:19:09] [PASSED] drm_test_damage_iter_simple_damage
[13:19:09] [PASSED] drm_test_damage_iter_single_damage
[13:19:09] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[13:19:09] [PASSED] drm_test_damage_iter_single_damage_outside_src
[13:19:09] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[13:19:09] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[13:19:09] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[13:19:09] [PASSED] drm_test_damage_iter_single_damage_src_moved
[13:19:09] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[13:19:09] [PASSED] drm_test_damage_iter_damage
[13:19:09] [PASSED] drm_test_damage_iter_damage_one_intersect
[13:19:09] [PASSED] drm_test_damage_iter_damage_one_outside
[13:19:09] [PASSED] drm_test_damage_iter_damage_src_moved
[13:19:09] [PASSED] drm_test_damage_iter_damage_not_visible
[13:19:09] ================ [PASSED] drm_damage_helper ================
[13:19:09] ============== drm_dp_mst_helper (3 subtests) ==============
[13:19:09] ============== drm_test_dp_mst_calc_pbn_mode ==============
[13:19:09] [PASSED] Clock 154000 BPP 30 DSC disabled
[13:19:09] [PASSED] Clock 234000 BPP 30 DSC disabled
[13:19:09] [PASSED] Clock 297000 BPP 24 DSC disabled
[13:19:09] [PASSED] Clock 332880 BPP 24 DSC enabled
[13:19:09] [PASSED] Clock 324540 BPP 24 DSC enabled
[13:19:09] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[13:19:09] ============== drm_test_dp_mst_calc_pbn_div ===============
[13:19:09] [PASSED] Link rate 2000000 lane count 4
[13:19:09] [PASSED] Link rate 2000000 lane count 2
[13:19:09] [PASSED] Link rate 2000000 lane count 1
[13:19:09] [PASSED] Link rate 1350000 lane count 4
[13:19:09] [PASSED] Link rate 1350000 lane count 2
[13:19:09] [PASSED] Link rate 1350000 lane count 1
[13:19:09] [PASSED] Link rate 1000000 lane count 4
[13:19:09] [PASSED] Link rate 1000000 lane count 2
[13:19:09] [PASSED] Link rate 1000000 lane count 1
[13:19:09] [PASSED] Link rate 810000 lane count 4
[13:19:09] [PASSED] Link rate 810000 lane count 2
[13:19:09] [PASSED] Link rate 810000 lane count 1
[13:19:09] [PASSED] Link rate 540000 lane count 4
[13:19:09] [PASSED] Link rate 540000 lane count 2
[13:19:09] [PASSED] Link rate 540000 lane count 1
[13:19:09] [PASSED] Link rate 270000 lane count 4
[13:19:09] [PASSED] Link rate 270000 lane count 2
[13:19:09] [PASSED] Link rate 270000 lane count 1
[13:19:09] [PASSED] Link rate 162000 lane count 4
[13:19:09] [PASSED] Link rate 162000 lane count 2
[13:19:09] [PASSED] Link rate 162000 lane count 1
[13:19:09] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[13:19:09] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[13:19:09] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[13:19:09] [PASSED] DP_POWER_UP_PHY with port number
[13:19:09] [PASSED] DP_POWER_DOWN_PHY with port number
[13:19:09] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[13:19:09] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[13:19:09] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[13:19:09] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[13:19:09] [PASSED] DP_QUERY_PAYLOAD with port number
[13:19:09] [PASSED] DP_QUERY_PAYLOAD with VCPI
[13:19:09] [PASSED] DP_REMOTE_DPCD_READ with port number
[13:19:09] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[13:19:09] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[13:19:09] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[13:19:09] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[13:19:09] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[13:19:09] [PASSED] DP_REMOTE_I2C_READ with port number
[13:19:09] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[13:19:09] [PASSED] DP_REMOTE_I2C_READ with transactions array
[13:19:09] [PASSED] DP_REMOTE_I2C_WRITE with port number
[13:19:09] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[13:19:09] [PASSED] DP_REMOTE_I2C_WRITE with data array
[13:19:09] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[13:19:09] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[13:19:09] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[13:19:09] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[13:19:09] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[13:19:09] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[13:19:09] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[13:19:09] ================ [PASSED] drm_dp_mst_helper ================
[13:19:09] ================== drm_exec (7 subtests) ===================
[13:19:09] [PASSED] sanitycheck
[13:19:09] [PASSED] test_lock
[13:19:09] [PASSED] test_lock_unlock
[13:19:09] [PASSED] test_duplicates
[13:19:09] [PASSED] test_prepare
[13:19:09] [PASSED] test_prepare_array
[13:19:09] [PASSED] test_multiple_loops
[13:19:09] ==================== [PASSED] drm_exec =====================
[13:19:09] =========== drm_format_helper_test (17 subtests) ===========
[13:19:09] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[13:19:09] [PASSED] single_pixel_source_buffer
[13:19:09] [PASSED] single_pixel_clip_rectangle
[13:19:09] [PASSED] well_known_colors
[13:19:09] [PASSED] destination_pitch
[13:19:09] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[13:19:09] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[13:19:09] [PASSED] single_pixel_source_buffer
[13:19:09] [PASSED] single_pixel_clip_rectangle
[13:19:09] [PASSED] well_known_colors
[13:19:09] [PASSED] destination_pitch
[13:19:09] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[13:19:09] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[13:19:09] [PASSED] single_pixel_source_buffer
[13:19:09] [PASSED] single_pixel_clip_rectangle
[13:19:09] [PASSED] well_known_colors
[13:19:09] [PASSED] destination_pitch
[13:19:09] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[13:19:09] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[13:19:09] [PASSED] single_pixel_source_buffer
[13:19:09] [PASSED] single_pixel_clip_rectangle
[13:19:09] [PASSED] well_known_colors
[13:19:09] [PASSED] destination_pitch
[13:19:09] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[13:19:09] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[13:19:09] [PASSED] single_pixel_source_buffer
[13:19:09] [PASSED] single_pixel_clip_rectangle
[13:19:09] [PASSED] well_known_colors
[13:19:09] [PASSED] destination_pitch
[13:19:09] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[13:19:09] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[13:19:09] [PASSED] single_pixel_source_buffer
[13:19:09] [PASSED] single_pixel_clip_rectangle
[13:19:09] [PASSED] well_known_colors
[13:19:09] [PASSED] destination_pitch
[13:19:09] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[13:19:09] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[13:19:09] [PASSED] single_pixel_source_buffer
[13:19:09] [PASSED] single_pixel_clip_rectangle
[13:19:09] [PASSED] well_known_colors
[13:19:09] [PASSED] destination_pitch
[13:19:09] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[13:19:09] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[13:19:09] [PASSED] single_pixel_source_buffer
[13:19:09] [PASSED] single_pixel_clip_rectangle
[13:19:09] [PASSED] well_known_colors
[13:19:09] [PASSED] destination_pitch
[13:19:09] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[13:19:09] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[13:19:09] [PASSED] single_pixel_source_buffer
[13:19:09] [PASSED] single_pixel_clip_rectangle
[13:19:09] [PASSED] well_known_colors
[13:19:09] [PASSED] destination_pitch
[13:19:09] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[13:19:09] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[13:19:09] [PASSED] single_pixel_source_buffer
[13:19:09] [PASSED] single_pixel_clip_rectangle
[13:19:09] [PASSED] well_known_colors
[13:19:09] [PASSED] destination_pitch
[13:19:09] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[13:19:09] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[13:19:09] [PASSED] single_pixel_source_buffer
[13:19:09] [PASSED] single_pixel_clip_rectangle
[13:19:09] [PASSED] well_known_colors
[13:19:09] [PASSED] destination_pitch
[13:19:09] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[13:19:09] ============== drm_test_fb_xrgb8888_to_mono ===============
[13:19:09] [PASSED] single_pixel_source_buffer
[13:19:09] [PASSED] single_pixel_clip_rectangle
[13:19:09] [PASSED] well_known_colors
[13:19:09] [PASSED] destination_pitch
[13:19:09] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[13:19:09] ==================== drm_test_fb_swab =====================
[13:19:09] [PASSED] single_pixel_source_buffer
[13:19:09] [PASSED] single_pixel_clip_rectangle
[13:19:09] [PASSED] well_known_colors
[13:19:09] [PASSED] destination_pitch
[13:19:09] ================ [PASSED] drm_test_fb_swab =================
[13:19:09] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[13:19:09] [PASSED] single_pixel_source_buffer
[13:19:09] [PASSED] single_pixel_clip_rectangle
[13:19:09] [PASSED] well_known_colors
[13:19:09] [PASSED] destination_pitch
[13:19:09] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[13:19:09] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[13:19:09] [PASSED] single_pixel_source_buffer
[13:19:09] [PASSED] single_pixel_clip_rectangle
[13:19:09] [PASSED] well_known_colors
[13:19:09] [PASSED] destination_pitch
[13:19:09] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[13:19:09] ================= drm_test_fb_clip_offset =================
[13:19:09] [PASSED] pass through
[13:19:09] [PASSED] horizontal offset
[13:19:09] [PASSED] vertical offset
[13:19:09] [PASSED] horizontal and vertical offset
[13:19:09] [PASSED] horizontal offset (custom pitch)
[13:19:09] [PASSED] vertical offset (custom pitch)
[13:19:09] [PASSED] horizontal and vertical offset (custom pitch)
[13:19:09] ============= [PASSED] drm_test_fb_clip_offset =============
[13:19:09] =================== drm_test_fb_memcpy ====================
[13:19:09] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[13:19:09] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[13:19:09] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[13:19:09] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[13:19:09] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[13:19:09] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[13:19:09] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[13:19:09] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[13:19:09] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[13:19:09] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[13:19:09] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[13:19:09] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[13:19:09] =============== [PASSED] drm_test_fb_memcpy ================
[13:19:09] ============= [PASSED] drm_format_helper_test ==============
[13:19:09] ================= drm_format (18 subtests) =================
[13:19:09] [PASSED] drm_test_format_block_width_invalid
[13:19:09] [PASSED] drm_test_format_block_width_one_plane
[13:19:09] [PASSED] drm_test_format_block_width_two_plane
[13:19:09] [PASSED] drm_test_format_block_width_three_plane
[13:19:09] [PASSED] drm_test_format_block_width_tiled
[13:19:09] [PASSED] drm_test_format_block_height_invalid
[13:19:09] [PASSED] drm_test_format_block_height_one_plane
[13:19:09] [PASSED] drm_test_format_block_height_two_plane
[13:19:09] [PASSED] drm_test_format_block_height_three_plane
[13:19:09] [PASSED] drm_test_format_block_height_tiled
[13:19:09] [PASSED] drm_test_format_min_pitch_invalid
[13:19:09] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[13:19:09] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[13:19:09] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[13:19:09] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[13:19:09] [PASSED] drm_test_format_min_pitch_two_plane
[13:19:09] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[13:19:09] [PASSED] drm_test_format_min_pitch_tiled
[13:19:09] =================== [PASSED] drm_format ====================
[13:19:09] ============== drm_framebuffer (10 subtests) ===============
[13:19:09] ========== drm_test_framebuffer_check_src_coords ==========
[13:19:09] [PASSED] Success: source fits into fb
[13:19:09] [PASSED] Fail: overflowing fb with x-axis coordinate
[13:19:09] [PASSED] Fail: overflowing fb with y-axis coordinate
[13:19:09] [PASSED] Fail: overflowing fb with source width
[13:19:09] [PASSED] Fail: overflowing fb with source height
[13:19:09] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[13:19:09] [PASSED] drm_test_framebuffer_cleanup
[13:19:09] =============== drm_test_framebuffer_create ===============
[13:19:09] [PASSED] ABGR8888 normal sizes
[13:19:09] [PASSED] ABGR8888 max sizes
[13:19:09] [PASSED] ABGR8888 pitch greater than min required
[13:19:09] [PASSED] ABGR8888 pitch less than min required
[13:19:09] [PASSED] ABGR8888 Invalid width
[13:19:09] [PASSED] ABGR8888 Invalid buffer handle
[13:19:09] [PASSED] No pixel format
[13:19:09] [PASSED] ABGR8888 Width 0
[13:19:09] [PASSED] ABGR8888 Height 0
[13:19:09] [PASSED] ABGR8888 Out of bound height * pitch combination
[13:19:09] [PASSED] ABGR8888 Large buffer offset
[13:19:09] [PASSED] ABGR8888 Buffer offset for inexistent plane
[13:19:09] [PASSED] ABGR8888 Invalid flag
[13:19:09] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[13:19:09] [PASSED] ABGR8888 Valid buffer modifier
[13:19:09] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[13:19:09] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[13:19:09] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[13:19:09] [PASSED] NV12 Normal sizes
[13:19:09] [PASSED] NV12 Max sizes
[13:19:09] [PASSED] NV12 Invalid pitch
[13:19:09] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[13:19:09] [PASSED] NV12 different modifier per-plane
[13:19:09] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[13:19:09] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[13:19:09] [PASSED] NV12 Modifier for inexistent plane
[13:19:09] [PASSED] NV12 Handle for inexistent plane
[13:19:09] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[13:19:09] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[13:19:09] [PASSED] YVU420 Normal sizes
[13:19:09] [PASSED] YVU420 Max sizes
[13:19:09] [PASSED] YVU420 Invalid pitch
[13:19:09] [PASSED] YVU420 Different pitches
[13:19:09] [PASSED] YVU420 Different buffer offsets/pitches
[13:19:09] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[13:19:09] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[13:19:09] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[13:19:09] [PASSED] YVU420 Valid modifier
[13:19:09] [PASSED] YVU420 Different modifiers per plane
[13:19:09] [PASSED] YVU420 Modifier for inexistent plane
[13:19:09] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[13:19:09] [PASSED] X0L2 Normal sizes
[13:19:09] [PASSED] X0L2 Max sizes
[13:19:09] [PASSED] X0L2 Invalid pitch
[13:19:09] [PASSED] X0L2 Pitch greater than minimum required
[13:19:09] [PASSED] X0L2 Handle for inexistent plane
[13:19:09] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[13:19:09] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[13:19:09] [PASSED] X0L2 Valid modifier
[13:19:09] [PASSED] X0L2 Modifier for inexistent plane
[13:19:09] =========== [PASSED] drm_test_framebuffer_create ===========
[13:19:09] [PASSED] drm_test_framebuffer_free
[13:19:09] [PASSED] drm_test_framebuffer_init
[13:19:09] [PASSED] drm_test_framebuffer_init_bad_format
[13:19:09] [PASSED] drm_test_framebuffer_init_dev_mismatch
[13:19:09] [PASSED] drm_test_framebuffer_lookup
[13:19:09] [PASSED] drm_test_framebuffer_lookup_inexistent
[13:19:09] [PASSED] drm_test_framebuffer_modifiers_not_supported
[13:19:09] ================= [PASSED] drm_framebuffer =================
[13:19:09] ================ drm_gem_shmem (8 subtests) ================
[13:19:09] [PASSED] drm_gem_shmem_test_obj_create
[13:19:09] [PASSED] drm_gem_shmem_test_obj_create_private
[13:19:09] [PASSED] drm_gem_shmem_test_pin_pages
[13:19:09] [PASSED] drm_gem_shmem_test_vmap
[13:19:09] [PASSED] drm_gem_shmem_test_get_sg_table
[13:19:09] [PASSED] drm_gem_shmem_test_get_pages_sgt
[13:19:09] [PASSED] drm_gem_shmem_test_madvise
[13:19:09] [PASSED] drm_gem_shmem_test_purge
[13:19:09] ================== [PASSED] drm_gem_shmem ==================
[13:19:09] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[13:19:09] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[13:19:09] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[13:19:09] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[13:19:09] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[13:19:09] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[13:19:09] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[13:19:09] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[13:19:09] [PASSED] Automatic
[13:19:09] [PASSED] Full
[13:19:09] [PASSED] Limited 16:235
[13:19:09] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[13:19:09] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[13:19:09] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[13:19:09] [PASSED] drm_test_check_disable_connector
[13:19:09] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[13:19:09] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[13:19:09] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[13:19:09] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[13:19:09] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[13:19:09] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[13:19:09] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[13:19:09] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[13:19:09] [PASSED] drm_test_check_output_bpc_dvi
[13:19:09] [PASSED] drm_test_check_output_bpc_format_vic_1
[13:19:09] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[13:19:09] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[13:19:09] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[13:19:09] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[13:19:09] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[13:19:09] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[13:19:09] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[13:19:09] ============ drm_test_check_hdmi_color_format =============
[13:19:09] [PASSED] AUTO -> RGB
[13:19:09] [PASSED] YCBCR422 -> YUV422
[13:19:09] [PASSED] YCBCR420 -> YUV420
[13:19:09] [PASSED] YCBCR444 -> YUV444
[13:19:09] [PASSED] RGB -> RGB
[13:19:09] ======== [PASSED] drm_test_check_hdmi_color_format =========
[13:19:09] ======== drm_test_check_hdmi_color_format_420_only ========
[13:19:09] [PASSED] RGB should fail
[13:19:09] [PASSED] YUV444 should fail
[13:19:09] [PASSED] YUV422 should fail
[13:19:09] [PASSED] YUV420 should work
[13:19:09] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[13:19:09] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[13:19:09] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[13:19:09] [PASSED] drm_test_check_broadcast_rgb_value
[13:19:09] [PASSED] drm_test_check_bpc_8_value
[13:19:09] [PASSED] drm_test_check_bpc_10_value
[13:19:09] [PASSED] drm_test_check_bpc_12_value
[13:19:09] [PASSED] drm_test_check_format_value
[13:19:09] [PASSED] drm_test_check_tmds_char_value
[13:19:09] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[13:19:09] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[13:19:09] [PASSED] drm_test_check_mode_valid
[13:19:09] [PASSED] drm_test_check_mode_valid_reject
[13:19:09] [PASSED] drm_test_check_mode_valid_reject_rate
[13:19:09] [PASSED] drm_test_check_mode_valid_reject_max_clock
[13:19:09] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[13:19:09] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[13:19:09] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[13:19:09] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[13:19:09] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[13:19:09] [PASSED] drm_test_check_infoframes
[13:19:09] [PASSED] drm_test_check_reject_avi_infoframe
[13:19:09] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[13:19:09] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[13:19:09] [PASSED] drm_test_check_reject_audio_infoframe
[13:19:09] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[13:19:09] ================= drm_managed (2 subtests) =================
[13:19:09] [PASSED] drm_test_managed_release_action
[13:19:09] [PASSED] drm_test_managed_run_action
[13:19:09] =================== [PASSED] drm_managed ===================
[13:19:09] =================== drm_mm (6 subtests) ====================
[13:19:09] [PASSED] drm_test_mm_init
[13:19:09] [PASSED] drm_test_mm_debug
[13:19:09] [PASSED] drm_test_mm_align32
[13:19:09] [PASSED] drm_test_mm_align64
[13:19:09] [PASSED] drm_test_mm_lowest
[13:19:09] [PASSED] drm_test_mm_highest
[13:19:09] ===================== [PASSED] drm_mm ======================
[13:19:09] ============= drm_modes_analog_tv (5 subtests) =============
[13:19:09] [PASSED] drm_test_modes_analog_tv_mono_576i
[13:19:09] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[13:19:09] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[13:19:09] [PASSED] drm_test_modes_analog_tv_pal_576i
[13:19:09] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[13:19:09] =============== [PASSED] drm_modes_analog_tv ===============
[13:19:09] ============== drm_plane_helper (2 subtests) ===============
[13:19:09] =============== drm_test_check_plane_state ================
[13:19:09] [PASSED] clipping_simple
[13:19:09] [PASSED] clipping_rotate_reflect
[13:19:09] [PASSED] positioning_simple
[13:19:09] [PASSED] upscaling
[13:19:09] [PASSED] downscaling
[13:19:09] [PASSED] rounding1
[13:19:09] [PASSED] rounding2
[13:19:09] [PASSED] rounding3
[13:19:09] [PASSED] rounding4
[13:19:09] =========== [PASSED] drm_test_check_plane_state ============
[13:19:09] =========== drm_test_check_invalid_plane_state ============
[13:19:09] [PASSED] positioning_invalid
[13:19:09] [PASSED] upscaling_invalid
[13:19:09] [PASSED] downscaling_invalid
[13:19:09] ======= [PASSED] drm_test_check_invalid_plane_state ========
[13:19:09] ================ [PASSED] drm_plane_helper =================
[13:19:09] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[13:19:09] ====== drm_test_connector_helper_tv_get_modes_check =======
[13:19:09] [PASSED] None
[13:19:09] [PASSED] PAL
[13:19:09] [PASSED] NTSC
[13:19:09] [PASSED] Both, NTSC Default
[13:19:09] [PASSED] Both, PAL Default
[13:19:09] [PASSED] Both, NTSC Default, with PAL on command-line
[13:19:09] [PASSED] Both, PAL Default, with NTSC on command-line
[13:19:09] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[13:19:09] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[13:19:09] ================== drm_rect (9 subtests) ===================
[13:19:09] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[13:19:09] [PASSED] drm_test_rect_clip_scaled_not_clipped
[13:19:09] [PASSED] drm_test_rect_clip_scaled_clipped
[13:19:09] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[13:19:09] ================= drm_test_rect_intersect =================
[13:19:09] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[13:19:09] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[13:19:09] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[13:19:09] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[13:19:09] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[13:19:09] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[13:19:09] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[13:19:09] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[13:19:09] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[13:19:09] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[13:19:09] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[13:19:09] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[13:19:09] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[13:19:09] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[13:19:09] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[13:19:09] ============= [PASSED] drm_test_rect_intersect =============
[13:19:09] ================ drm_test_rect_calc_hscale ================
[13:19:09] [PASSED] normal use
[13:19:09] [PASSED] out of max range
[13:19:09] [PASSED] out of min range
[13:19:09] [PASSED] zero dst
[13:19:09] [PASSED] negative src
[13:19:09] [PASSED] negative dst
[13:19:09] ============ [PASSED] drm_test_rect_calc_hscale ============
[13:19:09] ================ drm_test_rect_calc_vscale ================
[13:19:09] [PASSED] normal use
[13:19:09] [PASSED] out of max range
[13:19:09] [PASSED] out of min range
[13:19:09] [PASSED] zero dst
[13:19:09] [PASSED] negative src
[13:19:09] [PASSED] negative dst
[13:19:09] ============ [PASSED] drm_test_rect_calc_vscale ============
[13:19:09] ================== drm_test_rect_rotate ===================
[13:19:09] [PASSED] reflect-x
[13:19:09] [PASSED] reflect-y
[13:19:09] [PASSED] rotate-0
[13:19:09] [PASSED] rotate-90
[13:19:09] [PASSED] rotate-180
[13:19:09] [PASSED] rotate-270
[13:19:09] ============== [PASSED] drm_test_rect_rotate ===============
[13:19:09] ================ drm_test_rect_rotate_inv =================
[13:19:09] [PASSED] reflect-x
[13:19:09] [PASSED] reflect-y
[13:19:09] [PASSED] rotate-0
[13:19:09] [PASSED] rotate-90
[13:19:09] [PASSED] rotate-180
[13:19:09] [PASSED] rotate-270
[13:19:09] ============ [PASSED] drm_test_rect_rotate_inv =============
[13:19:09] ==================== [PASSED] drm_rect =====================
[13:19:09] ============ drm_sysfb_modeset_test (1 subtest) ============
[13:19:09] ============ drm_test_sysfb_build_fourcc_list =============
[13:19:09] [PASSED] no native formats
[13:19:09] [PASSED] XRGB8888 as native format
[13:19:09] [PASSED] remove duplicates
[13:19:09] [PASSED] convert alpha formats
[13:19:09] [PASSED] random formats
[13:19:09] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[13:19:09] ============= [PASSED] drm_sysfb_modeset_test ==============
[13:19:09] ================== drm_fixp (2 subtests) ===================
[13:19:09] [PASSED] drm_test_int2fixp
[13:19:09] [PASSED] drm_test_sm2fixp
[13:19:09] ==================== [PASSED] drm_fixp =====================
[13:19:09] ============================================================
[13:19:09] Testing complete. Ran 637 tests: passed: 637
[13:19:09] Elapsed time: 26.354s total, 1.820s configuring, 24.363s building, 0.153s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[13:19:09] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:19:11] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[13:19:21] Starting KUnit Kernel (1/1)...
[13:19:21] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:19:21] ================= ttm_device (5 subtests) ==================
[13:19:21] [PASSED] ttm_device_init_basic
[13:19:21] [PASSED] ttm_device_init_multiple
[13:19:21] [PASSED] ttm_device_fini_basic
[13:19:21] [PASSED] ttm_device_init_no_vma_man
[13:19:21] ================== ttm_device_init_pools ==================
[13:19:21] [PASSED] No DMA allocations, no DMA32 required
[13:19:21] [PASSED] DMA allocations, DMA32 required
[13:19:21] [PASSED] No DMA allocations, DMA32 required
[13:19:21] [PASSED] DMA allocations, no DMA32 required
[13:19:21] ============== [PASSED] ttm_device_init_pools ==============
[13:19:21] =================== [PASSED] ttm_device ====================
[13:19:21] ================== ttm_pool (8 subtests) ===================
[13:19:21] ================== ttm_pool_alloc_basic ===================
[13:19:21] [PASSED] One page
[13:19:21] [PASSED] More than one page
[13:19:21] [PASSED] Above the allocation limit
[13:19:21] [PASSED] One page, with coherent DMA mappings enabled
[13:19:21] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[13:19:21] ============== [PASSED] ttm_pool_alloc_basic ===============
[13:19:21] ============== ttm_pool_alloc_basic_dma_addr ==============
[13:19:21] [PASSED] One page
[13:19:21] [PASSED] More than one page
[13:19:21] [PASSED] Above the allocation limit
[13:19:21] [PASSED] One page, with coherent DMA mappings enabled
[13:19:21] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[13:19:21] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[13:19:21] [PASSED] ttm_pool_alloc_order_caching_match
[13:19:21] [PASSED] ttm_pool_alloc_caching_mismatch
[13:19:21] [PASSED] ttm_pool_alloc_order_mismatch
[13:19:21] [PASSED] ttm_pool_free_dma_alloc
[13:19:21] [PASSED] ttm_pool_free_no_dma_alloc
[13:19:21] [PASSED] ttm_pool_fini_basic
[13:19:21] ==================== [PASSED] ttm_pool =====================
[13:19:21] ================ ttm_resource (8 subtests) =================
[13:19:21] ================= ttm_resource_init_basic =================
[13:19:21] [PASSED] Init resource in TTM_PL_SYSTEM
[13:19:21] [PASSED] Init resource in TTM_PL_VRAM
[13:19:21] [PASSED] Init resource in a private placement
[13:19:21] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[13:19:21] ============= [PASSED] ttm_resource_init_basic =============
[13:19:21] [PASSED] ttm_resource_init_pinned
[13:19:21] [PASSED] ttm_resource_fini_basic
[13:19:21] [PASSED] ttm_resource_manager_init_basic
[13:19:21] [PASSED] ttm_resource_manager_usage_basic
[13:19:21] [PASSED] ttm_resource_manager_set_used_basic
[13:19:21] [PASSED] ttm_sys_man_alloc_basic
[13:19:21] [PASSED] ttm_sys_man_free_basic
[13:19:21] ================== [PASSED] ttm_resource ===================
[13:19:21] =================== ttm_tt (15 subtests) ===================
[13:19:21] ==================== ttm_tt_init_basic ====================
[13:19:21] [PASSED] Page-aligned size
[13:19:21] [PASSED] Extra pages requested
[13:19:21] ================ [PASSED] ttm_tt_init_basic ================
[13:19:21] [PASSED] ttm_tt_init_misaligned
[13:19:21] [PASSED] ttm_tt_fini_basic
[13:19:21] [PASSED] ttm_tt_fini_sg
[13:19:21] [PASSED] ttm_tt_fini_shmem
[13:19:21] [PASSED] ttm_tt_create_basic
[13:19:21] [PASSED] ttm_tt_create_invalid_bo_type
[13:19:21] [PASSED] ttm_tt_create_ttm_exists
[13:19:21] [PASSED] ttm_tt_create_failed
[13:19:21] [PASSED] ttm_tt_destroy_basic
[13:19:21] [PASSED] ttm_tt_populate_null_ttm
[13:19:21] [PASSED] ttm_tt_populate_populated_ttm
[13:19:21] [PASSED] ttm_tt_unpopulate_basic
[13:19:21] [PASSED] ttm_tt_unpopulate_empty_ttm
[13:19:21] [PASSED] ttm_tt_swapin_basic
[13:19:21] ===================== [PASSED] ttm_tt ======================
[13:19:21] =================== ttm_bo (14 subtests) ===================
[13:19:21] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[13:19:21] [PASSED] Cannot be interrupted and sleeps
[13:19:21] [PASSED] Cannot be interrupted, locks straight away
[13:19:21] [PASSED] Can be interrupted, sleeps
[13:19:21] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[13:19:21] [PASSED] ttm_bo_reserve_locked_no_sleep
[13:19:21] [PASSED] ttm_bo_reserve_no_wait_ticket
[13:19:21] [PASSED] ttm_bo_reserve_double_resv
[13:19:21] [PASSED] ttm_bo_reserve_interrupted
[13:19:21] [PASSED] ttm_bo_reserve_deadlock
[13:19:21] [PASSED] ttm_bo_unreserve_basic
[13:19:21] [PASSED] ttm_bo_unreserve_pinned
[13:19:21] [PASSED] ttm_bo_unreserve_bulk
[13:19:21] [PASSED] ttm_bo_fini_basic
[13:19:21] [PASSED] ttm_bo_fini_shared_resv
[13:19:21] [PASSED] ttm_bo_pin_basic
[13:19:21] [PASSED] ttm_bo_pin_unpin_resource
[13:19:21] [PASSED] ttm_bo_multiple_pin_one_unpin
[13:19:21] ===================== [PASSED] ttm_bo ======================
[13:19:21] ============== ttm_bo_validate (22 subtests) ===============
[13:19:21] ============== ttm_bo_init_reserved_sys_man ===============
[13:19:21] [PASSED] Buffer object for userspace
[13:19:21] [PASSED] Kernel buffer object
[13:19:21] [PASSED] Shared buffer object
[13:19:21] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[13:19:21] ============== ttm_bo_init_reserved_mock_man ==============
[13:19:21] [PASSED] Buffer object for userspace
[13:19:21] [PASSED] Kernel buffer object
[13:19:21] [PASSED] Shared buffer object
[13:19:21] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[13:19:21] [PASSED] ttm_bo_init_reserved_resv
[13:19:21] ================== ttm_bo_validate_basic ==================
[13:19:21] [PASSED] Buffer object for userspace
[13:19:21] [PASSED] Kernel buffer object
[13:19:21] [PASSED] Shared buffer object
[13:19:21] ============== [PASSED] ttm_bo_validate_basic ==============
[13:19:21] [PASSED] ttm_bo_validate_invalid_placement
[13:19:21] ============= ttm_bo_validate_same_placement ==============
[13:19:21] [PASSED] System manager
[13:19:21] [PASSED] VRAM manager
[13:19:21] ========= [PASSED] ttm_bo_validate_same_placement ==========
[13:19:21] [PASSED] ttm_bo_validate_failed_alloc
[13:19:21] [PASSED] ttm_bo_validate_pinned
[13:19:21] [PASSED] ttm_bo_validate_busy_placement
[13:19:21] ================ ttm_bo_validate_multihop =================
[13:19:21] [PASSED] Buffer object for userspace
[13:19:21] [PASSED] Kernel buffer object
[13:19:21] [PASSED] Shared buffer object
[13:19:21] ============ [PASSED] ttm_bo_validate_multihop =============
[13:19:21] ========== ttm_bo_validate_no_placement_signaled ==========
[13:19:21] [PASSED] Buffer object in system domain, no page vector
[13:19:21] [PASSED] Buffer object in system domain with an existing page vector
[13:19:21] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[13:19:21] ======== ttm_bo_validate_no_placement_not_signaled ========
[13:19:21] [PASSED] Buffer object for userspace
[13:19:21] [PASSED] Kernel buffer object
[13:19:21] [PASSED] Shared buffer object
[13:19:21] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[13:19:21] [PASSED] ttm_bo_validate_move_fence_signaled
[13:19:21] ========= ttm_bo_validate_move_fence_not_signaled =========
[13:19:21] [PASSED] Waits for GPU
[13:19:21] [PASSED] Tries to lock straight away
[13:19:21] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[13:19:21] [PASSED] ttm_bo_validate_swapout
[13:19:21] [PASSED] ttm_bo_validate_happy_evict
[13:19:21] [PASSED] ttm_bo_validate_all_pinned_evict
[13:19:21] [PASSED] ttm_bo_validate_allowed_only_evict
[13:19:21] [PASSED] ttm_bo_validate_deleted_evict
[13:19:21] [PASSED] ttm_bo_validate_busy_domain_evict
[13:19:21] [PASSED] ttm_bo_validate_evict_gutting
[13:19:21] [PASSED] ttm_bo_validate_recrusive_evict
[13:19:21] ================= [PASSED] ttm_bo_validate =================
[13:19:21] ============================================================
[13:19:21] Testing complete. Ran 102 tests: passed: 102
[13:19:21] Elapsed time: 11.727s total, 1.781s configuring, 9.731s building, 0.181s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✓ Xe.CI.BAT: success for KUnit test for VF provisioning error handling (rev6)
2026-08-12 12:43 [PATCH v6 0/7] KUnit test for VF provisioning error handling Satyanarayana K V P
` (8 preceding siblings ...)
2026-08-12 13:19 ` ✓ CI.KUnit: success " Patchwork
@ 2026-08-12 14:20 ` Patchwork
2026-08-12 18:27 ` ✓ Xe.CI.FULL: " Patchwork
10 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2026-08-12 14:20 UTC (permalink / raw)
To: Satyanarayana K V P; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 4066 bytes --]
== Series Details ==
Series: KUnit test for VF provisioning error handling (rev6)
URL : https://patchwork.freedesktop.org/series/170198/
State : success
== Summary ==
CI Bug Log - changes from xe-5580-96ddbb14986632af742523e68f90d51c138c57f0_BAT -> xe-pw-170198v6_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
Additional (1): bat-nvls-1
Missing (1): bat-bmg-2
Known issues
------------
Here are the changes found in xe-pw-170198v6_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-nvls-1: NOTRUN -> [SKIP][1] ([Intel XE#8757])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/bat-nvls-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-nvls-1: NOTRUN -> [SKIP][2] ([Intel XE#8759])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/bat-nvls-1/igt@kms_dsc@dsc-basic.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
- bat-nvls-1: NOTRUN -> [SKIP][3] ([Intel XE#8744]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/bat-nvls-1/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
* igt@xe_exec_balancer@twice-virtual-userptr-invalidate:
- bat-nvls-1: NOTRUN -> [SKIP][4] ([Intel XE#8741]) +17 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/bat-nvls-1/igt@xe_exec_balancer@twice-virtual-userptr-invalidate.html
* igt@xe_exec_multi_queue@many-queues-userptr-invalidate:
- bat-nvls-1: NOTRUN -> [SKIP][5] ([Intel XE#8377]) +13 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/bat-nvls-1/igt@xe_exec_multi_queue@many-queues-userptr-invalidate.html
* igt@xe_huc_copy@huc_copy:
- bat-nvls-1: NOTRUN -> [SKIP][6] ([Intel XE#8746])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/bat-nvls-1/igt@xe_huc_copy@huc_copy.html
* igt@xe_mmap@vram:
- bat-nvls-1: NOTRUN -> [SKIP][7] ([Intel XE#8747])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/bat-nvls-1/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xehpc:
- bat-nvls-1: NOTRUN -> [SKIP][8] ([Intel XE#8748])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/bat-nvls-1/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-nvls-1: NOTRUN -> [SKIP][9] ([Intel XE#8743])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/bat-nvls-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-nvls-1: NOTRUN -> [SKIP][10] ([Intel XE#8745])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/bat-nvls-1/igt@xe_pat@pat-index-xelpg.html
[Intel XE#8377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8377
[Intel XE#8741]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8741
[Intel XE#8743]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8743
[Intel XE#8744]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8744
[Intel XE#8745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8745
[Intel XE#8746]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8746
[Intel XE#8747]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8747
[Intel XE#8748]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8748
[Intel XE#8757]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8757
[Intel XE#8759]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8759
Build changes
-------------
* Linux: xe-5580-96ddbb14986632af742523e68f90d51c138c57f0 -> xe-pw-170198v6
IGT_9052: 9052
xe-5580-96ddbb14986632af742523e68f90d51c138c57f0: 96ddbb14986632af742523e68f90d51c138c57f0
xe-pw-170198v6: 170198v6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/index.html
[-- Attachment #2: Type: text/html, Size: 4859 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✓ Xe.CI.FULL: success for KUnit test for VF provisioning error handling (rev6)
2026-08-12 12:43 [PATCH v6 0/7] KUnit test for VF provisioning error handling Satyanarayana K V P
` (9 preceding siblings ...)
2026-08-12 14:20 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-08-12 18:27 ` Patchwork
10 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2026-08-12 18:27 UTC (permalink / raw)
To: Satyanarayana K V P; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 19412 bytes --]
== Series Details ==
Series: KUnit test for VF provisioning error handling (rev6)
URL : https://patchwork.freedesktop.org/series/170198/
State : success
== Summary ==
CI Bug Log - changes from xe-5580-96ddbb14986632af742523e68f90d51c138c57f0_FULL -> xe-pw-170198v6_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between xe-5580-96ddbb14986632af742523e68f90d51c138c57f0_FULL and xe-pw-170198v6_FULL:
### New IGT tests (1) ###
* igt@xe_fault_injection@inject-fault-probe-function-xe_wa_gt_init:
- Statuses : 2 pass(s)
- Exec time: [0.05, 0.06] s
Known issues
------------
Here are the changes found in xe-pw-170198v6_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@y-tiled-16bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#1124]) +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-9/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#2887]) +2 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-8/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2325] / [Intel XE#7358])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-8/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2252])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-8/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2390] / [Intel XE#6974])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-8/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#6974])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-8/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [PASS][7] -> [FAIL][8] ([Intel XE#7809])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5580-96ddbb14986632af742523e68f90d51c138c57f0/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1508])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_feature_discovery@display-3x:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2373] / [Intel XE#7448])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-2/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [PASS][11] -> [FAIL][12] ([Intel XE#301])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5580-96ddbb14986632af742523e68f90d51c138c57f0/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#7178] / [Intel XE#7351])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2311]) +16 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#4141]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#7061] / [Intel XE#7356])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2313]) +12 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#4090] / [Intel XE#7443])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane_multiple@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#5020] / [Intel XE#7348])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-8/igt@kms_plane_multiple@tiling-y.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-8/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#1489])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-8/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2387] / [Intel XE#7429])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr-primary-render:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-8/igt@kms_psr@fbc-psr-primary-render.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2168] / [Intel XE#7444])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-8/igt@kms_vrr@lobf.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [PASS][25] -> [INCOMPLETE][26] ([Intel XE#6321] / [Intel XE#8355])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5580-96ddbb14986632af742523e68f90d51c138c57f0/shard-bmg-10/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2322] / [Intel XE#7372])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#8374]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-8/igt@xe_exec_fault_mode@twice-multi-queue-userptr.html
* igt@xe_exec_multi_queue@one-queue-close-fd-smem:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#8364]) +5 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-8/igt@xe_exec_multi_queue@one-queue-close-fd-smem.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#8378]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html
* igt@xe_multigpu_svm@mgpu-latency-prefetch:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#6964])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-8/igt@xe_multigpu_svm@mgpu-latency-prefetch.html
* igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_enhance0:
- shard-bmg: [PASS][32] -> [FAIL][33] ([Intel XE#8555]) +1 other test fail
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5580-96ddbb14986632af742523e68f90d51c138c57f0/shard-bmg-6/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_enhance0.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-10/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_enhance0.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#944])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-8/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt0-rcs0:
- shard-bmg: NOTRUN -> [FAIL][35] ([Intel XE#7992]) +1 other test fail
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-2/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt0-rcs0.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt1-vcs0:
- shard-bmg: NOTRUN -> [FAIL][36] ([Intel XE#8340])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-2/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt1-vcs0.html
* igt@xe_wedged@basic-wedged:
- shard-bmg: [PASS][37] -> [ABORT][38] ([Intel XE#8007])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5580-96ddbb14986632af742523e68f90d51c138c57f0/shard-bmg-3/igt@xe_wedged@basic-wedged.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-10/igt@xe_wedged@basic-wedged.html
#### Possible fixes ####
* igt@core_hotunplug@unplug-rescan:
- shard-bmg: [ABORT][39] ([Intel XE#8007]) -> [PASS][40] +1 other test pass
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5580-96ddbb14986632af742523e68f90d51c138c57f0/shard-bmg-1/igt@core_hotunplug@unplug-rescan.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-2/igt@core_hotunplug@unplug-rescan.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][41] ([Intel XE#7084] / [Intel XE#8150]) -> [PASS][42] +1 other test pass
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5580-96ddbb14986632af742523e68f90d51c138c57f0/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][43] ([Intel XE#301]) -> [PASS][44] +1 other test pass
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5580-96ddbb14986632af742523e68f90d51c138c57f0/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3:
- shard-bmg: [FAIL][45] ([Intel XE#3149] / [Intel XE#3321]) -> [PASS][46] +1 other test pass
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5580-96ddbb14986632af742523e68f90d51c138c57f0/shard-bmg-9/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html
* igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [DMESG-WARN][47] -> [PASS][48]
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5580-96ddbb14986632af742523e68f90d51c138c57f0/shard-bmg-5/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-cur-indfb-draw-render.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-6/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-cur-indfb-draw-render.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][49] ([Intel XE#6321] / [Intel XE#8355]) -> [PASS][50]
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5580-96ddbb14986632af742523e68f90d51c138c57f0/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_compute0:
- shard-bmg: [FAIL][51] ([Intel XE#8555]) -> [PASS][52] +2 other tests pass
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5580-96ddbb14986632af742523e68f90d51c138c57f0/shard-bmg-6/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_compute0.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-10/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_compute0.html
#### Warnings ####
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][53] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][54] ([Intel XE#1729] / [Intel XE#7424])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5580-96ddbb14986632af742523e68f90d51c138c57f0/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][55] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][56] ([Intel XE#2509] / [Intel XE#7437])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5580-96ddbb14986632af742523e68f90d51c138c57f0/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[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#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[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#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7443
[Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
[Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448
[Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
[Intel XE#7809]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7809
[Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
[Intel XE#8340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8340
[Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8555]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8555
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-5580-96ddbb14986632af742523e68f90d51c138c57f0 -> xe-pw-170198v6
IGT_9052: 9052
xe-5580-96ddbb14986632af742523e68f90d51c138c57f0: 96ddbb14986632af742523e68f90d51c138c57f0
xe-pw-170198v6: 170198v6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170198v6/index.html
[-- Attachment #2: Type: text/html, Size: 21387 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2026-08-12 18:27 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-12 12:43 [PATCH v6 0/7] KUnit test for VF provisioning error handling Satyanarayana K V P
2026-08-12 12:43 ` [PATCH v6 1/7] drm/xe/guc: Allow to replace xe_guc_mmio_send_recv() with KUNIT stub Satyanarayana K V P
2026-08-12 12:43 ` [PATCH v6 2/7] drm/xe/vf: Split submission config query helpers Satyanarayana K V P
2026-08-12 12:43 ` [PATCH v6 3/7] drm/xe/vf: Add bounds checking for queried context and doorbell counts Satyanarayana K V P
2026-08-12 12:43 ` [PATCH v6 4/7] drm/xe: Introduce helpers for xe_vram size Satyanarayana K V P
2026-08-12 12:55 ` sashiko-bot
2026-08-12 12:43 ` [PATCH v6 5/7] drm/xe/vf: Add bounds checking for queried GGTT base and size Satyanarayana K V P
2026-08-12 12:55 ` sashiko-bot
2026-08-12 12:43 ` [PATCH v6 6/7] drm/xe/vf: Add bounds checking for queried VRAM size Satyanarayana K V P
2026-08-12 13:02 ` sashiko-bot
2026-08-12 12:43 ` [PATCH v6 7/7] drm/xe/tests: Add KUnit tests for VF provisioning error handling Satyanarayana K V P
2026-08-12 13:00 ` sashiko-bot
2026-08-12 13:18 ` ✗ CI.checkpatch: warning for KUnit test for VF provisioning error handling (rev6) Patchwork
2026-08-12 13:19 ` ✓ CI.KUnit: success " Patchwork
2026-08-12 14:20 ` ✓ Xe.CI.BAT: " Patchwork
2026-08-12 18:27 ` ✓ Xe.CI.FULL: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox