* [PATCH v3 1/5] drm/xe/vf: Helper for telling whether CCS migration BBs are needed
2025-10-16 12:05 [PATCH v3 0/5] drm/xe/vf: Minor fixes to post-migration recovery Tomasz Lis
@ 2025-10-16 12:05 ` Tomasz Lis
2025-10-16 19:57 ` Michal Wajdeczko
2025-10-16 12:05 ` [PATCH v3 2/5] drm/xe/vf: Fix GuC FW check for VF migration support Tomasz Lis
` (6 subsequent siblings)
7 siblings, 1 reply; 18+ messages in thread
From: Tomasz Lis @ 2025-10-16 12:05 UTC (permalink / raw)
To: intel-xe
Cc: Michał Winiarski, Michał Wajdeczko,
Piotr Piórkowski, Matthew Brost, Satyanarayana K V P
To avoid having duplicated checks, and also provide clear
documentation of what are we checking for, the conditions
for initing CCS BBs for VF migration are closed into a function.
Signed-off-by: Tomasz Lis <tomasz.lis@intel.com>
---
drivers/gpu/drm/xe/xe_sriov_vf_ccs.c | 15 ++++++++++++++-
drivers/gpu/drm/xe/xe_sriov_vf_ccs.h | 2 ++
2 files changed, 16 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_sriov_vf_ccs.c b/drivers/gpu/drm/xe/xe_sriov_vf_ccs.c
index 790249801364..7688d1baf42f 100644
--- a/drivers/gpu/drm/xe/xe_sriov_vf_ccs.c
+++ b/drivers/gpu/drm/xe/xe_sriov_vf_ccs.c
@@ -260,6 +260,19 @@ int xe_sriov_vf_ccs_register_context(struct xe_device *xe)
return err;
}
+/**
+ * xe_sriov_vf_ccs_migration_bb_needed - Whether GuC requires CCS copy BBs for VF migration.
+ * @xe: the &xe_device instance.
+ *
+ * Only selected platforms require VF KMD to maintain CCS copy BBs and linked LRCAs.
+ *
+ * Return: true if the BBs are needed, false otherwise.
+ */
+bool xe_sriov_vf_ccs_migration_bb_needed(struct xe_device *xe)
+{
+ return !IS_DGFX(xe) && xe_device_has_flat_ccs(xe);
+}
+
static void xe_sriov_vf_ccs_fini(void *arg)
{
struct xe_sriov_vf_ccs_ctx *ctx = arg;
@@ -294,7 +307,7 @@ int xe_sriov_vf_ccs_init(struct xe_device *xe)
xe_assert(xe, IS_SRIOV_VF(xe));
xe_assert(xe, xe_sriov_vf_migration_supported(xe));
- if (IS_DGFX(xe) || !xe_device_has_flat_ccs(xe))
+ if (!xe_sriov_vf_ccs_migration_bb_needed(xe))
return 0;
for_each_ccs_rw_ctx(ctx_id) {
diff --git a/drivers/gpu/drm/xe/xe_sriov_vf_ccs.h b/drivers/gpu/drm/xe/xe_sriov_vf_ccs.h
index f8ca6efce9ee..dcba4173c712 100644
--- a/drivers/gpu/drm/xe/xe_sriov_vf_ccs.h
+++ b/drivers/gpu/drm/xe/xe_sriov_vf_ccs.h
@@ -14,6 +14,8 @@ struct drm_printer;
struct xe_device;
struct xe_bo;
+bool xe_sriov_vf_ccs_migration_bb_needed(struct xe_device *xe);
+
int xe_sriov_vf_ccs_init(struct xe_device *xe);
int xe_sriov_vf_ccs_attach_bo(struct xe_bo *bo);
int xe_sriov_vf_ccs_detach_bo(struct xe_bo *bo);
--
2.25.1
^ permalink raw reply related [flat|nested] 18+ messages in thread* Re: [PATCH v3 1/5] drm/xe/vf: Helper for telling whether CCS migration BBs are needed
2025-10-16 12:05 ` [PATCH v3 1/5] drm/xe/vf: Helper for telling whether CCS migration BBs are needed Tomasz Lis
@ 2025-10-16 19:57 ` Michal Wajdeczko
2025-10-16 21:51 ` Lis, Tomasz
0 siblings, 1 reply; 18+ messages in thread
From: Michal Wajdeczko @ 2025-10-16 19:57 UTC (permalink / raw)
To: Tomasz Lis, intel-xe
Cc: Michał Winiarski, Piotr Piórkowski, Matthew Brost,
Satyanarayana K V P
On 10/16/2025 2:05 PM, Tomasz Lis wrote:
> To avoid having duplicated checks, and also provide clear
> documentation of what are we checking for, the conditions
> for initing CCS BBs for VF migration are closed into a function.
I would drop "BBs" from title and commit message, as this is
just an implementation detail of the "VF CCS migration" feature
that doesn't need to be exposed right now.
>
> Signed-off-by: Tomasz Lis <tomasz.lis@intel.com>
> ---
> drivers/gpu/drm/xe/xe_sriov_vf_ccs.c | 15 ++++++++++++++-
> drivers/gpu/drm/xe/xe_sriov_vf_ccs.h | 2 ++
> 2 files changed, 16 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_sriov_vf_ccs.c b/drivers/gpu/drm/xe/xe_sriov_vf_ccs.c
> index 790249801364..7688d1baf42f 100644
> --- a/drivers/gpu/drm/xe/xe_sriov_vf_ccs.c
> +++ b/drivers/gpu/drm/xe/xe_sriov_vf_ccs.c
> @@ -260,6 +260,19 @@ int xe_sriov_vf_ccs_register_context(struct xe_device *xe)
> return err;
> }
>
> +/**
> + * xe_sriov_vf_ccs_migration_bb_needed - Whether GuC requires CCS copy BBs for VF migration.
all functions in xe_sriov_vf_ccs.c are related to "migration"
but only this one mention it in its name, either rename other
functions to match this one, or name this one simply as:
xe_sriov_vf_ccs_is_needed()
> + * @xe: the &xe_device instance.
> + *
> + * Only selected platforms require VF KMD to maintain CCS copy BBs and linked LRCAs.
> + *
> + * Return: true if the BBs are needed, false otherwise.
"true if VF driver must participate in the CCS migration"
> + */
> +bool xe_sriov_vf_ccs_migration_bb_needed(struct xe_device *xe)
> +{
this should be always called from VF code, so even if not strictly required:
xe_assert(xe, IS_SRIOV(xe))
> + return !IS_DGFX(xe) && xe_device_has_flat_ccs(xe);
> +}
> +
> static void xe_sriov_vf_ccs_fini(void *arg)
> {
> struct xe_sriov_vf_ccs_ctx *ctx = arg;
> @@ -294,7 +307,7 @@ int xe_sriov_vf_ccs_init(struct xe_device *xe)
> xe_assert(xe, IS_SRIOV_VF(xe));
> xe_assert(xe, xe_sriov_vf_migration_supported(xe));
>
> - if (IS_DGFX(xe) || !xe_device_has_flat_ccs(xe))
> + if (!xe_sriov_vf_ccs_migration_bb_needed(xe))
> return 0;
>
> for_each_ccs_rw_ctx(ctx_id) {
> diff --git a/drivers/gpu/drm/xe/xe_sriov_vf_ccs.h b/drivers/gpu/drm/xe/xe_sriov_vf_ccs.h
> index f8ca6efce9ee..dcba4173c712 100644
> --- a/drivers/gpu/drm/xe/xe_sriov_vf_ccs.h
> +++ b/drivers/gpu/drm/xe/xe_sriov_vf_ccs.h
> @@ -14,6 +14,8 @@ struct drm_printer;
> struct xe_device;
> struct xe_bo;
>
> +bool xe_sriov_vf_ccs_migration_bb_needed(struct xe_device *xe);
> +
> int xe_sriov_vf_ccs_init(struct xe_device *xe);
> int xe_sriov_vf_ccs_attach_bo(struct xe_bo *bo);
> int xe_sriov_vf_ccs_detach_bo(struct xe_bo *bo);
^ permalink raw reply [flat|nested] 18+ messages in thread* Re: [PATCH v3 1/5] drm/xe/vf: Helper for telling whether CCS migration BBs are needed
2025-10-16 19:57 ` Michal Wajdeczko
@ 2025-10-16 21:51 ` Lis, Tomasz
0 siblings, 0 replies; 18+ messages in thread
From: Lis, Tomasz @ 2025-10-16 21:51 UTC (permalink / raw)
To: Michal Wajdeczko, intel-xe
Cc: Michał Winiarski, Piotr Piórkowski, Matthew Brost,
Satyanarayana K V P
[-- Attachment #1: Type: text/plain, Size: 4765 bytes --]
On 10/16/2025 9:57 PM, Michal Wajdeczko wrote:
>
> On 10/16/2025 2:05 PM, Tomasz Lis wrote:
>> To avoid having duplicated checks, and also provide clear
>> documentation of what are we checking for, the conditions
>> for initing CCS BBs for VF migration are closed into a function.
> I would drop "BBs" from title and commit message, as this is
> just an implementation detail of the "VF CCS migration" feature
> that doesn't need to be exposed right now.
Is it though? Does that mean DGPUs do not need "VF CCS migration"?
VF CCS migration, like migration of all chunks/blocks of VF state, is
handled by PF side.
What we have here is VF-side workaround for hardware limitation of few
integrated platforms. When it's no longer needed on the next platform,
will we say VF CCS migration was eliminated?
This workaround has been named under main feature name. That wasn't the
best idea, but it's done. Though in future changes, I'd propose we move
towards naming it what it is.
We may change the name to something else, but disguising it under main
feature name does not feel right to me. It is important part of this
feature for certain platforms, but it is not this feature.
>> Signed-off-by: Tomasz Lis<tomasz.lis@intel.com>
>> ---
>> drivers/gpu/drm/xe/xe_sriov_vf_ccs.c | 15 ++++++++++++++-
>> drivers/gpu/drm/xe/xe_sriov_vf_ccs.h | 2 ++
>> 2 files changed, 16 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_sriov_vf_ccs.c b/drivers/gpu/drm/xe/xe_sriov_vf_ccs.c
>> index 790249801364..7688d1baf42f 100644
>> --- a/drivers/gpu/drm/xe/xe_sriov_vf_ccs.c
>> +++ b/drivers/gpu/drm/xe/xe_sriov_vf_ccs.c
>> @@ -260,6 +260,19 @@ int xe_sriov_vf_ccs_register_context(struct xe_device *xe)
>> return err;
>> }
>>
>> +/**
>> + * xe_sriov_vf_ccs_migration_bb_needed - Whether GuC requires CCS copy BBs for VF migration.
> all functions in xe_sriov_vf_ccs.c are related to "migration"
> but only this one mention it in its name, either rename other
> functions to match this one, or name this one simply as:
>
> xe_sriov_vf_ccs_is_needed()
When I imagine anyone trying to understand this code and reading
"vf_ccs_is_needed", it's hard for me to find a path when it doesn't just
end with confusion. That would be a confusing name.
So I guess renaming everything in the file is needed. But that should be
done as separate patch, and most likely will end up being a separate series.
We may still discuss whether "ccs_migration_bb" should be the name, or
something else/shorter. I considered "ccs_wa" - shorter, but rather
generic, and by this logic the whole recovery should have "_wa" in
function names. I also considered "ccs_lrcas"/"ccs_migration_lrcas", but
the additional contexts are really just required accompanying stuff to
what is the central part here - the batch buffers. And that's how I
settled on the current name.
The word "migration", when not accompanying directly by "vf", also has a
different meaning in the Xe driver; but I can't find a more unique but
still true word. We have "recovery", but that is only connected to
"restore" part of the process. The words "vf" and "sriov" are still
close in the name, so I consider that good enough.
>> + * @xe: the &xe_device instance.
>> + *
>> + * Only selected platforms require VF KMD to maintain CCS copy BBs and linked LRCAs.
>> + *
>> + * Return: true if the BBs are needed, false otherwise.
> "true if VF driver must participate in the CCS migration"
that's good. Ack.
>
>> + */
>> +bool xe_sriov_vf_ccs_migration_bb_needed(struct xe_device *xe)
>> +{
> this should be always called from VF code, so even if not strictly required:
>
> xe_assert(xe, IS_SRIOV(xe))
ack.
-Tomasz
>
>> + return !IS_DGFX(xe) && xe_device_has_flat_ccs(xe);
>> +}
>> +
>> static void xe_sriov_vf_ccs_fini(void *arg)
>> {
>> struct xe_sriov_vf_ccs_ctx *ctx = arg;
>> @@ -294,7 +307,7 @@ int xe_sriov_vf_ccs_init(struct xe_device *xe)
>> xe_assert(xe, IS_SRIOV_VF(xe));
>> xe_assert(xe, xe_sriov_vf_migration_supported(xe));
>>
>> - if (IS_DGFX(xe) || !xe_device_has_flat_ccs(xe))
>> + if (!xe_sriov_vf_ccs_migration_bb_needed(xe))
>> return 0;
>>
>> for_each_ccs_rw_ctx(ctx_id) {
>> diff --git a/drivers/gpu/drm/xe/xe_sriov_vf_ccs.h b/drivers/gpu/drm/xe/xe_sriov_vf_ccs.h
>> index f8ca6efce9ee..dcba4173c712 100644
>> --- a/drivers/gpu/drm/xe/xe_sriov_vf_ccs.h
>> +++ b/drivers/gpu/drm/xe/xe_sriov_vf_ccs.h
>> @@ -14,6 +14,8 @@ struct drm_printer;
>> struct xe_device;
>> struct xe_bo;
>>
>> +bool xe_sriov_vf_ccs_migration_bb_needed(struct xe_device *xe);
>> +
>> int xe_sriov_vf_ccs_init(struct xe_device *xe);
>> int xe_sriov_vf_ccs_attach_bo(struct xe_bo *bo);
>> int xe_sriov_vf_ccs_detach_bo(struct xe_bo *bo);
[-- Attachment #2: Type: text/html, Size: 7101 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* [PATCH v3 2/5] drm/xe/vf: Fix GuC FW check for VF migration support
2025-10-16 12:05 [PATCH v3 0/5] drm/xe/vf: Minor fixes to post-migration recovery Tomasz Lis
2025-10-16 12:05 ` [PATCH v3 1/5] drm/xe/vf: Helper for telling whether CCS migration BBs are needed Tomasz Lis
@ 2025-10-16 12:05 ` Tomasz Lis
2025-10-16 21:55 ` Michal Wajdeczko
2025-10-16 12:05 ` [PATCH v3 3/5] drm/xe/vf: Skip fixups on VF migration before getting GGTT info Tomasz Lis
` (5 subsequent siblings)
7 siblings, 1 reply; 18+ messages in thread
From: Tomasz Lis @ 2025-10-16 12:05 UTC (permalink / raw)
To: intel-xe
Cc: Michał Winiarski, Michał Wajdeczko,
Piotr Piórkowski, Matthew Brost, Satyanarayana K V P
The check was done before GuC ABI version could be acquired.
Comparing only to zeros provides very stable results, though
not the ones expected.
This change dislodged part of the VF migration support check
and moved it to after GuC handshake.
v2: Use xe_sriov_vf_ccs_migration_bb_needed()
Tested-by: Matthew Brost <matthew.brost@intel.com>
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6349
Fixes: be5590c384f3 ("drm/xe/vf: Enable CCS save/restore only on supported GUC versions")
Signed-off-by: Tomasz Lis <tomasz.lis@intel.com>
---
drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 41 +++++++++++++++++++++++++++++
drivers/gpu/drm/xe/xe_gt_sriov_vf.h | 1 +
drivers/gpu/drm/xe/xe_guc.c | 2 ++
drivers/gpu/drm/xe/xe_sriov_vf.c | 10 -------
4 files changed, 44 insertions(+), 10 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
index 46518e629ba3..34c68de6e2f3 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
@@ -314,6 +314,47 @@ static int guc_action_vf_notify_resfix_done(struct xe_guc *guc)
return ret > 0 ? -EPROTO : ret;
}
+static void vf_disable_migration(struct xe_gt *gt, const char *fmt, ...)
+{
+ struct xe_device *xe = gt_to_xe(gt);
+ struct va_format vaf;
+ va_list va_args;
+
+ xe_gt_assert(gt, IS_SRIOV_VF(xe));
+
+ va_start(va_args, fmt);
+ vaf.fmt = fmt;
+ vaf.va = &va_args;
+ xe_gt_sriov_notice(gt, "migration disabled: %pV\n", &vaf);
+ va_end(va_args);
+
+ xe->sriov.vf.migration.enabled = false;
+}
+
+/**
+ * xe_gt_sriov_vf_guc_check_migration_support - Check for disable migration due to GuC.
+ * @gt: the &xe_gt struct instance linked to target GuC
+ *
+ * Performs late disable of VF migration feature in case GuC FW cannot support it.
+ */
+void xe_gt_sriov_vf_guc_check_migration_support(struct xe_gt *gt)
+{
+ struct xe_device *xe = gt_to_xe(gt);
+
+ if (!xe_sriov_vf_migration_supported(xe))
+ return;
+
+ if (xe_sriov_vf_ccs_migration_bb_needed(xe)) {
+ struct xe_uc_fw_version guc_version;
+
+ xe_gt_sriov_vf_guc_versions(gt, NULL, &guc_version);
+ if (MAKE_GUC_VER_STRUCT(guc_version) < MAKE_GUC_VER(1, 23, 0))
+ return vf_disable_migration(gt,
+ "CCS migration requires GuC ABI >= 1.23 but only %u.%u found",
+ guc_version.major, guc_version.minor);
+ }
+}
+
/**
* vf_notify_resfix_done - Notify GuC about resource fixups apply completed.
* @gt: the &xe_gt struct instance linked to target GuC
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.h b/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
index af40276790fa..60a3b9b05b20 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
@@ -26,6 +26,7 @@ void xe_gt_sriov_vf_migrated_event_handler(struct xe_gt *gt);
int xe_gt_sriov_vf_init_early(struct xe_gt *gt);
int xe_gt_sriov_vf_init(struct xe_gt *gt);
bool xe_gt_sriov_vf_recovery_pending(struct xe_gt *gt);
+void xe_gt_sriov_vf_guc_check_migration_support(struct xe_gt *gt);
u32 xe_gt_sriov_vf_gmdid(struct xe_gt *gt);
u16 xe_gt_sriov_vf_guc_ids(struct xe_gt *gt);
diff --git a/drivers/gpu/drm/xe/xe_guc.c b/drivers/gpu/drm/xe/xe_guc.c
index d94490979adc..3c4e64233b3a 100644
--- a/drivers/gpu/drm/xe/xe_guc.c
+++ b/drivers/gpu/drm/xe/xe_guc.c
@@ -713,6 +713,8 @@ static int vf_guc_init_noalloc(struct xe_guc *guc)
if (err)
return err;
+ xe_gt_sriov_vf_guc_check_migration_support(gt);
+
err = xe_gt_sriov_vf_query_config(gt);
if (err)
return err;
diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.c b/drivers/gpu/drm/xe/xe_sriov_vf.c
index 911d5720917b..5fb042c05112 100644
--- a/drivers/gpu/drm/xe/xe_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_sriov_vf.c
@@ -163,16 +163,6 @@ static void vf_migration_init_early(struct xe_device *xe)
return vf_disable_migration(xe, "requires gfx version >= 20, but only %u found",
GRAPHICS_VER(xe));
- if (!IS_DGFX(xe)) {
- struct xe_uc_fw_version guc_version;
-
- xe_gt_sriov_vf_guc_versions(xe_device_get_gt(xe, 0), NULL, &guc_version);
- if (MAKE_GUC_VER_STRUCT(guc_version) < MAKE_GUC_VER(1, 23, 0))
- return vf_disable_migration(xe,
- "CCS migration requires GuC ABI >= 1.23 but only %u.%u found",
- guc_version.major, guc_version.minor);
- }
-
xe->sriov.vf.migration.enabled = true;
xe_sriov_dbg(xe, "migration support enabled\n");
}
--
2.25.1
^ permalink raw reply related [flat|nested] 18+ messages in thread* Re: [PATCH v3 2/5] drm/xe/vf: Fix GuC FW check for VF migration support
2025-10-16 12:05 ` [PATCH v3 2/5] drm/xe/vf: Fix GuC FW check for VF migration support Tomasz Lis
@ 2025-10-16 21:55 ` Michal Wajdeczko
2025-10-17 15:31 ` Lis, Tomasz
0 siblings, 1 reply; 18+ messages in thread
From: Michal Wajdeczko @ 2025-10-16 21:55 UTC (permalink / raw)
To: Tomasz Lis, intel-xe
Cc: Michał Winiarski, Piotr Piórkowski, Matthew Brost,
Satyanarayana K V P
On 10/16/2025 2:05 PM, Tomasz Lis wrote:
> The check was done before GuC ABI version could be acquired.
> Comparing only to zeros provides very stable results, though
> not the ones expected.
instead of above sentence, better say that this was triggering:
<4> [174.830604] xe 0000:00:02.1: [drm] Assertion `gt->sriov.vf.guc_version.major` failed!
...
>
> This change dislodged part of the VF migration support check
> and moved it to after GuC handshake.
and describe your changes in imperative mood
[1] https://docs.kernel.org/process/submitting-patches.html#describe-your-changes
>
> v2: Use xe_sriov_vf_ccs_migration_bb_needed()
you can keep change log under ---
>
> Tested-by: Matthew Brost <matthew.brost@intel.com>
I guess above was true for # rev1
> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6349
> Fixes: be5590c384f3 ("drm/xe/vf: Enable CCS save/restore only on supported GUC versions")
> Signed-off-by: Tomasz Lis <tomasz.lis@intel.com>
> ---
> drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 41 +++++++++++++++++++++++++++++
> drivers/gpu/drm/xe/xe_gt_sriov_vf.h | 1 +
> drivers/gpu/drm/xe/xe_guc.c | 2 ++
> drivers/gpu/drm/xe/xe_sriov_vf.c | 10 -------
> 4 files changed, 44 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> index 46518e629ba3..34c68de6e2f3 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> @@ -314,6 +314,47 @@ static int guc_action_vf_notify_resfix_done(struct xe_guc *guc)
> return ret > 0 ? -EPROTO : ret;
> }
>
> +static void vf_disable_migration(struct xe_gt *gt, const char *fmt, ...)
> +{
> + struct xe_device *xe = gt_to_xe(gt);
> + struct va_format vaf;
> + va_list va_args;
> +
> + xe_gt_assert(gt, IS_SRIOV_VF(xe));
> +
> + va_start(va_args, fmt);
> + vaf.fmt = fmt;
> + vaf.va = &va_args;
> + xe_gt_sriov_notice(gt, "migration disabled: %pV\n", &vaf);
> + va_end(va_args);
> +
> + xe->sriov.vf.migration.enabled = false;
this looks like a layer violation
and we already have a function that wraps that at the device level
maybe just promote device-level vf_disable_migration(xe,...) from xe_sriov_vf.c
and call it from this gt-level place ?
hmm, but see below [2]
> +}
> +
> +/**
> + * xe_gt_sriov_vf_guc_check_migration_support - Check for disable migration due to GuC.
> + * @gt: the &xe_gt struct instance linked to target GuC
> + *
> + * Performs late disable of VF migration feature in case GuC FW cannot support it.
> + */
> +void xe_gt_sriov_vf_guc_check_migration_support(struct xe_gt *gt)
> +{
> + struct xe_device *xe = gt_to_xe(gt);
> +
> + if (!xe_sriov_vf_migration_supported(xe))
> + return;
> +
> + if (xe_sriov_vf_ccs_migration_bb_needed(xe)) {
> + struct xe_uc_fw_version guc_version;
> +
> + xe_gt_sriov_vf_guc_versions(gt, NULL, &guc_version);
> + if (MAKE_GUC_VER_STRUCT(guc_version) < MAKE_GUC_VER(1, 23, 0))
> + return vf_disable_migration(gt,
> + "CCS migration requires GuC ABI >= 1.23 but only %u.%u found",
> + guc_version.major, guc_version.minor);
since we split migration checks from one place,
this CCS GuC ABI condition shall be placed in sriov_vf_ccs.c subcomponent
> + }
> +}
> +
> /**
> * vf_notify_resfix_done - Notify GuC about resource fixups apply completed.
> * @gt: the &xe_gt struct instance linked to target GuC
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.h b/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
> index af40276790fa..60a3b9b05b20 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
> @@ -26,6 +26,7 @@ void xe_gt_sriov_vf_migrated_event_handler(struct xe_gt *gt);
> int xe_gt_sriov_vf_init_early(struct xe_gt *gt);
> int xe_gt_sriov_vf_init(struct xe_gt *gt);
> bool xe_gt_sriov_vf_recovery_pending(struct xe_gt *gt);
> +void xe_gt_sriov_vf_guc_check_migration_support(struct xe_gt *gt);
>
> u32 xe_gt_sriov_vf_gmdid(struct xe_gt *gt);
> u16 xe_gt_sriov_vf_guc_ids(struct xe_gt *gt);
> diff --git a/drivers/gpu/drm/xe/xe_guc.c b/drivers/gpu/drm/xe/xe_guc.c
> index d94490979adc..3c4e64233b3a 100644
> --- a/drivers/gpu/drm/xe/xe_guc.c
> +++ b/drivers/gpu/drm/xe/xe_guc.c
> @@ -713,6 +713,8 @@ static int vf_guc_init_noalloc(struct xe_guc *guc)
> if (err)
> return err;
>
> + xe_gt_sriov_vf_guc_check_migration_support(gt);
> +
[2] so this is now going through these layers:
guc_vf vf_guc_init_noalloc
gt_vf xe_gt_sriov_vf_guc_check_migration_support
xe_vf xe_sriov_vf_migration_supported
xe_vf_ccs xe_sriov_vf_ccs_migration_bb_needed
gt_vf xe_gt_sriov_vf_guc_versions
gt_vf vf_disable_migration
xe_vf xe->sriov.vf.migration.enabled
so maybe better leave this VF GuC init as-is and just make "late" checks
in xe_device_probe either in xe_sriov_init_late
xe xe_sriov_init_late
xe_vf xe_sriov_vf_init_late
xe_vf xe_sriov_vf_migration_supported
xe_vf_ccs xe_sriov_vf_ccs_init_late
xe_vf_ccs xe_sriov_vf_ccs_migration_bb_needed
gt_vf xe_gt_sriov_vf_guc_versions
xe_vf vf_disable_migration
or after for_each_gt/xe_gt_init_early loop
xe xe_device_probe
xe_vf xe_sriov_vf_check_migration
xe_vf xe_sriov_vf_migration_supported
xe_vf_ccs xe_sriov_vf_ccs_init_late
xe_vf_ccs xe_sriov_vf_ccs_migration_bb_needed
gt_vf xe_gt_sriov_vf_guc_versions
xe_vf vf_disable_migration
or just make it as part of the xe_sriov_vf_ccs_init()
since before that point CCS migration is not working either
> err = xe_gt_sriov_vf_query_config(gt);
> if (err)
> return err;
> diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.c b/drivers/gpu/drm/xe/xe_sriov_vf.c
> index 911d5720917b..5fb042c05112 100644
> --- a/drivers/gpu/drm/xe/xe_sriov_vf.c
> +++ b/drivers/gpu/drm/xe/xe_sriov_vf.c
> @@ -163,16 +163,6 @@ static void vf_migration_init_early(struct xe_device *xe)
> return vf_disable_migration(xe, "requires gfx version >= 20, but only %u found",
> GRAPHICS_VER(xe));
>
> - if (!IS_DGFX(xe)) {
> - struct xe_uc_fw_version guc_version;
> -
> - xe_gt_sriov_vf_guc_versions(xe_device_get_gt(xe, 0), NULL, &guc_version);
> - if (MAKE_GUC_VER_STRUCT(guc_version) < MAKE_GUC_VER(1, 23, 0))
> - return vf_disable_migration(xe,
> - "CCS migration requires GuC ABI >= 1.23 but only %u.%u found",
> - guc_version.major, guc_version.minor);
> - }
> -
> xe->sriov.vf.migration.enabled = true;
> xe_sriov_dbg(xe, "migration support enabled\n");
this would be non-reliable, as we might still disable migration later on
so we should either remove it completely (assuming its "enabled" until explicitly disabled)
or reverse the logic and use this flag instead:
xe->sriov.vf.migration.disabled
> }
^ permalink raw reply [flat|nested] 18+ messages in thread* Re: [PATCH v3 2/5] drm/xe/vf: Fix GuC FW check for VF migration support
2025-10-16 21:55 ` Michal Wajdeczko
@ 2025-10-17 15:31 ` Lis, Tomasz
2025-10-17 15:40 ` Michal Wajdeczko
0 siblings, 1 reply; 18+ messages in thread
From: Lis, Tomasz @ 2025-10-17 15:31 UTC (permalink / raw)
To: Michal Wajdeczko, intel-xe
Cc: Michał Winiarski, Piotr Piórkowski, Matthew Brost,
Satyanarayana K V P
[-- Attachment #1: Type: text/plain, Size: 8513 bytes --]
On 10/16/2025 11:55 PM, Michal Wajdeczko wrote:
>
> On 10/16/2025 2:05 PM, Tomasz Lis wrote:
>> The check was done before GuC ABI version could be acquired.
>> Comparing only to zeros provides very stable results, though
>> not the ones expected.
> instead of above sentence, better say that this was triggering:
>
> <4> [174.830604] xe 0000:00:02.1: [drm] Assertion `gt->sriov.vf.guc_version.major` failed!
> ...
ok.
>
>
>> This change dislodged part of the VF migration support check
>> and moved it to after GuC handshake.
> and describe your changes in imperative mood
>
> [1]https://docs.kernel.org/process/submitting-patches.html#describe-your-changes
will do.
>
>> v2: Use xe_sriov_vf_ccs_migration_bb_needed()
> you can keep change log under ---
ack.
>
>> Tested-by: Matthew Brost<matthew.brost@intel.com>
> I guess above was true for # rev1
ack.
>
>> Closes:https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6349
>> Fixes: be5590c384f3 ("drm/xe/vf: Enable CCS save/restore only on supported GUC versions")
>> Signed-off-by: Tomasz Lis<tomasz.lis@intel.com>
>> ---
>> drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 41 +++++++++++++++++++++++++++++
>> drivers/gpu/drm/xe/xe_gt_sriov_vf.h | 1 +
>> drivers/gpu/drm/xe/xe_guc.c | 2 ++
>> drivers/gpu/drm/xe/xe_sriov_vf.c | 10 -------
>> 4 files changed, 44 insertions(+), 10 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
>> index 46518e629ba3..34c68de6e2f3 100644
>> --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
>> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
>> @@ -314,6 +314,47 @@ static int guc_action_vf_notify_resfix_done(struct xe_guc *guc)
>> return ret > 0 ? -EPROTO : ret;
>> }
>>
>> +static void vf_disable_migration(struct xe_gt *gt, const char *fmt, ...)
>> +{
>> + struct xe_device *xe = gt_to_xe(gt);
>> + struct va_format vaf;
>> + va_list va_args;
>> +
>> + xe_gt_assert(gt, IS_SRIOV_VF(xe));
>> +
>> + va_start(va_args, fmt);
>> + vaf.fmt = fmt;
>> + vaf.va = &va_args;
>> + xe_gt_sriov_notice(gt, "migration disabled: %pV\n", &vaf);
>> + va_end(va_args);
>> +
>> + xe->sriov.vf.migration.enabled = false;
> this looks like a layer violation
>
> and we already have a function that wraps that at the device level
>
> maybe just promote device-level vf_disable_migration(xe,...) from xe_sriov_vf.c
> and call it from this gt-level place ?
>
> hmm, but see below [2]
>
>> +}
>> +
>> +/**
>> + * xe_gt_sriov_vf_guc_check_migration_support - Check for disable migration due to GuC.
>> + * @gt: the &xe_gt struct instance linked to target GuC
>> + *
>> + * Performs late disable of VF migration feature in case GuC FW cannot support it.
>> + */
>> +void xe_gt_sriov_vf_guc_check_migration_support(struct xe_gt *gt)
>> +{
>> + struct xe_device *xe = gt_to_xe(gt);
>> +
>> + if (!xe_sriov_vf_migration_supported(xe))
>> + return;
>> +
>> + if (xe_sriov_vf_ccs_migration_bb_needed(xe)) {
>> + struct xe_uc_fw_version guc_version;
>> +
>> + xe_gt_sriov_vf_guc_versions(gt, NULL, &guc_version);
>> + if (MAKE_GUC_VER_STRUCT(guc_version) < MAKE_GUC_VER(1, 23, 0))
>> + return vf_disable_migration(gt,
>> + "CCS migration requires GuC ABI >= 1.23 but only %u.%u found",
>> + guc_version.major, guc_version.minor);
> since we split migration checks from one place,
> this CCS GuC ABI condition shall be placed in sriov_vf_ccs.c subcomponent
will move.
>
>> + }
>> +}
>> +
>> /**
>> * vf_notify_resfix_done - Notify GuC about resource fixups apply completed.
>> * @gt: the &xe_gt struct instance linked to target GuC
>> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.h b/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
>> index af40276790fa..60a3b9b05b20 100644
>> --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
>> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
>> @@ -26,6 +26,7 @@ void xe_gt_sriov_vf_migrated_event_handler(struct xe_gt *gt);
>> int xe_gt_sriov_vf_init_early(struct xe_gt *gt);
>> int xe_gt_sriov_vf_init(struct xe_gt *gt);
>> bool xe_gt_sriov_vf_recovery_pending(struct xe_gt *gt);
>> +void xe_gt_sriov_vf_guc_check_migration_support(struct xe_gt *gt);
>>
>> u32 xe_gt_sriov_vf_gmdid(struct xe_gt *gt);
>> u16 xe_gt_sriov_vf_guc_ids(struct xe_gt *gt);
>> diff --git a/drivers/gpu/drm/xe/xe_guc.c b/drivers/gpu/drm/xe/xe_guc.c
>> index d94490979adc..3c4e64233b3a 100644
>> --- a/drivers/gpu/drm/xe/xe_guc.c
>> +++ b/drivers/gpu/drm/xe/xe_guc.c
>> @@ -713,6 +713,8 @@ static int vf_guc_init_noalloc(struct xe_guc *guc)
>> if (err)
>> return err;
>>
>> + xe_gt_sriov_vf_guc_check_migration_support(gt);
>> +
> [2] so this is now going through these layers:
>
> guc_vf vf_guc_init_noalloc
> gt_vf xe_gt_sriov_vf_guc_check_migration_support
> xe_vf xe_sriov_vf_migration_supported
> xe_vf_ccs xe_sriov_vf_ccs_migration_bb_needed
> gt_vf xe_gt_sriov_vf_guc_versions
> gt_vf vf_disable_migration
> xe_vf xe->sriov.vf.migration.enabled
>
> so maybe better leave this VF GuC init as-is and just make "late" checks
> in xe_device_probe either in xe_sriov_init_late
>
> xe xe_sriov_init_late
> xe_vf xe_sriov_vf_init_late
> xe_vf xe_sriov_vf_migration_supported
> xe_vf_ccs xe_sriov_vf_ccs_init_late
> xe_vf_ccs xe_sriov_vf_ccs_migration_bb_needed
> gt_vf xe_gt_sriov_vf_guc_versions
> xe_vf vf_disable_migration
>
> or after for_each_gt/xe_gt_init_early loop
>
> xe xe_device_probe
> xe_vf xe_sriov_vf_check_migration
> xe_vf xe_sriov_vf_migration_supported
> xe_vf_ccs xe_sriov_vf_ccs_init_late
> xe_vf_ccs xe_sriov_vf_ccs_migration_bb_needed
> gt_vf xe_gt_sriov_vf_guc_versions
> xe_vf vf_disable_migration
>
> or just make it as part of the xe_sriov_vf_ccs_init()
> since before that point CCS migration is not working either
The check can be done later than where I put it; but it needs to be
before IRQs are enabled. Both kinds of these are enabled in `xe_gt_init()`:
MEMIRQs in
gt_init_with_gt_forcewake->xe_uc_init->xe_guc_enable_communication
MMIO IRQs in gt_init_with_gt_forcewake->xe_irq_enable_hwe
The `xe_sriov_vf_ccs_init` is currently called after `xe_gt_init`. I'm
not completely sure if this is correct placement .. it might be, if
there are no CCS metadata set at that point.
GuC should have no problem assisting to migration without CCS metadata
transfer, so that placement could be ok.
But that's definitely too late for figuring out whether we support
migration at all.
So this eliminates the `xe_sriov_vf_init_late` and
`xe_sriov_vf_ccs_init` options.
For the 2nd option - this can be done. But does it really make sense to
put a single-platform workaround check directly in `xe_device_probe`?
I can do this - if you consider this option acceptable. Though
personally I see no reason for trying to rip it out of
`xe_gt_init_early`. It can be easily turned from per-gt check to single
GT check (by checking only the primary GuC which will actually be
responsible for scheduling the CCS save/restore BB execution), but that
gives an option rather than a reason.
Any place between `xe_gt_init_early()` and `xe_gt_init()` is ok for me.
>
>> err = xe_gt_sriov_vf_query_config(gt);
>> if (err)
>> return err;
>> diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.c b/drivers/gpu/drm/xe/xe_sriov_vf.c
>> index 911d5720917b..5fb042c05112 100644
>> --- a/drivers/gpu/drm/xe/xe_sriov_vf.c
>> +++ b/drivers/gpu/drm/xe/xe_sriov_vf.c
>> @@ -163,16 +163,6 @@ static void vf_migration_init_early(struct xe_device *xe)
>> return vf_disable_migration(xe, "requires gfx version >= 20, but only %u found",
>> GRAPHICS_VER(xe));
>>
>> - if (!IS_DGFX(xe)) {
>> - struct xe_uc_fw_version guc_version;
>> -
>> - xe_gt_sriov_vf_guc_versions(xe_device_get_gt(xe, 0), NULL, &guc_version);
>> - if (MAKE_GUC_VER_STRUCT(guc_version) < MAKE_GUC_VER(1, 23, 0))
>> - return vf_disable_migration(xe,
>> - "CCS migration requires GuC ABI >= 1.23 but only %u.%u found",
>> - guc_version.major, guc_version.minor);
>> - }
>> -
>> xe->sriov.vf.migration.enabled = true;
>> xe_sriov_dbg(xe, "migration support enabled\n");
> this would be non-reliable, as we might still disable migration later on
>
> so we should either remove it completely (assuming its "enabled" until explicitly disabled)
> or reverse the logic and use this flag instead:
>
> xe->sriov.vf.migration.disabled
will remove, it doesn't make sense here.
-Tomasz
>
>> }
[-- Attachment #2: Type: text/html, Size: 12093 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread* Re: [PATCH v3 2/5] drm/xe/vf: Fix GuC FW check for VF migration support
2025-10-17 15:31 ` Lis, Tomasz
@ 2025-10-17 15:40 ` Michal Wajdeczko
0 siblings, 0 replies; 18+ messages in thread
From: Michal Wajdeczko @ 2025-10-17 15:40 UTC (permalink / raw)
To: Lis, Tomasz, intel-xe
Cc: Michał Winiarski, Piotr Piórkowski, Matthew Brost,
Satyanarayana K V P
On 10/17/2025 5:31 PM, Lis, Tomasz wrote:
>
> On 10/16/2025 11:55 PM, Michal Wajdeczko wrote:
>> On 10/16/2025 2:05 PM, Tomasz Lis wrote:
>>> The check was done before GuC ABI version could be acquired.
>>> Comparing only to zeros provides very stable results, though
>>> not the ones expected.
>> instead of above sentence, better say that this was triggering:
>>
>> <4> [174.830604] xe 0000:00:02.1: [drm] Assertion `gt->sriov.vf.guc_version.major` failed!
>> ...
> ok.
>>> This change dislodged part of the VF migration support check
>>> and moved it to after GuC handshake.
>> and describe your changes in imperative mood
>>
>> [1] https://docs.kernel.org/process/submitting-patches.html#describe-your-changes
> will do.
>>> v2: Use xe_sriov_vf_ccs_migration_bb_needed()
>> you can keep change log under ---
> ack.
>>> Tested-by: Matthew Brost <matthew.brost@intel.com>
>> I guess above was true for # rev1
> ack.
>>> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6349
>>> Fixes: be5590c384f3 ("drm/xe/vf: Enable CCS save/restore only on supported GUC versions")
>>> Signed-off-by: Tomasz Lis <tomasz.lis@intel.com>
>>> ---
>>> drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 41 +++++++++++++++++++++++++++++
>>> drivers/gpu/drm/xe/xe_gt_sriov_vf.h | 1 +
>>> drivers/gpu/drm/xe/xe_guc.c | 2 ++
>>> drivers/gpu/drm/xe/xe_sriov_vf.c | 10 -------
>>> 4 files changed, 44 insertions(+), 10 deletions(-)
>>>
>>> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
>>> index 46518e629ba3..34c68de6e2f3 100644
>>> --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
>>> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
>>> @@ -314,6 +314,47 @@ static int guc_action_vf_notify_resfix_done(struct xe_guc *guc)
>>> return ret > 0 ? -EPROTO : ret;
>>> }
>>>
>>> +static void vf_disable_migration(struct xe_gt *gt, const char *fmt, ...)
>>> +{
>>> + struct xe_device *xe = gt_to_xe(gt);
>>> + struct va_format vaf;
>>> + va_list va_args;
>>> +
>>> + xe_gt_assert(gt, IS_SRIOV_VF(xe));
>>> +
>>> + va_start(va_args, fmt);
>>> + vaf.fmt = fmt;
>>> + vaf.va = &va_args;
>>> + xe_gt_sriov_notice(gt, "migration disabled: %pV\n", &vaf);
>>> + va_end(va_args);
>>> +
>>> + xe->sriov.vf.migration.enabled = false;
>> this looks like a layer violation
>>
>> and we already have a function that wraps that at the device level
>>
>> maybe just promote device-level vf_disable_migration(xe,...) from xe_sriov_vf.c
>> and call it from this gt-level place ?
>>
>> hmm, but see below [2]
>>
>>> +}
>>> +
>>> +/**
>>> + * xe_gt_sriov_vf_guc_check_migration_support - Check for disable migration due to GuC.
>>> + * @gt: the &xe_gt struct instance linked to target GuC
>>> + *
>>> + * Performs late disable of VF migration feature in case GuC FW cannot support it.
>>> + */
>>> +void xe_gt_sriov_vf_guc_check_migration_support(struct xe_gt *gt)
>>> +{
>>> + struct xe_device *xe = gt_to_xe(gt);
>>> +
>>> + if (!xe_sriov_vf_migration_supported(xe))
>>> + return;
>>> +
>>> + if (xe_sriov_vf_ccs_migration_bb_needed(xe)) {
>>> + struct xe_uc_fw_version guc_version;
>>> +
>>> + xe_gt_sriov_vf_guc_versions(gt, NULL, &guc_version);
>>> + if (MAKE_GUC_VER_STRUCT(guc_version) < MAKE_GUC_VER(1, 23, 0))
>>> + return vf_disable_migration(gt,
>>> + "CCS migration requires GuC ABI >= 1.23 but only %u.%u found",
>>> + guc_version.major, guc_version.minor);
>> since we split migration checks from one place,
>> this CCS GuC ABI condition shall be placed in sriov_vf_ccs.c subcomponent
> will move.
>>> + }
>>> +}
>>> +
>>> /**
>>> * vf_notify_resfix_done - Notify GuC about resource fixups apply completed.
>>> * @gt: the &xe_gt struct instance linked to target GuC
>>> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.h b/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
>>> index af40276790fa..60a3b9b05b20 100644
>>> --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
>>> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
>>> @@ -26,6 +26,7 @@ void xe_gt_sriov_vf_migrated_event_handler(struct xe_gt *gt);
>>> int xe_gt_sriov_vf_init_early(struct xe_gt *gt);
>>> int xe_gt_sriov_vf_init(struct xe_gt *gt);
>>> bool xe_gt_sriov_vf_recovery_pending(struct xe_gt *gt);
>>> +void xe_gt_sriov_vf_guc_check_migration_support(struct xe_gt *gt);
>>>
>>> u32 xe_gt_sriov_vf_gmdid(struct xe_gt *gt);
>>> u16 xe_gt_sriov_vf_guc_ids(struct xe_gt *gt);
>>> diff --git a/drivers/gpu/drm/xe/xe_guc.c b/drivers/gpu/drm/xe/xe_guc.c
>>> index d94490979adc..3c4e64233b3a 100644
>>> --- a/drivers/gpu/drm/xe/xe_guc.c
>>> +++ b/drivers/gpu/drm/xe/xe_guc.c
>>> @@ -713,6 +713,8 @@ static int vf_guc_init_noalloc(struct xe_guc *guc)
>>> if (err)
>>> return err;
>>>
>>> + xe_gt_sriov_vf_guc_check_migration_support(gt);
>>> +
>> [2] so this is now going through these layers:
>>
>> guc_vf vf_guc_init_noalloc
>> gt_vf xe_gt_sriov_vf_guc_check_migration_support
>> xe_vf xe_sriov_vf_migration_supported
>> xe_vf_ccs xe_sriov_vf_ccs_migration_bb_needed
>> gt_vf xe_gt_sriov_vf_guc_versions
>> gt_vf vf_disable_migration
>> xe_vf xe->sriov.vf.migration.enabled
>>
>> so maybe better leave this VF GuC init as-is and just make "late" checks
>> in xe_device_probe either in xe_sriov_init_late
>>
>> xe xe_sriov_init_late
>> xe_vf xe_sriov_vf_init_late
>> xe_vf xe_sriov_vf_migration_supported
>> xe_vf_ccs xe_sriov_vf_ccs_init_late
>> xe_vf_ccs xe_sriov_vf_ccs_migration_bb_needed
>> gt_vf xe_gt_sriov_vf_guc_versions
>> xe_vf vf_disable_migration
>>
>> or after for_each_gt/xe_gt_init_early loop
>>
>> xe xe_device_probe
>> xe_vf xe_sriov_vf_check_migration
>> xe_vf xe_sriov_vf_migration_supported
>> xe_vf_ccs xe_sriov_vf_ccs_init_late
>> xe_vf_ccs xe_sriov_vf_ccs_migration_bb_needed
>> gt_vf xe_gt_sriov_vf_guc_versions
>> xe_vf vf_disable_migration
>>
>> or just make it as part of the xe_sriov_vf_ccs_init()
>> since before that point CCS migration is not working either
>
> The check can be done later than where I put it; but it needs to be before IRQs are enabled. Both kinds of these are enabled in `xe_gt_init()`:
>
> MEMIRQs in gt_init_with_gt_forcewake->xe_uc_init->xe_guc_enable_communication
>
> MMIO IRQs in gt_init_with_gt_forcewake->xe_irq_enable_hwe
>
>
> The `xe_sriov_vf_ccs_init` is currently called after `xe_gt_init`. I'm not completely sure if this is correct placement .. it might be, if there are no CCS metadata set at that point.
>
> GuC should have no problem assisting to migration without CCS metadata transfer, so that placement could be ok.
>
> But that's definitely too late for figuring out whether we support migration at all.
>
> So this eliminates the `xe_sriov_vf_init_late` and `xe_sriov_vf_ccs_init` options.
>
> For the 2nd option - this can be done. But does it really make sense to put a single-platform workaround check directly in `xe_device_probe`?
>
> I can do this - if you consider this option acceptable. Though personally I see no reason for trying to rip it out of `xe_gt_init_early`. It can be easily turned from per-gt check to single GT check (by checking only the primary GuC which will actually be responsible for scheduling the CCS save/restore BB execution), but that gives an option rather than a reason.
>
> Any place between `xe_gt_init_early()` and `xe_gt_init()` is ok for me.
>
on second thought, shouldn't we make GuC ABI check on the PF instead ?
then on the VF we could assume that minimal GuC ABI version is guaranteed
and just have simple assert near the H2G that we expect to be available ?
>
>>> err = xe_gt_sriov_vf_query_config(gt);
>>> if (err)
>>> return err;
>>> diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.c b/drivers/gpu/drm/xe/xe_sriov_vf.c
>>> index 911d5720917b..5fb042c05112 100644
>>> --- a/drivers/gpu/drm/xe/xe_sriov_vf.c
>>> +++ b/drivers/gpu/drm/xe/xe_sriov_vf.c
>>> @@ -163,16 +163,6 @@ static void vf_migration_init_early(struct xe_device *xe)
>>> return vf_disable_migration(xe, "requires gfx version >= 20, but only %u found",
>>> GRAPHICS_VER(xe));
>>>
>>> - if (!IS_DGFX(xe)) {
>>> - struct xe_uc_fw_version guc_version;
>>> -
>>> - xe_gt_sriov_vf_guc_versions(xe_device_get_gt(xe, 0), NULL, &guc_version);
>>> - if (MAKE_GUC_VER_STRUCT(guc_version) < MAKE_GUC_VER(1, 23, 0))
>>> - return vf_disable_migration(xe,
>>> - "CCS migration requires GuC ABI >= 1.23 but only %u.%u found",
>>> - guc_version.major, guc_version.minor);
>>> - }
>>> -
>>> xe->sriov.vf.migration.enabled = true;
>>> xe_sriov_dbg(xe, "migration support enabled\n");
>> this would be non-reliable, as we might still disable migration later on
>>
>> so we should either remove it completely (assuming its "enabled" until explicitly disabled)
>> or reverse the logic and use this flag instead:
>>
>> xe->sriov.vf.migration.disabled
>
> will remove, it doesn't make sense here.
>
> -Tomasz
>
>>> }
^ permalink raw reply [flat|nested] 18+ messages in thread
* [PATCH v3 3/5] drm/xe/vf: Skip fixups on VF migration before getting GGTT info
2025-10-16 12:05 [PATCH v3 0/5] drm/xe/vf: Minor fixes to post-migration recovery Tomasz Lis
2025-10-16 12:05 ` [PATCH v3 1/5] drm/xe/vf: Helper for telling whether CCS migration BBs are needed Tomasz Lis
2025-10-16 12:05 ` [PATCH v3 2/5] drm/xe/vf: Fix GuC FW check for VF migration support Tomasz Lis
@ 2025-10-16 12:05 ` Tomasz Lis
2025-10-16 22:20 ` Michal Wajdeczko
2025-10-16 12:05 ` [PATCH v3 4/5] drm/xe: Assert that VF will never use fixed placement of BOs Tomasz Lis
` (4 subsequent siblings)
7 siblings, 1 reply; 18+ messages in thread
From: Tomasz Lis @ 2025-10-16 12:05 UTC (permalink / raw)
To: intel-xe
Cc: Michał Winiarski, Michał Wajdeczko,
Piotr Piórkowski, Matthew Brost, Satyanarayana K V P
The GuC RESFIX state should be achievable only after a successful
handshake. If VF KMD has no GGTT configuration yet and we still got
into RESFIX state, then either we're dealing with unclean initial
state due to unusual actions before probe, or the migration
happened while xe init (started by probe) was running.
In 1st case (VF migration before probe), we should just skip migration.
Init procedure will ensure exit from RESFIX state as it starts GuC
handshake with a reset.
In 2nd case (VF migration during xe init), the migration procedure
should execute normally if GGTT configuration was already acquired
from GuC, and can be skipped if it was not acquired.
This solution will avoid crashes due to the VF migration running
on non-initialized xe sub-structures. But it is not enough to allow
fully reliable migration during driver probe. In particular, the
situation where the probe might not end successfully, is:
* The VF is paused and migrated after GuC reset (vf_bootstrap) but
before config is acquired (vf_query_config). In such case, GuC may
remain in RESFIX state, leading to timeouting requests.
Signed-off-by: Tomasz Lis <tomasz.lis@intel.com>
---
drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
index 34c68de6e2f3..bb0b71a47125 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
@@ -1149,6 +1149,12 @@ void xe_gt_sriov_vf_print_version(struct xe_gt *gt, struct drm_printer *p)
pf_version->major, pf_version->minor);
}
+static bool vf_ggtt_queried(struct xe_tile *tile)
+{
+ guard(mutex)(&tile->mem.ggtt->lock);
+ return xe_tile_sriov_vf_ggtt(tile) != 0;
+}
+
static bool vf_post_migration_shutdown(struct xe_gt *gt)
{
struct xe_device *xe = gt_to_xe(gt);
@@ -1260,6 +1266,11 @@ static void vf_post_migration_recovery(struct xe_gt *gt)
xe_gt_sriov_dbg(gt, "migration recovery in progress\n");
xe_pm_runtime_get(xe);
+
+ /* If during init and before GGTT configuration, skip the procedure. */
+ if (!vf_ggtt_queried(gt_to_tile(gt)))
+ goto skip;
+
retry = vf_post_migration_shutdown(gt);
if (retry)
goto queue;
@@ -1282,6 +1293,7 @@ static void vf_post_migration_recovery(struct xe_gt *gt)
vf_post_migration_kickstart(gt);
+skip:
xe_pm_runtime_put(xe);
xe_gt_sriov_notice(gt, "migration recovery ended\n");
return;
--
2.25.1
^ permalink raw reply related [flat|nested] 18+ messages in thread* Re: [PATCH v3 3/5] drm/xe/vf: Skip fixups on VF migration before getting GGTT info
2025-10-16 12:05 ` [PATCH v3 3/5] drm/xe/vf: Skip fixups on VF migration before getting GGTT info Tomasz Lis
@ 2025-10-16 22:20 ` Michal Wajdeczko
2025-10-20 19:30 ` Lis, Tomasz
0 siblings, 1 reply; 18+ messages in thread
From: Michal Wajdeczko @ 2025-10-16 22:20 UTC (permalink / raw)
To: Tomasz Lis, intel-xe
Cc: Michał Winiarski, Piotr Piórkowski, Matthew Brost,
Satyanarayana K V P
On 10/16/2025 2:05 PM, Tomasz Lis wrote:
> The GuC RESFIX state should be achievable only after a successful
> handshake. If VF KMD has no GGTT configuration yet and we still got
> into RESFIX state, then either we're dealing with unclean initial
> state due to unusual actions before probe, or the migration
> happened while xe init (started by probe) was running.
>
> In 1st case (VF migration before probe), we should just skip migration.
> Init procedure will ensure exit from RESFIX state as it starts GuC
> handshake with a reset.
>
> In 2nd case (VF migration during xe init), the migration procedure
> should execute normally if GGTT configuration was already acquired
> from GuC, and can be skipped if it was not acquired.
we initiate recovery as part of the MEMIRQ handling
but to get MEMIRQ interrupt from the GuC we need to setup it first
to setup MEMIRQ vector we need to obtain GGTT data from GuC
only the we can register this MEMIRQ vector in GuC
so valid GGTT data seems to be hard prerequisite for this scenario
thus vf_ggtt_queried() should be always true, no?
>
> This solution will avoid crashes due to the VF migration running
> on non-initialized xe sub-structures. But it is not enough to allow
> fully reliable migration during driver probe. In particular, the
> situation where the probe might not end successfully, is:
>
> * The VF is paused and migrated after GuC reset (vf_bootstrap) but
> before config is acquired (vf_query_config). In such case, GuC may
> remain in RESFIX state, leading to timeouting requests.
>
> Signed-off-by: Tomasz Lis <tomasz.lis@intel.com>
> ---
> drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> index 34c68de6e2f3..bb0b71a47125 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> @@ -1149,6 +1149,12 @@ void xe_gt_sriov_vf_print_version(struct xe_gt *gt, struct drm_printer *p)
> pf_version->major, pf_version->minor);
> }
>
> +static bool vf_ggtt_queried(struct xe_tile *tile)
> +{
> + guard(mutex)(&tile->mem.ggtt->lock);
> + return xe_tile_sriov_vf_ggtt(tile) != 0;
> +}
> +
> static bool vf_post_migration_shutdown(struct xe_gt *gt)
> {
> struct xe_device *xe = gt_to_xe(gt);
> @@ -1260,6 +1266,11 @@ static void vf_post_migration_recovery(struct xe_gt *gt)
> xe_gt_sriov_dbg(gt, "migration recovery in progress\n");
>
> xe_pm_runtime_get(xe);
> +
> + /* If during init and before GGTT configuration, skip the procedure. */
> + if (!vf_ggtt_queried(gt_to_tile(gt)))
> + goto skip;
> +
> retry = vf_post_migration_shutdown(gt);
> if (retry)
> goto queue;
> @@ -1282,6 +1293,7 @@ static void vf_post_migration_recovery(struct xe_gt *gt)
>
> vf_post_migration_kickstart(gt);
>
> +skip:
> xe_pm_runtime_put(xe);
> xe_gt_sriov_notice(gt, "migration recovery ended\n");
> return;
^ permalink raw reply [flat|nested] 18+ messages in thread* Re: [PATCH v3 3/5] drm/xe/vf: Skip fixups on VF migration before getting GGTT info
2025-10-16 22:20 ` Michal Wajdeczko
@ 2025-10-20 19:30 ` Lis, Tomasz
0 siblings, 0 replies; 18+ messages in thread
From: Lis, Tomasz @ 2025-10-20 19:30 UTC (permalink / raw)
To: Michal Wajdeczko, intel-xe
Cc: Michał Winiarski, Piotr Piórkowski, Matthew Brost,
Satyanarayana K V P
On 10/17/2025 12:20 AM, Michal Wajdeczko wrote:
>
> On 10/16/2025 2:05 PM, Tomasz Lis wrote:
>> The GuC RESFIX state should be achievable only after a successful
>> handshake. If VF KMD has no GGTT configuration yet and we still got
>> into RESFIX state, then either we're dealing with unclean initial
>> state due to unusual actions before probe, or the migration
>> happened while xe init (started by probe) was running.
>>
>> In 1st case (VF migration before probe), we should just skip migration.
>> Init procedure will ensure exit from RESFIX state as it starts GuC
>> handshake with a reset.
>>
>> In 2nd case (VF migration during xe init), the migration procedure
>> should execute normally if GGTT configuration was already acquired
>> from GuC, and can be skipped if it was not acquired.
> we initiate recovery as part of the MEMIRQ handling
>
> but to get MEMIRQ interrupt from the GuC we need to setup it first
> to setup MEMIRQ vector we need to obtain GGTT data from GuC
> only the we can register this MEMIRQ vector in GuC
>
> so valid GGTT data seems to be hard prerequisite for this scenario
>
> thus vf_ggtt_queried() should be always true, no?
True. Patch makes little sense. Will discard.
-Tomasz
>
>> This solution will avoid crashes due to the VF migration running
>> on non-initialized xe sub-structures. But it is not enough to allow
>> fully reliable migration during driver probe. In particular, the
>> situation where the probe might not end successfully, is:
>>
>> * The VF is paused and migrated after GuC reset (vf_bootstrap) but
>> before config is acquired (vf_query_config). In such case, GuC may
>> remain in RESFIX state, leading to timeouting requests.
>>
>> Signed-off-by: Tomasz Lis <tomasz.lis@intel.com>
>> ---
>> drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 12 ++++++++++++
>> 1 file changed, 12 insertions(+)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
>> index 34c68de6e2f3..bb0b71a47125 100644
>> --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
>> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
>> @@ -1149,6 +1149,12 @@ void xe_gt_sriov_vf_print_version(struct xe_gt *gt, struct drm_printer *p)
>> pf_version->major, pf_version->minor);
>> }
>>
>> +static bool vf_ggtt_queried(struct xe_tile *tile)
>> +{
>> + guard(mutex)(&tile->mem.ggtt->lock);
>> + return xe_tile_sriov_vf_ggtt(tile) != 0;
>> +}
>> +
>> static bool vf_post_migration_shutdown(struct xe_gt *gt)
>> {
>> struct xe_device *xe = gt_to_xe(gt);
>> @@ -1260,6 +1266,11 @@ static void vf_post_migration_recovery(struct xe_gt *gt)
>> xe_gt_sriov_dbg(gt, "migration recovery in progress\n");
>>
>> xe_pm_runtime_get(xe);
>> +
>> + /* If during init and before GGTT configuration, skip the procedure. */
>> + if (!vf_ggtt_queried(gt_to_tile(gt)))
>> + goto skip;
>> +
>> retry = vf_post_migration_shutdown(gt);
>> if (retry)
>> goto queue;
>> @@ -1282,6 +1293,7 @@ static void vf_post_migration_recovery(struct xe_gt *gt)
>>
>> vf_post_migration_kickstart(gt);
>>
>> +skip:
>> xe_pm_runtime_put(xe);
>> xe_gt_sriov_notice(gt, "migration recovery ended\n");
>> return;
^ permalink raw reply [flat|nested] 18+ messages in thread
* [PATCH v3 4/5] drm/xe: Assert that VF will never use fixed placement of BOs
2025-10-16 12:05 [PATCH v3 0/5] drm/xe/vf: Minor fixes to post-migration recovery Tomasz Lis
` (2 preceding siblings ...)
2025-10-16 12:05 ` [PATCH v3 3/5] drm/xe/vf: Skip fixups on VF migration before getting GGTT info Tomasz Lis
@ 2025-10-16 12:05 ` Tomasz Lis
2025-10-16 12:05 ` [PATCH v3 5/5] drm/xe/vf: Do not disable VF migration on ATS-M Tomasz Lis
` (3 subsequent siblings)
7 siblings, 0 replies; 18+ messages in thread
From: Tomasz Lis @ 2025-10-16 12:05 UTC (permalink / raw)
To: intel-xe
Cc: Michał Winiarski, Michał Wajdeczko,
Piotr Piórkowski, Matthew Brost, Satyanarayana K V P
Most BOs do not care at which offset they will be accessed within
GGTT or PPGTT. The few which do care, should be only created
on PF, and mapped within GGTT. On VFs, mapping at fixed offset
would be problematic, as each VF is granted access to a range of
GGTT address space.
So, since fixed addresses of GGTT mapping can only be used on PF,
we can add an assert which makes sure no attempt of fixed placement
will happen for a driver probed on a VF.
The assert will also ensure that VF migration can be properly
performed without a need for special handling of the fixed placement
addresses.
Signed-off-by: Tomasz Lis <tomasz.lis@intel.com>
---
drivers/gpu/drm/xe/xe_bo.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_bo.c b/drivers/gpu/drm/xe/xe_bo.c
index 7b6502081873..8e826a4aa574 100644
--- a/drivers/gpu/drm/xe/xe_bo.c
+++ b/drivers/gpu/drm/xe/xe_bo.c
@@ -2259,6 +2259,12 @@ static int __xe_bo_fixed_placement(struct xe_device *xe,
struct ttm_place *place = bo->placements;
u32 vram_flag, vram_stolen_flags;
+ /*
+ * to allow fixed placement in GGTT of a VF, post-migration fixups
+ * would have to include shifting the page ranges
+ */
+ xe_assert(xe, !IS_SRIOV_VF(xe) || !(bo->flags & XE_BO_FLAG_GGTT));
+
if (flags & (XE_BO_FLAG_USER | XE_BO_FLAG_SYSTEM))
return -EINVAL;
--
2.25.1
^ permalink raw reply related [flat|nested] 18+ messages in thread* [PATCH v3 5/5] drm/xe/vf: Do not disable VF migration on ATS-M
2025-10-16 12:05 [PATCH v3 0/5] drm/xe/vf: Minor fixes to post-migration recovery Tomasz Lis
` (3 preceding siblings ...)
2025-10-16 12:05 ` [PATCH v3 4/5] drm/xe: Assert that VF will never use fixed placement of BOs Tomasz Lis
@ 2025-10-16 12:05 ` Tomasz Lis
2025-10-16 22:25 ` Michal Wajdeczko
2025-10-16 12:11 ` ✓ CI.KUnit: success for drm/xe/vf: Minor fixes to post-migration recovery (rev3) Patchwork
` (2 subsequent siblings)
7 siblings, 1 reply; 18+ messages in thread
From: Tomasz Lis @ 2025-10-16 12:05 UTC (permalink / raw)
To: intel-xe
Cc: Michał Winiarski, Michał Wajdeczko,
Piotr Piórkowski, Matthew Brost, Satyanarayana K V P
The ATS-M does support VF migration, and it has graphics ver below
the currently allowed range. Experimental support of this platform
should therefore be available.
This change allows experimental VF migration support on ATS-M. It
is also explicitly not allowing ADL, by adding condition on MEMIRQ.
Supporting VF migration through MMIO interrupts would require
some special handling in order to achieve reliability.
v2: Add MEMIRQ condition
Signed-off-by: Tomasz Lis <tomasz.lis@intel.com>
---
drivers/gpu/drm/xe/xe_sriov_vf.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.c b/drivers/gpu/drm/xe/xe_sriov_vf.c
index 5fb042c05112..fb2b3d41c610 100644
--- a/drivers/gpu/drm/xe/xe_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_sriov_vf.c
@@ -159,10 +159,13 @@ static void vf_migration_init_early(struct xe_device *xe)
return vf_disable_migration(xe,
"experimental feature not available on production builds");
- if (GRAPHICS_VER(xe) < 20)
- return vf_disable_migration(xe, "requires gfx version >= 20, but only %u found",
+ if (GRAPHICS_VER(xe) < 12)
+ return vf_disable_migration(xe, "requires gfx version >= 12, but only %u found",
GRAPHICS_VER(xe));
+ if (!xe_device_has_memirq(xe))
+ return vf_disable_migration(xe, "requires memory-based IRQ support");
+
xe->sriov.vf.migration.enabled = true;
xe_sriov_dbg(xe, "migration support enabled\n");
}
--
2.25.1
^ permalink raw reply related [flat|nested] 18+ messages in thread* Re: [PATCH v3 5/5] drm/xe/vf: Do not disable VF migration on ATS-M
2025-10-16 12:05 ` [PATCH v3 5/5] drm/xe/vf: Do not disable VF migration on ATS-M Tomasz Lis
@ 2025-10-16 22:25 ` Michal Wajdeczko
2025-10-20 19:22 ` Lis, Tomasz
0 siblings, 1 reply; 18+ messages in thread
From: Michal Wajdeczko @ 2025-10-16 22:25 UTC (permalink / raw)
To: Tomasz Lis, intel-xe
Cc: Michał Winiarski, Piotr Piórkowski, Matthew Brost,
Satyanarayana K V P
On 10/16/2025 2:05 PM, Tomasz Lis wrote:
> The ATS-M does support VF migration, and it has graphics ver below
> the currently allowed range. Experimental support of this platform
> should therefore be available.
>
> This change allows experimental VF migration support on ATS-M. It
> is also explicitly not allowing ADL, by adding condition on MEMIRQ.
> Supporting VF migration through MMIO interrupts would require
> some special handling in order to achieve reliability.
>
> v2: Add MEMIRQ condition
>
> Signed-off-by: Tomasz Lis <tomasz.lis@intel.com>
> ---
> drivers/gpu/drm/xe/xe_sriov_vf.c | 7 +++++--
> 1 file changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.c b/drivers/gpu/drm/xe/xe_sriov_vf.c
> index 5fb042c05112..fb2b3d41c610 100644
> --- a/drivers/gpu/drm/xe/xe_sriov_vf.c
> +++ b/drivers/gpu/drm/xe/xe_sriov_vf.c
> @@ -159,10 +159,13 @@ static void vf_migration_init_early(struct xe_device *xe)
> return vf_disable_migration(xe,
> "experimental feature not available on production builds");
>
> - if (GRAPHICS_VER(xe) < 20)
> - return vf_disable_migration(xe, "requires gfx version >= 20, but only %u found",
> + if (GRAPHICS_VER(xe) < 12)
> + return vf_disable_migration(xe, "requires gfx version >= 12, but only %u found",
> GRAPHICS_VER(xe));
maybe just drop it completely and only rely on memirq support ?
it's available from 12.50, see
static inline bool xe_device_has_memirq(struct xe_device *xe)
{
return GRAPHICS_VERx100(xe) >= 1250;
}
> > + if (!xe_device_has_memirq(xe))
> + return vf_disable_migration(xe, "requires memory-based IRQ support");
> +
> xe->sriov.vf.migration.enabled = true;
> xe_sriov_dbg(xe, "migration support enabled\n");
> }
^ permalink raw reply [flat|nested] 18+ messages in thread* Re: [PATCH v3 5/5] drm/xe/vf: Do not disable VF migration on ATS-M
2025-10-16 22:25 ` Michal Wajdeczko
@ 2025-10-20 19:22 ` Lis, Tomasz
0 siblings, 0 replies; 18+ messages in thread
From: Lis, Tomasz @ 2025-10-20 19:22 UTC (permalink / raw)
To: Michal Wajdeczko, intel-xe
Cc: Michał Winiarski, Piotr Piórkowski, Matthew Brost,
Satyanarayana K V P
On 10/17/2025 12:25 AM, Michal Wajdeczko wrote:
>
> On 10/16/2025 2:05 PM, Tomasz Lis wrote:
>> The ATS-M does support VF migration, and it has graphics ver below
>> the currently allowed range. Experimental support of this platform
>> should therefore be available.
>>
>> This change allows experimental VF migration support on ATS-M. It
>> is also explicitly not allowing ADL, by adding condition on MEMIRQ.
>> Supporting VF migration through MMIO interrupts would require
>> some special handling in order to achieve reliability.
>>
>> v2: Add MEMIRQ condition
>>
>> Signed-off-by: Tomasz Lis <tomasz.lis@intel.com>
>> ---
>> drivers/gpu/drm/xe/xe_sriov_vf.c | 7 +++++--
>> 1 file changed, 5 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.c b/drivers/gpu/drm/xe/xe_sriov_vf.c
>> index 5fb042c05112..fb2b3d41c610 100644
>> --- a/drivers/gpu/drm/xe/xe_sriov_vf.c
>> +++ b/drivers/gpu/drm/xe/xe_sriov_vf.c
>> @@ -159,10 +159,13 @@ static void vf_migration_init_early(struct xe_device *xe)
>> return vf_disable_migration(xe,
>> "experimental feature not available on production builds");
>>
>> - if (GRAPHICS_VER(xe) < 20)
>> - return vf_disable_migration(xe, "requires gfx version >= 20, but only %u found",
>> + if (GRAPHICS_VER(xe) < 12)
>> + return vf_disable_migration(xe, "requires gfx version >= 12, but only %u found",
>> GRAPHICS_VER(xe));
> maybe just drop it completely and only rely on memirq support ?
>
> it's available from 12.50, see
>
> static inline bool xe_device_has_memirq(struct xe_device *xe)
> {
> return GRAPHICS_VERx100(xe) >= 1250;
> }
If/when support on non-MEMIRQ platforms will be added, the condition
will be removed.
It's unlikely the need for replacement condition will be remembered at
that point.
Removing the double check would be creating foundations for future mistake.
-Tomasz
>> > + if (!xe_device_has_memirq(xe))
>> + return vf_disable_migration(xe, "requires memory-based IRQ support");
>> +
>> xe->sriov.vf.migration.enabled = true;
>> xe_sriov_dbg(xe, "migration support enabled\n");
>> }
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✓ CI.KUnit: success for drm/xe/vf: Minor fixes to post-migration recovery (rev3)
2025-10-16 12:05 [PATCH v3 0/5] drm/xe/vf: Minor fixes to post-migration recovery Tomasz Lis
` (4 preceding siblings ...)
2025-10-16 12:05 ` [PATCH v3 5/5] drm/xe/vf: Do not disable VF migration on ATS-M Tomasz Lis
@ 2025-10-16 12:11 ` Patchwork
2025-10-16 12:57 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-17 8:23 ` ✗ Xe.CI.Full: failure " Patchwork
7 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2025-10-16 12:11 UTC (permalink / raw)
To: Tomasz Lis; +Cc: intel-xe
== Series Details ==
Series: drm/xe/vf: Minor fixes to post-migration recovery (rev3)
URL : https://patchwork.freedesktop.org/series/155865/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[12:10:25] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:10:30] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:11:00] Starting KUnit Kernel (1/1)...
[12:11:00] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:11:00] ================== guc_buf (11 subtests) ===================
[12:11:00] [PASSED] test_smallest
[12:11:00] [PASSED] test_largest
[12:11:00] [PASSED] test_granular
[12:11:00] [PASSED] test_unique
[12:11:00] [PASSED] test_overlap
[12:11:00] [PASSED] test_reusable
[12:11:00] [PASSED] test_too_big
[12:11:00] [PASSED] test_flush
[12:11:00] [PASSED] test_lookup
[12:11:00] [PASSED] test_data
[12:11:00] [PASSED] test_class
[12:11:00] ===================== [PASSED] guc_buf =====================
[12:11:00] =================== guc_dbm (7 subtests) ===================
[12:11:00] [PASSED] test_empty
[12:11:00] [PASSED] test_default
[12:11:00] ======================== test_size ========================
[12:11:00] [PASSED] 4
[12:11:00] [PASSED] 8
[12:11:00] [PASSED] 32
[12:11:00] [PASSED] 256
[12:11:00] ==================== [PASSED] test_size ====================
[12:11:00] ======================= test_reuse ========================
[12:11:00] [PASSED] 4
[12:11:00] [PASSED] 8
[12:11:00] [PASSED] 32
[12:11:00] [PASSED] 256
[12:11:00] =================== [PASSED] test_reuse ====================
[12:11:00] =================== test_range_overlap ====================
[12:11:00] [PASSED] 4
[12:11:00] [PASSED] 8
[12:11:00] [PASSED] 32
[12:11:00] [PASSED] 256
[12:11:00] =============== [PASSED] test_range_overlap ================
[12:11:00] =================== test_range_compact ====================
[12:11:00] [PASSED] 4
[12:11:00] [PASSED] 8
[12:11:00] [PASSED] 32
[12:11:00] [PASSED] 256
[12:11:00] =============== [PASSED] test_range_compact ================
[12:11:00] ==================== test_range_spare =====================
[12:11:00] [PASSED] 4
[12:11:00] [PASSED] 8
[12:11:00] [PASSED] 32
[12:11:00] [PASSED] 256
[12:11:00] ================ [PASSED] test_range_spare =================
[12:11:00] ===================== [PASSED] guc_dbm =====================
[12:11:00] =================== guc_idm (6 subtests) ===================
[12:11:00] [PASSED] bad_init
[12:11:00] [PASSED] no_init
[12:11:00] [PASSED] init_fini
[12:11:00] [PASSED] check_used
[12:11:00] [PASSED] check_quota
[12:11:00] [PASSED] check_all
[12:11:00] ===================== [PASSED] guc_idm =====================
[12:11:00] ================== no_relay (3 subtests) ===================
[12:11:00] [PASSED] xe_drops_guc2pf_if_not_ready
[12:11:00] [PASSED] xe_drops_guc2vf_if_not_ready
[12:11:00] [PASSED] xe_rejects_send_if_not_ready
[12:11:00] ==================== [PASSED] no_relay =====================
[12:11:00] ================== pf_relay (14 subtests) ==================
[12:11:00] [PASSED] pf_rejects_guc2pf_too_short
[12:11:00] [PASSED] pf_rejects_guc2pf_too_long
[12:11:00] [PASSED] pf_rejects_guc2pf_no_payload
[12:11:00] [PASSED] pf_fails_no_payload
[12:11:00] [PASSED] pf_fails_bad_origin
[12:11:00] [PASSED] pf_fails_bad_type
[12:11:00] [PASSED] pf_txn_reports_error
[12:11:00] [PASSED] pf_txn_sends_pf2guc
[12:11:00] [PASSED] pf_sends_pf2guc
[12:11:00] [SKIPPED] pf_loopback_nop
[12:11:00] [SKIPPED] pf_loopback_echo
[12:11:00] [SKIPPED] pf_loopback_fail
[12:11:00] [SKIPPED] pf_loopback_busy
[12:11:00] [SKIPPED] pf_loopback_retry
[12:11:00] ==================== [PASSED] pf_relay =====================
[12:11:00] ================== vf_relay (3 subtests) ===================
[12:11:00] [PASSED] vf_rejects_guc2vf_too_short
[12:11:00] [PASSED] vf_rejects_guc2vf_too_long
[12:11:00] [PASSED] vf_rejects_guc2vf_no_payload
[12:11:00] ==================== [PASSED] vf_relay =====================
[12:11:00] ===================== lmtt (1 subtest) =====================
[12:11:00] ======================== test_ops =========================
[12:11:00] [PASSED] 2-level
[12:11:00] [PASSED] multi-level
[12:11:00] ==================== [PASSED] test_ops =====================
[12:11:00] ====================== [PASSED] lmtt =======================
[12:11:00] ================= pf_service (11 subtests) =================
[12:11:00] [PASSED] pf_negotiate_any
[12:11:00] [PASSED] pf_negotiate_base_match
[12:11:00] [PASSED] pf_negotiate_base_newer
[12:11:00] [PASSED] pf_negotiate_base_next
[12:11:00] [SKIPPED] pf_negotiate_base_older
[12:11:00] [PASSED] pf_negotiate_base_prev
[12:11:00] [PASSED] pf_negotiate_latest_match
[12:11:00] [PASSED] pf_negotiate_latest_newer
[12:11:00] [PASSED] pf_negotiate_latest_next
[12:11:00] [SKIPPED] pf_negotiate_latest_older
[12:11:00] [SKIPPED] pf_negotiate_latest_prev
[12:11:00] =================== [PASSED] pf_service ====================
[12:11:00] ================= xe_guc_g2g (2 subtests) ==================
[12:11:00] ============== xe_live_guc_g2g_kunit_default ==============
[12:11:00] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[12:11:00] ============== xe_live_guc_g2g_kunit_allmem ===============
[12:11:00] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[12:11:00] =================== [SKIPPED] xe_guc_g2g ===================
[12:11:00] =================== xe_mocs (2 subtests) ===================
[12:11:00] ================ xe_live_mocs_kernel_kunit ================
[12:11:00] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[12:11:00] ================ xe_live_mocs_reset_kunit =================
[12:11:00] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[12:11:00] ==================== [SKIPPED] xe_mocs =====================
[12:11:00] ================= xe_migrate (2 subtests) ==================
[12:11:00] ================= xe_migrate_sanity_kunit =================
[12:11:00] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[12:11:00] ================== xe_validate_ccs_kunit ==================
[12:11:00] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[12:11:00] =================== [SKIPPED] xe_migrate ===================
[12:11:00] ================== xe_dma_buf (1 subtest) ==================
[12:11:00] ==================== xe_dma_buf_kunit =====================
[12:11:00] ================ [SKIPPED] xe_dma_buf_kunit ================
[12:11:00] =================== [SKIPPED] xe_dma_buf ===================
[12:11:00] ================= xe_bo_shrink (1 subtest) =================
[12:11:00] =================== xe_bo_shrink_kunit ====================
[12:11:00] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[12:11:00] ================== [SKIPPED] xe_bo_shrink ==================
[12:11:00] ==================== xe_bo (2 subtests) ====================
[12:11:00] ================== xe_ccs_migrate_kunit ===================
[12:11:00] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[12:11:00] ==================== xe_bo_evict_kunit ====================
[12:11:00] =============== [SKIPPED] xe_bo_evict_kunit ================
[12:11:00] ===================== [SKIPPED] xe_bo ======================
[12:11:00] ==================== args (11 subtests) ====================
[12:11:00] [PASSED] count_args_test
[12:11:00] [PASSED] call_args_example
[12:11:00] [PASSED] call_args_test
[12:11:00] [PASSED] drop_first_arg_example
[12:11:00] [PASSED] drop_first_arg_test
[12:11:00] [PASSED] first_arg_example
[12:11:00] [PASSED] first_arg_test
[12:11:00] [PASSED] last_arg_example
[12:11:00] [PASSED] last_arg_test
[12:11:00] [PASSED] pick_arg_example
[12:11:00] [PASSED] sep_comma_example
[12:11:00] ====================== [PASSED] args =======================
[12:11:00] =================== xe_pci (3 subtests) ====================
[12:11:00] ==================== check_graphics_ip ====================
[12:11:00] [PASSED] 12.00 Xe_LP
[12:11:00] [PASSED] 12.10 Xe_LP+
[12:11:00] [PASSED] 12.55 Xe_HPG
[12:11:00] [PASSED] 12.60 Xe_HPC
[12:11:00] [PASSED] 12.70 Xe_LPG
[12:11:00] [PASSED] 12.71 Xe_LPG
[12:11:00] [PASSED] 12.74 Xe_LPG+
[12:11:00] [PASSED] 20.01 Xe2_HPG
[12:11:00] [PASSED] 20.02 Xe2_HPG
[12:11:00] [PASSED] 20.04 Xe2_LPG
[12:11:00] [PASSED] 30.00 Xe3_LPG
[12:11:00] [PASSED] 30.01 Xe3_LPG
[12:11:00] [PASSED] 30.03 Xe3_LPG
[12:11:00] ================ [PASSED] check_graphics_ip ================
[12:11:00] ===================== check_media_ip ======================
[12:11:00] [PASSED] 12.00 Xe_M
[12:11:00] [PASSED] 12.55 Xe_HPM
[12:11:00] [PASSED] 13.00 Xe_LPM+
[12:11:00] [PASSED] 13.01 Xe2_HPM
[12:11:00] [PASSED] 20.00 Xe2_LPM
[12:11:00] [PASSED] 30.00 Xe3_LPM
[12:11:00] [PASSED] 30.02 Xe3_LPM
[12:11:00] ================= [PASSED] check_media_ip ==================
[12:11:00] ================= check_platform_gt_count =================
[12:11:00] [PASSED] 0x9A60 (TIGERLAKE)
[12:11:00] [PASSED] 0x9A68 (TIGERLAKE)
[12:11:00] [PASSED] 0x9A70 (TIGERLAKE)
[12:11:00] [PASSED] 0x9A40 (TIGERLAKE)
[12:11:00] [PASSED] 0x9A49 (TIGERLAKE)
[12:11:00] [PASSED] 0x9A59 (TIGERLAKE)
[12:11:00] [PASSED] 0x9A78 (TIGERLAKE)
[12:11:00] [PASSED] 0x9AC0 (TIGERLAKE)
[12:11:00] [PASSED] 0x9AC9 (TIGERLAKE)
[12:11:00] [PASSED] 0x9AD9 (TIGERLAKE)
[12:11:00] [PASSED] 0x9AF8 (TIGERLAKE)
[12:11:00] [PASSED] 0x4C80 (ROCKETLAKE)
[12:11:00] [PASSED] 0x4C8A (ROCKETLAKE)
[12:11:00] [PASSED] 0x4C8B (ROCKETLAKE)
[12:11:00] [PASSED] 0x4C8C (ROCKETLAKE)
[12:11:00] [PASSED] 0x4C90 (ROCKETLAKE)
[12:11:00] [PASSED] 0x4C9A (ROCKETLAKE)
[12:11:00] [PASSED] 0x4680 (ALDERLAKE_S)
[12:11:00] [PASSED] 0x4682 (ALDERLAKE_S)
[12:11:00] [PASSED] 0x4688 (ALDERLAKE_S)
[12:11:00] [PASSED] 0x468A (ALDERLAKE_S)
[12:11:00] [PASSED] 0x468B (ALDERLAKE_S)
[12:11:00] [PASSED] 0x4690 (ALDERLAKE_S)
[12:11:00] [PASSED] 0x4692 (ALDERLAKE_S)
[12:11:00] [PASSED] 0x4693 (ALDERLAKE_S)
[12:11:00] [PASSED] 0x46A0 (ALDERLAKE_P)
[12:11:00] [PASSED] 0x46A1 (ALDERLAKE_P)
[12:11:00] [PASSED] 0x46A2 (ALDERLAKE_P)
[12:11:00] [PASSED] 0x46A3 (ALDERLAKE_P)
[12:11:00] [PASSED] 0x46A6 (ALDERLAKE_P)
[12:11:00] [PASSED] 0x46A8 (ALDERLAKE_P)
[12:11:00] [PASSED] 0x46AA (ALDERLAKE_P)
[12:11:00] [PASSED] 0x462A (ALDERLAKE_P)
[12:11:00] [PASSED] 0x4626 (ALDERLAKE_P)
[12:11:00] [PASSED] 0x4628 (ALDERLAKE_P)
[12:11:00] [PASSED] 0x46B0 (ALDERLAKE_P)
[12:11:00] [PASSED] 0x46B1 (ALDERLAKE_P)
[12:11:00] [PASSED] 0x46B2 (ALDERLAKE_P)
[12:11:00] [PASSED] 0x46B3 (ALDERLAKE_P)
[12:11:00] [PASSED] 0x46C0 (ALDERLAKE_P)
[12:11:00] [PASSED] 0x46C1 (ALDERLAKE_P)
[12:11:00] [PASSED] 0x46C2 (ALDERLAKE_P)
[12:11:00] [PASSED] 0x46C3 (ALDERLAKE_P)
[12:11:00] [PASSED] 0x46D0 (ALDERLAKE_N)
[12:11:00] [PASSED] 0x46D1 (ALDERLAKE_N)
[12:11:00] [PASSED] 0x46D2 (ALDERLAKE_N)
[12:11:00] [PASSED] 0x46D3 (ALDERLAKE_N)
[12:11:00] [PASSED] 0x46D4 (ALDERLAKE_N)
[12:11:00] [PASSED] 0xA721 (ALDERLAKE_P)
[12:11:00] [PASSED] 0xA7A1 (ALDERLAKE_P)
[12:11:00] [PASSED] 0xA7A9 (ALDERLAKE_P)
[12:11:00] [PASSED] 0xA7AC (ALDERLAKE_P)
[12:11:00] [PASSED] 0xA7AD (ALDERLAKE_P)
[12:11:00] [PASSED] 0xA720 (ALDERLAKE_P)
[12:11:00] [PASSED] 0xA7A0 (ALDERLAKE_P)
[12:11:00] [PASSED] 0xA7A8 (ALDERLAKE_P)
[12:11:00] [PASSED] 0xA7AA (ALDERLAKE_P)
[12:11:00] [PASSED] 0xA7AB (ALDERLAKE_P)
[12:11:00] [PASSED] 0xA780 (ALDERLAKE_S)
[12:11:00] [PASSED] 0xA781 (ALDERLAKE_S)
[12:11:00] [PASSED] 0xA782 (ALDERLAKE_S)
[12:11:00] [PASSED] 0xA783 (ALDERLAKE_S)
[12:11:00] [PASSED] 0xA788 (ALDERLAKE_S)
[12:11:00] [PASSED] 0xA789 (ALDERLAKE_S)
[12:11:00] [PASSED] 0xA78A (ALDERLAKE_S)
[12:11:00] [PASSED] 0xA78B (ALDERLAKE_S)
[12:11:00] [PASSED] 0x4905 (DG1)
[12:11:00] [PASSED] 0x4906 (DG1)
[12:11:00] [PASSED] 0x4907 (DG1)
[12:11:00] [PASSED] 0x4908 (DG1)
[12:11:00] [PASSED] 0x4909 (DG1)
[12:11:00] [PASSED] 0x56C0 (DG2)
[12:11:00] [PASSED] 0x56C2 (DG2)
[12:11:00] [PASSED] 0x56C1 (DG2)
[12:11:00] [PASSED] 0x7D51 (METEORLAKE)
[12:11:00] [PASSED] 0x7DD1 (METEORLAKE)
[12:11:00] [PASSED] 0x7D41 (METEORLAKE)
[12:11:00] [PASSED] 0x7D67 (METEORLAKE)
[12:11:00] [PASSED] 0xB640 (METEORLAKE)
[12:11:00] [PASSED] 0x56A0 (DG2)
[12:11:00] [PASSED] 0x56A1 (DG2)
[12:11:00] [PASSED] 0x56A2 (DG2)
[12:11:00] [PASSED] 0x56BE (DG2)
[12:11:00] [PASSED] 0x56BF (DG2)
[12:11:00] [PASSED] 0x5690 (DG2)
[12:11:00] [PASSED] 0x5691 (DG2)
[12:11:00] [PASSED] 0x5692 (DG2)
[12:11:00] [PASSED] 0x56A5 (DG2)
[12:11:00] [PASSED] 0x56A6 (DG2)
[12:11:00] [PASSED] 0x56B0 (DG2)
[12:11:00] [PASSED] 0x56B1 (DG2)
[12:11:00] [PASSED] 0x56BA (DG2)
[12:11:00] [PASSED] 0x56BB (DG2)
[12:11:00] [PASSED] 0x56BC (DG2)
[12:11:00] [PASSED] 0x56BD (DG2)
[12:11:00] [PASSED] 0x5693 (DG2)
[12:11:00] [PASSED] 0x5694 (DG2)
[12:11:00] [PASSED] 0x5695 (DG2)
[12:11:00] [PASSED] 0x56A3 (DG2)
[12:11:00] [PASSED] 0x56A4 (DG2)
[12:11:00] [PASSED] 0x56B2 (DG2)
[12:11:00] [PASSED] 0x56B3 (DG2)
[12:11:00] [PASSED] 0x5696 (DG2)
[12:11:00] [PASSED] 0x5697 (DG2)
[12:11:00] [PASSED] 0xB69 (PVC)
[12:11:00] [PASSED] 0xB6E (PVC)
[12:11:00] [PASSED] 0xBD4 (PVC)
[12:11:00] [PASSED] 0xBD5 (PVC)
[12:11:00] [PASSED] 0xBD6 (PVC)
[12:11:00] [PASSED] 0xBD7 (PVC)
[12:11:00] [PASSED] 0xBD8 (PVC)
[12:11:00] [PASSED] 0xBD9 (PVC)
[12:11:00] [PASSED] 0xBDA (PVC)
[12:11:00] [PASSED] 0xBDB (PVC)
[12:11:00] [PASSED] 0xBE0 (PVC)
[12:11:00] [PASSED] 0xBE1 (PVC)
[12:11:00] [PASSED] 0xBE5 (PVC)
[12:11:00] [PASSED] 0x7D40 (METEORLAKE)
[12:11:00] [PASSED] 0x7D45 (METEORLAKE)
[12:11:00] [PASSED] 0x7D55 (METEORLAKE)
[12:11:00] [PASSED] 0x7D60 (METEORLAKE)
[12:11:00] [PASSED] 0x7DD5 (METEORLAKE)
[12:11:00] [PASSED] 0x6420 (LUNARLAKE)
[12:11:00] [PASSED] 0x64A0 (LUNARLAKE)
[12:11:00] [PASSED] 0x64B0 (LUNARLAKE)
[12:11:00] [PASSED] 0xE202 (BATTLEMAGE)
[12:11:00] [PASSED] 0xE209 (BATTLEMAGE)
[12:11:00] [PASSED] 0xE20B (BATTLEMAGE)
[12:11:00] [PASSED] 0xE20C (BATTLEMAGE)
[12:11:00] [PASSED] 0xE20D (BATTLEMAGE)
[12:11:00] [PASSED] 0xE210 (BATTLEMAGE)
[12:11:00] [PASSED] 0xE211 (BATTLEMAGE)
[12:11:00] [PASSED] 0xE212 (BATTLEMAGE)
[12:11:00] [PASSED] 0xE216 (BATTLEMAGE)
[12:11:00] [PASSED] 0xE220 (BATTLEMAGE)
[12:11:00] [PASSED] 0xE221 (BATTLEMAGE)
[12:11:00] [PASSED] 0xE222 (BATTLEMAGE)
[12:11:00] [PASSED] 0xE223 (BATTLEMAGE)
[12:11:00] [PASSED] 0xB080 (PANTHERLAKE)
[12:11:00] [PASSED] 0xB081 (PANTHERLAKE)
[12:11:00] [PASSED] 0xB082 (PANTHERLAKE)
[12:11:00] [PASSED] 0xB083 (PANTHERLAKE)
[12:11:00] [PASSED] 0xB084 (PANTHERLAKE)
[12:11:00] [PASSED] 0xB085 (PANTHERLAKE)
[12:11:00] [PASSED] 0xB086 (PANTHERLAKE)
[12:11:00] [PASSED] 0xB087 (PANTHERLAKE)
[12:11:00] [PASSED] 0xB08F (PANTHERLAKE)
[12:11:00] [PASSED] 0xB090 (PANTHERLAKE)
[12:11:00] [PASSED] 0xB0A0 (PANTHERLAKE)
[12:11:00] [PASSED] 0xB0B0 (PANTHERLAKE)
[12:11:00] [PASSED] 0xFD80 (PANTHERLAKE)
[12:11:00] [PASSED] 0xFD81 (PANTHERLAKE)
[12:11:00] ============= [PASSED] check_platform_gt_count =============
[12:11:00] ===================== [PASSED] xe_pci ======================
[12:11:00] =================== xe_rtp (2 subtests) ====================
[12:11:00] =============== xe_rtp_process_to_sr_tests ================
[12:11:00] [PASSED] coalesce-same-reg
[12:11:00] [PASSED] no-match-no-add
[12:11:00] [PASSED] match-or
[12:11:00] [PASSED] match-or-xfail
[12:11:00] [PASSED] no-match-no-add-multiple-rules
[12:11:00] [PASSED] two-regs-two-entries
[12:11:00] [PASSED] clr-one-set-other
[12:11:00] [PASSED] set-field
[12:11:00] [PASSED] conflict-duplicate
[12:11:00] [PASSED] conflict-not-disjoint
[12:11:00] [PASSED] conflict-reg-type
[12:11:00] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[12:11:00] ================== xe_rtp_process_tests ===================
[12:11:00] [PASSED] active1
[12:11:00] [PASSED] active2
[12:11:00] [PASSED] active-inactive
[12:11:00] [PASSED] inactive-active
[12:11:00] [PASSED] inactive-1st_or_active-inactive
[12:11:00] [PASSED] inactive-2nd_or_active-inactive
[12:11:00] [PASSED] inactive-last_or_active-inactive
[12:11:00] [PASSED] inactive-no_or_active-inactive
[12:11:00] ============== [PASSED] xe_rtp_process_tests ===============
[12:11:00] ===================== [PASSED] xe_rtp ======================
[12:11:00] ==================== xe_wa (1 subtest) =====================
[12:11:00] ======================== xe_wa_gt =========================
[12:11:00] [PASSED] TIGERLAKE B0
[12:11:00] [PASSED] DG1 A0
[12:11:00] [PASSED] DG1 B0
[12:11:00] [PASSED] ALDERLAKE_S A0
[12:11:00] [PASSED] ALDERLAKE_S B0
stty: 'standard input': Inappropriate ioctl for device
[12:11:00] [PASSED] ALDERLAKE_S C0
[12:11:00] [PASSED] ALDERLAKE_S D0
[12:11:00] [PASSED] ALDERLAKE_P A0
[12:11:00] [PASSED] ALDERLAKE_P B0
[12:11:00] [PASSED] ALDERLAKE_P C0
[12:11:00] [PASSED] ALDERLAKE_S RPLS D0
[12:11:00] [PASSED] ALDERLAKE_P RPLU E0
[12:11:00] [PASSED] DG2 G10 C0
[12:11:00] [PASSED] DG2 G11 B1
[12:11:00] [PASSED] DG2 G12 A1
[12:11:00] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:11:00] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:11:00] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[12:11:00] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[12:11:00] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[12:11:00] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[12:11:00] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[12:11:00] ==================== [PASSED] xe_wa_gt =====================
[12:11:00] ====================== [PASSED] xe_wa ======================
[12:11:00] ============================================================
[12:11:00] Testing complete. Ran 306 tests: passed: 288, skipped: 18
[12:11:00] Elapsed time: 35.180s total, 4.303s configuring, 30.510s building, 0.334s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[12:11:01] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:11:02] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:11:27] Starting KUnit Kernel (1/1)...
[12:11:27] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:11:27] ============ drm_test_pick_cmdline (2 subtests) ============
[12:11:27] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[12:11:27] =============== drm_test_pick_cmdline_named ===============
[12:11:27] [PASSED] NTSC
[12:11:27] [PASSED] NTSC-J
[12:11:27] [PASSED] PAL
[12:11:27] [PASSED] PAL-M
[12:11:27] =========== [PASSED] drm_test_pick_cmdline_named ===========
[12:11:27] ============== [PASSED] drm_test_pick_cmdline ==============
[12:11:27] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[12:11:27] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[12:11:27] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[12:11:27] =========== drm_validate_clone_mode (2 subtests) ===========
[12:11:27] ============== drm_test_check_in_clone_mode ===============
[12:11:27] [PASSED] in_clone_mode
[12:11:27] [PASSED] not_in_clone_mode
[12:11:27] ========== [PASSED] drm_test_check_in_clone_mode ===========
[12:11:27] =============== drm_test_check_valid_clones ===============
[12:11:27] [PASSED] not_in_clone_mode
[12:11:27] [PASSED] valid_clone
[12:11:27] [PASSED] invalid_clone
[12:11:27] =========== [PASSED] drm_test_check_valid_clones ===========
[12:11:27] ============= [PASSED] drm_validate_clone_mode =============
[12:11:27] ============= drm_validate_modeset (1 subtest) =============
[12:11:27] [PASSED] drm_test_check_connector_changed_modeset
[12:11:27] ============== [PASSED] drm_validate_modeset ===============
[12:11:27] ====== drm_test_bridge_get_current_state (2 subtests) ======
[12:11:27] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[12:11:27] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[12:11:27] ======== [PASSED] drm_test_bridge_get_current_state ========
[12:11:27] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[12:11:27] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[12:11:27] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[12:11:27] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[12:11:27] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[12:11:27] ============== drm_bridge_alloc (2 subtests) ===============
[12:11:27] [PASSED] drm_test_drm_bridge_alloc_basic
[12:11:27] [PASSED] drm_test_drm_bridge_alloc_get_put
[12:11:27] ================ [PASSED] drm_bridge_alloc =================
[12:11:27] ================== drm_buddy (8 subtests) ==================
[12:11:27] [PASSED] drm_test_buddy_alloc_limit
[12:11:27] [PASSED] drm_test_buddy_alloc_optimistic
[12:11:27] [PASSED] drm_test_buddy_alloc_pessimistic
[12:11:27] [PASSED] drm_test_buddy_alloc_pathological
[12:11:27] [PASSED] drm_test_buddy_alloc_contiguous
[12:11:27] [PASSED] drm_test_buddy_alloc_clear
[12:11:27] [PASSED] drm_test_buddy_alloc_range_bias
[12:11:27] [PASSED] drm_test_buddy_fragmentation_performance
[12:11:27] ==================== [PASSED] drm_buddy ====================
[12:11:27] ============= drm_cmdline_parser (40 subtests) =============
[12:11:27] [PASSED] drm_test_cmdline_force_d_only
[12:11:27] [PASSED] drm_test_cmdline_force_D_only_dvi
[12:11:27] [PASSED] drm_test_cmdline_force_D_only_hdmi
[12:11:27] [PASSED] drm_test_cmdline_force_D_only_not_digital
[12:11:27] [PASSED] drm_test_cmdline_force_e_only
[12:11:27] [PASSED] drm_test_cmdline_res
[12:11:27] [PASSED] drm_test_cmdline_res_vesa
[12:11:27] [PASSED] drm_test_cmdline_res_vesa_rblank
[12:11:27] [PASSED] drm_test_cmdline_res_rblank
[12:11:27] [PASSED] drm_test_cmdline_res_bpp
[12:11:27] [PASSED] drm_test_cmdline_res_refresh
[12:11:27] [PASSED] drm_test_cmdline_res_bpp_refresh
[12:11:27] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[12:11:27] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[12:11:27] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[12:11:27] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[12:11:27] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[12:11:27] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[12:11:27] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[12:11:27] [PASSED] drm_test_cmdline_res_margins_force_on
[12:11:27] [PASSED] drm_test_cmdline_res_vesa_margins
[12:11:27] [PASSED] drm_test_cmdline_name
[12:11:27] [PASSED] drm_test_cmdline_name_bpp
[12:11:27] [PASSED] drm_test_cmdline_name_option
[12:11:27] [PASSED] drm_test_cmdline_name_bpp_option
[12:11:27] [PASSED] drm_test_cmdline_rotate_0
[12:11:27] [PASSED] drm_test_cmdline_rotate_90
[12:11:27] [PASSED] drm_test_cmdline_rotate_180
[12:11:27] [PASSED] drm_test_cmdline_rotate_270
[12:11:27] [PASSED] drm_test_cmdline_hmirror
[12:11:27] [PASSED] drm_test_cmdline_vmirror
[12:11:27] [PASSED] drm_test_cmdline_margin_options
[12:11:27] [PASSED] drm_test_cmdline_multiple_options
[12:11:27] [PASSED] drm_test_cmdline_bpp_extra_and_option
[12:11:27] [PASSED] drm_test_cmdline_extra_and_option
[12:11:27] [PASSED] drm_test_cmdline_freestanding_options
[12:11:27] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[12:11:27] [PASSED] drm_test_cmdline_panel_orientation
[12:11:27] ================ drm_test_cmdline_invalid =================
[12:11:27] [PASSED] margin_only
[12:11:27] [PASSED] interlace_only
[12:11:27] [PASSED] res_missing_x
[12:11:27] [PASSED] res_missing_y
[12:11:27] [PASSED] res_bad_y
[12:11:27] [PASSED] res_missing_y_bpp
[12:11:27] [PASSED] res_bad_bpp
[12:11:27] [PASSED] res_bad_refresh
[12:11:27] [PASSED] res_bpp_refresh_force_on_off
[12:11:27] [PASSED] res_invalid_mode
[12:11:27] [PASSED] res_bpp_wrong_place_mode
[12:11:27] [PASSED] name_bpp_refresh
[12:11:27] [PASSED] name_refresh
[12:11:27] [PASSED] name_refresh_wrong_mode
[12:11:27] [PASSED] name_refresh_invalid_mode
[12:11:27] [PASSED] rotate_multiple
[12:11:27] [PASSED] rotate_invalid_val
[12:11:27] [PASSED] rotate_truncated
[12:11:27] [PASSED] invalid_option
[12:11:27] [PASSED] invalid_tv_option
[12:11:27] [PASSED] truncated_tv_option
[12:11:27] ============ [PASSED] drm_test_cmdline_invalid =============
[12:11:27] =============== drm_test_cmdline_tv_options ===============
[12:11:27] [PASSED] NTSC
[12:11:27] [PASSED] NTSC_443
[12:11:27] [PASSED] NTSC_J
[12:11:27] [PASSED] PAL
[12:11:27] [PASSED] PAL_M
[12:11:27] [PASSED] PAL_N
[12:11:27] [PASSED] SECAM
[12:11:27] [PASSED] MONO_525
[12:11:27] [PASSED] MONO_625
[12:11:27] =========== [PASSED] drm_test_cmdline_tv_options ===========
[12:11:27] =============== [PASSED] drm_cmdline_parser ================
[12:11:27] ========== drmm_connector_hdmi_init (20 subtests) ==========
[12:11:27] [PASSED] drm_test_connector_hdmi_init_valid
[12:11:27] [PASSED] drm_test_connector_hdmi_init_bpc_8
[12:11:27] [PASSED] drm_test_connector_hdmi_init_bpc_10
[12:11:27] [PASSED] drm_test_connector_hdmi_init_bpc_12
[12:11:27] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[12:11:27] [PASSED] drm_test_connector_hdmi_init_bpc_null
[12:11:27] [PASSED] drm_test_connector_hdmi_init_formats_empty
[12:11:27] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[12:11:27] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[12:11:27] [PASSED] supported_formats=0x9 yuv420_allowed=1
[12:11:27] [PASSED] supported_formats=0x9 yuv420_allowed=0
[12:11:27] [PASSED] supported_formats=0x3 yuv420_allowed=1
[12:11:27] [PASSED] supported_formats=0x3 yuv420_allowed=0
[12:11:27] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[12:11:27] [PASSED] drm_test_connector_hdmi_init_null_ddc
[12:11:27] [PASSED] drm_test_connector_hdmi_init_null_product
[12:11:27] [PASSED] drm_test_connector_hdmi_init_null_vendor
[12:11:27] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[12:11:27] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[12:11:27] [PASSED] drm_test_connector_hdmi_init_product_valid
[12:11:27] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[12:11:27] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[12:11:27] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[12:11:27] ========= drm_test_connector_hdmi_init_type_valid =========
[12:11:27] [PASSED] HDMI-A
[12:11:27] [PASSED] HDMI-B
[12:11:27] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[12:11:27] ======== drm_test_connector_hdmi_init_type_invalid ========
[12:11:27] [PASSED] Unknown
[12:11:27] [PASSED] VGA
[12:11:27] [PASSED] DVI-I
[12:11:27] [PASSED] DVI-D
[12:11:27] [PASSED] DVI-A
[12:11:27] [PASSED] Composite
[12:11:27] [PASSED] SVIDEO
[12:11:27] [PASSED] LVDS
[12:11:27] [PASSED] Component
[12:11:27] [PASSED] DIN
[12:11:27] [PASSED] DP
[12:11:27] [PASSED] TV
[12:11:27] [PASSED] eDP
[12:11:27] [PASSED] Virtual
[12:11:27] [PASSED] DSI
[12:11:27] [PASSED] DPI
[12:11:27] [PASSED] Writeback
[12:11:27] [PASSED] SPI
[12:11:27] [PASSED] USB
[12:11:27] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[12:11:27] ============ [PASSED] drmm_connector_hdmi_init =============
[12:11:27] ============= drmm_connector_init (3 subtests) =============
[12:11:27] [PASSED] drm_test_drmm_connector_init
[12:11:27] [PASSED] drm_test_drmm_connector_init_null_ddc
[12:11:27] ========= drm_test_drmm_connector_init_type_valid =========
[12:11:27] [PASSED] Unknown
[12:11:27] [PASSED] VGA
[12:11:27] [PASSED] DVI-I
[12:11:27] [PASSED] DVI-D
[12:11:27] [PASSED] DVI-A
[12:11:27] [PASSED] Composite
[12:11:27] [PASSED] SVIDEO
[12:11:27] [PASSED] LVDS
[12:11:27] [PASSED] Component
[12:11:27] [PASSED] DIN
[12:11:27] [PASSED] DP
[12:11:27] [PASSED] HDMI-A
[12:11:27] [PASSED] HDMI-B
[12:11:27] [PASSED] TV
[12:11:27] [PASSED] eDP
[12:11:27] [PASSED] Virtual
[12:11:27] [PASSED] DSI
[12:11:27] [PASSED] DPI
[12:11:27] [PASSED] Writeback
[12:11:27] [PASSED] SPI
[12:11:27] [PASSED] USB
[12:11:27] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[12:11:27] =============== [PASSED] drmm_connector_init ===============
[12:11:27] ========= drm_connector_dynamic_init (6 subtests) ==========
[12:11:27] [PASSED] drm_test_drm_connector_dynamic_init
[12:11:27] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[12:11:27] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[12:11:27] [PASSED] drm_test_drm_connector_dynamic_init_properties
[12:11:27] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[12:11:27] [PASSED] Unknown
[12:11:27] [PASSED] VGA
[12:11:27] [PASSED] DVI-I
[12:11:27] [PASSED] DVI-D
[12:11:27] [PASSED] DVI-A
[12:11:27] [PASSED] Composite
[12:11:27] [PASSED] SVIDEO
[12:11:27] [PASSED] LVDS
[12:11:27] [PASSED] Component
[12:11:27] [PASSED] DIN
[12:11:27] [PASSED] DP
[12:11:27] [PASSED] HDMI-A
[12:11:27] [PASSED] HDMI-B
[12:11:27] [PASSED] TV
[12:11:27] [PASSED] eDP
[12:11:27] [PASSED] Virtual
[12:11:27] [PASSED] DSI
[12:11:27] [PASSED] DPI
[12:11:27] [PASSED] Writeback
[12:11:27] [PASSED] SPI
[12:11:27] [PASSED] USB
[12:11:27] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[12:11:27] ======== drm_test_drm_connector_dynamic_init_name =========
[12:11:27] [PASSED] Unknown
[12:11:27] [PASSED] VGA
[12:11:27] [PASSED] DVI-I
[12:11:27] [PASSED] DVI-D
[12:11:27] [PASSED] DVI-A
[12:11:27] [PASSED] Composite
[12:11:27] [PASSED] SVIDEO
[12:11:27] [PASSED] LVDS
[12:11:27] [PASSED] Component
[12:11:27] [PASSED] DIN
[12:11:27] [PASSED] DP
[12:11:27] [PASSED] HDMI-A
[12:11:27] [PASSED] HDMI-B
[12:11:27] [PASSED] TV
[12:11:27] [PASSED] eDP
[12:11:27] [PASSED] Virtual
[12:11:27] [PASSED] DSI
[12:11:27] [PASSED] DPI
[12:11:27] [PASSED] Writeback
[12:11:27] [PASSED] SPI
[12:11:27] [PASSED] USB
[12:11:27] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[12:11:27] =========== [PASSED] drm_connector_dynamic_init ============
[12:11:27] ==== drm_connector_dynamic_register_early (4 subtests) =====
[12:11:27] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[12:11:27] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[12:11:27] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[12:11:27] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[12:11:27] ====== [PASSED] drm_connector_dynamic_register_early =======
[12:11:27] ======= drm_connector_dynamic_register (7 subtests) ========
[12:11:27] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[12:11:27] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[12:11:27] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[12:11:27] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[12:11:27] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[12:11:27] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[12:11:27] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[12:11:27] ========= [PASSED] drm_connector_dynamic_register ==========
[12:11:27] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[12:11:27] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[12:11:27] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[12:11:27] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[12:11:27] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[12:11:27] ========== drm_test_get_tv_mode_from_name_valid ===========
[12:11:27] [PASSED] NTSC
[12:11:27] [PASSED] NTSC-443
[12:11:27] [PASSED] NTSC-J
[12:11:27] [PASSED] PAL
[12:11:27] [PASSED] PAL-M
[12:11:27] [PASSED] PAL-N
[12:11:27] [PASSED] SECAM
[12:11:27] [PASSED] Mono
[12:11:27] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[12:11:27] [PASSED] drm_test_get_tv_mode_from_name_truncated
[12:11:27] ============ [PASSED] drm_get_tv_mode_from_name ============
[12:11:27] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[12:11:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[12:11:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[12:11:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[12:11:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[12:11:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[12:11:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[12:11:27] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[12:11:27] [PASSED] VIC 96
[12:11:27] [PASSED] VIC 97
[12:11:27] [PASSED] VIC 101
[12:11:27] [PASSED] VIC 102
[12:11:27] [PASSED] VIC 106
[12:11:27] [PASSED] VIC 107
[12:11:27] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[12:11:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[12:11:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[12:11:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[12:11:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[12:11:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[12:11:27] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[12:11:27] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[12:11:27] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[12:11:27] [PASSED] Automatic
[12:11:27] [PASSED] Full
[12:11:27] [PASSED] Limited 16:235
[12:11:27] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[12:11:27] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[12:11:27] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[12:11:27] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[12:11:27] === drm_test_drm_hdmi_connector_get_output_format_name ====
[12:11:27] [PASSED] RGB
[12:11:27] [PASSED] YUV 4:2:0
[12:11:27] [PASSED] YUV 4:2:2
[12:11:27] [PASSED] YUV 4:4:4
[12:11:27] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[12:11:27] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[12:11:27] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[12:11:27] ============= drm_damage_helper (21 subtests) ==============
[12:11:27] [PASSED] drm_test_damage_iter_no_damage
[12:11:27] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[12:11:27] [PASSED] drm_test_damage_iter_no_damage_src_moved
[12:11:27] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[12:11:27] [PASSED] drm_test_damage_iter_no_damage_not_visible
[12:11:27] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[12:11:27] [PASSED] drm_test_damage_iter_no_damage_no_fb
[12:11:27] [PASSED] drm_test_damage_iter_simple_damage
[12:11:27] [PASSED] drm_test_damage_iter_single_damage
[12:11:27] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[12:11:27] [PASSED] drm_test_damage_iter_single_damage_outside_src
[12:11:27] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[12:11:27] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[12:11:27] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[12:11:27] [PASSED] drm_test_damage_iter_single_damage_src_moved
[12:11:27] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[12:11:27] [PASSED] drm_test_damage_iter_damage
[12:11:27] [PASSED] drm_test_damage_iter_damage_one_intersect
[12:11:27] [PASSED] drm_test_damage_iter_damage_one_outside
[12:11:27] [PASSED] drm_test_damage_iter_damage_src_moved
[12:11:27] [PASSED] drm_test_damage_iter_damage_not_visible
[12:11:27] ================ [PASSED] drm_damage_helper ================
[12:11:27] ============== drm_dp_mst_helper (3 subtests) ==============
[12:11:27] ============== drm_test_dp_mst_calc_pbn_mode ==============
[12:11:27] [PASSED] Clock 154000 BPP 30 DSC disabled
[12:11:27] [PASSED] Clock 234000 BPP 30 DSC disabled
[12:11:27] [PASSED] Clock 297000 BPP 24 DSC disabled
[12:11:27] [PASSED] Clock 332880 BPP 24 DSC enabled
[12:11:27] [PASSED] Clock 324540 BPP 24 DSC enabled
[12:11:27] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[12:11:27] ============== drm_test_dp_mst_calc_pbn_div ===============
[12:11:27] [PASSED] Link rate 2000000 lane count 4
[12:11:27] [PASSED] Link rate 2000000 lane count 2
[12:11:27] [PASSED] Link rate 2000000 lane count 1
[12:11:27] [PASSED] Link rate 1350000 lane count 4
[12:11:27] [PASSED] Link rate 1350000 lane count 2
[12:11:27] [PASSED] Link rate 1350000 lane count 1
[12:11:27] [PASSED] Link rate 1000000 lane count 4
[12:11:27] [PASSED] Link rate 1000000 lane count 2
[12:11:27] [PASSED] Link rate 1000000 lane count 1
[12:11:27] [PASSED] Link rate 810000 lane count 4
[12:11:27] [PASSED] Link rate 810000 lane count 2
[12:11:27] [PASSED] Link rate 810000 lane count 1
[12:11:27] [PASSED] Link rate 540000 lane count 4
[12:11:27] [PASSED] Link rate 540000 lane count 2
[12:11:27] [PASSED] Link rate 540000 lane count 1
[12:11:27] [PASSED] Link rate 270000 lane count 4
[12:11:27] [PASSED] Link rate 270000 lane count 2
[12:11:27] [PASSED] Link rate 270000 lane count 1
[12:11:27] [PASSED] Link rate 162000 lane count 4
[12:11:27] [PASSED] Link rate 162000 lane count 2
[12:11:27] [PASSED] Link rate 162000 lane count 1
[12:11:27] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[12:11:27] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[12:11:27] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[12:11:27] [PASSED] DP_POWER_UP_PHY with port number
[12:11:27] [PASSED] DP_POWER_DOWN_PHY with port number
[12:11:27] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[12:11:27] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[12:11:27] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[12:11:27] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[12:11:27] [PASSED] DP_QUERY_PAYLOAD with port number
[12:11:27] [PASSED] DP_QUERY_PAYLOAD with VCPI
[12:11:27] [PASSED] DP_REMOTE_DPCD_READ with port number
[12:11:27] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[12:11:27] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[12:11:27] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[12:11:27] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[12:11:27] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[12:11:27] [PASSED] DP_REMOTE_I2C_READ with port number
[12:11:27] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[12:11:27] [PASSED] DP_REMOTE_I2C_READ with transactions array
[12:11:27] [PASSED] DP_REMOTE_I2C_WRITE with port number
[12:11:27] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[12:11:27] [PASSED] DP_REMOTE_I2C_WRITE with data array
[12:11:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[12:11:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[12:11:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[12:11:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[12:11:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[12:11:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[12:11:27] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[12:11:27] ================ [PASSED] drm_dp_mst_helper ================
[12:11:27] ================== drm_exec (7 subtests) ===================
[12:11:27] [PASSED] sanitycheck
[12:11:27] [PASSED] test_lock
[12:11:27] [PASSED] test_lock_unlock
[12:11:27] [PASSED] test_duplicates
[12:11:27] [PASSED] test_prepare
[12:11:27] [PASSED] test_prepare_array
[12:11:27] [PASSED] test_multiple_loops
[12:11:27] ==================== [PASSED] drm_exec =====================
[12:11:27] =========== drm_format_helper_test (17 subtests) ===========
[12:11:27] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[12:11:27] [PASSED] single_pixel_source_buffer
[12:11:27] [PASSED] single_pixel_clip_rectangle
[12:11:27] [PASSED] well_known_colors
[12:11:27] [PASSED] destination_pitch
[12:11:27] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[12:11:27] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[12:11:27] [PASSED] single_pixel_source_buffer
[12:11:27] [PASSED] single_pixel_clip_rectangle
[12:11:27] [PASSED] well_known_colors
[12:11:27] [PASSED] destination_pitch
[12:11:27] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[12:11:27] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[12:11:27] [PASSED] single_pixel_source_buffer
[12:11:27] [PASSED] single_pixel_clip_rectangle
[12:11:27] [PASSED] well_known_colors
[12:11:27] [PASSED] destination_pitch
[12:11:27] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[12:11:27] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[12:11:27] [PASSED] single_pixel_source_buffer
[12:11:27] [PASSED] single_pixel_clip_rectangle
[12:11:27] [PASSED] well_known_colors
[12:11:27] [PASSED] destination_pitch
[12:11:27] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[12:11:27] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[12:11:27] [PASSED] single_pixel_source_buffer
[12:11:27] [PASSED] single_pixel_clip_rectangle
[12:11:27] [PASSED] well_known_colors
[12:11:27] [PASSED] destination_pitch
[12:11:27] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[12:11:27] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[12:11:27] [PASSED] single_pixel_source_buffer
[12:11:27] [PASSED] single_pixel_clip_rectangle
[12:11:27] [PASSED] well_known_colors
[12:11:27] [PASSED] destination_pitch
[12:11:27] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[12:11:27] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[12:11:27] [PASSED] single_pixel_source_buffer
[12:11:27] [PASSED] single_pixel_clip_rectangle
[12:11:27] [PASSED] well_known_colors
[12:11:27] [PASSED] destination_pitch
[12:11:27] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[12:11:27] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[12:11:27] [PASSED] single_pixel_source_buffer
[12:11:27] [PASSED] single_pixel_clip_rectangle
[12:11:27] [PASSED] well_known_colors
[12:11:27] [PASSED] destination_pitch
[12:11:27] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[12:11:27] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[12:11:27] [PASSED] single_pixel_source_buffer
[12:11:27] [PASSED] single_pixel_clip_rectangle
[12:11:27] [PASSED] well_known_colors
[12:11:27] [PASSED] destination_pitch
[12:11:27] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[12:11:27] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[12:11:27] [PASSED] single_pixel_source_buffer
[12:11:27] [PASSED] single_pixel_clip_rectangle
[12:11:27] [PASSED] well_known_colors
[12:11:27] [PASSED] destination_pitch
[12:11:27] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[12:11:27] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[12:11:27] [PASSED] single_pixel_source_buffer
[12:11:27] [PASSED] single_pixel_clip_rectangle
[12:11:27] [PASSED] well_known_colors
[12:11:27] [PASSED] destination_pitch
[12:11:27] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[12:11:27] ============== drm_test_fb_xrgb8888_to_mono ===============
[12:11:27] [PASSED] single_pixel_source_buffer
[12:11:27] [PASSED] single_pixel_clip_rectangle
[12:11:27] [PASSED] well_known_colors
[12:11:27] [PASSED] destination_pitch
[12:11:27] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[12:11:27] ==================== drm_test_fb_swab =====================
[12:11:27] [PASSED] single_pixel_source_buffer
[12:11:27] [PASSED] single_pixel_clip_rectangle
[12:11:27] [PASSED] well_known_colors
[12:11:27] [PASSED] destination_pitch
[12:11:27] ================ [PASSED] drm_test_fb_swab =================
[12:11:27] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[12:11:27] [PASSED] single_pixel_source_buffer
[12:11:27] [PASSED] single_pixel_clip_rectangle
[12:11:27] [PASSED] well_known_colors
[12:11:27] [PASSED] destination_pitch
[12:11:27] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[12:11:27] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[12:11:27] [PASSED] single_pixel_source_buffer
[12:11:27] [PASSED] single_pixel_clip_rectangle
[12:11:27] [PASSED] well_known_colors
[12:11:27] [PASSED] destination_pitch
[12:11:27] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[12:11:27] ================= drm_test_fb_clip_offset =================
[12:11:27] [PASSED] pass through
[12:11:27] [PASSED] horizontal offset
[12:11:27] [PASSED] vertical offset
[12:11:27] [PASSED] horizontal and vertical offset
[12:11:27] [PASSED] horizontal offset (custom pitch)
[12:11:27] [PASSED] vertical offset (custom pitch)
[12:11:27] [PASSED] horizontal and vertical offset (custom pitch)
[12:11:27] ============= [PASSED] drm_test_fb_clip_offset =============
[12:11:27] =================== drm_test_fb_memcpy ====================
[12:11:27] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[12:11:27] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[12:11:27] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[12:11:27] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[12:11:27] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[12:11:27] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[12:11:27] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[12:11:27] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[12:11:27] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[12:11:27] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[12:11:27] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[12:11:27] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[12:11:27] =============== [PASSED] drm_test_fb_memcpy ================
[12:11:27] ============= [PASSED] drm_format_helper_test ==============
[12:11:27] ================= drm_format (18 subtests) =================
[12:11:27] [PASSED] drm_test_format_block_width_invalid
[12:11:27] [PASSED] drm_test_format_block_width_one_plane
[12:11:27] [PASSED] drm_test_format_block_width_two_plane
[12:11:27] [PASSED] drm_test_format_block_width_three_plane
[12:11:27] [PASSED] drm_test_format_block_width_tiled
[12:11:27] [PASSED] drm_test_format_block_height_invalid
[12:11:27] [PASSED] drm_test_format_block_height_one_plane
[12:11:27] [PASSED] drm_test_format_block_height_two_plane
[12:11:27] [PASSED] drm_test_format_block_height_three_plane
[12:11:27] [PASSED] drm_test_format_block_height_tiled
[12:11:27] [PASSED] drm_test_format_min_pitch_invalid
[12:11:27] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[12:11:27] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[12:11:27] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[12:11:27] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[12:11:27] [PASSED] drm_test_format_min_pitch_two_plane
[12:11:27] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[12:11:27] [PASSED] drm_test_format_min_pitch_tiled
[12:11:27] =================== [PASSED] drm_format ====================
[12:11:27] ============== drm_framebuffer (10 subtests) ===============
[12:11:27] ========== drm_test_framebuffer_check_src_coords ==========
[12:11:27] [PASSED] Success: source fits into fb
[12:11:27] [PASSED] Fail: overflowing fb with x-axis coordinate
[12:11:27] [PASSED] Fail: overflowing fb with y-axis coordinate
[12:11:27] [PASSED] Fail: overflowing fb with source width
[12:11:27] [PASSED] Fail: overflowing fb with source height
[12:11:27] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[12:11:27] [PASSED] drm_test_framebuffer_cleanup
[12:11:27] =============== drm_test_framebuffer_create ===============
[12:11:27] [PASSED] ABGR8888 normal sizes
[12:11:27] [PASSED] ABGR8888 max sizes
[12:11:27] [PASSED] ABGR8888 pitch greater than min required
[12:11:27] [PASSED] ABGR8888 pitch less than min required
[12:11:27] [PASSED] ABGR8888 Invalid width
[12:11:27] [PASSED] ABGR8888 Invalid buffer handle
[12:11:27] [PASSED] No pixel format
[12:11:27] [PASSED] ABGR8888 Width 0
[12:11:27] [PASSED] ABGR8888 Height 0
[12:11:27] [PASSED] ABGR8888 Out of bound height * pitch combination
[12:11:27] [PASSED] ABGR8888 Large buffer offset
[12:11:27] [PASSED] ABGR8888 Buffer offset for inexistent plane
[12:11:27] [PASSED] ABGR8888 Invalid flag
[12:11:27] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[12:11:27] [PASSED] ABGR8888 Valid buffer modifier
[12:11:27] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[12:11:27] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[12:11:27] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[12:11:27] [PASSED] NV12 Normal sizes
[12:11:27] [PASSED] NV12 Max sizes
[12:11:27] [PASSED] NV12 Invalid pitch
[12:11:27] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[12:11:27] [PASSED] NV12 different modifier per-plane
[12:11:27] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[12:11:27] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[12:11:27] [PASSED] NV12 Modifier for inexistent plane
[12:11:27] [PASSED] NV12 Handle for inexistent plane
[12:11:27] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[12:11:27] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[12:11:27] [PASSED] YVU420 Normal sizes
[12:11:27] [PASSED] YVU420 Max sizes
[12:11:27] [PASSED] YVU420 Invalid pitch
[12:11:27] [PASSED] YVU420 Different pitches
[12:11:27] [PASSED] YVU420 Different buffer offsets/pitches
[12:11:27] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[12:11:27] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[12:11:27] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[12:11:27] [PASSED] YVU420 Valid modifier
[12:11:27] [PASSED] YVU420 Different modifiers per plane
[12:11:27] [PASSED] YVU420 Modifier for inexistent plane
[12:11:27] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[12:11:27] [PASSED] X0L2 Normal sizes
[12:11:27] [PASSED] X0L2 Max sizes
[12:11:27] [PASSED] X0L2 Invalid pitch
[12:11:27] [PASSED] X0L2 Pitch greater than minimum required
[12:11:27] [PASSED] X0L2 Handle for inexistent plane
[12:11:27] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[12:11:27] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[12:11:27] [PASSED] X0L2 Valid modifier
[12:11:27] [PASSED] X0L2 Modifier for inexistent plane
[12:11:27] =========== [PASSED] drm_test_framebuffer_create ===========
[12:11:27] [PASSED] drm_test_framebuffer_free
[12:11:27] [PASSED] drm_test_framebuffer_init
[12:11:27] [PASSED] drm_test_framebuffer_init_bad_format
[12:11:27] [PASSED] drm_test_framebuffer_init_dev_mismatch
[12:11:27] [PASSED] drm_test_framebuffer_lookup
[12:11:27] [PASSED] drm_test_framebuffer_lookup_inexistent
[12:11:27] [PASSED] drm_test_framebuffer_modifiers_not_supported
[12:11:27] ================= [PASSED] drm_framebuffer =================
[12:11:27] ================ drm_gem_shmem (8 subtests) ================
[12:11:27] [PASSED] drm_gem_shmem_test_obj_create
[12:11:27] [PASSED] drm_gem_shmem_test_obj_create_private
[12:11:27] [PASSED] drm_gem_shmem_test_pin_pages
[12:11:27] [PASSED] drm_gem_shmem_test_vmap
[12:11:27] [PASSED] drm_gem_shmem_test_get_pages_sgt
[12:11:27] [PASSED] drm_gem_shmem_test_get_sg_table
[12:11:27] [PASSED] drm_gem_shmem_test_madvise
[12:11:27] [PASSED] drm_gem_shmem_test_purge
[12:11:27] ================== [PASSED] drm_gem_shmem ==================
[12:11:27] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[12:11:27] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[12:11:27] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[12:11:27] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[12:11:27] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[12:11:27] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[12:11:27] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[12:11:27] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[12:11:27] [PASSED] Automatic
[12:11:27] [PASSED] Full
[12:11:27] [PASSED] Limited 16:235
[12:11:27] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[12:11:27] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[12:11:27] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[12:11:27] [PASSED] drm_test_check_disable_connector
[12:11:27] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[12:11:27] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[12:11:27] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[12:11:27] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[12:11:27] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[12:11:27] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[12:11:27] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[12:11:27] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[12:11:27] [PASSED] drm_test_check_output_bpc_dvi
[12:11:27] [PASSED] drm_test_check_output_bpc_format_vic_1
[12:11:27] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[12:11:27] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[12:11:27] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[12:11:27] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[12:11:27] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[12:11:27] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[12:11:27] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[12:11:27] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[12:11:27] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[12:11:27] [PASSED] drm_test_check_broadcast_rgb_value
[12:11:27] [PASSED] drm_test_check_bpc_8_value
[12:11:27] [PASSED] drm_test_check_bpc_10_value
[12:11:27] [PASSED] drm_test_check_bpc_12_value
[12:11:27] [PASSED] drm_test_check_format_value
[12:11:27] [PASSED] drm_test_check_tmds_char_value
[12:11:27] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[12:11:27] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[12:11:27] [PASSED] drm_test_check_mode_valid
[12:11:27] [PASSED] drm_test_check_mode_valid_reject
[12:11:27] [PASSED] drm_test_check_mode_valid_reject_rate
[12:11:27] [PASSED] drm_test_check_mode_valid_reject_max_clock
[12:11:27] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[12:11:27] ================= drm_managed (2 subtests) =================
[12:11:27] [PASSED] drm_test_managed_release_action
[12:11:27] [PASSED] drm_test_managed_run_action
[12:11:27] =================== [PASSED] drm_managed ===================
[12:11:27] =================== drm_mm (6 subtests) ====================
[12:11:27] [PASSED] drm_test_mm_init
[12:11:27] [PASSED] drm_test_mm_debug
[12:11:27] [PASSED] drm_test_mm_align32
[12:11:27] [PASSED] drm_test_mm_align64
[12:11:27] [PASSED] drm_test_mm_lowest
[12:11:27] [PASSED] drm_test_mm_highest
[12:11:27] ===================== [PASSED] drm_mm ======================
[12:11:27] ============= drm_modes_analog_tv (5 subtests) =============
[12:11:27] [PASSED] drm_test_modes_analog_tv_mono_576i
[12:11:27] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[12:11:27] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[12:11:27] [PASSED] drm_test_modes_analog_tv_pal_576i
[12:11:27] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[12:11:27] =============== [PASSED] drm_modes_analog_tv ===============
[12:11:27] ============== drm_plane_helper (2 subtests) ===============
[12:11:27] =============== drm_test_check_plane_state ================
[12:11:27] [PASSED] clipping_simple
[12:11:27] [PASSED] clipping_rotate_reflect
[12:11:27] [PASSED] positioning_simple
[12:11:27] [PASSED] upscaling
[12:11:27] [PASSED] downscaling
[12:11:27] [PASSED] rounding1
[12:11:27] [PASSED] rounding2
[12:11:27] [PASSED] rounding3
[12:11:27] [PASSED] rounding4
[12:11:27] =========== [PASSED] drm_test_check_plane_state ============
[12:11:27] =========== drm_test_check_invalid_plane_state ============
[12:11:27] [PASSED] positioning_invalid
[12:11:27] [PASSED] upscaling_invalid
[12:11:27] [PASSED] downscaling_invalid
[12:11:27] ======= [PASSED] drm_test_check_invalid_plane_state ========
[12:11:27] ================ [PASSED] drm_plane_helper =================
[12:11:27] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[12:11:27] ====== drm_test_connector_helper_tv_get_modes_check =======
[12:11:27] [PASSED] None
[12:11:27] [PASSED] PAL
[12:11:27] [PASSED] NTSC
[12:11:27] [PASSED] Both, NTSC Default
[12:11:27] [PASSED] Both, PAL Default
[12:11:27] [PASSED] Both, NTSC Default, with PAL on command-line
[12:11:27] [PASSED] Both, PAL Default, with NTSC on command-line
[12:11:27] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[12:11:27] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[12:11:27] ================== drm_rect (9 subtests) ===================
[12:11:27] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[12:11:27] [PASSED] drm_test_rect_clip_scaled_not_clipped
[12:11:27] [PASSED] drm_test_rect_clip_scaled_clipped
[12:11:27] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[12:11:27] ================= drm_test_rect_intersect =================
[12:11:27] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[12:11:27] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[12:11:27] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[12:11:27] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[12:11:27] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[12:11:27] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[12:11:27] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[12:11:27] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[12:11:27] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[12:11:27] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[12:11:27] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[12:11:27] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[12:11:27] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[12:11:27] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[12:11:27] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[12:11:27] ============= [PASSED] drm_test_rect_intersect =============
[12:11:27] ================ drm_test_rect_calc_hscale ================
[12:11:27] [PASSED] normal use
[12:11:27] [PASSED] out of max range
[12:11:27] [PASSED] out of min range
[12:11:27] [PASSED] zero dst
[12:11:27] [PASSED] negative src
[12:11:27] [PASSED] negative dst
[12:11:27] ============ [PASSED] drm_test_rect_calc_hscale ============
[12:11:27] ================ drm_test_rect_calc_vscale ================
[12:11:27] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[12:11:27] [PASSED] out of max range
[12:11:27] [PASSED] out of min range
[12:11:27] [PASSED] zero dst
[12:11:27] [PASSED] negative src
[12:11:27] [PASSED] negative dst
[12:11:27] ============ [PASSED] drm_test_rect_calc_vscale ============
[12:11:27] ================== drm_test_rect_rotate ===================
[12:11:27] [PASSED] reflect-x
[12:11:27] [PASSED] reflect-y
[12:11:27] [PASSED] rotate-0
[12:11:27] [PASSED] rotate-90
[12:11:27] [PASSED] rotate-180
[12:11:27] [PASSED] rotate-270
[12:11:27] ============== [PASSED] drm_test_rect_rotate ===============
[12:11:27] ================ drm_test_rect_rotate_inv =================
[12:11:27] [PASSED] reflect-x
[12:11:27] [PASSED] reflect-y
[12:11:27] [PASSED] rotate-0
[12:11:27] [PASSED] rotate-90
[12:11:27] [PASSED] rotate-180
[12:11:27] [PASSED] rotate-270
[12:11:27] ============ [PASSED] drm_test_rect_rotate_inv =============
[12:11:27] ==================== [PASSED] drm_rect =====================
[12:11:27] ============ drm_sysfb_modeset_test (1 subtest) ============
[12:11:27] ============ drm_test_sysfb_build_fourcc_list =============
[12:11:27] [PASSED] no native formats
[12:11:27] [PASSED] XRGB8888 as native format
[12:11:27] [PASSED] remove duplicates
[12:11:27] [PASSED] convert alpha formats
[12:11:27] [PASSED] random formats
[12:11:27] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[12:11:27] ============= [PASSED] drm_sysfb_modeset_test ==============
[12:11:27] ============================================================
[12:11:27] Testing complete. Ran 622 tests: passed: 622
[12:11:27] Elapsed time: 26.628s total, 1.621s configuring, 24.538s building, 0.439s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[12:11:27] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:11:29] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:11:38] Starting KUnit Kernel (1/1)...
[12:11:38] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:11:38] ================= ttm_device (5 subtests) ==================
[12:11:38] [PASSED] ttm_device_init_basic
[12:11:38] [PASSED] ttm_device_init_multiple
[12:11:38] [PASSED] ttm_device_fini_basic
[12:11:38] [PASSED] ttm_device_init_no_vma_man
[12:11:38] ================== ttm_device_init_pools ==================
[12:11:38] [PASSED] No DMA allocations, no DMA32 required
[12:11:38] [PASSED] DMA allocations, DMA32 required
[12:11:38] [PASSED] No DMA allocations, DMA32 required
[12:11:38] [PASSED] DMA allocations, no DMA32 required
[12:11:38] ============== [PASSED] ttm_device_init_pools ==============
[12:11:38] =================== [PASSED] ttm_device ====================
[12:11:38] ================== ttm_pool (8 subtests) ===================
[12:11:38] ================== ttm_pool_alloc_basic ===================
[12:11:38] [PASSED] One page
[12:11:38] [PASSED] More than one page
[12:11:38] [PASSED] Above the allocation limit
[12:11:38] [PASSED] One page, with coherent DMA mappings enabled
[12:11:38] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:11:38] ============== [PASSED] ttm_pool_alloc_basic ===============
[12:11:38] ============== ttm_pool_alloc_basic_dma_addr ==============
[12:11:38] [PASSED] One page
[12:11:38] [PASSED] More than one page
[12:11:38] [PASSED] Above the allocation limit
[12:11:38] [PASSED] One page, with coherent DMA mappings enabled
[12:11:38] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:11:38] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[12:11:38] [PASSED] ttm_pool_alloc_order_caching_match
[12:11:38] [PASSED] ttm_pool_alloc_caching_mismatch
[12:11:38] [PASSED] ttm_pool_alloc_order_mismatch
[12:11:38] [PASSED] ttm_pool_free_dma_alloc
[12:11:38] [PASSED] ttm_pool_free_no_dma_alloc
[12:11:38] [PASSED] ttm_pool_fini_basic
[12:11:38] ==================== [PASSED] ttm_pool =====================
[12:11:38] ================ ttm_resource (8 subtests) =================
[12:11:38] ================= ttm_resource_init_basic =================
[12:11:38] [PASSED] Init resource in TTM_PL_SYSTEM
[12:11:38] [PASSED] Init resource in TTM_PL_VRAM
[12:11:38] [PASSED] Init resource in a private placement
[12:11:38] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[12:11:38] ============= [PASSED] ttm_resource_init_basic =============
[12:11:38] [PASSED] ttm_resource_init_pinned
[12:11:38] [PASSED] ttm_resource_fini_basic
[12:11:38] [PASSED] ttm_resource_manager_init_basic
[12:11:38] [PASSED] ttm_resource_manager_usage_basic
[12:11:38] [PASSED] ttm_resource_manager_set_used_basic
[12:11:38] [PASSED] ttm_sys_man_alloc_basic
[12:11:38] [PASSED] ttm_sys_man_free_basic
[12:11:38] ================== [PASSED] ttm_resource ===================
[12:11:38] =================== ttm_tt (15 subtests) ===================
[12:11:38] ==================== ttm_tt_init_basic ====================
[12:11:38] [PASSED] Page-aligned size
[12:11:38] [PASSED] Extra pages requested
[12:11:38] ================ [PASSED] ttm_tt_init_basic ================
[12:11:38] [PASSED] ttm_tt_init_misaligned
[12:11:38] [PASSED] ttm_tt_fini_basic
[12:11:38] [PASSED] ttm_tt_fini_sg
[12:11:38] [PASSED] ttm_tt_fini_shmem
[12:11:38] [PASSED] ttm_tt_create_basic
[12:11:38] [PASSED] ttm_tt_create_invalid_bo_type
[12:11:38] [PASSED] ttm_tt_create_ttm_exists
[12:11:38] [PASSED] ttm_tt_create_failed
[12:11:38] [PASSED] ttm_tt_destroy_basic
[12:11:38] [PASSED] ttm_tt_populate_null_ttm
[12:11:38] [PASSED] ttm_tt_populate_populated_ttm
[12:11:38] [PASSED] ttm_tt_unpopulate_basic
[12:11:38] [PASSED] ttm_tt_unpopulate_empty_ttm
[12:11:38] [PASSED] ttm_tt_swapin_basic
[12:11:38] ===================== [PASSED] ttm_tt ======================
[12:11:38] =================== ttm_bo (14 subtests) ===================
[12:11:38] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[12:11:38] [PASSED] Cannot be interrupted and sleeps
[12:11:38] [PASSED] Cannot be interrupted, locks straight away
[12:11:38] [PASSED] Can be interrupted, sleeps
[12:11:38] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[12:11:38] [PASSED] ttm_bo_reserve_locked_no_sleep
[12:11:38] [PASSED] ttm_bo_reserve_no_wait_ticket
[12:11:38] [PASSED] ttm_bo_reserve_double_resv
[12:11:38] [PASSED] ttm_bo_reserve_interrupted
[12:11:38] [PASSED] ttm_bo_reserve_deadlock
[12:11:38] [PASSED] ttm_bo_unreserve_basic
[12:11:38] [PASSED] ttm_bo_unreserve_pinned
[12:11:38] [PASSED] ttm_bo_unreserve_bulk
[12:11:38] [PASSED] ttm_bo_fini_basic
[12:11:38] [PASSED] ttm_bo_fini_shared_resv
[12:11:38] [PASSED] ttm_bo_pin_basic
[12:11:38] [PASSED] ttm_bo_pin_unpin_resource
[12:11:38] [PASSED] ttm_bo_multiple_pin_one_unpin
[12:11:38] ===================== [PASSED] ttm_bo ======================
[12:11:38] ============== ttm_bo_validate (21 subtests) ===============
[12:11:38] ============== ttm_bo_init_reserved_sys_man ===============
[12:11:38] [PASSED] Buffer object for userspace
[12:11:38] [PASSED] Kernel buffer object
[12:11:38] [PASSED] Shared buffer object
[12:11:38] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[12:11:38] ============== ttm_bo_init_reserved_mock_man ==============
[12:11:38] [PASSED] Buffer object for userspace
[12:11:38] [PASSED] Kernel buffer object
[12:11:38] [PASSED] Shared buffer object
[12:11:38] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[12:11:38] [PASSED] ttm_bo_init_reserved_resv
[12:11:38] ================== ttm_bo_validate_basic ==================
[12:11:38] [PASSED] Buffer object for userspace
[12:11:38] [PASSED] Kernel buffer object
[12:11:38] [PASSED] Shared buffer object
[12:11:38] ============== [PASSED] ttm_bo_validate_basic ==============
[12:11:38] [PASSED] ttm_bo_validate_invalid_placement
[12:11:38] ============= ttm_bo_validate_same_placement ==============
[12:11:38] [PASSED] System manager
[12:11:38] [PASSED] VRAM manager
[12:11:38] ========= [PASSED] ttm_bo_validate_same_placement ==========
[12:11:38] [PASSED] ttm_bo_validate_failed_alloc
[12:11:38] [PASSED] ttm_bo_validate_pinned
[12:11:38] [PASSED] ttm_bo_validate_busy_placement
[12:11:38] ================ ttm_bo_validate_multihop =================
[12:11:38] [PASSED] Buffer object for userspace
[12:11:38] [PASSED] Kernel buffer object
[12:11:38] [PASSED] Shared buffer object
[12:11:38] ============ [PASSED] ttm_bo_validate_multihop =============
[12:11:38] ========== ttm_bo_validate_no_placement_signaled ==========
[12:11:38] [PASSED] Buffer object in system domain, no page vector
[12:11:38] [PASSED] Buffer object in system domain with an existing page vector
[12:11:38] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[12:11:38] ======== ttm_bo_validate_no_placement_not_signaled ========
[12:11:38] [PASSED] Buffer object for userspace
[12:11:38] [PASSED] Kernel buffer object
[12:11:38] [PASSED] Shared buffer object
[12:11:38] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[12:11:38] [PASSED] ttm_bo_validate_move_fence_signaled
[12:11:38] ========= ttm_bo_validate_move_fence_not_signaled =========
[12:11:38] [PASSED] Waits for GPU
[12:11:38] [PASSED] Tries to lock straight away
[12:11:38] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[12:11:38] [PASSED] ttm_bo_validate_happy_evict
[12:11:38] [PASSED] ttm_bo_validate_all_pinned_evict
[12:11:38] [PASSED] ttm_bo_validate_allowed_only_evict
[12:11:38] [PASSED] ttm_bo_validate_deleted_evict
[12:11:38] [PASSED] ttm_bo_validate_busy_domain_evict
[12:11:38] [PASSED] ttm_bo_validate_evict_gutting
[12:11:38] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[12:11:38] ================= [PASSED] ttm_bo_validate =================
[12:11:38] ============================================================
[12:11:38] Testing complete. Ran 101 tests: passed: 101
[12:11:38] Elapsed time: 11.139s total, 1.626s configuring, 9.295s building, 0.170s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 18+ messages in thread* ✓ Xe.CI.BAT: success for drm/xe/vf: Minor fixes to post-migration recovery (rev3)
2025-10-16 12:05 [PATCH v3 0/5] drm/xe/vf: Minor fixes to post-migration recovery Tomasz Lis
` (5 preceding siblings ...)
2025-10-16 12:11 ` ✓ CI.KUnit: success for drm/xe/vf: Minor fixes to post-migration recovery (rev3) Patchwork
@ 2025-10-16 12:57 ` Patchwork
2025-10-17 8:23 ` ✗ Xe.CI.Full: failure " Patchwork
7 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2025-10-16 12:57 UTC (permalink / raw)
To: Tomasz Lis; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 5357 bytes --]
== Series Details ==
Series: drm/xe/vf: Minor fixes to post-migration recovery (rev3)
URL : https://patchwork.freedesktop.org/series/155865/
State : success
== Summary ==
CI Bug Log - changes from xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed_BAT -> xe-pw-155865v3_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-155865v3_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-plain-flip@d-edp1:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#4543]) +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html
* igt@xe_evict@evict-beng-small:
- bat-ptl-2: NOTRUN -> [SKIP][3] ([Intel XE#5764]) +11 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/bat-ptl-2/igt@xe_evict@evict-beng-small.html
* igt@xe_evict@evict-beng-small-cm:
- bat-ptl-1: NOTRUN -> [SKIP][4] ([Intel XE#5764]) +11 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/bat-ptl-1/igt@xe_evict@evict-beng-small-cm.html
* igt@xe_live_ktest@xe_bo:
- bat-ptl-1: NOTRUN -> [SKIP][5] ([Intel XE#5775]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/bat-ptl-1/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- bat-ptl-2: NOTRUN -> [SKIP][6] ([Intel XE#5775]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/bat-ptl-2/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_mmap@vram:
- bat-ptl-1: NOTRUN -> [SKIP][7] ([Intel XE#5776])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/bat-ptl-1/igt@xe_mmap@vram.html
- bat-ptl-2: NOTRUN -> [SKIP][8] ([Intel XE#5776])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/bat-ptl-2/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xehpc:
- bat-ptl-2: NOTRUN -> [SKIP][9] ([Intel XE#5777])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/bat-ptl-2/igt@xe_pat@pat-index-xehpc.html
- bat-ptl-1: NOTRUN -> [SKIP][10] ([Intel XE#5777])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/bat-ptl-1/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-ptl-2: NOTRUN -> [SKIP][11] ([Intel XE#5771])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/bat-ptl-2/igt@xe_pat@pat-index-xelp.html
- bat-ptl-1: NOTRUN -> [SKIP][12] ([Intel XE#5771])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/bat-ptl-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-ptl-1: NOTRUN -> [SKIP][13] ([Intel XE#5780])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/bat-ptl-1/igt@xe_pat@pat-index-xelpg.html
- bat-ptl-2: NOTRUN -> [SKIP][14] ([Intel XE#5780])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/bat-ptl-2/igt@xe_pat@pat-index-xelpg.html
#### Possible fixes ####
* igt@sriov_basic@enable-vfs-autoprobe-on:
- bat-ptl-1: [ABORT][15] ([Intel XE#6349]) -> [PASS][16] +1 other test pass
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/bat-ptl-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/bat-ptl-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1:
- bat-ptl-2: [ABORT][17] ([Intel XE#6349]) -> [PASS][18] +1 other test pass
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/bat-ptl-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/bat-ptl-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#5764]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5764
[Intel XE#5771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5771
[Intel XE#5775]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5775
[Intel XE#5776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5776
[Intel XE#5777]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5777
[Intel XE#5780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5780
[Intel XE#6349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6349
Build changes
-------------
* IGT: IGT_8587 -> IGT_8588
* Linux: xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed -> xe-pw-155865v3
IGT_8587: 8587
IGT_8588: 8588
xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed: aaaff197c9186f4959c2bcb18035725188b950ed
xe-pw-155865v3: 155865v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/index.html
[-- Attachment #2: Type: text/html, Size: 6707 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread* ✗ Xe.CI.Full: failure for drm/xe/vf: Minor fixes to post-migration recovery (rev3)
2025-10-16 12:05 [PATCH v3 0/5] drm/xe/vf: Minor fixes to post-migration recovery Tomasz Lis
` (6 preceding siblings ...)
2025-10-16 12:57 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-10-17 8:23 ` Patchwork
7 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2025-10-17 8:23 UTC (permalink / raw)
To: Lis, Tomasz; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 82537 bytes --]
== Series Details ==
Series: drm/xe/vf: Minor fixes to post-migration recovery (rev3)
URL : https://patchwork.freedesktop.org/series/155865/
State : failure
== Summary ==
CI Bug Log - changes from xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed_FULL -> xe-pw-155865v3_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-155865v3_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-155865v3_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-155865v3_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [TIMEOUT][1] +1 other test timeout
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
Known issues
------------
Here are the changes found in xe-pw-155865v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-write:
- shard-adlp: NOTRUN -> [SKIP][2] ([Intel XE#1125] / [Intel XE#5574])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [PASS][3] -> [FAIL][4] ([Intel XE#6054]) +3 other tests fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y:
- shard-adlp: NOTRUN -> [DMESG-WARN][5] ([Intel XE#4543]) +18 other tests dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2370])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-adlp: NOTRUN -> [SKIP][7] ([Intel XE#607])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-adlp: NOTRUN -> [SKIP][8] ([Intel XE#610])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-2/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-adlp: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +13 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#316]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-432/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][11] ([Intel XE#316]) +8 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-9/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-adlp: NOTRUN -> [DMESG-FAIL][13] ([Intel XE#4543]) +7 other tests dmesg-fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +3 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-435/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +4 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#607])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#607])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1477])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
- shard-adlp: NOTRUN -> [SKIP][19] ([Intel XE#367]) +6 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-9/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-adlp: NOTRUN -> [SKIP][20] ([Intel XE#2191]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-2/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#367]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-435/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#367])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-3/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#367]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-1/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-adlp: NOTRUN -> [SKIP][24] ([Intel XE#455] / [Intel XE#787]) +57 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-9/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2887]) +5 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2887]) +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-4/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#2907])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-433/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-adlp: NOTRUN -> [SKIP][28] ([Intel XE#3442])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][29] ([Intel XE#787]) +86 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#787]) +48 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_chamelium_audio@dp-audio:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#373]) +9 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-435/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-adlp: NOTRUN -> [SKIP][33] ([Intel XE#306]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-8/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2325])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-3/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2252]) +6 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-5/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#373]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-2/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-adlp: NOTRUN -> [SKIP][37] ([Intel XE#373]) +15 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-9/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2390])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-1/igt@kms_content_protection@dp-mst-type-0.html
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#307])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-463/igt@kms_content_protection@dp-mst-type-0.html
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#307])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-7/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-adlp: NOTRUN -> [SKIP][41] ([Intel XE#307]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-1/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-adlp: NOTRUN -> [SKIP][42] ([Intel XE#308])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1424]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-max-size.html
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2320]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#309]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2291])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-adlp: NOTRUN -> [SKIP][47] ([Intel XE#309]) +5 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-bmg: [PASS][48] -> [SKIP][49] ([Intel XE#2291]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-adlp: NOTRUN -> [SKIP][50] ([Intel XE#323])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#1508])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1508])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-adlp: NOTRUN -> [SKIP][53] ([Intel XE#4302])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [PASS][54] -> [SKIP][55] ([Intel XE#1340])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dp_aux_dev:
- shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#3009])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-bmg-7/igt@kms_dp_aux_dev.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-6/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#4354])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-3/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2244])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-2/igt@kms_dsc@dsc-with-output-formats.html
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#2244])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-2/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-adlp: NOTRUN -> [SKIP][61] ([Intel XE#4422]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_feature_discovery@display-4x:
- shard-adlp: NOTRUN -> [SKIP][62] ([Intel XE#1138])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-bmg: [PASS][63] -> [SKIP][64] ([Intel XE#2316]) +5 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1421]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-7/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-dp2-hdmi-a3:
- shard-bmg: [PASS][66] -> [INCOMPLETE][67] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-dp2-hdmi-a3.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-8/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2316]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-6/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-adlp: NOTRUN -> [SKIP][69] ([Intel XE#310]) +13 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-9/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@basic-plain-flip@b-hdmi-a1:
- shard-adlp: [PASS][70] -> [DMESG-WARN][71] ([Intel XE#4543]) +4 other tests dmesg-warn
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-1/igt@kms_flip@basic-plain-flip@b-hdmi-a1.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-2/igt@kms_flip@basic-plain-flip@b-hdmi-a1.html
* igt@kms_flip@flip-vs-panning-interruptible:
- shard-adlp: NOTRUN -> [DMESG-WARN][72] ([Intel XE#4543] / [Intel XE#5208])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-9/igt@kms_flip@flip-vs-panning-interruptible.html
* igt@kms_flip@flip-vs-rmfb:
- shard-adlp: [PASS][73] -> [DMESG-WARN][74] ([Intel XE#4543] / [Intel XE#5208])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-2/igt@kms_flip@flip-vs-rmfb.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@kms_flip@flip-vs-rmfb.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-adlp: NOTRUN -> [SKIP][75] ([Intel XE#455]) +43 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-adlp: NOTRUN -> [DMESG-FAIL][76] ([Intel XE#4543] / [Intel XE#4921]) +3 other tests dmesg-fail
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#455]) +18 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1401]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2293]) +3 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#352])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-2/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#651]) +17 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#651]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2312]) +4 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
- shard-adlp: NOTRUN -> [SKIP][86] ([Intel XE#651]) +20 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-1/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2311]) +11 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#5390]) +6 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2352])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-adlp: NOTRUN -> [SKIP][90] ([Intel XE#1151])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-9/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][91] ([Intel XE#653]) +19 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#653]) +21 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#656]) +9 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][94] ([Intel XE#656]) +63 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2313]) +11 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_getfb@getfb2-handle-zero:
- shard-adlp: [PASS][96] -> [DMESG-WARN][97] ([Intel XE#2953] / [Intel XE#4173])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-9/igt@kms_getfb@getfb2-handle-zero.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-8/igt@kms_getfb@getfb2-handle-zero.html
* igt@kms_joiner@basic-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][98] ([Intel XE#346]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][99] ([Intel XE#3012])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-2/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#346])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-433/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-adlp: NOTRUN -> [SKIP][101] ([Intel XE#356])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_lowres@tiling-y:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#599])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-8/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [PASS][103] -> [SKIP][104] ([Intel XE#4596])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-4.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-adlp: NOTRUN -> [SKIP][105] ([Intel XE#4596])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-8/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#5021])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#5020])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-464/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#2763]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-adlp: NOTRUN -> [SKIP][109] ([Intel XE#3309])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-8/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#908])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-463/igt@kms_pm_dc@dc6-dpms.html
- shard-lnl: NOTRUN -> [FAIL][111] ([Intel XE#718])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-7/igt@kms_pm_dc@dc6-dpms.html
- shard-adlp: NOTRUN -> [FAIL][112] ([Intel XE#718])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-1/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][113] -> [FAIL][114] ([Intel XE#718])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2392])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-8/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-adlp: NOTRUN -> [SKIP][116] ([Intel XE#2007])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-9/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#1439] / [Intel XE#3141])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-2/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#1406] / [Intel XE#1489]) +6 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1406] / [Intel XE#2893]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#1406] / [Intel XE#1489]) +5 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-434/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-adlp: NOTRUN -> [SKIP][123] ([Intel XE#1406] / [Intel XE#1489]) +14 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#1122] / [Intel XE#1406])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-466/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +9 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-basic:
- shard-adlp: NOTRUN -> [SKIP][126] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +19 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +8 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-8/igt@kms_psr@pr-sprite-plane-onoff.html
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1406]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-2/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-adlp: NOTRUN -> [SKIP][129] ([Intel XE#1127])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#3414] / [Intel XE#3904])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#3414])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#3414] / [Intel XE#3904])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-adlp: NOTRUN -> [SKIP][133] ([Intel XE#3414]) +2 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-1/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2413])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-adlp: NOTRUN -> [SKIP][135] ([Intel XE#362])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [PASS][136] -> [SKIP][137] ([Intel XE#1499])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-bmg-5/igt@kms_vrr@negative-basic.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-6/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#1499])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#1499])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@xe_ccs@block-multicopy-compressed:
- shard-adlp: NOTRUN -> [SKIP][140] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-2/igt@xe_ccs@block-multicopy-compressed.html
* igt@xe_ccs@large-ctrl-surf-copy:
- shard-adlp: NOTRUN -> [SKIP][141] ([Intel XE#3576] / [Intel XE#5610])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@xe_ccs@large-ctrl-surf-copy.html
* igt@xe_copy_basic@mem-copy-linear-0x3fff:
- shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#1123])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
- shard-adlp: NOTRUN -> [SKIP][143] ([Intel XE#1123]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
* igt@xe_copy_basic@mem-set-linear-0x369:
- shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#1126])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0x369.html
* igt@xe_eu_stall@blocking-re-enable:
- shard-adlp: NOTRUN -> [SKIP][145] ([Intel XE#5626]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-1/igt@xe_eu_stall@blocking-re-enable.html
* igt@xe_eu_stall@invalid-gt-id:
- shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#5626]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-434/igt@xe_eu_stall@invalid-gt-id.html
* igt@xe_eudebug_online@breakpoint-many-sessions-tiles:
- shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#4837]) +8 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-6/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
* igt@xe_eudebug_online@resume-dss:
- shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#4837]) +7 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-464/igt@xe_eudebug_online@resume-dss.html
- shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#4837]) +4 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-5/igt@xe_eudebug_online@resume-dss.html
* igt@xe_eudebug_online@single-step:
- shard-adlp: NOTRUN -> [SKIP][150] ([Intel XE#4837] / [Intel XE#5565]) +22 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@xe_eudebug_online@single-step.html
* igt@xe_eudebug_sriov@deny-eudebug:
- shard-adlp: NOTRUN -> [SKIP][151] ([Intel XE#4519])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-8/igt@xe_eudebug_sriov@deny-eudebug.html
* igt@xe_evict@evict-beng-large-external-cm:
- shard-adlp: NOTRUN -> [SKIP][152] ([Intel XE#261] / [Intel XE#5564]) +3 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-9/igt@xe_evict@evict-beng-large-external-cm.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [PASS][153] -> [INCOMPLETE][154] ([Intel XE#6321])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-beng-small-external-cm:
- shard-adlp: NOTRUN -> [SKIP][155] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-2/igt@xe_evict@evict-beng-small-external-cm.html
* igt@xe_evict@evict-threads-large-multi-vm:
- shard-adlp: NOTRUN -> [SKIP][156] ([Intel XE#261]) +6 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-1/igt@xe_evict@evict-threads-large-multi-vm.html
* igt@xe_evict@evict-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#688]) +3 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-2/igt@xe_evict@evict-threads-small-multi-vm.html
* igt@xe_evict_ccs@evict-overcommit-standalone-nofree-reopen:
- shard-adlp: NOTRUN -> [SKIP][158] ([Intel XE#688]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-8/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-reopen.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null:
- shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#2322]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html
* igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
- shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#1392]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-5/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
- shard-adlp: NOTRUN -> [SKIP][161] ([Intel XE#1392] / [Intel XE#5575]) +18 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-8/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-userptr-invalidate-race-prefetch:
- shard-adlp: NOTRUN -> [SKIP][162] ([Intel XE#288] / [Intel XE#5561]) +41 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@xe_exec_fault_mode@many-userptr-invalidate-race-prefetch.html
* igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#288]) +20 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-463/igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-adlp: NOTRUN -> [SKIP][164] ([Intel XE#2360])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_reset@cat-error:
- shard-adlp: NOTRUN -> [DMESG-WARN][165] ([Intel XE#3868])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-1/igt@xe_exec_reset@cat-error.html
* igt@xe_exec_system_allocator@once-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#4943]) +12 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-5/igt@xe_exec_system_allocator@once-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@once-mmap-remap-ro-dontunmap:
- shard-adlp: NOTRUN -> [SKIP][167] ([Intel XE#4915]) +395 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-8/igt@xe_exec_system_allocator@once-mmap-remap-ro-dontunmap.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-new-race-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#4915]) +166 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-434/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-new-race-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-free-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#4943]) +3 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-4/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-free-huge-nomemset.html
* igt@xe_live_ktest@xe_bo:
- shard-adlp: NOTRUN -> [SKIP][170] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-1/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-adlp: NOTRUN -> [SKIP][171] ([Intel XE#2229])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_eudebug:
- shard-adlp: NOTRUN -> [SKIP][172] ([Intel XE#455] / [Intel XE#5712])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-2/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_mmap@small-bar:
- shard-adlp: NOTRUN -> [SKIP][173] ([Intel XE#512])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-1/igt@xe_mmap@small-bar.html
* igt@xe_module_load@force-load:
- shard-adlp: NOTRUN -> [SKIP][174] ([Intel XE#378] / [Intel XE#5612])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@xe_module_load@force-load.html
* igt@xe_oa@buffer-size:
- shard-dg2-set2: NOTRUN -> [SKIP][175] ([Intel XE#6032])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-433/igt@xe_oa@buffer-size.html
- shard-adlp: NOTRUN -> [SKIP][176] ([Intel XE#6032])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-2/igt@xe_oa@buffer-size.html
* igt@xe_oa@non-privileged-access-vaddr:
- shard-dg2-set2: NOTRUN -> [SKIP][177] ([Intel XE#3573]) +5 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-434/igt@xe_oa@non-privileged-access-vaddr.html
* igt@xe_oa@unprivileged-single-ctx-counters:
- shard-adlp: NOTRUN -> [SKIP][178] ([Intel XE#3573]) +9 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-1/igt@xe_oa@unprivileged-single-ctx-counters.html
* igt@xe_pat@pat-index-xehpc:
- shard-adlp: NOTRUN -> [SKIP][179] ([Intel XE#2838] / [Intel XE#979])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-adlp: NOTRUN -> [SKIP][180] ([Intel XE#1948])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-1/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-adlp: NOTRUN -> [SKIP][181] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-8/igt@xe_pm@s2idle-d3cold-basic-exec.html
- shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-434/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pxp@display-pxp-fb:
- shard-adlp: NOTRUN -> [SKIP][183] ([Intel XE#4733])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-9/igt@xe_pxp@display-pxp-fb.html
- shard-dg2-set2: NOTRUN -> [SKIP][184] ([Intel XE#4733]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-435/igt@xe_pxp@display-pxp-fb.html
* igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy:
- shard-bmg: NOTRUN -> [SKIP][185] ([Intel XE#4733]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-7/igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy.html
* igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
- shard-adlp: NOTRUN -> [SKIP][186] ([Intel XE#4733] / [Intel XE#5594]) +3 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-8/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
* igt@xe_query@multigpu-query-config:
- shard-adlp: NOTRUN -> [SKIP][187] ([Intel XE#944]) +3 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-2/igt@xe_query@multigpu-query-config.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: NOTRUN -> [SKIP][188] ([Intel XE#944]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-466/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-topology:
- shard-lnl: NOTRUN -> [SKIP][189] ([Intel XE#944])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-5/igt@xe_query@multigpu-query-topology.html
- shard-bmg: NOTRUN -> [SKIP][190] ([Intel XE#944])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-6/igt@xe_query@multigpu-query-topology.html
* igt@xe_render_copy@render-stress-4-copies:
- shard-adlp: NOTRUN -> [SKIP][191] ([Intel XE#4814] / [Intel XE#5614])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@xe_render_copy@render-stress-4-copies.html
* igt@xe_sriov_flr@flr-twice:
- shard-lnl: NOTRUN -> [SKIP][192] ([Intel XE#4273])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-5/igt@xe_sriov_flr@flr-twice.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-adlp: NOTRUN -> [DMESG-FAIL][193] ([Intel XE#3868] / [Intel XE#5213]) +1 other test dmesg-fail
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-2/igt@xe_sriov_scheduling@equal-throughput.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
- shard-lnl: [FAIL][194] ([Intel XE#5993]) -> [PASS][195] +3 other tests pass
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][196] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) -> [PASS][197] +1 other test pass
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][198] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [PASS][199]
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][200] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][201]
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][202] ([Intel XE#4842]) -> [PASS][203] +1 other test pass
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-dg2-433/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-6.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-463/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-6.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][204] ([Intel XE#2291]) -> [PASS][205] +2 other tests pass
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-bmg: [FAIL][206] ([Intel XE#1475]) -> [PASS][207]
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@forked-bo:
- shard-bmg: [DMESG-WARN][208] ([Intel XE#5354]) -> [PASS][209] +1 other test pass
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-bmg-8/igt@kms_cursor_legacy@forked-bo.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-3/igt@kms_cursor_legacy@forked-bo.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [SKIP][210] ([Intel XE#2316]) -> [PASS][211] +2 other tests pass
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][212] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][213]
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [FAIL][214] ([Intel XE#301]) -> [PASS][215]
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_flip@flip-vs-rmfb-interruptible:
- shard-adlp: [DMESG-WARN][216] ([Intel XE#4543] / [Intel XE#5208]) -> [PASS][217]
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-8/igt@kms_flip@flip-vs-rmfb-interruptible.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-1/igt@kms_flip@flip-vs-rmfb-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1:
- shard-adlp: [DMESG-WARN][218] ([Intel XE#4543]) -> [PASS][219] +3 other tests pass
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-8/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-9/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-x:
- shard-adlp: [DMESG-FAIL][220] ([Intel XE#4543]) -> [PASS][221] +1 other test pass
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-x.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-x.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y:
- shard-adlp: [FAIL][222] ([Intel XE#1874]) -> [PASS][223]
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
* {igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc}:
- shard-adlp: [DMESG-WARN][224] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][225]
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-2/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [SKIP][226] ([Intel XE#3012]) -> [PASS][227]
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][228] ([Intel XE#718]) -> [PASS][229]
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-bmg: [FAIL][230] ([Intel XE#5937]) -> [PASS][231]
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-bmg-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-2/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* {igt@xe_exec_system_allocator@many-stride-malloc-prefetch}:
- shard-bmg: [WARN][232] ([Intel XE#5786]) -> [PASS][233]
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-bmg-7/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-1/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
* igt@xe_module_load@load:
- shard-adlp: ([PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [SKIP][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248]) ([Intel XE#378] / [Intel XE#5612]) -> ([PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-6/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-6/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-6/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-8/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-8/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-2/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-2/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-2/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-9/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-9/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-9/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-9/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-1/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-1/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-8/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-1/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-1/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-8/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-1/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-2/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-8/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-2/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-8/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-2/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-9/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-9/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-9/igt@xe_module_load@load.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-dg2-set2: [FAIL][264] ([Intel XE#6339]) -> [PASS][265]
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-dg2-434/igt@xe_pm@s4-d3hot-basic-exec.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-466/igt@xe_pm@s4-d3hot-basic-exec.html
- shard-lnl: [FAIL][266] ([Intel XE#6339]) -> [PASS][267] +1 other test pass
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-lnl-8/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_pm@s4-mocs:
- shard-adlp: [FAIL][268] ([Intel XE#6339]) -> [PASS][269]
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-9/igt@xe_pm@s4-mocs.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@xe_pm@s4-mocs.html
* igt@xe_pmu@gt-c6-idle:
- shard-dg2-set2: [FAIL][270] ([Intel XE#6366]) -> [PASS][271]
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-dg2-435/igt@xe_pmu@gt-c6-idle.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-dg2-434/igt@xe_pmu@gt-c6-idle.html
#### Warnings ####
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-adlp: [FAIL][272] ([Intel XE#1874]) -> [DMESG-FAIL][273] ([Intel XE#4543])
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [FAIL][274] ([Intel XE#1178]) -> [SKIP][275] ([Intel XE#2341]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-bmg-4/igt@kms_content_protection@lic-type-0.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][276] ([Intel XE#2312]) -> [SKIP][277] ([Intel XE#2311]) +8 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][278] ([Intel XE#2311]) -> [SKIP][279] ([Intel XE#2312]) +11 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][280] ([Intel XE#5390]) -> [SKIP][281] ([Intel XE#2312]) +4 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][282] ([Intel XE#2312]) -> [SKIP][283] ([Intel XE#5390]) +5 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: [SKIP][284] ([Intel XE#2313]) -> [SKIP][285] ([Intel XE#2312]) +9 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][286] ([Intel XE#2312]) -> [SKIP][287] ([Intel XE#2313]) +9 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][288] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][289] ([Intel XE#3544])
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][290] ([Intel XE#2426]) -> [SKIP][291] ([Intel XE#2509])
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1151
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#2007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2007
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#3576]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3576
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4519
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
[Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
[Intel XE#5574]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5574
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
[Intel XE#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
[Intel XE#5610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5610
[Intel XE#5612]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5612
[Intel XE#5614]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5614
[Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624
[Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
[Intel XE#5712]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5712
[Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993
[Intel XE#6032]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6032
[Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
[Intel XE#6299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6299
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6313
[Intel XE#6318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6318
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6339
[Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
[Intel XE#6366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6366
[Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[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#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_8587 -> IGT_8588
* Linux: xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed -> xe-pw-155865v3
IGT_8587: 8587
IGT_8588: 8588
xe-3930-aaaff197c9186f4959c2bcb18035725188b950ed: aaaff197c9186f4959c2bcb18035725188b950ed
xe-pw-155865v3: 155865v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v3/index.html
[-- Attachment #2: Type: text/html, Size: 96893 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread