* [PATCH 1/3] drm/xe/pf: Use migration-friendly context IDs auto-provisioning
2025-11-05 18:32 [PATCH 0/3] PF: migration-friendly auto-provisioning Michal Wajdeczko
@ 2025-11-05 18:32 ` Michal Wajdeczko
2025-11-06 14:24 ` Piotr Piórkowski
2025-11-05 18:32 ` [PATCH 2/3] drm/xe/pf: Use migration-friendly doorbells auto-provisioning Michal Wajdeczko
` (9 subsequent siblings)
10 siblings, 1 reply; 17+ messages in thread
From: Michal Wajdeczko @ 2025-11-05 18:32 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko
Instead of trying very hard to find the largest fair number of GuC
context IDs that could be allocated for VFs on the current GT, pick
some smaller rounded down to power-of-two value that is more likely
to be provisioned in the same manner by the other PF instance:
num VFs | num contexts
--------+-------------
63..32 | 1024
31..16 | 2048
15..8 | 4096
7..4 | 8192
3..2 | 16384
1 | 32768 (regular PF)
1 | 64512 (admin only PF)
Add also helper function to determine if the PF is admin-only,
and for now use .probe_display flag for that.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c | 16 ++++++++++++++++
drivers/gpu/drm/xe/xe_sriov_pf_helpers.h | 11 +++++++++++
2 files changed, 27 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c b/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
index d90261a7ab7c..14feda215d5b 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
@@ -985,6 +985,16 @@ int xe_gt_sriov_pf_config_bulk_set_ctxs(struct xe_gt *gt, unsigned int vfid,
"GuC context IDs", no_unit, n, err);
}
+static u32 pf_profile_fair_ctxs(struct xe_gt *gt, unsigned int num_vfs)
+{
+ bool admin_only_pf = xe_sriov_pf_admin_only(gt_to_xe(gt));
+
+ if (admin_only_pf && num_vfs == 1)
+ return ALIGN_DOWN(GUC_ID_MAX, SZ_1K);
+
+ return rounddown_pow_of_two(GUC_ID_MAX / num_vfs);
+}
+
static u32 pf_estimate_fair_ctxs(struct xe_gt *gt, unsigned int num_vfs)
{
struct xe_guc_id_mgr *idm = >->uc.guc.submission_state.idm;
@@ -1017,6 +1027,7 @@ static u32 pf_estimate_fair_ctxs(struct xe_gt *gt, unsigned int num_vfs)
int xe_gt_sriov_pf_config_set_fair_ctxs(struct xe_gt *gt, unsigned int vfid,
unsigned int num_vfs)
{
+ u32 profile = pf_profile_fair_ctxs(gt, num_vfs);
u32 fair;
xe_gt_assert(gt, vfid);
@@ -1029,6 +1040,11 @@ int xe_gt_sriov_pf_config_set_fair_ctxs(struct xe_gt *gt, unsigned int vfid,
if (!fair)
return -ENOSPC;
+ fair = min(fair, profile);
+ if (fair < profile)
+ xe_gt_sriov_info(gt, "Using non-profile provisioning (%s %u vs %u)\n",
+ "GuC context IDs", fair, profile);
+
return xe_gt_sriov_pf_config_bulk_set_ctxs(gt, vfid, num_vfs, fair);
}
diff --git a/drivers/gpu/drm/xe/xe_sriov_pf_helpers.h b/drivers/gpu/drm/xe/xe_sriov_pf_helpers.h
index 4a4340fb633a..3ddeba4451cd 100644
--- a/drivers/gpu/drm/xe/xe_sriov_pf_helpers.h
+++ b/drivers/gpu/drm/xe/xe_sriov_pf_helpers.h
@@ -48,6 +48,17 @@ static inline unsigned int xe_sriov_pf_num_vfs(const struct xe_device *xe)
return pci_num_vf(to_pci_dev(xe->drm.dev));
}
+/**
+ * xe_sriov_pf_admin_only() - Check if PF is mainly used for VFs administration.
+ * @xe: the PF &xe_device
+ *
+ * Return: True if PF is mainly used for VFs administration.
+ */
+static inline bool xe_sriov_pf_admin_only(const struct xe_device *xe)
+{
+ return !xe->info.probe_display;
+}
+
static inline struct mutex *xe_sriov_pf_master_mutex(struct xe_device *xe)
{
xe_assert(xe, IS_SRIOV_PF(xe));
--
2.47.1
^ permalink raw reply related [flat|nested] 17+ messages in thread* Re: [PATCH 1/3] drm/xe/pf: Use migration-friendly context IDs auto-provisioning
2025-11-05 18:32 ` [PATCH 1/3] drm/xe/pf: Use migration-friendly context IDs auto-provisioning Michal Wajdeczko
@ 2025-11-06 14:24 ` Piotr Piórkowski
2025-11-06 16:55 ` Michal Wajdeczko
0 siblings, 1 reply; 17+ messages in thread
From: Piotr Piórkowski @ 2025-11-06 14:24 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
Michal Wajdeczko <michal.wajdeczko@intel.com> wrote on śro [2025-lis-05 19:32:50 +0100]:
> Instead of trying very hard to find the largest fair number of GuC
> context IDs that could be allocated for VFs on the current GT, pick
> some smaller rounded down to power-of-two value that is more likely
> to be provisioned in the same manner by the other PF instance:
>
> num VFs | num contexts
> --------+-------------
> 63..32 | 1024
> 31..16 | 2048
> 15..8 | 4096
> 7..4 | 8192
> 3..2 | 16384
> 1 | 32768 (regular PF)
> 1 | 64512 (admin only PF)
>
> Add also helper function to determine if the PF is admin-only,
> and for now use .probe_display flag for that.
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> ---
> drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c | 16 ++++++++++++++++
> drivers/gpu/drm/xe/xe_sriov_pf_helpers.h | 11 +++++++++++
> 2 files changed, 27 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c b/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
> index d90261a7ab7c..14feda215d5b 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
> @@ -985,6 +985,16 @@ int xe_gt_sriov_pf_config_bulk_set_ctxs(struct xe_gt *gt, unsigned int vfid,
> "GuC context IDs", no_unit, n, err);
> }
>
> +static u32 pf_profile_fair_ctxs(struct xe_gt *gt, unsigned int num_vfs)
> +{
> + bool admin_only_pf = xe_sriov_pf_admin_only(gt_to_xe(gt));
> +
> + if (admin_only_pf && num_vfs == 1)
> + return ALIGN_DOWN(GUC_ID_MAX, SZ_1K);
> +
> + return rounddown_pow_of_two(GUC_ID_MAX / num_vfs);
> +}
> +
> static u32 pf_estimate_fair_ctxs(struct xe_gt *gt, unsigned int num_vfs)
> {
> struct xe_guc_id_mgr *idm = >->uc.guc.submission_state.idm;
> @@ -1017,6 +1027,7 @@ static u32 pf_estimate_fair_ctxs(struct xe_gt *gt, unsigned int num_vfs)
> int xe_gt_sriov_pf_config_set_fair_ctxs(struct xe_gt *gt, unsigned int vfid,
> unsigned int num_vfs)
> {
> + u32 profile = pf_profile_fair_ctxs(gt, num_vfs);
> u32 fair;
>
> xe_gt_assert(gt, vfid);
> @@ -1029,6 +1040,11 @@ int xe_gt_sriov_pf_config_set_fair_ctxs(struct xe_gt *gt, unsigned int vfid,
> if (!fair)
> return -ENOSPC;
>
> + fair = min(fair, profile);
> + if (fair < profile)
> + xe_gt_sriov_info(gt, "Using non-profile provisioning (%s %u vs %u)\n",
> + "GuC context IDs", fair, profile);
> +
> return xe_gt_sriov_pf_config_bulk_set_ctxs(gt, vfid, num_vfs, fair);
> }
>
> diff --git a/drivers/gpu/drm/xe/xe_sriov_pf_helpers.h b/drivers/gpu/drm/xe/xe_sriov_pf_helpers.h
> index 4a4340fb633a..3ddeba4451cd 100644
> --- a/drivers/gpu/drm/xe/xe_sriov_pf_helpers.h
> +++ b/drivers/gpu/drm/xe/xe_sriov_pf_helpers.h
> @@ -48,6 +48,17 @@ static inline unsigned int xe_sriov_pf_num_vfs(const struct xe_device *xe)
> return pci_num_vf(to_pci_dev(xe->drm.dev));
> }
>
> +/**
> + * xe_sriov_pf_admin_only() - Check if PF is mainly used for VFs administration.
> + * @xe: the PF &xe_device
> + *
> + * Return: True if PF is mainly used for VFs administration.
> + */
> +static inline bool xe_sriov_pf_admin_only(const struct xe_device *xe)
> +{
> + return !xe->info.probe_display;
> +}
Honestly, I'm not entirely convinced by this condition for pf_admin_only.
I wonder if we shouldn't set it up differently, e.g., through a dedicated
parameter. But for now, I don't think it bothers us too much:
Reviewed-by: Piotr Piórkowski <piotr.piorkowski@intel.com>
> +
> static inline struct mutex *xe_sriov_pf_master_mutex(struct xe_device *xe)
> {
> xe_assert(xe, IS_SRIOV_PF(xe));
> --
> 2.47.1
>
--
^ permalink raw reply [flat|nested] 17+ messages in thread* Re: [PATCH 1/3] drm/xe/pf: Use migration-friendly context IDs auto-provisioning
2025-11-06 14:24 ` Piotr Piórkowski
@ 2025-11-06 16:55 ` Michal Wajdeczko
0 siblings, 0 replies; 17+ messages in thread
From: Michal Wajdeczko @ 2025-11-06 16:55 UTC (permalink / raw)
To: Piotr Piórkowski; +Cc: intel-xe
On 11/6/2025 3:24 PM, Piotr Piórkowski wrote:
> Michal Wajdeczko <michal.wajdeczko@intel.com> wrote on śro [2025-lis-05 19:32:50 +0100]:
>> Instead of trying very hard to find the largest fair number of GuC
>> context IDs that could be allocated for VFs on the current GT, pick
>> some smaller rounded down to power-of-two value that is more likely
>> to be provisioned in the same manner by the other PF instance:
>>
>> num VFs | num contexts
>> --------+-------------
>> 63..32 | 1024
>> 31..16 | 2048
>> 15..8 | 4096
>> 7..4 | 8192
>> 3..2 | 16384
>> 1 | 32768 (regular PF)
>> 1 | 64512 (admin only PF)
>>
>> Add also helper function to determine if the PF is admin-only,
>> and for now use .probe_display flag for that.
>>
>> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>> ---
>> drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c | 16 ++++++++++++++++
>> drivers/gpu/drm/xe/xe_sriov_pf_helpers.h | 11 +++++++++++
>> 2 files changed, 27 insertions(+)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c b/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
>> index d90261a7ab7c..14feda215d5b 100644
>> --- a/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
>> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
>> @@ -985,6 +985,16 @@ int xe_gt_sriov_pf_config_bulk_set_ctxs(struct xe_gt *gt, unsigned int vfid,
>> "GuC context IDs", no_unit, n, err);
>> }
>>
>> +static u32 pf_profile_fair_ctxs(struct xe_gt *gt, unsigned int num_vfs)
>> +{
>> + bool admin_only_pf = xe_sriov_pf_admin_only(gt_to_xe(gt));
>> +
>> + if (admin_only_pf && num_vfs == 1)
>> + return ALIGN_DOWN(GUC_ID_MAX, SZ_1K);
>> +
>> + return rounddown_pow_of_two(GUC_ID_MAX / num_vfs);
>> +}
>> +
>> static u32 pf_estimate_fair_ctxs(struct xe_gt *gt, unsigned int num_vfs)
>> {
>> struct xe_guc_id_mgr *idm = >->uc.guc.submission_state.idm;
>> @@ -1017,6 +1027,7 @@ static u32 pf_estimate_fair_ctxs(struct xe_gt *gt, unsigned int num_vfs)
>> int xe_gt_sriov_pf_config_set_fair_ctxs(struct xe_gt *gt, unsigned int vfid,
>> unsigned int num_vfs)
>> {
>> + u32 profile = pf_profile_fair_ctxs(gt, num_vfs);
>> u32 fair;
>>
>> xe_gt_assert(gt, vfid);
>> @@ -1029,6 +1040,11 @@ int xe_gt_sriov_pf_config_set_fair_ctxs(struct xe_gt *gt, unsigned int vfid,
>> if (!fair)
>> return -ENOSPC;
>>
>> + fair = min(fair, profile);
>> + if (fair < profile)
>> + xe_gt_sriov_info(gt, "Using non-profile provisioning (%s %u vs %u)\n",
>> + "GuC context IDs", fair, profile);
>> +
>> return xe_gt_sriov_pf_config_bulk_set_ctxs(gt, vfid, num_vfs, fair);
>> }
>>
>> diff --git a/drivers/gpu/drm/xe/xe_sriov_pf_helpers.h b/drivers/gpu/drm/xe/xe_sriov_pf_helpers.h
>> index 4a4340fb633a..3ddeba4451cd 100644
>> --- a/drivers/gpu/drm/xe/xe_sriov_pf_helpers.h
>> +++ b/drivers/gpu/drm/xe/xe_sriov_pf_helpers.h
>> @@ -48,6 +48,17 @@ static inline unsigned int xe_sriov_pf_num_vfs(const struct xe_device *xe)
>> return pci_num_vf(to_pci_dev(xe->drm.dev));
>> }
>>
>> +/**
>> + * xe_sriov_pf_admin_only() - Check if PF is mainly used for VFs administration.
>> + * @xe: the PF &xe_device
>> + *
>> + * Return: True if PF is mainly used for VFs administration.
>> + */
>> +static inline bool xe_sriov_pf_admin_only(const struct xe_device *xe)
>> +{
>> + return !xe->info.probe_display;
>> +}
>
> Honestly, I'm not entirely convinced by this condition for pf_admin_only.
> I wonder if we shouldn't set it up differently, e.g., through a dedicated
> parameter.
yes, that's exactly the plan (but it's on my TODO list and I needed something
sooner, and logic that uses .probe_display shall be correct in 99% cases)
> But for now, I don't think it bothers us too much:
> Reviewed-by: Piotr Piórkowski <piotr.piorkowski@intel.com>
thanks!
>
>> +
>> static inline struct mutex *xe_sriov_pf_master_mutex(struct xe_device *xe)
>> {
>> xe_assert(xe, IS_SRIOV_PF(xe));
>> --
>> 2.47.1
>>
>
^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH 2/3] drm/xe/pf: Use migration-friendly doorbells auto-provisioning
2025-11-05 18:32 [PATCH 0/3] PF: migration-friendly auto-provisioning Michal Wajdeczko
2025-11-05 18:32 ` [PATCH 1/3] drm/xe/pf: Use migration-friendly context IDs auto-provisioning Michal Wajdeczko
@ 2025-11-05 18:32 ` Michal Wajdeczko
2025-11-06 14:39 ` Piotr Piórkowski
2025-11-05 18:32 ` [PATCH 3/3] drm/xe/tests: Add KUnit tests for PF fair provisioning Michal Wajdeczko
` (8 subsequent siblings)
10 siblings, 1 reply; 17+ messages in thread
From: Michal Wajdeczko @ 2025-11-05 18:32 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko
Instead of trying very hard to find the largest fair number of GuC
doorbell IDs that could be allocated for VFs on the current GT, pick
some smaller rounded down to power-of-two value that is more likely
to be provisioned in the same manner by the other PF instance:
num VFs | num doorbells
--------+--------------
63..32 | 4
31..16 | 8
15..8 | 16
7..4 | 32
3..2 | 64
1 | 128 (regular PF)
1 | 240 (admin only PF)
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c b/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
index 14feda215d5b..701889e5dded 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
@@ -1249,6 +1249,17 @@ int xe_gt_sriov_pf_config_bulk_set_dbs(struct xe_gt *gt, unsigned int vfid,
"GuC doorbell IDs", no_unit, n, err);
}
+static u32 pf_profile_fair_dbs(struct xe_gt *gt, unsigned int num_vfs)
+{
+ bool admin_only_pf = xe_sriov_pf_admin_only(gt_to_xe(gt));
+
+ /* XXX: preliminary */
+ if (admin_only_pf && num_vfs == 1)
+ return GUC_NUM_DOORBELLS - SZ_16;
+
+ return rounddown_pow_of_two(GUC_NUM_DOORBELLS / (num_vfs + 1));
+}
+
static u32 pf_estimate_fair_dbs(struct xe_gt *gt, unsigned int num_vfs)
{
struct xe_guc_db_mgr *dbm = >->uc.guc.dbm;
@@ -1281,6 +1292,7 @@ static u32 pf_estimate_fair_dbs(struct xe_gt *gt, unsigned int num_vfs)
int xe_gt_sriov_pf_config_set_fair_dbs(struct xe_gt *gt, unsigned int vfid,
unsigned int num_vfs)
{
+ u32 profile = pf_profile_fair_dbs(gt, num_vfs);
u32 fair;
xe_gt_assert(gt, vfid);
@@ -1293,6 +1305,11 @@ int xe_gt_sriov_pf_config_set_fair_dbs(struct xe_gt *gt, unsigned int vfid,
if (!fair)
return -ENOSPC;
+ fair = min(fair, profile);
+ if (fair < profile)
+ xe_gt_sriov_info(gt, "Using non-profile provisioning (%s %u vs %u)\n",
+ "GuC doorbell IDs", fair, profile);
+
return xe_gt_sriov_pf_config_bulk_set_dbs(gt, vfid, num_vfs, fair);
}
--
2.47.1
^ permalink raw reply related [flat|nested] 17+ messages in thread* Re: [PATCH 2/3] drm/xe/pf: Use migration-friendly doorbells auto-provisioning
2025-11-05 18:32 ` [PATCH 2/3] drm/xe/pf: Use migration-friendly doorbells auto-provisioning Michal Wajdeczko
@ 2025-11-06 14:39 ` Piotr Piórkowski
0 siblings, 0 replies; 17+ messages in thread
From: Piotr Piórkowski @ 2025-11-06 14:39 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
Michal Wajdeczko <michal.wajdeczko@intel.com> wrote on śro [2025-lis-05 19:32:51 +0100]:
> Instead of trying very hard to find the largest fair number of GuC
> doorbell IDs that could be allocated for VFs on the current GT, pick
> some smaller rounded down to power-of-two value that is more likely
> to be provisioned in the same manner by the other PF instance:
>
> num VFs | num doorbells
> --------+--------------
> 63..32 | 4
> 31..16 | 8
> 15..8 | 16
> 7..4 | 32
> 3..2 | 64
> 1 | 128 (regular PF)
> 1 | 240 (admin only PF)
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> ---
> drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c | 17 +++++++++++++++++
> 1 file changed, 17 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c b/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
> index 14feda215d5b..701889e5dded 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
> @@ -1249,6 +1249,17 @@ int xe_gt_sriov_pf_config_bulk_set_dbs(struct xe_gt *gt, unsigned int vfid,
> "GuC doorbell IDs", no_unit, n, err);
> }
>
> +static u32 pf_profile_fair_dbs(struct xe_gt *gt, unsigned int num_vfs)
> +{
> + bool admin_only_pf = xe_sriov_pf_admin_only(gt_to_xe(gt));
> +
> + /* XXX: preliminary */
> + if (admin_only_pf && num_vfs == 1)
> + return GUC_NUM_DOORBELLS - SZ_16;
> +
> + return rounddown_pow_of_two(GUC_NUM_DOORBELLS / (num_vfs + 1));
> +}
> +
> static u32 pf_estimate_fair_dbs(struct xe_gt *gt, unsigned int num_vfs)
> {
> struct xe_guc_db_mgr *dbm = >->uc.guc.dbm;
> @@ -1281,6 +1292,7 @@ static u32 pf_estimate_fair_dbs(struct xe_gt *gt, unsigned int num_vfs)
> int xe_gt_sriov_pf_config_set_fair_dbs(struct xe_gt *gt, unsigned int vfid,
> unsigned int num_vfs)
> {
> + u32 profile = pf_profile_fair_dbs(gt, num_vfs);
> u32 fair;
>
> xe_gt_assert(gt, vfid);
> @@ -1293,6 +1305,11 @@ int xe_gt_sriov_pf_config_set_fair_dbs(struct xe_gt *gt, unsigned int vfid,
> if (!fair)
> return -ENOSPC;
>
> + fair = min(fair, profile);
> + if (fair < profile)
> + xe_gt_sriov_info(gt, "Using non-profile provisioning (%s %u vs %u)\n",
> + "GuC doorbell IDs", fair, profile);
> +
> return xe_gt_sriov_pf_config_bulk_set_dbs(gt, vfid, num_vfs, fair);
> }
LGTM:
Reviewed-by: Piotr Piórkowski <piotr.piorkowski@intel.com>
>
> --
> 2.47.1
>
--
^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH 3/3] drm/xe/tests: Add KUnit tests for PF fair provisioning
2025-11-05 18:32 [PATCH 0/3] PF: migration-friendly auto-provisioning Michal Wajdeczko
2025-11-05 18:32 ` [PATCH 1/3] drm/xe/pf: Use migration-friendly context IDs auto-provisioning Michal Wajdeczko
2025-11-05 18:32 ` [PATCH 2/3] drm/xe/pf: Use migration-friendly doorbells auto-provisioning Michal Wajdeczko
@ 2025-11-05 18:32 ` Michal Wajdeczko
2025-11-06 16:09 ` Piotr Piórkowski
2025-11-06 16:59 ` [PATCH v2 " Michal Wajdeczko
2025-11-05 21:28 ` ✗ CI.checkpatch: warning for PF: migration-friendly auto-provisioning Patchwork
` (7 subsequent siblings)
10 siblings, 2 replies; 17+ messages in thread
From: Michal Wajdeczko @ 2025-11-05 18:32 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko
Add test cases to check outcome of fair GuC context or doorbells
IDs allocations for regular and admin-only PF mode.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
.../xe/tests/xe_gt_sriov_pf_config_kunit.c | 162 ++++++++++++++++++
drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c | 4 +
2 files changed, 166 insertions(+)
create mode 100644 drivers/gpu/drm/xe/tests/xe_gt_sriov_pf_config_kunit.c
diff --git a/drivers/gpu/drm/xe/tests/xe_gt_sriov_pf_config_kunit.c b/drivers/gpu/drm/xe/tests/xe_gt_sriov_pf_config_kunit.c
new file mode 100644
index 000000000000..162a8a1a1dc6
--- /dev/null
+++ b/drivers/gpu/drm/xe/tests/xe_gt_sriov_pf_config_kunit.c
@@ -0,0 +1,162 @@
+// SPDX-License-Identifier: GPL-2.0 AND MIT
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#include <kunit/static_stub.h>
+#include <kunit/test.h>
+#include <kunit/test-bug.h>
+
+#include "xe_kunit_helpers.h"
+#include "xe_pci_test.h"
+
+#define TEST_MAX_VFS 63
+
+static void pf_set_admin_mode(struct xe_device *xe, bool enable)
+{
+ /* should match logic of xe_sriov_pf_admin_only() */
+ xe->info.probe_display = !enable;
+ KUNIT_EXPECT_EQ(kunit_get_current_test(), enable, xe_sriov_pf_admin_only(xe));
+}
+
+static const void *num_vfs_gen_param(struct kunit *test, const void *prev, char *desc)
+{
+ unsigned long next = 1 + (unsigned long)prev;
+
+ if (next > TEST_MAX_VFS)
+ return NULL;
+ snprintf(desc, KUNIT_PARAM_DESC_SIZE, "%lu VF%s",
+ next, str_plural(next));
+ return (void *)next;
+}
+
+static int pf_gt_config_test_init(struct kunit *test)
+{
+ struct xe_pci_fake_data fake = {
+ .sriov_mode = XE_SRIOV_MODE_PF,
+ .platform = XE_TIGERLAKE, /* any random platform with SR-IOV */
+ .subplatform = XE_SUBPLATFORM_NONE,
+ };
+ struct xe_device *xe;
+ struct xe_gt *gt;
+
+ test->priv = &fake;
+ xe_kunit_helper_xe_device_test_init(test);
+
+ xe = test->priv;
+ KUNIT_ASSERT_TRUE(test, IS_SRIOV_PF(xe));
+
+ gt = xe_root_mmio_gt(xe);
+ KUNIT_ASSERT_NOT_ERR_OR_NULL(test, gt);
+ test->priv = gt;
+
+ /* pretend it can support up to 63 VFs */
+ xe->sriov.pf.device_total_vfs = TEST_MAX_VFS;
+ xe->sriov.pf.driver_max_vfs = TEST_MAX_VFS;
+ KUNIT_ASSERT_EQ(test, xe_sriov_pf_get_totalvfs(xe), 63);
+
+ pf_set_admin_mode(xe, false);
+ KUNIT_ASSERT_EQ(test, xe_sriov_init(xe), 0);
+
+ /* more sanity checks */
+ KUNIT_EXPECT_EQ(test, GUC_ID_MAX + 1, SZ_64K);
+ KUNIT_EXPECT_EQ(test, GUC_NUM_DOORBELLS, SZ_256);
+
+ return 0;
+}
+
+static void fair_contexts_1vf(struct kunit *test)
+{
+ struct xe_gt *gt = test->priv;
+ struct xe_device *xe = gt_to_xe(gt);
+
+ pf_set_admin_mode(xe, false);
+ KUNIT_ASSERT_FALSE(test, xe_sriov_pf_admin_only(xe));
+ KUNIT_EXPECT_EQ(test, SZ_32K, pf_profile_fair_ctxs(gt, 1));
+
+ pf_set_admin_mode(xe, true);
+ KUNIT_ASSERT_TRUE(test, xe_sriov_pf_admin_only(xe));
+ KUNIT_EXPECT_EQ(test, SZ_64K - SZ_1K, pf_profile_fair_ctxs(gt, 1));
+}
+
+static void fair_contexts(struct kunit *test)
+{
+ unsigned int num_vfs = (unsigned long)test->param_value;
+ struct xe_gt *gt = test->priv;
+ struct xe_device *xe = gt_to_xe(gt);
+
+ pf_set_admin_mode(xe, false);
+ KUNIT_ASSERT_FALSE(test, xe_sriov_pf_admin_only(xe));
+
+ KUNIT_EXPECT_TRUE(test, is_power_of_2(pf_profile_fair_ctxs(gt, num_vfs)));
+ KUNIT_EXPECT_GT(test, GUC_ID_MAX, num_vfs * pf_profile_fair_ctxs(gt, num_vfs));
+
+ if (num_vfs > 31)
+ KUNIT_ASSERT_EQ(test, SZ_1K, pf_profile_fair_ctxs(gt, num_vfs));
+ else if (num_vfs > 15)
+ KUNIT_ASSERT_EQ(test, SZ_2K, pf_profile_fair_ctxs(gt, num_vfs));
+ else if (num_vfs > 7)
+ KUNIT_ASSERT_EQ(test, SZ_4K, pf_profile_fair_ctxs(gt, num_vfs));
+ else if (num_vfs > 3)
+ KUNIT_ASSERT_EQ(test, SZ_8K, pf_profile_fair_ctxs(gt, num_vfs));
+ else if (num_vfs > 1)
+ KUNIT_ASSERT_EQ(test, SZ_16K, pf_profile_fair_ctxs(gt, num_vfs));
+ else
+ KUNIT_ASSERT_EQ(test, SZ_32K, pf_profile_fair_ctxs(gt, num_vfs));
+}
+
+static void fair_doorbells_1vf(struct kunit *test)
+{
+ struct xe_gt *gt = test->priv;
+ struct xe_device *xe = gt_to_xe(gt);
+
+ pf_set_admin_mode(xe, false);
+ KUNIT_ASSERT_FALSE(test, xe_sriov_pf_admin_only(xe));
+ KUNIT_EXPECT_EQ(test, 128, pf_profile_fair_dbs(gt, 1));
+
+ pf_set_admin_mode(xe, true);
+ KUNIT_ASSERT_TRUE(test, xe_sriov_pf_admin_only(xe));
+ KUNIT_EXPECT_EQ(test, 240, pf_profile_fair_dbs(gt, 1));
+}
+
+static void fair_doorbells(struct kunit *test)
+{
+ unsigned int num_vfs = (unsigned long)test->param_value;
+ struct xe_gt *gt = test->priv;
+ struct xe_device *xe = gt_to_xe(gt);
+
+ pf_set_admin_mode(xe, false);
+ KUNIT_ASSERT_FALSE(test, xe_sriov_pf_admin_only(xe));
+
+ KUNIT_EXPECT_TRUE(test, is_power_of_2(pf_profile_fair_dbs(gt, num_vfs)));
+ KUNIT_EXPECT_GE(test, GUC_NUM_DOORBELLS, (num_vfs + 1) * pf_profile_fair_dbs(gt, num_vfs));
+
+ if (num_vfs > 31)
+ KUNIT_ASSERT_EQ(test, SZ_4, pf_profile_fair_dbs(gt, num_vfs));
+ else if (num_vfs > 15)
+ KUNIT_ASSERT_EQ(test, SZ_8, pf_profile_fair_dbs(gt, num_vfs));
+ else if (num_vfs > 7)
+ KUNIT_ASSERT_EQ(test, SZ_16, pf_profile_fair_dbs(gt, num_vfs));
+ else if (num_vfs > 3)
+ KUNIT_ASSERT_EQ(test, SZ_32, pf_profile_fair_dbs(gt, num_vfs));
+ else if (num_vfs > 1)
+ KUNIT_ASSERT_EQ(test, SZ_64, pf_profile_fair_dbs(gt, num_vfs));
+ else
+ KUNIT_ASSERT_EQ(test, SZ_128, pf_profile_fair_dbs(gt, num_vfs));
+}
+
+static struct kunit_case pf_gt_confit_test_cases[] = {
+ KUNIT_CASE(fair_contexts_1vf),
+ KUNIT_CASE(fair_doorbells_1vf),
+ KUNIT_CASE_PARAM(fair_contexts, num_vfs_gen_param),
+ KUNIT_CASE_PARAM(fair_doorbells, num_vfs_gen_param),
+ {}
+};
+
+static struct kunit_suite pf_gt_config_suite = {
+ .name = "pf_gt_config",
+ .test_cases = pf_gt_confit_test_cases,
+ .init = pf_gt_config_test_init,
+};
+
+kunit_test_suite(pf_gt_config_suite);
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c b/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
index 701889e5dded..80cc3f2cd047 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
@@ -2826,3 +2826,7 @@ int xe_gt_sriov_pf_config_print_available_ggtt(struct xe_gt *gt, struct drm_prin
return 0;
}
+
+#if IS_BUILTIN(CONFIG_DRM_XE_KUNIT_TEST)
+#include "tests/xe_gt_sriov_pf_config_kunit.c"
+#endif
--
2.47.1
^ permalink raw reply related [flat|nested] 17+ messages in thread* Re: [PATCH 3/3] drm/xe/tests: Add KUnit tests for PF fair provisioning
2025-11-05 18:32 ` [PATCH 3/3] drm/xe/tests: Add KUnit tests for PF fair provisioning Michal Wajdeczko
@ 2025-11-06 16:09 ` Piotr Piórkowski
2025-11-06 16:59 ` [PATCH v2 " Michal Wajdeczko
1 sibling, 0 replies; 17+ messages in thread
From: Piotr Piórkowski @ 2025-11-06 16:09 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
Michal Wajdeczko <michal.wajdeczko@intel.com> wrote on śro [2025-lis-05 19:32:52 +0100]:
> Add test cases to check outcome of fair GuC context or doorbells
> IDs allocations for regular and admin-only PF mode.
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> ---
> .../xe/tests/xe_gt_sriov_pf_config_kunit.c | 162 ++++++++++++++++++
> drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c | 4 +
> 2 files changed, 166 insertions(+)
> create mode 100644 drivers/gpu/drm/xe/tests/xe_gt_sriov_pf_config_kunit.c
>
> diff --git a/drivers/gpu/drm/xe/tests/xe_gt_sriov_pf_config_kunit.c b/drivers/gpu/drm/xe/tests/xe_gt_sriov_pf_config_kunit.c
> new file mode 100644
> index 000000000000..162a8a1a1dc6
> --- /dev/null
> +++ b/drivers/gpu/drm/xe/tests/xe_gt_sriov_pf_config_kunit.c
> @@ -0,0 +1,162 @@
> +// SPDX-License-Identifier: GPL-2.0 AND MIT
> +/*
> + * Copyright © 2025 Intel Corporation
> + */
> +
> +#include <kunit/static_stub.h>
> +#include <kunit/test.h>
> +#include <kunit/test-bug.h>
> +
> +#include "xe_kunit_helpers.h"
> +#include "xe_pci_test.h"
> +
> +#define TEST_MAX_VFS 63
> +
> +static void pf_set_admin_mode(struct xe_device *xe, bool enable)
> +{
> + /* should match logic of xe_sriov_pf_admin_only() */
> + xe->info.probe_display = !enable;
> + KUNIT_EXPECT_EQ(kunit_get_current_test(), enable, xe_sriov_pf_admin_only(xe));
> +}
> +
> +static const void *num_vfs_gen_param(struct kunit *test, const void *prev, char *desc)
> +{
> + unsigned long next = 1 + (unsigned long)prev;
> +
> + if (next > TEST_MAX_VFS)
> + return NULL;
> + snprintf(desc, KUNIT_PARAM_DESC_SIZE, "%lu VF%s",
> + next, str_plural(next));
> + return (void *)next;
> +}
> +
> +static int pf_gt_config_test_init(struct kunit *test)
> +{
> + struct xe_pci_fake_data fake = {
> + .sriov_mode = XE_SRIOV_MODE_PF,
> + .platform = XE_TIGERLAKE, /* any random platform with SR-IOV */
> + .subplatform = XE_SUBPLATFORM_NONE,
> + };
> + struct xe_device *xe;
> + struct xe_gt *gt;
> +
> + test->priv = &fake;
> + xe_kunit_helper_xe_device_test_init(test);
> +
> + xe = test->priv;
> + KUNIT_ASSERT_TRUE(test, IS_SRIOV_PF(xe));
> +
> + gt = xe_root_mmio_gt(xe);
> + KUNIT_ASSERT_NOT_ERR_OR_NULL(test, gt);
> + test->priv = gt;
> +
> + /* pretend it can support up to 63 VFs */
> + xe->sriov.pf.device_total_vfs = TEST_MAX_VFS;
> + xe->sriov.pf.driver_max_vfs = TEST_MAX_VFS;
> + KUNIT_ASSERT_EQ(test, xe_sriov_pf_get_totalvfs(xe), 63);
> +
> + pf_set_admin_mode(xe, false);
> + KUNIT_ASSERT_EQ(test, xe_sriov_init(xe), 0);
> +
> + /* more sanity checks */
> + KUNIT_EXPECT_EQ(test, GUC_ID_MAX + 1, SZ_64K);
> + KUNIT_EXPECT_EQ(test, GUC_NUM_DOORBELLS, SZ_256);
> +
> + return 0;
> +}
> +
> +static void fair_contexts_1vf(struct kunit *test)
> +{
> + struct xe_gt *gt = test->priv;
> + struct xe_device *xe = gt_to_xe(gt);
> +
> + pf_set_admin_mode(xe, false);
> + KUNIT_ASSERT_FALSE(test, xe_sriov_pf_admin_only(xe));
> + KUNIT_EXPECT_EQ(test, SZ_32K, pf_profile_fair_ctxs(gt, 1));
> +
> + pf_set_admin_mode(xe, true);
> + KUNIT_ASSERT_TRUE(test, xe_sriov_pf_admin_only(xe));
> + KUNIT_EXPECT_EQ(test, SZ_64K - SZ_1K, pf_profile_fair_ctxs(gt, 1));
> +}
> +
> +static void fair_contexts(struct kunit *test)
> +{
> + unsigned int num_vfs = (unsigned long)test->param_value;
> + struct xe_gt *gt = test->priv;
> + struct xe_device *xe = gt_to_xe(gt);
> +
> + pf_set_admin_mode(xe, false);
> + KUNIT_ASSERT_FALSE(test, xe_sriov_pf_admin_only(xe));
> +
> + KUNIT_EXPECT_TRUE(test, is_power_of_2(pf_profile_fair_ctxs(gt, num_vfs)));
> + KUNIT_EXPECT_GT(test, GUC_ID_MAX, num_vfs * pf_profile_fair_ctxs(gt, num_vfs));
> +
> + if (num_vfs > 31)
> + KUNIT_ASSERT_EQ(test, SZ_1K, pf_profile_fair_ctxs(gt, num_vfs));
> + else if (num_vfs > 15)
> + KUNIT_ASSERT_EQ(test, SZ_2K, pf_profile_fair_ctxs(gt, num_vfs));
> + else if (num_vfs > 7)
> + KUNIT_ASSERT_EQ(test, SZ_4K, pf_profile_fair_ctxs(gt, num_vfs));
> + else if (num_vfs > 3)
> + KUNIT_ASSERT_EQ(test, SZ_8K, pf_profile_fair_ctxs(gt, num_vfs));
> + else if (num_vfs > 1)
> + KUNIT_ASSERT_EQ(test, SZ_16K, pf_profile_fair_ctxs(gt, num_vfs));
> + else
> + KUNIT_ASSERT_EQ(test, SZ_32K, pf_profile_fair_ctxs(gt, num_vfs));
> +}
> +
> +static void fair_doorbells_1vf(struct kunit *test)
> +{
> + struct xe_gt *gt = test->priv;
> + struct xe_device *xe = gt_to_xe(gt);
> +
> + pf_set_admin_mode(xe, false);
> + KUNIT_ASSERT_FALSE(test, xe_sriov_pf_admin_only(xe));
> + KUNIT_EXPECT_EQ(test, 128, pf_profile_fair_dbs(gt, 1));
> +
> + pf_set_admin_mode(xe, true);
> + KUNIT_ASSERT_TRUE(test, xe_sriov_pf_admin_only(xe));
> + KUNIT_EXPECT_EQ(test, 240, pf_profile_fair_dbs(gt, 1));
> +}
> +
> +static void fair_doorbells(struct kunit *test)
> +{
> + unsigned int num_vfs = (unsigned long)test->param_value;
> + struct xe_gt *gt = test->priv;
> + struct xe_device *xe = gt_to_xe(gt);
> +
> + pf_set_admin_mode(xe, false);
> + KUNIT_ASSERT_FALSE(test, xe_sriov_pf_admin_only(xe));
> +
> + KUNIT_EXPECT_TRUE(test, is_power_of_2(pf_profile_fair_dbs(gt, num_vfs)));
> + KUNIT_EXPECT_GE(test, GUC_NUM_DOORBELLS, (num_vfs + 1) * pf_profile_fair_dbs(gt, num_vfs));
> +
> + if (num_vfs > 31)
> + KUNIT_ASSERT_EQ(test, SZ_4, pf_profile_fair_dbs(gt, num_vfs));
> + else if (num_vfs > 15)
> + KUNIT_ASSERT_EQ(test, SZ_8, pf_profile_fair_dbs(gt, num_vfs));
> + else if (num_vfs > 7)
> + KUNIT_ASSERT_EQ(test, SZ_16, pf_profile_fair_dbs(gt, num_vfs));
> + else if (num_vfs > 3)
> + KUNIT_ASSERT_EQ(test, SZ_32, pf_profile_fair_dbs(gt, num_vfs));
> + else if (num_vfs > 1)
> + KUNIT_ASSERT_EQ(test, SZ_64, pf_profile_fair_dbs(gt, num_vfs));
> + else
> + KUNIT_ASSERT_EQ(test, SZ_128, pf_profile_fair_dbs(gt, num_vfs));
> +}
> +
> +static struct kunit_case pf_gt_confit_test_cases[] = {
typo
> + KUNIT_CASE(fair_contexts_1vf),
> + KUNIT_CASE(fair_doorbells_1vf),
> + KUNIT_CASE_PARAM(fair_contexts, num_vfs_gen_param),
> + KUNIT_CASE_PARAM(fair_doorbells, num_vfs_gen_param),
> + {}
> +};
> +
> +static struct kunit_suite pf_gt_config_suite = {
> + .name = "pf_gt_config",
> + .test_cases = pf_gt_confit_test_cases,
> + .init = pf_gt_config_test_init,
> +};
> +
> +kunit_test_suite(pf_gt_config_suite);
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c b/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
> index 701889e5dded..80cc3f2cd047 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
> @@ -2826,3 +2826,7 @@ int xe_gt_sriov_pf_config_print_available_ggtt(struct xe_gt *gt, struct drm_prin
>
> return 0;
> }
> +
> +#if IS_BUILTIN(CONFIG_DRM_XE_KUNIT_TEST)
> +#include "tests/xe_gt_sriov_pf_config_kunit.c"
> +#endif
one typo but the rest looks okay:
Reviewed-by: Piotr Piórkowski <piotr.piorkowski@intel.com>
> --
> 2.47.1
>
--
^ permalink raw reply [flat|nested] 17+ messages in thread* [PATCH v2 3/3] drm/xe/tests: Add KUnit tests for PF fair provisioning
2025-11-05 18:32 ` [PATCH 3/3] drm/xe/tests: Add KUnit tests for PF fair provisioning Michal Wajdeczko
2025-11-06 16:09 ` Piotr Piórkowski
@ 2025-11-06 16:59 ` Michal Wajdeczko
1 sibling, 0 replies; 17+ messages in thread
From: Michal Wajdeczko @ 2025-11-06 16:59 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Piotr Piórkowski
Add test cases to check outcome of fair GuC context or doorbells
IDs allocations for regular and admin-only PF mode.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Piotr Piórkowski <piotr.piorkowski@intel.com>
---
v2: fix typo (Piotr)
---
.../xe/tests/xe_gt_sriov_pf_config_kunit.c | 162 ++++++++++++++++++
drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c | 4 +
2 files changed, 166 insertions(+)
create mode 100644 drivers/gpu/drm/xe/tests/xe_gt_sriov_pf_config_kunit.c
diff --git a/drivers/gpu/drm/xe/tests/xe_gt_sriov_pf_config_kunit.c b/drivers/gpu/drm/xe/tests/xe_gt_sriov_pf_config_kunit.c
new file mode 100644
index 000000000000..cb3db3e793e1
--- /dev/null
+++ b/drivers/gpu/drm/xe/tests/xe_gt_sriov_pf_config_kunit.c
@@ -0,0 +1,162 @@
+// SPDX-License-Identifier: GPL-2.0 AND MIT
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#include <kunit/static_stub.h>
+#include <kunit/test.h>
+#include <kunit/test-bug.h>
+
+#include "xe_kunit_helpers.h"
+#include "xe_pci_test.h"
+
+#define TEST_MAX_VFS 63
+
+static void pf_set_admin_mode(struct xe_device *xe, bool enable)
+{
+ /* should match logic of xe_sriov_pf_admin_only() */
+ xe->info.probe_display = !enable;
+ KUNIT_EXPECT_EQ(kunit_get_current_test(), enable, xe_sriov_pf_admin_only(xe));
+}
+
+static const void *num_vfs_gen_param(struct kunit *test, const void *prev, char *desc)
+{
+ unsigned long next = 1 + (unsigned long)prev;
+
+ if (next > TEST_MAX_VFS)
+ return NULL;
+ snprintf(desc, KUNIT_PARAM_DESC_SIZE, "%lu VF%s",
+ next, str_plural(next));
+ return (void *)next;
+}
+
+static int pf_gt_config_test_init(struct kunit *test)
+{
+ struct xe_pci_fake_data fake = {
+ .sriov_mode = XE_SRIOV_MODE_PF,
+ .platform = XE_TIGERLAKE, /* any random platform with SR-IOV */
+ .subplatform = XE_SUBPLATFORM_NONE,
+ };
+ struct xe_device *xe;
+ struct xe_gt *gt;
+
+ test->priv = &fake;
+ xe_kunit_helper_xe_device_test_init(test);
+
+ xe = test->priv;
+ KUNIT_ASSERT_TRUE(test, IS_SRIOV_PF(xe));
+
+ gt = xe_root_mmio_gt(xe);
+ KUNIT_ASSERT_NOT_ERR_OR_NULL(test, gt);
+ test->priv = gt;
+
+ /* pretend it can support up to 63 VFs */
+ xe->sriov.pf.device_total_vfs = TEST_MAX_VFS;
+ xe->sriov.pf.driver_max_vfs = TEST_MAX_VFS;
+ KUNIT_ASSERT_EQ(test, xe_sriov_pf_get_totalvfs(xe), 63);
+
+ pf_set_admin_mode(xe, false);
+ KUNIT_ASSERT_EQ(test, xe_sriov_init(xe), 0);
+
+ /* more sanity checks */
+ KUNIT_EXPECT_EQ(test, GUC_ID_MAX + 1, SZ_64K);
+ KUNIT_EXPECT_EQ(test, GUC_NUM_DOORBELLS, SZ_256);
+
+ return 0;
+}
+
+static void fair_contexts_1vf(struct kunit *test)
+{
+ struct xe_gt *gt = test->priv;
+ struct xe_device *xe = gt_to_xe(gt);
+
+ pf_set_admin_mode(xe, false);
+ KUNIT_ASSERT_FALSE(test, xe_sriov_pf_admin_only(xe));
+ KUNIT_EXPECT_EQ(test, SZ_32K, pf_profile_fair_ctxs(gt, 1));
+
+ pf_set_admin_mode(xe, true);
+ KUNIT_ASSERT_TRUE(test, xe_sriov_pf_admin_only(xe));
+ KUNIT_EXPECT_EQ(test, SZ_64K - SZ_1K, pf_profile_fair_ctxs(gt, 1));
+}
+
+static void fair_contexts(struct kunit *test)
+{
+ unsigned int num_vfs = (unsigned long)test->param_value;
+ struct xe_gt *gt = test->priv;
+ struct xe_device *xe = gt_to_xe(gt);
+
+ pf_set_admin_mode(xe, false);
+ KUNIT_ASSERT_FALSE(test, xe_sriov_pf_admin_only(xe));
+
+ KUNIT_EXPECT_TRUE(test, is_power_of_2(pf_profile_fair_ctxs(gt, num_vfs)));
+ KUNIT_EXPECT_GT(test, GUC_ID_MAX, num_vfs * pf_profile_fair_ctxs(gt, num_vfs));
+
+ if (num_vfs > 31)
+ KUNIT_ASSERT_EQ(test, SZ_1K, pf_profile_fair_ctxs(gt, num_vfs));
+ else if (num_vfs > 15)
+ KUNIT_ASSERT_EQ(test, SZ_2K, pf_profile_fair_ctxs(gt, num_vfs));
+ else if (num_vfs > 7)
+ KUNIT_ASSERT_EQ(test, SZ_4K, pf_profile_fair_ctxs(gt, num_vfs));
+ else if (num_vfs > 3)
+ KUNIT_ASSERT_EQ(test, SZ_8K, pf_profile_fair_ctxs(gt, num_vfs));
+ else if (num_vfs > 1)
+ KUNIT_ASSERT_EQ(test, SZ_16K, pf_profile_fair_ctxs(gt, num_vfs));
+ else
+ KUNIT_ASSERT_EQ(test, SZ_32K, pf_profile_fair_ctxs(gt, num_vfs));
+}
+
+static void fair_doorbells_1vf(struct kunit *test)
+{
+ struct xe_gt *gt = test->priv;
+ struct xe_device *xe = gt_to_xe(gt);
+
+ pf_set_admin_mode(xe, false);
+ KUNIT_ASSERT_FALSE(test, xe_sriov_pf_admin_only(xe));
+ KUNIT_EXPECT_EQ(test, 128, pf_profile_fair_dbs(gt, 1));
+
+ pf_set_admin_mode(xe, true);
+ KUNIT_ASSERT_TRUE(test, xe_sriov_pf_admin_only(xe));
+ KUNIT_EXPECT_EQ(test, 240, pf_profile_fair_dbs(gt, 1));
+}
+
+static void fair_doorbells(struct kunit *test)
+{
+ unsigned int num_vfs = (unsigned long)test->param_value;
+ struct xe_gt *gt = test->priv;
+ struct xe_device *xe = gt_to_xe(gt);
+
+ pf_set_admin_mode(xe, false);
+ KUNIT_ASSERT_FALSE(test, xe_sriov_pf_admin_only(xe));
+
+ KUNIT_EXPECT_TRUE(test, is_power_of_2(pf_profile_fair_dbs(gt, num_vfs)));
+ KUNIT_EXPECT_GE(test, GUC_NUM_DOORBELLS, (num_vfs + 1) * pf_profile_fair_dbs(gt, num_vfs));
+
+ if (num_vfs > 31)
+ KUNIT_ASSERT_EQ(test, SZ_4, pf_profile_fair_dbs(gt, num_vfs));
+ else if (num_vfs > 15)
+ KUNIT_ASSERT_EQ(test, SZ_8, pf_profile_fair_dbs(gt, num_vfs));
+ else if (num_vfs > 7)
+ KUNIT_ASSERT_EQ(test, SZ_16, pf_profile_fair_dbs(gt, num_vfs));
+ else if (num_vfs > 3)
+ KUNIT_ASSERT_EQ(test, SZ_32, pf_profile_fair_dbs(gt, num_vfs));
+ else if (num_vfs > 1)
+ KUNIT_ASSERT_EQ(test, SZ_64, pf_profile_fair_dbs(gt, num_vfs));
+ else
+ KUNIT_ASSERT_EQ(test, SZ_128, pf_profile_fair_dbs(gt, num_vfs));
+}
+
+static struct kunit_case pf_gt_config_test_cases[] = {
+ KUNIT_CASE(fair_contexts_1vf),
+ KUNIT_CASE(fair_doorbells_1vf),
+ KUNIT_CASE_PARAM(fair_contexts, num_vfs_gen_param),
+ KUNIT_CASE_PARAM(fair_doorbells, num_vfs_gen_param),
+ {}
+};
+
+static struct kunit_suite pf_gt_config_suite = {
+ .name = "pf_gt_config",
+ .test_cases = pf_gt_config_test_cases,
+ .init = pf_gt_config_test_init,
+};
+
+kunit_test_suite(pf_gt_config_suite);
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c b/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
index 701889e5dded..80cc3f2cd047 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
@@ -2826,3 +2826,7 @@ int xe_gt_sriov_pf_config_print_available_ggtt(struct xe_gt *gt, struct drm_prin
return 0;
}
+
+#if IS_BUILTIN(CONFIG_DRM_XE_KUNIT_TEST)
+#include "tests/xe_gt_sriov_pf_config_kunit.c"
+#endif
--
2.47.1
^ permalink raw reply related [flat|nested] 17+ messages in thread
* ✗ CI.checkpatch: warning for PF: migration-friendly auto-provisioning
2025-11-05 18:32 [PATCH 0/3] PF: migration-friendly auto-provisioning Michal Wajdeczko
` (2 preceding siblings ...)
2025-11-05 18:32 ` [PATCH 3/3] drm/xe/tests: Add KUnit tests for PF fair provisioning Michal Wajdeczko
@ 2025-11-05 21:28 ` Patchwork
2025-11-05 21:30 ` ✓ CI.KUnit: success " Patchwork
` (6 subsequent siblings)
10 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-11-05 21:28 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: PF: migration-friendly auto-provisioning
URL : https://patchwork.freedesktop.org/series/157094/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
d9120d4d84745cf011b4b3efb338747e69179dfb
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 79c80d44068b3c11bd8a658538826f20b3dabdaa
Author: Michal Wajdeczko <michal.wajdeczko@intel.com>
Date: Wed Nov 5 19:32:52 2025 +0100
drm/xe/tests: Add KUnit tests for PF fair provisioning
Add test cases to check outcome of fair GuC context or doorbells
IDs allocations for regular and admin-only PF mode.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
+ /mt/dim checkpatch 4247aae08afc576bbe58c7998b5e2f6a2ea982ad drm-intel
7d8c7be0ee77 drm/xe/pf: Use migration-friendly context IDs auto-provisioning
72105358244a drm/xe/pf: Use migration-friendly doorbells auto-provisioning
79c80d44068b drm/xe/tests: Add KUnit tests for PF fair provisioning
-:12: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#12:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 169 lines checked
^ permalink raw reply [flat|nested] 17+ messages in thread* ✓ CI.KUnit: success for PF: migration-friendly auto-provisioning
2025-11-05 18:32 [PATCH 0/3] PF: migration-friendly auto-provisioning Michal Wajdeczko
` (3 preceding siblings ...)
2025-11-05 21:28 ` ✗ CI.checkpatch: warning for PF: migration-friendly auto-provisioning Patchwork
@ 2025-11-05 21:30 ` Patchwork
2025-11-05 22:46 ` ✗ Xe.CI.BAT: failure " Patchwork
` (5 subsequent siblings)
10 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-11-05 21:30 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: PF: migration-friendly auto-provisioning
URL : https://patchwork.freedesktop.org/series/157094/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[21:28:59] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:29:03] 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
[21:29:33] Starting KUnit Kernel (1/1)...
[21:29:33] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:29:34] ================== guc_buf (11 subtests) ===================
[21:29:34] [PASSED] test_smallest
[21:29:34] [PASSED] test_largest
[21:29:34] [PASSED] test_granular
[21:29:34] [PASSED] test_unique
[21:29:34] [PASSED] test_overlap
[21:29:34] [PASSED] test_reusable
[21:29:34] [PASSED] test_too_big
[21:29:34] [PASSED] test_flush
[21:29:34] [PASSED] test_lookup
[21:29:34] [PASSED] test_data
[21:29:34] [PASSED] test_class
[21:29:34] ===================== [PASSED] guc_buf =====================
[21:29:34] =================== guc_dbm (7 subtests) ===================
[21:29:34] [PASSED] test_empty
[21:29:34] [PASSED] test_default
[21:29:34] ======================== test_size ========================
[21:29:34] [PASSED] 4
[21:29:34] [PASSED] 8
[21:29:34] [PASSED] 32
[21:29:34] [PASSED] 256
[21:29:34] ==================== [PASSED] test_size ====================
[21:29:34] ======================= test_reuse ========================
[21:29:34] [PASSED] 4
[21:29:34] [PASSED] 8
[21:29:34] [PASSED] 32
[21:29:34] [PASSED] 256
[21:29:34] =================== [PASSED] test_reuse ====================
[21:29:34] =================== test_range_overlap ====================
[21:29:34] [PASSED] 4
[21:29:34] [PASSED] 8
[21:29:34] [PASSED] 32
[21:29:34] [PASSED] 256
[21:29:34] =============== [PASSED] test_range_overlap ================
[21:29:34] =================== test_range_compact ====================
[21:29:34] [PASSED] 4
[21:29:34] [PASSED] 8
[21:29:34] [PASSED] 32
[21:29:34] [PASSED] 256
[21:29:34] =============== [PASSED] test_range_compact ================
[21:29:34] ==================== test_range_spare =====================
[21:29:34] [PASSED] 4
[21:29:34] [PASSED] 8
[21:29:34] [PASSED] 32
[21:29:34] [PASSED] 256
[21:29:34] ================ [PASSED] test_range_spare =================
[21:29:34] ===================== [PASSED] guc_dbm =====================
[21:29:34] =================== guc_idm (6 subtests) ===================
[21:29:34] [PASSED] bad_init
[21:29:34] [PASSED] no_init
[21:29:34] [PASSED] init_fini
[21:29:34] [PASSED] check_used
[21:29:34] [PASSED] check_quota
[21:29:34] [PASSED] check_all
[21:29:34] ===================== [PASSED] guc_idm =====================
[21:29:34] ================== no_relay (3 subtests) ===================
[21:29:34] [PASSED] xe_drops_guc2pf_if_not_ready
[21:29:34] [PASSED] xe_drops_guc2vf_if_not_ready
[21:29:34] [PASSED] xe_rejects_send_if_not_ready
[21:29:34] ==================== [PASSED] no_relay =====================
[21:29:34] ================== pf_relay (14 subtests) ==================
[21:29:34] [PASSED] pf_rejects_guc2pf_too_short
[21:29:34] [PASSED] pf_rejects_guc2pf_too_long
[21:29:34] [PASSED] pf_rejects_guc2pf_no_payload
[21:29:34] [PASSED] pf_fails_no_payload
[21:29:34] [PASSED] pf_fails_bad_origin
[21:29:34] [PASSED] pf_fails_bad_type
[21:29:34] [PASSED] pf_txn_reports_error
[21:29:34] [PASSED] pf_txn_sends_pf2guc
[21:29:34] [PASSED] pf_sends_pf2guc
[21:29:34] [SKIPPED] pf_loopback_nop
[21:29:34] [SKIPPED] pf_loopback_echo
[21:29:34] [SKIPPED] pf_loopback_fail
[21:29:34] [SKIPPED] pf_loopback_busy
[21:29:34] [SKIPPED] pf_loopback_retry
[21:29:34] ==================== [PASSED] pf_relay =====================
[21:29:34] ================== vf_relay (3 subtests) ===================
[21:29:34] [PASSED] vf_rejects_guc2vf_too_short
[21:29:34] [PASSED] vf_rejects_guc2vf_too_long
[21:29:34] [PASSED] vf_rejects_guc2vf_no_payload
[21:29:34] ==================== [PASSED] vf_relay =====================
[21:29:34] ================ pf_gt_config (4 subtests) =================
[21:29:34] [PASSED] fair_contexts_1vf
[21:29:34] [PASSED] fair_doorbells_1vf
[21:29:34] ====================== fair_contexts ======================
[21:29:34] [PASSED] 1 VF
[21:29:34] [PASSED] 2 VFs
[21:29:34] [PASSED] 3 VFs
[21:29:34] [PASSED] 4 VFs
[21:29:34] [PASSED] 5 VFs
[21:29:34] [PASSED] 6 VFs
[21:29:34] [PASSED] 7 VFs
[21:29:34] [PASSED] 8 VFs
[21:29:34] [PASSED] 9 VFs
[21:29:34] [PASSED] 10 VFs
[21:29:34] [PASSED] 11 VFs
[21:29:34] [PASSED] 12 VFs
[21:29:34] [PASSED] 13 VFs
[21:29:34] [PASSED] 14 VFs
[21:29:34] [PASSED] 15 VFs
[21:29:34] [PASSED] 16 VFs
[21:29:34] [PASSED] 17 VFs
[21:29:34] [PASSED] 18 VFs
[21:29:34] [PASSED] 19 VFs
[21:29:34] [PASSED] 20 VFs
[21:29:34] [PASSED] 21 VFs
[21:29:34] [PASSED] 22 VFs
[21:29:34] [PASSED] 23 VFs
[21:29:34] [PASSED] 24 VFs
[21:29:34] [PASSED] 25 VFs
[21:29:34] [PASSED] 26 VFs
[21:29:34] [PASSED] 27 VFs
[21:29:34] [PASSED] 28 VFs
[21:29:34] [PASSED] 29 VFs
[21:29:34] [PASSED] 30 VFs
[21:29:34] [PASSED] 31 VFs
[21:29:34] [PASSED] 32 VFs
[21:29:34] [PASSED] 33 VFs
[21:29:34] [PASSED] 34 VFs
[21:29:34] [PASSED] 35 VFs
[21:29:34] [PASSED] 36 VFs
[21:29:34] [PASSED] 37 VFs
[21:29:34] [PASSED] 38 VFs
[21:29:34] [PASSED] 39 VFs
[21:29:34] [PASSED] 40 VFs
[21:29:34] [PASSED] 41 VFs
[21:29:34] [PASSED] 42 VFs
[21:29:34] [PASSED] 43 VFs
[21:29:34] [PASSED] 44 VFs
[21:29:34] [PASSED] 45 VFs
[21:29:34] [PASSED] 46 VFs
[21:29:34] [PASSED] 47 VFs
[21:29:34] [PASSED] 48 VFs
[21:29:34] [PASSED] 49 VFs
[21:29:34] [PASSED] 50 VFs
[21:29:34] [PASSED] 51 VFs
[21:29:34] [PASSED] 52 VFs
[21:29:34] [PASSED] 53 VFs
[21:29:34] [PASSED] 54 VFs
[21:29:34] [PASSED] 55 VFs
[21:29:34] [PASSED] 56 VFs
[21:29:34] [PASSED] 57 VFs
[21:29:34] [PASSED] 58 VFs
[21:29:34] [PASSED] 59 VFs
[21:29:34] [PASSED] 60 VFs
[21:29:34] [PASSED] 61 VFs
[21:29:34] [PASSED] 62 VFs
[21:29:34] [PASSED] 63 VFs
[21:29:34] ================== [PASSED] fair_contexts ==================
[21:29:34] ===================== fair_doorbells ======================
[21:29:34] [PASSED] 1 VF
[21:29:34] [PASSED] 2 VFs
[21:29:34] [PASSED] 3 VFs
[21:29:34] [PASSED] 4 VFs
[21:29:34] [PASSED] 5 VFs
[21:29:34] [PASSED] 6 VFs
[21:29:34] [PASSED] 7 VFs
[21:29:34] [PASSED] 8 VFs
[21:29:34] [PASSED] 9 VFs
[21:29:34] [PASSED] 10 VFs
[21:29:34] [PASSED] 11 VFs
[21:29:34] [PASSED] 12 VFs
[21:29:34] [PASSED] 13 VFs
[21:29:34] [PASSED] 14 VFs
[21:29:34] [PASSED] 15 VFs
[21:29:34] [PASSED] 16 VFs
[21:29:34] [PASSED] 17 VFs
[21:29:34] [PASSED] 18 VFs
[21:29:34] [PASSED] 19 VFs
[21:29:34] [PASSED] 20 VFs
[21:29:34] [PASSED] 21 VFs
[21:29:34] [PASSED] 22 VFs
[21:29:34] [PASSED] 23 VFs
[21:29:34] [PASSED] 24 VFs
[21:29:34] [PASSED] 25 VFs
[21:29:34] [PASSED] 26 VFs
[21:29:34] [PASSED] 27 VFs
[21:29:34] [PASSED] 28 VFs
[21:29:34] [PASSED] 29 VFs
[21:29:34] [PASSED] 30 VFs
[21:29:34] [PASSED] 31 VFs
[21:29:34] [PASSED] 32 VFs
[21:29:34] [PASSED] 33 VFs
[21:29:34] [PASSED] 34 VFs
[21:29:34] [PASSED] 35 VFs
[21:29:34] [PASSED] 36 VFs
[21:29:34] [PASSED] 37 VFs
[21:29:34] [PASSED] 38 VFs
[21:29:34] [PASSED] 39 VFs
[21:29:34] [PASSED] 40 VFs
[21:29:34] [PASSED] 41 VFs
[21:29:34] [PASSED] 42 VFs
[21:29:34] [PASSED] 43 VFs
[21:29:34] [PASSED] 44 VFs
[21:29:34] [PASSED] 45 VFs
[21:29:34] [PASSED] 46 VFs
[21:29:34] [PASSED] 47 VFs
[21:29:34] [PASSED] 48 VFs
[21:29:34] [PASSED] 49 VFs
[21:29:34] [PASSED] 50 VFs
[21:29:34] [PASSED] 51 VFs
[21:29:34] [PASSED] 52 VFs
[21:29:34] [PASSED] 53 VFs
[21:29:34] [PASSED] 54 VFs
[21:29:34] [PASSED] 55 VFs
[21:29:34] [PASSED] 56 VFs
[21:29:34] [PASSED] 57 VFs
[21:29:34] [PASSED] 58 VFs
[21:29:34] [PASSED] 59 VFs
[21:29:34] [PASSED] 60 VFs
[21:29:34] [PASSED] 61 VFs
[21:29:34] [PASSED] 62 VFs
[21:29:34] [PASSED] 63 VFs
[21:29:34] ================= [PASSED] fair_doorbells ==================
[21:29:34] ================== [PASSED] pf_gt_config ===================
[21:29:34] ===================== lmtt (1 subtest) =====================
[21:29:34] ======================== test_ops =========================
[21:29:34] [PASSED] 2-level
[21:29:34] [PASSED] multi-level
[21:29:34] ==================== [PASSED] test_ops =====================
[21:29:34] ====================== [PASSED] lmtt =======================
[21:29:34] ================= pf_service (11 subtests) =================
[21:29:34] [PASSED] pf_negotiate_any
[21:29:34] [PASSED] pf_negotiate_base_match
[21:29:34] [PASSED] pf_negotiate_base_newer
[21:29:34] [PASSED] pf_negotiate_base_next
[21:29:34] [SKIPPED] pf_negotiate_base_older
[21:29:34] [PASSED] pf_negotiate_base_prev
[21:29:34] [PASSED] pf_negotiate_latest_match
[21:29:34] [PASSED] pf_negotiate_latest_newer
[21:29:34] [PASSED] pf_negotiate_latest_next
[21:29:34] [SKIPPED] pf_negotiate_latest_older
[21:29:34] [SKIPPED] pf_negotiate_latest_prev
[21:29:34] =================== [PASSED] pf_service ====================
[21:29:34] ================= xe_guc_g2g (2 subtests) ==================
[21:29:34] ============== xe_live_guc_g2g_kunit_default ==============
[21:29:34] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[21:29:34] ============== xe_live_guc_g2g_kunit_allmem ===============
[21:29:34] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[21:29:34] =================== [SKIPPED] xe_guc_g2g ===================
[21:29:34] =================== xe_mocs (2 subtests) ===================
[21:29:34] ================ xe_live_mocs_kernel_kunit ================
[21:29:34] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[21:29:34] ================ xe_live_mocs_reset_kunit =================
[21:29:34] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[21:29:34] ==================== [SKIPPED] xe_mocs =====================
[21:29:34] ================= xe_migrate (2 subtests) ==================
[21:29:34] ================= xe_migrate_sanity_kunit =================
[21:29:34] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[21:29:34] ================== xe_validate_ccs_kunit ==================
[21:29:34] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[21:29:34] =================== [SKIPPED] xe_migrate ===================
[21:29:34] ================== xe_dma_buf (1 subtest) ==================
[21:29:34] ==================== xe_dma_buf_kunit =====================
[21:29:34] ================ [SKIPPED] xe_dma_buf_kunit ================
[21:29:34] =================== [SKIPPED] xe_dma_buf ===================
[21:29:34] ================= xe_bo_shrink (1 subtest) =================
[21:29:34] =================== xe_bo_shrink_kunit ====================
[21:29:34] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[21:29:34] ================== [SKIPPED] xe_bo_shrink ==================
[21:29:34] ==================== xe_bo (2 subtests) ====================
[21:29:34] ================== xe_ccs_migrate_kunit ===================
[21:29:34] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[21:29:34] ==================== xe_bo_evict_kunit ====================
[21:29:34] =============== [SKIPPED] xe_bo_evict_kunit ================
[21:29:34] ===================== [SKIPPED] xe_bo ======================
[21:29:34] ==================== args (11 subtests) ====================
[21:29:34] [PASSED] count_args_test
[21:29:34] [PASSED] call_args_example
[21:29:34] [PASSED] call_args_test
[21:29:34] [PASSED] drop_first_arg_example
[21:29:34] [PASSED] drop_first_arg_test
[21:29:34] [PASSED] first_arg_example
[21:29:34] [PASSED] first_arg_test
[21:29:34] [PASSED] last_arg_example
[21:29:34] [PASSED] last_arg_test
[21:29:34] [PASSED] pick_arg_example
[21:29:34] [PASSED] sep_comma_example
[21:29:34] ====================== [PASSED] args =======================
[21:29:34] =================== xe_pci (3 subtests) ====================
[21:29:34] ==================== check_graphics_ip ====================
[21:29:34] [PASSED] 12.00 Xe_LP
[21:29:34] [PASSED] 12.10 Xe_LP+
[21:29:34] [PASSED] 12.55 Xe_HPG
[21:29:34] [PASSED] 12.60 Xe_HPC
[21:29:34] [PASSED] 12.70 Xe_LPG
[21:29:34] [PASSED] 12.71 Xe_LPG
[21:29:34] [PASSED] 12.74 Xe_LPG+
[21:29:34] [PASSED] 20.01 Xe2_HPG
[21:29:34] [PASSED] 20.02 Xe2_HPG
[21:29:34] [PASSED] 20.04 Xe2_LPG
[21:29:34] [PASSED] 30.00 Xe3_LPG
[21:29:34] [PASSED] 30.01 Xe3_LPG
[21:29:34] [PASSED] 30.03 Xe3_LPG
[21:29:34] [PASSED] 30.04 Xe3_LPG
[21:29:34] [PASSED] 30.05 Xe3_LPG
[21:29:34] [PASSED] 35.11 Xe3p_XPC
[21:29:34] ================ [PASSED] check_graphics_ip ================
[21:29:34] ===================== check_media_ip ======================
[21:29:34] [PASSED] 12.00 Xe_M
[21:29:34] [PASSED] 12.55 Xe_HPM
[21:29:34] [PASSED] 13.00 Xe_LPM+
[21:29:34] [PASSED] 13.01 Xe2_HPM
[21:29:34] [PASSED] 20.00 Xe2_LPM
[21:29:34] [PASSED] 30.00 Xe3_LPM
[21:29:34] [PASSED] 30.02 Xe3_LPM
[21:29:34] [PASSED] 35.00 Xe3p_LPM
[21:29:34] [PASSED] 35.03 Xe3p_HPM
[21:29:34] ================= [PASSED] check_media_ip ==================
[21:29:34] =================== check_platform_desc ===================
[21:29:34] [PASSED] 0x9A60 (TIGERLAKE)
[21:29:34] [PASSED] 0x9A68 (TIGERLAKE)
[21:29:34] [PASSED] 0x9A70 (TIGERLAKE)
[21:29:34] [PASSED] 0x9A40 (TIGERLAKE)
[21:29:34] [PASSED] 0x9A49 (TIGERLAKE)
[21:29:34] [PASSED] 0x9A59 (TIGERLAKE)
[21:29:34] [PASSED] 0x9A78 (TIGERLAKE)
[21:29:34] [PASSED] 0x9AC0 (TIGERLAKE)
[21:29:34] [PASSED] 0x9AC9 (TIGERLAKE)
[21:29:34] [PASSED] 0x9AD9 (TIGERLAKE)
[21:29:34] [PASSED] 0x9AF8 (TIGERLAKE)
[21:29:34] [PASSED] 0x4C80 (ROCKETLAKE)
[21:29:34] [PASSED] 0x4C8A (ROCKETLAKE)
[21:29:34] [PASSED] 0x4C8B (ROCKETLAKE)
[21:29:34] [PASSED] 0x4C8C (ROCKETLAKE)
[21:29:34] [PASSED] 0x4C90 (ROCKETLAKE)
[21:29:34] [PASSED] 0x4C9A (ROCKETLAKE)
[21:29:34] [PASSED] 0x4680 (ALDERLAKE_S)
[21:29:34] [PASSED] 0x4682 (ALDERLAKE_S)
[21:29:34] [PASSED] 0x4688 (ALDERLAKE_S)
[21:29:34] [PASSED] 0x468A (ALDERLAKE_S)
[21:29:34] [PASSED] 0x468B (ALDERLAKE_S)
[21:29:34] [PASSED] 0x4690 (ALDERLAKE_S)
[21:29:34] [PASSED] 0x4692 (ALDERLAKE_S)
[21:29:34] [PASSED] 0x4693 (ALDERLAKE_S)
[21:29:34] [PASSED] 0x46A0 (ALDERLAKE_P)
[21:29:34] [PASSED] 0x46A1 (ALDERLAKE_P)
[21:29:34] [PASSED] 0x46A2 (ALDERLAKE_P)
[21:29:34] [PASSED] 0x46A3 (ALDERLAKE_P)
[21:29:34] [PASSED] 0x46A6 (ALDERLAKE_P)
[21:29:34] [PASSED] 0x46A8 (ALDERLAKE_P)
[21:29:34] [PASSED] 0x46AA (ALDERLAKE_P)
[21:29:34] [PASSED] 0x462A (ALDERLAKE_P)
[21:29:34] [PASSED] 0x4626 (ALDERLAKE_P)
[21:29:34] [PASSED] 0x4628 (ALDERLAKE_P)
[21:29:34] [PASSED] 0x46B0 (ALDERLAKE_P)
[21:29:34] [PASSED] 0x46B1 (ALDERLAKE_P)
[21:29:34] [PASSED] 0x46B2 (ALDERLAKE_P)
[21:29:34] [PASSED] 0x46B3 (ALDERLAKE_P)
[21:29:34] [PASSED] 0x46C0 (ALDERLAKE_P)
[21:29:34] [PASSED] 0x46C1 (ALDERLAKE_P)
[21:29:34] [PASSED] 0x46C2 (ALDERLAKE_P)
[21:29:34] [PASSED] 0x46C3 (ALDERLAKE_P)
[21:29:34] [PASSED] 0x46D0 (ALDERLAKE_N)
[21:29:34] [PASSED] 0x46D1 (ALDERLAKE_N)
[21:29:34] [PASSED] 0x46D2 (ALDERLAKE_N)
[21:29:34] [PASSED] 0x46D3 (ALDERLAKE_N)
[21:29:34] [PASSED] 0x46D4 (ALDERLAKE_N)
[21:29:34] [PASSED] 0xA721 (ALDERLAKE_P)
[21:29:34] [PASSED] 0xA7A1 (ALDERLAKE_P)
[21:29:34] [PASSED] 0xA7A9 (ALDERLAKE_P)
[21:29:34] [PASSED] 0xA7AC (ALDERLAKE_P)
[21:29:34] [PASSED] 0xA7AD (ALDERLAKE_P)
[21:29:34] [PASSED] 0xA720 (ALDERLAKE_P)
[21:29:34] [PASSED] 0xA7A0 (ALDERLAKE_P)
[21:29:34] [PASSED] 0xA7A8 (ALDERLAKE_P)
[21:29:34] [PASSED] 0xA7AA (ALDERLAKE_P)
[21:29:34] [PASSED] 0xA7AB (ALDERLAKE_P)
[21:29:34] [PASSED] 0xA780 (ALDERLAKE_S)
[21:29:34] [PASSED] 0xA781 (ALDERLAKE_S)
[21:29:34] [PASSED] 0xA782 (ALDERLAKE_S)
[21:29:34] [PASSED] 0xA783 (ALDERLAKE_S)
[21:29:34] [PASSED] 0xA788 (ALDERLAKE_S)
[21:29:34] [PASSED] 0xA789 (ALDERLAKE_S)
[21:29:34] [PASSED] 0xA78A (ALDERLAKE_S)
[21:29:34] [PASSED] 0xA78B (ALDERLAKE_S)
[21:29:34] [PASSED] 0x4905 (DG1)
[21:29:34] [PASSED] 0x4906 (DG1)
[21:29:34] [PASSED] 0x4907 (DG1)
[21:29:34] [PASSED] 0x4908 (DG1)
[21:29:34] [PASSED] 0x4909 (DG1)
[21:29:34] [PASSED] 0x56C0 (DG2)
[21:29:34] [PASSED] 0x56C2 (DG2)
[21:29:34] [PASSED] 0x56C1 (DG2)
[21:29:34] [PASSED] 0x7D51 (METEORLAKE)
[21:29:34] [PASSED] 0x7DD1 (METEORLAKE)
[21:29:34] [PASSED] 0x7D41 (METEORLAKE)
[21:29:34] [PASSED] 0x7D67 (METEORLAKE)
[21:29:34] [PASSED] 0xB640 (METEORLAKE)
[21:29:34] [PASSED] 0x56A0 (DG2)
[21:29:34] [PASSED] 0x56A1 (DG2)
[21:29:34] [PASSED] 0x56A2 (DG2)
[21:29:34] [PASSED] 0x56BE (DG2)
[21:29:34] [PASSED] 0x56BF (DG2)
[21:29:34] [PASSED] 0x5690 (DG2)
stty: 'standard input': Inappropriate ioctl for device
[21:29:34] [PASSED] 0x5691 (DG2)
[21:29:34] [PASSED] 0x5692 (DG2)
[21:29:34] [PASSED] 0x56A5 (DG2)
[21:29:34] [PASSED] 0x56A6 (DG2)
[21:29:34] [PASSED] 0x56B0 (DG2)
[21:29:34] [PASSED] 0x56B1 (DG2)
[21:29:34] [PASSED] 0x56BA (DG2)
[21:29:34] [PASSED] 0x56BB (DG2)
[21:29:34] [PASSED] 0x56BC (DG2)
[21:29:34] [PASSED] 0x56BD (DG2)
[21:29:34] [PASSED] 0x5693 (DG2)
[21:29:34] [PASSED] 0x5694 (DG2)
[21:29:34] [PASSED] 0x5695 (DG2)
[21:29:34] [PASSED] 0x56A3 (DG2)
[21:29:34] [PASSED] 0x56A4 (DG2)
[21:29:34] [PASSED] 0x56B2 (DG2)
[21:29:34] [PASSED] 0x56B3 (DG2)
[21:29:34] [PASSED] 0x5696 (DG2)
[21:29:34] [PASSED] 0x5697 (DG2)
[21:29:34] [PASSED] 0xB69 (PVC)
[21:29:34] [PASSED] 0xB6E (PVC)
[21:29:34] [PASSED] 0xBD4 (PVC)
[21:29:34] [PASSED] 0xBD5 (PVC)
[21:29:34] [PASSED] 0xBD6 (PVC)
[21:29:34] [PASSED] 0xBD7 (PVC)
[21:29:34] [PASSED] 0xBD8 (PVC)
[21:29:34] [PASSED] 0xBD9 (PVC)
[21:29:34] [PASSED] 0xBDA (PVC)
[21:29:34] [PASSED] 0xBDB (PVC)
[21:29:34] [PASSED] 0xBE0 (PVC)
[21:29:34] [PASSED] 0xBE1 (PVC)
[21:29:34] [PASSED] 0xBE5 (PVC)
[21:29:34] [PASSED] 0x7D40 (METEORLAKE)
[21:29:34] [PASSED] 0x7D45 (METEORLAKE)
[21:29:34] [PASSED] 0x7D55 (METEORLAKE)
[21:29:34] [PASSED] 0x7D60 (METEORLAKE)
[21:29:34] [PASSED] 0x7DD5 (METEORLAKE)
[21:29:34] [PASSED] 0x6420 (LUNARLAKE)
[21:29:34] [PASSED] 0x64A0 (LUNARLAKE)
[21:29:34] [PASSED] 0x64B0 (LUNARLAKE)
[21:29:34] [PASSED] 0xE202 (BATTLEMAGE)
[21:29:34] [PASSED] 0xE209 (BATTLEMAGE)
[21:29:34] [PASSED] 0xE20B (BATTLEMAGE)
[21:29:34] [PASSED] 0xE20C (BATTLEMAGE)
[21:29:34] [PASSED] 0xE20D (BATTLEMAGE)
[21:29:34] [PASSED] 0xE210 (BATTLEMAGE)
[21:29:34] [PASSED] 0xE211 (BATTLEMAGE)
[21:29:34] [PASSED] 0xE212 (BATTLEMAGE)
[21:29:34] [PASSED] 0xE216 (BATTLEMAGE)
[21:29:34] [PASSED] 0xE220 (BATTLEMAGE)
[21:29:34] [PASSED] 0xE221 (BATTLEMAGE)
[21:29:34] [PASSED] 0xE222 (BATTLEMAGE)
[21:29:34] [PASSED] 0xE223 (BATTLEMAGE)
[21:29:34] [PASSED] 0xB080 (PANTHERLAKE)
[21:29:34] [PASSED] 0xB081 (PANTHERLAKE)
[21:29:34] [PASSED] 0xB082 (PANTHERLAKE)
[21:29:34] [PASSED] 0xB083 (PANTHERLAKE)
[21:29:34] [PASSED] 0xB084 (PANTHERLAKE)
[21:29:34] [PASSED] 0xB085 (PANTHERLAKE)
[21:29:34] [PASSED] 0xB086 (PANTHERLAKE)
[21:29:34] [PASSED] 0xB087 (PANTHERLAKE)
[21:29:34] [PASSED] 0xB08F (PANTHERLAKE)
[21:29:34] [PASSED] 0xB090 (PANTHERLAKE)
[21:29:34] [PASSED] 0xB0A0 (PANTHERLAKE)
[21:29:34] [PASSED] 0xB0B0 (PANTHERLAKE)
[21:29:34] [PASSED] 0xD740 (NOVALAKE_S)
[21:29:34] [PASSED] 0xD741 (NOVALAKE_S)
[21:29:34] [PASSED] 0xD742 (NOVALAKE_S)
[21:29:34] [PASSED] 0xD743 (NOVALAKE_S)
[21:29:34] [PASSED] 0xD744 (NOVALAKE_S)
[21:29:34] [PASSED] 0xD745 (NOVALAKE_S)
[21:29:34] [PASSED] 0x674C (CRESCENTISLAND)
[21:29:34] [PASSED] 0xFD80 (PANTHERLAKE)
[21:29:34] [PASSED] 0xFD81 (PANTHERLAKE)
[21:29:34] =============== [PASSED] check_platform_desc ===============
[21:29:34] ===================== [PASSED] xe_pci ======================
[21:29:34] =================== xe_rtp (2 subtests) ====================
[21:29:34] =============== xe_rtp_process_to_sr_tests ================
[21:29:34] [PASSED] coalesce-same-reg
[21:29:34] [PASSED] no-match-no-add
[21:29:34] [PASSED] match-or
[21:29:34] [PASSED] match-or-xfail
[21:29:34] [PASSED] no-match-no-add-multiple-rules
[21:29:34] [PASSED] two-regs-two-entries
[21:29:34] [PASSED] clr-one-set-other
[21:29:34] [PASSED] set-field
[21:29:34] [PASSED] conflict-duplicate
[21:29:34] [PASSED] conflict-not-disjoint
[21:29:34] [PASSED] conflict-reg-type
[21:29:34] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[21:29:34] ================== xe_rtp_process_tests ===================
[21:29:34] [PASSED] active1
[21:29:34] [PASSED] active2
[21:29:34] [PASSED] active-inactive
[21:29:34] [PASSED] inactive-active
[21:29:34] [PASSED] inactive-1st_or_active-inactive
[21:29:34] [PASSED] inactive-2nd_or_active-inactive
[21:29:34] [PASSED] inactive-last_or_active-inactive
[21:29:34] [PASSED] inactive-no_or_active-inactive
[21:29:34] ============== [PASSED] xe_rtp_process_tests ===============
[21:29:34] ===================== [PASSED] xe_rtp ======================
[21:29:34] ==================== xe_wa (1 subtest) =====================
[21:29:34] ======================== xe_wa_gt =========================
[21:29:34] [PASSED] TIGERLAKE B0
[21:29:34] [PASSED] DG1 A0
[21:29:34] [PASSED] DG1 B0
[21:29:34] [PASSED] ALDERLAKE_S A0
[21:29:34] [PASSED] ALDERLAKE_S B0
[21:29:34] [PASSED] ALDERLAKE_S C0
[21:29:34] [PASSED] ALDERLAKE_S D0
[21:29:34] [PASSED] ALDERLAKE_P A0
[21:29:34] [PASSED] ALDERLAKE_P B0
[21:29:34] [PASSED] ALDERLAKE_P C0
[21:29:34] [PASSED] ALDERLAKE_S RPLS D0
[21:29:34] [PASSED] ALDERLAKE_P RPLU E0
[21:29:34] [PASSED] DG2 G10 C0
[21:29:34] [PASSED] DG2 G11 B1
[21:29:34] [PASSED] DG2 G12 A1
[21:29:34] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[21:29:34] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[21:29:34] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[21:29:34] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[21:29:34] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[21:29:34] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[21:29:34] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[21:29:34] ==================== [PASSED] xe_wa_gt =====================
[21:29:34] ====================== [PASSED] xe_wa ======================
[21:29:34] ============================================================
[21:29:34] Testing complete. Ran 446 tests: passed: 428, skipped: 18
[21:29:34] Elapsed time: 34.844s total, 4.258s configuring, 30.119s building, 0.420s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[21:29:34] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:29:36] 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
[21:30:00] Starting KUnit Kernel (1/1)...
[21:30:00] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:30:01] ============ drm_test_pick_cmdline (2 subtests) ============
[21:30:01] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[21:30:01] =============== drm_test_pick_cmdline_named ===============
[21:30:01] [PASSED] NTSC
[21:30:01] [PASSED] NTSC-J
[21:30:01] [PASSED] PAL
[21:30:01] [PASSED] PAL-M
[21:30:01] =========== [PASSED] drm_test_pick_cmdline_named ===========
[21:30:01] ============== [PASSED] drm_test_pick_cmdline ==============
[21:30:01] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[21:30:01] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[21:30:01] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[21:30:01] =========== drm_validate_clone_mode (2 subtests) ===========
[21:30:01] ============== drm_test_check_in_clone_mode ===============
[21:30:01] [PASSED] in_clone_mode
[21:30:01] [PASSED] not_in_clone_mode
[21:30:01] ========== [PASSED] drm_test_check_in_clone_mode ===========
[21:30:01] =============== drm_test_check_valid_clones ===============
[21:30:01] [PASSED] not_in_clone_mode
[21:30:01] [PASSED] valid_clone
[21:30:01] [PASSED] invalid_clone
[21:30:01] =========== [PASSED] drm_test_check_valid_clones ===========
[21:30:01] ============= [PASSED] drm_validate_clone_mode =============
[21:30:01] ============= drm_validate_modeset (1 subtest) =============
[21:30:01] [PASSED] drm_test_check_connector_changed_modeset
[21:30:01] ============== [PASSED] drm_validate_modeset ===============
[21:30:01] ====== drm_test_bridge_get_current_state (2 subtests) ======
[21:30:01] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[21:30:01] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[21:30:01] ======== [PASSED] drm_test_bridge_get_current_state ========
[21:30:01] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[21:30:01] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[21:30:01] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[21:30:01] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[21:30:01] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[21:30:01] ============== drm_bridge_alloc (2 subtests) ===============
[21:30:01] [PASSED] drm_test_drm_bridge_alloc_basic
[21:30:01] [PASSED] drm_test_drm_bridge_alloc_get_put
[21:30:01] ================ [PASSED] drm_bridge_alloc =================
[21:30:01] ================== drm_buddy (8 subtests) ==================
[21:30:01] [PASSED] drm_test_buddy_alloc_limit
[21:30:01] [PASSED] drm_test_buddy_alloc_optimistic
[21:30:01] [PASSED] drm_test_buddy_alloc_pessimistic
[21:30:01] [PASSED] drm_test_buddy_alloc_pathological
[21:30:01] [PASSED] drm_test_buddy_alloc_contiguous
[21:30:01] [PASSED] drm_test_buddy_alloc_clear
[21:30:01] [PASSED] drm_test_buddy_alloc_range_bias
[21:30:01] [PASSED] drm_test_buddy_fragmentation_performance
[21:30:01] ==================== [PASSED] drm_buddy ====================
[21:30:01] ============= drm_cmdline_parser (40 subtests) =============
[21:30:01] [PASSED] drm_test_cmdline_force_d_only
[21:30:01] [PASSED] drm_test_cmdline_force_D_only_dvi
[21:30:01] [PASSED] drm_test_cmdline_force_D_only_hdmi
[21:30:01] [PASSED] drm_test_cmdline_force_D_only_not_digital
[21:30:01] [PASSED] drm_test_cmdline_force_e_only
[21:30:01] [PASSED] drm_test_cmdline_res
[21:30:01] [PASSED] drm_test_cmdline_res_vesa
[21:30:01] [PASSED] drm_test_cmdline_res_vesa_rblank
[21:30:01] [PASSED] drm_test_cmdline_res_rblank
[21:30:01] [PASSED] drm_test_cmdline_res_bpp
[21:30:01] [PASSED] drm_test_cmdline_res_refresh
[21:30:01] [PASSED] drm_test_cmdline_res_bpp_refresh
[21:30:01] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[21:30:01] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[21:30:01] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[21:30:01] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[21:30:01] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[21:30:01] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[21:30:01] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[21:30:01] [PASSED] drm_test_cmdline_res_margins_force_on
[21:30:01] [PASSED] drm_test_cmdline_res_vesa_margins
[21:30:01] [PASSED] drm_test_cmdline_name
[21:30:01] [PASSED] drm_test_cmdline_name_bpp
[21:30:01] [PASSED] drm_test_cmdline_name_option
[21:30:01] [PASSED] drm_test_cmdline_name_bpp_option
[21:30:01] [PASSED] drm_test_cmdline_rotate_0
[21:30:01] [PASSED] drm_test_cmdline_rotate_90
[21:30:01] [PASSED] drm_test_cmdline_rotate_180
[21:30:01] [PASSED] drm_test_cmdline_rotate_270
[21:30:01] [PASSED] drm_test_cmdline_hmirror
[21:30:01] [PASSED] drm_test_cmdline_vmirror
[21:30:01] [PASSED] drm_test_cmdline_margin_options
[21:30:01] [PASSED] drm_test_cmdline_multiple_options
[21:30:01] [PASSED] drm_test_cmdline_bpp_extra_and_option
[21:30:01] [PASSED] drm_test_cmdline_extra_and_option
[21:30:01] [PASSED] drm_test_cmdline_freestanding_options
[21:30:01] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[21:30:01] [PASSED] drm_test_cmdline_panel_orientation
[21:30:01] ================ drm_test_cmdline_invalid =================
[21:30:01] [PASSED] margin_only
[21:30:01] [PASSED] interlace_only
[21:30:01] [PASSED] res_missing_x
[21:30:01] [PASSED] res_missing_y
[21:30:01] [PASSED] res_bad_y
[21:30:01] [PASSED] res_missing_y_bpp
[21:30:01] [PASSED] res_bad_bpp
[21:30:01] [PASSED] res_bad_refresh
[21:30:01] [PASSED] res_bpp_refresh_force_on_off
[21:30:01] [PASSED] res_invalid_mode
[21:30:01] [PASSED] res_bpp_wrong_place_mode
[21:30:01] [PASSED] name_bpp_refresh
[21:30:01] [PASSED] name_refresh
[21:30:01] [PASSED] name_refresh_wrong_mode
[21:30:01] [PASSED] name_refresh_invalid_mode
[21:30:01] [PASSED] rotate_multiple
[21:30:01] [PASSED] rotate_invalid_val
[21:30:01] [PASSED] rotate_truncated
[21:30:01] [PASSED] invalid_option
[21:30:01] [PASSED] invalid_tv_option
[21:30:01] [PASSED] truncated_tv_option
[21:30:01] ============ [PASSED] drm_test_cmdline_invalid =============
[21:30:01] =============== drm_test_cmdline_tv_options ===============
[21:30:01] [PASSED] NTSC
[21:30:01] [PASSED] NTSC_443
[21:30:01] [PASSED] NTSC_J
[21:30:01] [PASSED] PAL
[21:30:01] [PASSED] PAL_M
[21:30:01] [PASSED] PAL_N
[21:30:01] [PASSED] SECAM
[21:30:01] [PASSED] MONO_525
[21:30:01] [PASSED] MONO_625
[21:30:01] =========== [PASSED] drm_test_cmdline_tv_options ===========
[21:30:01] =============== [PASSED] drm_cmdline_parser ================
[21:30:01] ========== drmm_connector_hdmi_init (20 subtests) ==========
[21:30:01] [PASSED] drm_test_connector_hdmi_init_valid
[21:30:01] [PASSED] drm_test_connector_hdmi_init_bpc_8
[21:30:01] [PASSED] drm_test_connector_hdmi_init_bpc_10
[21:30:01] [PASSED] drm_test_connector_hdmi_init_bpc_12
[21:30:01] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[21:30:01] [PASSED] drm_test_connector_hdmi_init_bpc_null
[21:30:01] [PASSED] drm_test_connector_hdmi_init_formats_empty
[21:30:01] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[21:30:01] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[21:30:01] [PASSED] supported_formats=0x9 yuv420_allowed=1
[21:30:01] [PASSED] supported_formats=0x9 yuv420_allowed=0
[21:30:01] [PASSED] supported_formats=0x3 yuv420_allowed=1
[21:30:01] [PASSED] supported_formats=0x3 yuv420_allowed=0
[21:30:01] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[21:30:01] [PASSED] drm_test_connector_hdmi_init_null_ddc
[21:30:01] [PASSED] drm_test_connector_hdmi_init_null_product
[21:30:01] [PASSED] drm_test_connector_hdmi_init_null_vendor
[21:30:01] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[21:30:01] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[21:30:01] [PASSED] drm_test_connector_hdmi_init_product_valid
[21:30:01] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[21:30:01] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[21:30:01] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[21:30:01] ========= drm_test_connector_hdmi_init_type_valid =========
[21:30:01] [PASSED] HDMI-A
[21:30:01] [PASSED] HDMI-B
[21:30:01] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[21:30:01] ======== drm_test_connector_hdmi_init_type_invalid ========
[21:30:01] [PASSED] Unknown
[21:30:01] [PASSED] VGA
[21:30:01] [PASSED] DVI-I
[21:30:01] [PASSED] DVI-D
[21:30:01] [PASSED] DVI-A
[21:30:01] [PASSED] Composite
[21:30:01] [PASSED] SVIDEO
[21:30:01] [PASSED] LVDS
[21:30:01] [PASSED] Component
[21:30:01] [PASSED] DIN
[21:30:01] [PASSED] DP
[21:30:01] [PASSED] TV
[21:30:01] [PASSED] eDP
[21:30:01] [PASSED] Virtual
[21:30:01] [PASSED] DSI
[21:30:01] [PASSED] DPI
[21:30:01] [PASSED] Writeback
[21:30:01] [PASSED] SPI
[21:30:01] [PASSED] USB
[21:30:01] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[21:30:01] ============ [PASSED] drmm_connector_hdmi_init =============
[21:30:01] ============= drmm_connector_init (3 subtests) =============
[21:30:01] [PASSED] drm_test_drmm_connector_init
[21:30:01] [PASSED] drm_test_drmm_connector_init_null_ddc
[21:30:01] ========= drm_test_drmm_connector_init_type_valid =========
[21:30:01] [PASSED] Unknown
[21:30:01] [PASSED] VGA
[21:30:01] [PASSED] DVI-I
[21:30:01] [PASSED] DVI-D
[21:30:01] [PASSED] DVI-A
[21:30:01] [PASSED] Composite
[21:30:01] [PASSED] SVIDEO
[21:30:01] [PASSED] LVDS
[21:30:01] [PASSED] Component
[21:30:01] [PASSED] DIN
[21:30:01] [PASSED] DP
[21:30:01] [PASSED] HDMI-A
[21:30:01] [PASSED] HDMI-B
[21:30:01] [PASSED] TV
[21:30:01] [PASSED] eDP
[21:30:01] [PASSED] Virtual
[21:30:01] [PASSED] DSI
[21:30:01] [PASSED] DPI
[21:30:01] [PASSED] Writeback
[21:30:01] [PASSED] SPI
[21:30:01] [PASSED] USB
[21:30:01] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[21:30:01] =============== [PASSED] drmm_connector_init ===============
[21:30:01] ========= drm_connector_dynamic_init (6 subtests) ==========
[21:30:01] [PASSED] drm_test_drm_connector_dynamic_init
[21:30:01] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[21:30:01] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[21:30:01] [PASSED] drm_test_drm_connector_dynamic_init_properties
[21:30:01] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[21:30:01] [PASSED] Unknown
[21:30:01] [PASSED] VGA
[21:30:01] [PASSED] DVI-I
[21:30:01] [PASSED] DVI-D
[21:30:01] [PASSED] DVI-A
[21:30:01] [PASSED] Composite
[21:30:01] [PASSED] SVIDEO
[21:30:01] [PASSED] LVDS
[21:30:01] [PASSED] Component
[21:30:01] [PASSED] DIN
[21:30:01] [PASSED] DP
[21:30:01] [PASSED] HDMI-A
[21:30:01] [PASSED] HDMI-B
[21:30:01] [PASSED] TV
[21:30:01] [PASSED] eDP
[21:30:01] [PASSED] Virtual
[21:30:01] [PASSED] DSI
[21:30:01] [PASSED] DPI
[21:30:01] [PASSED] Writeback
[21:30:01] [PASSED] SPI
[21:30:01] [PASSED] USB
[21:30:01] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[21:30:01] ======== drm_test_drm_connector_dynamic_init_name =========
[21:30:01] [PASSED] Unknown
[21:30:01] [PASSED] VGA
[21:30:01] [PASSED] DVI-I
[21:30:01] [PASSED] DVI-D
[21:30:01] [PASSED] DVI-A
[21:30:01] [PASSED] Composite
[21:30:01] [PASSED] SVIDEO
[21:30:01] [PASSED] LVDS
[21:30:01] [PASSED] Component
[21:30:01] [PASSED] DIN
[21:30:01] [PASSED] DP
[21:30:01] [PASSED] HDMI-A
[21:30:01] [PASSED] HDMI-B
[21:30:01] [PASSED] TV
[21:30:01] [PASSED] eDP
[21:30:01] [PASSED] Virtual
[21:30:01] [PASSED] DSI
[21:30:01] [PASSED] DPI
[21:30:01] [PASSED] Writeback
[21:30:01] [PASSED] SPI
[21:30:01] [PASSED] USB
[21:30:01] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[21:30:01] =========== [PASSED] drm_connector_dynamic_init ============
[21:30:01] ==== drm_connector_dynamic_register_early (4 subtests) =====
[21:30:01] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[21:30:01] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[21:30:01] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[21:30:01] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[21:30:01] ====== [PASSED] drm_connector_dynamic_register_early =======
[21:30:01] ======= drm_connector_dynamic_register (7 subtests) ========
[21:30:01] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[21:30:01] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[21:30:01] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[21:30:01] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[21:30:01] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[21:30:01] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[21:30:01] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[21:30:01] ========= [PASSED] drm_connector_dynamic_register ==========
[21:30:01] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[21:30:01] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[21:30:01] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[21:30:01] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[21:30:01] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[21:30:01] ========== drm_test_get_tv_mode_from_name_valid ===========
[21:30:01] [PASSED] NTSC
[21:30:01] [PASSED] NTSC-443
[21:30:01] [PASSED] NTSC-J
[21:30:01] [PASSED] PAL
[21:30:01] [PASSED] PAL-M
[21:30:01] [PASSED] PAL-N
[21:30:01] [PASSED] SECAM
[21:30:01] [PASSED] Mono
[21:30:01] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[21:30:01] [PASSED] drm_test_get_tv_mode_from_name_truncated
[21:30:01] ============ [PASSED] drm_get_tv_mode_from_name ============
[21:30:01] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[21:30:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[21:30:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[21:30:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[21:30:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[21:30:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[21:30:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[21:30:01] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[21:30:01] [PASSED] VIC 96
[21:30:01] [PASSED] VIC 97
[21:30:01] [PASSED] VIC 101
[21:30:01] [PASSED] VIC 102
[21:30:01] [PASSED] VIC 106
[21:30:01] [PASSED] VIC 107
[21:30:01] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[21:30:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[21:30:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[21:30:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[21:30:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[21:30:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[21:30:01] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[21:30:01] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[21:30:01] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[21:30:01] [PASSED] Automatic
[21:30:01] [PASSED] Full
[21:30:01] [PASSED] Limited 16:235
[21:30:01] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[21:30:01] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[21:30:01] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[21:30:01] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[21:30:01] === drm_test_drm_hdmi_connector_get_output_format_name ====
[21:30:01] [PASSED] RGB
[21:30:01] [PASSED] YUV 4:2:0
[21:30:01] [PASSED] YUV 4:2:2
[21:30:01] [PASSED] YUV 4:4:4
[21:30:01] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[21:30:01] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[21:30:01] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[21:30:01] ============= drm_damage_helper (21 subtests) ==============
[21:30:01] [PASSED] drm_test_damage_iter_no_damage
[21:30:01] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[21:30:01] [PASSED] drm_test_damage_iter_no_damage_src_moved
[21:30:01] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[21:30:01] [PASSED] drm_test_damage_iter_no_damage_not_visible
[21:30:01] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[21:30:01] [PASSED] drm_test_damage_iter_no_damage_no_fb
[21:30:01] [PASSED] drm_test_damage_iter_simple_damage
[21:30:01] [PASSED] drm_test_damage_iter_single_damage
[21:30:01] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[21:30:01] [PASSED] drm_test_damage_iter_single_damage_outside_src
[21:30:01] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[21:30:01] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[21:30:01] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[21:30:01] [PASSED] drm_test_damage_iter_single_damage_src_moved
[21:30:01] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[21:30:01] [PASSED] drm_test_damage_iter_damage
[21:30:01] [PASSED] drm_test_damage_iter_damage_one_intersect
[21:30:01] [PASSED] drm_test_damage_iter_damage_one_outside
[21:30:01] [PASSED] drm_test_damage_iter_damage_src_moved
[21:30:01] [PASSED] drm_test_damage_iter_damage_not_visible
[21:30:01] ================ [PASSED] drm_damage_helper ================
[21:30:01] ============== drm_dp_mst_helper (3 subtests) ==============
[21:30:01] ============== drm_test_dp_mst_calc_pbn_mode ==============
[21:30:01] [PASSED] Clock 154000 BPP 30 DSC disabled
[21:30:01] [PASSED] Clock 234000 BPP 30 DSC disabled
[21:30:01] [PASSED] Clock 297000 BPP 24 DSC disabled
[21:30:01] [PASSED] Clock 332880 BPP 24 DSC enabled
[21:30:01] [PASSED] Clock 324540 BPP 24 DSC enabled
[21:30:01] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[21:30:01] ============== drm_test_dp_mst_calc_pbn_div ===============
[21:30:01] [PASSED] Link rate 2000000 lane count 4
[21:30:01] [PASSED] Link rate 2000000 lane count 2
[21:30:01] [PASSED] Link rate 2000000 lane count 1
[21:30:01] [PASSED] Link rate 1350000 lane count 4
[21:30:01] [PASSED] Link rate 1350000 lane count 2
[21:30:01] [PASSED] Link rate 1350000 lane count 1
[21:30:01] [PASSED] Link rate 1000000 lane count 4
[21:30:01] [PASSED] Link rate 1000000 lane count 2
[21:30:01] [PASSED] Link rate 1000000 lane count 1
[21:30:01] [PASSED] Link rate 810000 lane count 4
[21:30:01] [PASSED] Link rate 810000 lane count 2
[21:30:01] [PASSED] Link rate 810000 lane count 1
[21:30:01] [PASSED] Link rate 540000 lane count 4
[21:30:01] [PASSED] Link rate 540000 lane count 2
[21:30:01] [PASSED] Link rate 540000 lane count 1
[21:30:01] [PASSED] Link rate 270000 lane count 4
[21:30:01] [PASSED] Link rate 270000 lane count 2
[21:30:01] [PASSED] Link rate 270000 lane count 1
[21:30:01] [PASSED] Link rate 162000 lane count 4
[21:30:01] [PASSED] Link rate 162000 lane count 2
[21:30:01] [PASSED] Link rate 162000 lane count 1
[21:30:01] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[21:30:01] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[21:30:01] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[21:30:01] [PASSED] DP_POWER_UP_PHY with port number
[21:30:01] [PASSED] DP_POWER_DOWN_PHY with port number
[21:30:01] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[21:30:01] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[21:30:01] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[21:30:01] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[21:30:01] [PASSED] DP_QUERY_PAYLOAD with port number
[21:30:01] [PASSED] DP_QUERY_PAYLOAD with VCPI
[21:30:01] [PASSED] DP_REMOTE_DPCD_READ with port number
[21:30:01] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[21:30:01] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[21:30:01] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[21:30:01] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[21:30:01] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[21:30:01] [PASSED] DP_REMOTE_I2C_READ with port number
[21:30:01] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[21:30:01] [PASSED] DP_REMOTE_I2C_READ with transactions array
[21:30:01] [PASSED] DP_REMOTE_I2C_WRITE with port number
[21:30:01] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[21:30:01] [PASSED] DP_REMOTE_I2C_WRITE with data array
[21:30:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[21:30:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[21:30:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[21:30:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[21:30:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[21:30:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[21:30:01] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[21:30:01] ================ [PASSED] drm_dp_mst_helper ================
[21:30:01] ================== drm_exec (7 subtests) ===================
[21:30:01] [PASSED] sanitycheck
[21:30:01] [PASSED] test_lock
[21:30:01] [PASSED] test_lock_unlock
[21:30:01] [PASSED] test_duplicates
[21:30:01] [PASSED] test_prepare
[21:30:01] [PASSED] test_prepare_array
[21:30:01] [PASSED] test_multiple_loops
[21:30:01] ==================== [PASSED] drm_exec =====================
[21:30:01] =========== drm_format_helper_test (17 subtests) ===========
[21:30:01] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[21:30:01] [PASSED] single_pixel_source_buffer
[21:30:01] [PASSED] single_pixel_clip_rectangle
[21:30:01] [PASSED] well_known_colors
[21:30:01] [PASSED] destination_pitch
[21:30:01] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[21:30:01] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[21:30:01] [PASSED] single_pixel_source_buffer
[21:30:01] [PASSED] single_pixel_clip_rectangle
[21:30:01] [PASSED] well_known_colors
[21:30:01] [PASSED] destination_pitch
[21:30:01] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[21:30:01] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[21:30:01] [PASSED] single_pixel_source_buffer
[21:30:01] [PASSED] single_pixel_clip_rectangle
[21:30:01] [PASSED] well_known_colors
[21:30:01] [PASSED] destination_pitch
[21:30:01] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[21:30:01] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[21:30:01] [PASSED] single_pixel_source_buffer
[21:30:01] [PASSED] single_pixel_clip_rectangle
[21:30:01] [PASSED] well_known_colors
[21:30:01] [PASSED] destination_pitch
[21:30:01] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[21:30:01] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[21:30:01] [PASSED] single_pixel_source_buffer
[21:30:01] [PASSED] single_pixel_clip_rectangle
[21:30:01] [PASSED] well_known_colors
[21:30:01] [PASSED] destination_pitch
[21:30:01] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[21:30:01] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[21:30:01] [PASSED] single_pixel_source_buffer
[21:30:01] [PASSED] single_pixel_clip_rectangle
[21:30:01] [PASSED] well_known_colors
[21:30:01] [PASSED] destination_pitch
[21:30:01] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[21:30:01] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[21:30:01] [PASSED] single_pixel_source_buffer
[21:30:01] [PASSED] single_pixel_clip_rectangle
[21:30:01] [PASSED] well_known_colors
[21:30:01] [PASSED] destination_pitch
[21:30:01] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[21:30:01] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[21:30:01] [PASSED] single_pixel_source_buffer
[21:30:01] [PASSED] single_pixel_clip_rectangle
[21:30:01] [PASSED] well_known_colors
[21:30:01] [PASSED] destination_pitch
[21:30:01] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[21:30:01] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[21:30:01] [PASSED] single_pixel_source_buffer
[21:30:01] [PASSED] single_pixel_clip_rectangle
[21:30:01] [PASSED] well_known_colors
[21:30:01] [PASSED] destination_pitch
[21:30:01] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[21:30:01] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[21:30:01] [PASSED] single_pixel_source_buffer
[21:30:01] [PASSED] single_pixel_clip_rectangle
[21:30:01] [PASSED] well_known_colors
[21:30:01] [PASSED] destination_pitch
[21:30:01] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[21:30:01] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[21:30:01] [PASSED] single_pixel_source_buffer
[21:30:01] [PASSED] single_pixel_clip_rectangle
[21:30:01] [PASSED] well_known_colors
[21:30:01] [PASSED] destination_pitch
[21:30:01] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[21:30:01] ============== drm_test_fb_xrgb8888_to_mono ===============
[21:30:01] [PASSED] single_pixel_source_buffer
[21:30:01] [PASSED] single_pixel_clip_rectangle
[21:30:01] [PASSED] well_known_colors
[21:30:01] [PASSED] destination_pitch
[21:30:01] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[21:30:01] ==================== drm_test_fb_swab =====================
[21:30:01] [PASSED] single_pixel_source_buffer
[21:30:01] [PASSED] single_pixel_clip_rectangle
[21:30:01] [PASSED] well_known_colors
[21:30:01] [PASSED] destination_pitch
[21:30:01] ================ [PASSED] drm_test_fb_swab =================
[21:30:01] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[21:30:01] [PASSED] single_pixel_source_buffer
[21:30:01] [PASSED] single_pixel_clip_rectangle
[21:30:01] [PASSED] well_known_colors
[21:30:01] [PASSED] destination_pitch
[21:30:01] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[21:30:01] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[21:30:01] [PASSED] single_pixel_source_buffer
[21:30:01] [PASSED] single_pixel_clip_rectangle
[21:30:01] [PASSED] well_known_colors
[21:30:01] [PASSED] destination_pitch
[21:30:01] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[21:30:01] ================= drm_test_fb_clip_offset =================
[21:30:01] [PASSED] pass through
[21:30:01] [PASSED] horizontal offset
[21:30:01] [PASSED] vertical offset
[21:30:01] [PASSED] horizontal and vertical offset
[21:30:01] [PASSED] horizontal offset (custom pitch)
[21:30:01] [PASSED] vertical offset (custom pitch)
[21:30:01] [PASSED] horizontal and vertical offset (custom pitch)
[21:30:01] ============= [PASSED] drm_test_fb_clip_offset =============
[21:30:01] =================== drm_test_fb_memcpy ====================
[21:30:01] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[21:30:01] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[21:30:01] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[21:30:01] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[21:30:01] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[21:30:01] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[21:30:01] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[21:30:01] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[21:30:01] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[21:30:01] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[21:30:01] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[21:30:01] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[21:30:01] =============== [PASSED] drm_test_fb_memcpy ================
[21:30:01] ============= [PASSED] drm_format_helper_test ==============
[21:30:01] ================= drm_format (18 subtests) =================
[21:30:01] [PASSED] drm_test_format_block_width_invalid
[21:30:01] [PASSED] drm_test_format_block_width_one_plane
[21:30:01] [PASSED] drm_test_format_block_width_two_plane
[21:30:01] [PASSED] drm_test_format_block_width_three_plane
[21:30:01] [PASSED] drm_test_format_block_width_tiled
[21:30:01] [PASSED] drm_test_format_block_height_invalid
[21:30:01] [PASSED] drm_test_format_block_height_one_plane
[21:30:01] [PASSED] drm_test_format_block_height_two_plane
[21:30:01] [PASSED] drm_test_format_block_height_three_plane
[21:30:01] [PASSED] drm_test_format_block_height_tiled
[21:30:01] [PASSED] drm_test_format_min_pitch_invalid
[21:30:01] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[21:30:01] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[21:30:01] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[21:30:01] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[21:30:01] [PASSED] drm_test_format_min_pitch_two_plane
[21:30:01] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[21:30:01] [PASSED] drm_test_format_min_pitch_tiled
[21:30:01] =================== [PASSED] drm_format ====================
[21:30:01] ============== drm_framebuffer (10 subtests) ===============
[21:30:01] ========== drm_test_framebuffer_check_src_coords ==========
[21:30:01] [PASSED] Success: source fits into fb
[21:30:01] [PASSED] Fail: overflowing fb with x-axis coordinate
[21:30:01] [PASSED] Fail: overflowing fb with y-axis coordinate
[21:30:01] [PASSED] Fail: overflowing fb with source width
[21:30:01] [PASSED] Fail: overflowing fb with source height
[21:30:01] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[21:30:01] [PASSED] drm_test_framebuffer_cleanup
[21:30:01] =============== drm_test_framebuffer_create ===============
[21:30:01] [PASSED] ABGR8888 normal sizes
[21:30:01] [PASSED] ABGR8888 max sizes
[21:30:01] [PASSED] ABGR8888 pitch greater than min required
[21:30:01] [PASSED] ABGR8888 pitch less than min required
[21:30:01] [PASSED] ABGR8888 Invalid width
[21:30:01] [PASSED] ABGR8888 Invalid buffer handle
[21:30:01] [PASSED] No pixel format
[21:30:01] [PASSED] ABGR8888 Width 0
[21:30:01] [PASSED] ABGR8888 Height 0
[21:30:01] [PASSED] ABGR8888 Out of bound height * pitch combination
[21:30:01] [PASSED] ABGR8888 Large buffer offset
[21:30:01] [PASSED] ABGR8888 Buffer offset for inexistent plane
[21:30:01] [PASSED] ABGR8888 Invalid flag
[21:30:01] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[21:30:01] [PASSED] ABGR8888 Valid buffer modifier
[21:30:01] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[21:30:01] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[21:30:01] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[21:30:01] [PASSED] NV12 Normal sizes
[21:30:01] [PASSED] NV12 Max sizes
[21:30:01] [PASSED] NV12 Invalid pitch
[21:30:01] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[21:30:01] [PASSED] NV12 different modifier per-plane
[21:30:01] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[21:30:01] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[21:30:01] [PASSED] NV12 Modifier for inexistent plane
[21:30:01] [PASSED] NV12 Handle for inexistent plane
[21:30:01] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[21:30:01] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[21:30:01] [PASSED] YVU420 Normal sizes
[21:30:01] [PASSED] YVU420 Max sizes
[21:30:01] [PASSED] YVU420 Invalid pitch
[21:30:01] [PASSED] YVU420 Different pitches
[21:30:01] [PASSED] YVU420 Different buffer offsets/pitches
[21:30:01] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[21:30:01] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[21:30:01] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[21:30:01] [PASSED] YVU420 Valid modifier
[21:30:01] [PASSED] YVU420 Different modifiers per plane
[21:30:01] [PASSED] YVU420 Modifier for inexistent plane
[21:30:01] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[21:30:01] [PASSED] X0L2 Normal sizes
[21:30:01] [PASSED] X0L2 Max sizes
[21:30:01] [PASSED] X0L2 Invalid pitch
[21:30:01] [PASSED] X0L2 Pitch greater than minimum required
[21:30:01] [PASSED] X0L2 Handle for inexistent plane
[21:30:01] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[21:30:01] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[21:30:01] [PASSED] X0L2 Valid modifier
[21:30:01] [PASSED] X0L2 Modifier for inexistent plane
[21:30:01] =========== [PASSED] drm_test_framebuffer_create ===========
[21:30:01] [PASSED] drm_test_framebuffer_free
[21:30:01] [PASSED] drm_test_framebuffer_init
[21:30:01] [PASSED] drm_test_framebuffer_init_bad_format
[21:30:01] [PASSED] drm_test_framebuffer_init_dev_mismatch
[21:30:01] [PASSED] drm_test_framebuffer_lookup
[21:30:01] [PASSED] drm_test_framebuffer_lookup_inexistent
[21:30:01] [PASSED] drm_test_framebuffer_modifiers_not_supported
[21:30:01] ================= [PASSED] drm_framebuffer =================
[21:30:01] ================ drm_gem_shmem (8 subtests) ================
[21:30:01] [PASSED] drm_gem_shmem_test_obj_create
[21:30:01] [PASSED] drm_gem_shmem_test_obj_create_private
[21:30:01] [PASSED] drm_gem_shmem_test_pin_pages
[21:30:01] [PASSED] drm_gem_shmem_test_vmap
[21:30:01] [PASSED] drm_gem_shmem_test_get_pages_sgt
[21:30:01] [PASSED] drm_gem_shmem_test_get_sg_table
[21:30:01] [PASSED] drm_gem_shmem_test_madvise
[21:30:01] [PASSED] drm_gem_shmem_test_purge
[21:30:01] ================== [PASSED] drm_gem_shmem ==================
[21:30:01] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[21:30:01] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[21:30:01] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[21:30:01] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[21:30:01] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[21:30:01] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[21:30:01] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[21:30:01] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[21:30:01] [PASSED] Automatic
[21:30:01] [PASSED] Full
[21:30:01] [PASSED] Limited 16:235
[21:30:01] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[21:30:01] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[21:30:01] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[21:30:01] [PASSED] drm_test_check_disable_connector
[21:30:01] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[21:30:01] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[21:30:01] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[21:30:01] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[21:30:01] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[21:30:01] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[21:30:01] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[21:30:01] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[21:30:01] [PASSED] drm_test_check_output_bpc_dvi
[21:30:01] [PASSED] drm_test_check_output_bpc_format_vic_1
[21:30:01] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[21:30:01] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[21:30:01] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[21:30:01] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[21:30:01] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[21:30:01] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[21:30:01] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[21:30:01] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[21:30:01] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[21:30:01] [PASSED] drm_test_check_broadcast_rgb_value
[21:30:01] [PASSED] drm_test_check_bpc_8_value
[21:30:01] [PASSED] drm_test_check_bpc_10_value
[21:30:01] [PASSED] drm_test_check_bpc_12_value
[21:30:01] [PASSED] drm_test_check_format_value
[21:30:01] [PASSED] drm_test_check_tmds_char_value
[21:30:01] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[21:30:01] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[21:30:01] [PASSED] drm_test_check_mode_valid
[21:30:01] [PASSED] drm_test_check_mode_valid_reject
[21:30:01] [PASSED] drm_test_check_mode_valid_reject_rate
[21:30:01] [PASSED] drm_test_check_mode_valid_reject_max_clock
[21:30:01] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[21:30:01] ================= drm_managed (2 subtests) =================
[21:30:01] [PASSED] drm_test_managed_release_action
[21:30:01] [PASSED] drm_test_managed_run_action
[21:30:01] =================== [PASSED] drm_managed ===================
[21:30:01] =================== drm_mm (6 subtests) ====================
[21:30:01] [PASSED] drm_test_mm_init
[21:30:01] [PASSED] drm_test_mm_debug
[21:30:01] [PASSED] drm_test_mm_align32
[21:30:01] [PASSED] drm_test_mm_align64
[21:30:01] [PASSED] drm_test_mm_lowest
[21:30:01] [PASSED] drm_test_mm_highest
[21:30:01] ===================== [PASSED] drm_mm ======================
[21:30:01] ============= drm_modes_analog_tv (5 subtests) =============
[21:30:01] [PASSED] drm_test_modes_analog_tv_mono_576i
[21:30:01] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[21:30:01] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[21:30:01] [PASSED] drm_test_modes_analog_tv_pal_576i
[21:30:01] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[21:30:01] =============== [PASSED] drm_modes_analog_tv ===============
[21:30:01] ============== drm_plane_helper (2 subtests) ===============
[21:30:01] =============== drm_test_check_plane_state ================
[21:30:01] [PASSED] clipping_simple
[21:30:01] [PASSED] clipping_rotate_reflect
[21:30:01] [PASSED] positioning_simple
[21:30:01] [PASSED] upscaling
[21:30:01] [PASSED] downscaling
[21:30:01] [PASSED] rounding1
[21:30:01] [PASSED] rounding2
[21:30:01] [PASSED] rounding3
[21:30:01] [PASSED] rounding4
[21:30:01] =========== [PASSED] drm_test_check_plane_state ============
[21:30:01] =========== drm_test_check_invalid_plane_state ============
[21:30:01] [PASSED] positioning_invalid
[21:30:01] [PASSED] upscaling_invalid
[21:30:01] [PASSED] downscaling_invalid
[21:30:01] ======= [PASSED] drm_test_check_invalid_plane_state ========
[21:30:01] ================ [PASSED] drm_plane_helper =================
[21:30:01] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[21:30:01] ====== drm_test_connector_helper_tv_get_modes_check =======
[21:30:01] [PASSED] None
[21:30:01] [PASSED] PAL
[21:30:01] [PASSED] NTSC
[21:30:01] [PASSED] Both, NTSC Default
[21:30:01] [PASSED] Both, PAL Default
[21:30:01] [PASSED] Both, NTSC Default, with PAL on command-line
[21:30:01] [PASSED] Both, PAL Default, with NTSC on command-line
[21:30:01] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[21:30:01] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[21:30:01] ================== drm_rect (9 subtests) ===================
[21:30:01] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[21:30:01] [PASSED] drm_test_rect_clip_scaled_not_clipped
[21:30:01] [PASSED] drm_test_rect_clip_scaled_clipped
[21:30:01] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[21:30:01] ================= drm_test_rect_intersect =================
[21:30:01] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[21:30:01] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[21:30:01] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[21:30:01] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[21:30:01] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[21:30:01] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[21:30:01] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[21:30:01] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[21:30:01] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[21:30:01] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[21:30:01] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[21:30:01] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[21:30:01] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[21:30:01] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[21:30:01] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[21:30:01] ============= [PASSED] drm_test_rect_intersect =============
[21:30:01] ================ drm_test_rect_calc_hscale ================
[21:30:01] [PASSED] normal use
[21:30:01] [PASSED] out of max range
[21:30:01] [PASSED] out of min range
[21:30:01] [PASSED] zero dst
[21:30:01] [PASSED] negative src
[21:30:01] [PASSED] negative dst
[21:30:01] ============ [PASSED] drm_test_rect_calc_hscale ============
[21:30:01] ================ drm_test_rect_calc_vscale ================
[21:30:01] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[21:30:01] [PASSED] out of max range
[21:30:01] [PASSED] out of min range
[21:30:01] [PASSED] zero dst
[21:30:01] [PASSED] negative src
[21:30:01] [PASSED] negative dst
[21:30:01] ============ [PASSED] drm_test_rect_calc_vscale ============
[21:30:01] ================== drm_test_rect_rotate ===================
[21:30:01] [PASSED] reflect-x
[21:30:01] [PASSED] reflect-y
[21:30:01] [PASSED] rotate-0
[21:30:01] [PASSED] rotate-90
[21:30:01] [PASSED] rotate-180
[21:30:01] [PASSED] rotate-270
[21:30:01] ============== [PASSED] drm_test_rect_rotate ===============
[21:30:01] ================ drm_test_rect_rotate_inv =================
[21:30:01] [PASSED] reflect-x
[21:30:01] [PASSED] reflect-y
[21:30:01] [PASSED] rotate-0
[21:30:01] [PASSED] rotate-90
[21:30:01] [PASSED] rotate-180
[21:30:01] [PASSED] rotate-270
[21:30:01] ============ [PASSED] drm_test_rect_rotate_inv =============
[21:30:01] ==================== [PASSED] drm_rect =====================
[21:30:01] ============ drm_sysfb_modeset_test (1 subtest) ============
[21:30:01] ============ drm_test_sysfb_build_fourcc_list =============
[21:30:01] [PASSED] no native formats
[21:30:01] [PASSED] XRGB8888 as native format
[21:30:01] [PASSED] remove duplicates
[21:30:01] [PASSED] convert alpha formats
[21:30:01] [PASSED] random formats
[21:30:01] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[21:30:01] ============= [PASSED] drm_sysfb_modeset_test ==============
[21:30:01] ============================================================
[21:30:01] Testing complete. Ran 622 tests: passed: 622
[21:30:01] Elapsed time: 26.836s total, 1.745s configuring, 24.675s building, 0.379s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[21:30:01] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:30:03] 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
[21:30:12] Starting KUnit Kernel (1/1)...
[21:30:12] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:30:12] ================= ttm_device (5 subtests) ==================
[21:30:12] [PASSED] ttm_device_init_basic
[21:30:12] [PASSED] ttm_device_init_multiple
[21:30:12] [PASSED] ttm_device_fini_basic
[21:30:12] [PASSED] ttm_device_init_no_vma_man
[21:30:12] ================== ttm_device_init_pools ==================
[21:30:12] [PASSED] No DMA allocations, no DMA32 required
[21:30:12] [PASSED] DMA allocations, DMA32 required
[21:30:12] [PASSED] No DMA allocations, DMA32 required
[21:30:12] [PASSED] DMA allocations, no DMA32 required
[21:30:12] ============== [PASSED] ttm_device_init_pools ==============
[21:30:12] =================== [PASSED] ttm_device ====================
[21:30:12] ================== ttm_pool (8 subtests) ===================
[21:30:12] ================== ttm_pool_alloc_basic ===================
[21:30:12] [PASSED] One page
[21:30:12] [PASSED] More than one page
[21:30:12] [PASSED] Above the allocation limit
[21:30:12] [PASSED] One page, with coherent DMA mappings enabled
[21:30:12] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[21:30:12] ============== [PASSED] ttm_pool_alloc_basic ===============
[21:30:12] ============== ttm_pool_alloc_basic_dma_addr ==============
[21:30:12] [PASSED] One page
[21:30:12] [PASSED] More than one page
[21:30:12] [PASSED] Above the allocation limit
[21:30:12] [PASSED] One page, with coherent DMA mappings enabled
[21:30:12] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[21:30:12] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[21:30:12] [PASSED] ttm_pool_alloc_order_caching_match
[21:30:12] [PASSED] ttm_pool_alloc_caching_mismatch
[21:30:12] [PASSED] ttm_pool_alloc_order_mismatch
[21:30:12] [PASSED] ttm_pool_free_dma_alloc
[21:30:12] [PASSED] ttm_pool_free_no_dma_alloc
[21:30:12] [PASSED] ttm_pool_fini_basic
[21:30:12] ==================== [PASSED] ttm_pool =====================
[21:30:12] ================ ttm_resource (8 subtests) =================
[21:30:12] ================= ttm_resource_init_basic =================
[21:30:12] [PASSED] Init resource in TTM_PL_SYSTEM
[21:30:12] [PASSED] Init resource in TTM_PL_VRAM
[21:30:12] [PASSED] Init resource in a private placement
[21:30:12] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[21:30:12] ============= [PASSED] ttm_resource_init_basic =============
[21:30:12] [PASSED] ttm_resource_init_pinned
[21:30:12] [PASSED] ttm_resource_fini_basic
[21:30:12] [PASSED] ttm_resource_manager_init_basic
[21:30:12] [PASSED] ttm_resource_manager_usage_basic
[21:30:12] [PASSED] ttm_resource_manager_set_used_basic
[21:30:12] [PASSED] ttm_sys_man_alloc_basic
[21:30:12] [PASSED] ttm_sys_man_free_basic
[21:30:12] ================== [PASSED] ttm_resource ===================
[21:30:12] =================== ttm_tt (15 subtests) ===================
[21:30:12] ==================== ttm_tt_init_basic ====================
[21:30:12] [PASSED] Page-aligned size
[21:30:12] [PASSED] Extra pages requested
[21:30:12] ================ [PASSED] ttm_tt_init_basic ================
[21:30:12] [PASSED] ttm_tt_init_misaligned
[21:30:12] [PASSED] ttm_tt_fini_basic
[21:30:12] [PASSED] ttm_tt_fini_sg
[21:30:12] [PASSED] ttm_tt_fini_shmem
[21:30:12] [PASSED] ttm_tt_create_basic
[21:30:12] [PASSED] ttm_tt_create_invalid_bo_type
[21:30:12] [PASSED] ttm_tt_create_ttm_exists
[21:30:12] [PASSED] ttm_tt_create_failed
[21:30:12] [PASSED] ttm_tt_destroy_basic
[21:30:12] [PASSED] ttm_tt_populate_null_ttm
[21:30:12] [PASSED] ttm_tt_populate_populated_ttm
[21:30:12] [PASSED] ttm_tt_unpopulate_basic
[21:30:12] [PASSED] ttm_tt_unpopulate_empty_ttm
[21:30:12] [PASSED] ttm_tt_swapin_basic
[21:30:12] ===================== [PASSED] ttm_tt ======================
[21:30:12] =================== ttm_bo (14 subtests) ===================
[21:30:12] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[21:30:12] [PASSED] Cannot be interrupted and sleeps
[21:30:12] [PASSED] Cannot be interrupted, locks straight away
[21:30:12] [PASSED] Can be interrupted, sleeps
[21:30:12] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[21:30:12] [PASSED] ttm_bo_reserve_locked_no_sleep
[21:30:12] [PASSED] ttm_bo_reserve_no_wait_ticket
[21:30:12] [PASSED] ttm_bo_reserve_double_resv
[21:30:12] [PASSED] ttm_bo_reserve_interrupted
[21:30:12] [PASSED] ttm_bo_reserve_deadlock
[21:30:12] [PASSED] ttm_bo_unreserve_basic
[21:30:12] [PASSED] ttm_bo_unreserve_pinned
[21:30:12] [PASSED] ttm_bo_unreserve_bulk
[21:30:12] [PASSED] ttm_bo_fini_basic
[21:30:12] [PASSED] ttm_bo_fini_shared_resv
[21:30:12] [PASSED] ttm_bo_pin_basic
[21:30:12] [PASSED] ttm_bo_pin_unpin_resource
[21:30:12] [PASSED] ttm_bo_multiple_pin_one_unpin
[21:30:12] ===================== [PASSED] ttm_bo ======================
[21:30:12] ============== ttm_bo_validate (21 subtests) ===============
[21:30:12] ============== ttm_bo_init_reserved_sys_man ===============
[21:30:12] [PASSED] Buffer object for userspace
[21:30:12] [PASSED] Kernel buffer object
[21:30:12] [PASSED] Shared buffer object
[21:30:12] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[21:30:12] ============== ttm_bo_init_reserved_mock_man ==============
[21:30:12] [PASSED] Buffer object for userspace
[21:30:12] [PASSED] Kernel buffer object
[21:30:12] [PASSED] Shared buffer object
[21:30:12] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[21:30:12] [PASSED] ttm_bo_init_reserved_resv
[21:30:12] ================== ttm_bo_validate_basic ==================
[21:30:12] [PASSED] Buffer object for userspace
[21:30:12] [PASSED] Kernel buffer object
[21:30:12] [PASSED] Shared buffer object
[21:30:12] ============== [PASSED] ttm_bo_validate_basic ==============
[21:30:12] [PASSED] ttm_bo_validate_invalid_placement
[21:30:12] ============= ttm_bo_validate_same_placement ==============
[21:30:12] [PASSED] System manager
[21:30:12] [PASSED] VRAM manager
[21:30:12] ========= [PASSED] ttm_bo_validate_same_placement ==========
[21:30:12] [PASSED] ttm_bo_validate_failed_alloc
[21:30:12] [PASSED] ttm_bo_validate_pinned
[21:30:12] [PASSED] ttm_bo_validate_busy_placement
[21:30:12] ================ ttm_bo_validate_multihop =================
[21:30:12] [PASSED] Buffer object for userspace
[21:30:12] [PASSED] Kernel buffer object
[21:30:12] [PASSED] Shared buffer object
[21:30:12] ============ [PASSED] ttm_bo_validate_multihop =============
[21:30:12] ========== ttm_bo_validate_no_placement_signaled ==========
[21:30:12] [PASSED] Buffer object in system domain, no page vector
[21:30:12] [PASSED] Buffer object in system domain with an existing page vector
[21:30:12] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[21:30:12] ======== ttm_bo_validate_no_placement_not_signaled ========
[21:30:12] [PASSED] Buffer object for userspace
[21:30:12] [PASSED] Kernel buffer object
[21:30:12] [PASSED] Shared buffer object
[21:30:12] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[21:30:12] [PASSED] ttm_bo_validate_move_fence_signaled
[21:30:12] ========= ttm_bo_validate_move_fence_not_signaled =========
[21:30:12] [PASSED] Waits for GPU
[21:30:12] [PASSED] Tries to lock straight away
[21:30:12] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[21:30:12] [PASSED] ttm_bo_validate_happy_evict
[21:30:12] [PASSED] ttm_bo_validate_all_pinned_evict
[21:30:12] [PASSED] ttm_bo_validate_allowed_only_evict
[21:30:12] [PASSED] ttm_bo_validate_deleted_evict
[21:30:12] [PASSED] ttm_bo_validate_busy_domain_evict
[21:30:12] [PASSED] ttm_bo_validate_evict_gutting
[21:30:12] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[21:30:12] ================= [PASSED] ttm_bo_validate =================
[21:30:12] ============================================================
[21:30:12] Testing complete. Ran 101 tests: passed: 101
[21:30:12] Elapsed time: 11.237s total, 1.707s configuring, 9.315s building, 0.181s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 17+ messages in thread* ✗ Xe.CI.BAT: failure for PF: migration-friendly auto-provisioning
2025-11-05 18:32 [PATCH 0/3] PF: migration-friendly auto-provisioning Michal Wajdeczko
` (4 preceding siblings ...)
2025-11-05 21:30 ` ✓ CI.KUnit: success " Patchwork
@ 2025-11-05 22:46 ` Patchwork
2025-11-06 9:50 ` ✗ Xe.CI.Full: " Patchwork
` (4 subsequent siblings)
10 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-11-05 22:46 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 3226 bytes --]
== Series Details ==
Series: PF: migration-friendly auto-provisioning
URL : https://patchwork.freedesktop.org/series/157094/
State : failure
== Summary ==
CI Bug Log - changes from xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad_BAT -> xe-pw-157094v1_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-157094v1_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-157094v1_BAT, 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 (12 -> 12)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-157094v1_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_waitfence@engine:
- bat-dg2-oem2: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/bat-dg2-oem2/igt@xe_waitfence@engine.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/bat-dg2-oem2/igt@xe_waitfence@engine.html
Known issues
------------
Here are the changes found in xe-pw-157094v1_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-plain-flip@b-edp1:
- bat-adlp-7: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#4543]) +1 other test dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/bat-adlp-7/igt@kms_flip@basic-plain-flip@b-edp1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/bat-adlp-7/igt@kms_flip@basic-plain-flip@b-edp1.html
* igt@xe_waitfence@abstime:
- bat-dg2-oem2: [PASS][5] -> [TIMEOUT][6] ([Intel XE#6506])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/bat-dg2-oem2/igt@xe_waitfence@abstime.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- bat-adlp-vm: [INCOMPLETE][7] -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/bat-adlp-vm/igt@core_hotunplug@unbind-rebind.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/bat-adlp-vm/igt@core_hotunplug@unbind-rebind.html
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506
Build changes
-------------
* Linux: xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad -> xe-pw-157094v1
IGT_8608: 42ea0108ec47e4a00aed97d6f98e5339847c7331 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad: 4247aae08afc576bbe58c7998b5e2f6a2ea982ad
xe-pw-157094v1: 157094v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/index.html
[-- Attachment #2: Type: text/html, Size: 3895 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread* ✗ Xe.CI.Full: failure for PF: migration-friendly auto-provisioning
2025-11-05 18:32 [PATCH 0/3] PF: migration-friendly auto-provisioning Michal Wajdeczko
` (5 preceding siblings ...)
2025-11-05 22:46 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2025-11-06 9:50 ` Patchwork
2025-11-06 17:13 ` ✗ CI.checkpatch: warning for PF: migration-friendly auto-provisioning (rev2) Patchwork
` (3 subsequent siblings)
10 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-11-06 9:50 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 32672 bytes --]
== Series Details ==
Series: PF: migration-friendly auto-provisioning
URL : https://patchwork.freedesktop.org/series/157094/
State : failure
== Summary ==
CI Bug Log - changes from xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad_FULL -> xe-pw-157094v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-157094v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-157094v1_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-157094v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_pmu@engine-activity-suspend:
- shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-dg2-436/igt@xe_pmu@engine-activity-suspend.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-463/igt@xe_pmu@engine-activity-suspend.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-adlp: [PASS][3] -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-adlp-4/igt@xe_wedged@wedged-at-any-timeout.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-adlp-1/igt@xe_wedged@wedged-at-any-timeout.html
Known issues
------------
Here are the changes found in xe-pw-157094v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-1:
- shard-adlp: [PASS][5] -> [FAIL][6] ([Intel XE#3884])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-adlp-9/igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-1.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-adlp-8/igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#316]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-433/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2328])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-adlp: [PASS][9] -> [DMESG-FAIL][10] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-432/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-bmg: [PASS][12] -> [SKIP][13] ([Intel XE#2314] / [Intel XE#2894])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#2191])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#2907])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-433/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#3442])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#787]) +20 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-433/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-a-dp-4.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#455] / [Intel XE#787]) +5 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][19] ([Intel XE#1727] / [Intel XE#4345] / [Intel XE#6168])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-466/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@pipe-b-dp-4:
- shard-dg2-set2: [PASS][20] -> [INCOMPLETE][21] ([Intel XE#6168])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [PASS][22] -> [DMESG-WARN][23] ([Intel XE#1727] / [Intel XE#3113])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#306]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-432/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2252])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-bmg-8/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#373])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-433/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#308])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-bmg: [PASS][28] -> [SKIP][29] ([Intel XE#2291])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-bmg-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_dp_aux_dev:
- shard-bmg: [PASS][30] -> [SKIP][31] ([Intel XE#3009])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-bmg-1/igt@kms_dp_aux_dev.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-bmg-6/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#4356])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-432/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#2316]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-bmg-1/igt@kms_flip@2x-plain-flip-interruptible.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-bmg-6/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [PASS][35] -> [FAIL][36] ([Intel XE#301]) +1 other test fail
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#455]) +6 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-x:
- shard-adlp: [PASS][38] -> [DMESG-FAIL][39] ([Intel XE#4543]) +1 other test dmesg-fail
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-adlp-2/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-x.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-adlp-2/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-x.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#651]) +8 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#6312])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#653]) +8 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#346])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-bmg-8/igt@kms_joiner@basic-big-joiner.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-adlp: [PASS][44] -> [DMESG-WARN][45] ([Intel XE#2953] / [Intel XE#4173]) +4 other tests dmesg-warn
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-adlp-2/igt@kms_plane@plane-panning-bottom-right-suspend.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-adlp-6/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#3309])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-432/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#1406] / [Intel XE#1489])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@pr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-bmg-7/igt@kms_psr@pr-primary-page-flip.html
* igt@kms_psr@psr2-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-432/igt@kms_psr@psr2-sprite-plane-move.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#1127])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [PASS][51] -> [SKIP][52] ([Intel XE#1435])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#330])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-432/igt@kms_tv_load_detect@load-detect.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#4837]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-432/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [PASS][55] -> [INCOMPLETE][56] ([Intel XE#6321])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind:
- shard-dg2-set2: [PASS][57] -> [INCOMPLETE][58] ([Intel XE#2594])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-dg2-464/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html
* igt@xe_exec_basic@multigpu-once-basic-defer-bind:
- shard-dg2-set2: [PASS][59] -> [SKIP][60] ([Intel XE#1392])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-dg2-436/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-463/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
* igt@xe_exec_fault_mode@once-bindexecqueue-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#288]) +7 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-432/igt@xe_exec_fault_mode@once-bindexecqueue-rebind.html
* igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][62] ([Intel XE#6299])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-432/igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads.html
* igt@xe_exec_system_allocator@many-64k-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#5007])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-bmg-8/igt@xe_exec_system_allocator@many-64k-mmap-new-huge.html
* igt@xe_exec_system_allocator@threads-many-execqueues-new-bo-map:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#4915]) +70 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-433/igt@xe_exec_system_allocator@threads-many-execqueues-new-bo-map.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-dg2-set2: [PASS][65] -> [DMESG-WARN][66] ([Intel XE#5893])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-dg2-436/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-463/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_oa@polling-small-buf:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#3573]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-433/igt@xe_oa@polling-small-buf.html
* igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_enhance0:
- shard-lnl: [PASS][68] -> [FAIL][69] ([Intel XE#6251])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-lnl-4/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_enhance0.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-lnl-5/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_enhance0.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: NOTRUN -> [FAIL][70] ([Intel XE#5166]) +1 other test fail
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-432/igt@xe_pmu@gt-frequency.html
* igt@xe_pxp@pxp-stale-queue-post-termination-irq:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#4733])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-432/igt@xe_pxp@pxp-stale-queue-post-termination-irq.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#944])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-432/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random:
- shard-adlp: [PASS][73] -> [ABORT][74] ([Intel XE#5466] / [Intel XE#5545]) +1 other test abort
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-adlp-3/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-adlp-6/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
* igt@xe_sriov_vram@vf-access-beyond:
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#6318])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-432/igt@xe_sriov_vram@vf-access-beyond.html
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-modeset@b-hdmi-a1:
- shard-adlp: [DMESG-WARN][76] ([Intel XE#4543]) -> [PASS][77] +1 other test pass
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-adlp-8/igt@kms_flip@basic-flip-vs-modeset@b-hdmi-a1.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-adlp-4/igt@kms_flip@basic-flip-vs-modeset@b-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [INCOMPLETE][78] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][79] +1 other test pass
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-x:
- shard-adlp: [DMESG-FAIL][80] ([Intel XE#4543]) -> [PASS][81] +1 other test pass
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-adlp-2/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-x.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-adlp-2/igt@kms_flip_tiling@flip-change-tiling@pipe-c-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][82] ([Intel XE#1874]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-adlp-2/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-adlp-2/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [SKIP][84] ([Intel XE#455]) -> [PASS][85]
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-dg2-436/igt@kms_hdr@invalid-hdr.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-adlp: [DMESG-WARN][86] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][87] +9 other tests pass
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-adlp-3/igt@kms_vblank@ts-continuation-suspend.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-adlp-6/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][88] ([Intel XE#4459]) -> [PASS][89] +1 other test pass
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][90] ([Intel XE#6321]) -> [PASS][91]
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0:
- shard-lnl: [FAIL][92] ([Intel XE#6251]) -> [PASS][93] +1 other test pass
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-lnl-7/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-lnl-3/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0.html
#### Warnings ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][94] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][95] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) +1 other test incomplete
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][96] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522] / [Intel XE#6014]) -> [DMESG-WARN][97] ([Intel XE#1727] / [Intel XE#3113])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][98] ([Intel XE#2311]) -> [SKIP][99] ([Intel XE#2312]) +3 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][100] ([Intel XE#5390]) -> [SKIP][101] ([Intel XE#2312]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][102] ([Intel XE#2313]) -> [SKIP][103] ([Intel XE#2312]) +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [FAIL][104] -> [FAIL][105] ([Intel XE#5862]) +1 other test fail
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-adlp: [DMESG-FAIL][106] ([Intel XE#3868] / [Intel XE#5213]) -> [DMESG-FAIL][107] ([Intel XE#3868] / [Intel XE#5213] / [Intel XE#5545]) +1 other test dmesg-fail
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad/shard-adlp-4/igt@xe_sriov_scheduling@equal-throughput.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/shard-adlp-1/igt@xe_sriov_scheduling@equal-throughput.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[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#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[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#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[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#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[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#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
[Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
[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#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[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#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5166
[Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5862
[Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
[Intel XE#6014]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6014
[Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
[Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
[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#6318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6318
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad -> xe-pw-157094v1
IGT_8608: 42ea0108ec47e4a00aed97d6f98e5339847c7331 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4052-4247aae08afc576bbe58c7998b5e2f6a2ea982ad: 4247aae08afc576bbe58c7998b5e2f6a2ea982ad
xe-pw-157094v1: 157094v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v1/index.html
[-- Attachment #2: Type: text/html, Size: 37755 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread* ✗ CI.checkpatch: warning for PF: migration-friendly auto-provisioning (rev2)
2025-11-05 18:32 [PATCH 0/3] PF: migration-friendly auto-provisioning Michal Wajdeczko
` (6 preceding siblings ...)
2025-11-06 9:50 ` ✗ Xe.CI.Full: " Patchwork
@ 2025-11-06 17:13 ` Patchwork
2025-11-06 17:15 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
10 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-11-06 17:13 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: PF: migration-friendly auto-provisioning (rev2)
URL : https://patchwork.freedesktop.org/series/157094/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
d9120d4d84745cf011b4b3efb338747e69179dfb
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 8c23a6d2309b9fc2b695371039dc7542997bfaeb
Author: Michal Wajdeczko <michal.wajdeczko@intel.com>
Date: Thu Nov 6 17:59:32 2025 +0100
drm/xe/tests: Add KUnit tests for PF fair provisioning
Add test cases to check outcome of fair GuC context or doorbells
IDs allocations for regular and admin-only PF mode.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Piotr Piórkowski <piotr.piorkowski@intel.com>
+ /mt/dim checkpatch fd2676900ab19242ed193a757445cba453254deb drm-intel
7944901804c4 drm/xe/pf: Use migration-friendly context IDs auto-provisioning
b4c64263e371 drm/xe/pf: Use migration-friendly doorbells auto-provisioning
8c23a6d2309b drm/xe/tests: Add KUnit tests for PF fair provisioning
-:16: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#16:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 169 lines checked
^ permalink raw reply [flat|nested] 17+ messages in thread* ✓ CI.KUnit: success for PF: migration-friendly auto-provisioning (rev2)
2025-11-05 18:32 [PATCH 0/3] PF: migration-friendly auto-provisioning Michal Wajdeczko
` (7 preceding siblings ...)
2025-11-06 17:13 ` ✗ CI.checkpatch: warning for PF: migration-friendly auto-provisioning (rev2) Patchwork
@ 2025-11-06 17:15 ` Patchwork
2025-11-06 17:53 ` ✓ Xe.CI.BAT: " Patchwork
2025-11-07 14:52 ` ✗ Xe.CI.Full: failure " Patchwork
10 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-11-06 17:15 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: PF: migration-friendly auto-provisioning (rev2)
URL : https://patchwork.freedesktop.org/series/157094/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[17:13:53] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:13:57] 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
[17:14:28] Starting KUnit Kernel (1/1)...
[17:14:28] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:14:28] ================== guc_buf (11 subtests) ===================
[17:14:28] [PASSED] test_smallest
[17:14:28] [PASSED] test_largest
[17:14:28] [PASSED] test_granular
[17:14:28] [PASSED] test_unique
[17:14:28] [PASSED] test_overlap
[17:14:28] [PASSED] test_reusable
[17:14:28] [PASSED] test_too_big
[17:14:28] [PASSED] test_flush
[17:14:28] [PASSED] test_lookup
[17:14:28] [PASSED] test_data
[17:14:28] [PASSED] test_class
[17:14:28] ===================== [PASSED] guc_buf =====================
[17:14:28] =================== guc_dbm (7 subtests) ===================
[17:14:28] [PASSED] test_empty
[17:14:28] [PASSED] test_default
[17:14:28] ======================== test_size ========================
[17:14:28] [PASSED] 4
[17:14:28] [PASSED] 8
[17:14:28] [PASSED] 32
[17:14:28] [PASSED] 256
[17:14:28] ==================== [PASSED] test_size ====================
[17:14:28] ======================= test_reuse ========================
[17:14:28] [PASSED] 4
[17:14:28] [PASSED] 8
[17:14:28] [PASSED] 32
[17:14:28] [PASSED] 256
[17:14:28] =================== [PASSED] test_reuse ====================
[17:14:28] =================== test_range_overlap ====================
[17:14:28] [PASSED] 4
[17:14:28] [PASSED] 8
[17:14:28] [PASSED] 32
[17:14:28] [PASSED] 256
[17:14:28] =============== [PASSED] test_range_overlap ================
[17:14:28] =================== test_range_compact ====================
[17:14:28] [PASSED] 4
[17:14:28] [PASSED] 8
[17:14:28] [PASSED] 32
[17:14:28] [PASSED] 256
[17:14:28] =============== [PASSED] test_range_compact ================
[17:14:28] ==================== test_range_spare =====================
[17:14:28] [PASSED] 4
[17:14:28] [PASSED] 8
[17:14:28] [PASSED] 32
[17:14:28] [PASSED] 256
[17:14:28] ================ [PASSED] test_range_spare =================
[17:14:28] ===================== [PASSED] guc_dbm =====================
[17:14:28] =================== guc_idm (6 subtests) ===================
[17:14:28] [PASSED] bad_init
[17:14:28] [PASSED] no_init
[17:14:28] [PASSED] init_fini
[17:14:28] [PASSED] check_used
[17:14:28] [PASSED] check_quota
[17:14:28] [PASSED] check_all
[17:14:28] ===================== [PASSED] guc_idm =====================
[17:14:28] ================== no_relay (3 subtests) ===================
[17:14:28] [PASSED] xe_drops_guc2pf_if_not_ready
[17:14:28] [PASSED] xe_drops_guc2vf_if_not_ready
[17:14:28] [PASSED] xe_rejects_send_if_not_ready
[17:14:28] ==================== [PASSED] no_relay =====================
[17:14:28] ================== pf_relay (14 subtests) ==================
[17:14:28] [PASSED] pf_rejects_guc2pf_too_short
[17:14:28] [PASSED] pf_rejects_guc2pf_too_long
[17:14:28] [PASSED] pf_rejects_guc2pf_no_payload
[17:14:28] [PASSED] pf_fails_no_payload
[17:14:28] [PASSED] pf_fails_bad_origin
[17:14:28] [PASSED] pf_fails_bad_type
[17:14:28] [PASSED] pf_txn_reports_error
[17:14:28] [PASSED] pf_txn_sends_pf2guc
[17:14:28] [PASSED] pf_sends_pf2guc
[17:14:28] [SKIPPED] pf_loopback_nop
[17:14:28] [SKIPPED] pf_loopback_echo
[17:14:28] [SKIPPED] pf_loopback_fail
[17:14:28] [SKIPPED] pf_loopback_busy
[17:14:28] [SKIPPED] pf_loopback_retry
[17:14:28] ==================== [PASSED] pf_relay =====================
[17:14:28] ================== vf_relay (3 subtests) ===================
[17:14:28] [PASSED] vf_rejects_guc2vf_too_short
[17:14:28] [PASSED] vf_rejects_guc2vf_too_long
[17:14:28] [PASSED] vf_rejects_guc2vf_no_payload
[17:14:28] ==================== [PASSED] vf_relay =====================
[17:14:28] ================ pf_gt_config (4 subtests) =================
[17:14:28] [PASSED] fair_contexts_1vf
[17:14:28] [PASSED] fair_doorbells_1vf
[17:14:28] ====================== fair_contexts ======================
[17:14:28] [PASSED] 1 VF
[17:14:28] [PASSED] 2 VFs
[17:14:28] [PASSED] 3 VFs
[17:14:28] [PASSED] 4 VFs
[17:14:28] [PASSED] 5 VFs
[17:14:28] [PASSED] 6 VFs
[17:14:28] [PASSED] 7 VFs
[17:14:28] [PASSED] 8 VFs
[17:14:28] [PASSED] 9 VFs
[17:14:28] [PASSED] 10 VFs
[17:14:28] [PASSED] 11 VFs
[17:14:28] [PASSED] 12 VFs
[17:14:28] [PASSED] 13 VFs
[17:14:28] [PASSED] 14 VFs
[17:14:28] [PASSED] 15 VFs
[17:14:28] [PASSED] 16 VFs
[17:14:28] [PASSED] 17 VFs
[17:14:28] [PASSED] 18 VFs
[17:14:28] [PASSED] 19 VFs
[17:14:28] [PASSED] 20 VFs
[17:14:28] [PASSED] 21 VFs
[17:14:28] [PASSED] 22 VFs
[17:14:28] [PASSED] 23 VFs
[17:14:28] [PASSED] 24 VFs
[17:14:28] [PASSED] 25 VFs
[17:14:28] [PASSED] 26 VFs
[17:14:28] [PASSED] 27 VFs
[17:14:28] [PASSED] 28 VFs
[17:14:28] [PASSED] 29 VFs
[17:14:28] [PASSED] 30 VFs
[17:14:28] [PASSED] 31 VFs
[17:14:28] [PASSED] 32 VFs
[17:14:28] [PASSED] 33 VFs
[17:14:28] [PASSED] 34 VFs
[17:14:28] [PASSED] 35 VFs
[17:14:28] [PASSED] 36 VFs
[17:14:28] [PASSED] 37 VFs
[17:14:28] [PASSED] 38 VFs
[17:14:28] [PASSED] 39 VFs
[17:14:28] [PASSED] 40 VFs
[17:14:28] [PASSED] 41 VFs
[17:14:28] [PASSED] 42 VFs
[17:14:28] [PASSED] 43 VFs
[17:14:28] [PASSED] 44 VFs
[17:14:28] [PASSED] 45 VFs
[17:14:28] [PASSED] 46 VFs
[17:14:28] [PASSED] 47 VFs
[17:14:28] [PASSED] 48 VFs
[17:14:28] [PASSED] 49 VFs
[17:14:28] [PASSED] 50 VFs
[17:14:28] [PASSED] 51 VFs
[17:14:28] [PASSED] 52 VFs
[17:14:28] [PASSED] 53 VFs
[17:14:28] [PASSED] 54 VFs
[17:14:28] [PASSED] 55 VFs
[17:14:28] [PASSED] 56 VFs
[17:14:28] [PASSED] 57 VFs
[17:14:28] [PASSED] 58 VFs
[17:14:28] [PASSED] 59 VFs
[17:14:28] [PASSED] 60 VFs
[17:14:28] [PASSED] 61 VFs
[17:14:28] [PASSED] 62 VFs
[17:14:28] [PASSED] 63 VFs
[17:14:28] ================== [PASSED] fair_contexts ==================
[17:14:28] ===================== fair_doorbells ======================
[17:14:28] [PASSED] 1 VF
[17:14:28] [PASSED] 2 VFs
[17:14:28] [PASSED] 3 VFs
[17:14:28] [PASSED] 4 VFs
[17:14:28] [PASSED] 5 VFs
[17:14:28] [PASSED] 6 VFs
[17:14:28] [PASSED] 7 VFs
[17:14:28] [PASSED] 8 VFs
[17:14:28] [PASSED] 9 VFs
[17:14:28] [PASSED] 10 VFs
[17:14:28] [PASSED] 11 VFs
[17:14:28] [PASSED] 12 VFs
[17:14:28] [PASSED] 13 VFs
[17:14:28] [PASSED] 14 VFs
[17:14:28] [PASSED] 15 VFs
[17:14:28] [PASSED] 16 VFs
[17:14:28] [PASSED] 17 VFs
[17:14:28] [PASSED] 18 VFs
[17:14:28] [PASSED] 19 VFs
[17:14:28] [PASSED] 20 VFs
[17:14:28] [PASSED] 21 VFs
[17:14:28] [PASSED] 22 VFs
[17:14:28] [PASSED] 23 VFs
[17:14:28] [PASSED] 24 VFs
[17:14:28] [PASSED] 25 VFs
[17:14:28] [PASSED] 26 VFs
[17:14:28] [PASSED] 27 VFs
[17:14:28] [PASSED] 28 VFs
[17:14:28] [PASSED] 29 VFs
[17:14:28] [PASSED] 30 VFs
[17:14:28] [PASSED] 31 VFs
[17:14:28] [PASSED] 32 VFs
[17:14:28] [PASSED] 33 VFs
[17:14:28] [PASSED] 34 VFs
[17:14:28] [PASSED] 35 VFs
[17:14:28] [PASSED] 36 VFs
[17:14:28] [PASSED] 37 VFs
[17:14:28] [PASSED] 38 VFs
[17:14:28] [PASSED] 39 VFs
[17:14:28] [PASSED] 40 VFs
[17:14:28] [PASSED] 41 VFs
[17:14:28] [PASSED] 42 VFs
[17:14:28] [PASSED] 43 VFs
[17:14:28] [PASSED] 44 VFs
[17:14:28] [PASSED] 45 VFs
[17:14:28] [PASSED] 46 VFs
[17:14:28] [PASSED] 47 VFs
[17:14:28] [PASSED] 48 VFs
[17:14:28] [PASSED] 49 VFs
[17:14:28] [PASSED] 50 VFs
[17:14:28] [PASSED] 51 VFs
[17:14:28] [PASSED] 52 VFs
[17:14:28] [PASSED] 53 VFs
[17:14:28] [PASSED] 54 VFs
[17:14:28] [PASSED] 55 VFs
[17:14:28] [PASSED] 56 VFs
[17:14:28] [PASSED] 57 VFs
[17:14:28] [PASSED] 58 VFs
[17:14:28] [PASSED] 59 VFs
[17:14:28] [PASSED] 60 VFs
[17:14:28] [PASSED] 61 VFs
[17:14:28] [PASSED] 62 VFs
[17:14:28] [PASSED] 63 VFs
[17:14:28] ================= [PASSED] fair_doorbells ==================
[17:14:28] ================== [PASSED] pf_gt_config ===================
[17:14:28] ===================== lmtt (1 subtest) =====================
[17:14:28] ======================== test_ops =========================
[17:14:28] [PASSED] 2-level
[17:14:28] [PASSED] multi-level
[17:14:28] ==================== [PASSED] test_ops =====================
[17:14:28] ====================== [PASSED] lmtt =======================
[17:14:28] ================= pf_service (11 subtests) =================
[17:14:28] [PASSED] pf_negotiate_any
[17:14:28] [PASSED] pf_negotiate_base_match
[17:14:28] [PASSED] pf_negotiate_base_newer
[17:14:28] [PASSED] pf_negotiate_base_next
[17:14:28] [SKIPPED] pf_negotiate_base_older
[17:14:28] [PASSED] pf_negotiate_base_prev
[17:14:28] [PASSED] pf_negotiate_latest_match
[17:14:28] [PASSED] pf_negotiate_latest_newer
[17:14:28] [PASSED] pf_negotiate_latest_next
[17:14:28] [SKIPPED] pf_negotiate_latest_older
[17:14:28] [SKIPPED] pf_negotiate_latest_prev
[17:14:28] =================== [PASSED] pf_service ====================
[17:14:28] ================= xe_guc_g2g (2 subtests) ==================
[17:14:28] ============== xe_live_guc_g2g_kunit_default ==============
[17:14:28] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[17:14:28] ============== xe_live_guc_g2g_kunit_allmem ===============
[17:14:28] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[17:14:28] =================== [SKIPPED] xe_guc_g2g ===================
[17:14:28] =================== xe_mocs (2 subtests) ===================
[17:14:28] ================ xe_live_mocs_kernel_kunit ================
[17:14:28] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[17:14:28] ================ xe_live_mocs_reset_kunit =================
[17:14:28] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[17:14:28] ==================== [SKIPPED] xe_mocs =====================
[17:14:28] ================= xe_migrate (2 subtests) ==================
[17:14:28] ================= xe_migrate_sanity_kunit =================
[17:14:28] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[17:14:28] ================== xe_validate_ccs_kunit ==================
[17:14:28] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[17:14:28] =================== [SKIPPED] xe_migrate ===================
[17:14:28] ================== xe_dma_buf (1 subtest) ==================
[17:14:28] ==================== xe_dma_buf_kunit =====================
[17:14:28] ================ [SKIPPED] xe_dma_buf_kunit ================
[17:14:28] =================== [SKIPPED] xe_dma_buf ===================
[17:14:28] ================= xe_bo_shrink (1 subtest) =================
[17:14:28] =================== xe_bo_shrink_kunit ====================
[17:14:28] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[17:14:28] ================== [SKIPPED] xe_bo_shrink ==================
[17:14:28] ==================== xe_bo (2 subtests) ====================
[17:14:28] ================== xe_ccs_migrate_kunit ===================
[17:14:28] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[17:14:28] ==================== xe_bo_evict_kunit ====================
[17:14:28] =============== [SKIPPED] xe_bo_evict_kunit ================
[17:14:28] ===================== [SKIPPED] xe_bo ======================
[17:14:28] ==================== args (11 subtests) ====================
[17:14:28] [PASSED] count_args_test
[17:14:28] [PASSED] call_args_example
[17:14:28] [PASSED] call_args_test
[17:14:28] [PASSED] drop_first_arg_example
[17:14:28] [PASSED] drop_first_arg_test
[17:14:28] [PASSED] first_arg_example
[17:14:28] [PASSED] first_arg_test
[17:14:28] [PASSED] last_arg_example
[17:14:28] [PASSED] last_arg_test
[17:14:28] [PASSED] pick_arg_example
[17:14:28] [PASSED] sep_comma_example
[17:14:28] ====================== [PASSED] args =======================
[17:14:28] =================== xe_pci (3 subtests) ====================
[17:14:28] ==================== check_graphics_ip ====================
[17:14:28] [PASSED] 12.00 Xe_LP
[17:14:28] [PASSED] 12.10 Xe_LP+
[17:14:28] [PASSED] 12.55 Xe_HPG
[17:14:28] [PASSED] 12.60 Xe_HPC
[17:14:28] [PASSED] 12.70 Xe_LPG
[17:14:28] [PASSED] 12.71 Xe_LPG
[17:14:28] [PASSED] 12.74 Xe_LPG+
[17:14:28] [PASSED] 20.01 Xe2_HPG
[17:14:28] [PASSED] 20.02 Xe2_HPG
[17:14:28] [PASSED] 20.04 Xe2_LPG
[17:14:28] [PASSED] 30.00 Xe3_LPG
[17:14:28] [PASSED] 30.01 Xe3_LPG
[17:14:28] [PASSED] 30.03 Xe3_LPG
[17:14:28] [PASSED] 30.04 Xe3_LPG
[17:14:28] [PASSED] 30.05 Xe3_LPG
[17:14:28] [PASSED] 35.11 Xe3p_XPC
[17:14:28] ================ [PASSED] check_graphics_ip ================
[17:14:28] ===================== check_media_ip ======================
[17:14:28] [PASSED] 12.00 Xe_M
[17:14:28] [PASSED] 12.55 Xe_HPM
[17:14:28] [PASSED] 13.00 Xe_LPM+
[17:14:28] [PASSED] 13.01 Xe2_HPM
[17:14:28] [PASSED] 20.00 Xe2_LPM
[17:14:28] [PASSED] 30.00 Xe3_LPM
[17:14:28] [PASSED] 30.02 Xe3_LPM
[17:14:28] [PASSED] 35.00 Xe3p_LPM
[17:14:28] [PASSED] 35.03 Xe3p_HPM
[17:14:28] ================= [PASSED] check_media_ip ==================
[17:14:28] =================== check_platform_desc ===================
[17:14:28] [PASSED] 0x9A60 (TIGERLAKE)
[17:14:28] [PASSED] 0x9A68 (TIGERLAKE)
[17:14:28] [PASSED] 0x9A70 (TIGERLAKE)
[17:14:28] [PASSED] 0x9A40 (TIGERLAKE)
[17:14:28] [PASSED] 0x9A49 (TIGERLAKE)
[17:14:28] [PASSED] 0x9A59 (TIGERLAKE)
[17:14:28] [PASSED] 0x9A78 (TIGERLAKE)
[17:14:28] [PASSED] 0x9AC0 (TIGERLAKE)
[17:14:28] [PASSED] 0x9AC9 (TIGERLAKE)
[17:14:28] [PASSED] 0x9AD9 (TIGERLAKE)
[17:14:28] [PASSED] 0x9AF8 (TIGERLAKE)
[17:14:28] [PASSED] 0x4C80 (ROCKETLAKE)
[17:14:28] [PASSED] 0x4C8A (ROCKETLAKE)
[17:14:28] [PASSED] 0x4C8B (ROCKETLAKE)
[17:14:28] [PASSED] 0x4C8C (ROCKETLAKE)
[17:14:28] [PASSED] 0x4C90 (ROCKETLAKE)
[17:14:28] [PASSED] 0x4C9A (ROCKETLAKE)
[17:14:28] [PASSED] 0x4680 (ALDERLAKE_S)
[17:14:28] [PASSED] 0x4682 (ALDERLAKE_S)
[17:14:28] [PASSED] 0x4688 (ALDERLAKE_S)
[17:14:28] [PASSED] 0x468A (ALDERLAKE_S)
[17:14:28] [PASSED] 0x468B (ALDERLAKE_S)
[17:14:28] [PASSED] 0x4690 (ALDERLAKE_S)
[17:14:28] [PASSED] 0x4692 (ALDERLAKE_S)
[17:14:28] [PASSED] 0x4693 (ALDERLAKE_S)
[17:14:28] [PASSED] 0x46A0 (ALDERLAKE_P)
[17:14:28] [PASSED] 0x46A1 (ALDERLAKE_P)
[17:14:28] [PASSED] 0x46A2 (ALDERLAKE_P)
[17:14:28] [PASSED] 0x46A3 (ALDERLAKE_P)
[17:14:28] [PASSED] 0x46A6 (ALDERLAKE_P)
[17:14:28] [PASSED] 0x46A8 (ALDERLAKE_P)
[17:14:28] [PASSED] 0x46AA (ALDERLAKE_P)
[17:14:28] [PASSED] 0x462A (ALDERLAKE_P)
[17:14:28] [PASSED] 0x4626 (ALDERLAKE_P)
[17:14:28] [PASSED] 0x4628 (ALDERLAKE_P)
[17:14:28] [PASSED] 0x46B0 (ALDERLAKE_P)
[17:14:28] [PASSED] 0x46B1 (ALDERLAKE_P)
[17:14:28] [PASSED] 0x46B2 (ALDERLAKE_P)
[17:14:28] [PASSED] 0x46B3 (ALDERLAKE_P)
[17:14:28] [PASSED] 0x46C0 (ALDERLAKE_P)
[17:14:28] [PASSED] 0x46C1 (ALDERLAKE_P)
[17:14:28] [PASSED] 0x46C2 (ALDERLAKE_P)
[17:14:28] [PASSED] 0x46C3 (ALDERLAKE_P)
[17:14:28] [PASSED] 0x46D0 (ALDERLAKE_N)
[17:14:28] [PASSED] 0x46D1 (ALDERLAKE_N)
[17:14:28] [PASSED] 0x46D2 (ALDERLAKE_N)
[17:14:28] [PASSED] 0x46D3 (ALDERLAKE_N)
[17:14:28] [PASSED] 0x46D4 (ALDERLAKE_N)
[17:14:28] [PASSED] 0xA721 (ALDERLAKE_P)
[17:14:28] [PASSED] 0xA7A1 (ALDERLAKE_P)
[17:14:28] [PASSED] 0xA7A9 (ALDERLAKE_P)
[17:14:28] [PASSED] 0xA7AC (ALDERLAKE_P)
[17:14:28] [PASSED] 0xA7AD (ALDERLAKE_P)
[17:14:28] [PASSED] 0xA720 (ALDERLAKE_P)
[17:14:28] [PASSED] 0xA7A0 (ALDERLAKE_P)
[17:14:28] [PASSED] 0xA7A8 (ALDERLAKE_P)
[17:14:28] [PASSED] 0xA7AA (ALDERLAKE_P)
[17:14:28] [PASSED] 0xA7AB (ALDERLAKE_P)
[17:14:28] [PASSED] 0xA780 (ALDERLAKE_S)
[17:14:28] [PASSED] 0xA781 (ALDERLAKE_S)
[17:14:28] [PASSED] 0xA782 (ALDERLAKE_S)
[17:14:28] [PASSED] 0xA783 (ALDERLAKE_S)
[17:14:28] [PASSED] 0xA788 (ALDERLAKE_S)
[17:14:28] [PASSED] 0xA789 (ALDERLAKE_S)
[17:14:28] [PASSED] 0xA78A (ALDERLAKE_S)
[17:14:28] [PASSED] 0xA78B (ALDERLAKE_S)
[17:14:28] [PASSED] 0x4905 (DG1)
[17:14:28] [PASSED] 0x4906 (DG1)
[17:14:28] [PASSED] 0x4907 (DG1)
[17:14:28] [PASSED] 0x4908 (DG1)
[17:14:28] [PASSED] 0x4909 (DG1)
[17:14:28] [PASSED] 0x56C0 (DG2)
[17:14:28] [PASSED] 0x56C2 (DG2)
[17:14:28] [PASSED] 0x56C1 (DG2)
[17:14:28] [PASSED] 0x7D51 (METEORLAKE)
[17:14:28] [PASSED] 0x7DD1 (METEORLAKE)
[17:14:28] [PASSED] 0x7D41 (METEORLAKE)
[17:14:28] [PASSED] 0x7D67 (METEORLAKE)
[17:14:28] [PASSED] 0xB640 (METEORLAKE)
[17:14:28] [PASSED] 0x56A0 (DG2)
[17:14:28] [PASSED] 0x56A1 (DG2)
[17:14:28] [PASSED] 0x56A2 (DG2)
[17:14:28] [PASSED] 0x56BE (DG2)
[17:14:28] [PASSED] 0x56BF (DG2)
[17:14:28] [PASSED] 0x5690 (DG2)
stty: 'standard input': Inappropriate ioctl for device
[17:14:28] [PASSED] 0x5691 (DG2)
[17:14:28] [PASSED] 0x5692 (DG2)
[17:14:28] [PASSED] 0x56A5 (DG2)
[17:14:28] [PASSED] 0x56A6 (DG2)
[17:14:28] [PASSED] 0x56B0 (DG2)
[17:14:28] [PASSED] 0x56B1 (DG2)
[17:14:28] [PASSED] 0x56BA (DG2)
[17:14:28] [PASSED] 0x56BB (DG2)
[17:14:28] [PASSED] 0x56BC (DG2)
[17:14:28] [PASSED] 0x56BD (DG2)
[17:14:28] [PASSED] 0x5693 (DG2)
[17:14:28] [PASSED] 0x5694 (DG2)
[17:14:28] [PASSED] 0x5695 (DG2)
[17:14:28] [PASSED] 0x56A3 (DG2)
[17:14:28] [PASSED] 0x56A4 (DG2)
[17:14:28] [PASSED] 0x56B2 (DG2)
[17:14:28] [PASSED] 0x56B3 (DG2)
[17:14:28] [PASSED] 0x5696 (DG2)
[17:14:28] [PASSED] 0x5697 (DG2)
[17:14:28] [PASSED] 0xB69 (PVC)
[17:14:28] [PASSED] 0xB6E (PVC)
[17:14:28] [PASSED] 0xBD4 (PVC)
[17:14:28] [PASSED] 0xBD5 (PVC)
[17:14:28] [PASSED] 0xBD6 (PVC)
[17:14:28] [PASSED] 0xBD7 (PVC)
[17:14:28] [PASSED] 0xBD8 (PVC)
[17:14:28] [PASSED] 0xBD9 (PVC)
[17:14:28] [PASSED] 0xBDA (PVC)
[17:14:28] [PASSED] 0xBDB (PVC)
[17:14:28] [PASSED] 0xBE0 (PVC)
[17:14:28] [PASSED] 0xBE1 (PVC)
[17:14:28] [PASSED] 0xBE5 (PVC)
[17:14:28] [PASSED] 0x7D40 (METEORLAKE)
[17:14:28] [PASSED] 0x7D45 (METEORLAKE)
[17:14:28] [PASSED] 0x7D55 (METEORLAKE)
[17:14:28] [PASSED] 0x7D60 (METEORLAKE)
[17:14:28] [PASSED] 0x7DD5 (METEORLAKE)
[17:14:28] [PASSED] 0x6420 (LUNARLAKE)
[17:14:28] [PASSED] 0x64A0 (LUNARLAKE)
[17:14:28] [PASSED] 0x64B0 (LUNARLAKE)
[17:14:28] [PASSED] 0xE202 (BATTLEMAGE)
[17:14:28] [PASSED] 0xE209 (BATTLEMAGE)
[17:14:28] [PASSED] 0xE20B (BATTLEMAGE)
[17:14:28] [PASSED] 0xE20C (BATTLEMAGE)
[17:14:28] [PASSED] 0xE20D (BATTLEMAGE)
[17:14:28] [PASSED] 0xE210 (BATTLEMAGE)
[17:14:28] [PASSED] 0xE211 (BATTLEMAGE)
[17:14:28] [PASSED] 0xE212 (BATTLEMAGE)
[17:14:28] [PASSED] 0xE216 (BATTLEMAGE)
[17:14:28] [PASSED] 0xE220 (BATTLEMAGE)
[17:14:28] [PASSED] 0xE221 (BATTLEMAGE)
[17:14:28] [PASSED] 0xE222 (BATTLEMAGE)
[17:14:28] [PASSED] 0xE223 (BATTLEMAGE)
[17:14:28] [PASSED] 0xB080 (PANTHERLAKE)
[17:14:28] [PASSED] 0xB081 (PANTHERLAKE)
[17:14:28] [PASSED] 0xB082 (PANTHERLAKE)
[17:14:28] [PASSED] 0xB083 (PANTHERLAKE)
[17:14:28] [PASSED] 0xB084 (PANTHERLAKE)
[17:14:28] [PASSED] 0xB085 (PANTHERLAKE)
[17:14:28] [PASSED] 0xB086 (PANTHERLAKE)
[17:14:28] [PASSED] 0xB087 (PANTHERLAKE)
[17:14:28] [PASSED] 0xB08F (PANTHERLAKE)
[17:14:28] [PASSED] 0xB090 (PANTHERLAKE)
[17:14:28] [PASSED] 0xB0A0 (PANTHERLAKE)
[17:14:28] [PASSED] 0xB0B0 (PANTHERLAKE)
[17:14:28] [PASSED] 0xD740 (NOVALAKE_S)
[17:14:28] [PASSED] 0xD741 (NOVALAKE_S)
[17:14:28] [PASSED] 0xD742 (NOVALAKE_S)
[17:14:28] [PASSED] 0xD743 (NOVALAKE_S)
[17:14:28] [PASSED] 0xD744 (NOVALAKE_S)
[17:14:28] [PASSED] 0xD745 (NOVALAKE_S)
[17:14:28] [PASSED] 0x674C (CRESCENTISLAND)
[17:14:28] [PASSED] 0xFD80 (PANTHERLAKE)
[17:14:28] [PASSED] 0xFD81 (PANTHERLAKE)
[17:14:28] =============== [PASSED] check_platform_desc ===============
[17:14:28] ===================== [PASSED] xe_pci ======================
[17:14:28] =================== xe_rtp (2 subtests) ====================
[17:14:28] =============== xe_rtp_process_to_sr_tests ================
[17:14:28] [PASSED] coalesce-same-reg
[17:14:28] [PASSED] no-match-no-add
[17:14:28] [PASSED] match-or
[17:14:28] [PASSED] match-or-xfail
[17:14:28] [PASSED] no-match-no-add-multiple-rules
[17:14:28] [PASSED] two-regs-two-entries
[17:14:28] [PASSED] clr-one-set-other
[17:14:28] [PASSED] set-field
[17:14:28] [PASSED] conflict-duplicate
[17:14:28] [PASSED] conflict-not-disjoint
[17:14:28] [PASSED] conflict-reg-type
[17:14:28] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[17:14:28] ================== xe_rtp_process_tests ===================
[17:14:28] [PASSED] active1
[17:14:28] [PASSED] active2
[17:14:28] [PASSED] active-inactive
[17:14:28] [PASSED] inactive-active
[17:14:28] [PASSED] inactive-1st_or_active-inactive
[17:14:28] [PASSED] inactive-2nd_or_active-inactive
[17:14:28] [PASSED] inactive-last_or_active-inactive
[17:14:28] [PASSED] inactive-no_or_active-inactive
[17:14:28] ============== [PASSED] xe_rtp_process_tests ===============
[17:14:28] ===================== [PASSED] xe_rtp ======================
[17:14:28] ==================== xe_wa (1 subtest) =====================
[17:14:28] ======================== xe_wa_gt =========================
[17:14:28] [PASSED] TIGERLAKE B0
[17:14:28] [PASSED] DG1 A0
[17:14:28] [PASSED] DG1 B0
[17:14:28] [PASSED] ALDERLAKE_S A0
[17:14:28] [PASSED] ALDERLAKE_S B0
[17:14:28] [PASSED] ALDERLAKE_S C0
[17:14:28] [PASSED] ALDERLAKE_S D0
[17:14:28] [PASSED] ALDERLAKE_P A0
[17:14:28] [PASSED] ALDERLAKE_P B0
[17:14:28] [PASSED] ALDERLAKE_P C0
[17:14:28] [PASSED] ALDERLAKE_S RPLS D0
[17:14:28] [PASSED] ALDERLAKE_P RPLU E0
[17:14:28] [PASSED] DG2 G10 C0
[17:14:28] [PASSED] DG2 G11 B1
[17:14:28] [PASSED] DG2 G12 A1
[17:14:28] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[17:14:28] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[17:14:28] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[17:14:28] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[17:14:28] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[17:14:28] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[17:14:28] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[17:14:28] ==================== [PASSED] xe_wa_gt =====================
[17:14:28] ====================== [PASSED] xe_wa ======================
[17:14:28] ============================================================
[17:14:28] Testing complete. Ran 446 tests: passed: 428, skipped: 18
[17:14:28] Elapsed time: 35.117s total, 4.218s configuring, 30.433s building, 0.420s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[17:14:28] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:14: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
[17:14:55] Starting KUnit Kernel (1/1)...
[17:14:55] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:14:55] ============ drm_test_pick_cmdline (2 subtests) ============
[17:14:55] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[17:14:55] =============== drm_test_pick_cmdline_named ===============
[17:14:55] [PASSED] NTSC
[17:14:55] [PASSED] NTSC-J
[17:14:55] [PASSED] PAL
[17:14:55] [PASSED] PAL-M
[17:14:55] =========== [PASSED] drm_test_pick_cmdline_named ===========
[17:14:55] ============== [PASSED] drm_test_pick_cmdline ==============
[17:14:55] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[17:14:55] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[17:14:55] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[17:14:55] =========== drm_validate_clone_mode (2 subtests) ===========
[17:14:55] ============== drm_test_check_in_clone_mode ===============
[17:14:55] [PASSED] in_clone_mode
[17:14:55] [PASSED] not_in_clone_mode
[17:14:55] ========== [PASSED] drm_test_check_in_clone_mode ===========
[17:14:55] =============== drm_test_check_valid_clones ===============
[17:14:55] [PASSED] not_in_clone_mode
[17:14:55] [PASSED] valid_clone
[17:14:55] [PASSED] invalid_clone
[17:14:55] =========== [PASSED] drm_test_check_valid_clones ===========
[17:14:55] ============= [PASSED] drm_validate_clone_mode =============
[17:14:55] ============= drm_validate_modeset (1 subtest) =============
[17:14:55] [PASSED] drm_test_check_connector_changed_modeset
[17:14:55] ============== [PASSED] drm_validate_modeset ===============
[17:14:55] ====== drm_test_bridge_get_current_state (2 subtests) ======
[17:14:55] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[17:14:55] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[17:14:55] ======== [PASSED] drm_test_bridge_get_current_state ========
[17:14:55] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[17:14:55] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[17:14:55] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[17:14:55] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[17:14:55] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[17:14:55] ============== drm_bridge_alloc (2 subtests) ===============
[17:14:55] [PASSED] drm_test_drm_bridge_alloc_basic
[17:14:55] [PASSED] drm_test_drm_bridge_alloc_get_put
[17:14:55] ================ [PASSED] drm_bridge_alloc =================
[17:14:55] ================== drm_buddy (8 subtests) ==================
[17:14:55] [PASSED] drm_test_buddy_alloc_limit
[17:14:55] [PASSED] drm_test_buddy_alloc_optimistic
[17:14:55] [PASSED] drm_test_buddy_alloc_pessimistic
[17:14:55] [PASSED] drm_test_buddy_alloc_pathological
[17:14:55] [PASSED] drm_test_buddy_alloc_contiguous
[17:14:55] [PASSED] drm_test_buddy_alloc_clear
[17:14:56] [PASSED] drm_test_buddy_alloc_range_bias
[17:14:56] [PASSED] drm_test_buddy_fragmentation_performance
[17:14:56] ==================== [PASSED] drm_buddy ====================
[17:14:56] ============= drm_cmdline_parser (40 subtests) =============
[17:14:56] [PASSED] drm_test_cmdline_force_d_only
[17:14:56] [PASSED] drm_test_cmdline_force_D_only_dvi
[17:14:56] [PASSED] drm_test_cmdline_force_D_only_hdmi
[17:14:56] [PASSED] drm_test_cmdline_force_D_only_not_digital
[17:14:56] [PASSED] drm_test_cmdline_force_e_only
[17:14:56] [PASSED] drm_test_cmdline_res
[17:14:56] [PASSED] drm_test_cmdline_res_vesa
[17:14:56] [PASSED] drm_test_cmdline_res_vesa_rblank
[17:14:56] [PASSED] drm_test_cmdline_res_rblank
[17:14:56] [PASSED] drm_test_cmdline_res_bpp
[17:14:56] [PASSED] drm_test_cmdline_res_refresh
[17:14:56] [PASSED] drm_test_cmdline_res_bpp_refresh
[17:14:56] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[17:14:56] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[17:14:56] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[17:14:56] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[17:14:56] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[17:14:56] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[17:14:56] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[17:14:56] [PASSED] drm_test_cmdline_res_margins_force_on
[17:14:56] [PASSED] drm_test_cmdline_res_vesa_margins
[17:14:56] [PASSED] drm_test_cmdline_name
[17:14:56] [PASSED] drm_test_cmdline_name_bpp
[17:14:56] [PASSED] drm_test_cmdline_name_option
[17:14:56] [PASSED] drm_test_cmdline_name_bpp_option
[17:14:56] [PASSED] drm_test_cmdline_rotate_0
[17:14:56] [PASSED] drm_test_cmdline_rotate_90
[17:14:56] [PASSED] drm_test_cmdline_rotate_180
[17:14:56] [PASSED] drm_test_cmdline_rotate_270
[17:14:56] [PASSED] drm_test_cmdline_hmirror
[17:14:56] [PASSED] drm_test_cmdline_vmirror
[17:14:56] [PASSED] drm_test_cmdline_margin_options
[17:14:56] [PASSED] drm_test_cmdline_multiple_options
[17:14:56] [PASSED] drm_test_cmdline_bpp_extra_and_option
[17:14:56] [PASSED] drm_test_cmdline_extra_and_option
[17:14:56] [PASSED] drm_test_cmdline_freestanding_options
[17:14:56] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[17:14:56] [PASSED] drm_test_cmdline_panel_orientation
[17:14:56] ================ drm_test_cmdline_invalid =================
[17:14:56] [PASSED] margin_only
[17:14:56] [PASSED] interlace_only
[17:14:56] [PASSED] res_missing_x
[17:14:56] [PASSED] res_missing_y
[17:14:56] [PASSED] res_bad_y
[17:14:56] [PASSED] res_missing_y_bpp
[17:14:56] [PASSED] res_bad_bpp
[17:14:56] [PASSED] res_bad_refresh
[17:14:56] [PASSED] res_bpp_refresh_force_on_off
[17:14:56] [PASSED] res_invalid_mode
[17:14:56] [PASSED] res_bpp_wrong_place_mode
[17:14:56] [PASSED] name_bpp_refresh
[17:14:56] [PASSED] name_refresh
[17:14:56] [PASSED] name_refresh_wrong_mode
[17:14:56] [PASSED] name_refresh_invalid_mode
[17:14:56] [PASSED] rotate_multiple
[17:14:56] [PASSED] rotate_invalid_val
[17:14:56] [PASSED] rotate_truncated
[17:14:56] [PASSED] invalid_option
[17:14:56] [PASSED] invalid_tv_option
[17:14:56] [PASSED] truncated_tv_option
[17:14:56] ============ [PASSED] drm_test_cmdline_invalid =============
[17:14:56] =============== drm_test_cmdline_tv_options ===============
[17:14:56] [PASSED] NTSC
[17:14:56] [PASSED] NTSC_443
[17:14:56] [PASSED] NTSC_J
[17:14:56] [PASSED] PAL
[17:14:56] [PASSED] PAL_M
[17:14:56] [PASSED] PAL_N
[17:14:56] [PASSED] SECAM
[17:14:56] [PASSED] MONO_525
[17:14:56] [PASSED] MONO_625
[17:14:56] =========== [PASSED] drm_test_cmdline_tv_options ===========
[17:14:56] =============== [PASSED] drm_cmdline_parser ================
[17:14:56] ========== drmm_connector_hdmi_init (20 subtests) ==========
[17:14:56] [PASSED] drm_test_connector_hdmi_init_valid
[17:14:56] [PASSED] drm_test_connector_hdmi_init_bpc_8
[17:14:56] [PASSED] drm_test_connector_hdmi_init_bpc_10
[17:14:56] [PASSED] drm_test_connector_hdmi_init_bpc_12
[17:14:56] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[17:14:56] [PASSED] drm_test_connector_hdmi_init_bpc_null
[17:14:56] [PASSED] drm_test_connector_hdmi_init_formats_empty
[17:14:56] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[17:14:56] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[17:14:56] [PASSED] supported_formats=0x9 yuv420_allowed=1
[17:14:56] [PASSED] supported_formats=0x9 yuv420_allowed=0
[17:14:56] [PASSED] supported_formats=0x3 yuv420_allowed=1
[17:14:56] [PASSED] supported_formats=0x3 yuv420_allowed=0
[17:14:56] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[17:14:56] [PASSED] drm_test_connector_hdmi_init_null_ddc
[17:14:56] [PASSED] drm_test_connector_hdmi_init_null_product
[17:14:56] [PASSED] drm_test_connector_hdmi_init_null_vendor
[17:14:56] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[17:14:56] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[17:14:56] [PASSED] drm_test_connector_hdmi_init_product_valid
[17:14:56] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[17:14:56] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[17:14:56] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[17:14:56] ========= drm_test_connector_hdmi_init_type_valid =========
[17:14:56] [PASSED] HDMI-A
[17:14:56] [PASSED] HDMI-B
[17:14:56] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[17:14:56] ======== drm_test_connector_hdmi_init_type_invalid ========
[17:14:56] [PASSED] Unknown
[17:14:56] [PASSED] VGA
[17:14:56] [PASSED] DVI-I
[17:14:56] [PASSED] DVI-D
[17:14:56] [PASSED] DVI-A
[17:14:56] [PASSED] Composite
[17:14:56] [PASSED] SVIDEO
[17:14:56] [PASSED] LVDS
[17:14:56] [PASSED] Component
[17:14:56] [PASSED] DIN
[17:14:56] [PASSED] DP
[17:14:56] [PASSED] TV
[17:14:56] [PASSED] eDP
[17:14:56] [PASSED] Virtual
[17:14:56] [PASSED] DSI
[17:14:56] [PASSED] DPI
[17:14:56] [PASSED] Writeback
[17:14:56] [PASSED] SPI
[17:14:56] [PASSED] USB
[17:14:56] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[17:14:56] ============ [PASSED] drmm_connector_hdmi_init =============
[17:14:56] ============= drmm_connector_init (3 subtests) =============
[17:14:56] [PASSED] drm_test_drmm_connector_init
[17:14:56] [PASSED] drm_test_drmm_connector_init_null_ddc
[17:14:56] ========= drm_test_drmm_connector_init_type_valid =========
[17:14:56] [PASSED] Unknown
[17:14:56] [PASSED] VGA
[17:14:56] [PASSED] DVI-I
[17:14:56] [PASSED] DVI-D
[17:14:56] [PASSED] DVI-A
[17:14:56] [PASSED] Composite
[17:14:56] [PASSED] SVIDEO
[17:14:56] [PASSED] LVDS
[17:14:56] [PASSED] Component
[17:14:56] [PASSED] DIN
[17:14:56] [PASSED] DP
[17:14:56] [PASSED] HDMI-A
[17:14:56] [PASSED] HDMI-B
[17:14:56] [PASSED] TV
[17:14:56] [PASSED] eDP
[17:14:56] [PASSED] Virtual
[17:14:56] [PASSED] DSI
[17:14:56] [PASSED] DPI
[17:14:56] [PASSED] Writeback
[17:14:56] [PASSED] SPI
[17:14:56] [PASSED] USB
[17:14:56] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[17:14:56] =============== [PASSED] drmm_connector_init ===============
[17:14:56] ========= drm_connector_dynamic_init (6 subtests) ==========
[17:14:56] [PASSED] drm_test_drm_connector_dynamic_init
[17:14:56] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[17:14:56] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[17:14:56] [PASSED] drm_test_drm_connector_dynamic_init_properties
[17:14:56] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[17:14:56] [PASSED] Unknown
[17:14:56] [PASSED] VGA
[17:14:56] [PASSED] DVI-I
[17:14:56] [PASSED] DVI-D
[17:14:56] [PASSED] DVI-A
[17:14:56] [PASSED] Composite
[17:14:56] [PASSED] SVIDEO
[17:14:56] [PASSED] LVDS
[17:14:56] [PASSED] Component
[17:14:56] [PASSED] DIN
[17:14:56] [PASSED] DP
[17:14:56] [PASSED] HDMI-A
[17:14:56] [PASSED] HDMI-B
[17:14:56] [PASSED] TV
[17:14:56] [PASSED] eDP
[17:14:56] [PASSED] Virtual
[17:14:56] [PASSED] DSI
[17:14:56] [PASSED] DPI
[17:14:56] [PASSED] Writeback
[17:14:56] [PASSED] SPI
[17:14:56] [PASSED] USB
[17:14:56] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[17:14:56] ======== drm_test_drm_connector_dynamic_init_name =========
[17:14:56] [PASSED] Unknown
[17:14:56] [PASSED] VGA
[17:14:56] [PASSED] DVI-I
[17:14:56] [PASSED] DVI-D
[17:14:56] [PASSED] DVI-A
[17:14:56] [PASSED] Composite
[17:14:56] [PASSED] SVIDEO
[17:14:56] [PASSED] LVDS
[17:14:56] [PASSED] Component
[17:14:56] [PASSED] DIN
[17:14:56] [PASSED] DP
[17:14:56] [PASSED] HDMI-A
[17:14:56] [PASSED] HDMI-B
[17:14:56] [PASSED] TV
[17:14:56] [PASSED] eDP
[17:14:56] [PASSED] Virtual
[17:14:56] [PASSED] DSI
[17:14:56] [PASSED] DPI
[17:14:56] [PASSED] Writeback
[17:14:56] [PASSED] SPI
[17:14:56] [PASSED] USB
[17:14:56] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[17:14:56] =========== [PASSED] drm_connector_dynamic_init ============
[17:14:56] ==== drm_connector_dynamic_register_early (4 subtests) =====
[17:14:56] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[17:14:56] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[17:14:56] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[17:14:56] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[17:14:56] ====== [PASSED] drm_connector_dynamic_register_early =======
[17:14:56] ======= drm_connector_dynamic_register (7 subtests) ========
[17:14:56] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[17:14:56] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[17:14:56] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[17:14:56] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[17:14:56] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[17:14:56] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[17:14:56] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[17:14:56] ========= [PASSED] drm_connector_dynamic_register ==========
[17:14:56] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[17:14:56] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[17:14:56] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[17:14:56] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[17:14:56] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[17:14:56] ========== drm_test_get_tv_mode_from_name_valid ===========
[17:14:56] [PASSED] NTSC
[17:14:56] [PASSED] NTSC-443
[17:14:56] [PASSED] NTSC-J
[17:14:56] [PASSED] PAL
[17:14:56] [PASSED] PAL-M
[17:14:56] [PASSED] PAL-N
[17:14:56] [PASSED] SECAM
[17:14:56] [PASSED] Mono
[17:14:56] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[17:14:56] [PASSED] drm_test_get_tv_mode_from_name_truncated
[17:14:56] ============ [PASSED] drm_get_tv_mode_from_name ============
[17:14:56] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[17:14:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[17:14:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[17:14:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[17:14:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[17:14:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[17:14:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[17:14:56] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[17:14:56] [PASSED] VIC 96
[17:14:56] [PASSED] VIC 97
[17:14:56] [PASSED] VIC 101
[17:14:56] [PASSED] VIC 102
[17:14:56] [PASSED] VIC 106
[17:14:56] [PASSED] VIC 107
[17:14:56] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[17:14:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[17:14:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[17:14:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[17:14:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[17:14:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[17:14:56] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[17:14:56] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[17:14:56] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[17:14:56] [PASSED] Automatic
[17:14:56] [PASSED] Full
[17:14:56] [PASSED] Limited 16:235
[17:14:56] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[17:14:56] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[17:14:56] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[17:14:56] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[17:14:56] === drm_test_drm_hdmi_connector_get_output_format_name ====
[17:14:56] [PASSED] RGB
[17:14:56] [PASSED] YUV 4:2:0
[17:14:56] [PASSED] YUV 4:2:2
[17:14:56] [PASSED] YUV 4:4:4
[17:14:56] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[17:14:56] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[17:14:56] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[17:14:56] ============= drm_damage_helper (21 subtests) ==============
[17:14:56] [PASSED] drm_test_damage_iter_no_damage
[17:14:56] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[17:14:56] [PASSED] drm_test_damage_iter_no_damage_src_moved
[17:14:56] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[17:14:56] [PASSED] drm_test_damage_iter_no_damage_not_visible
[17:14:56] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[17:14:56] [PASSED] drm_test_damage_iter_no_damage_no_fb
[17:14:56] [PASSED] drm_test_damage_iter_simple_damage
[17:14:56] [PASSED] drm_test_damage_iter_single_damage
[17:14:56] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[17:14:56] [PASSED] drm_test_damage_iter_single_damage_outside_src
[17:14:56] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[17:14:56] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[17:14:56] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[17:14:56] [PASSED] drm_test_damage_iter_single_damage_src_moved
[17:14:56] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[17:14:56] [PASSED] drm_test_damage_iter_damage
[17:14:56] [PASSED] drm_test_damage_iter_damage_one_intersect
[17:14:56] [PASSED] drm_test_damage_iter_damage_one_outside
[17:14:56] [PASSED] drm_test_damage_iter_damage_src_moved
[17:14:56] [PASSED] drm_test_damage_iter_damage_not_visible
[17:14:56] ================ [PASSED] drm_damage_helper ================
[17:14:56] ============== drm_dp_mst_helper (3 subtests) ==============
[17:14:56] ============== drm_test_dp_mst_calc_pbn_mode ==============
[17:14:56] [PASSED] Clock 154000 BPP 30 DSC disabled
[17:14:56] [PASSED] Clock 234000 BPP 30 DSC disabled
[17:14:56] [PASSED] Clock 297000 BPP 24 DSC disabled
[17:14:56] [PASSED] Clock 332880 BPP 24 DSC enabled
[17:14:56] [PASSED] Clock 324540 BPP 24 DSC enabled
[17:14:56] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[17:14:56] ============== drm_test_dp_mst_calc_pbn_div ===============
[17:14:56] [PASSED] Link rate 2000000 lane count 4
[17:14:56] [PASSED] Link rate 2000000 lane count 2
[17:14:56] [PASSED] Link rate 2000000 lane count 1
[17:14:56] [PASSED] Link rate 1350000 lane count 4
[17:14:56] [PASSED] Link rate 1350000 lane count 2
[17:14:56] [PASSED] Link rate 1350000 lane count 1
[17:14:56] [PASSED] Link rate 1000000 lane count 4
[17:14:56] [PASSED] Link rate 1000000 lane count 2
[17:14:56] [PASSED] Link rate 1000000 lane count 1
[17:14:56] [PASSED] Link rate 810000 lane count 4
[17:14:56] [PASSED] Link rate 810000 lane count 2
[17:14:56] [PASSED] Link rate 810000 lane count 1
[17:14:56] [PASSED] Link rate 540000 lane count 4
[17:14:56] [PASSED] Link rate 540000 lane count 2
[17:14:56] [PASSED] Link rate 540000 lane count 1
[17:14:56] [PASSED] Link rate 270000 lane count 4
[17:14:56] [PASSED] Link rate 270000 lane count 2
[17:14:56] [PASSED] Link rate 270000 lane count 1
[17:14:56] [PASSED] Link rate 162000 lane count 4
[17:14:56] [PASSED] Link rate 162000 lane count 2
[17:14:56] [PASSED] Link rate 162000 lane count 1
[17:14:56] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[17:14:56] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[17:14:56] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[17:14:56] [PASSED] DP_POWER_UP_PHY with port number
[17:14:56] [PASSED] DP_POWER_DOWN_PHY with port number
[17:14:56] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[17:14:56] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[17:14:56] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[17:14:56] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[17:14:56] [PASSED] DP_QUERY_PAYLOAD with port number
[17:14:56] [PASSED] DP_QUERY_PAYLOAD with VCPI
[17:14:56] [PASSED] DP_REMOTE_DPCD_READ with port number
[17:14:56] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[17:14:56] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[17:14:56] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[17:14:56] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[17:14:56] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[17:14:56] [PASSED] DP_REMOTE_I2C_READ with port number
[17:14:56] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[17:14:56] [PASSED] DP_REMOTE_I2C_READ with transactions array
[17:14:56] [PASSED] DP_REMOTE_I2C_WRITE with port number
[17:14:56] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[17:14:56] [PASSED] DP_REMOTE_I2C_WRITE with data array
[17:14:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[17:14:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[17:14:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[17:14:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[17:14:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[17:14:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[17:14:56] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[17:14:56] ================ [PASSED] drm_dp_mst_helper ================
[17:14:56] ================== drm_exec (7 subtests) ===================
[17:14:56] [PASSED] sanitycheck
[17:14:56] [PASSED] test_lock
[17:14:56] [PASSED] test_lock_unlock
[17:14:56] [PASSED] test_duplicates
[17:14:56] [PASSED] test_prepare
[17:14:56] [PASSED] test_prepare_array
[17:14:56] [PASSED] test_multiple_loops
[17:14:56] ==================== [PASSED] drm_exec =====================
[17:14:56] =========== drm_format_helper_test (17 subtests) ===========
[17:14:56] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[17:14:56] [PASSED] single_pixel_source_buffer
[17:14:56] [PASSED] single_pixel_clip_rectangle
[17:14:56] [PASSED] well_known_colors
[17:14:56] [PASSED] destination_pitch
[17:14:56] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[17:14:56] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[17:14:56] [PASSED] single_pixel_source_buffer
[17:14:56] [PASSED] single_pixel_clip_rectangle
[17:14:56] [PASSED] well_known_colors
[17:14:56] [PASSED] destination_pitch
[17:14:56] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[17:14:56] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[17:14:56] [PASSED] single_pixel_source_buffer
[17:14:56] [PASSED] single_pixel_clip_rectangle
[17:14:56] [PASSED] well_known_colors
[17:14:56] [PASSED] destination_pitch
[17:14:56] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[17:14:56] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[17:14:56] [PASSED] single_pixel_source_buffer
[17:14:56] [PASSED] single_pixel_clip_rectangle
[17:14:56] [PASSED] well_known_colors
[17:14:56] [PASSED] destination_pitch
[17:14:56] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[17:14:56] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[17:14:56] [PASSED] single_pixel_source_buffer
[17:14:56] [PASSED] single_pixel_clip_rectangle
[17:14:56] [PASSED] well_known_colors
[17:14:56] [PASSED] destination_pitch
[17:14:56] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[17:14:56] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[17:14:56] [PASSED] single_pixel_source_buffer
[17:14:56] [PASSED] single_pixel_clip_rectangle
[17:14:56] [PASSED] well_known_colors
[17:14:56] [PASSED] destination_pitch
[17:14:56] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[17:14:56] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[17:14:56] [PASSED] single_pixel_source_buffer
[17:14:56] [PASSED] single_pixel_clip_rectangle
[17:14:56] [PASSED] well_known_colors
[17:14:56] [PASSED] destination_pitch
[17:14:56] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[17:14:56] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[17:14:56] [PASSED] single_pixel_source_buffer
[17:14:56] [PASSED] single_pixel_clip_rectangle
[17:14:56] [PASSED] well_known_colors
[17:14:56] [PASSED] destination_pitch
[17:14:56] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[17:14:56] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[17:14:56] [PASSED] single_pixel_source_buffer
[17:14:56] [PASSED] single_pixel_clip_rectangle
[17:14:56] [PASSED] well_known_colors
[17:14:56] [PASSED] destination_pitch
[17:14:56] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[17:14:56] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[17:14:56] [PASSED] single_pixel_source_buffer
[17:14:56] [PASSED] single_pixel_clip_rectangle
[17:14:56] [PASSED] well_known_colors
[17:14:56] [PASSED] destination_pitch
[17:14:56] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[17:14:56] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[17:14:56] [PASSED] single_pixel_source_buffer
[17:14:56] [PASSED] single_pixel_clip_rectangle
[17:14:56] [PASSED] well_known_colors
[17:14:56] [PASSED] destination_pitch
[17:14:56] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[17:14:56] ============== drm_test_fb_xrgb8888_to_mono ===============
[17:14:56] [PASSED] single_pixel_source_buffer
[17:14:56] [PASSED] single_pixel_clip_rectangle
[17:14:56] [PASSED] well_known_colors
[17:14:56] [PASSED] destination_pitch
[17:14:56] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[17:14:56] ==================== drm_test_fb_swab =====================
[17:14:56] [PASSED] single_pixel_source_buffer
[17:14:56] [PASSED] single_pixel_clip_rectangle
[17:14:56] [PASSED] well_known_colors
[17:14:56] [PASSED] destination_pitch
[17:14:56] ================ [PASSED] drm_test_fb_swab =================
[17:14:56] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[17:14:56] [PASSED] single_pixel_source_buffer
[17:14:56] [PASSED] single_pixel_clip_rectangle
[17:14:56] [PASSED] well_known_colors
[17:14:56] [PASSED] destination_pitch
[17:14:56] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[17:14:56] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[17:14:56] [PASSED] single_pixel_source_buffer
[17:14:56] [PASSED] single_pixel_clip_rectangle
[17:14:56] [PASSED] well_known_colors
[17:14:56] [PASSED] destination_pitch
[17:14:56] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[17:14:56] ================= drm_test_fb_clip_offset =================
[17:14:56] [PASSED] pass through
[17:14:56] [PASSED] horizontal offset
[17:14:56] [PASSED] vertical offset
[17:14:56] [PASSED] horizontal and vertical offset
[17:14:56] [PASSED] horizontal offset (custom pitch)
[17:14:56] [PASSED] vertical offset (custom pitch)
[17:14:56] [PASSED] horizontal and vertical offset (custom pitch)
[17:14:56] ============= [PASSED] drm_test_fb_clip_offset =============
[17:14:56] =================== drm_test_fb_memcpy ====================
[17:14:56] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[17:14:56] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[17:14:56] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[17:14:56] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[17:14:56] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[17:14:56] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[17:14:56] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[17:14:56] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[17:14:56] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[17:14:56] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[17:14:56] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[17:14:56] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[17:14:56] =============== [PASSED] drm_test_fb_memcpy ================
[17:14:56] ============= [PASSED] drm_format_helper_test ==============
[17:14:56] ================= drm_format (18 subtests) =================
[17:14:56] [PASSED] drm_test_format_block_width_invalid
[17:14:56] [PASSED] drm_test_format_block_width_one_plane
[17:14:56] [PASSED] drm_test_format_block_width_two_plane
[17:14:56] [PASSED] drm_test_format_block_width_three_plane
[17:14:56] [PASSED] drm_test_format_block_width_tiled
[17:14:56] [PASSED] drm_test_format_block_height_invalid
[17:14:56] [PASSED] drm_test_format_block_height_one_plane
[17:14:56] [PASSED] drm_test_format_block_height_two_plane
[17:14:56] [PASSED] drm_test_format_block_height_three_plane
[17:14:56] [PASSED] drm_test_format_block_height_tiled
[17:14:56] [PASSED] drm_test_format_min_pitch_invalid
[17:14:56] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[17:14:56] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[17:14:56] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[17:14:56] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[17:14:56] [PASSED] drm_test_format_min_pitch_two_plane
[17:14:56] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[17:14:56] [PASSED] drm_test_format_min_pitch_tiled
[17:14:56] =================== [PASSED] drm_format ====================
[17:14:56] ============== drm_framebuffer (10 subtests) ===============
[17:14:56] ========== drm_test_framebuffer_check_src_coords ==========
[17:14:56] [PASSED] Success: source fits into fb
[17:14:56] [PASSED] Fail: overflowing fb with x-axis coordinate
[17:14:56] [PASSED] Fail: overflowing fb with y-axis coordinate
[17:14:56] [PASSED] Fail: overflowing fb with source width
[17:14:56] [PASSED] Fail: overflowing fb with source height
[17:14:56] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[17:14:56] [PASSED] drm_test_framebuffer_cleanup
[17:14:56] =============== drm_test_framebuffer_create ===============
[17:14:56] [PASSED] ABGR8888 normal sizes
[17:14:56] [PASSED] ABGR8888 max sizes
[17:14:56] [PASSED] ABGR8888 pitch greater than min required
[17:14:56] [PASSED] ABGR8888 pitch less than min required
[17:14:56] [PASSED] ABGR8888 Invalid width
[17:14:56] [PASSED] ABGR8888 Invalid buffer handle
[17:14:56] [PASSED] No pixel format
[17:14:56] [PASSED] ABGR8888 Width 0
[17:14:56] [PASSED] ABGR8888 Height 0
[17:14:56] [PASSED] ABGR8888 Out of bound height * pitch combination
[17:14:56] [PASSED] ABGR8888 Large buffer offset
[17:14:56] [PASSED] ABGR8888 Buffer offset for inexistent plane
[17:14:56] [PASSED] ABGR8888 Invalid flag
[17:14:56] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[17:14:56] [PASSED] ABGR8888 Valid buffer modifier
[17:14:56] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[17:14:56] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[17:14:56] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[17:14:56] [PASSED] NV12 Normal sizes
[17:14:56] [PASSED] NV12 Max sizes
[17:14:56] [PASSED] NV12 Invalid pitch
[17:14:56] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[17:14:56] [PASSED] NV12 different modifier per-plane
[17:14:56] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[17:14:56] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[17:14:56] [PASSED] NV12 Modifier for inexistent plane
[17:14:56] [PASSED] NV12 Handle for inexistent plane
[17:14:56] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[17:14:56] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[17:14:56] [PASSED] YVU420 Normal sizes
[17:14:56] [PASSED] YVU420 Max sizes
[17:14:56] [PASSED] YVU420 Invalid pitch
[17:14:56] [PASSED] YVU420 Different pitches
[17:14:56] [PASSED] YVU420 Different buffer offsets/pitches
[17:14:56] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[17:14:56] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[17:14:56] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[17:14:56] [PASSED] YVU420 Valid modifier
[17:14:56] [PASSED] YVU420 Different modifiers per plane
[17:14:56] [PASSED] YVU420 Modifier for inexistent plane
[17:14:56] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[17:14:56] [PASSED] X0L2 Normal sizes
[17:14:56] [PASSED] X0L2 Max sizes
[17:14:56] [PASSED] X0L2 Invalid pitch
[17:14:56] [PASSED] X0L2 Pitch greater than minimum required
[17:14:56] [PASSED] X0L2 Handle for inexistent plane
[17:14:56] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[17:14:56] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[17:14:56] [PASSED] X0L2 Valid modifier
[17:14:56] [PASSED] X0L2 Modifier for inexistent plane
[17:14:56] =========== [PASSED] drm_test_framebuffer_create ===========
[17:14:56] [PASSED] drm_test_framebuffer_free
[17:14:56] [PASSED] drm_test_framebuffer_init
[17:14:56] [PASSED] drm_test_framebuffer_init_bad_format
[17:14:56] [PASSED] drm_test_framebuffer_init_dev_mismatch
[17:14:56] [PASSED] drm_test_framebuffer_lookup
[17:14:56] [PASSED] drm_test_framebuffer_lookup_inexistent
[17:14:56] [PASSED] drm_test_framebuffer_modifiers_not_supported
[17:14:56] ================= [PASSED] drm_framebuffer =================
[17:14:56] ================ drm_gem_shmem (8 subtests) ================
[17:14:56] [PASSED] drm_gem_shmem_test_obj_create
[17:14:56] [PASSED] drm_gem_shmem_test_obj_create_private
[17:14:56] [PASSED] drm_gem_shmem_test_pin_pages
[17:14:56] [PASSED] drm_gem_shmem_test_vmap
[17:14:56] [PASSED] drm_gem_shmem_test_get_pages_sgt
[17:14:56] [PASSED] drm_gem_shmem_test_get_sg_table
[17:14:56] [PASSED] drm_gem_shmem_test_madvise
[17:14:56] [PASSED] drm_gem_shmem_test_purge
[17:14:56] ================== [PASSED] drm_gem_shmem ==================
[17:14:56] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[17:14:56] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[17:14:56] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[17:14:56] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[17:14:56] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[17:14:56] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[17:14:56] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[17:14:56] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[17:14:56] [PASSED] Automatic
[17:14:56] [PASSED] Full
[17:14:56] [PASSED] Limited 16:235
[17:14:56] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[17:14:56] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[17:14:56] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[17:14:56] [PASSED] drm_test_check_disable_connector
[17:14:56] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[17:14:56] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[17:14:56] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[17:14:56] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[17:14:56] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[17:14:56] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[17:14:56] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[17:14:56] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[17:14:56] [PASSED] drm_test_check_output_bpc_dvi
[17:14:56] [PASSED] drm_test_check_output_bpc_format_vic_1
[17:14:56] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[17:14:56] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[17:14:56] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[17:14:56] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[17:14:56] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[17:14:56] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[17:14:56] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[17:14:56] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[17:14:56] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[17:14:56] [PASSED] drm_test_check_broadcast_rgb_value
[17:14:56] [PASSED] drm_test_check_bpc_8_value
[17:14:56] [PASSED] drm_test_check_bpc_10_value
[17:14:56] [PASSED] drm_test_check_bpc_12_value
[17:14:56] [PASSED] drm_test_check_format_value
[17:14:56] [PASSED] drm_test_check_tmds_char_value
[17:14:56] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[17:14:56] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[17:14:56] [PASSED] drm_test_check_mode_valid
[17:14:56] [PASSED] drm_test_check_mode_valid_reject
[17:14:56] [PASSED] drm_test_check_mode_valid_reject_rate
[17:14:56] [PASSED] drm_test_check_mode_valid_reject_max_clock
[17:14:56] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[17:14:56] ================= drm_managed (2 subtests) =================
[17:14:56] [PASSED] drm_test_managed_release_action
[17:14:56] [PASSED] drm_test_managed_run_action
[17:14:56] =================== [PASSED] drm_managed ===================
[17:14:56] =================== drm_mm (6 subtests) ====================
[17:14:56] [PASSED] drm_test_mm_init
[17:14:56] [PASSED] drm_test_mm_debug
[17:14:56] [PASSED] drm_test_mm_align32
[17:14:56] [PASSED] drm_test_mm_align64
[17:14:56] [PASSED] drm_test_mm_lowest
[17:14:56] [PASSED] drm_test_mm_highest
[17:14:56] ===================== [PASSED] drm_mm ======================
[17:14:56] ============= drm_modes_analog_tv (5 subtests) =============
[17:14:56] [PASSED] drm_test_modes_analog_tv_mono_576i
[17:14:56] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[17:14:56] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[17:14:56] [PASSED] drm_test_modes_analog_tv_pal_576i
[17:14:56] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[17:14:56] =============== [PASSED] drm_modes_analog_tv ===============
[17:14:56] ============== drm_plane_helper (2 subtests) ===============
[17:14:56] =============== drm_test_check_plane_state ================
[17:14:56] [PASSED] clipping_simple
[17:14:56] [PASSED] clipping_rotate_reflect
[17:14:56] [PASSED] positioning_simple
[17:14:56] [PASSED] upscaling
[17:14:56] [PASSED] downscaling
[17:14:56] [PASSED] rounding1
[17:14:56] [PASSED] rounding2
[17:14:56] [PASSED] rounding3
[17:14:56] [PASSED] rounding4
[17:14:56] =========== [PASSED] drm_test_check_plane_state ============
[17:14:56] =========== drm_test_check_invalid_plane_state ============
[17:14:56] [PASSED] positioning_invalid
[17:14:56] [PASSED] upscaling_invalid
[17:14:56] [PASSED] downscaling_invalid
[17:14:56] ======= [PASSED] drm_test_check_invalid_plane_state ========
[17:14:56] ================ [PASSED] drm_plane_helper =================
[17:14:56] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[17:14:56] ====== drm_test_connector_helper_tv_get_modes_check =======
[17:14:56] [PASSED] None
[17:14:56] [PASSED] PAL
[17:14:56] [PASSED] NTSC
[17:14:56] [PASSED] Both, NTSC Default
[17:14:56] [PASSED] Both, PAL Default
[17:14:56] [PASSED] Both, NTSC Default, with PAL on command-line
[17:14:56] [PASSED] Both, PAL Default, with NTSC on command-line
[17:14:56] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[17:14:56] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[17:14:56] ================== drm_rect (9 subtests) ===================
[17:14:56] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[17:14:56] [PASSED] drm_test_rect_clip_scaled_not_clipped
[17:14:56] [PASSED] drm_test_rect_clip_scaled_clipped
[17:14:56] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[17:14:56] ================= drm_test_rect_intersect =================
[17:14:56] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[17:14:56] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[17:14:56] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[17:14:56] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[17:14:56] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[17:14:56] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[17:14:56] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[17:14:56] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[17:14:56] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[17:14:56] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[17:14:56] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[17:14:56] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[17:14:56] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[17:14:56] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[17:14:56] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[17:14:56] ============= [PASSED] drm_test_rect_intersect =============
[17:14:56] ================ drm_test_rect_calc_hscale ================
[17:14:56] [PASSED] normal use
[17:14:56] [PASSED] out of max range
[17:14:56] [PASSED] out of min range
[17:14:56] [PASSED] zero dst
[17:14:56] [PASSED] negative src
[17:14:56] [PASSED] negative dst
[17:14:56] ============ [PASSED] drm_test_rect_calc_hscale ============
[17:14:56] ================ drm_test_rect_calc_vscale ================
[17:14:56] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[17:14:56] [PASSED] out of max range
[17:14:56] [PASSED] out of min range
[17:14:56] [PASSED] zero dst
[17:14:56] [PASSED] negative src
[17:14:56] [PASSED] negative dst
[17:14:56] ============ [PASSED] drm_test_rect_calc_vscale ============
[17:14:56] ================== drm_test_rect_rotate ===================
[17:14:56] [PASSED] reflect-x
[17:14:56] [PASSED] reflect-y
[17:14:56] [PASSED] rotate-0
[17:14:56] [PASSED] rotate-90
[17:14:56] [PASSED] rotate-180
[17:14:56] [PASSED] rotate-270
[17:14:56] ============== [PASSED] drm_test_rect_rotate ===============
[17:14:56] ================ drm_test_rect_rotate_inv =================
[17:14:56] [PASSED] reflect-x
[17:14:56] [PASSED] reflect-y
[17:14:56] [PASSED] rotate-0
[17:14:56] [PASSED] rotate-90
[17:14:56] [PASSED] rotate-180
[17:14:56] [PASSED] rotate-270
[17:14:56] ============ [PASSED] drm_test_rect_rotate_inv =============
[17:14:56] ==================== [PASSED] drm_rect =====================
[17:14:56] ============ drm_sysfb_modeset_test (1 subtest) ============
[17:14:56] ============ drm_test_sysfb_build_fourcc_list =============
[17:14:56] [PASSED] no native formats
[17:14:56] [PASSED] XRGB8888 as native format
[17:14:56] [PASSED] remove duplicates
[17:14:56] [PASSED] convert alpha formats
[17:14:56] [PASSED] random formats
[17:14:56] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[17:14:56] ============= [PASSED] drm_sysfb_modeset_test ==============
[17:14:56] ============================================================
[17:14:56] Testing complete. Ran 622 tests: passed: 622
[17:14:56] Elapsed time: 27.306s total, 1.702s configuring, 25.183s building, 0.390s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[17:14:56] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:14:58] 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
[17:15:07] Starting KUnit Kernel (1/1)...
[17:15:07] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:15:07] ================= ttm_device (5 subtests) ==================
[17:15:07] [PASSED] ttm_device_init_basic
[17:15:07] [PASSED] ttm_device_init_multiple
[17:15:07] [PASSED] ttm_device_fini_basic
[17:15:07] [PASSED] ttm_device_init_no_vma_man
[17:15:07] ================== ttm_device_init_pools ==================
[17:15:07] [PASSED] No DMA allocations, no DMA32 required
[17:15:07] [PASSED] DMA allocations, DMA32 required
[17:15:07] [PASSED] No DMA allocations, DMA32 required
[17:15:07] [PASSED] DMA allocations, no DMA32 required
[17:15:07] ============== [PASSED] ttm_device_init_pools ==============
[17:15:07] =================== [PASSED] ttm_device ====================
[17:15:07] ================== ttm_pool (8 subtests) ===================
[17:15:07] ================== ttm_pool_alloc_basic ===================
[17:15:07] [PASSED] One page
[17:15:07] [PASSED] More than one page
[17:15:07] [PASSED] Above the allocation limit
[17:15:07] [PASSED] One page, with coherent DMA mappings enabled
[17:15:07] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[17:15:07] ============== [PASSED] ttm_pool_alloc_basic ===============
[17:15:07] ============== ttm_pool_alloc_basic_dma_addr ==============
[17:15:07] [PASSED] One page
[17:15:07] [PASSED] More than one page
[17:15:07] [PASSED] Above the allocation limit
[17:15:07] [PASSED] One page, with coherent DMA mappings enabled
[17:15:07] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[17:15:07] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[17:15:07] [PASSED] ttm_pool_alloc_order_caching_match
[17:15:07] [PASSED] ttm_pool_alloc_caching_mismatch
[17:15:07] [PASSED] ttm_pool_alloc_order_mismatch
[17:15:07] [PASSED] ttm_pool_free_dma_alloc
[17:15:07] [PASSED] ttm_pool_free_no_dma_alloc
[17:15:07] [PASSED] ttm_pool_fini_basic
[17:15:07] ==================== [PASSED] ttm_pool =====================
[17:15:07] ================ ttm_resource (8 subtests) =================
[17:15:07] ================= ttm_resource_init_basic =================
[17:15:07] [PASSED] Init resource in TTM_PL_SYSTEM
[17:15:07] [PASSED] Init resource in TTM_PL_VRAM
[17:15:07] [PASSED] Init resource in a private placement
[17:15:07] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[17:15:07] ============= [PASSED] ttm_resource_init_basic =============
[17:15:07] [PASSED] ttm_resource_init_pinned
[17:15:07] [PASSED] ttm_resource_fini_basic
[17:15:07] [PASSED] ttm_resource_manager_init_basic
[17:15:07] [PASSED] ttm_resource_manager_usage_basic
[17:15:07] [PASSED] ttm_resource_manager_set_used_basic
[17:15:07] [PASSED] ttm_sys_man_alloc_basic
[17:15:07] [PASSED] ttm_sys_man_free_basic
[17:15:07] ================== [PASSED] ttm_resource ===================
[17:15:07] =================== ttm_tt (15 subtests) ===================
[17:15:07] ==================== ttm_tt_init_basic ====================
[17:15:07] [PASSED] Page-aligned size
[17:15:07] [PASSED] Extra pages requested
[17:15:07] ================ [PASSED] ttm_tt_init_basic ================
[17:15:07] [PASSED] ttm_tt_init_misaligned
[17:15:07] [PASSED] ttm_tt_fini_basic
[17:15:07] [PASSED] ttm_tt_fini_sg
[17:15:07] [PASSED] ttm_tt_fini_shmem
[17:15:07] [PASSED] ttm_tt_create_basic
[17:15:07] [PASSED] ttm_tt_create_invalid_bo_type
[17:15:07] [PASSED] ttm_tt_create_ttm_exists
[17:15:07] [PASSED] ttm_tt_create_failed
[17:15:07] [PASSED] ttm_tt_destroy_basic
[17:15:07] [PASSED] ttm_tt_populate_null_ttm
[17:15:07] [PASSED] ttm_tt_populate_populated_ttm
[17:15:07] [PASSED] ttm_tt_unpopulate_basic
[17:15:07] [PASSED] ttm_tt_unpopulate_empty_ttm
[17:15:07] [PASSED] ttm_tt_swapin_basic
[17:15:07] ===================== [PASSED] ttm_tt ======================
[17:15:07] =================== ttm_bo (14 subtests) ===================
[17:15:07] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[17:15:07] [PASSED] Cannot be interrupted and sleeps
[17:15:07] [PASSED] Cannot be interrupted, locks straight away
[17:15:07] [PASSED] Can be interrupted, sleeps
[17:15:07] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[17:15:07] [PASSED] ttm_bo_reserve_locked_no_sleep
[17:15:07] [PASSED] ttm_bo_reserve_no_wait_ticket
[17:15:07] [PASSED] ttm_bo_reserve_double_resv
[17:15:07] [PASSED] ttm_bo_reserve_interrupted
[17:15:07] [PASSED] ttm_bo_reserve_deadlock
[17:15:07] [PASSED] ttm_bo_unreserve_basic
[17:15:07] [PASSED] ttm_bo_unreserve_pinned
[17:15:07] [PASSED] ttm_bo_unreserve_bulk
[17:15:07] [PASSED] ttm_bo_fini_basic
[17:15:07] [PASSED] ttm_bo_fini_shared_resv
[17:15:07] [PASSED] ttm_bo_pin_basic
[17:15:07] [PASSED] ttm_bo_pin_unpin_resource
[17:15:07] [PASSED] ttm_bo_multiple_pin_one_unpin
[17:15:07] ===================== [PASSED] ttm_bo ======================
[17:15:07] ============== ttm_bo_validate (21 subtests) ===============
[17:15:07] ============== ttm_bo_init_reserved_sys_man ===============
[17:15:07] [PASSED] Buffer object for userspace
[17:15:07] [PASSED] Kernel buffer object
[17:15:07] [PASSED] Shared buffer object
[17:15:07] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[17:15:07] ============== ttm_bo_init_reserved_mock_man ==============
[17:15:07] [PASSED] Buffer object for userspace
[17:15:07] [PASSED] Kernel buffer object
[17:15:07] [PASSED] Shared buffer object
[17:15:07] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[17:15:07] [PASSED] ttm_bo_init_reserved_resv
[17:15:07] ================== ttm_bo_validate_basic ==================
[17:15:07] [PASSED] Buffer object for userspace
[17:15:07] [PASSED] Kernel buffer object
[17:15:07] [PASSED] Shared buffer object
[17:15:07] ============== [PASSED] ttm_bo_validate_basic ==============
[17:15:07] [PASSED] ttm_bo_validate_invalid_placement
[17:15:07] ============= ttm_bo_validate_same_placement ==============
[17:15:07] [PASSED] System manager
[17:15:07] [PASSED] VRAM manager
[17:15:07] ========= [PASSED] ttm_bo_validate_same_placement ==========
[17:15:07] [PASSED] ttm_bo_validate_failed_alloc
[17:15:07] [PASSED] ttm_bo_validate_pinned
[17:15:07] [PASSED] ttm_bo_validate_busy_placement
[17:15:07] ================ ttm_bo_validate_multihop =================
[17:15:07] [PASSED] Buffer object for userspace
[17:15:07] [PASSED] Kernel buffer object
[17:15:07] [PASSED] Shared buffer object
[17:15:07] ============ [PASSED] ttm_bo_validate_multihop =============
[17:15:07] ========== ttm_bo_validate_no_placement_signaled ==========
[17:15:07] [PASSED] Buffer object in system domain, no page vector
[17:15:07] [PASSED] Buffer object in system domain with an existing page vector
[17:15:07] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[17:15:07] ======== ttm_bo_validate_no_placement_not_signaled ========
[17:15:07] [PASSED] Buffer object for userspace
[17:15:07] [PASSED] Kernel buffer object
[17:15:07] [PASSED] Shared buffer object
[17:15:07] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[17:15:07] [PASSED] ttm_bo_validate_move_fence_signaled
[17:15:07] ========= ttm_bo_validate_move_fence_not_signaled =========
[17:15:07] [PASSED] Waits for GPU
[17:15:07] [PASSED] Tries to lock straight away
[17:15:07] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[17:15:07] [PASSED] ttm_bo_validate_happy_evict
[17:15:07] [PASSED] ttm_bo_validate_all_pinned_evict
[17:15:07] [PASSED] ttm_bo_validate_allowed_only_evict
[17:15:07] [PASSED] ttm_bo_validate_deleted_evict
[17:15:07] [PASSED] ttm_bo_validate_busy_domain_evict
[17:15:07] [PASSED] ttm_bo_validate_evict_gutting
[17:15:07] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[17:15:07] ================= [PASSED] ttm_bo_validate =================
[17:15:07] ============================================================
[17:15:07] Testing complete. Ran 101 tests: passed: 101
[17:15:07] Elapsed time: 11.287s total, 1.706s configuring, 9.314s building, 0.227s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 17+ messages in thread* ✓ Xe.CI.BAT: success for PF: migration-friendly auto-provisioning (rev2)
2025-11-05 18:32 [PATCH 0/3] PF: migration-friendly auto-provisioning Michal Wajdeczko
` (8 preceding siblings ...)
2025-11-06 17:15 ` ✓ CI.KUnit: success " Patchwork
@ 2025-11-06 17:53 ` Patchwork
2025-11-07 14:52 ` ✗ Xe.CI.Full: failure " Patchwork
10 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-11-06 17:53 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1546 bytes --]
== Series Details ==
Series: PF: migration-friendly auto-provisioning (rev2)
URL : https://patchwork.freedesktop.org/series/157094/
State : success
== Summary ==
CI Bug Log - changes from xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad_BAT -> xe-pw-157094v2_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-157094v2_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_waitfence@engine:
- bat-dg2-oem2: [PASS][1] -> [FAIL][2] ([Intel XE#6519])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/bat-dg2-oem2/igt@xe_waitfence@engine.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/bat-dg2-oem2/igt@xe_waitfence@engine.html
[Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519
Build changes
-------------
* IGT: IGT_8612 -> IGT_8613
* Linux: xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad -> xe-pw-157094v2
IGT_8612: 8612
IGT_8613: b542242f5b116e3b554b4068ef5dfa4451075b2b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad: 6aa8d62a50c33f091548cc961a713223d488d6ad
xe-pw-157094v2: 157094v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/index.html
[-- Attachment #2: Type: text/html, Size: 2125 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread* ✗ Xe.CI.Full: failure for PF: migration-friendly auto-provisioning (rev2)
2025-11-05 18:32 [PATCH 0/3] PF: migration-friendly auto-provisioning Michal Wajdeczko
` (9 preceding siblings ...)
2025-11-06 17:53 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-11-07 14:52 ` Patchwork
10 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-11-07 14:52 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 54069 bytes --]
== Series Details ==
Series: PF: migration-friendly auto-provisioning (rev2)
URL : https://patchwork.freedesktop.org/series/157094/
State : failure
== Summary ==
CI Bug Log - changes from xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad_FULL -> xe-pw-157094v2_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-157094v2_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-157094v2_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-157094v2_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@panthor/panthor_vm@vm_bind:
- shard-dg2-set2: NOTRUN -> [SKIP][1] +9 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-463/igt@panthor/panthor_vm@vm_bind.html
Known issues
------------
Here are the changes found in xe-pw-157094v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
- shard-lnl: [PASS][2] -> [FAIL][3] ([Intel XE#5993]) +3 other tests fail
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y:
- shard-adlp: [PASS][4] -> [DMESG-WARN][5] ([Intel XE#4543]) +6 other tests dmesg-warn
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-adlp-3/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-1/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#316])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-432/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +4 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-2/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
- shard-adlp: NOTRUN -> [SKIP][8] ([Intel XE#316])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-4/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-lnl-8/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +7 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][11] ([Intel XE#1124])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-3/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2314] / [Intel XE#2894])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#367])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#367])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2887]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-433/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#3432])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#3432])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#787]) +55 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2887]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-lnl-2/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
- shard-adlp: NOTRUN -> [SKIP][22] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-8/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][23] ([Intel XE#787]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-8/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#373]) +3 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-434/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2252]) +3 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-8/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-adlp: NOTRUN -> [SKIP][26] ([Intel XE#373])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-4/igt@kms_chamelium_frames@hdmi-frame-dump.html
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#373])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-lnl-8/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_content_protection@lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2341])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-1/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@uevent:
- shard-bmg: NOTRUN -> [FAIL][29] ([Intel XE#1188]) +1 other test fail
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-5/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2320]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#308]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-463/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1424]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-lnl-8/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#2291]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-bmg-4/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#4422])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-433/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#4422])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-lnl-4/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
- shard-adlp: NOTRUN -> [SKIP][37] ([Intel XE#4422])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#4422])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-6/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-bmg: [PASS][39] -> [SKIP][40] ([Intel XE#2316]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-bmg-4/igt@kms_flip@2x-flip-vs-panning.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][41] -> [INCOMPLETE][42] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a6-dp4.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-464/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a6-dp4.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2293] / [Intel XE#2380])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2293])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#455]) +8 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-adlp: [PASS][46] -> [DMESG-FAIL][47] ([Intel XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-adlp-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][48] ([Intel XE#651]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-9/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#651]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-adlp: NOTRUN -> [SKIP][50] ([Intel XE#656])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2312])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-adlp: [PASS][52] -> [DMESG-FAIL][53] ([Intel XE#4543]) +3 other tests dmesg-fail
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-adlp-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-4/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
- shard-adlp: NOTRUN -> [DMESG-FAIL][54] ([Intel XE#4543])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#5390])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-pri-indfb-multidraw:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2311]) +6 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#656]) +5 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#651]) +13 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-adlp: NOTRUN -> [SKIP][59] ([Intel XE#6312])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#6312])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][61] ([Intel XE#653])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2313]) +6 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#653]) +9 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [PASS][64] -> [SKIP][65] ([Intel XE#455])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-436/igt@kms_hdr@invalid-hdr.html
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#1503])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-swap:
- shard-bmg: [PASS][67] -> [SKIP][68] ([Intel XE#1503])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-bmg-2/igt@kms_hdr@static-swap.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-6/igt@kms_hdr@static-swap.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#4090])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-adlp: NOTRUN -> [SKIP][70] ([Intel XE#2925])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#2925])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-436/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#2925])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-lnl-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2486])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-1/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-adlp: NOTRUN -> [SKIP][74] ([Intel XE#4596])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-9/igt@kms_plane_multiple@2x-tiling-y.html
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#5021])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#5021])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-433/igt@kms_plane_multiple@2x-tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#4596])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-lnl-7/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#5020])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-463/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][79] -> [FAIL][80] ([Intel XE#718])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#1439] / [Intel XE#836])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +6 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@psr-primary-blt:
- shard-adlp: NOTRUN -> [SKIP][85] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-1/igt@kms_psr@psr-primary-blt.html
* igt@kms_psr@psr2-primary-blt:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-6/igt@kms_psr@psr2-primary-blt.html
* igt@kms_sharpness_filter@filter-suspend:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#6503]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-7/igt@kms_sharpness_filter@filter-suspend.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-dg2-set2: [PASS][88] -> [INCOMPLETE][89] ([Intel XE#4488]) +1 other test incomplete
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-dg2-463/igt@kms_vblank@ts-continuation-suspend.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-432/igt@kms_vblank@ts-continuation-suspend.html
* igt@panthor/panthor_gem@bo_mmap_offset_invalid_handle:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#6530]) +10 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-7/igt@panthor/panthor_gem@bo_mmap_offset_invalid_handle.html
- shard-adlp: NOTRUN -> [SKIP][91] ([Intel XE#6530]) +10 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-1/igt@panthor/panthor_gem@bo_mmap_offset_invalid_handle.html
* igt@panthor/panthor_vm@vm_unbind:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#6530]) +10 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-lnl-3/igt@panthor/panthor_vm@vm_unbind.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#1091] / [Intel XE#2849])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-436/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_configfs@survivability-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#6010])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-432/igt@xe_configfs@survivability-mode.html
* igt@xe_eu_stall@blocking-re-enable:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#5626])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-433/igt@xe_eu_stall@blocking-re-enable.html
* igt@xe_eudebug@vma-ufence-faultable:
- shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#4837]) +8 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-433/igt@xe_eudebug@vma-ufence-faultable.html
* igt@xe_eudebug_online@resume-one:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#4837]) +4 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-1/igt@xe_eudebug_online@resume-one.html
- shard-adlp: NOTRUN -> [SKIP][98] ([Intel XE#4837] / [Intel XE#5565]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-3/igt@xe_eudebug_online@resume-one.html
* igt@xe_evict@evict-beng-small-external:
- shard-adlp: NOTRUN -> [SKIP][99] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-3/igt@xe_evict@evict-beng-small-external.html
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#688])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-lnl-4/igt@xe_evict@evict-beng-small-external.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][101] -> [INCOMPLETE][102] ([Intel XE#6321])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr:
- shard-adlp: NOTRUN -> [SKIP][103] ([Intel XE#1392] / [Intel XE#5575])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-6/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2322]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#1392]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#288]) +12 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-434/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race:
- shard-adlp: NOTRUN -> [SKIP][107] ([Intel XE#288] / [Intel XE#5561])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-2/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_sip_eudebug@breakpoint-waitsip:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#4837]) +4 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-lnl-5/igt@xe_exec_sip_eudebug@breakpoint-waitsip.html
* igt@xe_exec_system_allocator@fault-threads-same-page-benchmark:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#4915]) +154 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-433/igt@xe_exec_system_allocator@fault-threads-same-page-benchmark.html
* igt@xe_exec_system_allocator@many-64k-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#5007]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-1/igt@xe_exec_system_allocator@many-64k-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@many-large-execqueues-malloc-mlock:
- shard-adlp: NOTRUN -> [SKIP][111] ([Intel XE#4915]) +24 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-3/igt@xe_exec_system_allocator@many-large-execqueues-malloc-mlock.html
* igt@xe_exec_system_allocator@process-many-large-mmap-new-race:
- shard-bmg: [PASS][112] -> [ABORT][113] ([Intel XE#1727])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-bmg-8/igt@xe_exec_system_allocator@process-many-large-mmap-new-race.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-3/igt@xe_exec_system_allocator@process-many-large-mmap-new-race.html
* igt@xe_exec_system_allocator@process-many-mmap-free-huge:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#4943]) +4 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-5/igt@xe_exec_system_allocator@process-many-mmap-free-huge.html
* igt@xe_exec_system_allocator@twice-large-mmap-free-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#4943]) +3 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-lnl-3/igt@xe_exec_system_allocator@twice-large-mmap-free-huge-nomemset.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#2229])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-lnl-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_oa@mmio-triggered-reports-read:
- shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#6032])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-432/igt@xe_oa@mmio-triggered-reports-read.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#3573]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-435/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#979])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-436/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-adlp: [PASS][120] -> [INCOMPLETE][121] ([Intel XE#4504])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-adlp-9/igt@xe_pm@s2idle-vm-bind-userptr.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-4/igt@xe_pm@s2idle-vm-bind-userptr.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#584])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-lnl-3/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm_residency@idle-residency:
- shard-dg2-set2: [PASS][123] -> [FAIL][124] ([Intel XE#6362]) +1 other test fail
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-dg2-466/igt@xe_pm_residency@idle-residency.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-436/igt@xe_pm_residency@idle-residency.html
* igt@xe_pxp@pxp-stale-queue-post-termination-irq:
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#4733])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-435/igt@xe_pxp@pxp-stale-queue-post-termination-irq.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#944])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-432/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#4130])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-435/igt@xe_sriov_auto_provisioning@fair-allocation.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random:
- shard-adlp: [PASS][128] -> [ABORT][129] ([Intel XE#5466]) +1 other test abort
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-adlp-2/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-8/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-adlp: [FAIL][130] ([Intel XE#3908]) -> [PASS][131] +1 other test pass
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-adlp-3/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-9/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-adlp: [DMESG-FAIL][132] ([Intel XE#4543]) -> [PASS][133] +10 other tests pass
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [SKIP][134] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][135] +1 other test pass
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][136] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) -> [PASS][137] +1 other test pass
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-bmg: [SKIP][138] ([Intel XE#2291]) -> [PASS][139]
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-bmg: [INCOMPLETE][140] -> [PASS][141]
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-bmg: [DMESG-WARN][142] ([Intel XE#5354]) -> [PASS][143] +1 other test pass
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [SKIP][144] ([Intel XE#4294]) -> [PASS][145]
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-7/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-plain-flip:
- shard-bmg: [SKIP][146] ([Intel XE#2316]) -> [PASS][147] +4 other tests pass
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-bmg-6/igt@kms_flip@2x-plain-flip.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-2/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][148] ([Intel XE#301]) -> [PASS][149]
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [FAIL][150] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][151] +1 other test pass
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-adlp: [DMESG-WARN][152] ([Intel XE#4543]) -> [PASS][153] +11 other tests pass
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-9/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-adlp: [DMESG-FAIL][154] ([Intel XE#4543] / [Intel XE#4921]) -> [PASS][155] +3 other tests pass
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-adlp-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [SKIP][156] ([Intel XE#3012]) -> [PASS][157]
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-adlp: [FAIL][158] ([Intel XE#6279]) -> [PASS][159]
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-adlp-9/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-1/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-adlp: [DMESG-WARN][160] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][161] +5 other tests pass
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-adlp-4/igt@kms_plane@plane-panning-bottom-right-suspend.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-8/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][162] ([Intel XE#718]) -> [PASS][163]
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html
* igt@xe_exec_reset@cm-close-fd:
- shard-adlp: [DMESG-WARN][164] ([Intel XE#3868]) -> [PASS][165]
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-adlp-3/igt@xe_exec_reset@cm-close-fd.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-4/igt@xe_exec_reset@cm-close-fd.html
* igt@xe_sriov_auto_provisioning@fair-allocation@numvfs-random:
- shard-bmg: [FAIL][166] ([Intel XE#5937]) -> [PASS][167] +1 other test pass
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-bmg-6/igt@xe_sriov_auto_provisioning@fair-allocation@numvfs-random.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-4/igt@xe_sriov_auto_provisioning@fair-allocation@numvfs-random.html
#### Warnings ####
* igt@kms_content_protection@atomic-dpms:
- shard-bmg: [FAIL][168] ([Intel XE#1178]) -> [SKIP][169] ([Intel XE#2341])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-bmg-2/igt@kms_content_protection@atomic-dpms.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][170] ([Intel XE#2312]) -> [SKIP][171] ([Intel XE#2311]) +12 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][172] ([Intel XE#2311]) -> [SKIP][173] ([Intel XE#2312]) +8 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][174] ([Intel XE#5390]) -> [SKIP][175] ([Intel XE#2312]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][176] ([Intel XE#2312]) -> [SKIP][177] ([Intel XE#5390]) +7 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][178] ([Intel XE#2313]) -> [SKIP][179] ([Intel XE#2312]) +9 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][180] ([Intel XE#2312]) -> [SKIP][181] ([Intel XE#2313]) +13 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][182] ([Intel XE#2426]) -> [FAIL][183] ([Intel XE#1729])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind:
- shard-adlp: [SKIP][184] ([Intel XE#1392] / [Intel XE#5575]) -> [DMESG-FAIL][185] ([Intel XE#5213])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad/shard-adlp-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/shard-adlp-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[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#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[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#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[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#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[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#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
[Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
[Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4488
[Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
[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#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[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#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[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#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993
[Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010
[Intel XE#6032]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6032
[Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
[Intel XE#6279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6279
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6362
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#6530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6530
[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#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[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_8612 -> IGT_8613
* Linux: xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad -> xe-pw-157094v2
IGT_8612: 8612
IGT_8613: b542242f5b116e3b554b4068ef5dfa4451075b2b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad: 6aa8d62a50c33f091548cc961a713223d488d6ad
xe-pw-157094v2: 157094v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157094v2/index.html
[-- Attachment #2: Type: text/html, Size: 62597 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread