* [PATCH v2 1/5] drm/xe/display: Avoid using stolen memory for framebuffer when media gt exists.
2026-07-21 14:26 [PATCH v2 0/5] drm/xe/display: Transparant fallback from stolen to sysmem Maarten Lankhorst
@ 2026-07-21 14:26 ` Maarten Lankhorst
2026-07-22 18:18 ` Shankar, Uma
2026-07-21 14:26 ` [PATCH v2 2/5] drm/xe/migrate: Support copying between sysmem and stolen Maarten Lankhorst
` (10 subsequent siblings)
11 siblings, 1 reply; 19+ messages in thread
From: Maarten Lankhorst @ 2026-07-21 14:26 UTC (permalink / raw)
To: intel-xe; +Cc: intel-gfx, Maarten Lankhorst, Matthew Auld
On systems with media GT, extra latency is added when accessing stolen
memory when the GT is in MC6.
Simply disable allocating stolen memory for framebuffers when media gt
is found.
Thanks to the previous patch, it will be possible to preserve the
contents.
Link: https://gitlab.freedesktop.org/drm/xe/kernel/-/work_items/7513
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Link: https://patch.msgid.link/20260630135523.1775379-3-dev@lankhorst.se
Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
---
drivers/gpu/drm/xe/display/xe_display_bo.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/drivers/gpu/drm/xe/display/xe_display_bo.c b/drivers/gpu/drm/xe/display/xe_display_bo.c
index f5102cd0e95d6..9385026a80b97 100644
--- a/drivers/gpu/drm/xe/display/xe_display_bo.c
+++ b/drivers/gpu/drm/xe/display/xe_display_bo.c
@@ -131,6 +131,14 @@ bool xe_display_bo_fbdev_prefer_stolen(struct xe_device *xe, unsigned int size)
if (IS_DGFX(xe))
return false;
+ /*
+ * Avoid stolen memory when the media_gt exists,
+ * because a lot of latency is added when media gt is in MC6
+ */
+ if (xe_device_get_root_tile(xe)->media_gt)
+ return false;
+
+ /* machine hang when doing lots of LMEMBAR accesses */
if (XE_DEVICE_WA(xe, 22019338487_display))
return false;
--
2.53.0
^ permalink raw reply related [flat|nested] 19+ messages in thread* RE: [PATCH v2 1/5] drm/xe/display: Avoid using stolen memory for framebuffer when media gt exists.
2026-07-21 14:26 ` [PATCH v2 1/5] drm/xe/display: Avoid using stolen memory for framebuffer when media gt exists Maarten Lankhorst
@ 2026-07-22 18:18 ` Shankar, Uma
0 siblings, 0 replies; 19+ messages in thread
From: Shankar, Uma @ 2026-07-22 18:18 UTC (permalink / raw)
To: Maarten Lankhorst, intel-xe@lists.freedesktop.org
Cc: intel-gfx@lists.freedesktop.org, Auld, Matthew
> -----Original Message-----
> From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Maarten
> Lankhorst
> Sent: Tuesday, July 21, 2026 7:56 PM
> To: intel-xe@lists.freedesktop.org
> Cc: intel-gfx@lists.freedesktop.org; Maarten Lankhorst <dev@lankhorst.se>;
> Auld, Matthew <matthew.auld@intel.com>
> Subject: [PATCH v2 1/5] drm/xe/display: Avoid using stolen memory for
> framebuffer when media gt exists.
>
> On systems with media GT, extra latency is added when accessing stolen
> memory when the GT is in MC6.
>
> Simply disable allocating stolen memory for framebuffers when media gt is found.
>
> Thanks to the previous patch, it will be possible to preserve the contents.
This line seems a left over comment from earlier version, can be dropped.
> Link: https://gitlab.freedesktop.org/drm/xe/kernel/-/work_items/7513
> Reviewed-by: Matthew Auld <matthew.auld@intel.com>
> Link: https://patch.msgid.link/20260630135523.1775379-3-dev@lankhorst.se
> Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
> ---
> drivers/gpu/drm/xe/display/xe_display_bo.c | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/display/xe_display_bo.c
> b/drivers/gpu/drm/xe/display/xe_display_bo.c
> index f5102cd0e95d6..9385026a80b97 100644
> --- a/drivers/gpu/drm/xe/display/xe_display_bo.c
> +++ b/drivers/gpu/drm/xe/display/xe_display_bo.c
> @@ -131,6 +131,14 @@ bool xe_display_bo_fbdev_prefer_stolen(struct
> xe_device *xe, unsigned int size)
> if (IS_DGFX(xe))
> return false;
>
> + /*
> + * Avoid stolen memory when the media_gt exists,
> + * because a lot of latency is added when media gt is in MC6
> + */
> + if (xe_device_get_root_tile(xe)->media_gt)
> + return false;
> +
> + /* machine hang when doing lots of LMEMBAR accesses */
This comment seems unrelated to the patch.
With above minor nits fixed, looks good to me.
Reviewed-by: Uma Shankar <uma.shankar@intel.com>
> if (XE_DEVICE_WA(xe, 22019338487_display))
> return false;
>
> --
> 2.53.0
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v2 2/5] drm/xe/migrate: Support copying between sysmem and stolen
2026-07-21 14:26 [PATCH v2 0/5] drm/xe/display: Transparant fallback from stolen to sysmem Maarten Lankhorst
2026-07-21 14:26 ` [PATCH v2 1/5] drm/xe/display: Avoid using stolen memory for framebuffer when media gt exists Maarten Lankhorst
@ 2026-07-21 14:26 ` Maarten Lankhorst
2026-07-21 19:25 ` [PATCH] " Maarten Lankhorst
2026-07-21 14:26 ` [PATCH v2 3/5] drm/xe: Raise gt frequency slightly earlier Maarten Lankhorst
` (9 subsequent siblings)
11 siblings, 1 reply; 19+ messages in thread
From: Maarten Lankhorst @ 2026-07-21 14:26 UTC (permalink / raw)
To: intel-xe; +Cc: intel-gfx, Maarten Lankhorst
Stolen memory is used on integrated devices to hold the
firmware framebuffer. In the next commit we want to copy
the framebuffer to normal system memory.
This requires treating stolen memory mostly as VRAM, but
without access to the identity mapping.
On discrete the identity mapping can be used, but we never
need to copy there, so just prohibit identity map on stolen.
Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
---
drivers/gpu/drm/xe/xe_migrate.c | 25 ++++++++++++++++++-------
1 file changed, 18 insertions(+), 7 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
index 4366c41bd3254..c05c64d5e196b 100644
--- a/drivers/gpu/drm/xe/xe_migrate.c
+++ b/drivers/gpu/drm/xe/xe_migrate.c
@@ -518,14 +518,13 @@ int xe_migrate_init(struct xe_migrate *m)
if (err)
return err;
+ /* Somewhat arbitrary to avoid a huge amount of blits */
+ m->min_chunk_size = SZ_64K;
if (IS_DGFX(xe)) {
if (xe_migrate_needs_ccs_emit(xe))
/* min chunk size corresponds to 4K of CCS Metadata */
m->min_chunk_size = SZ_4K * SZ_64K /
xe_device_ccs_bytes(xe, SZ_64K);
- else
- /* Somewhat arbitrary to avoid a huge amount of blits */
- m->min_chunk_size = SZ_64K;
m->min_chunk_size = roundup_pow_of_two(m->min_chunk_size);
drm_dbg(&xe->drm, "Migrate min chunk size is 0x%08llx\n",
(unsigned long long)m->min_chunk_size);
@@ -547,12 +546,20 @@ static u64 max_mem_transfer_per_pass(struct xe_device *xe)
return MAX_PREEMPTDISABLE_TRANSFER;
}
+static bool is_devmem(u32 mem_type)
+{
+ if (mem_type_is_vram(mem_type) || mem_type == XE_PL_STOLEN)
+ return true;
+
+ return false;
+}
+
static u64 xe_migrate_res_sizes(struct xe_migrate *m, struct xe_res_cursor *cur)
{
struct xe_device *xe = tile_to_xe(m->tile);
u64 size = min_t(u64, max_mem_transfer_per_pass(xe), cur->remaining);
- if (mem_type_is_vram(cur->mem_type)) {
+ if (is_devmem(cur->mem_type)) {
/*
* VRAM we want to blit in chunks with sizes aligned to
* min_chunk_size in order for the offset to CCS metadata to be
@@ -574,6 +581,10 @@ static u64 xe_migrate_res_sizes(struct xe_migrate *m, struct xe_res_cursor *cur)
static bool xe_migrate_allow_identity(u64 size, const struct xe_res_cursor *cur)
{
+ /* Stolen only used by integrated, no VRAM or identity map there */
+ if (cur->mem_type == XE_PL_STOLEN)
+ return false;
+
/* If the chunk is not fragmented, allow identity map. */
return cur->size >= size;
}
@@ -899,8 +910,8 @@ static struct dma_fence *__xe_migrate_copy(struct xe_migrate *m,
int err;
bool src_is_pltt = src->mem_type == XE_PL_TT;
bool dst_is_pltt = dst->mem_type == XE_PL_TT;
- bool src_is_vram = mem_type_is_vram(src->mem_type);
- bool dst_is_vram = mem_type_is_vram(dst->mem_type);
+ bool src_is_vram = is_devmem(src->mem_type);
+ bool dst_is_vram = is_devmem(dst->mem_type);
bool type_device = src_bo->ttm.type == ttm_bo_type_device;
bool needs_ccs_emit = type_device && xe_migrate_needs_ccs_emit(xe);
bool copy_ccs = xe_device_has_flat_ccs(xe) &&
@@ -1597,7 +1608,7 @@ struct dma_fence *xe_migrate_clear(struct xe_migrate *m,
struct ttm_resource *dst,
u32 clear_flags)
{
- bool clear_vram = mem_type_is_vram(dst->mem_type);
+ bool clear_vram = is_devmem(dst->mem_type);
bool clear_bo_data = XE_MIGRATE_CLEAR_FLAG_BO_DATA & clear_flags;
bool clear_ccs = XE_MIGRATE_CLEAR_FLAG_CCS_DATA & clear_flags;
struct xe_gt *gt = m->tile->primary_gt;
--
2.53.0
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH] drm/xe/migrate: Support copying between sysmem and stolen
2026-07-21 14:26 ` [PATCH v2 2/5] drm/xe/migrate: Support copying between sysmem and stolen Maarten Lankhorst
@ 2026-07-21 19:25 ` Maarten Lankhorst
2026-07-22 19:01 ` Shankar, Uma
2026-07-23 14:00 ` Matthew Auld
0 siblings, 2 replies; 19+ messages in thread
From: Maarten Lankhorst @ 2026-07-21 19:25 UTC (permalink / raw)
To: intel-xe; +Cc: intel-gfx, Maarten Lankhorst
Stolen memory is used on integrated devices to hold the
firmware framebuffer. In the next commit we want to copy
the framebuffer to normal system memory.
This requires treating stolen memory mostly as VRAM, but
without access to the identity mapping.
On discrete the identity mapping can be used, but we never
need to copy there, so just prohibit identity map on stolen.
Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
---
drivers/gpu/drm/xe/xe_migrate.c | 18 +++++++++++++++---
1 file changed, 15 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
index 4366c41bd3254..505d105472fca 100644
--- a/drivers/gpu/drm/xe/xe_migrate.c
+++ b/drivers/gpu/drm/xe/xe_migrate.c
@@ -574,6 +574,10 @@ static u64 xe_migrate_res_sizes(struct xe_migrate *m, struct xe_res_cursor *cur)
static bool xe_migrate_allow_identity(u64 size, const struct xe_res_cursor *cur)
{
+ /* Stolen only used by integrated, no VRAM or identity map there */
+ if (cur->mem_type == XE_PL_STOLEN)
+ return false;
+
/* If the chunk is not fragmented, allow identity map. */
return cur->size >= size;
}
@@ -879,6 +883,14 @@ static u32 xe_migrate_ccs_copy(struct xe_migrate *m,
return flush_flags;
}
+static bool is_devmem(u32 mem_type)
+{
+ if (mem_type_is_vram(mem_type) || mem_type == XE_PL_STOLEN)
+ return true;
+
+ return false;
+}
+
static struct dma_fence *__xe_migrate_copy(struct xe_migrate *m,
struct xe_bo *src_bo,
struct xe_bo *dst_bo,
@@ -899,8 +911,8 @@ static struct dma_fence *__xe_migrate_copy(struct xe_migrate *m,
int err;
bool src_is_pltt = src->mem_type == XE_PL_TT;
bool dst_is_pltt = dst->mem_type == XE_PL_TT;
- bool src_is_vram = mem_type_is_vram(src->mem_type);
- bool dst_is_vram = mem_type_is_vram(dst->mem_type);
+ bool src_is_vram = is_devmem(src->mem_type);
+ bool dst_is_vram = is_devmem(dst->mem_type);
bool type_device = src_bo->ttm.type == ttm_bo_type_device;
bool needs_ccs_emit = type_device && xe_migrate_needs_ccs_emit(xe);
bool copy_ccs = xe_device_has_flat_ccs(xe) &&
@@ -1597,7 +1609,7 @@ struct dma_fence *xe_migrate_clear(struct xe_migrate *m,
struct ttm_resource *dst,
u32 clear_flags)
{
- bool clear_vram = mem_type_is_vram(dst->mem_type);
+ bool clear_vram = is_devmem(dst->mem_type);
bool clear_bo_data = XE_MIGRATE_CLEAR_FLAG_BO_DATA & clear_flags;
bool clear_ccs = XE_MIGRATE_CLEAR_FLAG_CCS_DATA & clear_flags;
struct xe_gt *gt = m->tile->primary_gt;
--
2.53.0
^ permalink raw reply related [flat|nested] 19+ messages in thread* RE: [PATCH] drm/xe/migrate: Support copying between sysmem and stolen
2026-07-21 19:25 ` [PATCH] " Maarten Lankhorst
@ 2026-07-22 19:01 ` Shankar, Uma
2026-07-23 14:00 ` Matthew Auld
1 sibling, 0 replies; 19+ messages in thread
From: Shankar, Uma @ 2026-07-22 19:01 UTC (permalink / raw)
To: Maarten Lankhorst, intel-xe@lists.freedesktop.org
Cc: intel-gfx@lists.freedesktop.org
> -----Original Message-----
> From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Maarten
> Lankhorst
> Sent: Wednesday, July 22, 2026 12:56 AM
> To: intel-xe@lists.freedesktop.org
> Cc: intel-gfx@lists.freedesktop.org; Maarten Lankhorst <dev@lankhorst.se>
> Subject: [PATCH] drm/xe/migrate: Support copying between sysmem and stolen
>
> Stolen memory is used on integrated devices to hold the firmware framebuffer. In
> the next commit we want to copy the framebuffer to normal system memory.
>
> This requires treating stolen memory mostly as VRAM, but without access to the
> identity mapping.
>
> On discrete the identity mapping can be used, but we never need to copy there, so
> just prohibit identity map on stolen.
>
> Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
> ---
> drivers/gpu/drm/xe/xe_migrate.c | 18 +++++++++++++++---
> 1 file changed, 15 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
> index 4366c41bd3254..505d105472fca 100644
> --- a/drivers/gpu/drm/xe/xe_migrate.c
> +++ b/drivers/gpu/drm/xe/xe_migrate.c
> @@ -574,6 +574,10 @@ static u64 xe_migrate_res_sizes(struct xe_migrate *m,
> struct xe_res_cursor *cur)
>
This migrate_res_sizes still uses the old function instead of is_devmem.
Is it intentional ?
Else all looks good to me.
Reviewed-by: Uma Shankar <uma.shankar@intel.com>
Good to be checked by someone from Core KMD side as well.
> static bool xe_migrate_allow_identity(u64 size, const struct xe_res_cursor *cur)
> {
> + /* Stolen only used by integrated, no VRAM or identity map there */
> + if (cur->mem_type == XE_PL_STOLEN)
> + return false;
> +
> /* If the chunk is not fragmented, allow identity map. */
> return cur->size >= size;
> }
> @@ -879,6 +883,14 @@ static u32 xe_migrate_ccs_copy(struct xe_migrate *m,
> return flush_flags;
> }
>
> +static bool is_devmem(u32 mem_type)
> +{
> + if (mem_type_is_vram(mem_type) || mem_type == XE_PL_STOLEN)
> + return true;
> +
> + return false;
> +}
> +
> static struct dma_fence *__xe_migrate_copy(struct xe_migrate *m,
> struct xe_bo *src_bo,
> struct xe_bo *dst_bo,
> @@ -899,8 +911,8 @@ static struct dma_fence *__xe_migrate_copy(struct
> xe_migrate *m,
> int err;
> bool src_is_pltt = src->mem_type == XE_PL_TT;
> bool dst_is_pltt = dst->mem_type == XE_PL_TT;
> - bool src_is_vram = mem_type_is_vram(src->mem_type);
> - bool dst_is_vram = mem_type_is_vram(dst->mem_type);
> + bool src_is_vram = is_devmem(src->mem_type);
> + bool dst_is_vram = is_devmem(dst->mem_type);
> bool type_device = src_bo->ttm.type == ttm_bo_type_device;
> bool needs_ccs_emit = type_device && xe_migrate_needs_ccs_emit(xe);
> bool copy_ccs = xe_device_has_flat_ccs(xe) && @@ -1597,7 +1609,7
> @@ struct dma_fence *xe_migrate_clear(struct xe_migrate *m,
> struct ttm_resource *dst,
> u32 clear_flags)
> {
> - bool clear_vram = mem_type_is_vram(dst->mem_type);
> + bool clear_vram = is_devmem(dst->mem_type);
> bool clear_bo_data = XE_MIGRATE_CLEAR_FLAG_BO_DATA &
> clear_flags;
> bool clear_ccs = XE_MIGRATE_CLEAR_FLAG_CCS_DATA & clear_flags;
> struct xe_gt *gt = m->tile->primary_gt;
> --
> 2.53.0
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: [PATCH] drm/xe/migrate: Support copying between sysmem and stolen
2026-07-21 19:25 ` [PATCH] " Maarten Lankhorst
2026-07-22 19:01 ` Shankar, Uma
@ 2026-07-23 14:00 ` Matthew Auld
1 sibling, 0 replies; 19+ messages in thread
From: Matthew Auld @ 2026-07-23 14:00 UTC (permalink / raw)
To: Maarten Lankhorst, intel-xe; +Cc: intel-gfx
On 21/07/2026 20:25, Maarten Lankhorst wrote:
> Stolen memory is used on integrated devices to hold the
> firmware framebuffer. In the next commit we want to copy
> the framebuffer to normal system memory.
>
> This requires treating stolen memory mostly as VRAM, but
> without access to the identity mapping.
>
> On discrete the identity mapping can be used, but we never
> need to copy there, so just prohibit identity map on stolen.
>
> Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
> ---
> drivers/gpu/drm/xe/xe_migrate.c | 18 +++++++++++++++---
> 1 file changed, 15 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
> index 4366c41bd3254..505d105472fca 100644
> --- a/drivers/gpu/drm/xe/xe_migrate.c
> +++ b/drivers/gpu/drm/xe/xe_migrate.c
> @@ -574,6 +574,10 @@ static u64 xe_migrate_res_sizes(struct xe_migrate *m, struct xe_res_cursor *cur)
>
> static bool xe_migrate_allow_identity(u64 size, const struct xe_res_cursor *cur)
> {
> + /* Stolen only used by integrated, no VRAM or identity map there */
> + if (cur->mem_type == XE_PL_STOLEN)
> + return false;
> +
> /* If the chunk is not fragmented, allow identity map. */
> return cur->size >= size;
> }
> @@ -879,6 +883,14 @@ static u32 xe_migrate_ccs_copy(struct xe_migrate *m,
> return flush_flags;
> }
>
> +static bool is_devmem(u32 mem_type)
> +{
> + if (mem_type_is_vram(mem_type) || mem_type == XE_PL_STOLEN)
> + return true;
> +
> + return false;
> +}
Do we need to worry about XE_PPGTT_PTE_DM in xelp_pte_encode_addr() ? I
don't think that bit is used for stolen until recent platforms? We seem
to guard against this in xelp_pte_encode_bo() with xe_bo_is_stolen_devmem().
> +
> static struct dma_fence *__xe_migrate_copy(struct xe_migrate *m,
> struct xe_bo *src_bo,
> struct xe_bo *dst_bo,
> @@ -899,8 +911,8 @@ static struct dma_fence *__xe_migrate_copy(struct xe_migrate *m,
> int err;
> bool src_is_pltt = src->mem_type == XE_PL_TT;
> bool dst_is_pltt = dst->mem_type == XE_PL_TT;
> - bool src_is_vram = mem_type_is_vram(src->mem_type);
> - bool dst_is_vram = mem_type_is_vram(dst->mem_type);
> + bool src_is_vram = is_devmem(src->mem_type);
> + bool dst_is_vram = is_devmem(dst->mem_type);
> bool type_device = src_bo->ttm.type == ttm_bo_type_device;
> bool needs_ccs_emit = type_device && xe_migrate_needs_ccs_emit(xe);
> bool copy_ccs = xe_device_has_flat_ccs(xe) &&
> @@ -1597,7 +1609,7 @@ struct dma_fence *xe_migrate_clear(struct xe_migrate *m,
> struct ttm_resource *dst,
> u32 clear_flags)
> {
> - bool clear_vram = mem_type_is_vram(dst->mem_type);
> + bool clear_vram = is_devmem(dst->mem_type);
Do we actually trigger this path for stolen? Or is this just for
symmetry with copy?
Also, I guess overall idea here is to call copy() directly, and not mess
with this at the bo_move()/validate() level?
> bool clear_bo_data = XE_MIGRATE_CLEAR_FLAG_BO_DATA & clear_flags;
> bool clear_ccs = XE_MIGRATE_CLEAR_FLAG_CCS_DATA & clear_flags;
> struct xe_gt *gt = m->tile->primary_gt;
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v2 3/5] drm/xe: Raise gt frequency slightly earlier.
2026-07-21 14:26 [PATCH v2 0/5] drm/xe/display: Transparant fallback from stolen to sysmem Maarten Lankhorst
2026-07-21 14:26 ` [PATCH v2 1/5] drm/xe/display: Avoid using stolen memory for framebuffer when media gt exists Maarten Lankhorst
2026-07-21 14:26 ` [PATCH v2 2/5] drm/xe/migrate: Support copying between sysmem and stolen Maarten Lankhorst
@ 2026-07-21 14:26 ` Maarten Lankhorst
2026-07-21 14:26 ` [PATCH v2 4/5] HACK: Always fallback Maarten Lankhorst
` (8 subsequent siblings)
11 siblings, 0 replies; 19+ messages in thread
From: Maarten Lankhorst @ 2026-07-21 14:26 UTC (permalink / raw)
To: intel-xe; +Cc: intel-gfx, Maarten Lankhorst, Matthew Brost
Move raising the gt frequency to before display_register, so the
blit that's potentially performed to copy stolen memory to system
memory will run at full speed.
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
---
drivers/gpu/drm/xe/xe_device.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
index 4eed9a251e65b..e6c4e1358a614 100644
--- a/drivers/gpu/drm/xe/xe_device.c
+++ b/drivers/gpu/drm/xe/xe_device.c
@@ -1077,6 +1077,9 @@ int xe_device_probe(struct xe_device *xe)
if (err)
return err;
+ for_each_gt(gt, xe, id)
+ xe_gt_sanitize_freq(gt);
+
xe_display_register(xe);
err = xe_oa_register(xe);
@@ -1101,9 +1104,6 @@ int xe_device_probe(struct xe_device *xe)
if (err)
goto err_unregister_display;
- for_each_gt(gt, xe, id)
- xe_gt_sanitize_freq(gt);
-
xe_vsec_init(xe);
err = xe_sriov_init_late(xe);
--
2.53.0
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH v2 4/5] HACK: Always fallback
2026-07-21 14:26 [PATCH v2 0/5] drm/xe/display: Transparant fallback from stolen to sysmem Maarten Lankhorst
` (2 preceding siblings ...)
2026-07-21 14:26 ` [PATCH v2 3/5] drm/xe: Raise gt frequency slightly earlier Maarten Lankhorst
@ 2026-07-21 14:26 ` Maarten Lankhorst
2026-07-21 14:26 ` [PATCH v2 5/5] drm/i915: Introduce intel_bo_fbdev_bios_fb_takeover() Maarten Lankhorst
` (7 subsequent siblings)
11 siblings, 0 replies; 19+ messages in thread
From: Maarten Lankhorst @ 2026-07-21 14:26 UTC (permalink / raw)
To: intel-xe; +Cc: intel-gfx, Maarten Lankhorst
Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
---
drivers/gpu/drm/xe/display/xe_display_bo.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/gpu/drm/xe/display/xe_display_bo.c b/drivers/gpu/drm/xe/display/xe_display_bo.c
index 9385026a80b97..d78d893210c4f 100644
--- a/drivers/gpu/drm/xe/display/xe_display_bo.c
+++ b/drivers/gpu/drm/xe/display/xe_display_bo.c
@@ -142,6 +142,8 @@ bool xe_display_bo_fbdev_prefer_stolen(struct xe_device *xe, unsigned int size)
if (XE_DEVICE_WA(xe, 22019338487_display))
return false;
+ return false;
+
/*
* If the FB is too big, just don't use it since fbdev is not very
* important and we should probably use that space with FBC or other
--
2.53.0
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH v2 5/5] drm/i915: Introduce intel_bo_fbdev_bios_fb_takeover()
2026-07-21 14:26 [PATCH v2 0/5] drm/xe/display: Transparant fallback from stolen to sysmem Maarten Lankhorst
` (3 preceding siblings ...)
2026-07-21 14:26 ` [PATCH v2 4/5] HACK: Always fallback Maarten Lankhorst
@ 2026-07-21 14:26 ` Maarten Lankhorst
2026-07-23 9:06 ` Shankar, Uma
2026-07-21 14:30 ` ✗ CI.checkpatch: warning for drm/xe/display: Transparant fallback from stolen to sysmem. (rev2) Patchwork
` (6 subsequent siblings)
11 siblings, 1 reply; 19+ messages in thread
From: Maarten Lankhorst @ 2026-07-21 14:26 UTC (permalink / raw)
To: intel-xe; +Cc: intel-gfx, Maarten Lankhorst, Ville Syrjälä
Pull the "do we want to use stolen for the BIOS FB?" checks into
a new intel_bo_fbdev_bios_fb_takeover() helper, and defer that
decision until we're ready to reallocate the fbdev FB. This way
even if we don't want to ultimately use the BIOS FB we'll keep
the plane enabled until the replacement FB is ready. Should
hopefully result in fewer display blinks during boot.
Additionally, on some platforms this allows us to re-create the
framebuffer when stolen memory is not suitable, using the blitter
engine to copy the contents to system memory without causing
any flickering by not preserving the stolen memory allocation.
Based on a similar patch by Ville, that introduced
intel_bo_fbdev_bios_fb_ok().
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
---
drivers/gpu/drm/i915/display/intel_bo.c | 7 ++
drivers/gpu/drm/i915/display/intel_bo.h | 1 +
drivers/gpu/drm/i915/display/intel_fbdev.c | 68 ++++++++++++++++---
drivers/gpu/drm/i915/i915_bo.c | 14 +++-
drivers/gpu/drm/i915/i915_bo.h | 6 --
drivers/gpu/drm/i915/i915_initial_plane.c | 14 ----
drivers/gpu/drm/xe/display/xe_display_bo.c | 56 ++++++++++++++-
drivers/gpu/drm/xe/display/xe_display_bo.h | 6 --
drivers/gpu/drm/xe/display/xe_initial_plane.c | 8 ---
include/drm/intel/display_parent_interface.h | 1 +
10 files changed, 134 insertions(+), 47 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_bo.c b/drivers/gpu/drm/i915/display/intel_bo.c
index 8ecdbb7e39f3d..878c62cb48b4f 100644
--- a/drivers/gpu/drm/i915/display/intel_bo.c
+++ b/drivers/gpu/drm/i915/display/intel_bo.c
@@ -92,6 +92,13 @@ u32 intel_bo_fbdev_pitch_align(struct intel_display *display, u32 stride)
return display->parent->bo->fbdev_pitch_align(stride);
}
+struct drm_gem_object *intel_bo_fbdev_bios_fb_takeover(struct drm_gem_object *obj)
+{
+ struct intel_display *display = to_intel_display(obj->dev);
+
+ return display->parent->bo->fbdev_bios_fb_takeover(obj);
+}
+
struct drm_gem_object *intel_bo_fbdev_create(struct intel_display *display, int size)
{
return display->parent->bo->fbdev_create(display->drm, size);
diff --git a/drivers/gpu/drm/i915/display/intel_bo.h b/drivers/gpu/drm/i915/display/intel_bo.h
index 348f7fa669608..0410ee9c6d2e1 100644
--- a/drivers/gpu/drm/i915/display/intel_bo.h
+++ b/drivers/gpu/drm/i915/display/intel_bo.h
@@ -34,6 +34,7 @@ struct drm_gem_object *intel_bo_framebuffer_lookup(struct intel_display *display
const struct drm_mode_fb_cmd2 *user_mode_cmd);
u32 intel_bo_fbdev_pitch_align(struct intel_display *display, u32 stride);
+struct drm_gem_object *intel_bo_fbdev_bios_fb_takeover(struct drm_gem_object *obj);
struct drm_gem_object *intel_bo_fbdev_create(struct intel_display *display, int size);
void intel_bo_fbdev_destroy(struct drm_gem_object *obj);
int intel_bo_fbdev_fill_info(struct drm_gem_object *obj, struct fb_info *info,
diff --git a/drivers/gpu/drm/i915/display/intel_fbdev.c b/drivers/gpu/drm/i915/display/intel_fbdev.c
index db0e36dd8722f..aac35b1ec0306 100644
--- a/drivers/gpu/drm/i915/display/intel_fbdev.c
+++ b/drivers/gpu/drm/i915/display/intel_fbdev.c
@@ -225,11 +225,11 @@ static void intel_fbdev_fill_mode_cmd(struct intel_display *display,
static struct intel_framebuffer *
__intel_fbdev_fb_alloc(struct intel_display *display,
- struct drm_fb_helper_surface_size *sizes)
+ struct drm_fb_helper_surface_size *sizes,
+ struct drm_gem_object *obj)
{
struct drm_mode_fb_cmd2 mode_cmd = {};
struct drm_framebuffer *fb;
- struct drm_gem_object *obj;
int size;
intel_fbdev_fill_mode_cmd(display, sizes, &mode_cmd);
@@ -262,32 +262,68 @@ __intel_fbdev_fb_alloc(struct intel_display *display,
}
-static bool bios_fb_ok(const struct intel_framebuffer *fb,
- const struct drm_fb_helper_surface_size *sizes)
+static struct intel_framebuffer *
+__intel_fbdev_fb_realloc(struct intel_display *display,
+ const struct drm_framebuffer *orig_fb,
+ struct drm_gem_object *obj)
+{
+ struct drm_framebuffer *new_fb;
+ struct drm_mode_fb_cmd2 mode_cmd = {
+ .flags = DRM_MODE_FB_MODIFIERS,
+ .width = orig_fb->width,
+ .height = orig_fb->height,
+ .pitches[0] = orig_fb->pitches[0],
+ .offsets[0] = orig_fb->offsets[0],
+ .pixel_format = orig_fb->format->format,
+ .modifier[0] = orig_fb->modifier,
+ };
+
+ new_fb = intel_framebuffer_create(obj, orig_fb->format, &mode_cmd);
+
+ if (IS_ERR(new_fb)) {
+ intel_bo_fbdev_destroy(obj);
+ return ERR_CAST(new_fb);
+ }
+
+ drm_gem_object_put(obj);
+ return to_intel_framebuffer(new_fb);
+}
+
+static struct intel_framebuffer *bios_fb_pick(struct intel_framebuffer *fb,
+ const struct drm_fb_helper_surface_size *sizes)
{
struct intel_display *display = to_intel_display(fb->base.dev);
int width = fb->base.width;
int height = fb->base.height;
int depth = fb->base.format->depth;
int bpp = fb->base.format->cpp[0] * 8;
+ struct drm_gem_object *new;
if (sizes->fb_width > width || sizes->fb_height > height) {
drm_dbg_kms(display->drm,
"BIOS fb too small (%dx%d), we require (%dx%d), releasing it\n",
width, height, sizes->fb_width, sizes->fb_height);
- return false;
+ return NULL;
}
if (sizes->surface_depth != depth || sizes->surface_bpp != bpp) {
drm_dbg_kms(display->drm,
"BIOS fb using wrong depth/bpp (%d/%d), we require (%d/%d), releasing it\n",
depth, bpp, sizes->surface_depth, sizes->surface_bpp);
- return false;
+ return NULL;
}
- return true;
+ new = intel_bo_fbdev_bios_fb_takeover(fb->base.obj[0]);
+ if (IS_ERR(new))
+ return ERR_CAST(new);
+ if (fb->base.obj[0] == new)
+ return fb;
+
+ /* Different object, re-create an intel_framebuffer around it */
+ return __intel_fbdev_fb_realloc(display, &fb->base, new);
}
+
int intel_fbdev_driver_fbdev_probe(struct drm_fb_helper *helper,
struct drm_fb_helper_surface_size *sizes)
{
@@ -305,9 +341,19 @@ int intel_fbdev_driver_fbdev_probe(struct drm_fb_helper *helper,
ifbdev->fb = NULL;
- if (fb && !bios_fb_ok(fb, sizes)) {
- drm_framebuffer_put(&fb->base);
- fb = NULL;
+ if (fb) {
+ struct intel_framebuffer *bios_fb =
+ bios_fb_pick(fb, sizes);
+
+ if (IS_ERR(bios_fb)) {
+ drm_dbg_kms(display->drm, "Re-using BIOS fb failed (%pe).", bios_fb);
+ bios_fb = NULL;
+ }
+
+ if (fb != bios_fb) {
+ drm_framebuffer_put(&fb->base);
+ fb = bios_fb;
+ }
}
wakeref = intel_display_rpm_get(display);
@@ -316,7 +362,7 @@ int intel_fbdev_driver_fbdev_probe(struct drm_fb_helper *helper,
drm_dbg_kms(display->drm,
"no BIOS fb, allocating a new one\n");
- fb = __intel_fbdev_fb_alloc(display, sizes);
+ fb = __intel_fbdev_fb_alloc(display, sizes, NULL);
if (IS_ERR(fb)) {
ret = PTR_ERR(fb);
goto out_unlock;
diff --git a/drivers/gpu/drm/i915/i915_bo.c b/drivers/gpu/drm/i915/i915_bo.c
index 559341103ca7d..fe11c0be81013 100644
--- a/drivers/gpu/drm/i915/i915_bo.c
+++ b/drivers/gpu/drm/i915/i915_bo.c
@@ -150,7 +150,7 @@ static u32 i915_bo_fbdev_pitch_align(u32 stride)
return ALIGN(stride, 64);
}
-bool i915_bo_fbdev_prefer_stolen(struct drm_i915_private *i915, unsigned int size)
+static bool i915_bo_fbdev_prefer_stolen(struct drm_i915_private *i915, unsigned int size)
{
/* Skip stolen on MTL as Wa_22018444074 mitigation. */
if (IS_METEORLAKE(i915))
@@ -164,6 +164,17 @@ bool i915_bo_fbdev_prefer_stolen(struct drm_i915_private *i915, unsigned int siz
return i915->dsm.usable_size >= size * 2;
}
+static struct drm_gem_object *i915_bo_fbdev_bios_fb_takeover(struct drm_gem_object *obj)
+{
+ struct drm_i915_private *i915 = to_i915(obj->dev);
+
+ if (HAS_LMEM(i915) ||
+ i915_bo_fbdev_prefer_stolen(i915, obj->size))
+ return obj;
+
+ return ERR_PTR(-EIO);
+}
+
static struct drm_gem_object *i915_bo_fbdev_create(struct drm_device *drm, int size)
{
struct drm_i915_private *i915 = to_i915(drm);
@@ -262,6 +273,7 @@ const struct intel_display_bo_interface i915_display_bo_interface = {
.framebuffer_fini = i915_bo_framebuffer_fini,
.framebuffer_lookup = i915_bo_framebuffer_lookup,
#if IS_ENABLED(CONFIG_DRM_FBDEV_EMULATION)
+ .fbdev_bios_fb_takeover = i915_bo_fbdev_bios_fb_takeover,
.fbdev_create = i915_bo_fbdev_create,
.fbdev_destroy = i915_bo_fbdev_destroy,
.fbdev_fill_info = i915_bo_fbdev_fill_info,
diff --git a/drivers/gpu/drm/i915/i915_bo.h b/drivers/gpu/drm/i915/i915_bo.h
index 39ba62696550e..57255d052dd9a 100644
--- a/drivers/gpu/drm/i915/i915_bo.h
+++ b/drivers/gpu/drm/i915/i915_bo.h
@@ -4,12 +4,6 @@
#ifndef __I915_BO_H__
#define __I915_BO_H__
-#include <linux/types.h>
-
-struct drm_i915_private;
-
-bool i915_bo_fbdev_prefer_stolen(struct drm_i915_private *i915, unsigned int size);
-
extern const struct intel_display_bo_interface i915_display_bo_interface;
#endif /* __I915_BO_H__ */
diff --git a/drivers/gpu/drm/i915/i915_initial_plane.c b/drivers/gpu/drm/i915/i915_initial_plane.c
index 98858a78e46a3..d7792b65ec150 100644
--- a/drivers/gpu/drm/i915/i915_initial_plane.c
+++ b/drivers/gpu/drm/i915/i915_initial_plane.c
@@ -12,7 +12,6 @@
#include "gem/i915_gem_lmem.h"
#include "gem/i915_gem_region.h"
-#include "i915_bo.h"
#include "i915_drv.h"
#include "i915_initial_plane.h"
@@ -102,19 +101,6 @@ initial_plane_vma(struct drm_i915_private *i915,
mem->min_page_size);
size -= base;
- /*
- * If the FB is too big, just don't use it since fbdev is not very
- * important and we should probably use that space with FBC or other
- * features.
- */
- if (IS_ENABLED(CONFIG_DRM_FBDEV_EMULATION) &&
- IS_ENABLED(CONFIG_FRAMEBUFFER_CONSOLE) &&
- mem == i915->mm.stolen_region &&
- !i915_bo_fbdev_prefer_stolen(i915, size)) {
- drm_dbg_kms(&i915->drm, "Initial FB size exceeds half of stolen, discarding\n");
- return NULL;
- }
-
obj = i915_gem_object_create_region_at(mem, phys_base, size,
I915_BO_ALLOC_USER |
I915_BO_PREALLOC);
diff --git a/drivers/gpu/drm/xe/display/xe_display_bo.c b/drivers/gpu/drm/xe/display/xe_display_bo.c
index d78d893210c4f..188796ae85933 100644
--- a/drivers/gpu/drm/xe/display/xe_display_bo.c
+++ b/drivers/gpu/drm/xe/display/xe_display_bo.c
@@ -9,6 +9,7 @@
#include "intel_fb.h"
#include "xe_bo.h"
#include "xe_display_bo.h"
+#include "xe_migrate.h"
#include "xe_pxp.h"
#include "xe_ttm_stolen_mgr.h"
#include "xe_wa.h"
@@ -120,7 +121,7 @@ static u32 xe_display_bo_fbdev_pitch_align(u32 stride)
return ALIGN(stride, XE_PAGE_SIZE);
}
-bool xe_display_bo_fbdev_prefer_stolen(struct xe_device *xe, unsigned int size)
+static bool xe_display_bo_fbdev_prefer_stolen(struct xe_device *xe, unsigned int size)
{
struct ttm_resource_manager *stolen;
@@ -152,6 +153,58 @@ bool xe_display_bo_fbdev_prefer_stolen(struct xe_device *xe, unsigned int size)
return stolen->size >= (size * 2) >> PAGE_SHIFT;
}
+static struct drm_gem_object *xe_display_bo_fbdev_bios_fb_takeover(struct drm_gem_object *obj)
+{
+ struct xe_bo *orig_bo = gem_to_xe_bo(obj), *copy_bo;
+ struct xe_device *xe = xe_bo_device(orig_bo);
+ struct xe_validation_ctx ctx;
+ struct drm_exec exec;
+ int err;
+
+ if (IS_DGFX(xe) ||
+ xe_display_bo_fbdev_prefer_stolen(xe, xe_bo_size(orig_bo)))
+ return obj;
+
+ copy_bo = xe_bo_create_pin_map_novm(xe, xe_device_get_root_tile(xe), xe_bo_size(orig_bo),
+ ttm_bo_type_kernel,
+ XE_BO_FLAG_FORCE_WC | XE_BO_FLAG_SYSTEM | XE_BO_FLAG_GGTT,
+ false);
+ if (IS_ERR(copy_bo))
+ return ERR_CAST(copy_bo);
+
+ xe_validation_guard(&ctx, &xe->val, &exec, (struct xe_val_flags) {}, err) {
+ struct dma_fence *fence;
+
+ drm_exec_lock_obj(&exec, &orig_bo->ttm.base);
+ drm_exec_retry_on_contention(&exec);
+
+ drm_exec_lock_obj(&exec, ©_bo->ttm.base);
+ drm_exec_retry_on_contention(&exec);
+
+ err = dma_resv_reserve_fences(orig_bo->ttm.base.resv, 1);
+ if (err)
+ break;
+
+ err = dma_resv_reserve_fences(copy_bo->ttm.base.resv, 1);
+ if (err)
+ break;
+
+ fence = xe_migrate_copy(xe_device_get_root_tile(xe)->migrate, orig_bo, copy_bo,
+ orig_bo->ttm.resource, copy_bo->ttm.resource, false);
+ if (IS_ERR(fence)) {
+ err = PTR_ERR(fence);
+ break;
+ }
+
+ dma_resv_add_fence(copy_bo->ttm.base.resv, fence, DMA_RESV_USAGE_KERNEL);
+ dma_resv_add_fence(orig_bo->ttm.base.resv, fence, DMA_RESV_USAGE_BOOKKEEP);
+ return ©_bo->ttm.base;
+ }
+
+ xe_bo_unpin_map_no_vm(copy_bo);
+ return ERR_PTR(err);
+}
+
static struct drm_gem_object *xe_display_bo_fbdev_create(struct drm_device *drm, int size)
{
struct xe_device *xe = to_xe_device(drm);
@@ -214,6 +267,7 @@ const struct intel_display_bo_interface xe_display_bo_interface = {
.framebuffer_fini = xe_display_bo_framebuffer_fini,
.framebuffer_lookup = xe_display_bo_framebuffer_lookup,
#if IS_ENABLED(CONFIG_DRM_FBDEV_EMULATION)
+ .fbdev_bios_fb_takeover = xe_display_bo_fbdev_bios_fb_takeover,
.fbdev_create = xe_display_bo_fbdev_create,
.fbdev_destroy = xe_display_bo_fbdev_destroy,
.fbdev_fill_info = xe_display_bo_fbdev_fill_info,
diff --git a/drivers/gpu/drm/xe/display/xe_display_bo.h b/drivers/gpu/drm/xe/display/xe_display_bo.h
index c72056884ff41..6879c104b0b1f 100644
--- a/drivers/gpu/drm/xe/display/xe_display_bo.h
+++ b/drivers/gpu/drm/xe/display/xe_display_bo.h
@@ -4,12 +4,6 @@
#ifndef __XE_DISPLAY_BO_H__
#define __XE_DISPLAY_BO_H__
-#include <linux/types.h>
-
-struct xe_device;
-
-bool xe_display_bo_fbdev_prefer_stolen(struct xe_device *xe, unsigned int size);
-
extern const struct intel_display_bo_interface xe_display_bo_interface;
#endif
diff --git a/drivers/gpu/drm/xe/display/xe_initial_plane.c b/drivers/gpu/drm/xe/display/xe_initial_plane.c
index 0f86b73036d03..8988c07e61934 100644
--- a/drivers/gpu/drm/xe/display/xe_initial_plane.c
+++ b/drivers/gpu/drm/xe/display/xe_initial_plane.c
@@ -14,7 +14,6 @@
#include "intel_display_types.h"
#include "xe_bo.h"
-#include "xe_display_bo.h"
#include "xe_display_vma.h"
#include "xe_fb_pin.h"
#include "xe_ggtt.h"
@@ -102,13 +101,6 @@ initial_plane_bo(struct xe_device *xe,
phys_base = base;
flags |= XE_BO_FLAG_STOLEN;
-
- if (IS_ENABLED(CONFIG_FRAMEBUFFER_CONSOLE) &&
- IS_ENABLED(CONFIG_DRM_FBDEV_EMULATION) &&
- !xe_display_bo_fbdev_prefer_stolen(xe, plane_config->size)) {
- drm_info(&xe->drm, "Initial FB size exceeds half of stolen, discarding\n");
- return NULL;
- }
}
bo = xe_bo_create_pin_map_at_novm(xe, tile0, size, phys_base,
diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
index de395df9ca301..b218f8ecbe22a 100644
--- a/include/drm/intel/display_parent_interface.h
+++ b/include/drm/intel/display_parent_interface.h
@@ -58,6 +58,7 @@ struct intel_display_bo_interface {
struct drm_file *filp,
const struct drm_mode_fb_cmd2 *user_mode_cmd);
#if IS_ENABLED(CONFIG_DRM_FBDEV_EMULATION)
+ struct drm_gem_object *(*fbdev_bios_fb_takeover)(struct drm_gem_object *obj);
struct drm_gem_object *(*fbdev_create)(struct drm_device *drm, int size);
void (*fbdev_destroy)(struct drm_gem_object *obj);
int (*fbdev_fill_info)(struct drm_gem_object *obj, struct fb_info *info, struct i915_vma *vma);
--
2.53.0
^ permalink raw reply related [flat|nested] 19+ messages in thread* RE: [PATCH v2 5/5] drm/i915: Introduce intel_bo_fbdev_bios_fb_takeover()
2026-07-21 14:26 ` [PATCH v2 5/5] drm/i915: Introduce intel_bo_fbdev_bios_fb_takeover() Maarten Lankhorst
@ 2026-07-23 9:06 ` Shankar, Uma
2026-07-23 13:37 ` Maarten Lankhorst
0 siblings, 1 reply; 19+ messages in thread
From: Shankar, Uma @ 2026-07-23 9:06 UTC (permalink / raw)
To: Maarten Lankhorst, intel-xe@lists.freedesktop.org, B S, Karthik
Cc: intel-gfx@lists.freedesktop.org, Ville Syrjälä
> -----Original Message-----
> From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf Of Maarten
> Lankhorst
> Sent: Tuesday, July 21, 2026 7:56 PM
> To: intel-xe@lists.freedesktop.org
> Cc: intel-gfx@lists.freedesktop.org; Maarten Lankhorst <dev@lankhorst.se>; Ville
> Syrjälä <ville.syrjala@linux.intel.com>
> Subject: [PATCH v2 5/5] drm/i915: Introduce intel_bo_fbdev_bios_fb_takeover()
>
> Pull the "do we want to use stolen for the BIOS FB?" checks into a new
> intel_bo_fbdev_bios_fb_takeover() helper, and defer that decision until we're ready
> to reallocate the fbdev FB. This way even if we don't want to ultimately use the
> BIOS FB we'll keep the plane enabled until the replacement FB is ready. Should
> hopefully result in fewer display blinks during boot.
>
> Additionally, on some platforms this allows us to re-create the framebuffer when
> stolen memory is not suitable, using the blitter engine to copy the contents to
> system memory without causing any flickering by not preserving the stolen
> memory allocation.
>
> Based on a similar patch by Ville, that introduced intel_bo_fbdev_bios_fb_ok().
Looks Good to me.
Reviewed-by: Uma Shankar <uma.shankar@intel.com>
Please get an ack from someone from Core KMD as well.
@B S, Karthik Can we ask someone to check and give a Tested-by from validation
side for this series.
Regards,
Uma Shankar
> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
> ---
> drivers/gpu/drm/i915/display/intel_bo.c | 7 ++
> drivers/gpu/drm/i915/display/intel_bo.h | 1 +
> drivers/gpu/drm/i915/display/intel_fbdev.c | 68 ++++++++++++++++---
> drivers/gpu/drm/i915/i915_bo.c | 14 +++-
> drivers/gpu/drm/i915/i915_bo.h | 6 --
> drivers/gpu/drm/i915/i915_initial_plane.c | 14 ----
> drivers/gpu/drm/xe/display/xe_display_bo.c | 56 ++++++++++++++-
> drivers/gpu/drm/xe/display/xe_display_bo.h | 6 --
> drivers/gpu/drm/xe/display/xe_initial_plane.c | 8 ---
> include/drm/intel/display_parent_interface.h | 1 +
> 10 files changed, 134 insertions(+), 47 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_bo.c
> b/drivers/gpu/drm/i915/display/intel_bo.c
> index 8ecdbb7e39f3d..878c62cb48b4f 100644
> --- a/drivers/gpu/drm/i915/display/intel_bo.c
> +++ b/drivers/gpu/drm/i915/display/intel_bo.c
> @@ -92,6 +92,13 @@ u32 intel_bo_fbdev_pitch_align(struct intel_display
> *display, u32 stride)
> return display->parent->bo->fbdev_pitch_align(stride);
> }
>
> +struct drm_gem_object *intel_bo_fbdev_bios_fb_takeover(struct
> +drm_gem_object *obj) {
> + struct intel_display *display = to_intel_display(obj->dev);
> +
> + return display->parent->bo->fbdev_bios_fb_takeover(obj);
> +}
> +
> struct drm_gem_object *intel_bo_fbdev_create(struct intel_display *display, int
> size) {
> return display->parent->bo->fbdev_create(display->drm, size); diff --git
> a/drivers/gpu/drm/i915/display/intel_bo.h b/drivers/gpu/drm/i915/display/intel_bo.h
> index 348f7fa669608..0410ee9c6d2e1 100644
> --- a/drivers/gpu/drm/i915/display/intel_bo.h
> +++ b/drivers/gpu/drm/i915/display/intel_bo.h
> @@ -34,6 +34,7 @@ struct drm_gem_object *intel_bo_framebuffer_lookup(struct
> intel_display *display
> const struct
> drm_mode_fb_cmd2 *user_mode_cmd);
>
> u32 intel_bo_fbdev_pitch_align(struct intel_display *display, u32 stride);
> +struct drm_gem_object *intel_bo_fbdev_bios_fb_takeover(struct
> +drm_gem_object *obj);
> struct drm_gem_object *intel_bo_fbdev_create(struct intel_display *display, int
> size); void intel_bo_fbdev_destroy(struct drm_gem_object *obj); int
> intel_bo_fbdev_fill_info(struct drm_gem_object *obj, struct fb_info *info, diff --git
> a/drivers/gpu/drm/i915/display/intel_fbdev.c
> b/drivers/gpu/drm/i915/display/intel_fbdev.c
> index db0e36dd8722f..aac35b1ec0306 100644
> --- a/drivers/gpu/drm/i915/display/intel_fbdev.c
> +++ b/drivers/gpu/drm/i915/display/intel_fbdev.c
> @@ -225,11 +225,11 @@ static void intel_fbdev_fill_mode_cmd(struct
> intel_display *display,
>
> static struct intel_framebuffer *
> __intel_fbdev_fb_alloc(struct intel_display *display,
> - struct drm_fb_helper_surface_size *sizes)
> + struct drm_fb_helper_surface_size *sizes,
> + struct drm_gem_object *obj)
> {
> struct drm_mode_fb_cmd2 mode_cmd = {};
> struct drm_framebuffer *fb;
> - struct drm_gem_object *obj;
> int size;
>
> intel_fbdev_fill_mode_cmd(display, sizes, &mode_cmd); @@ -262,32
> +262,68 @@ __intel_fbdev_fb_alloc(struct intel_display *display,
>
> }
>
> -static bool bios_fb_ok(const struct intel_framebuffer *fb,
> - const struct drm_fb_helper_surface_size *sizes)
> +static struct intel_framebuffer *
> +__intel_fbdev_fb_realloc(struct intel_display *display,
> + const struct drm_framebuffer *orig_fb,
> + struct drm_gem_object *obj)
> +{
> + struct drm_framebuffer *new_fb;
> + struct drm_mode_fb_cmd2 mode_cmd = {
> + .flags = DRM_MODE_FB_MODIFIERS,
> + .width = orig_fb->width,
> + .height = orig_fb->height,
> + .pitches[0] = orig_fb->pitches[0],
> + .offsets[0] = orig_fb->offsets[0],
> + .pixel_format = orig_fb->format->format,
> + .modifier[0] = orig_fb->modifier,
> + };
> +
> + new_fb = intel_framebuffer_create(obj, orig_fb->format, &mode_cmd);
> +
> + if (IS_ERR(new_fb)) {
> + intel_bo_fbdev_destroy(obj);
> + return ERR_CAST(new_fb);
> + }
> +
> + drm_gem_object_put(obj);
> + return to_intel_framebuffer(new_fb);
> +}
> +
> +static struct intel_framebuffer *bios_fb_pick(struct intel_framebuffer *fb,
> + const struct
> drm_fb_helper_surface_size *sizes)
> {
> struct intel_display *display = to_intel_display(fb->base.dev);
> int width = fb->base.width;
> int height = fb->base.height;
> int depth = fb->base.format->depth;
> int bpp = fb->base.format->cpp[0] * 8;
> + struct drm_gem_object *new;
>
> if (sizes->fb_width > width || sizes->fb_height > height) {
> drm_dbg_kms(display->drm,
> "BIOS fb too small (%dx%d), we require (%dx%d),
> releasing it\n",
> width, height, sizes->fb_width, sizes->fb_height);
> - return false;
> + return NULL;
> }
>
> if (sizes->surface_depth != depth || sizes->surface_bpp != bpp) {
> drm_dbg_kms(display->drm,
> "BIOS fb using wrong depth/bpp (%d/%d), we require
> (%d/%d), releasing it\n",
> depth, bpp, sizes->surface_depth, sizes-
> >surface_bpp);
> - return false;
> + return NULL;
> }
>
> - return true;
> + new = intel_bo_fbdev_bios_fb_takeover(fb->base.obj[0]);
> + if (IS_ERR(new))
> + return ERR_CAST(new);
> + if (fb->base.obj[0] == new)
> + return fb;
> +
> + /* Different object, re-create an intel_framebuffer around it */
> + return __intel_fbdev_fb_realloc(display, &fb->base, new);
> }
>
> +
> int intel_fbdev_driver_fbdev_probe(struct drm_fb_helper *helper,
> struct drm_fb_helper_surface_size *sizes) {
> @@ -305,9 +341,19 @@ int intel_fbdev_driver_fbdev_probe(struct drm_fb_helper
> *helper,
>
> ifbdev->fb = NULL;
>
> - if (fb && !bios_fb_ok(fb, sizes)) {
> - drm_framebuffer_put(&fb->base);
> - fb = NULL;
> + if (fb) {
> + struct intel_framebuffer *bios_fb =
> + bios_fb_pick(fb, sizes);
> +
> + if (IS_ERR(bios_fb)) {
> + drm_dbg_kms(display->drm, "Re-using BIOS fb failed
> (%pe).", bios_fb);
> + bios_fb = NULL;
> + }
> +
> + if (fb != bios_fb) {
> + drm_framebuffer_put(&fb->base);
> + fb = bios_fb;
> + }
> }
>
> wakeref = intel_display_rpm_get(display); @@ -316,7 +362,7 @@ int
> intel_fbdev_driver_fbdev_probe(struct drm_fb_helper *helper,
> drm_dbg_kms(display->drm,
> "no BIOS fb, allocating a new one\n");
>
> - fb = __intel_fbdev_fb_alloc(display, sizes);
> + fb = __intel_fbdev_fb_alloc(display, sizes, NULL);
> if (IS_ERR(fb)) {
> ret = PTR_ERR(fb);
> goto out_unlock;
> diff --git a/drivers/gpu/drm/i915/i915_bo.c b/drivers/gpu/drm/i915/i915_bo.c index
> 559341103ca7d..fe11c0be81013 100644
> --- a/drivers/gpu/drm/i915/i915_bo.c
> +++ b/drivers/gpu/drm/i915/i915_bo.c
> @@ -150,7 +150,7 @@ static u32 i915_bo_fbdev_pitch_align(u32 stride)
> return ALIGN(stride, 64);
> }
>
> -bool i915_bo_fbdev_prefer_stolen(struct drm_i915_private *i915, unsigned int
> size)
> +static bool i915_bo_fbdev_prefer_stolen(struct drm_i915_private *i915,
> +unsigned int size)
> {
> /* Skip stolen on MTL as Wa_22018444074 mitigation. */
> if (IS_METEORLAKE(i915))
> @@ -164,6 +164,17 @@ bool i915_bo_fbdev_prefer_stolen(struct
> drm_i915_private *i915, unsigned int siz
> return i915->dsm.usable_size >= size * 2; }
>
> +static struct drm_gem_object *i915_bo_fbdev_bios_fb_takeover(struct
> +drm_gem_object *obj) {
> + struct drm_i915_private *i915 = to_i915(obj->dev);
> +
> + if (HAS_LMEM(i915) ||
> + i915_bo_fbdev_prefer_stolen(i915, obj->size))
> + return obj;
> +
> + return ERR_PTR(-EIO);
> +}
> +
> static struct drm_gem_object *i915_bo_fbdev_create(struct drm_device *drm, int
> size) {
> struct drm_i915_private *i915 = to_i915(drm); @@ -262,6 +273,7 @@
> const struct intel_display_bo_interface i915_display_bo_interface = {
> .framebuffer_fini = i915_bo_framebuffer_fini,
> .framebuffer_lookup = i915_bo_framebuffer_lookup, #if
> IS_ENABLED(CONFIG_DRM_FBDEV_EMULATION)
> + .fbdev_bios_fb_takeover = i915_bo_fbdev_bios_fb_takeover,
> .fbdev_create = i915_bo_fbdev_create,
> .fbdev_destroy = i915_bo_fbdev_destroy,
> .fbdev_fill_info = i915_bo_fbdev_fill_info, diff --git
> a/drivers/gpu/drm/i915/i915_bo.h b/drivers/gpu/drm/i915/i915_bo.h index
> 39ba62696550e..57255d052dd9a 100644
> --- a/drivers/gpu/drm/i915/i915_bo.h
> +++ b/drivers/gpu/drm/i915/i915_bo.h
> @@ -4,12 +4,6 @@
> #ifndef __I915_BO_H__
> #define __I915_BO_H__
>
> -#include <linux/types.h>
> -
> -struct drm_i915_private;
> -
> -bool i915_bo_fbdev_prefer_stolen(struct drm_i915_private *i915, unsigned int
> size);
> -
> extern const struct intel_display_bo_interface i915_display_bo_interface;
>
> #endif /* __I915_BO_H__ */
> diff --git a/drivers/gpu/drm/i915/i915_initial_plane.c
> b/drivers/gpu/drm/i915/i915_initial_plane.c
> index 98858a78e46a3..d7792b65ec150 100644
> --- a/drivers/gpu/drm/i915/i915_initial_plane.c
> +++ b/drivers/gpu/drm/i915/i915_initial_plane.c
> @@ -12,7 +12,6 @@
> #include "gem/i915_gem_lmem.h"
> #include "gem/i915_gem_region.h"
>
> -#include "i915_bo.h"
> #include "i915_drv.h"
> #include "i915_initial_plane.h"
>
> @@ -102,19 +101,6 @@ initial_plane_vma(struct drm_i915_private *i915,
> mem->min_page_size);
> size -= base;
>
> - /*
> - * If the FB is too big, just don't use it since fbdev is not very
> - * important and we should probably use that space with FBC or other
> - * features.
> - */
> - if (IS_ENABLED(CONFIG_DRM_FBDEV_EMULATION) &&
> - IS_ENABLED(CONFIG_FRAMEBUFFER_CONSOLE) &&
> - mem == i915->mm.stolen_region &&
> - !i915_bo_fbdev_prefer_stolen(i915, size)) {
> - drm_dbg_kms(&i915->drm, "Initial FB size exceeds half of stolen,
> discarding\n");
> - return NULL;
> - }
> -
> obj = i915_gem_object_create_region_at(mem, phys_base, size,
> I915_BO_ALLOC_USER |
> I915_BO_PREALLOC);
> diff --git a/drivers/gpu/drm/xe/display/xe_display_bo.c
> b/drivers/gpu/drm/xe/display/xe_display_bo.c
> index d78d893210c4f..188796ae85933 100644
> --- a/drivers/gpu/drm/xe/display/xe_display_bo.c
> +++ b/drivers/gpu/drm/xe/display/xe_display_bo.c
> @@ -9,6 +9,7 @@
> #include "intel_fb.h"
> #include "xe_bo.h"
> #include "xe_display_bo.h"
> +#include "xe_migrate.h"
> #include "xe_pxp.h"
> #include "xe_ttm_stolen_mgr.h"
> #include "xe_wa.h"
> @@ -120,7 +121,7 @@ static u32 xe_display_bo_fbdev_pitch_align(u32 stride)
> return ALIGN(stride, XE_PAGE_SIZE);
> }
>
> -bool xe_display_bo_fbdev_prefer_stolen(struct xe_device *xe, unsigned int size)
> +static bool xe_display_bo_fbdev_prefer_stolen(struct xe_device *xe,
> +unsigned int size)
> {
> struct ttm_resource_manager *stolen;
>
> @@ -152,6 +153,58 @@ bool xe_display_bo_fbdev_prefer_stolen(struct
> xe_device *xe, unsigned int size)
> return stolen->size >= (size * 2) >> PAGE_SHIFT; }
>
> +static struct drm_gem_object
> +*xe_display_bo_fbdev_bios_fb_takeover(struct drm_gem_object *obj) {
> + struct xe_bo *orig_bo = gem_to_xe_bo(obj), *copy_bo;
> + struct xe_device *xe = xe_bo_device(orig_bo);
> + struct xe_validation_ctx ctx;
> + struct drm_exec exec;
> + int err;
> +
> + if (IS_DGFX(xe) ||
> + xe_display_bo_fbdev_prefer_stolen(xe, xe_bo_size(orig_bo)))
> + return obj;
> +
> + copy_bo = xe_bo_create_pin_map_novm(xe, xe_device_get_root_tile(xe),
> xe_bo_size(orig_bo),
> + ttm_bo_type_kernel,
> + XE_BO_FLAG_FORCE_WC |
> XE_BO_FLAG_SYSTEM | XE_BO_FLAG_GGTT,
> + false);
> + if (IS_ERR(copy_bo))
> + return ERR_CAST(copy_bo);
> +
> + xe_validation_guard(&ctx, &xe->val, &exec, (struct xe_val_flags) {}, err) {
> + struct dma_fence *fence;
> +
> + drm_exec_lock_obj(&exec, &orig_bo->ttm.base);
> + drm_exec_retry_on_contention(&exec);
> +
> + drm_exec_lock_obj(&exec, ©_bo->ttm.base);
> + drm_exec_retry_on_contention(&exec);
> +
> + err = dma_resv_reserve_fences(orig_bo->ttm.base.resv, 1);
> + if (err)
> + break;
> +
> + err = dma_resv_reserve_fences(copy_bo->ttm.base.resv, 1);
> + if (err)
> + break;
> +
> + fence = xe_migrate_copy(xe_device_get_root_tile(xe)->migrate,
> orig_bo, copy_bo,
> + orig_bo->ttm.resource, copy_bo-
> >ttm.resource, false);
> + if (IS_ERR(fence)) {
> + err = PTR_ERR(fence);
> + break;
> + }
> +
> + dma_resv_add_fence(copy_bo->ttm.base.resv, fence,
> DMA_RESV_USAGE_KERNEL);
> + dma_resv_add_fence(orig_bo->ttm.base.resv, fence,
> DMA_RESV_USAGE_BOOKKEEP);
> + return ©_bo->ttm.base;
> + }
> +
> + xe_bo_unpin_map_no_vm(copy_bo);
> + return ERR_PTR(err);
> +}
> +
> static struct drm_gem_object *xe_display_bo_fbdev_create(struct drm_device
> *drm, int size) {
> struct xe_device *xe = to_xe_device(drm); @@ -214,6 +267,7 @@ const
> struct intel_display_bo_interface xe_display_bo_interface = {
> .framebuffer_fini = xe_display_bo_framebuffer_fini,
> .framebuffer_lookup = xe_display_bo_framebuffer_lookup, #if
> IS_ENABLED(CONFIG_DRM_FBDEV_EMULATION)
> + .fbdev_bios_fb_takeover = xe_display_bo_fbdev_bios_fb_takeover,
> .fbdev_create = xe_display_bo_fbdev_create,
> .fbdev_destroy = xe_display_bo_fbdev_destroy,
> .fbdev_fill_info = xe_display_bo_fbdev_fill_info, diff --git
> a/drivers/gpu/drm/xe/display/xe_display_bo.h
> b/drivers/gpu/drm/xe/display/xe_display_bo.h
> index c72056884ff41..6879c104b0b1f 100644
> --- a/drivers/gpu/drm/xe/display/xe_display_bo.h
> +++ b/drivers/gpu/drm/xe/display/xe_display_bo.h
> @@ -4,12 +4,6 @@
> #ifndef __XE_DISPLAY_BO_H__
> #define __XE_DISPLAY_BO_H__
>
> -#include <linux/types.h>
> -
> -struct xe_device;
> -
> -bool xe_display_bo_fbdev_prefer_stolen(struct xe_device *xe, unsigned int size);
> -
> extern const struct intel_display_bo_interface xe_display_bo_interface;
>
> #endif
> diff --git a/drivers/gpu/drm/xe/display/xe_initial_plane.c
> b/drivers/gpu/drm/xe/display/xe_initial_plane.c
> index 0f86b73036d03..8988c07e61934 100644
> --- a/drivers/gpu/drm/xe/display/xe_initial_plane.c
> +++ b/drivers/gpu/drm/xe/display/xe_initial_plane.c
> @@ -14,7 +14,6 @@
> #include "intel_display_types.h"
>
> #include "xe_bo.h"
> -#include "xe_display_bo.h"
> #include "xe_display_vma.h"
> #include "xe_fb_pin.h"
> #include "xe_ggtt.h"
> @@ -102,13 +101,6 @@ initial_plane_bo(struct xe_device *xe,
>
> phys_base = base;
> flags |= XE_BO_FLAG_STOLEN;
> -
> - if (IS_ENABLED(CONFIG_FRAMEBUFFER_CONSOLE) &&
> - IS_ENABLED(CONFIG_DRM_FBDEV_EMULATION) &&
> - !xe_display_bo_fbdev_prefer_stolen(xe, plane_config->size)) {
> - drm_info(&xe->drm, "Initial FB size exceeds half of stolen,
> discarding\n");
> - return NULL;
> - }
> }
>
> bo = xe_bo_create_pin_map_at_novm(xe, tile0, size, phys_base, diff --git
> a/include/drm/intel/display_parent_interface.h
> b/include/drm/intel/display_parent_interface.h
> index de395df9ca301..b218f8ecbe22a 100644
> --- a/include/drm/intel/display_parent_interface.h
> +++ b/include/drm/intel/display_parent_interface.h
> @@ -58,6 +58,7 @@ struct intel_display_bo_interface {
> struct drm_file *filp,
> const struct
> drm_mode_fb_cmd2 *user_mode_cmd); #if
> IS_ENABLED(CONFIG_DRM_FBDEV_EMULATION)
> + struct drm_gem_object *(*fbdev_bios_fb_takeover)(struct
> drm_gem_object
> +*obj);
> struct drm_gem_object *(*fbdev_create)(struct drm_device *drm, int size);
> void (*fbdev_destroy)(struct drm_gem_object *obj);
> int (*fbdev_fill_info)(struct drm_gem_object *obj, struct fb_info *info, struct
> i915_vma *vma);
> --
> 2.53.0
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: [PATCH v2 5/5] drm/i915: Introduce intel_bo_fbdev_bios_fb_takeover()
2026-07-23 9:06 ` Shankar, Uma
@ 2026-07-23 13:37 ` Maarten Lankhorst
0 siblings, 0 replies; 19+ messages in thread
From: Maarten Lankhorst @ 2026-07-23 13:37 UTC (permalink / raw)
To: Shankar, Uma, intel-xe@lists.freedesktop.org, B S, Karthik
Cc: intel-gfx@lists.freedesktop.org, Ville Syrjälä
Hey,
On 7/23/26 11:06, Shankar, Uma wrote:
>
>
>> -----Original Message-----
>> From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf Of Maarten
>> Lankhorst
>> Sent: Tuesday, July 21, 2026 7:56 PM
>> To: intel-xe@lists.freedesktop.org
>> Cc: intel-gfx@lists.freedesktop.org; Maarten Lankhorst <dev@lankhorst.se>; Ville
>> Syrjälä <ville.syrjala@linux.intel.com>
>> Subject: [PATCH v2 5/5] drm/i915: Introduce intel_bo_fbdev_bios_fb_takeover()
>>
>> Pull the "do we want to use stolen for the BIOS FB?" checks into a new
>> intel_bo_fbdev_bios_fb_takeover() helper, and defer that decision until we're ready
>> to reallocate the fbdev FB. This way even if we don't want to ultimately use the
>> BIOS FB we'll keep the plane enabled until the replacement FB is ready. Should
>> hopefully result in fewer display blinks during boot.
>>
>> Additionally, on some platforms this allows us to re-create the framebuffer when
>> stolen memory is not suitable, using the blitter engine to copy the contents to
>> system memory without causing any flickering by not preserving the stolen
>> memory allocation.
>>
>> Based on a similar patch by Ville, that introduced intel_bo_fbdev_bios_fb_ok().
>
> Looks Good to me.
> Reviewed-by: Uma Shankar <uma.shankar@intel.com>
>
> Please get an ack from someone from Core KMD as well.
>
> @B S, Karthik Can we ask someone to check and give a Tested-by from validation
> side for this series.
I've been testing a bit locally, but I see a small flicker while transitioning
from stolen to system memory.
I need to figure out why that happens, as that should have been prevented by
the call to drm_gem_plane_helper_prepare_fb() in prepare_plane_fb()
before the atomic flip.
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ CI.checkpatch: warning for drm/xe/display: Transparant fallback from stolen to sysmem. (rev2)
2026-07-21 14:26 [PATCH v2 0/5] drm/xe/display: Transparant fallback from stolen to sysmem Maarten Lankhorst
` (4 preceding siblings ...)
2026-07-21 14:26 ` [PATCH v2 5/5] drm/i915: Introduce intel_bo_fbdev_bios_fb_takeover() Maarten Lankhorst
@ 2026-07-21 14:30 ` Patchwork
2026-07-21 14:32 ` ✓ CI.KUnit: success " Patchwork
` (5 subsequent siblings)
11 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-07-21 14:30 UTC (permalink / raw)
To: Maarten Lankhorst; +Cc: intel-xe
== Series Details ==
Series: drm/xe/display: Transparant fallback from stolen to sysmem. (rev2)
URL : https://patchwork.freedesktop.org/series/170759/
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 4e669a888800b8cc9694c40763bf248bfce5d268
Author: Maarten Lankhorst <dev@lankhorst.se>
Date: Tue Jul 21 16:26:16 2026 +0200
drm/i915: Introduce intel_bo_fbdev_bios_fb_takeover()
Pull the "do we want to use stolen for the BIOS FB?" checks into
a new intel_bo_fbdev_bios_fb_takeover() helper, and defer that
decision until we're ready to reallocate the fbdev FB. This way
even if we don't want to ultimately use the BIOS FB we'll keep
the plane enabled until the replacement FB is ready. Should
hopefully result in fewer display blinks during boot.
Additionally, on some platforms this allows us to re-create the
framebuffer when stolen memory is not suitable, using the blitter
engine to copy the contents to system memory without causing
any flickering by not preserving the stolen memory allocation.
Based on a similar patch by Ville, that introduced
intel_bo_fbdev_bios_fb_ok().
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
+ /mt/dim checkpatch 15b41fd8ef085dbf5b64fe5819415f20bd61983e drm-intel
4e68e072a326 drm/xe/display: Avoid using stolen memory for framebuffer when media gt exists.
9abb03c9e2be drm/xe/migrate: Support copying between sysmem and stolen
d44919dab978 drm/xe: Raise gt frequency slightly earlier.
cd777333d095 HACK: Always fallback
-:7: WARNING:COMMIT_MESSAGE: Missing commit description - Add an appropriate one
total: 0 errors, 1 warnings, 0 checks, 8 lines checked
4e669a888800 drm/i915: Introduce intel_bo_fbdev_bios_fb_takeover()
-:145: CHECK:LINE_SPACING: Please don't use multiple blank lines
#145: FILE: drivers/gpu/drm/i915/display/intel_fbdev.c:326:
+
-:308: WARNING:LONG_LINE: line length of 102 exceeds 100 columns
#308: FILE: drivers/gpu/drm/xe/display/xe_display_bo.c:170:
+ XE_BO_FLAG_FORCE_WC | XE_BO_FLAG_SYSTEM | XE_BO_FLAG_GGTT,
total: 0 errors, 1 warnings, 1 checks, 325 lines checked
^ permalink raw reply [flat|nested] 19+ messages in thread* ✓ CI.KUnit: success for drm/xe/display: Transparant fallback from stolen to sysmem. (rev2)
2026-07-21 14:26 [PATCH v2 0/5] drm/xe/display: Transparant fallback from stolen to sysmem Maarten Lankhorst
` (5 preceding siblings ...)
2026-07-21 14:30 ` ✗ CI.checkpatch: warning for drm/xe/display: Transparant fallback from stolen to sysmem. (rev2) Patchwork
@ 2026-07-21 14:32 ` Patchwork
2026-07-21 15:22 ` ✓ Xe.CI.BAT: " Patchwork
` (4 subsequent siblings)
11 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-07-21 14:32 UTC (permalink / raw)
To: Maarten Lankhorst; +Cc: intel-xe
== Series Details ==
Series: drm/xe/display: Transparant fallback from stolen to sysmem. (rev2)
URL : https://patchwork.freedesktop.org/series/170759/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[14:30:40] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:30:45] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=25
[14:31:32] Starting KUnit Kernel (1/1)...
[14:31:32] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:31:32] ================== guc_buf (11 subtests) ===================
[14:31:32] [PASSED] test_smallest
[14:31:32] [PASSED] test_largest
[14:31:32] [PASSED] test_granular
[14:31:32] [PASSED] test_unique
[14:31:32] [PASSED] test_overlap
[14:31:32] [PASSED] test_reusable
[14:31:32] [PASSED] test_too_big
[14:31:32] [PASSED] test_flush
[14:31:32] [PASSED] test_lookup
[14:31:32] [PASSED] test_data
[14:31:32] [PASSED] test_class
[14:31:32] ===================== [PASSED] guc_buf =====================
[14:31:32] =================== guc_dbm (7 subtests) ===================
[14:31:32] [PASSED] test_empty
[14:31:32] [PASSED] test_default
[14:31:32] ======================== test_size ========================
[14:31:32] [PASSED] 4
[14:31:32] [PASSED] 8
[14:31:32] [PASSED] 32
[14:31:32] [PASSED] 256
[14:31:32] ==================== [PASSED] test_size ====================
[14:31:32] ======================= test_reuse ========================
[14:31:32] [PASSED] 4
[14:31:32] [PASSED] 8
[14:31:32] [PASSED] 32
[14:31:32] [PASSED] 256
[14:31:32] =================== [PASSED] test_reuse ====================
[14:31:32] =================== test_range_overlap ====================
[14:31:32] [PASSED] 4
[14:31:32] [PASSED] 8
[14:31:32] [PASSED] 32
[14:31:32] [PASSED] 256
[14:31:32] =============== [PASSED] test_range_overlap ================
[14:31:32] =================== test_range_compact ====================
[14:31:32] [PASSED] 4
[14:31:32] [PASSED] 8
[14:31:32] [PASSED] 32
[14:31:32] [PASSED] 256
[14:31:32] =============== [PASSED] test_range_compact ================
[14:31:32] ==================== test_range_spare =====================
[14:31:32] [PASSED] 4
[14:31:32] [PASSED] 8
[14:31:32] [PASSED] 32
[14:31:32] [PASSED] 256
[14:31:32] ================ [PASSED] test_range_spare =================
[14:31:32] ===================== [PASSED] guc_dbm =====================
[14:31:32] =================== guc_idm (6 subtests) ===================
[14:31:32] [PASSED] bad_init
[14:31:32] [PASSED] no_init
[14:31:32] [PASSED] init_fini
[14:31:32] [PASSED] check_used
[14:31:32] [PASSED] check_quota
[14:31:32] [PASSED] check_all
[14:31:32] ===================== [PASSED] guc_idm =====================
[14:31:32] =============== guc_klv_helpers (9 subtests) ===============
[14:31:32] [PASSED] test_count
[14:31:32] [PASSED] test_encode_u32
[14:31:32] [PASSED] test_encode_u64
[14:31:32] [PASSED] test_encode_string
[14:31:32] [PASSED] test_encode_object_raw
[14:31:32] [PASSED] test_encode_object_klv
[14:31:32] [PASSED] test_encode_object_nested
[14:31:32] [PASSED] test_encode_object_basic
[14:31:32] [PASSED] test_print
[14:31:32] ================= [PASSED] guc_klv_helpers =================
[14:31:32] ================== no_relay (3 subtests) ===================
[14:31:32] [PASSED] xe_drops_guc2pf_if_not_ready
[14:31:32] [PASSED] xe_drops_guc2vf_if_not_ready
[14:31:32] [PASSED] xe_rejects_send_if_not_ready
[14:31:32] ==================== [PASSED] no_relay =====================
[14:31:32] ================== pf_relay (14 subtests) ==================
[14:31:32] [PASSED] pf_rejects_guc2pf_too_short
[14:31:32] [PASSED] pf_rejects_guc2pf_too_long
[14:31:32] [PASSED] pf_rejects_guc2pf_no_payload
[14:31:32] [PASSED] pf_fails_no_payload
[14:31:32] [PASSED] pf_fails_bad_origin
[14:31:32] [PASSED] pf_fails_bad_type
[14:31:32] [PASSED] pf_txn_reports_error
[14:31:32] [PASSED] pf_txn_sends_pf2guc
[14:31:32] [PASSED] pf_sends_pf2guc
[14:31:32] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[14:31:32] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[14:31:32] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[14:31:32] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[14:31:32] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[14:31:32] ==================== [PASSED] pf_relay =====================
[14:31:32] ================== vf_relay (3 subtests) ===================
[14:31:32] [PASSED] vf_rejects_guc2vf_too_short
[14:31:32] [PASSED] vf_rejects_guc2vf_too_long
[14:31:32] [PASSED] vf_rejects_guc2vf_no_payload
[14:31:32] ==================== [PASSED] vf_relay =====================
[14:31:32] ================ pf_gt_config (9 subtests) =================
[14:31:32] [PASSED] fair_contexts_1vf
[14:31:32] [PASSED] fair_doorbells_1vf
[14:31:32] [PASSED] fair_ggtt_1vf
[14:31:32] ====================== fair_vram_1vf ======================
[14:31:32] [PASSED] 3.50 GiB
[14:31:32] [PASSED] 11.5 GiB
[14:31:32] [PASSED] 15.5 GiB
[14:31:32] [PASSED] 31.5 GiB
[14:31:32] [PASSED] 63.5 GiB
[14:31:32] [PASSED] 1.91 GiB
[14:31:32] ================== [PASSED] fair_vram_1vf ==================
[14:31:32] ================ fair_vram_1vf_admin_only =================
[14:31:32] [PASSED] 3.50 GiB
[14:31:32] [PASSED] 11.5 GiB
[14:31:32] [PASSED] 15.5 GiB
[14:31:32] [PASSED] 31.5 GiB
[14:31:32] [PASSED] 63.5 GiB
[14:31:32] [PASSED] 1.91 GiB
[14:31:32] ============ [PASSED] fair_vram_1vf_admin_only =============
[14:31:32] ====================== fair_contexts ======================
[14:31:32] [PASSED] 1 VF
[14:31:32] [PASSED] 2 VFs
[14:31:32] [PASSED] 3 VFs
[14:31:32] [PASSED] 4 VFs
[14:31:32] [PASSED] 5 VFs
[14:31:32] [PASSED] 6 VFs
[14:31:32] [PASSED] 7 VFs
[14:31:33] [PASSED] 8 VFs
[14:31:33] [PASSED] 9 VFs
[14:31:33] [PASSED] 10 VFs
[14:31:33] [PASSED] 11 VFs
[14:31:33] [PASSED] 12 VFs
[14:31:33] [PASSED] 13 VFs
[14:31:33] [PASSED] 14 VFs
[14:31:33] [PASSED] 15 VFs
[14:31:33] [PASSED] 16 VFs
[14:31:33] [PASSED] 17 VFs
[14:31:33] [PASSED] 18 VFs
[14:31:33] [PASSED] 19 VFs
[14:31:33] [PASSED] 20 VFs
[14:31:33] [PASSED] 21 VFs
[14:31:33] [PASSED] 22 VFs
[14:31:33] [PASSED] 23 VFs
[14:31:33] [PASSED] 24 VFs
[14:31:33] [PASSED] 25 VFs
[14:31:33] [PASSED] 26 VFs
[14:31:33] [PASSED] 27 VFs
[14:31:33] [PASSED] 28 VFs
[14:31:33] [PASSED] 29 VFs
[14:31:33] [PASSED] 30 VFs
[14:31:33] [PASSED] 31 VFs
[14:31:33] [PASSED] 32 VFs
[14:31:33] [PASSED] 33 VFs
[14:31:33] [PASSED] 34 VFs
[14:31:33] [PASSED] 35 VFs
[14:31:33] [PASSED] 36 VFs
[14:31:33] [PASSED] 37 VFs
[14:31:33] [PASSED] 38 VFs
[14:31:33] [PASSED] 39 VFs
[14:31:33] [PASSED] 40 VFs
[14:31:33] [PASSED] 41 VFs
[14:31:33] [PASSED] 42 VFs
[14:31:33] [PASSED] 43 VFs
[14:31:33] [PASSED] 44 VFs
[14:31:33] [PASSED] 45 VFs
[14:31:33] [PASSED] 46 VFs
[14:31:33] [PASSED] 47 VFs
[14:31:33] [PASSED] 48 VFs
[14:31:33] [PASSED] 49 VFs
[14:31:33] [PASSED] 50 VFs
[14:31:33] [PASSED] 51 VFs
[14:31:33] [PASSED] 52 VFs
[14:31:33] [PASSED] 53 VFs
[14:31:33] [PASSED] 54 VFs
[14:31:33] [PASSED] 55 VFs
[14:31:33] [PASSED] 56 VFs
[14:31:33] [PASSED] 57 VFs
[14:31:33] [PASSED] 58 VFs
[14:31:33] [PASSED] 59 VFs
[14:31:33] [PASSED] 60 VFs
[14:31:33] [PASSED] 61 VFs
[14:31:33] [PASSED] 62 VFs
[14:31:33] [PASSED] 63 VFs
[14:31:33] ================== [PASSED] fair_contexts ==================
[14:31:33] ===================== fair_doorbells ======================
[14:31:33] [PASSED] 1 VF
[14:31:33] [PASSED] 2 VFs
[14:31:33] [PASSED] 3 VFs
[14:31:33] [PASSED] 4 VFs
[14:31:33] [PASSED] 5 VFs
[14:31:33] [PASSED] 6 VFs
[14:31:33] [PASSED] 7 VFs
[14:31:33] [PASSED] 8 VFs
[14:31:33] [PASSED] 9 VFs
[14:31:33] [PASSED] 10 VFs
[14:31:33] [PASSED] 11 VFs
[14:31:33] [PASSED] 12 VFs
[14:31:33] [PASSED] 13 VFs
[14:31:33] [PASSED] 14 VFs
[14:31:33] [PASSED] 15 VFs
[14:31:33] [PASSED] 16 VFs
[14:31:33] [PASSED] 17 VFs
[14:31:33] [PASSED] 18 VFs
[14:31:33] [PASSED] 19 VFs
[14:31:33] [PASSED] 20 VFs
[14:31:33] [PASSED] 21 VFs
[14:31:33] [PASSED] 22 VFs
[14:31:33] [PASSED] 23 VFs
[14:31:33] [PASSED] 24 VFs
[14:31:33] [PASSED] 25 VFs
[14:31:33] [PASSED] 26 VFs
[14:31:33] [PASSED] 27 VFs
[14:31:33] [PASSED] 28 VFs
[14:31:33] [PASSED] 29 VFs
[14:31:33] [PASSED] 30 VFs
[14:31:33] [PASSED] 31 VFs
[14:31:33] [PASSED] 32 VFs
[14:31:33] [PASSED] 33 VFs
[14:31:33] [PASSED] 34 VFs
[14:31:33] [PASSED] 35 VFs
[14:31:33] [PASSED] 36 VFs
[14:31:33] [PASSED] 37 VFs
[14:31:33] [PASSED] 38 VFs
[14:31:33] [PASSED] 39 VFs
[14:31:33] [PASSED] 40 VFs
[14:31:33] [PASSED] 41 VFs
[14:31:33] [PASSED] 42 VFs
[14:31:33] [PASSED] 43 VFs
[14:31:33] [PASSED] 44 VFs
[14:31:33] [PASSED] 45 VFs
[14:31:33] [PASSED] 46 VFs
[14:31:33] [PASSED] 47 VFs
[14:31:33] [PASSED] 48 VFs
[14:31:33] [PASSED] 49 VFs
[14:31:33] [PASSED] 50 VFs
[14:31:33] [PASSED] 51 VFs
[14:31:33] [PASSED] 52 VFs
[14:31:33] [PASSED] 53 VFs
[14:31:33] [PASSED] 54 VFs
[14:31:33] [PASSED] 55 VFs
[14:31:33] [PASSED] 56 VFs
[14:31:33] [PASSED] 57 VFs
[14:31:33] [PASSED] 58 VFs
[14:31:33] [PASSED] 59 VFs
[14:31:33] [PASSED] 60 VFs
[14:31:33] [PASSED] 61 VFs
[14:31:33] [PASSED] 62 VFs
[14:31:33] [PASSED] 63 VFs
[14:31:33] ================= [PASSED] fair_doorbells ==================
[14:31:33] ======================== fair_ggtt ========================
[14:31:33] [PASSED] 1 VF
[14:31:33] [PASSED] 2 VFs
[14:31:33] [PASSED] 3 VFs
[14:31:33] [PASSED] 4 VFs
[14:31:33] [PASSED] 5 VFs
[14:31:33] [PASSED] 6 VFs
[14:31:33] [PASSED] 7 VFs
[14:31:33] [PASSED] 8 VFs
[14:31:33] [PASSED] 9 VFs
[14:31:33] [PASSED] 10 VFs
[14:31:33] [PASSED] 11 VFs
[14:31:33] [PASSED] 12 VFs
[14:31:33] [PASSED] 13 VFs
[14:31:33] [PASSED] 14 VFs
[14:31:33] [PASSED] 15 VFs
[14:31:33] [PASSED] 16 VFs
[14:31:33] [PASSED] 17 VFs
[14:31:33] [PASSED] 18 VFs
[14:31:33] [PASSED] 19 VFs
[14:31:33] [PASSED] 20 VFs
[14:31:33] [PASSED] 21 VFs
[14:31:33] [PASSED] 22 VFs
[14:31:33] [PASSED] 23 VFs
[14:31:33] [PASSED] 24 VFs
[14:31:33] [PASSED] 25 VFs
[14:31:33] [PASSED] 26 VFs
[14:31:33] [PASSED] 27 VFs
[14:31:33] [PASSED] 28 VFs
[14:31:33] [PASSED] 29 VFs
[14:31:33] [PASSED] 30 VFs
[14:31:33] [PASSED] 31 VFs
[14:31:33] [PASSED] 32 VFs
[14:31:33] [PASSED] 33 VFs
[14:31:33] [PASSED] 34 VFs
[14:31:33] [PASSED] 35 VFs
[14:31:33] [PASSED] 36 VFs
[14:31:33] [PASSED] 37 VFs
[14:31:33] [PASSED] 38 VFs
[14:31:33] [PASSED] 39 VFs
[14:31:33] [PASSED] 40 VFs
[14:31:33] [PASSED] 41 VFs
[14:31:33] [PASSED] 42 VFs
[14:31:33] [PASSED] 43 VFs
[14:31:33] [PASSED] 44 VFs
[14:31:33] [PASSED] 45 VFs
[14:31:33] [PASSED] 46 VFs
[14:31:33] [PASSED] 47 VFs
[14:31:33] [PASSED] 48 VFs
[14:31:33] [PASSED] 49 VFs
[14:31:33] [PASSED] 50 VFs
[14:31:33] [PASSED] 51 VFs
[14:31:33] [PASSED] 52 VFs
[14:31:33] [PASSED] 53 VFs
[14:31:33] [PASSED] 54 VFs
[14:31:33] [PASSED] 55 VFs
[14:31:33] [PASSED] 56 VFs
[14:31:33] [PASSED] 57 VFs
[14:31:33] [PASSED] 58 VFs
[14:31:33] [PASSED] 59 VFs
[14:31:33] [PASSED] 60 VFs
[14:31:33] [PASSED] 61 VFs
[14:31:33] [PASSED] 62 VFs
[14:31:33] [PASSED] 63 VFs
[14:31:33] ==================== [PASSED] fair_ggtt ====================
[14:31:33] ======================== fair_vram ========================
[14:31:33] [PASSED] 1 VF
[14:31:33] [PASSED] 2 VFs
[14:31:33] [PASSED] 3 VFs
[14:31:33] [PASSED] 4 VFs
[14:31:33] [PASSED] 5 VFs
[14:31:33] [PASSED] 6 VFs
[14:31:33] [PASSED] 7 VFs
[14:31:33] [PASSED] 8 VFs
[14:31:33] [PASSED] 9 VFs
[14:31:33] [PASSED] 10 VFs
[14:31:33] [PASSED] 11 VFs
[14:31:33] [PASSED] 12 VFs
[14:31:33] [PASSED] 13 VFs
[14:31:33] [PASSED] 14 VFs
[14:31:33] [PASSED] 15 VFs
[14:31:33] [PASSED] 16 VFs
[14:31:33] [PASSED] 17 VFs
[14:31:33] [PASSED] 18 VFs
[14:31:33] [PASSED] 19 VFs
[14:31:33] [PASSED] 20 VFs
[14:31:33] [PASSED] 21 VFs
[14:31:33] [PASSED] 22 VFs
[14:31:33] [PASSED] 23 VFs
[14:31:33] [PASSED] 24 VFs
[14:31:33] [PASSED] 25 VFs
[14:31:33] [PASSED] 26 VFs
[14:31:33] [PASSED] 27 VFs
[14:31:33] [PASSED] 28 VFs
[14:31:33] [PASSED] 29 VFs
[14:31:33] [PASSED] 30 VFs
[14:31:33] [PASSED] 31 VFs
[14:31:33] [PASSED] 32 VFs
[14:31:33] [PASSED] 33 VFs
[14:31:33] [PASSED] 34 VFs
[14:31:33] [PASSED] 35 VFs
[14:31:33] [PASSED] 36 VFs
[14:31:33] [PASSED] 37 VFs
[14:31:33] [PASSED] 38 VFs
[14:31:33] [PASSED] 39 VFs
[14:31:33] [PASSED] 40 VFs
[14:31:33] [PASSED] 41 VFs
[14:31:33] [PASSED] 42 VFs
[14:31:33] [PASSED] 43 VFs
[14:31:33] [PASSED] 44 VFs
[14:31:33] [PASSED] 45 VFs
[14:31:33] [PASSED] 46 VFs
[14:31:33] [PASSED] 47 VFs
[14:31:33] [PASSED] 48 VFs
[14:31:33] [PASSED] 49 VFs
[14:31:33] [PASSED] 50 VFs
[14:31:33] [PASSED] 51 VFs
[14:31:33] [PASSED] 52 VFs
[14:31:33] [PASSED] 53 VFs
[14:31:33] [PASSED] 54 VFs
[14:31:33] [PASSED] 55 VFs
[14:31:33] [PASSED] 56 VFs
[14:31:33] [PASSED] 57 VFs
[14:31:33] [PASSED] 58 VFs
[14:31:33] [PASSED] 59 VFs
[14:31:33] [PASSED] 60 VFs
[14:31:33] [PASSED] 61 VFs
[14:31:33] [PASSED] 62 VFs
[14:31:33] [PASSED] 63 VFs
[14:31:33] ==================== [PASSED] fair_vram ====================
[14:31:33] ================== [PASSED] pf_gt_config ===================
[14:31:33] ===================== lmtt (1 subtest) =====================
[14:31:33] ======================== test_ops =========================
[14:31:33] [PASSED] 2-level
[14:31:33] [PASSED] multi-level
[14:31:33] ==================== [PASSED] test_ops =====================
[14:31:33] ====================== [PASSED] lmtt =======================
[14:31:33] ================= sriov_packet (1 subtest) =================
[14:31:33] [PASSED] test_descriptor_init
[14:31:33] ================== [PASSED] sriov_packet ===================
[14:31:33] ================= pf_service (11 subtests) =================
[14:31:33] [PASSED] pf_negotiate_any
[14:31:33] [PASSED] pf_negotiate_base_match
[14:31:33] [PASSED] pf_negotiate_base_newer
[14:31:33] [PASSED] pf_negotiate_base_next
[14:31:33] [SKIPPED] pf_negotiate_base_older (no older minor)
[14:31:33] [PASSED] pf_negotiate_base_prev
[14:31:33] [PASSED] pf_negotiate_latest_match
[14:31:33] [PASSED] pf_negotiate_latest_newer
[14:31:33] [PASSED] pf_negotiate_latest_next
[14:31:33] [SKIPPED] pf_negotiate_latest_older (no older minor)
[14:31:33] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[14:31:33] =================== [PASSED] pf_service ====================
[14:31:33] ================= xe_guc_g2g (2 subtests) ==================
[14:31:33] ============== xe_live_guc_g2g_kunit_default ==============
[14:31:33] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[14:31:33] ============== xe_live_guc_g2g_kunit_allmem ===============
[14:31:33] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[14:31:33] =================== [SKIPPED] xe_guc_g2g ===================
[14:31:33] =================== xe_mocs (2 subtests) ===================
[14:31:33] ================ xe_live_mocs_kernel_kunit ================
[14:31:33] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[14:31:33] ================ xe_live_mocs_reset_kunit =================
[14:31:33] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[14:31:33] ==================== [SKIPPED] xe_mocs =====================
[14:31:33] ================= xe_migrate (2 subtests) ==================
[14:31:33] ================= xe_migrate_sanity_kunit =================
[14:31:33] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[14:31:33] ================== xe_validate_ccs_kunit ==================
[14:31:33] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[14:31:33] =================== [SKIPPED] xe_migrate ===================
[14:31:33] ================== xe_dma_buf (1 subtest) ==================
[14:31:33] ==================== xe_dma_buf_kunit =====================
[14:31:33] ================ [SKIPPED] xe_dma_buf_kunit ================
[14:31:33] =================== [SKIPPED] xe_dma_buf ===================
[14:31:33] ================= xe_bo_shrink (1 subtest) =================
[14:31:33] =================== xe_bo_shrink_kunit ====================
[14:31:33] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[14:31:33] ================== [SKIPPED] xe_bo_shrink ==================
[14:31:33] ==================== xe_bo (2 subtests) ====================
[14:31:33] ================== xe_ccs_migrate_kunit ===================
[14:31:33] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[14:31:33] ==================== xe_bo_evict_kunit ====================
[14:31:33] =============== [SKIPPED] xe_bo_evict_kunit ================
[14:31:33] ===================== [SKIPPED] xe_bo ======================
[14:31:33] ==================== args (13 subtests) ====================
[14:31:33] [PASSED] count_args_test
[14:31:33] [PASSED] call_args_example
[14:31:33] [PASSED] call_args_test
[14:31:33] [PASSED] drop_first_arg_example
[14:31:33] [PASSED] drop_first_arg_test
[14:31:33] [PASSED] first_arg_example
[14:31:33] [PASSED] first_arg_test
[14:31:33] [PASSED] last_arg_example
[14:31:33] [PASSED] last_arg_test
[14:31:33] [PASSED] pick_arg_example
[14:31:33] [PASSED] if_args_example
[14:31:33] [PASSED] if_args_test
[14:31:33] [PASSED] sep_comma_example
[14:31:33] ====================== [PASSED] args =======================
[14:31:33] =================== xe_pci (3 subtests) ====================
[14:31:33] ==================== check_graphics_ip ====================
[14:31:33] [PASSED] 12.00 Xe_LP
[14:31:33] [PASSED] 12.10 Xe_LP+
[14:31:33] [PASSED] 12.55 Xe_HPG
[14:31:33] [PASSED] 12.60 Xe_HPC
[14:31:33] [PASSED] 12.70 Xe_LPG
[14:31:33] [PASSED] 12.71 Xe_LPG
[14:31:33] [PASSED] 12.74 Xe_LPG+
[14:31:33] [PASSED] 20.01 Xe2_HPG
[14:31:33] [PASSED] 20.02 Xe2_HPG
[14:31:33] [PASSED] 20.04 Xe2_LPG
[14:31:33] [PASSED] 30.00 Xe3_LPG
[14:31:33] [PASSED] 30.01 Xe3_LPG
[14:31:33] [PASSED] 30.03 Xe3_LPG
[14:31:33] [PASSED] 30.04 Xe3_LPG
[14:31:33] [PASSED] 30.05 Xe3_LPG
[14:31:33] [PASSED] 35.10 Xe3p_LPG
[14:31:33] [PASSED] 35.11 Xe3p_XPC
[14:31:33] ================ [PASSED] check_graphics_ip ================
[14:31:33] ===================== check_media_ip ======================
[14:31:33] [PASSED] 12.00 Xe_M
[14:31:33] [PASSED] 12.55 Xe_HPM
[14:31:33] [PASSED] 13.00 Xe_LPM+
[14:31:33] [PASSED] 13.01 Xe2_HPM
[14:31:33] [PASSED] 20.00 Xe2_LPM
[14:31:33] [PASSED] 30.00 Xe3_LPM
[14:31:33] [PASSED] 30.02 Xe3_LPM
[14:31:33] [PASSED] 35.00 Xe3p_LPM
[14:31:33] [PASSED] 35.03 Xe3p_HPM
[14:31:33] ================= [PASSED] check_media_ip ==================
[14:31:33] =================== check_platform_desc ===================
[14:31:33] [PASSED] 0x9A60 (TIGERLAKE)
[14:31:33] [PASSED] 0x9A68 (TIGERLAKE)
[14:31:33] [PASSED] 0x9A70 (TIGERLAKE)
[14:31:33] [PASSED] 0x9A40 (TIGERLAKE)
[14:31:33] [PASSED] 0x9A49 (TIGERLAKE)
[14:31:33] [PASSED] 0x9A59 (TIGERLAKE)
[14:31:33] [PASSED] 0x9A78 (TIGERLAKE)
[14:31:33] [PASSED] 0x9AC0 (TIGERLAKE)
[14:31:33] [PASSED] 0x9AC9 (TIGERLAKE)
[14:31:33] [PASSED] 0x9AD9 (TIGERLAKE)
[14:31:33] [PASSED] 0x9AF8 (TIGERLAKE)
[14:31:33] [PASSED] 0x4C80 (ROCKETLAKE)
[14:31:33] [PASSED] 0x4C8A (ROCKETLAKE)
[14:31:33] [PASSED] 0x4C8B (ROCKETLAKE)
[14:31:33] [PASSED] 0x4C8C (ROCKETLAKE)
[14:31:33] [PASSED] 0x4C90 (ROCKETLAKE)
[14:31:33] [PASSED] 0x4C9A (ROCKETLAKE)
[14:31:33] [PASSED] 0x4680 (ALDERLAKE_S)
[14:31:33] [PASSED] 0x4682 (ALDERLAKE_S)
[14:31:33] [PASSED] 0x4688 (ALDERLAKE_S)
[14:31:33] [PASSED] 0x468A (ALDERLAKE_S)
[14:31:33] [PASSED] 0x468B (ALDERLAKE_S)
[14:31:33] [PASSED] 0x4690 (ALDERLAKE_S)
[14:31:33] [PASSED] 0x4692 (ALDERLAKE_S)
[14:31:33] [PASSED] 0x4693 (ALDERLAKE_S)
[14:31:33] [PASSED] 0x46A0 (ALDERLAKE_P)
[14:31:33] [PASSED] 0x46A1 (ALDERLAKE_P)
[14:31:33] [PASSED] 0x46A2 (ALDERLAKE_P)
[14:31:33] [PASSED] 0x46A3 (ALDERLAKE_P)
[14:31:33] [PASSED] 0x46A6 (ALDERLAKE_P)
[14:31:33] [PASSED] 0x46A8 (ALDERLAKE_P)
[14:31:33] [PASSED] 0x46AA (ALDERLAKE_P)
[14:31:33] [PASSED] 0x462A (ALDERLAKE_P)
[14:31:33] [PASSED] 0x4626 (ALDERLAKE_P)
[14:31:33] [PASSED] 0x4628 (ALDERLAKE_P)
[14:31:33] [PASSED] 0x46B0 (ALDERLAKE_P)
[14:31:33] [PASSED] 0x46B1 (ALDERLAKE_P)
[14:31:33] [PASSED] 0x46B2 (ALDERLAKE_P)
[14:31:33] [PASSED] 0x46B3 (ALDERLAKE_P)
[14:31:33] [PASSED] 0x46C0 (ALDERLAKE_P)
[14:31:33] [PASSED] 0x46C1 (ALDERLAKE_P)
[14:31:33] [PASSED] 0x46C2 (ALDERLAKE_P)
[14:31:33] [PASSED] 0x46C3 (ALDERLAKE_P)
[14:31:33] [PASSED] 0x46D0 (ALDERLAKE_N)
[14:31:33] [PASSED] 0x46D1 (ALDERLAKE_N)
[14:31:33] [PASSED] 0x46D2 (ALDERLAKE_N)
[14:31:33] [PASSED] 0x46D3 (ALDERLAKE_N)
[14:31:33] [PASSED] 0x46D4 (ALDERLAKE_N)
[14:31:33] [PASSED] 0xA721 (ALDERLAKE_P)
[14:31:33] [PASSED] 0xA7A1 (ALDERLAKE_P)
[14:31:33] [PASSED] 0xA7A9 (ALDERLAKE_P)
[14:31:33] [PASSED] 0xA7AC (ALDERLAKE_P)
[14:31:33] [PASSED] 0xA7AD (ALDERLAKE_P)
[14:31:33] [PASSED] 0xA720 (ALDERLAKE_P)
[14:31:33] [PASSED] 0xA7A0 (ALDERLAKE_P)
[14:31:33] [PASSED] 0xA7A8 (ALDERLAKE_P)
[14:31:33] [PASSED] 0xA7AA (ALDERLAKE_P)
[14:31:33] [PASSED] 0xA7AB (ALDERLAKE_P)
[14:31:33] [PASSED] 0xA780 (ALDERLAKE_S)
[14:31:33] [PASSED] 0xA781 (ALDERLAKE_S)
[14:31:33] [PASSED] 0xA782 (ALDERLAKE_S)
[14:31:33] [PASSED] 0xA783 (ALDERLAKE_S)
[14:31:33] [PASSED] 0xA788 (ALDERLAKE_S)
[14:31:33] [PASSED] 0xA789 (ALDERLAKE_S)
[14:31:33] [PASSED] 0xA78A (ALDERLAKE_S)
[14:31:33] [PASSED] 0xA78B (ALDERLAKE_S)
[14:31:33] [PASSED] 0x4905 (DG1)
[14:31:33] [PASSED] 0x4906 (DG1)
[14:31:33] [PASSED] 0x4907 (DG1)
[14:31:33] [PASSED] 0x4908 (DG1)
[14:31:33] [PASSED] 0x4909 (DG1)
[14:31:33] [PASSED] 0x56C0 (DG2)
[14:31:33] [PASSED] 0x56C2 (DG2)
[14:31:33] [PASSED] 0x56C1 (DG2)
[14:31:33] [PASSED] 0x7D51 (METEORLAKE)
[14:31:33] [PASSED] 0x7DD1 (METEORLAKE)
[14:31:33] [PASSED] 0x7D41 (METEORLAKE)
[14:31:33] [PASSED] 0x7D67 (METEORLAKE)
[14:31:33] [PASSED] 0xB640 (METEORLAKE)
[14:31:33] [PASSED] 0x56A0 (DG2)
[14:31:33] [PASSED] 0x56A1 (DG2)
[14:31:33] [PASSED] 0x56A2 (DG2)
[14:31:33] [PASSED] 0x56BE (DG2)
[14:31:33] [PASSED] 0x56BF (DG2)
[14:31:33] [PASSED] 0x5690 (DG2)
[14:31:33] [PASSED] 0x5691 (DG2)
[14:31:33] [PASSED] 0x5692 (DG2)
[14:31:33] [PASSED] 0x56A5 (DG2)
[14:31:33] [PASSED] 0x56A6 (DG2)
[14:31:33] [PASSED] 0x56B0 (DG2)
[14:31:33] [PASSED] 0x56B1 (DG2)
[14:31:33] [PASSED] 0x56BA (DG2)
[14:31:33] [PASSED] 0x56BB (DG2)
[14:31:33] [PASSED] 0x56BC (DG2)
[14:31:33] [PASSED] 0x56BD (DG2)
[14:31:33] [PASSED] 0x5693 (DG2)
[14:31:33] [PASSED] 0x5694 (DG2)
[14:31:33] [PASSED] 0x5695 (DG2)
[14:31:33] [PASSED] 0x56A3 (DG2)
[14:31:33] [PASSED] 0x56A4 (DG2)
[14:31:33] [PASSED] 0x56B2 (DG2)
[14:31:33] [PASSED] 0x56B3 (DG2)
[14:31:33] [PASSED] 0x5696 (DG2)
[14:31:33] [PASSED] 0x5697 (DG2)
[14:31:33] [PASSED] 0xB69 (PVC)
[14:31:33] [PASSED] 0xB6E (PVC)
[14:31:33] [PASSED] 0xBD4 (PVC)
[14:31:33] [PASSED] 0xBD5 (PVC)
[14:31:33] [PASSED] 0xBD6 (PVC)
[14:31:33] [PASSED] 0xBD7 (PVC)
[14:31:33] [PASSED] 0xBD8 (PVC)
[14:31:33] [PASSED] 0xBD9 (PVC)
[14:31:33] [PASSED] 0xBDA (PVC)
[14:31:33] [PASSED] 0xBDB (PVC)
[14:31:33] [PASSED] 0xBE0 (PVC)
[14:31:33] [PASSED] 0xBE1 (PVC)
[14:31:33] [PASSED] 0xBE5 (PVC)
[14:31:33] [PASSED] 0x7D40 (METEORLAKE)
[14:31:33] [PASSED] 0x7D45 (METEORLAKE)
[14:31:33] [PASSED] 0x7D55 (METEORLAKE)
[14:31:33] [PASSED] 0x7D60 (METEORLAKE)
[14:31:33] [PASSED] 0x7DD5 (METEORLAKE)
[14:31:33] [PASSED] 0x6420 (LUNARLAKE)
[14:31:33] [PASSED] 0x64A0 (LUNARLAKE)
[14:31:33] [PASSED] 0x64B0 (LUNARLAKE)
[14:31:33] [PASSED] 0xE202 (BATTLEMAGE)
[14:31:33] [PASSED] 0xE209 (BATTLEMAGE)
[14:31:33] [PASSED] 0xE20B (BATTLEMAGE)
[14:31:33] [PASSED] 0xE20C (BATTLEMAGE)
[14:31:33] [PASSED] 0xE20D (BATTLEMAGE)
[14:31:33] [PASSED] 0xE210 (BATTLEMAGE)
[14:31:33] [PASSED] 0xE211 (BATTLEMAGE)
[14:31:33] [PASSED] 0xE212 (BATTLEMAGE)
[14:31:33] [PASSED] 0xE216 (BATTLEMAGE)
[14:31:33] [PASSED] 0xE220 (BATTLEMAGE)
[14:31:33] [PASSED] 0xE221 (BATTLEMAGE)
[14:31:33] [PASSED] 0xE222 (BATTLEMAGE)
[14:31:33] [PASSED] 0xE223 (BATTLEMAGE)
[14:31:33] [PASSED] 0xB080 (PANTHERLAKE)
[14:31:33] [PASSED] 0xB081 (PANTHERLAKE)
[14:31:33] [PASSED] 0xB082 (PANTHERLAKE)
[14:31:33] [PASSED] 0xB083 (PANTHERLAKE)
[14:31:33] [PASSED] 0xB084 (PANTHERLAKE)
[14:31:33] [PASSED] 0xB085 (PANTHERLAKE)
[14:31:33] [PASSED] 0xB086 (PANTHERLAKE)
[14:31:33] [PASSED] 0xB087 (PANTHERLAKE)
[14:31:33] [PASSED] 0xB08F (PANTHERLAKE)
[14:31:33] [PASSED] 0xB090 (PANTHERLAKE)
[14:31:33] [PASSED] 0xB0A0 (PANTHERLAKE)
[14:31:33] [PASSED] 0xB0B0 (PANTHERLAKE)
[14:31:33] [PASSED] 0xFD80 (PANTHERLAKE)
[14:31:33] [PASSED] 0xFD81 (PANTHERLAKE)
[14:31:33] [PASSED] 0xD740 (NOVALAKE_S)
[14:31:33] [PASSED] 0xD741 (NOVALAKE_S)
[14:31:33] [PASSED] 0xD742 (NOVALAKE_S)
[14:31:33] [PASSED] 0xD743 (NOVALAKE_S)
[14:31:33] [PASSED] 0xD745 (NOVALAKE_S)
[14:31:33] [PASSED] 0xD74A (NOVALAKE_S)
[14:31:33] [PASSED] 0xD74B (NOVALAKE_S)
[14:31:33] [PASSED] 0x674C (CRESCENTISLAND)
[14:31:33] [PASSED] 0x674D (CRESCENTISLAND)
[14:31:33] [PASSED] 0x674E (CRESCENTISLAND)
[14:31:33] [PASSED] 0x674F (CRESCENTISLAND)
[14:31:33] [PASSED] 0x6750 (CRESCENTISLAND)
[14:31:33] [PASSED] 0xD750 (NOVALAKE_P)
[14:31:33] [PASSED] 0xD751 (NOVALAKE_P)
[14:31:33] [PASSED] 0xD752 (NOVALAKE_P)
[14:31:33] [PASSED] 0xD753 (NOVALAKE_P)
[14:31:33] [PASSED] 0xD754 (NOVALAKE_P)
[14:31:33] [PASSED] 0xD755 (NOVALAKE_P)
[14:31:33] [PASSED] 0xD756 (NOVALAKE_P)
[14:31:33] [PASSED] 0xD757 (NOVALAKE_P)
[14:31:33] [PASSED] 0xD75F (NOVALAKE_P)
[14:31:33] =============== [PASSED] check_platform_desc ===============
[14:31:33] ===================== [PASSED] xe_pci ======================
[14:31:33] ============= xe_rtp_tables_test (5 subtests) ==============
[14:31:33] ================== xe_rtp_table_gt_test ===================
[14:31:33] [PASSED] gt_was/14011060649
[14:31:33] [PASSED] gt_was/14011059788
[14:31:33] [PASSED] gt_was/14015795083
[14:31:33] [PASSED] gt_was/16021867713
[14:31:33] [PASSED] gt_was/14019449301
[14:31:33] [PASSED] gt_was/16028005424
[14:31:33] [PASSED] gt_was/14026578760
[14:31:33] [PASSED] gt_was/1409420604
[14:31:33] [PASSED] gt_was/1408615072
[14:31:33] [PASSED] gt_was/22010523718
[14:31:33] [PASSED] gt_was/14011006942
[14:31:33] [PASSED] gt_was/14014830051
[14:31:33] [PASSED] gt_was/18018781329
[14:31:33] [PASSED] gt_was/1509235366
[14:31:33] [PASSED] gt_was/18018781329
[14:31:33] [PASSED] gt_was/16016694945
[14:31:33] [PASSED] gt_was/14018575942
[14:31:33] [PASSED] gt_was/22016670082
[14:31:33] [PASSED] gt_was/22016670082
[14:31:33] [PASSED] gt_was/14017421178
[14:31:33] [PASSED] gt_was/16025250150
[14:31:33] [PASSED] gt_was/14021871409
[14:31:33] [PASSED] gt_was/16021865536
[14:31:33] [PASSED] gt_was/14021486841
[14:31:33] [PASSED] gt_was/14025160223
[14:31:33] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[14:31:33] [PASSED] gt_was/14025635424
[14:31:33] [PASSED] gt_was/16028005424
[14:31:33] ============== [PASSED] xe_rtp_table_gt_test ===============
[14:31:33] ================== xe_rtp_table_gt_test ===================
[14:31:33] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[14:31:33] [PASSED] gt_tunings/Tuning: 32B Access Enable
[14:31:33] [PASSED] gt_tunings/Tuning: L3 cache
[14:31:33] [PASSED] gt_tunings/Tuning: L3 cache - media
[14:31:33] [PASSED] gt_tunings/Tuning: Compression Overfetch
[14:31:33] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[14:31:33] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[14:31:33] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[14:31:33] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[14:31:33] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[14:31:33] [PASSED] gt_tunings/Tuning: Stateless compression control
[14:31:33] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[14:31:33] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[14:31:33] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[14:31:33] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[14:31:33] ============== [PASSED] xe_rtp_table_gt_test ===============
[14:31:33] ================== xe_rtp_table_oob_test ==================
[14:31:33] [PASSED] oob_was/1607983814
[14:31:33] [PASSED] oob_was/16010904313
[14:31:33] [PASSED] oob_was/18022495364
[14:31:33] [PASSED] oob_was/22012773006
[14:31:33] [PASSED] oob_was/14014475959
[14:31:33] [PASSED] oob_was/22011391025
[14:31:33] [PASSED] oob_was/22012727170
[14:31:33] [PASSED] oob_was/22012727685
[14:31:33] [PASSED] oob_was/22016596838
[14:31:33] [PASSED] oob_was/18020744125
[14:31:33] [PASSED] oob_was/1409600907
[14:31:33] [PASSED] oob_was/22014953428
[14:31:33] [PASSED] oob_was/16017236439
[14:31:33] [PASSED] oob_was/14019821291
[14:31:33] [PASSED] oob_was/14015076503
[14:31:33] [PASSED] oob_was/14018913170
[14:31:33] [PASSED] oob_was/14018094691
[14:31:33] [PASSED] oob_was/18024947630
[14:31:33] [PASSED] oob_was/16022287689
[14:31:33] [PASSED] oob_was/13011645652
[14:31:33] [PASSED] oob_was/14022293748
[14:31:33] [PASSED] oob_was/22019794406
[14:31:33] [PASSED] oob_was/22019338487
[14:31:33] [PASSED] oob_was/16023588340
[14:31:33] [PASSED] oob_was/14019789679
[14:31:33] [PASSED] oob_was/14022866841
[14:31:33] [PASSED] oob_was/16021333562
[14:31:33] [PASSED] oob_was/14016712196
[14:31:33] [PASSED] oob_was/14015568240
[14:31:33] [PASSED] oob_was/18013179988
[14:31:33] [PASSED] oob_was/1508761755
[14:31:33] [PASSED] oob_was/16023105232
[14:31:33] [PASSED] oob_was/16026508708
[14:31:33] [PASSED] oob_was/14020001231
[14:31:33] [PASSED] oob_was/16023683509
[14:31:33] [PASSED] oob_was/14025515070
[14:31:33] [PASSED] oob_was/15015404425_disable
[14:31:33] [PASSED] oob_was/16026007364
[14:31:33] [PASSED] oob_was/14020316580
[14:31:33] [PASSED] oob_was/14025883347
[14:31:33] [PASSED] oob_was/16029380221
[14:31:33] [PASSED] oob_was/22022079272
[14:31:33] [PASSED] oob_was/16029897822
[14:31:33] ============== [PASSED] xe_rtp_table_oob_test ==============
[14:31:33] ================ xe_rtp_table_dev_oob_test ================
[14:31:33] [PASSED] device_oob_was/22010954014
[14:31:33] [PASSED] device_oob_was/15015404425
[14:31:33] [PASSED] device_oob_was/22019338487_display
[14:31:33] [PASSED] device_oob_was/14022085890
[14:31:33] [PASSED] device_oob_was/14026539277
[14:31:33] [PASSED] device_oob_was/14026633728
[14:31:33] [PASSED] device_oob_was/14026746987
[14:31:33] [PASSED] device_oob_was/14026779378
[14:31:33] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[14:31:33] ========== xe_rtp_table_missing_upper_bound_test ==========
[14:31:33] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[14:31:33] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[14:31:33] [PASSED] register_whitelist/1806527549
[14:31:33] [PASSED] register_whitelist/allow_read_ctx_timestamp
[14:31:33] [PASSED] register_whitelist/allow_read_queue_timestamp
[14:31:33] [PASSED] register_whitelist/16014440446
[14:31:33] [PASSED] register_whitelist/16017236439
[14:31:33] [PASSED] register_whitelist/16020183090
[14:31:33] [PASSED] register_whitelist/14024997852
[14:31:33] [PASSED] register_whitelist/14024997852
[14:31:33] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[14:31:33] =============== [PASSED] xe_rtp_tables_test ================
[14:31:33] =================== xe_rtp (3 subtests) ====================
[14:31:33] =================== xe_rtp_rules_tests ====================
[14:31:33] [PASSED] no
[14:31:33] [PASSED] yes
[14:31:33] [PASSED] no-and-no
[14:31:33] [PASSED] no-and-yes
[14:31:33] [PASSED] yes-and-no
[14:31:33] [PASSED] yes-and-yes
[14:31:33] [PASSED] no-or-no
[14:31:33] [PASSED] no-or-yes
[14:31:33] [PASSED] yes-or-no
[14:31:33] [PASSED] yes-or-yes
[14:31:33] [PASSED] no-yes-or-yes-no
[14:31:33] [PASSED] no-yes-or-yes-yes
[14:31:33] [PASSED] yes-yes-or-no-yes
[14:31:33] [PASSED] yes-yes-or-yes-yes
[14:31:33] [PASSED] no-no-or-yes-or-no
[14:31:33] [PASSED] or
[14:31:33] [PASSED] or-yes
[14:31:33] [PASSED] or-no
[14:31:33] [PASSED] yes-or
[14:31:33] [PASSED] no-or
[14:31:33] [PASSED] no-or-or-yes
[14:31:33] [PASSED] yes-or-or-no
[14:31:33] [PASSED] no-or-or-no
[14:31:33] [PASSED] missing-context-engine-class
[14:31:33] [PASSED] missing-context-engine-class-or-yes
[14:31:33] [PASSED] missing-context-engine-class-or-or-yes
[14:31:33] =============== [PASSED] xe_rtp_rules_tests ================
[14:31:33] =============== xe_rtp_process_to_sr_tests ================
[14:31:33] [PASSED] coalesce-same-reg
[14:31:33] [PASSED] coalesce-same-reg-literal-and-func
[14:31:33] [PASSED] no-match-no-add
[14:31:33] [PASSED] two-regs-two-entries
[14:31:33] [PASSED] clr-one-set-other
[14:31:33] [PASSED] set-field
[14:31:33] [PASSED] conflict-duplicate
[14:31:33] [PASSED] conflict-not-disjoint
[14:31:33] [PASSED] conflict-not-disjoint-literal-and-func
[14:31:33] [PASSED] conflict-reg-type
[14:31:33] [PASSED] bad-mcr-reg-forced-to-regular
[14:31:33] [PASSED] bad-regular-reg-forced-to-mcr
[14:31:33] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[14:31:33] ================== xe_rtp_process_tests ===================
[14:31:33] [PASSED] active1
[14:31:33] [PASSED] active2
[14:31:33] [PASSED] active-inactive
[14:31:33] [PASSED] inactive-active
[14:31:33] [PASSED] inactive-active-inactive
[14:31:33] [PASSED] inactive-inactive-inactive
[14:31:33] ============== [PASSED] xe_rtp_process_tests ===============
[14:31:33] ===================== [PASSED] xe_rtp ======================
[14:31:33] ==================== xe_wa (1 subtest) =====================
[14:31:33] ======================== xe_wa_gt =========================
[14:31:33] [PASSED] TIGERLAKE B0
[14:31:33] [PASSED] DG1 A0
[14:31:33] [PASSED] DG1 B0
[14:31:33] [PASSED] ALDERLAKE_S A0
[14:31:33] [PASSED] ALDERLAKE_S B0
[14:31:33] [PASSED] ALDERLAKE_S C0
[14:31:33] [PASSED] ALDERLAKE_S D0
[14:31:33] [PASSED] ALDERLAKE_P A0
[14:31:33] [PASSED] ALDERLAKE_P B0
[14:31:33] [PASSED] ALDERLAKE_P C0
[14:31:33] [PASSED] ALDERLAKE_S RPLS D0
[14:31:33] [PASSED] ALDERLAKE_P RPLU E0
[14:31:33] [PASSED] DG2 G10 C0
[14:31:33] [PASSED] DG2 G11 B1
[14:31:33] [PASSED] DG2 G12 A1
[14:31:33] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[14:31:33] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[14:31:33] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[14:31:33] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[14:31:33] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[14:31:33] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[14:31:33] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[14:31:33] ==================== [PASSED] xe_wa_gt =====================
[14:31:33] ====================== [PASSED] xe_wa ======================
[14:31:33] ============================================================
[14:31:33] Testing complete. Ran 741 tests: passed: 723, skipped: 18
[14:31:33] Elapsed time: 52.910s total, 4.543s configuring, 47.651s building, 0.692s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[14:31:33] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:31:35] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=25
[14:32:05] Starting KUnit Kernel (1/1)...
[14:32:05] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:32:05] ============ drm_test_pick_cmdline (2 subtests) ============
[14:32:05] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[14:32:05] =============== drm_test_pick_cmdline_named ===============
[14:32:05] [PASSED] NTSC
[14:32:05] [PASSED] NTSC-J
[14:32:05] [PASSED] PAL
[14:32:05] [PASSED] PAL-M
[14:32:05] =========== [PASSED] drm_test_pick_cmdline_named ===========
[14:32:05] ============== [PASSED] drm_test_pick_cmdline ==============
[14:32:05] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[14:32:05] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[14:32:05] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[14:32:05] =========== drm_validate_clone_mode (2 subtests) ===========
[14:32:05] ============== drm_test_check_in_clone_mode ===============
[14:32:05] [PASSED] in_clone_mode
[14:32:05] [PASSED] not_in_clone_mode
[14:32:05] ========== [PASSED] drm_test_check_in_clone_mode ===========
[14:32:05] =============== drm_test_check_valid_clones ===============
[14:32:05] [PASSED] not_in_clone_mode
[14:32:05] [PASSED] valid_clone
[14:32:05] [PASSED] invalid_clone
[14:32:05] =========== [PASSED] drm_test_check_valid_clones ===========
[14:32:05] ============= [PASSED] drm_validate_clone_mode =============
[14:32:05] ============= drm_validate_modeset (1 subtest) =============
[14:32:05] [PASSED] drm_test_check_connector_changed_modeset
[14:32:05] ============== [PASSED] drm_validate_modeset ===============
[14:32:05] ====== drm_test_bridge_get_current_state (1 subtest) =======
[14:32:05] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[14:32:05] ======== [PASSED] drm_test_bridge_get_current_state ========
[14:32:05] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[14:32:05] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[14:32:05] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[14:32:05] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[14:32:05] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[14:32:05] ============== drm_bridge_alloc (2 subtests) ===============
[14:32:05] [PASSED] drm_test_drm_bridge_alloc_basic
[14:32:05] [PASSED] drm_test_drm_bridge_alloc_get_put
[14:32:05] ================ [PASSED] drm_bridge_alloc =================
[14:32:05] ============= drm_bridge_bus_fmt (5 subtests) ==============
[14:32:05] [PASSED] drm_test_bridge_rgb_yuv_rgb
[14:32:05] [PASSED] drm_test_bridge_must_convert_to_yuv444
[14:32:05] [PASSED] drm_test_bridge_hdmi_auto_rgb
[14:32:05] [PASSED] drm_test_bridge_auto_first
[14:32:05] [PASSED] drm_test_bridge_rgb_yuv_no_path
[14:32:05] =============== [PASSED] drm_bridge_bus_fmt ================
[14:32:05] ============= drm_cmdline_parser (40 subtests) =============
[14:32:05] [PASSED] drm_test_cmdline_force_d_only
[14:32:05] [PASSED] drm_test_cmdline_force_D_only_dvi
[14:32:05] [PASSED] drm_test_cmdline_force_D_only_hdmi
[14:32:05] [PASSED] drm_test_cmdline_force_D_only_not_digital
[14:32:05] [PASSED] drm_test_cmdline_force_e_only
[14:32:05] [PASSED] drm_test_cmdline_res
[14:32:05] [PASSED] drm_test_cmdline_res_vesa
[14:32:05] [PASSED] drm_test_cmdline_res_vesa_rblank
[14:32:05] [PASSED] drm_test_cmdline_res_rblank
[14:32:05] [PASSED] drm_test_cmdline_res_bpp
[14:32:05] [PASSED] drm_test_cmdline_res_refresh
[14:32:05] [PASSED] drm_test_cmdline_res_bpp_refresh
[14:32:05] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[14:32:05] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[14:32:05] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[14:32:05] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[14:32:05] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[14:32:05] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[14:32:05] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[14:32:05] [PASSED] drm_test_cmdline_res_margins_force_on
[14:32:05] [PASSED] drm_test_cmdline_res_vesa_margins
[14:32:05] [PASSED] drm_test_cmdline_name
[14:32:05] [PASSED] drm_test_cmdline_name_bpp
[14:32:05] [PASSED] drm_test_cmdline_name_option
[14:32:05] [PASSED] drm_test_cmdline_name_bpp_option
[14:32:05] [PASSED] drm_test_cmdline_rotate_0
[14:32:05] [PASSED] drm_test_cmdline_rotate_90
[14:32:05] [PASSED] drm_test_cmdline_rotate_180
[14:32:05] [PASSED] drm_test_cmdline_rotate_270
[14:32:05] [PASSED] drm_test_cmdline_hmirror
[14:32:05] [PASSED] drm_test_cmdline_vmirror
[14:32:05] [PASSED] drm_test_cmdline_margin_options
[14:32:05] [PASSED] drm_test_cmdline_multiple_options
[14:32:05] [PASSED] drm_test_cmdline_bpp_extra_and_option
[14:32:05] [PASSED] drm_test_cmdline_extra_and_option
[14:32:05] [PASSED] drm_test_cmdline_freestanding_options
[14:32:05] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[14:32:05] [PASSED] drm_test_cmdline_panel_orientation
[14:32:05] ================ drm_test_cmdline_invalid =================
[14:32:05] [PASSED] margin_only
[14:32:05] [PASSED] interlace_only
[14:32:05] [PASSED] res_missing_x
[14:32:05] [PASSED] res_missing_y
[14:32:05] [PASSED] res_bad_y
[14:32:05] [PASSED] res_missing_y_bpp
[14:32:05] [PASSED] res_bad_bpp
[14:32:05] [PASSED] res_bad_refresh
[14:32:05] [PASSED] res_bpp_refresh_force_on_off
[14:32:05] [PASSED] res_invalid_mode
[14:32:05] [PASSED] res_bpp_wrong_place_mode
[14:32:05] [PASSED] name_bpp_refresh
[14:32:05] [PASSED] name_refresh
[14:32:05] [PASSED] name_refresh_wrong_mode
[14:32:05] [PASSED] name_refresh_invalid_mode
[14:32:05] [PASSED] rotate_multiple
[14:32:05] [PASSED] rotate_invalid_val
[14:32:05] [PASSED] rotate_truncated
[14:32:05] [PASSED] invalid_option
[14:32:05] [PASSED] invalid_tv_option
[14:32:05] [PASSED] truncated_tv_option
[14:32:05] ============ [PASSED] drm_test_cmdline_invalid =============
[14:32:05] =============== drm_test_cmdline_tv_options ===============
[14:32:05] [PASSED] NTSC
[14:32:05] [PASSED] NTSC_443
[14:32:05] [PASSED] NTSC_J
[14:32:05] [PASSED] PAL
[14:32:05] [PASSED] PAL_M
[14:32:05] [PASSED] PAL_N
[14:32:05] [PASSED] SECAM
[14:32:05] [PASSED] MONO_525
[14:32:05] [PASSED] MONO_625
[14:32:05] =========== [PASSED] drm_test_cmdline_tv_options ===========
[14:32:05] =============== [PASSED] drm_cmdline_parser ================
[14:32:05] ========== drmm_connector_hdmi_init (20 subtests) ==========
[14:32:05] [PASSED] drm_test_connector_hdmi_init_valid
[14:32:05] [PASSED] drm_test_connector_hdmi_init_bpc_8
[14:32:05] [PASSED] drm_test_connector_hdmi_init_bpc_10
[14:32:05] [PASSED] drm_test_connector_hdmi_init_bpc_12
[14:32:05] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[14:32:05] [PASSED] drm_test_connector_hdmi_init_bpc_null
[14:32:05] [PASSED] drm_test_connector_hdmi_init_formats_empty
[14:32:05] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[14:32:05] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[14:32:05] [PASSED] supported_formats=0x9 yuv420_allowed=1
[14:32:05] [PASSED] supported_formats=0x9 yuv420_allowed=0
[14:32:05] [PASSED] supported_formats=0x5 yuv420_allowed=1
[14:32:05] [PASSED] supported_formats=0x5 yuv420_allowed=0
[14:32:05] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[14:32:05] [PASSED] drm_test_connector_hdmi_init_null_ddc
[14:32:05] [PASSED] drm_test_connector_hdmi_init_null_product
[14:32:05] [PASSED] drm_test_connector_hdmi_init_null_vendor
[14:32:05] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[14:32:05] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[14:32:05] [PASSED] drm_test_connector_hdmi_init_product_valid
[14:32:05] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[14:32:05] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[14:32:05] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[14:32:05] ========= drm_test_connector_hdmi_init_type_valid =========
[14:32:05] [PASSED] HDMI-A
[14:32:05] [PASSED] HDMI-B
[14:32:05] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[14:32:05] ======== drm_test_connector_hdmi_init_type_invalid ========
[14:32:05] [PASSED] Unknown
[14:32:05] [PASSED] VGA
[14:32:05] [PASSED] DVI-I
[14:32:05] [PASSED] DVI-D
[14:32:05] [PASSED] DVI-A
[14:32:05] [PASSED] Composite
[14:32:05] [PASSED] SVIDEO
[14:32:05] [PASSED] LVDS
[14:32:05] [PASSED] Component
[14:32:05] [PASSED] DIN
[14:32:05] [PASSED] DP
[14:32:05] [PASSED] TV
[14:32:05] [PASSED] eDP
[14:32:05] [PASSED] Virtual
[14:32:05] [PASSED] DSI
[14:32:05] [PASSED] DPI
[14:32:05] [PASSED] Writeback
[14:32:05] [PASSED] SPI
[14:32:05] [PASSED] USB
[14:32:05] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[14:32:05] ============ [PASSED] drmm_connector_hdmi_init =============
[14:32:05] ============= drmm_connector_init (3 subtests) =============
[14:32:05] [PASSED] drm_test_drmm_connector_init
[14:32:05] [PASSED] drm_test_drmm_connector_init_null_ddc
[14:32:05] ========= drm_test_drmm_connector_init_type_valid =========
[14:32:05] [PASSED] Unknown
[14:32:05] [PASSED] VGA
[14:32:05] [PASSED] DVI-I
[14:32:05] [PASSED] DVI-D
[14:32:05] [PASSED] DVI-A
[14:32:05] [PASSED] Composite
[14:32:05] [PASSED] SVIDEO
[14:32:05] [PASSED] LVDS
[14:32:05] [PASSED] Component
[14:32:05] [PASSED] DIN
[14:32:05] [PASSED] DP
[14:32:05] [PASSED] HDMI-A
[14:32:05] [PASSED] HDMI-B
[14:32:05] [PASSED] TV
[14:32:05] [PASSED] eDP
[14:32:05] [PASSED] Virtual
[14:32:05] [PASSED] DSI
[14:32:05] [PASSED] DPI
[14:32:05] [PASSED] Writeback
[14:32:05] [PASSED] SPI
[14:32:05] [PASSED] USB
[14:32:05] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[14:32:05] =============== [PASSED] drmm_connector_init ===============
[14:32:05] ========= drm_connector_dynamic_init (6 subtests) ==========
[14:32:05] [PASSED] drm_test_drm_connector_dynamic_init
[14:32:05] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[14:32:05] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[14:32:05] [PASSED] drm_test_drm_connector_dynamic_init_properties
[14:32:05] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[14:32:05] [PASSED] Unknown
[14:32:05] [PASSED] VGA
[14:32:05] [PASSED] DVI-I
[14:32:05] [PASSED] DVI-D
[14:32:05] [PASSED] DVI-A
[14:32:05] [PASSED] Composite
[14:32:05] [PASSED] SVIDEO
[14:32:05] [PASSED] LVDS
[14:32:05] [PASSED] Component
[14:32:05] [PASSED] DIN
[14:32:05] [PASSED] DP
[14:32:05] [PASSED] HDMI-A
[14:32:05] [PASSED] HDMI-B
[14:32:05] [PASSED] TV
[14:32:05] [PASSED] eDP
[14:32:05] [PASSED] Virtual
[14:32:05] [PASSED] DSI
[14:32:05] [PASSED] DPI
[14:32:05] [PASSED] Writeback
[14:32:05] [PASSED] SPI
[14:32:05] [PASSED] USB
[14:32:05] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[14:32:05] ======== drm_test_drm_connector_dynamic_init_name =========
[14:32:05] [PASSED] Unknown
[14:32:05] [PASSED] VGA
[14:32:05] [PASSED] DVI-I
[14:32:05] [PASSED] DVI-D
[14:32:05] [PASSED] DVI-A
[14:32:05] [PASSED] Composite
[14:32:05] [PASSED] SVIDEO
[14:32:05] [PASSED] LVDS
[14:32:05] [PASSED] Component
[14:32:05] [PASSED] DIN
[14:32:05] [PASSED] DP
[14:32:05] [PASSED] HDMI-A
[14:32:05] [PASSED] HDMI-B
[14:32:05] [PASSED] TV
[14:32:05] [PASSED] eDP
[14:32:05] [PASSED] Virtual
[14:32:05] [PASSED] DSI
[14:32:05] [PASSED] DPI
[14:32:05] [PASSED] Writeback
[14:32:05] [PASSED] SPI
[14:32:05] [PASSED] USB
[14:32:05] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[14:32:05] =========== [PASSED] drm_connector_dynamic_init ============
[14:32:05] ==== drm_connector_dynamic_register_early (4 subtests) =====
[14:32:05] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[14:32:05] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[14:32:05] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[14:32:05] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[14:32:05] ====== [PASSED] drm_connector_dynamic_register_early =======
[14:32:05] ======= drm_connector_dynamic_register (7 subtests) ========
[14:32:05] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[14:32:05] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[14:32:05] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[14:32:05] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[14:32:05] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[14:32:05] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[14:32:05] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[14:32:05] ========= [PASSED] drm_connector_dynamic_register ==========
[14:32:05] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[14:32:05] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[14:32:05] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[14:32:05] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[14:32:05] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[14:32:05] ========== drm_test_get_tv_mode_from_name_valid ===========
[14:32:05] [PASSED] NTSC
[14:32:05] [PASSED] NTSC-443
[14:32:05] [PASSED] NTSC-J
[14:32:05] [PASSED] PAL
[14:32:05] [PASSED] PAL-M
[14:32:05] [PASSED] PAL-N
[14:32:05] [PASSED] SECAM
[14:32:05] [PASSED] Mono
[14:32:05] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[14:32:05] [PASSED] drm_test_get_tv_mode_from_name_truncated
[14:32:05] ============ [PASSED] drm_get_tv_mode_from_name ============
[14:32:05] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[14:32:05] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[14:32:05] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[14:32:05] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[14:32:05] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[14:32:05] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[14:32:05] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[14:32:05] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[14:32:05] [PASSED] VIC 96
[14:32:05] [PASSED] VIC 97
[14:32:05] [PASSED] VIC 101
[14:32:05] [PASSED] VIC 102
[14:32:05] [PASSED] VIC 106
[14:32:05] [PASSED] VIC 107
[14:32:05] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[14:32:05] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[14:32:05] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[14:32:05] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[14:32:05] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[14:32:05] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[14:32:05] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[14:32:05] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[14:32:05] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[14:32:05] [PASSED] Automatic
[14:32:05] [PASSED] Full
[14:32:05] [PASSED] Limited 16:235
[14:32:05] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[14:32:05] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[14:32:05] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[14:32:05] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[14:32:05] === drm_test_drm_hdmi_connector_get_output_format_name ====
[14:32:05] [PASSED] RGB
[14:32:05] [PASSED] YUV 4:2:0
[14:32:05] [PASSED] YUV 4:2:2
[14:32:05] [PASSED] YUV 4:4:4
[14:32:05] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[14:32:05] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[14:32:05] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[14:32:05] ============= drm_damage_helper (21 subtests) ==============
[14:32:05] [PASSED] drm_test_damage_iter_no_damage
[14:32:05] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[14:32:05] [PASSED] drm_test_damage_iter_no_damage_src_moved
[14:32:05] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[14:32:05] [PASSED] drm_test_damage_iter_no_damage_not_visible
[14:32:05] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[14:32:05] [PASSED] drm_test_damage_iter_no_damage_no_fb
[14:32:05] [PASSED] drm_test_damage_iter_simple_damage
[14:32:05] [PASSED] drm_test_damage_iter_single_damage
[14:32:05] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[14:32:05] [PASSED] drm_test_damage_iter_single_damage_outside_src
[14:32:05] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[14:32:05] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[14:32:05] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[14:32:05] [PASSED] drm_test_damage_iter_single_damage_src_moved
[14:32:05] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[14:32:05] [PASSED] drm_test_damage_iter_damage
[14:32:05] [PASSED] drm_test_damage_iter_damage_one_intersect
[14:32:05] [PASSED] drm_test_damage_iter_damage_one_outside
[14:32:05] [PASSED] drm_test_damage_iter_damage_src_moved
[14:32:05] [PASSED] drm_test_damage_iter_damage_not_visible
[14:32:05] ================ [PASSED] drm_damage_helper ================
[14:32:05] ============== drm_dp_mst_helper (3 subtests) ==============
[14:32:05] ============== drm_test_dp_mst_calc_pbn_mode ==============
[14:32:05] [PASSED] Clock 154000 BPP 30 DSC disabled
[14:32:05] [PASSED] Clock 234000 BPP 30 DSC disabled
[14:32:05] [PASSED] Clock 297000 BPP 24 DSC disabled
[14:32:05] [PASSED] Clock 332880 BPP 24 DSC enabled
[14:32:05] [PASSED] Clock 324540 BPP 24 DSC enabled
[14:32:05] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[14:32:05] ============== drm_test_dp_mst_calc_pbn_div ===============
[14:32:05] [PASSED] Link rate 2000000 lane count 4
[14:32:05] [PASSED] Link rate 2000000 lane count 2
[14:32:05] [PASSED] Link rate 2000000 lane count 1
[14:32:05] [PASSED] Link rate 1350000 lane count 4
[14:32:05] [PASSED] Link rate 1350000 lane count 2
[14:32:05] [PASSED] Link rate 1350000 lane count 1
[14:32:05] [PASSED] Link rate 1000000 lane count 4
[14:32:05] [PASSED] Link rate 1000000 lane count 2
[14:32:05] [PASSED] Link rate 1000000 lane count 1
[14:32:05] [PASSED] Link rate 810000 lane count 4
[14:32:05] [PASSED] Link rate 810000 lane count 2
[14:32:05] [PASSED] Link rate 810000 lane count 1
[14:32:05] [PASSED] Link rate 540000 lane count 4
[14:32:05] [PASSED] Link rate 540000 lane count 2
[14:32:05] [PASSED] Link rate 540000 lane count 1
[14:32:05] [PASSED] Link rate 270000 lane count 4
[14:32:05] [PASSED] Link rate 270000 lane count 2
[14:32:05] [PASSED] Link rate 270000 lane count 1
[14:32:05] [PASSED] Link rate 162000 lane count 4
[14:32:05] [PASSED] Link rate 162000 lane count 2
[14:32:05] [PASSED] Link rate 162000 lane count 1
[14:32:05] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[14:32:05] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[14:32:05] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[14:32:05] [PASSED] DP_POWER_UP_PHY with port number
[14:32:05] [PASSED] DP_POWER_DOWN_PHY with port number
[14:32:05] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[14:32:05] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[14:32:05] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[14:32:05] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[14:32:05] [PASSED] DP_QUERY_PAYLOAD with port number
[14:32:05] [PASSED] DP_QUERY_PAYLOAD with VCPI
[14:32:05] [PASSED] DP_REMOTE_DPCD_READ with port number
[14:32:05] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[14:32:05] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[14:32:05] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[14:32:05] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[14:32:05] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[14:32:05] [PASSED] DP_REMOTE_I2C_READ with port number
[14:32:05] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[14:32:05] [PASSED] DP_REMOTE_I2C_READ with transactions array
[14:32:05] [PASSED] DP_REMOTE_I2C_WRITE with port number
[14:32:05] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[14:32:05] [PASSED] DP_REMOTE_I2C_WRITE with data array
[14:32:05] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[14:32:05] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[14:32:05] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[14:32:05] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[14:32:05] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[14:32:05] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[14:32:05] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[14:32:05] ================ [PASSED] drm_dp_mst_helper ================
[14:32:05] ================== drm_exec (7 subtests) ===================
[14:32:05] [PASSED] sanitycheck
[14:32:05] [PASSED] test_lock
[14:32:05] [PASSED] test_lock_unlock
[14:32:05] [PASSED] test_duplicates
[14:32:05] [PASSED] test_prepare
[14:32:05] [PASSED] test_prepare_array
[14:32:05] [PASSED] test_multiple_loops
[14:32:05] ==================== [PASSED] drm_exec =====================
[14:32:05] =========== drm_format_helper_test (17 subtests) ===========
[14:32:05] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[14:32:05] [PASSED] single_pixel_source_buffer
[14:32:05] [PASSED] single_pixel_clip_rectangle
[14:32:05] [PASSED] well_known_colors
[14:32:05] [PASSED] destination_pitch
[14:32:05] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[14:32:05] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[14:32:05] [PASSED] single_pixel_source_buffer
[14:32:05] [PASSED] single_pixel_clip_rectangle
[14:32:05] [PASSED] well_known_colors
[14:32:05] [PASSED] destination_pitch
[14:32:05] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[14:32:05] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[14:32:05] [PASSED] single_pixel_source_buffer
[14:32:05] [PASSED] single_pixel_clip_rectangle
[14:32:05] [PASSED] well_known_colors
[14:32:05] [PASSED] destination_pitch
[14:32:05] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[14:32:05] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[14:32:05] [PASSED] single_pixel_source_buffer
[14:32:05] [PASSED] single_pixel_clip_rectangle
[14:32:05] [PASSED] well_known_colors
[14:32:05] [PASSED] destination_pitch
[14:32:05] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[14:32:05] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[14:32:05] [PASSED] single_pixel_source_buffer
[14:32:05] [PASSED] single_pixel_clip_rectangle
[14:32:05] [PASSED] well_known_colors
[14:32:05] [PASSED] destination_pitch
[14:32:05] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[14:32:05] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[14:32:05] [PASSED] single_pixel_source_buffer
[14:32:05] [PASSED] single_pixel_clip_rectangle
[14:32:05] [PASSED] well_known_colors
[14:32:05] [PASSED] destination_pitch
[14:32:05] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[14:32:05] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[14:32:05] [PASSED] single_pixel_source_buffer
[14:32:05] [PASSED] single_pixel_clip_rectangle
[14:32:05] [PASSED] well_known_colors
[14:32:05] [PASSED] destination_pitch
[14:32:05] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[14:32:05] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[14:32:05] [PASSED] single_pixel_source_buffer
[14:32:05] [PASSED] single_pixel_clip_rectangle
[14:32:05] [PASSED] well_known_colors
[14:32:05] [PASSED] destination_pitch
[14:32:05] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[14:32:05] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[14:32:05] [PASSED] single_pixel_source_buffer
[14:32:05] [PASSED] single_pixel_clip_rectangle
[14:32:05] [PASSED] well_known_colors
[14:32:05] [PASSED] destination_pitch
[14:32:05] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[14:32:05] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[14:32:05] [PASSED] single_pixel_source_buffer
[14:32:05] [PASSED] single_pixel_clip_rectangle
[14:32:05] [PASSED] well_known_colors
[14:32:05] [PASSED] destination_pitch
[14:32:05] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[14:32:05] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[14:32:05] [PASSED] single_pixel_source_buffer
[14:32:05] [PASSED] single_pixel_clip_rectangle
[14:32:05] [PASSED] well_known_colors
[14:32:05] [PASSED] destination_pitch
[14:32:05] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[14:32:05] ============== drm_test_fb_xrgb8888_to_mono ===============
[14:32:05] [PASSED] single_pixel_source_buffer
[14:32:05] [PASSED] single_pixel_clip_rectangle
[14:32:05] [PASSED] well_known_colors
[14:32:05] [PASSED] destination_pitch
[14:32:05] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[14:32:05] ==================== drm_test_fb_swab =====================
[14:32:05] [PASSED] single_pixel_source_buffer
[14:32:05] [PASSED] single_pixel_clip_rectangle
[14:32:05] [PASSED] well_known_colors
[14:32:05] [PASSED] destination_pitch
[14:32:05] ================ [PASSED] drm_test_fb_swab =================
[14:32:05] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[14:32:05] [PASSED] single_pixel_source_buffer
[14:32:05] [PASSED] single_pixel_clip_rectangle
[14:32:05] [PASSED] well_known_colors
[14:32:05] [PASSED] destination_pitch
[14:32:05] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[14:32:05] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[14:32:05] [PASSED] single_pixel_source_buffer
[14:32:05] [PASSED] single_pixel_clip_rectangle
[14:32:05] [PASSED] well_known_colors
[14:32:05] [PASSED] destination_pitch
[14:32:05] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[14:32:05] ================= drm_test_fb_clip_offset =================
[14:32:05] [PASSED] pass through
[14:32:05] [PASSED] horizontal offset
[14:32:05] [PASSED] vertical offset
[14:32:05] [PASSED] horizontal and vertical offset
[14:32:05] [PASSED] horizontal offset (custom pitch)
[14:32:05] [PASSED] vertical offset (custom pitch)
[14:32:05] [PASSED] horizontal and vertical offset (custom pitch)
[14:32:05] ============= [PASSED] drm_test_fb_clip_offset =============
[14:32:05] =================== drm_test_fb_memcpy ====================
[14:32:05] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[14:32:05] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[14:32:05] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[14:32:05] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[14:32:05] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[14:32:05] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[14:32:05] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[14:32:05] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[14:32:05] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[14:32:05] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[14:32:05] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[14:32:05] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[14:32:05] =============== [PASSED] drm_test_fb_memcpy ================
[14:32:05] ============= [PASSED] drm_format_helper_test ==============
[14:32:05] ================= drm_format (18 subtests) =================
[14:32:05] [PASSED] drm_test_format_block_width_invalid
[14:32:05] [PASSED] drm_test_format_block_width_one_plane
[14:32:05] [PASSED] drm_test_format_block_width_two_plane
[14:32:05] [PASSED] drm_test_format_block_width_three_plane
[14:32:05] [PASSED] drm_test_format_block_width_tiled
[14:32:05] [PASSED] drm_test_format_block_height_invalid
[14:32:05] [PASSED] drm_test_format_block_height_one_plane
[14:32:05] [PASSED] drm_test_format_block_height_two_plane
[14:32:05] [PASSED] drm_test_format_block_height_three_plane
[14:32:05] [PASSED] drm_test_format_block_height_tiled
[14:32:05] [PASSED] drm_test_format_min_pitch_invalid
[14:32:05] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[14:32:05] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[14:32:05] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[14:32:05] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[14:32:05] [PASSED] drm_test_format_min_pitch_two_plane
[14:32:05] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[14:32:05] [PASSED] drm_test_format_min_pitch_tiled
[14:32:05] =================== [PASSED] drm_format ====================
[14:32:05] ============== drm_framebuffer (10 subtests) ===============
[14:32:05] ========== drm_test_framebuffer_check_src_coords ==========
[14:32:05] [PASSED] Success: source fits into fb
[14:32:05] [PASSED] Fail: overflowing fb with x-axis coordinate
[14:32:05] [PASSED] Fail: overflowing fb with y-axis coordinate
[14:32:05] [PASSED] Fail: overflowing fb with source width
[14:32:05] [PASSED] Fail: overflowing fb with source height
[14:32:05] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[14:32:05] [PASSED] drm_test_framebuffer_cleanup
[14:32:05] =============== drm_test_framebuffer_create ===============
[14:32:05] [PASSED] ABGR8888 normal sizes
[14:32:05] [PASSED] ABGR8888 max sizes
[14:32:05] [PASSED] ABGR8888 pitch greater than min required
[14:32:05] [PASSED] ABGR8888 pitch less than min required
[14:32:05] [PASSED] ABGR8888 Invalid width
[14:32:05] [PASSED] ABGR8888 Invalid buffer handle
[14:32:05] [PASSED] No pixel format
[14:32:05] [PASSED] ABGR8888 Width 0
[14:32:05] [PASSED] ABGR8888 Height 0
[14:32:05] [PASSED] ABGR8888 Out of bound height * pitch combination
[14:32:05] [PASSED] ABGR8888 Large buffer offset
[14:32:05] [PASSED] ABGR8888 Buffer offset for inexistent plane
[14:32:05] [PASSED] ABGR8888 Invalid flag
[14:32:05] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[14:32:05] [PASSED] ABGR8888 Valid buffer modifier
[14:32:05] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[14:32:05] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[14:32:05] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[14:32:05] [PASSED] NV12 Normal sizes
[14:32:05] [PASSED] NV12 Max sizes
[14:32:05] [PASSED] NV12 Invalid pitch
[14:32:05] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[14:32:05] [PASSED] NV12 different modifier per-plane
[14:32:05] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[14:32:05] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[14:32:05] [PASSED] NV12 Modifier for inexistent plane
[14:32:05] [PASSED] NV12 Handle for inexistent plane
[14:32:05] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[14:32:05] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[14:32:05] [PASSED] YVU420 Normal sizes
[14:32:05] [PASSED] YVU420 Max sizes
[14:32:05] [PASSED] YVU420 Invalid pitch
[14:32:05] [PASSED] YVU420 Different pitches
[14:32:05] [PASSED] YVU420 Different buffer offsets/pitches
[14:32:05] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[14:32:05] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[14:32:05] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[14:32:05] [PASSED] YVU420 Valid modifier
[14:32:05] [PASSED] YVU420 Different modifiers per plane
[14:32:05] [PASSED] YVU420 Modifier for inexistent plane
[14:32:05] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[14:32:05] [PASSED] X0L2 Normal sizes
[14:32:05] [PASSED] X0L2 Max sizes
[14:32:05] [PASSED] X0L2 Invalid pitch
[14:32:05] [PASSED] X0L2 Pitch greater than minimum required
[14:32:05] [PASSED] X0L2 Handle for inexistent plane
[14:32:05] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[14:32:05] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[14:32:05] [PASSED] X0L2 Valid modifier
[14:32:05] [PASSED] X0L2 Modifier for inexistent plane
[14:32:05] =========== [PASSED] drm_test_framebuffer_create ===========
[14:32:05] [PASSED] drm_test_framebuffer_free
[14:32:05] [PASSED] drm_test_framebuffer_init
[14:32:05] [PASSED] drm_test_framebuffer_init_bad_format
[14:32:05] [PASSED] drm_test_framebuffer_init_dev_mismatch
[14:32:05] [PASSED] drm_test_framebuffer_lookup
[14:32:05] [PASSED] drm_test_framebuffer_lookup_inexistent
[14:32:05] [PASSED] drm_test_framebuffer_modifiers_not_supported
[14:32:05] ================= [PASSED] drm_framebuffer =================
[14:32:05] ================ drm_gem_shmem (8 subtests) ================
[14:32:05] [PASSED] drm_gem_shmem_test_obj_create
[14:32:05] [PASSED] drm_gem_shmem_test_obj_create_private
[14:32:05] [PASSED] drm_gem_shmem_test_pin_pages
[14:32:05] [PASSED] drm_gem_shmem_test_vmap
[14:32:05] [PASSED] drm_gem_shmem_test_get_sg_table
[14:32:05] [PASSED] drm_gem_shmem_test_get_pages_sgt
[14:32:05] [PASSED] drm_gem_shmem_test_madvise
[14:32:05] [PASSED] drm_gem_shmem_test_purge
[14:32:05] ================== [PASSED] drm_gem_shmem ==================
[14:32:05] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[14:32:05] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[14:32:05] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[14:32:05] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[14:32:05] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[14:32:05] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[14:32:05] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[14:32:05] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[14:32:05] [PASSED] Automatic
[14:32:05] [PASSED] Full
[14:32:05] [PASSED] Limited 16:235
[14:32:05] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[14:32:05] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[14:32:05] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[14:32:05] [PASSED] drm_test_check_disable_connector
[14:32:05] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[14:32:05] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[14:32:05] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[14:32:05] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[14:32:05] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[14:32:05] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[14:32:05] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[14:32:05] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[14:32:05] [PASSED] drm_test_check_output_bpc_dvi
[14:32:05] [PASSED] drm_test_check_output_bpc_format_vic_1
[14:32:05] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[14:32:05] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[14:32:05] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[14:32:05] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[14:32:05] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[14:32:05] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[14:32:05] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[14:32:05] ============ drm_test_check_hdmi_color_format =============
[14:32:05] [PASSED] AUTO -> RGB
[14:32:05] [PASSED] YCBCR422 -> YUV422
[14:32:05] [PASSED] YCBCR420 -> YUV420
[14:32:05] [PASSED] YCBCR444 -> YUV444
[14:32:05] [PASSED] RGB -> RGB
[14:32:05] ======== [PASSED] drm_test_check_hdmi_color_format =========
[14:32:05] ======== drm_test_check_hdmi_color_format_420_only ========
[14:32:05] [PASSED] RGB should fail
[14:32:05] [PASSED] YUV444 should fail
[14:32:05] [PASSED] YUV422 should fail
[14:32:05] [PASSED] YUV420 should work
[14:32:05] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[14:32:05] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[14:32:05] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[14:32:05] [PASSED] drm_test_check_broadcast_rgb_value
[14:32:05] [PASSED] drm_test_check_bpc_8_value
[14:32:05] [PASSED] drm_test_check_bpc_10_value
[14:32:05] [PASSED] drm_test_check_bpc_12_value
[14:32:05] [PASSED] drm_test_check_format_value
[14:32:05] [PASSED] drm_test_check_tmds_char_value
[14:32:05] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[14:32:05] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[14:32:05] [PASSED] drm_test_check_mode_valid
[14:32:05] [PASSED] drm_test_check_mode_valid_reject
[14:32:05] [PASSED] drm_test_check_mode_valid_reject_rate
[14:32:05] [PASSED] drm_test_check_mode_valid_reject_max_clock
[14:32:05] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[14:32:05] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[14:32:05] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[14:32:05] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[14:32:05] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[14:32:05] [PASSED] drm_test_check_infoframes
[14:32:05] [PASSED] drm_test_check_reject_avi_infoframe
[14:32:05] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[14:32:05] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[14:32:05] [PASSED] drm_test_check_reject_audio_infoframe
[14:32:05] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[14:32:05] ================= drm_managed (2 subtests) =================
[14:32:05] [PASSED] drm_test_managed_release_action
[14:32:05] [PASSED] drm_test_managed_run_action
[14:32:05] =================== [PASSED] drm_managed ===================
[14:32:05] =================== drm_mm (6 subtests) ====================
[14:32:05] [PASSED] drm_test_mm_init
[14:32:05] [PASSED] drm_test_mm_debug
[14:32:05] [PASSED] drm_test_mm_align32
[14:32:05] [PASSED] drm_test_mm_align64
[14:32:05] [PASSED] drm_test_mm_lowest
[14:32:05] [PASSED] drm_test_mm_highest
[14:32:05] ===================== [PASSED] drm_mm ======================
[14:32:05] ============= drm_modes_analog_tv (5 subtests) =============
[14:32:05] [PASSED] drm_test_modes_analog_tv_mono_576i
[14:32:05] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[14:32:05] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[14:32:05] [PASSED] drm_test_modes_analog_tv_pal_576i
[14:32:05] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[14:32:05] =============== [PASSED] drm_modes_analog_tv ===============
[14:32:05] ============== drm_plane_helper (2 subtests) ===============
[14:32:05] =============== drm_test_check_plane_state ================
[14:32:05] [PASSED] clipping_simple
[14:32:05] [PASSED] clipping_rotate_reflect
[14:32:05] [PASSED] positioning_simple
[14:32:05] [PASSED] upscaling
[14:32:05] [PASSED] downscaling
[14:32:05] [PASSED] rounding1
[14:32:05] [PASSED] rounding2
[14:32:05] [PASSED] rounding3
[14:32:05] [PASSED] rounding4
[14:32:05] =========== [PASSED] drm_test_check_plane_state ============
[14:32:05] =========== drm_test_check_invalid_plane_state ============
[14:32:05] [PASSED] positioning_invalid
[14:32:05] [PASSED] upscaling_invalid
[14:32:05] [PASSED] downscaling_invalid
[14:32:05] ======= [PASSED] drm_test_check_invalid_plane_state ========
[14:32:05] ================ [PASSED] drm_plane_helper =================
[14:32:05] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[14:32:05] ====== drm_test_connector_helper_tv_get_modes_check =======
[14:32:05] [PASSED] None
[14:32:05] [PASSED] PAL
[14:32:05] [PASSED] NTSC
[14:32:05] [PASSED] Both, NTSC Default
[14:32:05] [PASSED] Both, PAL Default
[14:32:05] [PASSED] Both, NTSC Default, with PAL on command-line
[14:32:05] [PASSED] Both, PAL Default, with NTSC on command-line
[14:32:05] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[14:32:05] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[14:32:05] ================== drm_rect (9 subtests) ===================
[14:32:05] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[14:32:05] [PASSED] drm_test_rect_clip_scaled_not_clipped
[14:32:05] [PASSED] drm_test_rect_clip_scaled_clipped
[14:32:05] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[14:32:05] ================= drm_test_rect_intersect =================
[14:32:05] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[14:32:05] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[14:32:05] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[14:32:05] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[14:32:05] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[14:32:05] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[14:32:05] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[14:32:05] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[14:32:05] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[14:32:05] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[14:32:05] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[14:32:05] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[14:32:05] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[14:32:05] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[14:32:05] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[14:32:05] ============= [PASSED] drm_test_rect_intersect =============
[14:32:05] ================ drm_test_rect_calc_hscale ================
[14:32:05] [PASSED] normal use
[14:32:05] [PASSED] out of max range
[14:32:05] [PASSED] out of min range
[14:32:05] [PASSED] zero dst
[14:32:05] [PASSED] negative src
[14:32:05] [PASSED] negative dst
[14:32:05] ============ [PASSED] drm_test_rect_calc_hscale ============
[14:32:05] ================ drm_test_rect_calc_vscale ================
[14:32:05] [PASSED] normal use
[14:32:05] [PASSED] out of max range
[14:32:05] [PASSED] out of min range
[14:32:05] [PASSED] zero dst
[14:32:05] [PASSED] negative src
[14:32:05] [PASSED] negative dst
[14:32:05] ============ [PASSED] drm_test_rect_calc_vscale ============
[14:32:05] ================== drm_test_rect_rotate ===================
[14:32:05] [PASSED] reflect-x
[14:32:05] [PASSED] reflect-y
[14:32:05] [PASSED] rotate-0
[14:32:05] [PASSED] rotate-90
[14:32:05] [PASSED] rotate-180
[14:32:05] [PASSED] rotate-270
[14:32:05] ============== [PASSED] drm_test_rect_rotate ===============
[14:32:05] ================ drm_test_rect_rotate_inv =================
[14:32:05] [PASSED] reflect-x
[14:32:05] [PASSED] reflect-y
[14:32:05] [PASSED] rotate-0
[14:32:05] [PASSED] rotate-90
[14:32:05] [PASSED] rotate-180
[14:32:05] [PASSED] rotate-270
[14:32:05] ============ [PASSED] drm_test_rect_rotate_inv =============
[14:32:05] ==================== [PASSED] drm_rect =====================
[14:32:05] ============ drm_sysfb_modeset_test (1 subtest) ============
[14:32:05] ============ drm_test_sysfb_build_fourcc_list =============
[14:32:05] [PASSED] no native formats
[14:32:05] [PASSED] XRGB8888 as native format
[14:32:05] [PASSED] remove duplicates
[14:32:05] [PASSED] convert alpha formats
[14:32:05] [PASSED] random formats
[14:32:05] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[14:32:05] ============= [PASSED] drm_sysfb_modeset_test ==============
[14:32:05] ================== drm_fixp (2 subtests) ===================
[14:32:05] [PASSED] drm_test_int2fixp
[14:32:05] [PASSED] drm_test_sm2fixp
[14:32:05] ==================== [PASSED] drm_fixp =====================
[14:32:05] ============================================================
[14:32:05] Testing complete. Ran 637 tests: passed: 637
[14:32:06] Elapsed time: 32.500s total, 1.725s configuring, 30.560s building, 0.195s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[14:32:06] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:32:07] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=25
[14:32:17] Starting KUnit Kernel (1/1)...
[14:32:17] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:32:17] ================= ttm_device (5 subtests) ==================
[14:32:17] [PASSED] ttm_device_init_basic
[14:32:17] [PASSED] ttm_device_init_multiple
[14:32:17] [PASSED] ttm_device_fini_basic
[14:32:17] [PASSED] ttm_device_init_no_vma_man
[14:32:17] ================== ttm_device_init_pools ==================
[14:32:17] [PASSED] No DMA allocations, no DMA32 required
[14:32:17] [PASSED] DMA allocations, DMA32 required
[14:32:17] [PASSED] No DMA allocations, DMA32 required
[14:32:17] [PASSED] DMA allocations, no DMA32 required
[14:32:17] ============== [PASSED] ttm_device_init_pools ==============
[14:32:17] =================== [PASSED] ttm_device ====================
[14:32:17] ================== ttm_pool (8 subtests) ===================
[14:32:17] ================== ttm_pool_alloc_basic ===================
[14:32:17] [PASSED] One page
[14:32:17] [PASSED] More than one page
[14:32:17] [PASSED] Above the allocation limit
[14:32:17] [PASSED] One page, with coherent DMA mappings enabled
[14:32:17] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[14:32:17] ============== [PASSED] ttm_pool_alloc_basic ===============
[14:32:17] ============== ttm_pool_alloc_basic_dma_addr ==============
[14:32:17] [PASSED] One page
[14:32:17] [PASSED] More than one page
[14:32:17] [PASSED] Above the allocation limit
[14:32:17] [PASSED] One page, with coherent DMA mappings enabled
[14:32:17] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[14:32:17] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[14:32:17] [PASSED] ttm_pool_alloc_order_caching_match
[14:32:17] [PASSED] ttm_pool_alloc_caching_mismatch
[14:32:17] [PASSED] ttm_pool_alloc_order_mismatch
[14:32:17] [PASSED] ttm_pool_free_dma_alloc
[14:32:17] [PASSED] ttm_pool_free_no_dma_alloc
[14:32:17] [PASSED] ttm_pool_fini_basic
[14:32:17] ==================== [PASSED] ttm_pool =====================
[14:32:17] ================ ttm_resource (8 subtests) =================
[14:32:17] ================= ttm_resource_init_basic =================
[14:32:17] [PASSED] Init resource in TTM_PL_SYSTEM
[14:32:17] [PASSED] Init resource in TTM_PL_VRAM
[14:32:17] [PASSED] Init resource in a private placement
[14:32:17] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[14:32:17] ============= [PASSED] ttm_resource_init_basic =============
[14:32:17] [PASSED] ttm_resource_init_pinned
[14:32:17] [PASSED] ttm_resource_fini_basic
[14:32:17] [PASSED] ttm_resource_manager_init_basic
[14:32:17] [PASSED] ttm_resource_manager_usage_basic
[14:32:17] [PASSED] ttm_resource_manager_set_used_basic
[14:32:17] [PASSED] ttm_sys_man_alloc_basic
[14:32:17] [PASSED] ttm_sys_man_free_basic
[14:32:17] ================== [PASSED] ttm_resource ===================
[14:32:17] =================== ttm_tt (15 subtests) ===================
[14:32:17] ==================== ttm_tt_init_basic ====================
[14:32:17] [PASSED] Page-aligned size
[14:32:17] [PASSED] Extra pages requested
[14:32:17] ================ [PASSED] ttm_tt_init_basic ================
[14:32:17] [PASSED] ttm_tt_init_misaligned
[14:32:17] [PASSED] ttm_tt_fini_basic
[14:32:17] [PASSED] ttm_tt_fini_sg
[14:32:17] [PASSED] ttm_tt_fini_shmem
[14:32:17] [PASSED] ttm_tt_create_basic
[14:32:17] [PASSED] ttm_tt_create_invalid_bo_type
[14:32:17] [PASSED] ttm_tt_create_ttm_exists
[14:32:17] [PASSED] ttm_tt_create_failed
[14:32:17] [PASSED] ttm_tt_destroy_basic
[14:32:17] [PASSED] ttm_tt_populate_null_ttm
[14:32:17] [PASSED] ttm_tt_populate_populated_ttm
[14:32:17] [PASSED] ttm_tt_unpopulate_basic
[14:32:17] [PASSED] ttm_tt_unpopulate_empty_ttm
[14:32:17] [PASSED] ttm_tt_swapin_basic
[14:32:17] ===================== [PASSED] ttm_tt ======================
[14:32:17] =================== ttm_bo (14 subtests) ===================
[14:32:17] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[14:32:17] [PASSED] Cannot be interrupted and sleeps
[14:32:17] [PASSED] Cannot be interrupted, locks straight away
[14:32:17] [PASSED] Can be interrupted, sleeps
[14:32:17] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[14:32:17] [PASSED] ttm_bo_reserve_locked_no_sleep
[14:32:17] [PASSED] ttm_bo_reserve_no_wait_ticket
[14:32:17] [PASSED] ttm_bo_reserve_double_resv
[14:32:17] [PASSED] ttm_bo_reserve_interrupted
[14:32:17] [PASSED] ttm_bo_reserve_deadlock
[14:32:17] [PASSED] ttm_bo_unreserve_basic
[14:32:17] [PASSED] ttm_bo_unreserve_pinned
[14:32:17] [PASSED] ttm_bo_unreserve_bulk
[14:32:17] [PASSED] ttm_bo_fini_basic
[14:32:17] [PASSED] ttm_bo_fini_shared_resv
[14:32:17] [PASSED] ttm_bo_pin_basic
[14:32:17] [PASSED] ttm_bo_pin_unpin_resource
[14:32:17] [PASSED] ttm_bo_multiple_pin_one_unpin
[14:32:17] ===================== [PASSED] ttm_bo ======================
[14:32:17] ============== ttm_bo_validate (22 subtests) ===============
[14:32:17] ============== ttm_bo_init_reserved_sys_man ===============
[14:32:17] [PASSED] Buffer object for userspace
[14:32:17] [PASSED] Kernel buffer object
[14:32:17] [PASSED] Shared buffer object
[14:32:17] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[14:32:17] ============== ttm_bo_init_reserved_mock_man ==============
[14:32:17] [PASSED] Buffer object for userspace
[14:32:17] [PASSED] Kernel buffer object
[14:32:17] [PASSED] Shared buffer object
[14:32:17] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[14:32:17] [PASSED] ttm_bo_init_reserved_resv
[14:32:17] ================== ttm_bo_validate_basic ==================
[14:32:17] [PASSED] Buffer object for userspace
[14:32:17] [PASSED] Kernel buffer object
[14:32:17] [PASSED] Shared buffer object
[14:32:17] ============== [PASSED] ttm_bo_validate_basic ==============
[14:32:17] [PASSED] ttm_bo_validate_invalid_placement
[14:32:17] ============= ttm_bo_validate_same_placement ==============
[14:32:17] [PASSED] System manager
[14:32:17] [PASSED] VRAM manager
[14:32:17] ========= [PASSED] ttm_bo_validate_same_placement ==========
[14:32:17] [PASSED] ttm_bo_validate_failed_alloc
[14:32:17] [PASSED] ttm_bo_validate_pinned
[14:32:17] [PASSED] ttm_bo_validate_busy_placement
[14:32:17] ================ ttm_bo_validate_multihop =================
[14:32:17] [PASSED] Buffer object for userspace
[14:32:17] [PASSED] Kernel buffer object
[14:32:17] [PASSED] Shared buffer object
[14:32:17] ============ [PASSED] ttm_bo_validate_multihop =============
[14:32:17] ========== ttm_bo_validate_no_placement_signaled ==========
[14:32:17] [PASSED] Buffer object in system domain, no page vector
[14:32:17] [PASSED] Buffer object in system domain with an existing page vector
[14:32:17] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[14:32:17] ======== ttm_bo_validate_no_placement_not_signaled ========
[14:32:17] [PASSED] Buffer object for userspace
[14:32:17] [PASSED] Kernel buffer object
[14:32:17] [PASSED] Shared buffer object
[14:32:17] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[14:32:17] [PASSED] ttm_bo_validate_move_fence_signaled
[14:32:18] ========= ttm_bo_validate_move_fence_not_signaled =========
[14:32:18] [PASSED] Waits for GPU
[14:32:18] [PASSED] Tries to lock straight away
[14:32:18] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[14:32:18] [PASSED] ttm_bo_validate_swapout
[14:32:18] [PASSED] ttm_bo_validate_happy_evict
[14:32:18] [PASSED] ttm_bo_validate_all_pinned_evict
[14:32:18] [PASSED] ttm_bo_validate_allowed_only_evict
[14:32:18] [PASSED] ttm_bo_validate_deleted_evict
[14:32:18] [PASSED] ttm_bo_validate_busy_domain_evict
[14:32:18] [PASSED] ttm_bo_validate_evict_gutting
[14:32:18] [PASSED] ttm_bo_validate_recrusive_evict
[14:32:18] ================= [PASSED] ttm_bo_validate =================
[14:32:18] ============================================================
[14:32:18] Testing complete. Ran 102 tests: passed: 102
[14:32:18] Elapsed time: 11.933s total, 1.757s configuring, 9.910s building, 0.236s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 19+ messages in thread* ✓ Xe.CI.BAT: success for drm/xe/display: Transparant fallback from stolen to sysmem. (rev2)
2026-07-21 14:26 [PATCH v2 0/5] drm/xe/display: Transparant fallback from stolen to sysmem Maarten Lankhorst
` (6 preceding siblings ...)
2026-07-21 14:32 ` ✓ CI.KUnit: success " Patchwork
@ 2026-07-21 15:22 ` Patchwork
2026-07-21 20:02 ` ✗ CI.checkpatch: warning for drm/xe/display: Transparant fallback from stolen to sysmem. (rev3) Patchwork
` (3 subsequent siblings)
11 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-07-21 15:22 UTC (permalink / raw)
To: Maarten Lankhorst; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1020 bytes --]
== Series Details ==
Series: drm/xe/display: Transparant fallback from stolen to sysmem. (rev2)
URL : https://patchwork.freedesktop.org/series/170759/
State : success
== Summary ==
CI Bug Log - changes from xe-5448-15b41fd8ef085dbf5b64fe5819415f20bd61983e_BAT -> xe-pw-170759v2_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 12)
------------------------------
Missing (1): bat-bmg-2
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_9015 -> IGT_9016
* Linux: xe-5448-15b41fd8ef085dbf5b64fe5819415f20bd61983e -> xe-pw-170759v2
IGT_9015: c656c9ccd7e45834f4ca191dbf729e7ba4676f6b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9016: 9016
xe-5448-15b41fd8ef085dbf5b64fe5819415f20bd61983e: 15b41fd8ef085dbf5b64fe5819415f20bd61983e
xe-pw-170759v2: 170759v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v2/index.html
[-- Attachment #2: Type: text/html, Size: 1582 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread* ✗ CI.checkpatch: warning for drm/xe/display: Transparant fallback from stolen to sysmem. (rev3)
2026-07-21 14:26 [PATCH v2 0/5] drm/xe/display: Transparant fallback from stolen to sysmem Maarten Lankhorst
` (7 preceding siblings ...)
2026-07-21 15:22 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-07-21 20:02 ` Patchwork
2026-07-21 20:03 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
11 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-07-21 20:02 UTC (permalink / raw)
To: Maarten Lankhorst; +Cc: intel-xe
== Series Details ==
Series: drm/xe/display: Transparant fallback from stolen to sysmem. (rev3)
URL : https://patchwork.freedesktop.org/series/170759/
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 f93edf58183f5fe4026711152de75e6b3d0d935b
Author: Maarten Lankhorst <dev@lankhorst.se>
Date: Tue Jul 21 16:26:16 2026 +0200
drm/i915: Introduce intel_bo_fbdev_bios_fb_takeover()
Pull the "do we want to use stolen for the BIOS FB?" checks into
a new intel_bo_fbdev_bios_fb_takeover() helper, and defer that
decision until we're ready to reallocate the fbdev FB. This way
even if we don't want to ultimately use the BIOS FB we'll keep
the plane enabled until the replacement FB is ready. Should
hopefully result in fewer display blinks during boot.
Additionally, on some platforms this allows us to re-create the
framebuffer when stolen memory is not suitable, using the blitter
engine to copy the contents to system memory without causing
any flickering by not preserving the stolen memory allocation.
Based on a similar patch by Ville, that introduced
intel_bo_fbdev_bios_fb_ok().
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
+ /mt/dim checkpatch 80b509f6e34a01edfccc01a05e3e7062a934bcf9 drm-intel
9a0146ec344e drm/xe/display: Avoid using stolen memory for framebuffer when media gt exists.
5965f829fb7e drm/xe/migrate: Support copying between sysmem and stolen
7b5d008e445e drm/xe: Raise gt frequency slightly earlier.
ee57633ec1b4 HACK: Always fallback
-:7: WARNING:COMMIT_MESSAGE: Missing commit description - Add an appropriate one
total: 0 errors, 1 warnings, 0 checks, 8 lines checked
f93edf58183f drm/i915: Introduce intel_bo_fbdev_bios_fb_takeover()
-:145: CHECK:LINE_SPACING: Please don't use multiple blank lines
#145: FILE: drivers/gpu/drm/i915/display/intel_fbdev.c:326:
+
-:308: WARNING:LONG_LINE: line length of 102 exceeds 100 columns
#308: FILE: drivers/gpu/drm/xe/display/xe_display_bo.c:170:
+ XE_BO_FLAG_FORCE_WC | XE_BO_FLAG_SYSTEM | XE_BO_FLAG_GGTT,
total: 0 errors, 1 warnings, 1 checks, 325 lines checked
^ permalink raw reply [flat|nested] 19+ messages in thread* ✓ CI.KUnit: success for drm/xe/display: Transparant fallback from stolen to sysmem. (rev3)
2026-07-21 14:26 [PATCH v2 0/5] drm/xe/display: Transparant fallback from stolen to sysmem Maarten Lankhorst
` (8 preceding siblings ...)
2026-07-21 20:02 ` ✗ CI.checkpatch: warning for drm/xe/display: Transparant fallback from stolen to sysmem. (rev3) Patchwork
@ 2026-07-21 20:03 ` Patchwork
2026-07-21 20:53 ` ✓ Xe.CI.BAT: " Patchwork
2026-07-22 8:39 ` ✓ Xe.CI.FULL: " Patchwork
11 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-07-21 20:03 UTC (permalink / raw)
To: Maarten Lankhorst; +Cc: intel-xe
== Series Details ==
Series: drm/xe/display: Transparant fallback from stolen to sysmem. (rev3)
URL : https://patchwork.freedesktop.org/series/170759/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[20:02:13] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[20:02:17] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[20:02:49] Starting KUnit Kernel (1/1)...
[20:02:49] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[20:02:49] ================== guc_buf (11 subtests) ===================
[20:02:49] [PASSED] test_smallest
[20:02:49] [PASSED] test_largest
[20:02:49] [PASSED] test_granular
[20:02:49] [PASSED] test_unique
[20:02:49] [PASSED] test_overlap
[20:02:49] [PASSED] test_reusable
[20:02:49] [PASSED] test_too_big
[20:02:49] [PASSED] test_flush
[20:02:49] [PASSED] test_lookup
[20:02:49] [PASSED] test_data
[20:02:49] [PASSED] test_class
[20:02:49] ===================== [PASSED] guc_buf =====================
[20:02:49] =================== guc_dbm (7 subtests) ===================
[20:02:49] [PASSED] test_empty
[20:02:49] [PASSED] test_default
[20:02:49] ======================== test_size ========================
[20:02:49] [PASSED] 4
[20:02:49] [PASSED] 8
[20:02:49] [PASSED] 32
[20:02:49] [PASSED] 256
[20:02:49] ==================== [PASSED] test_size ====================
[20:02:49] ======================= test_reuse ========================
[20:02:49] [PASSED] 4
[20:02:49] [PASSED] 8
[20:02:49] [PASSED] 32
[20:02:49] [PASSED] 256
[20:02:49] =================== [PASSED] test_reuse ====================
[20:02:49] =================== test_range_overlap ====================
[20:02:49] [PASSED] 4
[20:02:49] [PASSED] 8
[20:02:49] [PASSED] 32
[20:02:49] [PASSED] 256
[20:02:49] =============== [PASSED] test_range_overlap ================
[20:02:49] =================== test_range_compact ====================
[20:02:49] [PASSED] 4
[20:02:49] [PASSED] 8
[20:02:49] [PASSED] 32
[20:02:49] [PASSED] 256
[20:02:49] =============== [PASSED] test_range_compact ================
[20:02:49] ==================== test_range_spare =====================
[20:02:49] [PASSED] 4
[20:02:49] [PASSED] 8
[20:02:49] [PASSED] 32
[20:02:49] [PASSED] 256
[20:02:49] ================ [PASSED] test_range_spare =================
[20:02:49] ===================== [PASSED] guc_dbm =====================
[20:02:49] =================== guc_idm (6 subtests) ===================
[20:02:49] [PASSED] bad_init
[20:02:49] [PASSED] no_init
[20:02:49] [PASSED] init_fini
[20:02:49] [PASSED] check_used
[20:02:49] [PASSED] check_quota
[20:02:49] [PASSED] check_all
[20:02:49] ===================== [PASSED] guc_idm =====================
[20:02:49] =============== guc_klv_helpers (9 subtests) ===============
[20:02:49] [PASSED] test_count
[20:02:49] [PASSED] test_encode_u32
[20:02:49] [PASSED] test_encode_u64
[20:02:49] [PASSED] test_encode_string
[20:02:49] [PASSED] test_encode_object_raw
[20:02:49] [PASSED] test_encode_object_klv
[20:02:49] [PASSED] test_encode_object_nested
[20:02:49] [PASSED] test_encode_object_basic
[20:02:49] [PASSED] test_print
[20:02:49] ================= [PASSED] guc_klv_helpers =================
[20:02:49] ================== no_relay (3 subtests) ===================
[20:02:49] [PASSED] xe_drops_guc2pf_if_not_ready
[20:02:49] [PASSED] xe_drops_guc2vf_if_not_ready
[20:02:49] [PASSED] xe_rejects_send_if_not_ready
[20:02:49] ==================== [PASSED] no_relay =====================
[20:02:49] ================== pf_relay (14 subtests) ==================
[20:02:49] [PASSED] pf_rejects_guc2pf_too_short
[20:02:49] [PASSED] pf_rejects_guc2pf_too_long
[20:02:49] [PASSED] pf_rejects_guc2pf_no_payload
[20:02:49] [PASSED] pf_fails_no_payload
[20:02:49] [PASSED] pf_fails_bad_origin
[20:02:49] [PASSED] pf_fails_bad_type
[20:02:49] [PASSED] pf_txn_reports_error
[20:02:49] [PASSED] pf_txn_sends_pf2guc
[20:02:49] [PASSED] pf_sends_pf2guc
[20:02:49] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[20:02:49] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[20:02:49] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[20:02:49] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[20:02:49] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[20:02:49] ==================== [PASSED] pf_relay =====================
[20:02:49] ================== vf_relay (3 subtests) ===================
[20:02:49] [PASSED] vf_rejects_guc2vf_too_short
[20:02:49] [PASSED] vf_rejects_guc2vf_too_long
[20:02:49] [PASSED] vf_rejects_guc2vf_no_payload
[20:02:49] ==================== [PASSED] vf_relay =====================
[20:02:49] ================ pf_gt_config (9 subtests) =================
[20:02:49] [PASSED] fair_contexts_1vf
[20:02:49] [PASSED] fair_doorbells_1vf
[20:02:49] [PASSED] fair_ggtt_1vf
[20:02:49] ====================== fair_vram_1vf ======================
[20:02:49] [PASSED] 3.50 GiB
[20:02:49] [PASSED] 11.5 GiB
[20:02:49] [PASSED] 15.5 GiB
[20:02:49] [PASSED] 31.5 GiB
[20:02:49] [PASSED] 63.5 GiB
[20:02:49] [PASSED] 1.91 GiB
[20:02:49] ================== [PASSED] fair_vram_1vf ==================
[20:02:49] ================ fair_vram_1vf_admin_only =================
[20:02:49] [PASSED] 3.50 GiB
[20:02:49] [PASSED] 11.5 GiB
[20:02:49] [PASSED] 15.5 GiB
[20:02:49] [PASSED] 31.5 GiB
[20:02:49] [PASSED] 63.5 GiB
[20:02:49] [PASSED] 1.91 GiB
[20:02:49] ============ [PASSED] fair_vram_1vf_admin_only =============
[20:02:49] ====================== fair_contexts ======================
[20:02:49] [PASSED] 1 VF
[20:02:49] [PASSED] 2 VFs
[20:02:49] [PASSED] 3 VFs
[20:02:49] [PASSED] 4 VFs
[20:02:49] [PASSED] 5 VFs
[20:02:49] [PASSED] 6 VFs
[20:02:49] [PASSED] 7 VFs
[20:02:49] [PASSED] 8 VFs
[20:02:49] [PASSED] 9 VFs
[20:02:49] [PASSED] 10 VFs
[20:02:49] [PASSED] 11 VFs
[20:02:49] [PASSED] 12 VFs
[20:02:49] [PASSED] 13 VFs
[20:02:49] [PASSED] 14 VFs
[20:02:49] [PASSED] 15 VFs
[20:02:49] [PASSED] 16 VFs
[20:02:49] [PASSED] 17 VFs
[20:02:49] [PASSED] 18 VFs
[20:02:49] [PASSED] 19 VFs
[20:02:49] [PASSED] 20 VFs
[20:02:49] [PASSED] 21 VFs
[20:02:49] [PASSED] 22 VFs
[20:02:49] [PASSED] 23 VFs
[20:02:49] [PASSED] 24 VFs
[20:02:49] [PASSED] 25 VFs
[20:02:49] [PASSED] 26 VFs
[20:02:49] [PASSED] 27 VFs
[20:02:49] [PASSED] 28 VFs
[20:02:49] [PASSED] 29 VFs
[20:02:49] [PASSED] 30 VFs
[20:02:49] [PASSED] 31 VFs
[20:02:49] [PASSED] 32 VFs
[20:02:49] [PASSED] 33 VFs
[20:02:49] [PASSED] 34 VFs
[20:02:49] [PASSED] 35 VFs
[20:02:49] [PASSED] 36 VFs
[20:02:49] [PASSED] 37 VFs
[20:02:49] [PASSED] 38 VFs
[20:02:49] [PASSED] 39 VFs
[20:02:49] [PASSED] 40 VFs
[20:02:49] [PASSED] 41 VFs
[20:02:49] [PASSED] 42 VFs
[20:02:49] [PASSED] 43 VFs
[20:02:49] [PASSED] 44 VFs
[20:02:49] [PASSED] 45 VFs
[20:02:49] [PASSED] 46 VFs
[20:02:49] [PASSED] 47 VFs
[20:02:49] [PASSED] 48 VFs
[20:02:49] [PASSED] 49 VFs
[20:02:49] [PASSED] 50 VFs
[20:02:49] [PASSED] 51 VFs
[20:02:49] [PASSED] 52 VFs
[20:02:49] [PASSED] 53 VFs
[20:02:49] [PASSED] 54 VFs
[20:02:49] [PASSED] 55 VFs
[20:02:49] [PASSED] 56 VFs
[20:02:49] [PASSED] 57 VFs
[20:02:49] [PASSED] 58 VFs
[20:02:49] [PASSED] 59 VFs
[20:02:49] [PASSED] 60 VFs
[20:02:49] [PASSED] 61 VFs
[20:02:49] [PASSED] 62 VFs
[20:02:49] [PASSED] 63 VFs
[20:02:49] ================== [PASSED] fair_contexts ==================
[20:02:49] ===================== fair_doorbells ======================
[20:02:49] [PASSED] 1 VF
[20:02:49] [PASSED] 2 VFs
[20:02:49] [PASSED] 3 VFs
[20:02:49] [PASSED] 4 VFs
[20:02:49] [PASSED] 5 VFs
[20:02:49] [PASSED] 6 VFs
[20:02:49] [PASSED] 7 VFs
[20:02:49] [PASSED] 8 VFs
[20:02:49] [PASSED] 9 VFs
[20:02:49] [PASSED] 10 VFs
[20:02:49] [PASSED] 11 VFs
[20:02:49] [PASSED] 12 VFs
[20:02:49] [PASSED] 13 VFs
[20:02:49] [PASSED] 14 VFs
[20:02:49] [PASSED] 15 VFs
[20:02:49] [PASSED] 16 VFs
[20:02:49] [PASSED] 17 VFs
[20:02:49] [PASSED] 18 VFs
[20:02:49] [PASSED] 19 VFs
[20:02:49] [PASSED] 20 VFs
[20:02:49] [PASSED] 21 VFs
[20:02:49] [PASSED] 22 VFs
[20:02:49] [PASSED] 23 VFs
[20:02:49] [PASSED] 24 VFs
[20:02:49] [PASSED] 25 VFs
[20:02:49] [PASSED] 26 VFs
[20:02:49] [PASSED] 27 VFs
[20:02:49] [PASSED] 28 VFs
[20:02:49] [PASSED] 29 VFs
[20:02:49] [PASSED] 30 VFs
[20:02:49] [PASSED] 31 VFs
[20:02:49] [PASSED] 32 VFs
[20:02:49] [PASSED] 33 VFs
[20:02:49] [PASSED] 34 VFs
[20:02:49] [PASSED] 35 VFs
[20:02:49] [PASSED] 36 VFs
[20:02:49] [PASSED] 37 VFs
[20:02:49] [PASSED] 38 VFs
[20:02:49] [PASSED] 39 VFs
[20:02:49] [PASSED] 40 VFs
[20:02:49] [PASSED] 41 VFs
[20:02:49] [PASSED] 42 VFs
[20:02:49] [PASSED] 43 VFs
[20:02:49] [PASSED] 44 VFs
[20:02:49] [PASSED] 45 VFs
[20:02:49] [PASSED] 46 VFs
[20:02:49] [PASSED] 47 VFs
[20:02:49] [PASSED] 48 VFs
[20:02:49] [PASSED] 49 VFs
[20:02:49] [PASSED] 50 VFs
[20:02:49] [PASSED] 51 VFs
[20:02:49] [PASSED] 52 VFs
[20:02:49] [PASSED] 53 VFs
[20:02:49] [PASSED] 54 VFs
[20:02:49] [PASSED] 55 VFs
[20:02:49] [PASSED] 56 VFs
[20:02:49] [PASSED] 57 VFs
[20:02:49] [PASSED] 58 VFs
[20:02:49] [PASSED] 59 VFs
[20:02:49] [PASSED] 60 VFs
[20:02:49] [PASSED] 61 VFs
[20:02:49] [PASSED] 62 VFs
[20:02:49] [PASSED] 63 VFs
[20:02:49] ================= [PASSED] fair_doorbells ==================
[20:02:49] ======================== fair_ggtt ========================
[20:02:49] [PASSED] 1 VF
[20:02:49] [PASSED] 2 VFs
[20:02:49] [PASSED] 3 VFs
[20:02:49] [PASSED] 4 VFs
[20:02:49] [PASSED] 5 VFs
[20:02:49] [PASSED] 6 VFs
[20:02:49] [PASSED] 7 VFs
[20:02:49] [PASSED] 8 VFs
[20:02:49] [PASSED] 9 VFs
[20:02:49] [PASSED] 10 VFs
[20:02:49] [PASSED] 11 VFs
[20:02:49] [PASSED] 12 VFs
[20:02:49] [PASSED] 13 VFs
[20:02:49] [PASSED] 14 VFs
[20:02:49] [PASSED] 15 VFs
[20:02:49] [PASSED] 16 VFs
[20:02:49] [PASSED] 17 VFs
[20:02:49] [PASSED] 18 VFs
[20:02:49] [PASSED] 19 VFs
[20:02:49] [PASSED] 20 VFs
[20:02:49] [PASSED] 21 VFs
[20:02:49] [PASSED] 22 VFs
[20:02:49] [PASSED] 23 VFs
[20:02:49] [PASSED] 24 VFs
[20:02:49] [PASSED] 25 VFs
[20:02:49] [PASSED] 26 VFs
[20:02:49] [PASSED] 27 VFs
[20:02:49] [PASSED] 28 VFs
[20:02:49] [PASSED] 29 VFs
[20:02:49] [PASSED] 30 VFs
[20:02:49] [PASSED] 31 VFs
[20:02:49] [PASSED] 32 VFs
[20:02:49] [PASSED] 33 VFs
[20:02:49] [PASSED] 34 VFs
[20:02:49] [PASSED] 35 VFs
[20:02:49] [PASSED] 36 VFs
[20:02:49] [PASSED] 37 VFs
[20:02:49] [PASSED] 38 VFs
[20:02:49] [PASSED] 39 VFs
[20:02:49] [PASSED] 40 VFs
[20:02:49] [PASSED] 41 VFs
[20:02:49] [PASSED] 42 VFs
[20:02:49] [PASSED] 43 VFs
[20:02:49] [PASSED] 44 VFs
[20:02:49] [PASSED] 45 VFs
[20:02:49] [PASSED] 46 VFs
[20:02:49] [PASSED] 47 VFs
[20:02:49] [PASSED] 48 VFs
[20:02:49] [PASSED] 49 VFs
[20:02:49] [PASSED] 50 VFs
[20:02:49] [PASSED] 51 VFs
[20:02:49] [PASSED] 52 VFs
[20:02:49] [PASSED] 53 VFs
[20:02:49] [PASSED] 54 VFs
[20:02:49] [PASSED] 55 VFs
[20:02:49] [PASSED] 56 VFs
[20:02:49] [PASSED] 57 VFs
[20:02:49] [PASSED] 58 VFs
[20:02:49] [PASSED] 59 VFs
[20:02:49] [PASSED] 60 VFs
[20:02:49] [PASSED] 61 VFs
[20:02:49] [PASSED] 62 VFs
[20:02:49] [PASSED] 63 VFs
[20:02:49] ==================== [PASSED] fair_ggtt ====================
[20:02:49] ======================== fair_vram ========================
[20:02:49] [PASSED] 1 VF
[20:02:49] [PASSED] 2 VFs
[20:02:49] [PASSED] 3 VFs
[20:02:49] [PASSED] 4 VFs
[20:02:49] [PASSED] 5 VFs
[20:02:49] [PASSED] 6 VFs
[20:02:49] [PASSED] 7 VFs
[20:02:49] [PASSED] 8 VFs
[20:02:49] [PASSED] 9 VFs
[20:02:49] [PASSED] 10 VFs
[20:02:49] [PASSED] 11 VFs
[20:02:49] [PASSED] 12 VFs
[20:02:49] [PASSED] 13 VFs
[20:02:49] [PASSED] 14 VFs
[20:02:49] [PASSED] 15 VFs
[20:02:49] [PASSED] 16 VFs
[20:02:49] [PASSED] 17 VFs
[20:02:49] [PASSED] 18 VFs
[20:02:49] [PASSED] 19 VFs
[20:02:49] [PASSED] 20 VFs
[20:02:49] [PASSED] 21 VFs
[20:02:49] [PASSED] 22 VFs
[20:02:49] [PASSED] 23 VFs
[20:02:49] [PASSED] 24 VFs
[20:02:49] [PASSED] 25 VFs
[20:02:49] [PASSED] 26 VFs
[20:02:49] [PASSED] 27 VFs
[20:02:49] [PASSED] 28 VFs
[20:02:49] [PASSED] 29 VFs
[20:02:49] [PASSED] 30 VFs
[20:02:49] [PASSED] 31 VFs
[20:02:49] [PASSED] 32 VFs
[20:02:49] [PASSED] 33 VFs
[20:02:49] [PASSED] 34 VFs
[20:02:49] [PASSED] 35 VFs
[20:02:49] [PASSED] 36 VFs
[20:02:49] [PASSED] 37 VFs
[20:02:49] [PASSED] 38 VFs
[20:02:49] [PASSED] 39 VFs
[20:02:49] [PASSED] 40 VFs
[20:02:49] [PASSED] 41 VFs
[20:02:49] [PASSED] 42 VFs
[20:02:49] [PASSED] 43 VFs
[20:02:49] [PASSED] 44 VFs
[20:02:49] [PASSED] 45 VFs
[20:02:49] [PASSED] 46 VFs
[20:02:49] [PASSED] 47 VFs
[20:02:49] [PASSED] 48 VFs
[20:02:49] [PASSED] 49 VFs
[20:02:49] [PASSED] 50 VFs
[20:02:49] [PASSED] 51 VFs
[20:02:49] [PASSED] 52 VFs
[20:02:49] [PASSED] 53 VFs
[20:02:49] [PASSED] 54 VFs
[20:02:49] [PASSED] 55 VFs
[20:02:49] [PASSED] 56 VFs
[20:02:49] [PASSED] 57 VFs
[20:02:49] [PASSED] 58 VFs
[20:02:49] [PASSED] 59 VFs
[20:02:49] [PASSED] 60 VFs
[20:02:49] [PASSED] 61 VFs
[20:02:49] [PASSED] 62 VFs
[20:02:49] [PASSED] 63 VFs
[20:02:49] ==================== [PASSED] fair_vram ====================
[20:02:49] ================== [PASSED] pf_gt_config ===================
[20:02:49] ===================== lmtt (1 subtest) =====================
[20:02:49] ======================== test_ops =========================
[20:02:49] [PASSED] 2-level
[20:02:49] [PASSED] multi-level
[20:02:49] ==================== [PASSED] test_ops =====================
[20:02:49] ====================== [PASSED] lmtt =======================
[20:02:49] ================= sriov_packet (1 subtest) =================
[20:02:49] [PASSED] test_descriptor_init
[20:02:49] ================== [PASSED] sriov_packet ===================
[20:02:49] ================= pf_service (11 subtests) =================
[20:02:49] [PASSED] pf_negotiate_any
[20:02:49] [PASSED] pf_negotiate_base_match
[20:02:49] [PASSED] pf_negotiate_base_newer
[20:02:49] [PASSED] pf_negotiate_base_next
[20:02:49] [SKIPPED] pf_negotiate_base_older (no older minor)
[20:02:49] [PASSED] pf_negotiate_base_prev
[20:02:49] [PASSED] pf_negotiate_latest_match
[20:02:49] [PASSED] pf_negotiate_latest_newer
[20:02:49] [PASSED] pf_negotiate_latest_next
[20:02:49] [SKIPPED] pf_negotiate_latest_older (no older minor)
[20:02:49] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[20:02:49] =================== [PASSED] pf_service ====================
[20:02:49] ================= xe_guc_g2g (2 subtests) ==================
[20:02:49] ============== xe_live_guc_g2g_kunit_default ==============
[20:02:49] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[20:02:49] ============== xe_live_guc_g2g_kunit_allmem ===============
[20:02:49] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[20:02:49] =================== [SKIPPED] xe_guc_g2g ===================
[20:02:49] =================== xe_mocs (2 subtests) ===================
[20:02:49] ================ xe_live_mocs_kernel_kunit ================
[20:02:49] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[20:02:49] ================ xe_live_mocs_reset_kunit =================
[20:02:49] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[20:02:49] ==================== [SKIPPED] xe_mocs =====================
[20:02:49] ================= xe_migrate (2 subtests) ==================
[20:02:49] ================= xe_migrate_sanity_kunit =================
[20:02:49] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[20:02:49] ================== xe_validate_ccs_kunit ==================
[20:02:49] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[20:02:49] =================== [SKIPPED] xe_migrate ===================
[20:02:49] ================== xe_dma_buf (1 subtest) ==================
[20:02:49] ==================== xe_dma_buf_kunit =====================
[20:02:49] ================ [SKIPPED] xe_dma_buf_kunit ================
[20:02:49] =================== [SKIPPED] xe_dma_buf ===================
[20:02:49] ================= xe_bo_shrink (1 subtest) =================
[20:02:49] =================== xe_bo_shrink_kunit ====================
[20:02:49] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[20:02:49] ================== [SKIPPED] xe_bo_shrink ==================
[20:02:49] ==================== xe_bo (2 subtests) ====================
[20:02:49] ================== xe_ccs_migrate_kunit ===================
[20:02:49] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[20:02:49] ==================== xe_bo_evict_kunit ====================
[20:02:49] =============== [SKIPPED] xe_bo_evict_kunit ================
[20:02:49] ===================== [SKIPPED] xe_bo ======================
[20:02:49] ==================== args (13 subtests) ====================
[20:02:49] [PASSED] count_args_test
[20:02:49] [PASSED] call_args_example
[20:02:49] [PASSED] call_args_test
[20:02:49] [PASSED] drop_first_arg_example
[20:02:49] [PASSED] drop_first_arg_test
[20:02:49] [PASSED] first_arg_example
[20:02:49] [PASSED] first_arg_test
[20:02:49] [PASSED] last_arg_example
[20:02:49] [PASSED] last_arg_test
[20:02:49] [PASSED] pick_arg_example
[20:02:49] [PASSED] if_args_example
[20:02:49] [PASSED] if_args_test
[20:02:49] [PASSED] sep_comma_example
[20:02:49] ====================== [PASSED] args =======================
[20:02:49] =================== xe_pci (3 subtests) ====================
[20:02:49] ==================== check_graphics_ip ====================
[20:02:49] [PASSED] 12.00 Xe_LP
[20:02:49] [PASSED] 12.10 Xe_LP+
[20:02:49] [PASSED] 12.55 Xe_HPG
[20:02:49] [PASSED] 12.60 Xe_HPC
[20:02:49] [PASSED] 12.70 Xe_LPG
[20:02:49] [PASSED] 12.71 Xe_LPG
[20:02:49] [PASSED] 12.74 Xe_LPG+
[20:02:49] [PASSED] 20.01 Xe2_HPG
[20:02:49] [PASSED] 20.02 Xe2_HPG
[20:02:49] [PASSED] 20.04 Xe2_LPG
[20:02:49] [PASSED] 30.00 Xe3_LPG
[20:02:49] [PASSED] 30.01 Xe3_LPG
[20:02:49] [PASSED] 30.03 Xe3_LPG
[20:02:49] [PASSED] 30.04 Xe3_LPG
[20:02:49] [PASSED] 30.05 Xe3_LPG
[20:02:49] [PASSED] 35.10 Xe3p_LPG
[20:02:49] [PASSED] 35.11 Xe3p_XPC
[20:02:49] ================ [PASSED] check_graphics_ip ================
[20:02:49] ===================== check_media_ip ======================
[20:02:49] [PASSED] 12.00 Xe_M
[20:02:49] [PASSED] 12.55 Xe_HPM
[20:02:49] [PASSED] 13.00 Xe_LPM+
[20:02:49] [PASSED] 13.01 Xe2_HPM
[20:02:49] [PASSED] 20.00 Xe2_LPM
[20:02:49] [PASSED] 30.00 Xe3_LPM
[20:02:49] [PASSED] 30.02 Xe3_LPM
[20:02:49] [PASSED] 35.00 Xe3p_LPM
[20:02:49] [PASSED] 35.03 Xe3p_HPM
[20:02:49] ================= [PASSED] check_media_ip ==================
[20:02:49] =================== check_platform_desc ===================
[20:02:49] [PASSED] 0x9A60 (TIGERLAKE)
[20:02:49] [PASSED] 0x9A68 (TIGERLAKE)
[20:02:49] [PASSED] 0x9A70 (TIGERLAKE)
[20:02:49] [PASSED] 0x9A40 (TIGERLAKE)
[20:02:49] [PASSED] 0x9A49 (TIGERLAKE)
[20:02:49] [PASSED] 0x9A59 (TIGERLAKE)
[20:02:49] [PASSED] 0x9A78 (TIGERLAKE)
[20:02:49] [PASSED] 0x9AC0 (TIGERLAKE)
[20:02:49] [PASSED] 0x9AC9 (TIGERLAKE)
[20:02:49] [PASSED] 0x9AD9 (TIGERLAKE)
[20:02:49] [PASSED] 0x9AF8 (TIGERLAKE)
[20:02:49] [PASSED] 0x4C80 (ROCKETLAKE)
[20:02:49] [PASSED] 0x4C8A (ROCKETLAKE)
[20:02:49] [PASSED] 0x4C8B (ROCKETLAKE)
[20:02:49] [PASSED] 0x4C8C (ROCKETLAKE)
[20:02:49] [PASSED] 0x4C90 (ROCKETLAKE)
[20:02:49] [PASSED] 0x4C9A (ROCKETLAKE)
[20:02:49] [PASSED] 0x4680 (ALDERLAKE_S)
[20:02:49] [PASSED] 0x4682 (ALDERLAKE_S)
[20:02:49] [PASSED] 0x4688 (ALDERLAKE_S)
[20:02:49] [PASSED] 0x468A (ALDERLAKE_S)
[20:02:49] [PASSED] 0x468B (ALDERLAKE_S)
[20:02:49] [PASSED] 0x4690 (ALDERLAKE_S)
[20:02:49] [PASSED] 0x4692 (ALDERLAKE_S)
[20:02:49] [PASSED] 0x4693 (ALDERLAKE_S)
[20:02:49] [PASSED] 0x46A0 (ALDERLAKE_P)
[20:02:49] [PASSED] 0x46A1 (ALDERLAKE_P)
[20:02:49] [PASSED] 0x46A2 (ALDERLAKE_P)
[20:02:49] [PASSED] 0x46A3 (ALDERLAKE_P)
[20:02:49] [PASSED] 0x46A6 (ALDERLAKE_P)
[20:02:49] [PASSED] 0x46A8 (ALDERLAKE_P)
[20:02:49] [PASSED] 0x46AA (ALDERLAKE_P)
[20:02:49] [PASSED] 0x462A (ALDERLAKE_P)
[20:02:49] [PASSED] 0x4626 (ALDERLAKE_P)
[20:02:49] [PASSED] 0x4628 (ALDERLAKE_P)
[20:02:49] [PASSED] 0x46B0 (ALDERLAKE_P)
[20:02:49] [PASSED] 0x46B1 (ALDERLAKE_P)
[20:02:49] [PASSED] 0x46B2 (ALDERLAKE_P)
[20:02:49] [PASSED] 0x46B3 (ALDERLAKE_P)
[20:02:49] [PASSED] 0x46C0 (ALDERLAKE_P)
[20:02:49] [PASSED] 0x46C1 (ALDERLAKE_P)
[20:02:49] [PASSED] 0x46C2 (ALDERLAKE_P)
[20:02:49] [PASSED] 0x46C3 (ALDERLAKE_P)
[20:02:49] [PASSED] 0x46D0 (ALDERLAKE_N)
[20:02:49] [PASSED] 0x46D1 (ALDERLAKE_N)
[20:02:49] [PASSED] 0x46D2 (ALDERLAKE_N)
[20:02:49] [PASSED] 0x46D3 (ALDERLAKE_N)
[20:02:49] [PASSED] 0x46D4 (ALDERLAKE_N)
[20:02:49] [PASSED] 0xA721 (ALDERLAKE_P)
[20:02:49] [PASSED] 0xA7A1 (ALDERLAKE_P)
[20:02:49] [PASSED] 0xA7A9 (ALDERLAKE_P)
[20:02:49] [PASSED] 0xA7AC (ALDERLAKE_P)
[20:02:49] [PASSED] 0xA7AD (ALDERLAKE_P)
[20:02:49] [PASSED] 0xA720 (ALDERLAKE_P)
[20:02:49] [PASSED] 0xA7A0 (ALDERLAKE_P)
[20:02:49] [PASSED] 0xA7A8 (ALDERLAKE_P)
[20:02:49] [PASSED] 0xA7AA (ALDERLAKE_P)
[20:02:49] [PASSED] 0xA7AB (ALDERLAKE_P)
[20:02:49] [PASSED] 0xA780 (ALDERLAKE_S)
[20:02:49] [PASSED] 0xA781 (ALDERLAKE_S)
[20:02:49] [PASSED] 0xA782 (ALDERLAKE_S)
[20:02:49] [PASSED] 0xA783 (ALDERLAKE_S)
[20:02:49] [PASSED] 0xA788 (ALDERLAKE_S)
[20:02:49] [PASSED] 0xA789 (ALDERLAKE_S)
[20:02:49] [PASSED] 0xA78A (ALDERLAKE_S)
[20:02:49] [PASSED] 0xA78B (ALDERLAKE_S)
[20:02:49] [PASSED] 0x4905 (DG1)
[20:02:49] [PASSED] 0x4906 (DG1)
[20:02:49] [PASSED] 0x4907 (DG1)
[20:02:49] [PASSED] 0x4908 (DG1)
[20:02:49] [PASSED] 0x4909 (DG1)
[20:02:49] [PASSED] 0x56C0 (DG2)
[20:02:49] [PASSED] 0x56C2 (DG2)
[20:02:49] [PASSED] 0x56C1 (DG2)
[20:02:49] [PASSED] 0x7D51 (METEORLAKE)
[20:02:49] [PASSED] 0x7DD1 (METEORLAKE)
[20:02:49] [PASSED] 0x7D41 (METEORLAKE)
[20:02:49] [PASSED] 0x7D67 (METEORLAKE)
[20:02:49] [PASSED] 0xB640 (METEORLAKE)
[20:02:49] [PASSED] 0x56A0 (DG2)
[20:02:49] [PASSED] 0x56A1 (DG2)
[20:02:49] [PASSED] 0x56A2 (DG2)
[20:02:49] [PASSED] 0x56BE (DG2)
[20:02:49] [PASSED] 0x56BF (DG2)
[20:02:49] [PASSED] 0x5690 (DG2)
[20:02:49] [PASSED] 0x5691 (DG2)
[20:02:49] [PASSED] 0x5692 (DG2)
[20:02:49] [PASSED] 0x56A5 (DG2)
[20:02:49] [PASSED] 0x56A6 (DG2)
[20:02:49] [PASSED] 0x56B0 (DG2)
[20:02:49] [PASSED] 0x56B1 (DG2)
[20:02:49] [PASSED] 0x56BA (DG2)
[20:02:49] [PASSED] 0x56BB (DG2)
[20:02:49] [PASSED] 0x56BC (DG2)
[20:02:49] [PASSED] 0x56BD (DG2)
[20:02:49] [PASSED] 0x5693 (DG2)
[20:02:49] [PASSED] 0x5694 (DG2)
[20:02:49] [PASSED] 0x5695 (DG2)
[20:02:49] [PASSED] 0x56A3 (DG2)
[20:02:49] [PASSED] 0x56A4 (DG2)
[20:02:49] [PASSED] 0x56B2 (DG2)
[20:02:49] [PASSED] 0x56B3 (DG2)
[20:02:49] [PASSED] 0x5696 (DG2)
[20:02:49] [PASSED] 0x5697 (DG2)
[20:02:49] [PASSED] 0xB69 (PVC)
[20:02:49] [PASSED] 0xB6E (PVC)
[20:02:49] [PASSED] 0xBD4 (PVC)
[20:02:49] [PASSED] 0xBD5 (PVC)
[20:02:49] [PASSED] 0xBD6 (PVC)
[20:02:49] [PASSED] 0xBD7 (PVC)
[20:02:49] [PASSED] 0xBD8 (PVC)
[20:02:49] [PASSED] 0xBD9 (PVC)
[20:02:49] [PASSED] 0xBDA (PVC)
[20:02:49] [PASSED] 0xBDB (PVC)
[20:02:49] [PASSED] 0xBE0 (PVC)
[20:02:49] [PASSED] 0xBE1 (PVC)
[20:02:49] [PASSED] 0xBE5 (PVC)
[20:02:49] [PASSED] 0x7D40 (METEORLAKE)
[20:02:49] [PASSED] 0x7D45 (METEORLAKE)
[20:02:49] [PASSED] 0x7D55 (METEORLAKE)
[20:02:49] [PASSED] 0x7D60 (METEORLAKE)
[20:02:49] [PASSED] 0x7DD5 (METEORLAKE)
[20:02:49] [PASSED] 0x6420 (LUNARLAKE)
[20:02:49] [PASSED] 0x64A0 (LUNARLAKE)
[20:02:49] [PASSED] 0x64B0 (LUNARLAKE)
[20:02:49] [PASSED] 0xE202 (BATTLEMAGE)
[20:02:49] [PASSED] 0xE209 (BATTLEMAGE)
[20:02:49] [PASSED] 0xE20B (BATTLEMAGE)
[20:02:49] [PASSED] 0xE20C (BATTLEMAGE)
[20:02:49] [PASSED] 0xE20D (BATTLEMAGE)
[20:02:49] [PASSED] 0xE210 (BATTLEMAGE)
[20:02:49] [PASSED] 0xE211 (BATTLEMAGE)
[20:02:49] [PASSED] 0xE212 (BATTLEMAGE)
[20:02:49] [PASSED] 0xE216 (BATTLEMAGE)
[20:02:49] [PASSED] 0xE220 (BATTLEMAGE)
[20:02:49] [PASSED] 0xE221 (BATTLEMAGE)
[20:02:49] [PASSED] 0xE222 (BATTLEMAGE)
[20:02:49] [PASSED] 0xE223 (BATTLEMAGE)
[20:02:49] [PASSED] 0xB080 (PANTHERLAKE)
[20:02:49] [PASSED] 0xB081 (PANTHERLAKE)
[20:02:49] [PASSED] 0xB082 (PANTHERLAKE)
[20:02:49] [PASSED] 0xB083 (PANTHERLAKE)
[20:02:49] [PASSED] 0xB084 (PANTHERLAKE)
[20:02:49] [PASSED] 0xB085 (PANTHERLAKE)
[20:02:49] [PASSED] 0xB086 (PANTHERLAKE)
[20:02:49] [PASSED] 0xB087 (PANTHERLAKE)
[20:02:49] [PASSED] 0xB08F (PANTHERLAKE)
[20:02:49] [PASSED] 0xB090 (PANTHERLAKE)
[20:02:49] [PASSED] 0xB0A0 (PANTHERLAKE)
[20:02:49] [PASSED] 0xB0B0 (PANTHERLAKE)
[20:02:49] [PASSED] 0xFD80 (PANTHERLAKE)
[20:02:49] [PASSED] 0xFD81 (PANTHERLAKE)
[20:02:49] [PASSED] 0xD740 (NOVALAKE_S)
[20:02:49] [PASSED] 0xD741 (NOVALAKE_S)
[20:02:49] [PASSED] 0xD742 (NOVALAKE_S)
[20:02:49] [PASSED] 0xD743 (NOVALAKE_S)
[20:02:49] [PASSED] 0xD745 (NOVALAKE_S)
[20:02:49] [PASSED] 0xD74A (NOVALAKE_S)
[20:02:49] [PASSED] 0xD74B (NOVALAKE_S)
[20:02:49] [PASSED] 0x674C (CRESCENTISLAND)
[20:02:49] [PASSED] 0x674D (CRESCENTISLAND)
[20:02:49] [PASSED] 0x674E (CRESCENTISLAND)
[20:02:49] [PASSED] 0x674F (CRESCENTISLAND)
[20:02:49] [PASSED] 0x6750 (CRESCENTISLAND)
[20:02:49] [PASSED] 0xD750 (NOVALAKE_P)
[20:02:49] [PASSED] 0xD751 (NOVALAKE_P)
[20:02:49] [PASSED] 0xD752 (NOVALAKE_P)
[20:02:49] [PASSED] 0xD753 (NOVALAKE_P)
[20:02:49] [PASSED] 0xD754 (NOVALAKE_P)
[20:02:49] [PASSED] 0xD755 (NOVALAKE_P)
[20:02:49] [PASSED] 0xD756 (NOVALAKE_P)
[20:02:49] [PASSED] 0xD757 (NOVALAKE_P)
[20:02:49] [PASSED] 0xD75F (NOVALAKE_P)
[20:02:49] =============== [PASSED] check_platform_desc ===============
[20:02:49] ===================== [PASSED] xe_pci ======================
[20:02:49] ============= xe_rtp_tables_test (5 subtests) ==============
[20:02:49] ================== xe_rtp_table_gt_test ===================
[20:02:49] [PASSED] gt_was/14011060649
[20:02:49] [PASSED] gt_was/14011059788
[20:02:49] [PASSED] gt_was/14015795083
[20:02:49] [PASSED] gt_was/16021867713
[20:02:49] [PASSED] gt_was/14019449301
[20:02:49] [PASSED] gt_was/16028005424
[20:02:49] [PASSED] gt_was/14026578760
[20:02:49] [PASSED] gt_was/1409420604
[20:02:49] [PASSED] gt_was/1408615072
[20:02:49] [PASSED] gt_was/22010523718
[20:02:49] [PASSED] gt_was/14011006942
[20:02:49] [PASSED] gt_was/14014830051
[20:02:49] [PASSED] gt_was/18018781329
[20:02:49] [PASSED] gt_was/1509235366
[20:02:49] [PASSED] gt_was/18018781329
[20:02:49] [PASSED] gt_was/16016694945
[20:02:49] [PASSED] gt_was/14018575942
[20:02:49] [PASSED] gt_was/22016670082
[20:02:49] [PASSED] gt_was/22016670082
[20:02:49] [PASSED] gt_was/14017421178
[20:02:49] [PASSED] gt_was/16025250150
[20:02:49] [PASSED] gt_was/14021871409
[20:02:49] [PASSED] gt_was/16021865536
[20:02:49] [PASSED] gt_was/14021486841
[20:02:49] [PASSED] gt_was/14025160223
[20:02:49] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[20:02:49] [PASSED] gt_was/14025635424
[20:02:49] [PASSED] gt_was/16028005424
[20:02:49] ============== [PASSED] xe_rtp_table_gt_test ===============
[20:02:49] ================== xe_rtp_table_gt_test ===================
[20:02:49] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[20:02:49] [PASSED] gt_tunings/Tuning: 32B Access Enable
[20:02:49] [PASSED] gt_tunings/Tuning: L3 cache
[20:02:49] [PASSED] gt_tunings/Tuning: L3 cache - media
[20:02:49] [PASSED] gt_tunings/Tuning: Compression Overfetch
[20:02:49] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[20:02:49] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[20:02:49] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[20:02:49] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[20:02:49] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[20:02:49] [PASSED] gt_tunings/Tuning: Stateless compression control
[20:02:49] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[20:02:49] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[20:02:49] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[20:02:49] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[20:02:49] ============== [PASSED] xe_rtp_table_gt_test ===============
[20:02:49] ================== xe_rtp_table_oob_test ==================
[20:02:49] [PASSED] oob_was/1607983814
[20:02:49] [PASSED] oob_was/16010904313
[20:02:49] [PASSED] oob_was/18022495364
[20:02:49] [PASSED] oob_was/22012773006
[20:02:49] [PASSED] oob_was/14014475959
[20:02:49] [PASSED] oob_was/22011391025
[20:02:49] [PASSED] oob_was/22012727170
[20:02:49] [PASSED] oob_was/22012727685
[20:02:49] [PASSED] oob_was/22016596838
[20:02:49] [PASSED] oob_was/18020744125
[20:02:49] [PASSED] oob_was/1409600907
[20:02:49] [PASSED] oob_was/22014953428
[20:02:49] [PASSED] oob_was/16017236439
[20:02:49] [PASSED] oob_was/14019821291
[20:02:49] [PASSED] oob_was/14015076503
[20:02:49] [PASSED] oob_was/14018913170
[20:02:49] [PASSED] oob_was/14018094691
[20:02:49] [PASSED] oob_was/18024947630
[20:02:49] [PASSED] oob_was/16022287689
[20:02:49] [PASSED] oob_was/13011645652
[20:02:49] [PASSED] oob_was/14022293748
[20:02:49] [PASSED] oob_was/22019794406
[20:02:49] [PASSED] oob_was/22019338487
[20:02:49] [PASSED] oob_was/16023588340
[20:02:49] [PASSED] oob_was/14019789679
[20:02:49] [PASSED] oob_was/14022866841
[20:02:49] [PASSED] oob_was/16021333562
[20:02:49] [PASSED] oob_was/14016712196
[20:02:49] [PASSED] oob_was/14015568240
[20:02:49] [PASSED] oob_was/18013179988
[20:02:49] [PASSED] oob_was/1508761755
[20:02:49] [PASSED] oob_was/16023105232
[20:02:49] [PASSED] oob_was/16026508708
[20:02:49] [PASSED] oob_was/14020001231
[20:02:49] [PASSED] oob_was/16023683509
[20:02:49] [PASSED] oob_was/14025515070
[20:02:49] [PASSED] oob_was/15015404425_disable
[20:02:49] [PASSED] oob_was/16026007364
[20:02:49] [PASSED] oob_was/14020316580
[20:02:49] [PASSED] oob_was/14025883347
[20:02:49] [PASSED] oob_was/16029380221
[20:02:49] [PASSED] oob_was/22022079272
[20:02:49] [PASSED] oob_was/16029897822
[20:02:49] ============== [PASSED] xe_rtp_table_oob_test ==============
[20:02:49] ================ xe_rtp_table_dev_oob_test ================
[20:02:49] [PASSED] device_oob_was/22010954014
[20:02:49] [PASSED] device_oob_was/15015404425
[20:02:49] [PASSED] device_oob_was/22019338487_display
[20:02:49] [PASSED] device_oob_was/14022085890
[20:02:49] [PASSED] device_oob_was/14026539277
[20:02:49] [PASSED] device_oob_was/14026633728
[20:02:49] [PASSED] device_oob_was/14026746987
[20:02:49] [PASSED] device_oob_was/14026779378
[20:02:49] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[20:02:49] ========== xe_rtp_table_missing_upper_bound_test ==========
[20:02:49] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[20:02:49] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[20:02:49] [PASSED] register_whitelist/1806527549
[20:02:49] [PASSED] register_whitelist/allow_read_ctx_timestamp
[20:02:49] [PASSED] register_whitelist/allow_read_queue_timestamp
[20:02:49] [PASSED] register_whitelist/16014440446
[20:02:49] [PASSED] register_whitelist/16017236439
[20:02:49] [PASSED] register_whitelist/16020183090
[20:02:49] [PASSED] register_whitelist/14024997852
[20:02:49] [PASSED] register_whitelist/14024997852
[20:02:49] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[20:02:49] =============== [PASSED] xe_rtp_tables_test ================
[20:02:49] =================== xe_rtp (3 subtests) ====================
[20:02:49] =================== xe_rtp_rules_tests ====================
[20:02:49] [PASSED] no
[20:02:49] [PASSED] yes
[20:02:49] [PASSED] no-and-no
[20:02:49] [PASSED] no-and-yes
[20:02:49] [PASSED] yes-and-no
[20:02:49] [PASSED] yes-and-yes
[20:02:49] [PASSED] no-or-no
[20:02:49] [PASSED] no-or-yes
[20:02:49] [PASSED] yes-or-no
[20:02:49] [PASSED] yes-or-yes
[20:02:49] [PASSED] no-yes-or-yes-no
[20:02:49] [PASSED] no-yes-or-yes-yes
[20:02:49] [PASSED] yes-yes-or-no-yes
[20:02:49] [PASSED] yes-yes-or-yes-yes
[20:02:49] [PASSED] no-no-or-yes-or-no
[20:02:49] [PASSED] or
[20:02:49] [PASSED] or-yes
[20:02:49] [PASSED] or-no
[20:02:49] [PASSED] yes-or
[20:02:49] [PASSED] no-or
[20:02:49] [PASSED] no-or-or-yes
[20:02:49] [PASSED] yes-or-or-no
[20:02:49] [PASSED] no-or-or-no
[20:02:49] [PASSED] missing-context-engine-class
[20:02:49] [PASSED] missing-context-engine-class-or-yes
[20:02:49] [PASSED] missing-context-engine-class-or-or-yes
[20:02:49] =============== [PASSED] xe_rtp_rules_tests ================
[20:02:49] =============== xe_rtp_process_to_sr_tests ================
[20:02:49] [PASSED] coalesce-same-reg
[20:02:49] [PASSED] coalesce-same-reg-literal-and-func
[20:02:49] [PASSED] no-match-no-add
[20:02:49] [PASSED] two-regs-two-entries
[20:02:49] [PASSED] clr-one-set-other
[20:02:49] [PASSED] set-field
[20:02:49] [PASSED] conflict-duplicate
[20:02:49] [PASSED] conflict-not-disjoint
[20:02:49] [PASSED] conflict-not-disjoint-literal-and-func
[20:02:49] [PASSED] conflict-reg-type
[20:02:49] [PASSED] bad-mcr-reg-forced-to-regular
[20:02:49] [PASSED] bad-regular-reg-forced-to-mcr
[20:02:49] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[20:02:49] ================== xe_rtp_process_tests ===================
[20:02:49] [PASSED] active1
[20:02:49] [PASSED] active2
[20:02:49] [PASSED] active-inactive
[20:02:49] [PASSED] inactive-active
[20:02:49] [PASSED] inactive-active-inactive
[20:02:49] [PASSED] inactive-inactive-inactive
[20:02:49] ============== [PASSED] xe_rtp_process_tests ===============
[20:02:49] ===================== [PASSED] xe_rtp ======================
[20:02:49] ==================== xe_wa (1 subtest) =====================
[20:02:49] ======================== xe_wa_gt =========================
[20:02:49] [PASSED] TIGERLAKE B0
[20:02:49] [PASSED] DG1 A0
[20:02:49] [PASSED] DG1 B0
[20:02:49] [PASSED] ALDERLAKE_S A0
[20:02:49] [PASSED] ALDERLAKE_S B0
[20:02:49] [PASSED] ALDERLAKE_S C0
[20:02:49] [PASSED] ALDERLAKE_S D0
[20:02:49] [PASSED] ALDERLAKE_P A0
[20:02:49] [PASSED] ALDERLAKE_P B0
[20:02:49] [PASSED] ALDERLAKE_P C0
[20:02:49] [PASSED] ALDERLAKE_S RPLS D0
[20:02:49] [PASSED] ALDERLAKE_P RPLU E0
[20:02:49] [PASSED] DG2 G10 C0
[20:02:49] [PASSED] DG2 G11 B1
[20:02:49] [PASSED] DG2 G12 A1
[20:02:49] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[20:02:49] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[20:02:49] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[20:02:49] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[20:02:49] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[20:02:49] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[20:02:49] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[20:02:49] ==================== [PASSED] xe_wa_gt =====================
[20:02:49] ====================== [PASSED] xe_wa ======================
[20:02:49] ============================================================
[20:02:49] Testing complete. Ran 741 tests: passed: 723, skipped: 18
[20:02:49] Elapsed time: 36.649s total, 4.324s configuring, 31.658s building, 0.643s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[20:02:50] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[20:02:51] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[20:03:16] Starting KUnit Kernel (1/1)...
[20:03:16] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[20:03:16] ============ drm_test_pick_cmdline (2 subtests) ============
[20:03:16] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[20:03:16] =============== drm_test_pick_cmdline_named ===============
[20:03:16] [PASSED] NTSC
[20:03:16] [PASSED] NTSC-J
[20:03:16] [PASSED] PAL
[20:03:16] [PASSED] PAL-M
[20:03:16] =========== [PASSED] drm_test_pick_cmdline_named ===========
[20:03:16] ============== [PASSED] drm_test_pick_cmdline ==============
[20:03:16] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[20:03:16] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[20:03:16] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[20:03:16] =========== drm_validate_clone_mode (2 subtests) ===========
[20:03:16] ============== drm_test_check_in_clone_mode ===============
[20:03:16] [PASSED] in_clone_mode
[20:03:16] [PASSED] not_in_clone_mode
[20:03:16] ========== [PASSED] drm_test_check_in_clone_mode ===========
[20:03:16] =============== drm_test_check_valid_clones ===============
[20:03:16] [PASSED] not_in_clone_mode
[20:03:16] [PASSED] valid_clone
[20:03:16] [PASSED] invalid_clone
[20:03:16] =========== [PASSED] drm_test_check_valid_clones ===========
[20:03:16] ============= [PASSED] drm_validate_clone_mode =============
[20:03:16] ============= drm_validate_modeset (1 subtest) =============
[20:03:16] [PASSED] drm_test_check_connector_changed_modeset
[20:03:16] ============== [PASSED] drm_validate_modeset ===============
[20:03:16] ====== drm_test_bridge_get_current_state (1 subtest) =======
[20:03:16] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[20:03:16] ======== [PASSED] drm_test_bridge_get_current_state ========
[20:03:16] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[20:03:16] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[20:03:16] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[20:03:16] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[20:03:16] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[20:03:16] ============== drm_bridge_alloc (2 subtests) ===============
[20:03:16] [PASSED] drm_test_drm_bridge_alloc_basic
[20:03:16] [PASSED] drm_test_drm_bridge_alloc_get_put
[20:03:16] ================ [PASSED] drm_bridge_alloc =================
[20:03:16] ============= drm_bridge_bus_fmt (5 subtests) ==============
[20:03:16] [PASSED] drm_test_bridge_rgb_yuv_rgb
[20:03:16] [PASSED] drm_test_bridge_must_convert_to_yuv444
[20:03:16] [PASSED] drm_test_bridge_hdmi_auto_rgb
[20:03:16] [PASSED] drm_test_bridge_auto_first
[20:03:16] [PASSED] drm_test_bridge_rgb_yuv_no_path
[20:03:16] =============== [PASSED] drm_bridge_bus_fmt ================
[20:03:16] ============= drm_cmdline_parser (40 subtests) =============
[20:03:16] [PASSED] drm_test_cmdline_force_d_only
[20:03:16] [PASSED] drm_test_cmdline_force_D_only_dvi
[20:03:16] [PASSED] drm_test_cmdline_force_D_only_hdmi
[20:03:16] [PASSED] drm_test_cmdline_force_D_only_not_digital
[20:03:16] [PASSED] drm_test_cmdline_force_e_only
[20:03:16] [PASSED] drm_test_cmdline_res
[20:03:16] [PASSED] drm_test_cmdline_res_vesa
[20:03:16] [PASSED] drm_test_cmdline_res_vesa_rblank
[20:03:16] [PASSED] drm_test_cmdline_res_rblank
[20:03:16] [PASSED] drm_test_cmdline_res_bpp
[20:03:16] [PASSED] drm_test_cmdline_res_refresh
[20:03:16] [PASSED] drm_test_cmdline_res_bpp_refresh
[20:03:16] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[20:03:16] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[20:03:16] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[20:03:16] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[20:03:16] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[20:03:16] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[20:03:16] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[20:03:16] [PASSED] drm_test_cmdline_res_margins_force_on
[20:03:16] [PASSED] drm_test_cmdline_res_vesa_margins
[20:03:16] [PASSED] drm_test_cmdline_name
[20:03:16] [PASSED] drm_test_cmdline_name_bpp
[20:03:16] [PASSED] drm_test_cmdline_name_option
[20:03:16] [PASSED] drm_test_cmdline_name_bpp_option
[20:03:16] [PASSED] drm_test_cmdline_rotate_0
[20:03:16] [PASSED] drm_test_cmdline_rotate_90
[20:03:16] [PASSED] drm_test_cmdline_rotate_180
[20:03:16] [PASSED] drm_test_cmdline_rotate_270
[20:03:16] [PASSED] drm_test_cmdline_hmirror
[20:03:16] [PASSED] drm_test_cmdline_vmirror
[20:03:16] [PASSED] drm_test_cmdline_margin_options
[20:03:16] [PASSED] drm_test_cmdline_multiple_options
[20:03:16] [PASSED] drm_test_cmdline_bpp_extra_and_option
[20:03:16] [PASSED] drm_test_cmdline_extra_and_option
[20:03:16] [PASSED] drm_test_cmdline_freestanding_options
[20:03:16] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[20:03:16] [PASSED] drm_test_cmdline_panel_orientation
[20:03:16] ================ drm_test_cmdline_invalid =================
[20:03:16] [PASSED] margin_only
[20:03:16] [PASSED] interlace_only
[20:03:16] [PASSED] res_missing_x
[20:03:16] [PASSED] res_missing_y
[20:03:16] [PASSED] res_bad_y
[20:03:16] [PASSED] res_missing_y_bpp
[20:03:16] [PASSED] res_bad_bpp
[20:03:16] [PASSED] res_bad_refresh
[20:03:16] [PASSED] res_bpp_refresh_force_on_off
[20:03:16] [PASSED] res_invalid_mode
[20:03:16] [PASSED] res_bpp_wrong_place_mode
[20:03:16] [PASSED] name_bpp_refresh
[20:03:16] [PASSED] name_refresh
[20:03:16] [PASSED] name_refresh_wrong_mode
[20:03:16] [PASSED] name_refresh_invalid_mode
[20:03:16] [PASSED] rotate_multiple
[20:03:16] [PASSED] rotate_invalid_val
[20:03:16] [PASSED] rotate_truncated
[20:03:16] [PASSED] invalid_option
[20:03:16] [PASSED] invalid_tv_option
[20:03:16] [PASSED] truncated_tv_option
[20:03:16] ============ [PASSED] drm_test_cmdline_invalid =============
[20:03:16] =============== drm_test_cmdline_tv_options ===============
[20:03:16] [PASSED] NTSC
[20:03:16] [PASSED] NTSC_443
[20:03:16] [PASSED] NTSC_J
[20:03:16] [PASSED] PAL
[20:03:16] [PASSED] PAL_M
[20:03:16] [PASSED] PAL_N
[20:03:16] [PASSED] SECAM
[20:03:16] [PASSED] MONO_525
[20:03:16] [PASSED] MONO_625
[20:03:16] =========== [PASSED] drm_test_cmdline_tv_options ===========
[20:03:16] =============== [PASSED] drm_cmdline_parser ================
[20:03:16] ========== drmm_connector_hdmi_init (20 subtests) ==========
[20:03:16] [PASSED] drm_test_connector_hdmi_init_valid
[20:03:16] [PASSED] drm_test_connector_hdmi_init_bpc_8
[20:03:16] [PASSED] drm_test_connector_hdmi_init_bpc_10
[20:03:16] [PASSED] drm_test_connector_hdmi_init_bpc_12
[20:03:16] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[20:03:16] [PASSED] drm_test_connector_hdmi_init_bpc_null
[20:03:16] [PASSED] drm_test_connector_hdmi_init_formats_empty
[20:03:16] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[20:03:16] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[20:03:16] [PASSED] supported_formats=0x9 yuv420_allowed=1
[20:03:16] [PASSED] supported_formats=0x9 yuv420_allowed=0
[20:03:16] [PASSED] supported_formats=0x5 yuv420_allowed=1
[20:03:16] [PASSED] supported_formats=0x5 yuv420_allowed=0
[20:03:16] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[20:03:16] [PASSED] drm_test_connector_hdmi_init_null_ddc
[20:03:16] [PASSED] drm_test_connector_hdmi_init_null_product
[20:03:16] [PASSED] drm_test_connector_hdmi_init_null_vendor
[20:03:16] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[20:03:16] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[20:03:16] [PASSED] drm_test_connector_hdmi_init_product_valid
[20:03:16] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[20:03:16] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[20:03:16] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[20:03:16] ========= drm_test_connector_hdmi_init_type_valid =========
[20:03:16] [PASSED] HDMI-A
[20:03:16] [PASSED] HDMI-B
[20:03:16] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[20:03:16] ======== drm_test_connector_hdmi_init_type_invalid ========
[20:03:16] [PASSED] Unknown
[20:03:16] [PASSED] VGA
[20:03:16] [PASSED] DVI-I
[20:03:16] [PASSED] DVI-D
[20:03:16] [PASSED] DVI-A
[20:03:16] [PASSED] Composite
[20:03:16] [PASSED] SVIDEO
[20:03:16] [PASSED] LVDS
[20:03:16] [PASSED] Component
[20:03:16] [PASSED] DIN
[20:03:16] [PASSED] DP
[20:03:16] [PASSED] TV
[20:03:16] [PASSED] eDP
[20:03:16] [PASSED] Virtual
[20:03:16] [PASSED] DSI
[20:03:16] [PASSED] DPI
[20:03:16] [PASSED] Writeback
[20:03:16] [PASSED] SPI
[20:03:16] [PASSED] USB
[20:03:16] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[20:03:16] ============ [PASSED] drmm_connector_hdmi_init =============
[20:03:16] ============= drmm_connector_init (3 subtests) =============
[20:03:16] [PASSED] drm_test_drmm_connector_init
[20:03:16] [PASSED] drm_test_drmm_connector_init_null_ddc
[20:03:16] ========= drm_test_drmm_connector_init_type_valid =========
[20:03:16] [PASSED] Unknown
[20:03:16] [PASSED] VGA
[20:03:16] [PASSED] DVI-I
[20:03:16] [PASSED] DVI-D
[20:03:16] [PASSED] DVI-A
[20:03:16] [PASSED] Composite
[20:03:16] [PASSED] SVIDEO
[20:03:16] [PASSED] LVDS
[20:03:16] [PASSED] Component
[20:03:16] [PASSED] DIN
[20:03:16] [PASSED] DP
[20:03:16] [PASSED] HDMI-A
[20:03:16] [PASSED] HDMI-B
[20:03:16] [PASSED] TV
[20:03:16] [PASSED] eDP
[20:03:16] [PASSED] Virtual
[20:03:16] [PASSED] DSI
[20:03:16] [PASSED] DPI
[20:03:16] [PASSED] Writeback
[20:03:16] [PASSED] SPI
[20:03:16] [PASSED] USB
[20:03:16] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[20:03:16] =============== [PASSED] drmm_connector_init ===============
[20:03:16] ========= drm_connector_dynamic_init (6 subtests) ==========
[20:03:16] [PASSED] drm_test_drm_connector_dynamic_init
[20:03:16] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[20:03:16] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[20:03:16] [PASSED] drm_test_drm_connector_dynamic_init_properties
[20:03:16] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[20:03:16] [PASSED] Unknown
[20:03:16] [PASSED] VGA
[20:03:16] [PASSED] DVI-I
[20:03:16] [PASSED] DVI-D
[20:03:16] [PASSED] DVI-A
[20:03:16] [PASSED] Composite
[20:03:16] [PASSED] SVIDEO
[20:03:16] [PASSED] LVDS
[20:03:16] [PASSED] Component
[20:03:16] [PASSED] DIN
[20:03:16] [PASSED] DP
[20:03:16] [PASSED] HDMI-A
[20:03:16] [PASSED] HDMI-B
[20:03:16] [PASSED] TV
[20:03:16] [PASSED] eDP
[20:03:16] [PASSED] Virtual
[20:03:16] [PASSED] DSI
[20:03:16] [PASSED] DPI
[20:03:16] [PASSED] Writeback
[20:03:16] [PASSED] SPI
[20:03:16] [PASSED] USB
[20:03:16] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[20:03:16] ======== drm_test_drm_connector_dynamic_init_name =========
[20:03:16] [PASSED] Unknown
[20:03:16] [PASSED] VGA
[20:03:16] [PASSED] DVI-I
[20:03:16] [PASSED] DVI-D
[20:03:16] [PASSED] DVI-A
[20:03:16] [PASSED] Composite
[20:03:16] [PASSED] SVIDEO
[20:03:16] [PASSED] LVDS
[20:03:16] [PASSED] Component
[20:03:16] [PASSED] DIN
[20:03:16] [PASSED] DP
[20:03:16] [PASSED] HDMI-A
[20:03:16] [PASSED] HDMI-B
[20:03:16] [PASSED] TV
[20:03:16] [PASSED] eDP
[20:03:16] [PASSED] Virtual
[20:03:16] [PASSED] DSI
[20:03:16] [PASSED] DPI
[20:03:16] [PASSED] Writeback
[20:03:16] [PASSED] SPI
[20:03:16] [PASSED] USB
[20:03:16] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[20:03:16] =========== [PASSED] drm_connector_dynamic_init ============
[20:03:16] ==== drm_connector_dynamic_register_early (4 subtests) =====
[20:03:16] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[20:03:16] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[20:03:16] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[20:03:16] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[20:03:16] ====== [PASSED] drm_connector_dynamic_register_early =======
[20:03:16] ======= drm_connector_dynamic_register (7 subtests) ========
[20:03:16] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[20:03:16] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[20:03:16] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[20:03:16] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[20:03:16] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[20:03:16] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[20:03:16] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[20:03:16] ========= [PASSED] drm_connector_dynamic_register ==========
[20:03:16] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[20:03:16] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[20:03:16] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[20:03:16] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[20:03:16] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[20:03:16] ========== drm_test_get_tv_mode_from_name_valid ===========
[20:03:16] [PASSED] NTSC
[20:03:16] [PASSED] NTSC-443
[20:03:16] [PASSED] NTSC-J
[20:03:16] [PASSED] PAL
[20:03:16] [PASSED] PAL-M
[20:03:16] [PASSED] PAL-N
[20:03:16] [PASSED] SECAM
[20:03:16] [PASSED] Mono
[20:03:16] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[20:03:16] [PASSED] drm_test_get_tv_mode_from_name_truncated
[20:03:16] ============ [PASSED] drm_get_tv_mode_from_name ============
[20:03:16] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[20:03:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[20:03:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[20:03:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[20:03:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[20:03:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[20:03:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[20:03:16] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[20:03:16] [PASSED] VIC 96
[20:03:16] [PASSED] VIC 97
[20:03:16] [PASSED] VIC 101
[20:03:16] [PASSED] VIC 102
[20:03:16] [PASSED] VIC 106
[20:03:16] [PASSED] VIC 107
[20:03:16] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[20:03:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[20:03:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[20:03:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[20:03:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[20:03:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[20:03:16] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[20:03:16] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[20:03:16] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[20:03:16] [PASSED] Automatic
[20:03:16] [PASSED] Full
[20:03:16] [PASSED] Limited 16:235
[20:03:16] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[20:03:16] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[20:03:16] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[20:03:16] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[20:03:16] === drm_test_drm_hdmi_connector_get_output_format_name ====
[20:03:16] [PASSED] RGB
[20:03:16] [PASSED] YUV 4:2:0
[20:03:16] [PASSED] YUV 4:2:2
[20:03:16] [PASSED] YUV 4:4:4
[20:03:16] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[20:03:16] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[20:03:16] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[20:03:16] ============= drm_damage_helper (21 subtests) ==============
[20:03:16] [PASSED] drm_test_damage_iter_no_damage
[20:03:16] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[20:03:16] [PASSED] drm_test_damage_iter_no_damage_src_moved
[20:03:16] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[20:03:16] [PASSED] drm_test_damage_iter_no_damage_not_visible
[20:03:16] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[20:03:16] [PASSED] drm_test_damage_iter_no_damage_no_fb
[20:03:16] [PASSED] drm_test_damage_iter_simple_damage
[20:03:16] [PASSED] drm_test_damage_iter_single_damage
[20:03:16] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[20:03:16] [PASSED] drm_test_damage_iter_single_damage_outside_src
[20:03:16] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[20:03:16] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[20:03:16] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[20:03:16] [PASSED] drm_test_damage_iter_single_damage_src_moved
[20:03:16] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[20:03:16] [PASSED] drm_test_damage_iter_damage
[20:03:16] [PASSED] drm_test_damage_iter_damage_one_intersect
[20:03:16] [PASSED] drm_test_damage_iter_damage_one_outside
[20:03:16] [PASSED] drm_test_damage_iter_damage_src_moved
[20:03:16] [PASSED] drm_test_damage_iter_damage_not_visible
[20:03:16] ================ [PASSED] drm_damage_helper ================
[20:03:16] ============== drm_dp_mst_helper (3 subtests) ==============
[20:03:16] ============== drm_test_dp_mst_calc_pbn_mode ==============
[20:03:16] [PASSED] Clock 154000 BPP 30 DSC disabled
[20:03:16] [PASSED] Clock 234000 BPP 30 DSC disabled
[20:03:16] [PASSED] Clock 297000 BPP 24 DSC disabled
[20:03:16] [PASSED] Clock 332880 BPP 24 DSC enabled
[20:03:16] [PASSED] Clock 324540 BPP 24 DSC enabled
[20:03:16] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[20:03:16] ============== drm_test_dp_mst_calc_pbn_div ===============
[20:03:16] [PASSED] Link rate 2000000 lane count 4
[20:03:16] [PASSED] Link rate 2000000 lane count 2
[20:03:16] [PASSED] Link rate 2000000 lane count 1
[20:03:16] [PASSED] Link rate 1350000 lane count 4
[20:03:16] [PASSED] Link rate 1350000 lane count 2
[20:03:16] [PASSED] Link rate 1350000 lane count 1
[20:03:16] [PASSED] Link rate 1000000 lane count 4
[20:03:16] [PASSED] Link rate 1000000 lane count 2
[20:03:16] [PASSED] Link rate 1000000 lane count 1
[20:03:16] [PASSED] Link rate 810000 lane count 4
[20:03:16] [PASSED] Link rate 810000 lane count 2
[20:03:16] [PASSED] Link rate 810000 lane count 1
[20:03:16] [PASSED] Link rate 540000 lane count 4
[20:03:16] [PASSED] Link rate 540000 lane count 2
[20:03:16] [PASSED] Link rate 540000 lane count 1
[20:03:16] [PASSED] Link rate 270000 lane count 4
[20:03:16] [PASSED] Link rate 270000 lane count 2
[20:03:16] [PASSED] Link rate 270000 lane count 1
[20:03:16] [PASSED] Link rate 162000 lane count 4
[20:03:16] [PASSED] Link rate 162000 lane count 2
[20:03:16] [PASSED] Link rate 162000 lane count 1
[20:03:16] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[20:03:16] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[20:03:16] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[20:03:16] [PASSED] DP_POWER_UP_PHY with port number
[20:03:16] [PASSED] DP_POWER_DOWN_PHY with port number
[20:03:16] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[20:03:16] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[20:03:16] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[20:03:16] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[20:03:16] [PASSED] DP_QUERY_PAYLOAD with port number
[20:03:16] [PASSED] DP_QUERY_PAYLOAD with VCPI
[20:03:16] [PASSED] DP_REMOTE_DPCD_READ with port number
[20:03:16] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[20:03:16] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[20:03:16] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[20:03:16] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[20:03:16] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[20:03:16] [PASSED] DP_REMOTE_I2C_READ with port number
[20:03:16] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[20:03:16] [PASSED] DP_REMOTE_I2C_READ with transactions array
[20:03:16] [PASSED] DP_REMOTE_I2C_WRITE with port number
[20:03:16] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[20:03:16] [PASSED] DP_REMOTE_I2C_WRITE with data array
[20:03:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[20:03:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[20:03:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[20:03:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[20:03:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[20:03:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[20:03:16] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[20:03:16] ================ [PASSED] drm_dp_mst_helper ================
[20:03:16] ================== drm_exec (7 subtests) ===================
[20:03:16] [PASSED] sanitycheck
[20:03:16] [PASSED] test_lock
[20:03:16] [PASSED] test_lock_unlock
[20:03:16] [PASSED] test_duplicates
[20:03:16] [PASSED] test_prepare
[20:03:16] [PASSED] test_prepare_array
[20:03:16] [PASSED] test_multiple_loops
[20:03:16] ==================== [PASSED] drm_exec =====================
[20:03:16] =========== drm_format_helper_test (17 subtests) ===========
[20:03:16] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[20:03:16] [PASSED] single_pixel_source_buffer
[20:03:16] [PASSED] single_pixel_clip_rectangle
[20:03:16] [PASSED] well_known_colors
[20:03:16] [PASSED] destination_pitch
[20:03:16] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[20:03:16] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[20:03:16] [PASSED] single_pixel_source_buffer
[20:03:16] [PASSED] single_pixel_clip_rectangle
[20:03:16] [PASSED] well_known_colors
[20:03:16] [PASSED] destination_pitch
[20:03:16] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[20:03:16] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[20:03:16] [PASSED] single_pixel_source_buffer
[20:03:16] [PASSED] single_pixel_clip_rectangle
[20:03:16] [PASSED] well_known_colors
[20:03:16] [PASSED] destination_pitch
[20:03:16] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[20:03:16] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[20:03:16] [PASSED] single_pixel_source_buffer
[20:03:16] [PASSED] single_pixel_clip_rectangle
[20:03:16] [PASSED] well_known_colors
[20:03:16] [PASSED] destination_pitch
[20:03:16] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[20:03:16] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[20:03:16] [PASSED] single_pixel_source_buffer
[20:03:16] [PASSED] single_pixel_clip_rectangle
[20:03:16] [PASSED] well_known_colors
[20:03:16] [PASSED] destination_pitch
[20:03:16] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[20:03:16] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[20:03:16] [PASSED] single_pixel_source_buffer
[20:03:16] [PASSED] single_pixel_clip_rectangle
[20:03:16] [PASSED] well_known_colors
[20:03:16] [PASSED] destination_pitch
[20:03:16] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[20:03:16] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[20:03:16] [PASSED] single_pixel_source_buffer
[20:03:16] [PASSED] single_pixel_clip_rectangle
[20:03:16] [PASSED] well_known_colors
[20:03:16] [PASSED] destination_pitch
[20:03:16] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[20:03:16] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[20:03:16] [PASSED] single_pixel_source_buffer
[20:03:16] [PASSED] single_pixel_clip_rectangle
[20:03:16] [PASSED] well_known_colors
[20:03:16] [PASSED] destination_pitch
[20:03:16] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[20:03:16] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[20:03:16] [PASSED] single_pixel_source_buffer
[20:03:16] [PASSED] single_pixel_clip_rectangle
[20:03:16] [PASSED] well_known_colors
[20:03:16] [PASSED] destination_pitch
[20:03:16] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[20:03:16] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[20:03:16] [PASSED] single_pixel_source_buffer
[20:03:16] [PASSED] single_pixel_clip_rectangle
[20:03:16] [PASSED] well_known_colors
[20:03:16] [PASSED] destination_pitch
[20:03:16] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[20:03:16] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[20:03:16] [PASSED] single_pixel_source_buffer
[20:03:16] [PASSED] single_pixel_clip_rectangle
[20:03:16] [PASSED] well_known_colors
[20:03:16] [PASSED] destination_pitch
[20:03:16] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[20:03:16] ============== drm_test_fb_xrgb8888_to_mono ===============
[20:03:16] [PASSED] single_pixel_source_buffer
[20:03:16] [PASSED] single_pixel_clip_rectangle
[20:03:16] [PASSED] well_known_colors
[20:03:16] [PASSED] destination_pitch
[20:03:16] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[20:03:16] ==================== drm_test_fb_swab =====================
[20:03:16] [PASSED] single_pixel_source_buffer
[20:03:16] [PASSED] single_pixel_clip_rectangle
[20:03:16] [PASSED] well_known_colors
[20:03:16] [PASSED] destination_pitch
[20:03:16] ================ [PASSED] drm_test_fb_swab =================
[20:03:16] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[20:03:16] [PASSED] single_pixel_source_buffer
[20:03:16] [PASSED] single_pixel_clip_rectangle
[20:03:16] [PASSED] well_known_colors
[20:03:16] [PASSED] destination_pitch
[20:03:16] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[20:03:16] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[20:03:16] [PASSED] single_pixel_source_buffer
[20:03:16] [PASSED] single_pixel_clip_rectangle
[20:03:16] [PASSED] well_known_colors
[20:03:16] [PASSED] destination_pitch
[20:03:16] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[20:03:16] ================= drm_test_fb_clip_offset =================
[20:03:16] [PASSED] pass through
[20:03:16] [PASSED] horizontal offset
[20:03:16] [PASSED] vertical offset
[20:03:16] [PASSED] horizontal and vertical offset
[20:03:16] [PASSED] horizontal offset (custom pitch)
[20:03:16] [PASSED] vertical offset (custom pitch)
[20:03:16] [PASSED] horizontal and vertical offset (custom pitch)
[20:03:16] ============= [PASSED] drm_test_fb_clip_offset =============
[20:03:16] =================== drm_test_fb_memcpy ====================
[20:03:16] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[20:03:16] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[20:03:16] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[20:03:16] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[20:03:16] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[20:03:16] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[20:03:16] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[20:03:16] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[20:03:16] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[20:03:16] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[20:03:16] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[20:03:16] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[20:03:16] =============== [PASSED] drm_test_fb_memcpy ================
[20:03:16] ============= [PASSED] drm_format_helper_test ==============
[20:03:16] ================= drm_format (18 subtests) =================
[20:03:16] [PASSED] drm_test_format_block_width_invalid
[20:03:16] [PASSED] drm_test_format_block_width_one_plane
[20:03:16] [PASSED] drm_test_format_block_width_two_plane
[20:03:16] [PASSED] drm_test_format_block_width_three_plane
[20:03:16] [PASSED] drm_test_format_block_width_tiled
[20:03:16] [PASSED] drm_test_format_block_height_invalid
[20:03:16] [PASSED] drm_test_format_block_height_one_plane
[20:03:16] [PASSED] drm_test_format_block_height_two_plane
[20:03:16] [PASSED] drm_test_format_block_height_three_plane
[20:03:16] [PASSED] drm_test_format_block_height_tiled
[20:03:16] [PASSED] drm_test_format_min_pitch_invalid
[20:03:16] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[20:03:16] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[20:03:16] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[20:03:16] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[20:03:16] [PASSED] drm_test_format_min_pitch_two_plane
[20:03:16] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[20:03:16] [PASSED] drm_test_format_min_pitch_tiled
[20:03:16] =================== [PASSED] drm_format ====================
[20:03:16] ============== drm_framebuffer (10 subtests) ===============
[20:03:16] ========== drm_test_framebuffer_check_src_coords ==========
[20:03:16] [PASSED] Success: source fits into fb
[20:03:16] [PASSED] Fail: overflowing fb with x-axis coordinate
[20:03:16] [PASSED] Fail: overflowing fb with y-axis coordinate
[20:03:16] [PASSED] Fail: overflowing fb with source width
[20:03:16] [PASSED] Fail: overflowing fb with source height
[20:03:16] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[20:03:16] [PASSED] drm_test_framebuffer_cleanup
[20:03:16] =============== drm_test_framebuffer_create ===============
[20:03:16] [PASSED] ABGR8888 normal sizes
[20:03:16] [PASSED] ABGR8888 max sizes
[20:03:16] [PASSED] ABGR8888 pitch greater than min required
[20:03:16] [PASSED] ABGR8888 pitch less than min required
[20:03:16] [PASSED] ABGR8888 Invalid width
[20:03:16] [PASSED] ABGR8888 Invalid buffer handle
[20:03:16] [PASSED] No pixel format
[20:03:16] [PASSED] ABGR8888 Width 0
[20:03:16] [PASSED] ABGR8888 Height 0
[20:03:16] [PASSED] ABGR8888 Out of bound height * pitch combination
[20:03:16] [PASSED] ABGR8888 Large buffer offset
[20:03:16] [PASSED] ABGR8888 Buffer offset for inexistent plane
[20:03:16] [PASSED] ABGR8888 Invalid flag
[20:03:16] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[20:03:16] [PASSED] ABGR8888 Valid buffer modifier
[20:03:16] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[20:03:16] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[20:03:16] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[20:03:16] [PASSED] NV12 Normal sizes
[20:03:16] [PASSED] NV12 Max sizes
[20:03:16] [PASSED] NV12 Invalid pitch
[20:03:16] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[20:03:16] [PASSED] NV12 different modifier per-plane
[20:03:16] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[20:03:16] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[20:03:16] [PASSED] NV12 Modifier for inexistent plane
[20:03:16] [PASSED] NV12 Handle for inexistent plane
[20:03:16] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[20:03:16] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[20:03:16] [PASSED] YVU420 Normal sizes
[20:03:16] [PASSED] YVU420 Max sizes
[20:03:16] [PASSED] YVU420 Invalid pitch
[20:03:16] [PASSED] YVU420 Different pitches
[20:03:16] [PASSED] YVU420 Different buffer offsets/pitches
[20:03:16] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[20:03:16] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[20:03:16] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[20:03:16] [PASSED] YVU420 Valid modifier
[20:03:16] [PASSED] YVU420 Different modifiers per plane
[20:03:16] [PASSED] YVU420 Modifier for inexistent plane
[20:03:16] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[20:03:16] [PASSED] X0L2 Normal sizes
[20:03:16] [PASSED] X0L2 Max sizes
[20:03:16] [PASSED] X0L2 Invalid pitch
[20:03:16] [PASSED] X0L2 Pitch greater than minimum required
[20:03:16] [PASSED] X0L2 Handle for inexistent plane
[20:03:16] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[20:03:16] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[20:03:16] [PASSED] X0L2 Valid modifier
[20:03:16] [PASSED] X0L2 Modifier for inexistent plane
[20:03:16] =========== [PASSED] drm_test_framebuffer_create ===========
[20:03:16] [PASSED] drm_test_framebuffer_free
[20:03:16] [PASSED] drm_test_framebuffer_init
[20:03:16] [PASSED] drm_test_framebuffer_init_bad_format
[20:03:16] [PASSED] drm_test_framebuffer_init_dev_mismatch
[20:03:16] [PASSED] drm_test_framebuffer_lookup
[20:03:16] [PASSED] drm_test_framebuffer_lookup_inexistent
[20:03:16] [PASSED] drm_test_framebuffer_modifiers_not_supported
[20:03:16] ================= [PASSED] drm_framebuffer =================
[20:03:16] ================ drm_gem_shmem (8 subtests) ================
[20:03:16] [PASSED] drm_gem_shmem_test_obj_create
[20:03:16] [PASSED] drm_gem_shmem_test_obj_create_private
[20:03:16] [PASSED] drm_gem_shmem_test_pin_pages
[20:03:16] [PASSED] drm_gem_shmem_test_vmap
[20:03:16] [PASSED] drm_gem_shmem_test_get_sg_table
[20:03:16] [PASSED] drm_gem_shmem_test_get_pages_sgt
[20:03:16] [PASSED] drm_gem_shmem_test_madvise
[20:03:16] [PASSED] drm_gem_shmem_test_purge
[20:03:16] ================== [PASSED] drm_gem_shmem ==================
[20:03:16] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[20:03:16] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[20:03:16] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[20:03:16] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[20:03:16] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[20:03:16] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[20:03:16] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[20:03:16] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[20:03:16] [PASSED] Automatic
[20:03:16] [PASSED] Full
[20:03:16] [PASSED] Limited 16:235
[20:03:16] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[20:03:16] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[20:03:16] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[20:03:16] [PASSED] drm_test_check_disable_connector
[20:03:16] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[20:03:16] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[20:03:16] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[20:03:16] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[20:03:16] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[20:03:16] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[20:03:16] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[20:03:16] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[20:03:16] [PASSED] drm_test_check_output_bpc_dvi
[20:03:16] [PASSED] drm_test_check_output_bpc_format_vic_1
[20:03:16] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[20:03:16] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[20:03:16] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[20:03:16] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[20:03:16] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[20:03:16] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[20:03:16] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[20:03:16] ============ drm_test_check_hdmi_color_format =============
[20:03:16] [PASSED] AUTO -> RGB
[20:03:16] [PASSED] YCBCR422 -> YUV422
[20:03:16] [PASSED] YCBCR420 -> YUV420
[20:03:16] [PASSED] YCBCR444 -> YUV444
[20:03:16] [PASSED] RGB -> RGB
[20:03:16] ======== [PASSED] drm_test_check_hdmi_color_format =========
[20:03:16] ======== drm_test_check_hdmi_color_format_420_only ========
[20:03:16] [PASSED] RGB should fail
[20:03:16] [PASSED] YUV444 should fail
[20:03:16] [PASSED] YUV422 should fail
[20:03:16] [PASSED] YUV420 should work
[20:03:16] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[20:03:16] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[20:03:16] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[20:03:16] [PASSED] drm_test_check_broadcast_rgb_value
[20:03:16] [PASSED] drm_test_check_bpc_8_value
[20:03:16] [PASSED] drm_test_check_bpc_10_value
[20:03:16] [PASSED] drm_test_check_bpc_12_value
[20:03:16] [PASSED] drm_test_check_format_value
[20:03:16] [PASSED] drm_test_check_tmds_char_value
[20:03:16] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[20:03:16] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[20:03:16] [PASSED] drm_test_check_mode_valid
[20:03:16] [PASSED] drm_test_check_mode_valid_reject
[20:03:16] [PASSED] drm_test_check_mode_valid_reject_rate
[20:03:16] [PASSED] drm_test_check_mode_valid_reject_max_clock
[20:03:16] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[20:03:16] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[20:03:16] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[20:03:16] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[20:03:16] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[20:03:16] [PASSED] drm_test_check_infoframes
[20:03:16] [PASSED] drm_test_check_reject_avi_infoframe
[20:03:16] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[20:03:16] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[20:03:16] [PASSED] drm_test_check_reject_audio_infoframe
[20:03:16] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[20:03:16] ================= drm_managed (2 subtests) =================
[20:03:16] [PASSED] drm_test_managed_release_action
[20:03:16] [PASSED] drm_test_managed_run_action
[20:03:16] =================== [PASSED] drm_managed ===================
[20:03:16] =================== drm_mm (6 subtests) ====================
[20:03:16] [PASSED] drm_test_mm_init
[20:03:16] [PASSED] drm_test_mm_debug
[20:03:16] [PASSED] drm_test_mm_align32
[20:03:16] [PASSED] drm_test_mm_align64
[20:03:16] [PASSED] drm_test_mm_lowest
[20:03:16] [PASSED] drm_test_mm_highest
[20:03:16] ===================== [PASSED] drm_mm ======================
[20:03:16] ============= drm_modes_analog_tv (5 subtests) =============
[20:03:16] [PASSED] drm_test_modes_analog_tv_mono_576i
[20:03:16] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[20:03:16] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[20:03:16] [PASSED] drm_test_modes_analog_tv_pal_576i
[20:03:16] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[20:03:16] =============== [PASSED] drm_modes_analog_tv ===============
[20:03:16] ============== drm_plane_helper (2 subtests) ===============
[20:03:16] =============== drm_test_check_plane_state ================
[20:03:16] [PASSED] clipping_simple
[20:03:16] [PASSED] clipping_rotate_reflect
[20:03:16] [PASSED] positioning_simple
[20:03:16] [PASSED] upscaling
[20:03:16] [PASSED] downscaling
[20:03:16] [PASSED] rounding1
[20:03:16] [PASSED] rounding2
[20:03:16] [PASSED] rounding3
[20:03:16] [PASSED] rounding4
[20:03:16] =========== [PASSED] drm_test_check_plane_state ============
[20:03:16] =========== drm_test_check_invalid_plane_state ============
[20:03:16] [PASSED] positioning_invalid
[20:03:16] [PASSED] upscaling_invalid
[20:03:16] [PASSED] downscaling_invalid
[20:03:16] ======= [PASSED] drm_test_check_invalid_plane_state ========
[20:03:16] ================ [PASSED] drm_plane_helper =================
[20:03:16] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[20:03:16] ====== drm_test_connector_helper_tv_get_modes_check =======
[20:03:16] [PASSED] None
[20:03:16] [PASSED] PAL
[20:03:16] [PASSED] NTSC
[20:03:16] [PASSED] Both, NTSC Default
[20:03:16] [PASSED] Both, PAL Default
[20:03:16] [PASSED] Both, NTSC Default, with PAL on command-line
[20:03:16] [PASSED] Both, PAL Default, with NTSC on command-line
[20:03:16] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[20:03:16] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[20:03:16] ================== drm_rect (9 subtests) ===================
[20:03:16] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[20:03:16] [PASSED] drm_test_rect_clip_scaled_not_clipped
[20:03:16] [PASSED] drm_test_rect_clip_scaled_clipped
[20:03:16] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[20:03:16] ================= drm_test_rect_intersect =================
[20:03:16] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[20:03:16] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[20:03:16] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[20:03:16] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[20:03:16] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[20:03:16] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[20:03:16] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[20:03:16] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[20:03:16] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[20:03:16] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[20:03:16] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[20:03:16] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[20:03:16] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[20:03:16] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[20:03:16] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[20:03:16] ============= [PASSED] drm_test_rect_intersect =============
[20:03:16] ================ drm_test_rect_calc_hscale ================
[20:03:16] [PASSED] normal use
[20:03:16] [PASSED] out of max range
[20:03:16] [PASSED] out of min range
[20:03:16] [PASSED] zero dst
[20:03:16] [PASSED] negative src
[20:03:16] [PASSED] negative dst
[20:03:16] ============ [PASSED] drm_test_rect_calc_hscale ============
[20:03:16] ================ drm_test_rect_calc_vscale ================
[20:03:16] [PASSED] normal use
[20:03:16] [PASSED] out of max range
[20:03:16] [PASSED] out of min range
[20:03:16] [PASSED] zero dst
[20:03:16] [PASSED] negative src
[20:03:16] [PASSED] negative dst
[20:03:16] ============ [PASSED] drm_test_rect_calc_vscale ============
[20:03:16] ================== drm_test_rect_rotate ===================
[20:03:16] [PASSED] reflect-x
[20:03:16] [PASSED] reflect-y
[20:03:16] [PASSED] rotate-0
[20:03:16] [PASSED] rotate-90
[20:03:16] [PASSED] rotate-180
[20:03:16] [PASSED] rotate-270
[20:03:16] ============== [PASSED] drm_test_rect_rotate ===============
[20:03:16] ================ drm_test_rect_rotate_inv =================
[20:03:16] [PASSED] reflect-x
[20:03:16] [PASSED] reflect-y
[20:03:16] [PASSED] rotate-0
[20:03:16] [PASSED] rotate-90
[20:03:16] [PASSED] rotate-180
[20:03:16] [PASSED] rotate-270
[20:03:16] ============ [PASSED] drm_test_rect_rotate_inv =============
[20:03:16] ==================== [PASSED] drm_rect =====================
[20:03:16] ============ drm_sysfb_modeset_test (1 subtest) ============
[20:03:16] ============ drm_test_sysfb_build_fourcc_list =============
[20:03:16] [PASSED] no native formats
[20:03:16] [PASSED] XRGB8888 as native format
[20:03:16] [PASSED] remove duplicates
[20:03:16] [PASSED] convert alpha formats
[20:03:16] [PASSED] random formats
[20:03:16] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[20:03:16] ============= [PASSED] drm_sysfb_modeset_test ==============
[20:03:16] ================== drm_fixp (2 subtests) ===================
[20:03:16] [PASSED] drm_test_int2fixp
[20:03:16] [PASSED] drm_test_sm2fixp
[20:03:16] ==================== [PASSED] drm_fixp =====================
[20:03:16] ============================================================
[20:03:16] Testing complete. Ran 637 tests: passed: 637
[20:03:16] Elapsed time: 26.790s total, 1.812s configuring, 24.813s building, 0.155s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[20:03:16] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[20:03:18] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[20:03:28] Starting KUnit Kernel (1/1)...
[20:03:28] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[20:03:28] ================= ttm_device (5 subtests) ==================
[20:03:28] [PASSED] ttm_device_init_basic
[20:03:28] [PASSED] ttm_device_init_multiple
[20:03:28] [PASSED] ttm_device_fini_basic
[20:03:28] [PASSED] ttm_device_init_no_vma_man
[20:03:28] ================== ttm_device_init_pools ==================
[20:03:28] [PASSED] No DMA allocations, no DMA32 required
[20:03:28] [PASSED] DMA allocations, DMA32 required
[20:03:28] [PASSED] No DMA allocations, DMA32 required
[20:03:28] [PASSED] DMA allocations, no DMA32 required
[20:03:28] ============== [PASSED] ttm_device_init_pools ==============
[20:03:28] =================== [PASSED] ttm_device ====================
[20:03:28] ================== ttm_pool (8 subtests) ===================
[20:03:28] ================== ttm_pool_alloc_basic ===================
[20:03:28] [PASSED] One page
[20:03:28] [PASSED] More than one page
[20:03:28] [PASSED] Above the allocation limit
[20:03:28] [PASSED] One page, with coherent DMA mappings enabled
[20:03:28] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[20:03:28] ============== [PASSED] ttm_pool_alloc_basic ===============
[20:03:28] ============== ttm_pool_alloc_basic_dma_addr ==============
[20:03:28] [PASSED] One page
[20:03:28] [PASSED] More than one page
[20:03:28] [PASSED] Above the allocation limit
[20:03:28] [PASSED] One page, with coherent DMA mappings enabled
[20:03:28] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[20:03:28] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[20:03:28] [PASSED] ttm_pool_alloc_order_caching_match
[20:03:28] [PASSED] ttm_pool_alloc_caching_mismatch
[20:03:28] [PASSED] ttm_pool_alloc_order_mismatch
[20:03:28] [PASSED] ttm_pool_free_dma_alloc
[20:03:28] [PASSED] ttm_pool_free_no_dma_alloc
[20:03:28] [PASSED] ttm_pool_fini_basic
[20:03:28] ==================== [PASSED] ttm_pool =====================
[20:03:28] ================ ttm_resource (8 subtests) =================
[20:03:28] ================= ttm_resource_init_basic =================
[20:03:28] [PASSED] Init resource in TTM_PL_SYSTEM
[20:03:28] [PASSED] Init resource in TTM_PL_VRAM
[20:03:28] [PASSED] Init resource in a private placement
[20:03:28] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[20:03:28] ============= [PASSED] ttm_resource_init_basic =============
[20:03:28] [PASSED] ttm_resource_init_pinned
[20:03:28] [PASSED] ttm_resource_fini_basic
[20:03:28] [PASSED] ttm_resource_manager_init_basic
[20:03:28] [PASSED] ttm_resource_manager_usage_basic
[20:03:28] [PASSED] ttm_resource_manager_set_used_basic
[20:03:28] [PASSED] ttm_sys_man_alloc_basic
[20:03:28] [PASSED] ttm_sys_man_free_basic
[20:03:28] ================== [PASSED] ttm_resource ===================
[20:03:28] =================== ttm_tt (15 subtests) ===================
[20:03:28] ==================== ttm_tt_init_basic ====================
[20:03:28] [PASSED] Page-aligned size
[20:03:28] [PASSED] Extra pages requested
[20:03:28] ================ [PASSED] ttm_tt_init_basic ================
[20:03:28] [PASSED] ttm_tt_init_misaligned
[20:03:28] [PASSED] ttm_tt_fini_basic
[20:03:28] [PASSED] ttm_tt_fini_sg
[20:03:28] [PASSED] ttm_tt_fini_shmem
[20:03:28] [PASSED] ttm_tt_create_basic
[20:03:28] [PASSED] ttm_tt_create_invalid_bo_type
[20:03:28] [PASSED] ttm_tt_create_ttm_exists
[20:03:28] [PASSED] ttm_tt_create_failed
[20:03:28] [PASSED] ttm_tt_destroy_basic
[20:03:28] [PASSED] ttm_tt_populate_null_ttm
[20:03:28] [PASSED] ttm_tt_populate_populated_ttm
[20:03:28] [PASSED] ttm_tt_unpopulate_basic
[20:03:28] [PASSED] ttm_tt_unpopulate_empty_ttm
[20:03:28] [PASSED] ttm_tt_swapin_basic
[20:03:28] ===================== [PASSED] ttm_tt ======================
[20:03:28] =================== ttm_bo (14 subtests) ===================
[20:03:28] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[20:03:28] [PASSED] Cannot be interrupted and sleeps
[20:03:28] [PASSED] Cannot be interrupted, locks straight away
[20:03:28] [PASSED] Can be interrupted, sleeps
[20:03:28] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[20:03:28] [PASSED] ttm_bo_reserve_locked_no_sleep
[20:03:28] [PASSED] ttm_bo_reserve_no_wait_ticket
[20:03:28] [PASSED] ttm_bo_reserve_double_resv
[20:03:28] [PASSED] ttm_bo_reserve_interrupted
[20:03:28] [PASSED] ttm_bo_reserve_deadlock
[20:03:28] [PASSED] ttm_bo_unreserve_basic
[20:03:28] [PASSED] ttm_bo_unreserve_pinned
[20:03:28] [PASSED] ttm_bo_unreserve_bulk
[20:03:28] [PASSED] ttm_bo_fini_basic
[20:03:28] [PASSED] ttm_bo_fini_shared_resv
[20:03:28] [PASSED] ttm_bo_pin_basic
[20:03:28] [PASSED] ttm_bo_pin_unpin_resource
[20:03:28] [PASSED] ttm_bo_multiple_pin_one_unpin
[20:03:28] ===================== [PASSED] ttm_bo ======================
[20:03:28] ============== ttm_bo_validate (22 subtests) ===============
[20:03:28] ============== ttm_bo_init_reserved_sys_man ===============
[20:03:28] [PASSED] Buffer object for userspace
[20:03:28] [PASSED] Kernel buffer object
[20:03:28] [PASSED] Shared buffer object
[20:03:28] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[20:03:28] ============== ttm_bo_init_reserved_mock_man ==============
[20:03:28] [PASSED] Buffer object for userspace
[20:03:28] [PASSED] Kernel buffer object
[20:03:28] [PASSED] Shared buffer object
[20:03:28] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[20:03:28] [PASSED] ttm_bo_init_reserved_resv
[20:03:28] ================== ttm_bo_validate_basic ==================
[20:03:28] [PASSED] Buffer object for userspace
[20:03:28] [PASSED] Kernel buffer object
[20:03:28] [PASSED] Shared buffer object
[20:03:28] ============== [PASSED] ttm_bo_validate_basic ==============
[20:03:28] [PASSED] ttm_bo_validate_invalid_placement
[20:03:28] ============= ttm_bo_validate_same_placement ==============
[20:03:28] [PASSED] System manager
[20:03:28] [PASSED] VRAM manager
[20:03:28] ========= [PASSED] ttm_bo_validate_same_placement ==========
[20:03:28] [PASSED] ttm_bo_validate_failed_alloc
[20:03:28] [PASSED] ttm_bo_validate_pinned
[20:03:28] [PASSED] ttm_bo_validate_busy_placement
[20:03:28] ================ ttm_bo_validate_multihop =================
[20:03:28] [PASSED] Buffer object for userspace
[20:03:28] [PASSED] Kernel buffer object
[20:03:28] [PASSED] Shared buffer object
[20:03:28] ============ [PASSED] ttm_bo_validate_multihop =============
[20:03:28] ========== ttm_bo_validate_no_placement_signaled ==========
[20:03:28] [PASSED] Buffer object in system domain, no page vector
[20:03:28] [PASSED] Buffer object in system domain with an existing page vector
[20:03:28] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[20:03:28] ======== ttm_bo_validate_no_placement_not_signaled ========
[20:03:28] [PASSED] Buffer object for userspace
[20:03:28] [PASSED] Kernel buffer object
[20:03:28] [PASSED] Shared buffer object
[20:03:28] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[20:03:28] [PASSED] ttm_bo_validate_move_fence_signaled
[20:03:29] ========= ttm_bo_validate_move_fence_not_signaled =========
[20:03:29] [PASSED] Waits for GPU
[20:03:29] [PASSED] Tries to lock straight away
[20:03:29] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[20:03:29] [PASSED] ttm_bo_validate_swapout
[20:03:29] [PASSED] ttm_bo_validate_happy_evict
[20:03:29] [PASSED] ttm_bo_validate_all_pinned_evict
[20:03:29] [PASSED] ttm_bo_validate_allowed_only_evict
[20:03:29] [PASSED] ttm_bo_validate_deleted_evict
[20:03:29] [PASSED] ttm_bo_validate_busy_domain_evict
[20:03:29] [PASSED] ttm_bo_validate_evict_gutting
[20:03:29] [PASSED] ttm_bo_validate_recrusive_evict
[20:03:29] ================= [PASSED] ttm_bo_validate =================
[20:03:29] ============================================================
[20:03:29] Testing complete. Ran 102 tests: passed: 102
[20:03:29] Elapsed time: 12.098s total, 1.801s configuring, 10.032s building, 0.237s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 19+ messages in thread* ✓ Xe.CI.BAT: success for drm/xe/display: Transparant fallback from stolen to sysmem. (rev3)
2026-07-21 14:26 [PATCH v2 0/5] drm/xe/display: Transparant fallback from stolen to sysmem Maarten Lankhorst
` (9 preceding siblings ...)
2026-07-21 20:03 ` ✓ CI.KUnit: success " Patchwork
@ 2026-07-21 20:53 ` Patchwork
2026-07-22 8:39 ` ✓ Xe.CI.FULL: " Patchwork
11 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-07-21 20:53 UTC (permalink / raw)
To: Maarten Lankhorst; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 889 bytes --]
== Series Details ==
Series: drm/xe/display: Transparant fallback from stolen to sysmem. (rev3)
URL : https://patchwork.freedesktop.org/series/170759/
State : success
== Summary ==
CI Bug Log - changes from xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9_BAT -> xe-pw-170759v3_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9 -> xe-pw-170759v3
IGT_9017: 9017
xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9: 80b509f6e34a01edfccc01a05e3e7062a934bcf9
xe-pw-170759v3: 170759v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/index.html
[-- Attachment #2: Type: text/html, Size: 1437 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread* ✓ Xe.CI.FULL: success for drm/xe/display: Transparant fallback from stolen to sysmem. (rev3)
2026-07-21 14:26 [PATCH v2 0/5] drm/xe/display: Transparant fallback from stolen to sysmem Maarten Lankhorst
` (10 preceding siblings ...)
2026-07-21 20:53 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-07-22 8:39 ` Patchwork
11 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-07-22 8:39 UTC (permalink / raw)
To: Maarten Lankhorst; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 26346 bytes --]
== Series Details ==
Series: drm/xe/display: Transparant fallback from stolen to sysmem. (rev3)
URL : https://patchwork.freedesktop.org/series/170759/
State : success
== Summary ==
CI Bug Log - changes from xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9_FULL -> xe-pw-170759v3_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-170759v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: NOTRUN -> [FAIL][1] ([Intel XE#8583])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-2/igt@intel_hwmon@hwmon-write.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [PASS][2] -> [FAIL][3] ([Intel XE#3718] / [Intel XE#6078])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2:
- shard-bmg: [PASS][4] -> [FAIL][5] ([Intel XE#6078])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2327]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-10/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#7679])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p.html
* igt@kms_bw@linear-tiling-1-displays-target-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#367])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-10/igt@kms_bw@linear-tiling-1-displays-target-1920x1080p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2887]) +4 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#3432])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#3432])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2252]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-10/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-10/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_dsc@dsc-basic-bigjoiner:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#8265])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-lnl-2/igt@kms_dsc@dsc-basic-bigjoiner.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#8265]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-10/igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1421]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-lnl-3/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#6312] / [Intel XE#651]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrshdr-1p-rte:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#6312]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-lnl-3/igt@kms_frontbuffer_tracking@drrshdr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#4141]) +4 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#656] / [Intel XE#7905]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2311]) +14 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2313]) +12 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#7905]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-lnl-2/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-render:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#7061]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-lnl-3/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#7061])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-10/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-mmap-wc.html
* igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#8303]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-10/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#1489])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-5/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2387] / [Intel XE#7429])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-10/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-10/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_sharpness_filter@filter-toggle:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#6503])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-10/igt@kms_sharpness_filter@filter-toggle.html
* igt@xe_evict@evict-beng-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#6540] / [Intel XE#688]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-lnl-2/igt@xe_evict@evict-beng-threads-small-multi-vm.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][35] -> [INCOMPLETE][36] ([Intel XE#6321] / [Intel XE#8355])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-9/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-no-exec-rebind:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-10/igt@xe_exec_basic@multigpu-no-exec-rebind.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#8374]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-10/igt@xe_exec_fault_mode@twice-multi-queue-userptr.html
* igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-close-fd-smem:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#8364]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-lnl-3/igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-close-fd-smem.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority-smem:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#8364]) +8 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-5/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority-smem.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#8378]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
- shard-bmg: [PASS][42] -> [ABORT][43] ([Intel XE#8007]) +1 other test abort
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
* igt@xe_multigpu_svm@mgpu-pagefault-basic:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#6964])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-10/igt@xe_multigpu_svm@mgpu-pagefault-basic.html
* igt@xe_page_reclaim@basic-mixed:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#7793])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-10/igt@xe_page_reclaim@basic-mixed.html
* igt@xe_pat@xa-app-transient-media-on:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#7590] / [Intel XE#7772])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-lnl-3/igt@xe_pat@xa-app-transient-media-on.html
* igt@xe_pxp@pxp-stale-bo-bind-post-rpm:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#4733] / [Intel XE#7417])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-10/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html
* igt@xe_query@multigpu-query-pxp-status:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#944])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-10/igt@xe_query@multigpu-query-pxp-status.html
#### Possible fixes ####
* igt@device_reset@unbind-reset-rebind:
- shard-bmg: [ABORT][49] ([Intel XE#8007]) -> [PASS][50]
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9/shard-bmg-9/igt@device_reset@unbind-reset-rebind.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-10/igt@device_reset@unbind-reset-rebind.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: [FAIL][51] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][52]
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2:
- shard-bmg: [FAIL][53] ([Intel XE#6078]) -> [PASS][54]
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][55] ([Intel XE#7084] / [Intel XE#8150]) -> [PASS][56] +1 other test pass
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
- shard-bmg: [FAIL][57] ([Intel XE#3321]) -> [PASS][58] +1 other test pass
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9/shard-bmg-10/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][59] ([Intel XE#301]) -> [PASS][60] +2 other tests pass
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [FAIL][61] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][62] +1 other test pass
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][63] ([Intel XE#8399]) -> [PASS][64]
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets-low-priority@numvfs-random-gt0-rcs0:
- shard-bmg: [FAIL][65] ([Intel XE#7992]) -> [PASS][66] +1 other test pass
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9/shard-bmg-1/igt@xe_sriov_scheduling@nonpreempt-engine-resets-low-priority@numvfs-random-gt0-rcs0.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-9/igt@xe_sriov_scheduling@nonpreempt-engine-resets-low-priority@numvfs-random-gt0-rcs0.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets-low-priority@numvfs-random-gt1-vcs0:
- shard-bmg: [FAIL][67] ([Intel XE#8340]) -> [PASS][68]
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9/shard-bmg-1/igt@xe_sriov_scheduling@nonpreempt-engine-resets-low-priority@numvfs-random-gt1-vcs0.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-9/igt@xe_sriov_scheduling@nonpreempt-engine-resets-low-priority@numvfs-random-gt1-vcs0.html
* igt@xe_wedged@basic-wedged:
- shard-lnl: [ABORT][69] ([Intel XE#3119]) -> [PASS][70]
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9/shard-lnl-6/igt@xe_wedged@basic-wedged.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-lnl-3/igt@xe_wedged@basic-wedged.html
#### Warnings ####
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-lnl: [SKIP][71] ([Intel XE#309] / [Intel XE#7343]) -> [SKIP][72] ([Intel XE#309] / [Intel XE#7343] / [Intel XE#7935])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][73] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][74] ([Intel XE#3544])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_pm_dc@dc3co-framedrop-check:
- shard-lnl: [SKIP][75] ([Intel XE#8395]) -> [SKIP][76] ([Intel XE#8395] / [Intel XE#8396]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9/shard-lnl-5/igt@kms_pm_dc@dc3co-framedrop-check.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-lnl-8/igt@kms_pm_dc@dc3co-framedrop-check.html
* igt@kms_pm_dc@dc3co-vpb-framegap:
- shard-bmg: [SKIP][77] ([Intel XE#8395]) -> [SKIP][78] ([Intel XE#8395] / [Intel XE#8396]) +4 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9/shard-bmg-6/igt@kms_pm_dc@dc3co-vpb-framegap.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-3/igt@kms_pm_dc@dc3co-vpb-framegap.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][79] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][80] ([Intel XE#1729] / [Intel XE#7424])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#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#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3119]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3119
[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#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[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#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[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#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7772]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7772
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7935
[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#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8303]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8303
[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#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395
[Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396
[Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399
[Intel XE#8583]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8583
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9 -> xe-pw-170759v3
IGT_9017: 9017
xe-5451-80b509f6e34a01edfccc01a05e3e7062a934bcf9: 80b509f6e34a01edfccc01a05e3e7062a934bcf9
xe-pw-170759v3: 170759v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170759v3/index.html
[-- Attachment #2: Type: text/html, Size: 29557 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread