* [PATCH v2 00/13] drm/xe: Add and use more KLV helpers
@ 2026-07-07 22:08 Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 01/13] drm/xe/guc: Allow to print single KLV Michal Wajdeczko
` (28 more replies)
0 siblings, 29 replies; 37+ messages in thread
From: Michal Wajdeczko @ 2026-07-07 22:08 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko
v1: https://patchwork.freedesktop.org/series/169511/#rev1
v2:
don't mix units, report too long string (Michal/Sashiko)
don't allow to truncate object (Michal/Sashiko)
avoid KUNIT_ASSERT under mutex (Michal/Sashiko)
add more tests (me)
Michal Wajdeczko (13):
drm/xe/guc: Allow to print single KLV
drm/xe/guc: Prepare to print group KLVs
drm/xe/guc: Add basic KLV encoding helpers
drm/xe/guc: Add string KLV encoding helper
drm/xe/guc: Add object KLV encoding helper
drm/xe/guc: Add KLV parsing helper
drm/xe/guc: Formalize Reserved KLVs
drm/xe/tests: Add GuC KLV helpers basic tests
drm/xe/tests: Add string encoding helper test
drm/xe/tests: Add object encoding helper test
drm/xe/tests: Add GuC KLV printer test
drm/xe/tests: Add migration packet test
drm/xe/pf: Handle migration descriptor using KLV helpers
drivers/gpu/drm/xe/abi/guc_klvs_abi.h | 17 +
drivers/gpu/drm/xe/abi/xe_driver_klvs_abi.h | 27 ++
.../drm/xe/tests/xe_guc_klv_helpers_kunit.c | 444 ++++++++++++++++++
.../gpu/drm/xe/tests/xe_sriov_packet_kunit.c | 88 ++++
drivers/gpu/drm/xe/xe_guc_klv_helpers.c | 258 +++++++++-
drivers/gpu/drm/xe/xe_guc_klv_helpers.h | 10 +
drivers/gpu/drm/xe/xe_sriov_packet.c | 117 ++---
7 files changed, 886 insertions(+), 75 deletions(-)
create mode 100644 drivers/gpu/drm/xe/abi/xe_driver_klvs_abi.h
create mode 100644 drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c
create mode 100644 drivers/gpu/drm/xe/tests/xe_sriov_packet_kunit.c
--
2.47.1
^ permalink raw reply [flat|nested] 37+ messages in thread
* [PATCH v2 01/13] drm/xe/guc: Allow to print single KLV
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
@ 2026-07-07 22:08 ` Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 02/13] drm/xe/guc: Prepare to print group KLVs Michal Wajdeczko
` (27 subsequent siblings)
28 siblings, 0 replies; 37+ messages in thread
From: Michal Wajdeczko @ 2026-07-07 22:08 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Michał Winiarski
We can decode and print all KLVs from the buffer, but it might be
helpful also to allow printing just single already decoded KLV.
Extract existing code into new function and make it public.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michał Winiarski <michal.winiarski@intel.com>
---
drivers/gpu/drm/xe/xe_guc_klv_helpers.c | 54 ++++++++++++++++---------
drivers/gpu/drm/xe/xe_guc_klv_helpers.h | 1 +
2 files changed, 35 insertions(+), 20 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_guc_klv_helpers.c b/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
index 97600edda837..3169c7f1eebf 100644
--- a/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
+++ b/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
@@ -76,6 +76,39 @@ const char *xe_guc_klv_key_to_string(u16 key)
}
}
+/**
+ * xe_guc_klv_print_one() - Print single `GuC KLV`_.
+ * @key: KLV key
+ * @len: KLV length (in u32 dwords) of the KLV @value
+ * @value: KLV value (as array of @len u32 dwords)
+ * @p: the &drm_printer
+ *
+ * The buffer may contain more than one KLV.
+ */
+void xe_guc_klv_print_one(u16 key, u16 len, const u32 *value, struct drm_printer *p)
+{
+ const char *name = xe_guc_klv_key_to_string(key);
+
+ switch (len) {
+ case 0:
+ drm_printf(p, "{ key %#06x : no value } # %s\n", key, name);
+ break;
+ case 1:
+ drm_printf(p, "{ key %#06x : 32b value %u } # %s\n",
+ key, value[0], name);
+ break;
+ case 2:
+ drm_printf(p, "{ key %#06x : 64b value %#llx } # %s\n",
+ key, make_u64(value[1], value[0]), name);
+ break;
+ default:
+ drm_printf(p, "{ key %#06x : %zu bytes %*ph } # %s\n",
+ key, len * sizeof(u32), (int)(len * sizeof(u32)),
+ value, name);
+ break;
+ }
+}
+
/**
* xe_guc_klv_print - Print content of the buffer with `GuC KLV`_.
* @klvs: the buffer with KLVs
@@ -101,26 +134,7 @@ void xe_guc_klv_print(const u32 *klvs, u32 num_dwords, struct drm_printer *p)
return;
}
- switch (len) {
- case 0:
- drm_printf(p, "{ key %#06x : no value } # %s\n",
- key, xe_guc_klv_key_to_string(key));
- break;
- case 1:
- drm_printf(p, "{ key %#06x : 32b value %u } # %s\n",
- key, klvs[0], xe_guc_klv_key_to_string(key));
- break;
- case 2:
- drm_printf(p, "{ key %#06x : 64b value %#llx } # %s\n",
- key, make_u64(klvs[1], klvs[0]),
- xe_guc_klv_key_to_string(key));
- break;
- default:
- drm_printf(p, "{ key %#06x : %zu bytes %*ph } # %s\n",
- key, len * sizeof(u32), (int)(len * sizeof(u32)),
- klvs, xe_guc_klv_key_to_string(key));
- break;
- }
+ xe_guc_klv_print_one(key, len, klvs, p);
klvs += len;
num_dwords -= len;
diff --git a/drivers/gpu/drm/xe/xe_guc_klv_helpers.h b/drivers/gpu/drm/xe/xe_guc_klv_helpers.h
index c676d21c173b..c7b7e61c1250 100644
--- a/drivers/gpu/drm/xe/xe_guc_klv_helpers.h
+++ b/drivers/gpu/drm/xe/xe_guc_klv_helpers.h
@@ -13,6 +13,7 @@ struct drm_printer;
const char *xe_guc_klv_key_to_string(u16 key);
+void xe_guc_klv_print_one(u16 key, u16 len, const u32 *value, struct drm_printer *p);
void xe_guc_klv_print(const u32 *klvs, u32 num_dwords, struct drm_printer *p);
int xe_guc_klv_count(const u32 *klvs, u32 num_dwords);
--
2.47.1
^ permalink raw reply related [flat|nested] 37+ messages in thread
* [PATCH v2 02/13] drm/xe/guc: Prepare to print group KLVs
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 01/13] drm/xe/guc: Allow to print single KLV Michal Wajdeczko
@ 2026-07-07 22:08 ` Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 03/13] drm/xe/guc: Add basic KLV encoding helpers Michal Wajdeczko
` (26 subsequent siblings)
28 siblings, 0 replies; 37+ messages in thread
From: Michal Wajdeczko @ 2026-07-07 22:08 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Michał Winiarski
Some future KLVs will be encoded as a group of nested KLVs. Prepare
our KLV printer function to handle such KLVs. List of known group
keys will be updated later, for now just prepare it for testing.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michał Winiarski <michal.winiarski@intel.com>
---
drivers/gpu/drm/xe/xe_guc_klv_helpers.c | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_guc_klv_helpers.c b/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
index 3169c7f1eebf..f672f4947768 100644
--- a/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
+++ b/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
@@ -4,6 +4,7 @@
*/
#include <linux/bitfield.h>
+#include <kunit/static_stub.h>
#include <drm/drm_print.h>
#include "abi/guc_klvs_abi.h"
@@ -12,6 +13,12 @@
#define make_u64(hi, lo) ((u64)((u64)(u32)(hi) << 32 | (u32)(lo)))
+static bool is_group_key(u16 key)
+{
+ KUNIT_STATIC_STUB_REDIRECT(is_group_key, key);
+ return false;
+}
+
/**
* xe_guc_klv_key_to_string - Convert KLV key into friendly name.
* @key: the `GuC KLV`_ key
@@ -89,6 +96,17 @@ void xe_guc_klv_print_one(u16 key, u16 len, const u32 *value, struct drm_printer
{
const char *name = xe_guc_klv_key_to_string(key);
+ if (is_group_key(key)) {
+ struct drm_printer gp = drm_line_printer(p, name, 0);
+
+ drm_printf(p, "{ key %#06x : group %u dwords } # %s\n",
+ key, len, name);
+
+ /* print group recursively */
+ xe_guc_klv_print(value, len, &gp);
+ return;
+ }
+
switch (len) {
case 0:
drm_printf(p, "{ key %#06x : no value } # %s\n", key, name);
--
2.47.1
^ permalink raw reply related [flat|nested] 37+ messages in thread
* [PATCH v2 03/13] drm/xe/guc: Add basic KLV encoding helpers
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 01/13] drm/xe/guc: Allow to print single KLV Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 02/13] drm/xe/guc: Prepare to print group KLVs Michal Wajdeczko
@ 2026-07-07 22:08 ` Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 04/13] drm/xe/guc: Add string KLV encoding helper Michal Wajdeczko
` (25 subsequent siblings)
28 siblings, 0 replies; 37+ messages in thread
From: Michal Wajdeczko @ 2026-07-07 22:08 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Michał Winiarski
We plan to encode more data as KLVs. Add helpers for that.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michał Winiarski <michal.winiarski@intel.com>
---
drivers/gpu/drm/xe/xe_guc_klv_helpers.c | 56 +++++++++++++++++++++++++
drivers/gpu/drm/xe/xe_guc_klv_helpers.h | 3 ++
2 files changed, 59 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_guc_klv_helpers.c b/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
index f672f4947768..5f94852a906f 100644
--- a/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
+++ b/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
@@ -187,3 +187,59 @@ int xe_guc_klv_count(const u32 *klvs, u32 num_dwords)
return num_dwords ? -ENODATA : num_klvs;
}
+
+static u16 to_num_dwords(size_t size)
+{
+ return round_up(size, sizeof(u32)) / sizeof(u32);
+}
+
+/**
+ * xe_guc_klv_encode_u32() - Encode 32-bit value as KLV.
+ * @klvs: the buffer where to place KLV
+ * @avail: number of dwords (u32) available in the buffer
+ * @key: key to be used
+ * @value: value to be encoded
+ *
+ * Return: pointer to the buffer location past the encoded KLV or
+ * an ERR_PTR if there was no space to encode the KLV.
+ */
+u32 *xe_guc_klv_encode_u32(u32 *klvs, u32 avail, u16 key, u32 value)
+{
+ u16 len = to_num_dwords(sizeof(u32));
+
+ if (IS_ERR(klvs))
+ return klvs;
+
+ if (avail < GUC_KLV_LEN_MIN + len)
+ return ERR_PTR(-ENOSPC);
+
+ *klvs++ = PREP_GUC_KLV(key, len);
+ *klvs++ = value;
+ return klvs;
+}
+
+/**
+ * xe_guc_klv_encode_u64() - Encode 64-bit value as KLV.
+ * @klvs: the buffer where to place KLV
+ * @avail: number of dwords (u32) available in the buffer
+ * @key: key to be used
+ * @value: value to be encoded
+ *
+ * Return: pointer to the buffer location past the encoded KLV or
+ * an ERR_PTR if there was no space to encode the KLV.
+ */
+u32 *xe_guc_klv_encode_u64(u32 *klvs, u32 avail, u16 key, u64 value)
+{
+ u16 len = to_num_dwords(sizeof(u64));
+
+ if (IS_ERR(klvs))
+ return klvs;
+
+ if (avail < GUC_KLV_LEN_MIN + len)
+ return ERR_PTR(-ENOSPC);
+
+ *klvs++ = PREP_GUC_KLV(key, len);
+ *klvs++ = lower_32_bits(value);
+ *klvs++ = upper_32_bits(value);
+ return klvs;
+}
diff --git a/drivers/gpu/drm/xe/xe_guc_klv_helpers.h b/drivers/gpu/drm/xe/xe_guc_klv_helpers.h
index c7b7e61c1250..713ef7f7b9f2 100644
--- a/drivers/gpu/drm/xe/xe_guc_klv_helpers.h
+++ b/drivers/gpu/drm/xe/xe_guc_klv_helpers.h
@@ -17,6 +17,9 @@ void xe_guc_klv_print_one(u16 key, u16 len, const u32 *value, struct drm_printer
void xe_guc_klv_print(const u32 *klvs, u32 num_dwords, struct drm_printer *p);
int xe_guc_klv_count(const u32 *klvs, u32 num_dwords);
+u32 *xe_guc_klv_encode_u32(u32 *klvs, u32 avail, u16 key, u32 value);
+u32 *xe_guc_klv_encode_u64(u32 *klvs, u32 avail, u16 key, u64 value);
+
/**
* PREP_GUC_KLV - Prepare KLV header value based on provided key and len.
* @key: KLV key
--
2.47.1
^ permalink raw reply related [flat|nested] 37+ messages in thread
* [PATCH v2 04/13] drm/xe/guc: Add string KLV encoding helper
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (2 preceding siblings ...)
2026-07-07 22:08 ` [PATCH v2 03/13] drm/xe/guc: Add basic KLV encoding helpers Michal Wajdeczko
@ 2026-07-07 22:08 ` Michal Wajdeczko
2026-07-09 12:51 ` Michał Winiarski
2026-07-07 22:08 ` [PATCH v2 05/13] drm/xe/guc: Add object " Michal Wajdeczko
` (24 subsequent siblings)
28 siblings, 1 reply; 37+ messages in thread
From: Michal Wajdeczko @ 2026-07-07 22:08 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Michał Winiarski
We also plan to encode a text data as KLV. Add helper for that too.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Michał Winiarski <michal.winiarski@intel.com>
---
v2: don't mix units, report too long string (Michal/Sashiko)
---
drivers/gpu/drm/xe/xe_guc_klv_helpers.c | 35 +++++++++++++++++++++++++
drivers/gpu/drm/xe/xe_guc_klv_helpers.h | 1 +
2 files changed, 36 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_guc_klv_helpers.c b/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
index 5f94852a906f..45471738c150 100644
--- a/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
+++ b/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
@@ -188,6 +188,11 @@ int xe_guc_klv_count(const u32 *klvs, u32 num_dwords)
return num_dwords ? -ENODATA : num_klvs;
}
+static size_t to_num_bytes(u16 dwords)
+{
+ return dwords * sizeof(u32);
+}
+
static u16 to_num_dwords(size_t size)
{
return round_up(size, sizeof(u32)) / sizeof(u32);
@@ -243,3 +248,33 @@ u32 *xe_guc_klv_encode_u64(u32 *klvs, u32 avail, u16 key, u64 value)
*klvs++ = upper_32_bits(value);
return klvs;
}
+
+/**
+ * xe_guc_klv_encode_string() - Encode string as KLV.
+ * @klvs: the buffer where to place KLV
+ * @avail: number of dwords (u32) available in the buffer
+ * @key: key to be used
+ * @s: string to be encoded
+ *
+ * Return: pointer to the buffer location past the encoded KLV or
+ * an ERR_PTR if there was no space to encode the KLV.
+ */
+u32 *xe_guc_klv_encode_string(u32 *klvs, u32 avail, u16 key, const char *s)
+{
+ size_t longest = to_num_bytes(FIELD_MAX(GUC_KLV_0_LEN));
+ size_t size = strnlen(s, longest) + 1; /* \0 */
+ u16 len = to_num_dwords(size);
+
+ if (IS_ERR(klvs))
+ return klvs;
+
+ if (size > longest)
+ return ERR_PTR(-E2BIG);
+
+ if (avail < GUC_KLV_LEN_MIN + len)
+ return ERR_PTR(-ENOSPC);
+
+ *klvs++ = PREP_GUC_KLV(key, len);
+ strscpy_pad((void *)klvs, s, to_num_bytes(len));
+ return klvs + len;
+}
diff --git a/drivers/gpu/drm/xe/xe_guc_klv_helpers.h b/drivers/gpu/drm/xe/xe_guc_klv_helpers.h
index 713ef7f7b9f2..1c576456efc5 100644
--- a/drivers/gpu/drm/xe/xe_guc_klv_helpers.h
+++ b/drivers/gpu/drm/xe/xe_guc_klv_helpers.h
@@ -19,6 +19,7 @@ int xe_guc_klv_count(const u32 *klvs, u32 num_dwords);
u32 *xe_guc_klv_encode_u32(u32 *klvs, u32 avail, u16 key, u32 value);
u32 *xe_guc_klv_encode_u64(u32 *klvs, u32 avail, u16 key, u64 value);
+u32 *xe_guc_klv_encode_string(u32 *klvs, u32 avail, u16 key, const char *s);
/**
* PREP_GUC_KLV - Prepare KLV header value based on provided key and len.
--
2.47.1
^ permalink raw reply related [flat|nested] 37+ messages in thread
* [PATCH v2 05/13] drm/xe/guc: Add object KLV encoding helper
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (3 preceding siblings ...)
2026-07-07 22:08 ` [PATCH v2 04/13] drm/xe/guc: Add string KLV encoding helper Michal Wajdeczko
@ 2026-07-07 22:08 ` Michal Wajdeczko
2026-07-09 12:53 ` Michał Winiarski
2026-07-07 22:08 ` [PATCH v2 06/13] drm/xe/guc: Add KLV parsing helper Michal Wajdeczko
` (23 subsequent siblings)
28 siblings, 1 reply; 37+ messages in thread
From: Michal Wajdeczko @ 2026-07-07 22:08 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko
We plan to encode larger objects as single KLV or set of KLVs.
Add helper for that.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
v2: limit avail to avoid unexpected truncation (Michal/Sashiko)
---
drivers/gpu/drm/xe/xe_guc_klv_helpers.c | 39 +++++++++++++++++++++++++
drivers/gpu/drm/xe/xe_guc_klv_helpers.h | 2 ++
2 files changed, 41 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_guc_klv_helpers.c b/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
index 45471738c150..5ad51a8ff0de 100644
--- a/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
+++ b/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
@@ -278,3 +278,42 @@ u32 *xe_guc_klv_encode_string(u32 *klvs, u32 avail, u16 key, const char *s)
strscpy_pad((void *)klvs, s, to_num_bytes(len));
return klvs + len;
}
+
+/**
+ * xe_guc_klv_encode_object() - Encode object using custom encoder as single KLV.
+ * @klvs: the buffer where to place KLV
+ * @avail: number of dwords (u32) available in the buffer
+ * @key: key to be used
+ * @obj: opaque object pointer
+ * @encoder: function pointer to the custom encoder
+ *
+ * Return: pointer to the buffer location past the encoded KLV or
+ * an ERR_PTR if there was no space to encode the KLV.
+ */
+u32 *xe_guc_klv_encode_object(u32 *klvs, u32 avail, u16 key, const void *obj,
+ u32 *(*encoder)(u32 *klvs, u32 avail, const void *obj))
+{
+ u32 *end;
+
+ if (IS_ERR(klvs))
+ return klvs;
+
+ if (avail < GUC_KLV_LEN_MIN)
+ return ERR_PTR(-ENOSPC);
+
+ if (avail > GUC_KLV_LEN_MIN + FIELD_MAX(GUC_KLV_0_LEN))
+ avail = GUC_KLV_LEN_MIN + FIELD_MAX(GUC_KLV_0_LEN);
+
+ end = encoder(klvs + GUC_KLV_LEN_MIN, avail - GUC_KLV_LEN_MIN, obj);
+ if (IS_ERR(end))
+ return end;
+
+ if (WARN_ON(end < klvs + GUC_KLV_LEN_MIN))
+ return ERR_PTR(-EPIPE);
+
+ if (WARN_ON(end > klvs + avail))
+ return ERR_PTR(-EFBIG);
+
+ *klvs = PREP_GUC_KLV(key, end - (klvs + GUC_KLV_LEN_MIN));
+ return end;
+}
diff --git a/drivers/gpu/drm/xe/xe_guc_klv_helpers.h b/drivers/gpu/drm/xe/xe_guc_klv_helpers.h
index 1c576456efc5..855805f4463d 100644
--- a/drivers/gpu/drm/xe/xe_guc_klv_helpers.h
+++ b/drivers/gpu/drm/xe/xe_guc_klv_helpers.h
@@ -20,6 +20,8 @@ int xe_guc_klv_count(const u32 *klvs, u32 num_dwords);
u32 *xe_guc_klv_encode_u32(u32 *klvs, u32 avail, u16 key, u32 value);
u32 *xe_guc_klv_encode_u64(u32 *klvs, u32 avail, u16 key, u64 value);
u32 *xe_guc_klv_encode_string(u32 *klvs, u32 avail, u16 key, const char *s);
+u32 *xe_guc_klv_encode_object(u32 *klvs, u32 avail, u16 key, const void *obj,
+ u32 *(*encoder)(u32 *klvs, u32 avail, const void *obj));
/**
* PREP_GUC_KLV - Prepare KLV header value based on provided key and len.
--
2.47.1
^ permalink raw reply related [flat|nested] 37+ messages in thread
* [PATCH v2 06/13] drm/xe/guc: Add KLV parsing helper
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (4 preceding siblings ...)
2026-07-07 22:08 ` [PATCH v2 05/13] drm/xe/guc: Add object " Michal Wajdeczko
@ 2026-07-07 22:08 ` Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 07/13] drm/xe/guc: Formalize Reserved KLVs Michal Wajdeczko
` (22 subsequent siblings)
28 siblings, 0 replies; 37+ messages in thread
From: Michal Wajdeczko @ 2026-07-07 22:08 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Michał Winiarski
We have already introduced a helper to encode larger objects. Now
add helper to parse the KLVs buffer. We will use it shortly.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michał Winiarski <michal.winiarski@intel.com>
---
drivers/gpu/drm/xe/xe_guc_klv_helpers.c | 38 +++++++++++++++++++++++++
drivers/gpu/drm/xe/xe_guc_klv_helpers.h | 3 ++
2 files changed, 41 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_guc_klv_helpers.c b/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
index 5ad51a8ff0de..723fc6894c37 100644
--- a/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
+++ b/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
@@ -317,3 +317,41 @@ u32 *xe_guc_klv_encode_object(u32 *klvs, u32 avail, u16 key, const void *obj,
*klvs = PREP_GUC_KLV(key, end - (klvs + GUC_KLV_LEN_MIN));
return end;
}
+
+/**
+ * xe_guc_klv_parser() - Parse and decode stream of KLVs.
+ * @klvs: the buffer with KLVs
+ * @num_dwords: number of dwords (u32) available in the buffer
+ * @obj: opaque pointer to be used by the @decoder function
+ * @decoder: pointer to the decoder function
+ *
+ * Return: The sum of all results returned by the decoder or
+ * an -errno on decoder or buffer failure.
+ */
+int xe_guc_klv_parser(const u32 *klvs, u32 num_dwords, void *obj,
+ int (*decoder)(void *obj, u16 key, u16 len, const u32 *value))
+{
+ int total = 0;
+ int ret;
+
+ while (num_dwords >= GUC_KLV_LEN_MIN) {
+ u16 key = FIELD_GET(GUC_KLV_0_KEY, klvs[0]);
+ u16 len = FIELD_GET(GUC_KLV_0_LEN, klvs[0]);
+
+ klvs += GUC_KLV_LEN_MIN;
+ num_dwords -= GUC_KLV_LEN_MIN;
+
+ if (num_dwords < len)
+ return -ENODATA;
+
+ ret = decoder(obj, key, len, klvs);
+ if (ret < 0)
+ return ret;
+ total += ret;
+
+ klvs += len;
+ num_dwords -= len;
+ }
+
+ return total;
+}
diff --git a/drivers/gpu/drm/xe/xe_guc_klv_helpers.h b/drivers/gpu/drm/xe/xe_guc_klv_helpers.h
index 855805f4463d..cf3b29adc9d6 100644
--- a/drivers/gpu/drm/xe/xe_guc_klv_helpers.h
+++ b/drivers/gpu/drm/xe/xe_guc_klv_helpers.h
@@ -23,6 +23,9 @@ u32 *xe_guc_klv_encode_string(u32 *klvs, u32 avail, u16 key, const char *s);
u32 *xe_guc_klv_encode_object(u32 *klvs, u32 avail, u16 key, const void *obj,
u32 *(*encoder)(u32 *klvs, u32 avail, const void *obj));
+int xe_guc_klv_parser(const u32 *klvs, u32 num_dwords, void *obj,
+ int (*decoder)(void *obj, u16 key, u16 len, const u32 *value));
+
/**
* PREP_GUC_KLV - Prepare KLV header value based on provided key and len.
* @key: KLV key
--
2.47.1
^ permalink raw reply related [flat|nested] 37+ messages in thread
* [PATCH v2 07/13] drm/xe/guc: Formalize Reserved KLVs
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (5 preceding siblings ...)
2026-07-07 22:08 ` [PATCH v2 06/13] drm/xe/guc: Add KLV parsing helper Michal Wajdeczko
@ 2026-07-07 22:08 ` Michal Wajdeczko
2026-07-10 17:25 ` [PATCH v3 " Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 08/13] drm/xe/tests: Add GuC KLV helpers basic tests Michal Wajdeczko
` (21 subsequent siblings)
28 siblings, 1 reply; 37+ messages in thread
From: Michal Wajdeczko @ 2026-07-07 22:08 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Michał Winiarski
We have already started using few KLV keys from the 0xF000 range
that, as we have agreed with the GuC team, will not be used in any
GuC ABI actions. Add definitions for that reserved range and move
our migration KLVs to new ABI header.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michał Winiarski <michal.winiarski@intel.com>
---
drivers/gpu/drm/xe/abi/guc_klvs_abi.h | 17 +++++++++++++
drivers/gpu/drm/xe/abi/xe_driver_klvs_abi.h | 27 +++++++++++++++++++++
drivers/gpu/drm/xe/xe_guc_klv_helpers.c | 14 +++++++++++
drivers/gpu/drm/xe/xe_sriov_packet.c | 7 ++----
4 files changed, 60 insertions(+), 5 deletions(-)
create mode 100644 drivers/gpu/drm/xe/abi/xe_driver_klvs_abi.h
diff --git a/drivers/gpu/drm/xe/abi/guc_klvs_abi.h b/drivers/gpu/drm/xe/abi/guc_klvs_abi.h
index 644f5a4226d7..2a313eb399e2 100644
--- a/drivers/gpu/drm/xe/abi/guc_klvs_abi.h
+++ b/drivers/gpu/drm/xe/abi/guc_klvs_abi.h
@@ -22,6 +22,7 @@
* | | | - `GuC Scheduling Policies KLVs`_ |
* | | | - `GuC VGT Policy KLVs`_ |
* | | | - `GuC VF Configuration KLVs`_ |
+ * | | | - `GuC Reserved KLVs`_ |
* | | | |
* | +-------+--------------------------------------------------------------+
* | | 15:0 | **LEN** - length of VALUE (in 32bit dwords) |
@@ -506,4 +507,20 @@ enum xe_guc_klv_ids {
GUC_WA_KLV_CLR_CS_INDIRECT_RING_STATE_IF_IDLE_AT_CTX_REG = 0x900e,
};
+/**
+ * DOC: GuC Reserved KLVs
+ *
+ * Range of `GuC KLV`_ keys reserved for internal use by the GuC that will
+ * never be part of the offcial GuC ABI and can be reused by the drivers.
+ *
+ * Currently this range includes 1024 keys starting from:
+ *
+ * _`GUC_KLV_RESERVED_RANGE_START` : 0xF000
+ *
+ * See `Xe Driver KLVs`_ for the KLVs that the Xe driver is currently using.
+ */
+
+#define GUC_KLV_RESERVED_RANGE_START 0xf000u
+#define GUC_KLV_RESERVED_RANGE_LEN 1024u
+
#endif
diff --git a/drivers/gpu/drm/xe/abi/xe_driver_klvs_abi.h b/drivers/gpu/drm/xe/abi/xe_driver_klvs_abi.h
new file mode 100644
index 000000000000..3b557e56892a
--- /dev/null
+++ b/drivers/gpu/drm/xe/abi/xe_driver_klvs_abi.h
@@ -0,0 +1,27 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2026 Intel Corporation
+ */
+
+#ifndef _ABI_XE_DRIVER_KLVS_ABI_H
+#define _ABI_XE_DRIVER_KLVS_ABI_H
+
+#include "abi/guc_klvs_abi.h"
+
+/**
+ * DOC: Xe Driver KLVs
+ *
+ * The Xe driver uses the following keys from the `GuC Reserved KLVs`_ range:
+ *
+ * _`MIGRATION_KLV_DEVICE_DEVID_KEY` :
+ * PCI device ID of the migrated VF.
+ * _`MIGRATION_KLV_DEVICE_REVID_KEY` :
+ * PCI device revision ID of the migrated VF.
+ */
+
+#define MIGRATION_KLV_DEVICE_DEVID_KEY 0xf001u
+#define MIGRATION_KLV_DEVICE_DEVID_LEN 1u
+#define MIGRATION_KLV_DEVICE_REVID_KEY 0xf002u
+#define MIGRATION_KLV_DEVICE_REVID_LEN 1u
+
+#endif
diff --git a/drivers/gpu/drm/xe/xe_guc_klv_helpers.c b/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
index 723fc6894c37..9225a9066b8a 100644
--- a/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
+++ b/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
@@ -8,6 +8,7 @@
#include <drm/drm_print.h>
#include "abi/guc_klvs_abi.h"
+#include "abi/xe_driver_klvs_abi.h"
#include "xe_guc_klv_helpers.h"
#include "xe_guc_klv_thresholds_set.h"
@@ -19,6 +20,11 @@ static bool is_group_key(u16 key)
return false;
}
+static bool is_reserved_key(u16 key)
+{
+ return in_range(key, GUC_KLV_RESERVED_RANGE_START, GUC_KLV_RESERVED_RANGE_LEN);
+}
+
/**
* xe_guc_klv_key_to_string - Convert KLV key into friendly name.
* @key: the `GuC KLV`_ key
@@ -78,7 +84,15 @@ const char *xe_guc_klv_key_to_string(u16 key)
MAKE_XE_GUC_KLV_THRESHOLDS_SET(define_threshold_key_to_string_case)
#undef define_threshold_key_to_string_case
+ /* driver KLVs */
+ case MIGRATION_KLV_DEVICE_DEVID_KEY:
+ return "migration_devid";
+ case MIGRATION_KLV_DEVICE_REVID_KEY:
+ return "migration_revid";
+
default:
+ if (is_reserved_key(key))
+ return "(reserved)";
return "(unknown)";
}
}
diff --git a/drivers/gpu/drm/xe/xe_sriov_packet.c b/drivers/gpu/drm/xe/xe_sriov_packet.c
index 2ae9eff2a7c0..e581e8e6c1d1 100644
--- a/drivers/gpu/drm/xe/xe_sriov_packet.c
+++ b/drivers/gpu/drm/xe/xe_sriov_packet.c
@@ -3,6 +3,8 @@
* Copyright © 2025 Intel Corporation
*/
+#include "abi/xe_driver_klvs_abi.h"
+
#include "xe_bo.h"
#include "xe_device.h"
#include "xe_guc_klv_helpers.h"
@@ -352,11 +354,6 @@ ssize_t xe_sriov_packet_write_single(struct xe_device *xe, unsigned int vfid,
return copied;
}
-#define MIGRATION_KLV_DEVICE_DEVID_KEY 0xf001u
-#define MIGRATION_KLV_DEVICE_DEVID_LEN 1u
-#define MIGRATION_KLV_DEVICE_REVID_KEY 0xf002u
-#define MIGRATION_KLV_DEVICE_REVID_LEN 1u
-
#define MIGRATION_DESCRIPTOR_DWORDS (GUC_KLV_LEN_MIN + MIGRATION_KLV_DEVICE_DEVID_LEN + \
GUC_KLV_LEN_MIN + MIGRATION_KLV_DEVICE_REVID_LEN)
static int pf_descriptor_init(struct xe_device *xe, unsigned int vfid)
--
2.47.1
^ permalink raw reply related [flat|nested] 37+ messages in thread
* [PATCH v2 08/13] drm/xe/tests: Add GuC KLV helpers basic tests
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (6 preceding siblings ...)
2026-07-07 22:08 ` [PATCH v2 07/13] drm/xe/guc: Formalize Reserved KLVs Michal Wajdeczko
@ 2026-07-07 22:08 ` Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 09/13] drm/xe/tests: Add string encoding helper test Michal Wajdeczko
` (20 subsequent siblings)
28 siblings, 0 replies; 37+ messages in thread
From: Michal Wajdeczko @ 2026-07-07 22:08 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Michał Winiarski
We will be making more extensive use of GuC KLV helpers. Add simple
tests to ensure the helpers are working as expected.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michał Winiarski <michal.winiarski@intel.com>
---
.../drm/xe/tests/xe_guc_klv_helpers_kunit.c | 99 +++++++++++++++++++
drivers/gpu/drm/xe/xe_guc_klv_helpers.c | 4 +
2 files changed, 103 insertions(+)
create mode 100644 drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c
diff --git a/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c b/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c
new file mode 100644
index 000000000000..f87189ef13d5
--- /dev/null
+++ b/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c
@@ -0,0 +1,99 @@
+// SPDX-License-Identifier: GPL-2.0 AND MIT
+/*
+ * Copyright © 2026 Intel Corporation
+ */
+
+#include <kunit/test.h>
+#include <kunit/test-bug.h>
+
+#define TEST_KEY (GUC_KLV_RESERVED_RANGE_START + 0x3de)
+#define TEST_PAD 0xdeadbeef
+
+static void test_count(struct kunit *test)
+{
+ u32 value = 0x12345678;
+ u16 key = TEST_KEY;
+ u32 klvs[] = {
+ PREP_GUC_KLV(key + 0, 0),
+ PREP_GUC_KLV(key + 1, 1), value,
+ PREP_GUC_KLV(key + 2, 2), value, value,
+ PREP_GUC_KLV(key + 3, 0),
+ 0, /* padding */
+ };
+
+ KUNIT_EXPECT_EQ(test, 0, xe_guc_klv_count(klvs, 0));
+ KUNIT_EXPECT_EQ(test, 1, xe_guc_klv_count(klvs, 1));
+ KUNIT_EXPECT_GT(test, 0, xe_guc_klv_count(klvs, 2));
+ KUNIT_EXPECT_EQ(test, 2, xe_guc_klv_count(klvs, 3));
+ KUNIT_EXPECT_GT(test, 0, xe_guc_klv_count(klvs, 4));
+ KUNIT_EXPECT_GT(test, 0, xe_guc_klv_count(klvs, 5));
+ KUNIT_EXPECT_EQ(test, 3, xe_guc_klv_count(klvs, 6));
+ KUNIT_EXPECT_EQ(test, 4, xe_guc_klv_count(klvs, 7));
+
+ /* 0 is treated as reserved KLV { KEY=0, LEN=0 } */
+ KUNIT_EXPECT_EQ(test, 5, xe_guc_klv_count(klvs, 8));
+}
+
+static void test_encode_u32(struct kunit *test)
+{
+ u32 *fail = ERR_PTR(-ENOMEM);
+ u32 value = 0x12345678;
+ u16 key = TEST_KEY;
+ u32 klvs[16];
+
+ memset32(klvs, TEST_PAD, ARRAY_SIZE(klvs));
+
+ KUNIT_EXPECT_PTR_EQ(test, ERR_PTR(-ENOSPC), xe_guc_klv_encode_u32(klvs, 0, key, value));
+ KUNIT_EXPECT_PTR_EQ(test, ERR_PTR(-ENOSPC), xe_guc_klv_encode_u32(klvs, 1, key, value));
+
+ KUNIT_ASSERT_NOT_ERR_OR_NULL(test, xe_guc_klv_encode_u32(klvs, 2, key, value));
+ KUNIT_EXPECT_EQ(test, klvs[0], PREP_GUC_KLV(key, 1));
+ KUNIT_EXPECT_EQ(test, klvs[1], value);
+ KUNIT_EXPECT_EQ(test, klvs[2], TEST_PAD);
+ KUNIT_EXPECT_PTR_EQ(test, &klvs[2], xe_guc_klv_encode_u32(klvs, 2, key, value));
+ KUNIT_EXPECT_PTR_EQ(test,
+ xe_guc_klv_encode_u32(klvs, 2, key, value),
+ xe_guc_klv_encode_u32(klvs, ARRAY_SIZE(klvs), key, value));
+
+ KUNIT_ASSERT_PTR_EQ(test, fail, xe_guc_klv_encode_u32(fail, ARRAY_SIZE(klvs), key, value));
+}
+
+static void test_encode_u64(struct kunit *test)
+{
+ u64 value = 0x123456789abcdef0;
+ u32 *fail = ERR_PTR(-ENOMEM);
+ u16 key = TEST_KEY;
+ u32 klvs[16];
+
+ memset32(klvs, TEST_PAD, ARRAY_SIZE(klvs));
+
+ KUNIT_EXPECT_PTR_EQ(test, ERR_PTR(-ENOSPC), xe_guc_klv_encode_u64(klvs, 0, key, value));
+ KUNIT_EXPECT_PTR_EQ(test, ERR_PTR(-ENOSPC), xe_guc_klv_encode_u64(klvs, 1, key, value));
+ KUNIT_EXPECT_PTR_EQ(test, ERR_PTR(-ENOSPC), xe_guc_klv_encode_u64(klvs, 2, key, value));
+
+ KUNIT_ASSERT_NOT_ERR_OR_NULL(test, xe_guc_klv_encode_u64(klvs, 3, key, value));
+ KUNIT_EXPECT_EQ(test, klvs[0], PREP_GUC_KLV(key, 2));
+ KUNIT_EXPECT_EQ(test, klvs[1], lower_32_bits(value));
+ KUNIT_EXPECT_EQ(test, klvs[2], upper_32_bits(value));
+ KUNIT_EXPECT_EQ(test, klvs[3], TEST_PAD);
+ KUNIT_EXPECT_PTR_EQ(test, &klvs[3], xe_guc_klv_encode_u64(klvs, 3, key, value));
+ KUNIT_EXPECT_PTR_EQ(test,
+ xe_guc_klv_encode_u64(klvs, 3, key, value),
+ xe_guc_klv_encode_u64(klvs, ARRAY_SIZE(klvs), key, value));
+
+ KUNIT_ASSERT_PTR_EQ(test, fail, xe_guc_klv_encode_u64(fail, ARRAY_SIZE(klvs), key, value));
+}
+
+static struct kunit_case guc_klv_helpers_test_cases[] = {
+ KUNIT_CASE(test_count),
+ KUNIT_CASE(test_encode_u32),
+ KUNIT_CASE(test_encode_u64),
+ {}
+};
+
+static struct kunit_suite guc_klv_helpers_suite = {
+ .name = "guc_klv_helpers",
+ .test_cases = guc_klv_helpers_test_cases,
+};
+
+kunit_test_suite(guc_klv_helpers_suite);
diff --git a/drivers/gpu/drm/xe/xe_guc_klv_helpers.c b/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
index 9225a9066b8a..f0ad5adc6699 100644
--- a/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
+++ b/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
@@ -369,3 +369,7 @@ int xe_guc_klv_parser(const u32 *klvs, u32 num_dwords, void *obj,
return total;
}
+
+#if IS_BUILTIN(CONFIG_DRM_XE_KUNIT_TEST)
+#include "tests/xe_guc_klv_helpers_kunit.c"
+#endif
--
2.47.1
^ permalink raw reply related [flat|nested] 37+ messages in thread
* [PATCH v2 09/13] drm/xe/tests: Add string encoding helper test
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (7 preceding siblings ...)
2026-07-07 22:08 ` [PATCH v2 08/13] drm/xe/tests: Add GuC KLV helpers basic tests Michal Wajdeczko
@ 2026-07-07 22:08 ` Michal Wajdeczko
2026-07-08 18:07 ` [PATCH v3 " Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 10/13] drm/xe/tests: Add object " Michal Wajdeczko
` (19 subsequent siblings)
28 siblings, 1 reply; 37+ messages in thread
From: Michal Wajdeczko @ 2026-07-07 22:08 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Michał Winiarski
Before we start using string to KLV encoding helper, add a simple
test to make sure it works as expected.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michał Winiarski <michal.winiarski@intel.com> #v1
---
v2: avoid using VLAs (Sashiko) and more (me)
---
.../drm/xe/tests/xe_guc_klv_helpers_kunit.c | 84 +++++++++++++++++++
1 file changed, 84 insertions(+)
diff --git a/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c b/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c
index f87189ef13d5..a0d6b72d45f3 100644
--- a/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c
+++ b/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c
@@ -84,10 +84,94 @@ static void test_encode_u64(struct kunit *test)
KUNIT_ASSERT_PTR_EQ(test, fail, xe_guc_klv_encode_u64(fail, ARRAY_SIZE(klvs), key, value));
}
+static u32 str_klv_size(const char *string)
+{
+ return GUC_KLV_LEN_MIN + to_num_dwords(strlen(string) + 1);
+}
+
+static void test_encode_string(struct kunit *test)
+{
+ size_t longest_str = to_num_bytes(FIELD_MAX(GUC_KLV_0_LEN)) - 1;
+ u32 avail = GUC_KLV_LEN_MIN + FIELD_MAX(GUC_KLV_0_LEN) + 1;
+ const char *string = "abcdefghijklmnopqrstvwxyz";
+ u16 key = TEST_KEY;
+ u32 *klvs;
+ u32 *next;
+ char *buf;
+ u32 n;
+
+ klvs = kunit_kcalloc(test, avail, sizeof(u32), GFP_KERNEL);
+ KUNIT_ASSERT_NOT_ERR_OR_NULL(test, klvs);
+
+ buf = kunit_kzalloc(test, longest_str + 2, GFP_KERNEL);
+ KUNIT_ASSERT_NOT_ERR_OR_NULL(test, string);
+
+ /* empty string, no space, must fail */
+ for (n = 0; n < str_klv_size(""); n++) {
+ klvs[0] = TEST_PAD;
+ KUNIT_EXPECT_PTR_EQ(test, ERR_PTR(-ENOSPC),
+ xe_guc_klv_encode_string(klvs, n, key, ""));
+ KUNIT_EXPECT_EQ(test, klvs[0], TEST_PAD);
+ }
+
+ /* empty string, must pass */
+ KUNIT_EXPECT_PTR_EQ(test, klvs + str_klv_size(""),
+ xe_guc_klv_encode_string(klvs, str_klv_size(""), key, ""));
+ KUNIT_EXPECT_PTR_EQ(test, klvs + str_klv_size(""),
+ xe_guc_klv_encode_string(klvs, avail, key, ""));
+
+ /* demo string, no space, must fail */
+ for (n = 0; n < str_klv_size(string); n++) {
+ klvs[0] = TEST_PAD;
+ KUNIT_EXPECT_PTR_EQ(test, ERR_PTR(-ENOSPC),
+ xe_guc_klv_encode_string(klvs, n, key, string));
+ KUNIT_EXPECT_EQ(test, klvs[0], TEST_PAD);
+ }
+
+ /* different string len, must pass */
+ for (n = 0; n <= strlen(string); n++) {
+ strscpy(buf, string, n + 1);
+ kunit_info(test, "%u: '%s'\n", n, buf);
+ KUNIT_ASSERT_EQ(test, n, strlen(buf));
+ memset32(klvs, TEST_PAD, avail);
+
+ next = xe_guc_klv_encode_string(klvs, str_klv_size(buf), key, buf);
+ KUNIT_ASSERT_NOT_ERR_OR_NULL(test, next);
+ KUNIT_EXPECT_PTR_EQ(test, next, klvs + str_klv_size(buf));
+ KUNIT_EXPECT_STREQ_MSG(test, buf, (char *)(klvs + GUC_KLV_LEN_MIN), "n=%u", n);
+ kunit_info(test, "%u: %*ph\n", n, (int)to_num_bytes(next - klvs), klvs);
+ KUNIT_EXPECT_NE(test, *(next - 1), TEST_PAD);
+ KUNIT_ASSERT_EQ(test, *next, TEST_PAD);
+
+ /* bigger buf doesn't matter */
+ KUNIT_EXPECT_PTR_EQ(test,
+ xe_guc_klv_encode_string(klvs, str_klv_size(buf), key, buf),
+ xe_guc_klv_encode_string(klvs, avail, key, buf));
+ }
+
+ /* don't crash if already failed */
+ KUNIT_EXPECT_PTR_EQ(test, ERR_PTR(-EROFS),
+ xe_guc_klv_encode_string(ERR_PTR(-EROFS), avail, key, ""));
+
+ /* too long string, must fail */
+ memset(buf, 'X', longest_str + 1);
+ buf[longest_str + 1] = '\0';
+ KUNIT_EXPECT_LT(test, longest_str, strlen(buf));
+ KUNIT_EXPECT_PTR_EQ(test, ERR_PTR(-E2BIG),
+ xe_guc_klv_encode_string(klvs, avail, key, buf));
+
+ /* longest string, should pass */
+ buf[longest_str] = '\0';
+ KUNIT_EXPECT_EQ(test, longest_str, strlen(buf));
+ KUNIT_EXPECT_PTR_EQ(test, klvs + str_klv_size(buf),
+ xe_guc_klv_encode_string(klvs, avail, key, buf));
+}
+
static struct kunit_case guc_klv_helpers_test_cases[] = {
KUNIT_CASE(test_count),
KUNIT_CASE(test_encode_u32),
KUNIT_CASE(test_encode_u64),
+ KUNIT_CASE(test_encode_string),
{}
};
--
2.47.1
^ permalink raw reply related [flat|nested] 37+ messages in thread
* [PATCH v2 10/13] drm/xe/tests: Add object encoding helper test
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (8 preceding siblings ...)
2026-07-07 22:08 ` [PATCH v2 09/13] drm/xe/tests: Add string encoding helper test Michal Wajdeczko
@ 2026-07-07 22:08 ` Michal Wajdeczko
2026-07-10 19:59 ` [PATCH v3 " Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 11/13] drm/xe/tests: Add GuC KLV printer test Michal Wajdeczko
` (18 subsequent siblings)
28 siblings, 1 reply; 37+ messages in thread
From: Michal Wajdeczko @ 2026-07-07 22:08 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Michał Winiarski
We will soon be encoding complex objects as KLVs using our helper
function. Add few simple tests to make sure this helper function
works as expected.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michał Winiarski <michal.winiarski@intel.com>
---
v2: add more negative tests (me)
---
.../drm/xe/tests/xe_guc_klv_helpers_kunit.c | 220 ++++++++++++++++++
1 file changed, 220 insertions(+)
diff --git a/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c b/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c
index a0d6b72d45f3..196e03fa5a1f 100644
--- a/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c
+++ b/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c
@@ -7,6 +7,7 @@
#include <kunit/test-bug.h>
#define TEST_KEY (GUC_KLV_RESERVED_RANGE_START + 0x3de)
+#define TEST_GROUP_KEY (GUC_KLV_RESERVED_RANGE_START + 0x3f0)
#define TEST_PAD 0xdeadbeef
static void test_count(struct kunit *test)
@@ -167,11 +168,230 @@ static void test_encode_string(struct kunit *test)
xe_guc_klv_encode_string(klvs, avail, key, buf));
}
+struct some_object {
+ u32 value1;
+ u64 value2;
+} __packed;
+
+static u32 *obj_raw_encoder(u32 *klvs, u32 avail, const void *arg)
+{
+ const struct some_object *obj = arg;
+ size_t sz = sizeof(*obj);
+ u32 dwords = to_num_dwords(sz);
+
+ if (IS_ERR(klvs))
+ return klvs;
+ if (dwords > avail)
+ return ERR_PTR(-ENOSPC);
+ memcpy(klvs, obj, sz);
+ return klvs + dwords;
+}
+
+static u32 *obj_klv_encoder(u32 *klvs, u32 avail, const void *arg)
+{
+ const struct some_object *obj = arg;
+ u32 *end = klvs + avail;
+
+ klvs = xe_guc_klv_encode_u32(klvs, end - klvs, TEST_KEY + 1, obj->value1);
+ klvs = xe_guc_klv_encode_u64(klvs, end - klvs, TEST_KEY + 2, obj->value2);
+ return klvs;
+}
+
+static u32 *obj_nested_encoder(u32 *klvs, u32 avail, const void *arg)
+{
+ u32 *end = klvs + avail;
+
+ klvs = xe_guc_klv_encode_object(klvs, end - klvs, TEST_GROUP_KEY + 1,
+ arg, obj_klv_encoder);
+ klvs = xe_guc_klv_encode_object(klvs, end - klvs, TEST_GROUP_KEY + 2,
+ arg, obj_klv_encoder);
+ return klvs;
+}
+
+static void test_encode_object_raw(struct kunit *test)
+{
+ const struct some_object obj = {
+ .value1 = 0xdead1234,
+ .value2 = 0xdead87654321dead,
+ };
+ u32 payload = to_num_dwords(sizeof(obj));
+ u32 *err = ERR_PTR(-ENOSPC);
+ u16 key = TEST_KEY;
+ u32 klvs[16];
+ u32 n;
+
+ /* too small, must fail */
+ for (n = 0; n < GUC_KLV_LEN_MIN + payload; n++) {
+ memset32(klvs, TEST_PAD, ARRAY_SIZE(klvs));
+ KUNIT_EXPECT_PTR_EQ_MSG(test, ERR_PTR(-ENOSPC),
+ xe_guc_klv_encode_object(klvs, n, key, &obj,
+ obj_raw_encoder),
+ "buf size=%u dwords", n);
+ }
+
+ /* must pass */
+ memset32(klvs, TEST_PAD, ARRAY_SIZE(klvs));
+ KUNIT_ASSERT_NOT_ERR_OR_NULL(test,
+ xe_guc_klv_encode_object(klvs, GUC_KLV_LEN_MIN + payload,
+ key, &obj, obj_raw_encoder));
+ KUNIT_EXPECT_EQ(test, klvs[0], PREP_GUC_KLV(key, payload));
+ KUNIT_EXPECT_MEMEQ(test, &klvs[1], &obj, sizeof(obj));
+
+ /* already failed, must fail */
+ KUNIT_ASSERT_PTR_EQ(test, err,
+ xe_guc_klv_encode_object(err, ARRAY_SIZE(klvs), key,
+ &obj, obj_raw_encoder));
+}
+
+static void test_encode_object_klv(struct kunit *test)
+{
+ const struct some_object obj = {
+ .value1 = 0xdead1234,
+ .value2 = 0xdead87654321dead,
+ };
+ u16 key = TEST_GROUP_KEY;
+ u32 payload = 0;
+ u32 klvs[16];
+ u32 n;
+
+ payload += GUC_KLV_LEN_MIN + to_num_dwords(sizeof(obj.value1));
+ payload += GUC_KLV_LEN_MIN + to_num_dwords(sizeof(obj.value2));
+
+ /* too small, must fail */
+ for (n = 0; n < GUC_KLV_LEN_MIN + payload; n++) {
+ memset32(klvs, TEST_PAD, ARRAY_SIZE(klvs));
+ KUNIT_EXPECT_PTR_EQ_MSG(test, ERR_PTR(-ENOSPC),
+ xe_guc_klv_encode_object(klvs, n, key, &obj,
+ obj_klv_encoder),
+ "buf size=%u dwords", n);
+ }
+
+ /* must pass */
+ memset32(klvs, TEST_PAD, ARRAY_SIZE(klvs));
+ KUNIT_ASSERT_NOT_ERR_OR_NULL(test,
+ xe_guc_klv_encode_object(klvs, GUC_KLV_LEN_MIN + payload,
+ key, &obj, obj_klv_encoder));
+ KUNIT_EXPECT_EQ(test, klvs[0], PREP_GUC_KLV(key, payload));
+ KUNIT_EXPECT_EQ(test, klvs[1], PREP_GUC_KLV(TEST_KEY + 1, 1));
+ KUNIT_EXPECT_EQ(test, klvs[2], obj.value1);
+ KUNIT_EXPECT_EQ(test, klvs[3], PREP_GUC_KLV(TEST_KEY + 2, 2));
+ KUNIT_EXPECT_EQ(test, klvs[4], lower_32_bits(obj.value2));
+ KUNIT_EXPECT_EQ(test, klvs[5], upper_32_bits(obj.value2));
+ KUNIT_EXPECT_EQ(test, klvs[6], TEST_PAD);
+}
+
+static void test_encode_object_nested(struct kunit *test)
+{
+ const struct some_object obj = {
+ .value1 = 0xdead1234,
+ .value2 = 0xdead87654321dead,
+ };
+ u16 key = TEST_GROUP_KEY;
+ u32 payload = 0;
+ u32 klvs[16];
+ u32 n;
+
+ payload += GUC_KLV_LEN_MIN;
+ payload += GUC_KLV_LEN_MIN + to_num_dwords(sizeof(obj.value1));
+ payload += GUC_KLV_LEN_MIN + to_num_dwords(sizeof(obj.value2));
+ payload *= 2;
+
+ /* too small, must fail */
+ for (n = 0; n < GUC_KLV_LEN_MIN + payload; n++) {
+ memset32(klvs, TEST_PAD, ARRAY_SIZE(klvs));
+ KUNIT_EXPECT_PTR_EQ_MSG(test, ERR_PTR(-ENOSPC),
+ xe_guc_klv_encode_object(klvs, n, key, &obj,
+ obj_nested_encoder),
+ "buf size=%u dwords", n);
+ }
+
+ /* must pass */
+ memset32(klvs, TEST_PAD, ARRAY_SIZE(klvs));
+ KUNIT_ASSERT_NOT_ERR_OR_NULL(test,
+ xe_guc_klv_encode_object(klvs, GUC_KLV_LEN_MIN + payload,
+ key, &obj, obj_nested_encoder));
+ KUNIT_EXPECT_EQ(test, klvs[0], PREP_GUC_KLV(key, payload));
+ KUNIT_EXPECT_EQ(test, klvs[1], PREP_GUC_KLV(TEST_GROUP_KEY + 1, 5));
+ KUNIT_EXPECT_EQ(test, klvs[2], PREP_GUC_KLV(TEST_KEY + 1, 1));
+ KUNIT_EXPECT_EQ(test, klvs[3], obj.value1);
+ KUNIT_EXPECT_EQ(test, klvs[4], PREP_GUC_KLV(TEST_KEY + 2, 2));
+ KUNIT_EXPECT_EQ(test, klvs[5], lower_32_bits(obj.value2));
+ KUNIT_EXPECT_EQ(test, klvs[6], upper_32_bits(obj.value2));
+ KUNIT_EXPECT_EQ(test, klvs[7], PREP_GUC_KLV(TEST_GROUP_KEY + 2, 5));
+ KUNIT_EXPECT_EQ(test, klvs[8], PREP_GUC_KLV(TEST_KEY + 1, 1));
+ KUNIT_EXPECT_EQ(test, klvs[9], obj.value1);
+ KUNIT_EXPECT_EQ(test, klvs[10], PREP_GUC_KLV(TEST_KEY + 2, 2));
+ KUNIT_EXPECT_EQ(test, klvs[11], lower_32_bits(obj.value2));
+ KUNIT_EXPECT_EQ(test, klvs[12], upper_32_bits(obj.value2));
+ KUNIT_EXPECT_EQ(test, klvs[13], TEST_PAD);
+}
+
+static u32 *obj_echo_encoder(u32 *klvs, u32 avail, const void *arg)
+{
+ return ERR_CAST(arg);
+}
+
+static void test_encode_object_basic(struct kunit *test)
+{
+ u32 longest = GUC_KLV_LEN_MIN + FIELD_MAX(GUC_KLV_0_LEN);
+ u32 avail = GUC_KLV_LEN_MIN + longest;
+ u16 key = TEST_GROUP_KEY;
+ u32 *klvs;
+
+ klvs = kunit_kcalloc(test, avail, sizeof(u32), GFP_KERNEL);
+ KUNIT_ASSERT_NOT_ERR_OR_NULL(test, klvs);
+
+ /* smallest */
+ KUNIT_EXPECT_PTR_EQ(test, klvs + GUC_KLV_LEN_MIN,
+ xe_guc_klv_encode_object(klvs, avail, key,
+ klvs + GUC_KLV_LEN_MIN,
+ obj_echo_encoder));
+ /* largest */
+ KUNIT_EXPECT_PTR_EQ(test, klvs + longest,
+ xe_guc_klv_encode_object(klvs, avail, key,
+ klvs + longest,
+ obj_echo_encoder));
+ /* already failed */
+ KUNIT_EXPECT_PTR_EQ(test, ERR_PTR(-EROFS),
+ xe_guc_klv_encode_object(ERR_PTR(-EROFS), avail, key,
+ klvs + GUC_KLV_LEN_MIN,
+ obj_echo_encoder));
+ /* encoding error */
+ KUNIT_EXPECT_PTR_EQ(test, ERR_PTR(-EUCLEAN),
+ xe_guc_klv_encode_object(klvs, avail, key,
+ ERR_PTR(-EUCLEAN),
+ obj_echo_encoder));
+ /* no space */
+ KUNIT_EXPECT_PTR_EQ(test, ERR_PTR(-ENOSPC),
+ xe_guc_klv_encode_object(klvs, 0, key,
+ klvs + GUC_KLV_LEN_MIN,
+ obj_echo_encoder));
+ /* faulty encoder */
+ kunit_warning_suppress(test) {
+ KUNIT_EXPECT_PTR_EQ(test, ERR_PTR(-EPIPE),
+ xe_guc_klv_encode_object(klvs, avail, key,
+ klvs - GUC_KLV_LEN_MIN,
+ obj_echo_encoder));
+ KUNIT_EXPECT_SUPPRESSED_WARNING_COUNT(test, 1);
+ }
+ kunit_warning_suppress(test) {
+ KUNIT_EXPECT_PTR_EQ(test, ERR_PTR(-EFBIG),
+ xe_guc_klv_encode_object(klvs, avail, key,
+ klvs + longest + 1,
+ obj_echo_encoder));
+ KUNIT_EXPECT_SUPPRESSED_WARNING_COUNT(test, 1);
+ }
+}
+
static struct kunit_case guc_klv_helpers_test_cases[] = {
KUNIT_CASE(test_count),
KUNIT_CASE(test_encode_u32),
KUNIT_CASE(test_encode_u64),
KUNIT_CASE(test_encode_string),
+ KUNIT_CASE(test_encode_object_raw),
+ KUNIT_CASE(test_encode_object_klv),
+ KUNIT_CASE(test_encode_object_nested),
+ KUNIT_CASE(test_encode_object_basic),
{}
};
--
2.47.1
^ permalink raw reply related [flat|nested] 37+ messages in thread
* [PATCH v2 11/13] drm/xe/tests: Add GuC KLV printer test
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (9 preceding siblings ...)
2026-07-07 22:08 ` [PATCH v2 10/13] drm/xe/tests: Add object " Michal Wajdeczko
@ 2026-07-07 22:08 ` Michal Wajdeczko
2026-07-11 7:36 ` [PATCH v3 " Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 12/13] drm/xe/tests: Add migration packet test Michal Wajdeczko
` (17 subsequent siblings)
28 siblings, 1 reply; 37+ messages in thread
From: Michal Wajdeczko @ 2026-07-07 22:08 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Michał Winiarski
For completeness, add a simple test to exercise the KLV printer
to make sure it doesn't crash at least.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michał Winiarski <michal.winiarski@intel.com>
---
.../drm/xe/tests/xe_guc_klv_helpers_kunit.c | 41 +++++++++++++++++++
1 file changed, 41 insertions(+)
diff --git a/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c b/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c
index 196e03fa5a1f..e221a00c3886 100644
--- a/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c
+++ b/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c
@@ -10,6 +10,11 @@
#define TEST_GROUP_KEY (GUC_KLV_RESERVED_RANGE_START + 0x3f0)
#define TEST_PAD 0xdeadbeef
+static bool fake_is_group_key(u16 key)
+{
+ return is_reserved_key(key) && key >= TEST_GROUP_KEY;
+}
+
static void test_count(struct kunit *test)
{
u32 value = 0x12345678;
@@ -383,6 +388,41 @@ static void test_encode_object_basic(struct kunit *test)
}
}
+static void __drm_printfn_kunit(struct drm_printer *p, struct va_format *vaf)
+{
+ struct kunit *test = p->arg;
+
+ kunit_info(test, "%pV", vaf);
+}
+
+static struct drm_printer drm_kunit_printer(void)
+{
+ struct drm_printer p = {
+ .printfn = __drm_printfn_kunit,
+ .arg = kunit_get_current_test(),
+ };
+ return p;
+}
+
+static void test_print(struct kunit *test)
+{
+ struct drm_printer p = drm_kunit_printer();
+ u32 zeros[] = { 0, 0, 0, /* padding */ };
+ u32 klvs[] = {
+ PREP_GUC_KLV(GUC_KLV_OPT_IN_FEATURE_EXT_CAT_ERR_TYPE_KEY, 0),
+ PREP_GUC_KLV(GUC_KLV_VF_CFG_NUM_CONTEXTS_KEY, 1), 1234,
+ PREP_GUC_KLV(GUC_KLV_VF_CFG_GGTT_SIZE_KEY, 2), 0x4000, 0x0123,
+ PREP_GUC_KLV(TEST_KEY, 3), 1, 2, 3,
+ PREP_GUC_KLV(TEST_GROUP_KEY, 5),
+ PREP_GUC_KLV(TEST_KEY + 1, 1), 1,
+ PREP_GUC_KLV(TEST_KEY + 2, 2), 1, 2,
+ };
+
+ kunit_activate_static_stub(test, is_group_key, fake_is_group_key);
+ xe_guc_klv_print(zeros, ARRAY_SIZE(zeros), &p);
+ xe_guc_klv_print(klvs, ARRAY_SIZE(klvs), &p);
+}
+
static struct kunit_case guc_klv_helpers_test_cases[] = {
KUNIT_CASE(test_count),
KUNIT_CASE(test_encode_u32),
@@ -392,6 +432,7 @@ static struct kunit_case guc_klv_helpers_test_cases[] = {
KUNIT_CASE(test_encode_object_klv),
KUNIT_CASE(test_encode_object_nested),
KUNIT_CASE(test_encode_object_basic),
+ KUNIT_CASE(test_print),
{}
};
--
2.47.1
^ permalink raw reply related [flat|nested] 37+ messages in thread
* [PATCH v2 12/13] drm/xe/tests: Add migration packet test
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (10 preceding siblings ...)
2026-07-07 22:08 ` [PATCH v2 11/13] drm/xe/tests: Add GuC KLV printer test Michal Wajdeczko
@ 2026-07-07 22:08 ` Michal Wajdeczko
2026-07-08 18:09 ` [PATCH v3 " Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 13/13] drm/xe/pf: Handle migration descriptor using KLV helpers Michal Wajdeczko
` (16 subsequent siblings)
28 siblings, 1 reply; 37+ messages in thread
From: Michal Wajdeczko @ 2026-07-07 22:08 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Michał Winiarski
One of our migration data packet (descriptor) is based on the KLV
encoding. Add a simple descriptor initialization test, as we plan
to use new KLV helper functions there.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michał Winiarski <michal.winiarski@intel.com>
---
v2: avoid KUNIT_ASSERT under mutex (Sashiko/Michal)
---
.../gpu/drm/xe/tests/xe_sriov_packet_kunit.c | 88 +++++++++++++++++++
drivers/gpu/drm/xe/xe_sriov_packet.c | 4 +
2 files changed, 92 insertions(+)
create mode 100644 drivers/gpu/drm/xe/tests/xe_sriov_packet_kunit.c
diff --git a/drivers/gpu/drm/xe/tests/xe_sriov_packet_kunit.c b/drivers/gpu/drm/xe/tests/xe_sriov_packet_kunit.c
new file mode 100644
index 000000000000..8dcf5e9d3ad2
--- /dev/null
+++ b/drivers/gpu/drm/xe/tests/xe_sriov_packet_kunit.c
@@ -0,0 +1,88 @@
+// SPDX-License-Identifier: GPL-2.0 AND MIT
+/*
+ * Copyright © 2026 Intel Corporation
+ */
+
+#include <kunit/test.h>
+#include <kunit/test-bug.h>
+
+#include "xe_device.h"
+#include "xe_guc_klv_helpers.h"
+#include "xe_kunit_helpers.h"
+#include "xe_pci_test.h"
+
+#define TEST_VF VFID(1)
+
+static int sriov_packet_test_init(struct kunit *test)
+{
+ struct xe_pci_fake_data fake = {
+ .sriov_mode = XE_SRIOV_MODE_PF,
+ .platform = XE_PANTHERLAKE, /* we need MEMIRQ */
+ .subplatform = XE_SUBPLATFORM_NONE,
+ .graphics_verx100 = 3000,
+ .media_verx100 = 3000,
+ };
+ struct xe_device *xe;
+
+ test->priv = &fake;
+ xe_kunit_helper_xe_device_test_init(test);
+ xe = test->priv;
+
+ /* pretend we can support at least VF1 */
+ xe->sriov.pf.device_total_vfs = 1;
+ xe->sriov.pf.driver_max_vfs = 1;
+
+ KUNIT_ASSERT_EQ(test, 0, xe_sriov_init(xe));
+ KUNIT_ASSERT_TRUE(test, xe_sriov_pf_migration_supported(xe));
+
+ return 0;
+}
+
+static void test_descriptor_init(struct kunit *test)
+{
+ struct xe_device *xe = test->priv;
+ struct xe_sriov_packet **desc;
+
+ /* note: with lock held we should avoid KUNIT_ASSERT() */
+ guard(mutex)(pf_migration_mutex(xe, TEST_VF));
+
+ KUNIT_EXPECT_EQ(test, 0, pf_descriptor_init(xe, TEST_VF));
+ desc = pf_pick_descriptor(xe, TEST_VF);
+ KUNIT_EXPECT_NOT_ERR_OR_NULL(test, *desc);
+ if (!*desc)
+ return;
+ KUNIT_EXPECT_NE(test, (*desc)->hdr.version, 0);
+ KUNIT_EXPECT_EQ(test, (*desc)->hdr.version, XE_SRIOV_PACKET_SUPPORTED_VERSION);
+ KUNIT_EXPECT_EQ(test, (*desc)->hdr.type, XE_SRIOV_PACKET_TYPE_DESCRIPTOR);
+ KUNIT_EXPECT_NE(test, (*desc)->hdr.size, 0);
+ KUNIT_EXPECT_NOT_ERR_OR_NULL(test, (*desc)->vaddr);
+ if (!(*desc)->vaddr)
+ return;
+ KUNIT_EXPECT_EQ(test, 0, xe_sriov_packet_process_descriptor(xe, TEST_VF, *desc));
+
+ switch ((*desc)->hdr.version) {
+ case 1:
+ /* v1 is KLV based */
+ KUNIT_EXPECT_TRUE(test, IS_ALIGNED((*desc)->hdr.size, sizeof(u32)));
+ /* v1 has at least DEVID and REVID KLVs */
+ KUNIT_EXPECT_LE(test, 2,
+ xe_guc_klv_count((*desc)->vaddr,
+ (*desc)->hdr.size / sizeof(u32)));
+ break;
+ default:
+ kunit_skip(test, "missing test code for version %u\n", (*desc)->hdr.version);
+ }
+}
+
+static struct kunit_case sriov_packet_test_cases[] = {
+ KUNIT_CASE(test_descriptor_init),
+ {}
+};
+
+static struct kunit_suite sriov_packet_suite = {
+ .name = "sriov_packet",
+ .test_cases = sriov_packet_test_cases,
+ .init = sriov_packet_test_init,
+};
+
+kunit_test_suite(sriov_packet_suite);
diff --git a/drivers/gpu/drm/xe/xe_sriov_packet.c b/drivers/gpu/drm/xe/xe_sriov_packet.c
index e581e8e6c1d1..558a3697d639 100644
--- a/drivers/gpu/drm/xe/xe_sriov_packet.c
+++ b/drivers/gpu/drm/xe/xe_sriov_packet.c
@@ -516,3 +516,7 @@ int xe_sriov_packet_save_init(struct xe_device *xe, unsigned int vfid)
return 0;
}
+
+#if IS_BUILTIN(CONFIG_DRM_XE_KUNIT_TEST)
+#include "tests/xe_sriov_packet_kunit.c"
+#endif
--
2.47.1
^ permalink raw reply related [flat|nested] 37+ messages in thread
* [PATCH v2 13/13] drm/xe/pf: Handle migration descriptor using KLV helpers
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (11 preceding siblings ...)
2026-07-07 22:08 ` [PATCH v2 12/13] drm/xe/tests: Add migration packet test Michal Wajdeczko
@ 2026-07-07 22:08 ` Michal Wajdeczko
2026-07-07 22:16 ` ✗ CI.checkpatch: warning for drm/xe: Add and use more KLV helpers (rev2) Patchwork
` (15 subsequent siblings)
28 siblings, 0 replies; 37+ messages in thread
From: Michal Wajdeczko @ 2026-07-07 22:08 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Michał Winiarski
As we plan to add more KLVs to the migration descriptor packet,
to simplify such extensions and avoid coding errors, start using
our KLV helpers for packet preparing and parsing.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michał Winiarski <michal.winiarski@intel.com>
---
drivers/gpu/drm/xe/xe_sriov_packet.c | 106 ++++++++++++++-------------
1 file changed, 56 insertions(+), 50 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_sriov_packet.c b/drivers/gpu/drm/xe/xe_sriov_packet.c
index 558a3697d639..e9ae9c9744ea 100644
--- a/drivers/gpu/drm/xe/xe_sriov_packet.c
+++ b/drivers/gpu/drm/xe/xe_sriov_packet.c
@@ -360,8 +360,7 @@ static int pf_descriptor_init(struct xe_device *xe, unsigned int vfid)
{
struct xe_sriov_packet **desc = pf_pick_descriptor(xe, vfid);
struct xe_sriov_packet *data;
- unsigned int len = 0;
- u32 *klvs;
+ u32 *klvs, *end;
int ret;
data = xe_sriov_packet_alloc(xe);
@@ -376,20 +375,55 @@ static int pf_descriptor_init(struct xe_device *xe, unsigned int vfid)
}
klvs = data->vaddr;
- klvs[len++] = PREP_GUC_KLV_CONST(MIGRATION_KLV_DEVICE_DEVID_KEY,
- MIGRATION_KLV_DEVICE_DEVID_LEN);
- klvs[len++] = xe->info.devid;
- klvs[len++] = PREP_GUC_KLV_CONST(MIGRATION_KLV_DEVICE_REVID_KEY,
- MIGRATION_KLV_DEVICE_REVID_LEN);
- klvs[len++] = xe->info.revid;
+ end = klvs + MIGRATION_DESCRIPTOR_DWORDS;
- xe_assert(xe, len == MIGRATION_DESCRIPTOR_DWORDS);
+ klvs = xe_guc_klv_encode_u32(klvs, end - klvs,
+ MIGRATION_KLV_DEVICE_DEVID_KEY,
+ xe->info.devid);
+ klvs = xe_guc_klv_encode_u32(klvs, end - klvs,
+ MIGRATION_KLV_DEVICE_REVID_KEY,
+ xe->info.revid);
+ xe_assert(xe, !IS_ERR(klvs));
+ xe_assert(xe, klvs == end);
*desc = data;
return 0;
}
+static int descriptor_decoder(void *arg, u16 key, u16 len, const u32 *value)
+{
+ struct xe_device *xe = arg;
+
+ xe_sriov_dbg_verbose(xe, "found KLV %#x %s\n", key, xe_guc_klv_key_to_string(key));
+
+ switch (key) {
+ case MIGRATION_KLV_DEVICE_DEVID_KEY:
+ if (*value != xe->info.devid) {
+ xe_sriov_warn(xe, "Aborting migration, devid mismatch %#06x!=%#06x\n",
+ *value, xe->info.devid);
+ return -ENODEV;
+ }
+ break;
+ case MIGRATION_KLV_DEVICE_REVID_KEY:
+ if (*value != xe->info.revid) {
+ xe_sriov_warn(xe, "Aborting migration, revid mismatch %#06x!=%#06x\n",
+ *value, xe->info.revid);
+ return -ENODEV;
+ }
+ break;
+ default:
+ if (IS_ENABLED(CONFIG_DRM_XE_DEBUG)) {
+ struct drm_printer p = xe_dbg_printer(xe);
+
+ xe_sriov_dbg(xe, "unexpected KLV %#x in descriptor!\n", key);
+ xe_guc_klv_print_one(key, len, value, &p);
+ }
+ return 0;
+ }
+ return 1;
+}
+
/**
* xe_sriov_packet_process_descriptor() - Process migration data descriptor packet.
* @xe: the &xe_device
@@ -406,6 +440,7 @@ int xe_sriov_packet_process_descriptor(struct xe_device *xe, unsigned int vfid,
{
u32 num_dwords = data->hdr.size / sizeof(u32);
u32 *klvs = data->vaddr;
+ int ret;
xe_assert(xe, data->hdr.type == XE_SRIOV_PACKET_TYPE_DESCRIPTOR);
@@ -415,47 +450,18 @@ int xe_sriov_packet_process_descriptor(struct xe_device *xe, unsigned int vfid,
return -EINVAL;
}
- while (num_dwords >= GUC_KLV_LEN_MIN) {
- u32 key = FIELD_GET(GUC_KLV_0_KEY, klvs[0]);
- u32 len = FIELD_GET(GUC_KLV_0_LEN, klvs[0]);
-
- klvs += GUC_KLV_LEN_MIN;
- num_dwords -= GUC_KLV_LEN_MIN;
-
- if (len > num_dwords) {
- xe_sriov_warn(xe, "Aborting migration, truncated KLV %#x, len %u\n",
- key, len);
- return -EINVAL;
- }
-
- switch (key) {
- case MIGRATION_KLV_DEVICE_DEVID_KEY:
- if (*klvs != xe->info.devid) {
- xe_sriov_warn(xe,
- "Aborting migration, devid mismatch %#06x!=%#06x\n",
- *klvs, xe->info.devid);
- return -ENODEV;
- }
- break;
- case MIGRATION_KLV_DEVICE_REVID_KEY:
- if (*klvs != xe->info.revid) {
- xe_sriov_warn(xe,
- "Aborting migration, revid mismatch %#06x!=%#06x\n",
- *klvs, xe->info.revid);
- return -ENODEV;
- }
- break;
- default:
- xe_sriov_dbg(xe,
- "Skipping unknown migration KLV %#x, len=%u\n",
- key, len);
- print_hex_dump_bytes("desc: ", DUMP_PREFIX_OFFSET, klvs,
- min(SZ_64, len * sizeof(u32)));
- break;
- }
-
- klvs += len;
- num_dwords -= len;
+ ret = xe_guc_klv_count(klvs, num_dwords);
+ if (ret < 0) {
+ xe_sriov_warn(xe, "Aborting migration, corrupted descriptor KLVs (%pe)\n",
+ ERR_PTR(ret));
+ return ret;
+ }
+
+ ret = xe_guc_klv_parser(klvs, num_dwords, xe, descriptor_decoder);
+ if (ret < 0) {
+ xe_sriov_warn(xe, "Aborting migration, descriptor parsing failed (%pe)\n",
+ ERR_PTR(ret));
+ return ret;
}
return 0;
--
2.47.1
^ permalink raw reply related [flat|nested] 37+ messages in thread
* ✗ CI.checkpatch: warning for drm/xe: Add and use more KLV helpers (rev2)
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (12 preceding siblings ...)
2026-07-07 22:08 ` [PATCH v2 13/13] drm/xe/pf: Handle migration descriptor using KLV helpers Michal Wajdeczko
@ 2026-07-07 22:16 ` Patchwork
2026-07-07 22:18 ` ✓ CI.KUnit: success " Patchwork
` (14 subsequent siblings)
28 siblings, 0 replies; 37+ messages in thread
From: Patchwork @ 2026-07-07 22:16 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Add and use more KLV helpers (rev2)
URL : https://patchwork.freedesktop.org/series/169511/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
061140b9bc586ae7f40abc1249c97e1cc72d1b9d
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 9c62dd1c6ea11995eeffd93febe453ff33888157
Author: Michal Wajdeczko <michal.wajdeczko@intel.com>
Date: Wed Jul 8 00:08:15 2026 +0200
drm/xe/pf: Handle migration descriptor using KLV helpers
As we plan to add more KLVs to the migration descriptor packet,
to simplify such extensions and avoid coding errors, start using
our KLV helpers for packet preparing and parsing.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michał Winiarski <michal.winiarski@intel.com>
+ /mt/dim checkpatch 2f03cb9f71badfa3418ecfc871655cca1bdb9155 drm-intel
aa37e5af08bd drm/xe/guc: Allow to print single KLV
7977f43bc37e drm/xe/guc: Prepare to print group KLVs
0fdce01a11b1 drm/xe/guc: Add basic KLV encoding helpers
8b54bdb07f78 drm/xe/guc: Add string KLV encoding helper
e70749343ef0 drm/xe/guc: Add object KLV encoding helper
e78187aa0fa8 drm/xe/guc: Add KLV parsing helper
a6fdda1f7de7 drm/xe/guc: Formalize Reserved KLVs
-:51: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#51:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 106 lines checked
785fb44dabb5 drm/xe/tests: Add GuC KLV helpers basic tests
-: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, 106 lines checked
6b6ad1752838 drm/xe/tests: Add string encoding helper test
4d74a9942014 drm/xe/tests: Add object encoding helper test
3e782f663a6f drm/xe/tests: Add GuC KLV printer test
c9588bca2fd5 drm/xe/tests: Add migration packet test
-:17: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#17:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 95 lines checked
9c62dd1c6ea1 drm/xe/pf: Handle migration descriptor using KLV helpers
^ permalink raw reply [flat|nested] 37+ messages in thread
* ✓ CI.KUnit: success for drm/xe: Add and use more KLV helpers (rev2)
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (13 preceding siblings ...)
2026-07-07 22:16 ` ✗ CI.checkpatch: warning for drm/xe: Add and use more KLV helpers (rev2) Patchwork
@ 2026-07-07 22:18 ` Patchwork
2026-07-07 23:04 ` ✓ Xe.CI.BAT: " Patchwork
` (13 subsequent siblings)
28 siblings, 0 replies; 37+ messages in thread
From: Patchwork @ 2026-07-07 22:18 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Add and use more KLV helpers (rev2)
URL : https://patchwork.freedesktop.org/series/169511/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[22:16:41] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:16:46] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
../drivers/gpu/drm/xe/xe_pt.c:1430:13: warning: ‘xe_pt_svm_userptr_notifier_lock’ defined but not used [-Wunused-function]
1430 | static void xe_pt_svm_userptr_notifier_lock(struct xe_vm *vm)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[22:17:18] Starting KUnit Kernel (1/1)...
[22:17:18] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:17:18] ================== guc_buf (11 subtests) ===================
[22:17:18] [PASSED] test_smallest
[22:17:18] [PASSED] test_largest
[22:17:18] [PASSED] test_granular
[22:17:18] [PASSED] test_unique
[22:17:18] [PASSED] test_overlap
[22:17:18] [PASSED] test_reusable
[22:17:18] [PASSED] test_too_big
[22:17:18] [PASSED] test_flush
[22:17:18] [PASSED] test_lookup
[22:17:18] [PASSED] test_data
[22:17:18] [PASSED] test_class
[22:17:18] ===================== [PASSED] guc_buf =====================
[22:17:18] =================== guc_dbm (7 subtests) ===================
[22:17:18] [PASSED] test_empty
[22:17:18] [PASSED] test_default
[22:17:18] ======================== test_size ========================
[22:17:18] [PASSED] 4
[22:17:18] [PASSED] 8
[22:17:18] [PASSED] 32
[22:17:18] [PASSED] 256
[22:17:18] ==================== [PASSED] test_size ====================
[22:17:18] ======================= test_reuse ========================
[22:17:18] [PASSED] 4
[22:17:18] [PASSED] 8
[22:17:18] [PASSED] 32
[22:17:18] [PASSED] 256
[22:17:18] =================== [PASSED] test_reuse ====================
[22:17:18] =================== test_range_overlap ====================
[22:17:18] [PASSED] 4
[22:17:18] [PASSED] 8
[22:17:18] [PASSED] 32
[22:17:18] [PASSED] 256
[22:17:18] =============== [PASSED] test_range_overlap ================
[22:17:18] =================== test_range_compact ====================
[22:17:18] [PASSED] 4
[22:17:18] [PASSED] 8
[22:17:18] [PASSED] 32
[22:17:18] [PASSED] 256
[22:17:18] =============== [PASSED] test_range_compact ================
[22:17:18] ==================== test_range_spare =====================
[22:17:18] [PASSED] 4
[22:17:18] [PASSED] 8
[22:17:18] [PASSED] 32
[22:17:18] [PASSED] 256
[22:17:18] ================ [PASSED] test_range_spare =================
[22:17:18] ===================== [PASSED] guc_dbm =====================
[22:17:18] =================== guc_idm (6 subtests) ===================
[22:17:18] [PASSED] bad_init
[22:17:18] [PASSED] no_init
[22:17:18] [PASSED] init_fini
[22:17:18] [PASSED] check_used
[22:17:18] [PASSED] check_quota
[22:17:18] [PASSED] check_all
[22:17:18] ===================== [PASSED] guc_idm =====================
[22:17:18] =============== guc_klv_helpers (9 subtests) ===============
[22:17:18] [PASSED] test_count
[22:17:18] [PASSED] test_encode_u32
[22:17:18] [PASSED] test_encode_u64
[22:17:18] [PASSED] test_encode_string
[22:17:18] [PASSED] test_encode_object_raw
[22:17:18] [PASSED] test_encode_object_klv
[22:17:18] [PASSED] test_encode_object_nested
[22:17:18] [PASSED] test_encode_object_basic
[22:17:18] [PASSED] test_print
[22:17:18] ================= [PASSED] guc_klv_helpers =================
[22:17:18] ================== no_relay (3 subtests) ===================
[22:17:18] [PASSED] xe_drops_guc2pf_if_not_ready
[22:17:18] [PASSED] xe_drops_guc2vf_if_not_ready
[22:17:18] [PASSED] xe_rejects_send_if_not_ready
[22:17:18] ==================== [PASSED] no_relay =====================
[22:17:18] ================== pf_relay (14 subtests) ==================
[22:17:18] [PASSED] pf_rejects_guc2pf_too_short
[22:17:18] [PASSED] pf_rejects_guc2pf_too_long
[22:17:18] [PASSED] pf_rejects_guc2pf_no_payload
[22:17:18] [PASSED] pf_fails_no_payload
[22:17:18] [PASSED] pf_fails_bad_origin
[22:17:18] [PASSED] pf_fails_bad_type
[22:17:18] [PASSED] pf_txn_reports_error
[22:17:18] [PASSED] pf_txn_sends_pf2guc
[22:17:18] [PASSED] pf_sends_pf2guc
[22:17:18] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[22:17:18] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[22:17:18] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[22:17:18] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[22:17:18] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[22:17:18] ==================== [PASSED] pf_relay =====================
[22:17:18] ================== vf_relay (3 subtests) ===================
[22:17:18] [PASSED] vf_rejects_guc2vf_too_short
[22:17:18] [PASSED] vf_rejects_guc2vf_too_long
[22:17:18] [PASSED] vf_rejects_guc2vf_no_payload
[22:17:18] ==================== [PASSED] vf_relay =====================
[22:17:18] ================ pf_gt_config (9 subtests) =================
[22:17:18] [PASSED] fair_contexts_1vf
[22:17:18] [PASSED] fair_doorbells_1vf
[22:17:18] [PASSED] fair_ggtt_1vf
[22:17:18] ====================== fair_vram_1vf ======================
[22:17:18] [PASSED] 3.50 GiB
[22:17:18] [PASSED] 11.5 GiB
[22:17:18] [PASSED] 15.5 GiB
[22:17:18] [PASSED] 31.5 GiB
[22:17:18] [PASSED] 63.5 GiB
[22:17:18] [PASSED] 1.91 GiB
[22:17:18] ================== [PASSED] fair_vram_1vf ==================
[22:17:18] ================ fair_vram_1vf_admin_only =================
[22:17:18] [PASSED] 3.50 GiB
[22:17:18] [PASSED] 11.5 GiB
[22:17:18] [PASSED] 15.5 GiB
[22:17:18] [PASSED] 31.5 GiB
[22:17:18] [PASSED] 63.5 GiB
[22:17:18] [PASSED] 1.91 GiB
[22:17:18] ============ [PASSED] fair_vram_1vf_admin_only =============
[22:17:18] ====================== fair_contexts ======================
[22:17:18] [PASSED] 1 VF
[22:17:18] [PASSED] 2 VFs
[22:17:18] [PASSED] 3 VFs
[22:17:18] [PASSED] 4 VFs
[22:17:18] [PASSED] 5 VFs
[22:17:18] [PASSED] 6 VFs
[22:17:18] [PASSED] 7 VFs
[22:17:18] [PASSED] 8 VFs
[22:17:18] [PASSED] 9 VFs
[22:17:18] [PASSED] 10 VFs
[22:17:18] [PASSED] 11 VFs
[22:17:18] [PASSED] 12 VFs
[22:17:18] [PASSED] 13 VFs
[22:17:18] [PASSED] 14 VFs
[22:17:18] [PASSED] 15 VFs
[22:17:18] [PASSED] 16 VFs
[22:17:18] [PASSED] 17 VFs
[22:17:18] [PASSED] 18 VFs
[22:17:18] [PASSED] 19 VFs
[22:17:18] [PASSED] 20 VFs
[22:17:18] [PASSED] 21 VFs
[22:17:18] [PASSED] 22 VFs
[22:17:18] [PASSED] 23 VFs
[22:17:18] [PASSED] 24 VFs
[22:17:18] [PASSED] 25 VFs
[22:17:18] [PASSED] 26 VFs
[22:17:18] [PASSED] 27 VFs
[22:17:18] [PASSED] 28 VFs
[22:17:18] [PASSED] 29 VFs
[22:17:18] [PASSED] 30 VFs
[22:17:18] [PASSED] 31 VFs
[22:17:18] [PASSED] 32 VFs
[22:17:18] [PASSED] 33 VFs
[22:17:18] [PASSED] 34 VFs
[22:17:18] [PASSED] 35 VFs
[22:17:18] [PASSED] 36 VFs
[22:17:18] [PASSED] 37 VFs
[22:17:18] [PASSED] 38 VFs
[22:17:18] [PASSED] 39 VFs
[22:17:18] [PASSED] 40 VFs
[22:17:18] [PASSED] 41 VFs
[22:17:18] [PASSED] 42 VFs
[22:17:18] [PASSED] 43 VFs
[22:17:18] [PASSED] 44 VFs
[22:17:18] [PASSED] 45 VFs
[22:17:18] [PASSED] 46 VFs
[22:17:18] [PASSED] 47 VFs
[22:17:18] [PASSED] 48 VFs
[22:17:18] [PASSED] 49 VFs
[22:17:18] [PASSED] 50 VFs
[22:17:18] [PASSED] 51 VFs
[22:17:18] [PASSED] 52 VFs
[22:17:18] [PASSED] 53 VFs
[22:17:18] [PASSED] 54 VFs
[22:17:18] [PASSED] 55 VFs
[22:17:18] [PASSED] 56 VFs
[22:17:18] [PASSED] 57 VFs
[22:17:18] [PASSED] 58 VFs
[22:17:18] [PASSED] 59 VFs
[22:17:18] [PASSED] 60 VFs
[22:17:18] [PASSED] 61 VFs
[22:17:18] [PASSED] 62 VFs
[22:17:18] [PASSED] 63 VFs
[22:17:18] ================== [PASSED] fair_contexts ==================
[22:17:18] ===================== fair_doorbells ======================
[22:17:18] [PASSED] 1 VF
[22:17:18] [PASSED] 2 VFs
[22:17:18] [PASSED] 3 VFs
[22:17:18] [PASSED] 4 VFs
[22:17:18] [PASSED] 5 VFs
[22:17:18] [PASSED] 6 VFs
[22:17:18] [PASSED] 7 VFs
[22:17:18] [PASSED] 8 VFs
[22:17:18] [PASSED] 9 VFs
[22:17:18] [PASSED] 10 VFs
[22:17:18] [PASSED] 11 VFs
[22:17:18] [PASSED] 12 VFs
[22:17:18] [PASSED] 13 VFs
[22:17:18] [PASSED] 14 VFs
[22:17:18] [PASSED] 15 VFs
[22:17:18] [PASSED] 16 VFs
[22:17:18] [PASSED] 17 VFs
[22:17:18] [PASSED] 18 VFs
[22:17:18] [PASSED] 19 VFs
[22:17:18] [PASSED] 20 VFs
[22:17:18] [PASSED] 21 VFs
[22:17:18] [PASSED] 22 VFs
[22:17:18] [PASSED] 23 VFs
[22:17:18] [PASSED] 24 VFs
[22:17:18] [PASSED] 25 VFs
[22:17:18] [PASSED] 26 VFs
[22:17:18] [PASSED] 27 VFs
[22:17:18] [PASSED] 28 VFs
[22:17:18] [PASSED] 29 VFs
[22:17:18] [PASSED] 30 VFs
[22:17:18] [PASSED] 31 VFs
[22:17:18] [PASSED] 32 VFs
[22:17:18] [PASSED] 33 VFs
[22:17:18] [PASSED] 34 VFs
[22:17:18] [PASSED] 35 VFs
[22:17:18] [PASSED] 36 VFs
[22:17:18] [PASSED] 37 VFs
[22:17:18] [PASSED] 38 VFs
[22:17:18] [PASSED] 39 VFs
[22:17:18] [PASSED] 40 VFs
[22:17:18] [PASSED] 41 VFs
[22:17:18] [PASSED] 42 VFs
[22:17:18] [PASSED] 43 VFs
[22:17:18] [PASSED] 44 VFs
[22:17:18] [PASSED] 45 VFs
[22:17:18] [PASSED] 46 VFs
[22:17:18] [PASSED] 47 VFs
[22:17:18] [PASSED] 48 VFs
[22:17:18] [PASSED] 49 VFs
[22:17:18] [PASSED] 50 VFs
[22:17:18] [PASSED] 51 VFs
[22:17:18] [PASSED] 52 VFs
[22:17:18] [PASSED] 53 VFs
[22:17:18] [PASSED] 54 VFs
[22:17:18] [PASSED] 55 VFs
[22:17:18] [PASSED] 56 VFs
[22:17:18] [PASSED] 57 VFs
[22:17:18] [PASSED] 58 VFs
[22:17:18] [PASSED] 59 VFs
[22:17:18] [PASSED] 60 VFs
[22:17:18] [PASSED] 61 VFs
[22:17:18] [PASSED] 62 VFs
[22:17:18] [PASSED] 63 VFs
[22:17:18] ================= [PASSED] fair_doorbells ==================
[22:17:18] ======================== fair_ggtt ========================
[22:17:18] [PASSED] 1 VF
[22:17:18] [PASSED] 2 VFs
[22:17:18] [PASSED] 3 VFs
[22:17:18] [PASSED] 4 VFs
[22:17:18] [PASSED] 5 VFs
[22:17:18] [PASSED] 6 VFs
[22:17:18] [PASSED] 7 VFs
[22:17:18] [PASSED] 8 VFs
[22:17:18] [PASSED] 9 VFs
[22:17:18] [PASSED] 10 VFs
[22:17:18] [PASSED] 11 VFs
[22:17:18] [PASSED] 12 VFs
[22:17:18] [PASSED] 13 VFs
[22:17:18] [PASSED] 14 VFs
[22:17:18] [PASSED] 15 VFs
[22:17:18] [PASSED] 16 VFs
[22:17:18] [PASSED] 17 VFs
[22:17:18] [PASSED] 18 VFs
[22:17:18] [PASSED] 19 VFs
[22:17:18] [PASSED] 20 VFs
[22:17:18] [PASSED] 21 VFs
[22:17:18] [PASSED] 22 VFs
[22:17:18] [PASSED] 23 VFs
[22:17:18] [PASSED] 24 VFs
[22:17:18] [PASSED] 25 VFs
[22:17:18] [PASSED] 26 VFs
[22:17:18] [PASSED] 27 VFs
[22:17:18] [PASSED] 28 VFs
[22:17:18] [PASSED] 29 VFs
[22:17:18] [PASSED] 30 VFs
[22:17:18] [PASSED] 31 VFs
[22:17:18] [PASSED] 32 VFs
[22:17:18] [PASSED] 33 VFs
[22:17:18] [PASSED] 34 VFs
[22:17:18] [PASSED] 35 VFs
[22:17:18] [PASSED] 36 VFs
[22:17:18] [PASSED] 37 VFs
[22:17:18] [PASSED] 38 VFs
[22:17:18] [PASSED] 39 VFs
[22:17:18] [PASSED] 40 VFs
[22:17:18] [PASSED] 41 VFs
[22:17:18] [PASSED] 42 VFs
[22:17:18] [PASSED] 43 VFs
[22:17:18] [PASSED] 44 VFs
[22:17:18] [PASSED] 45 VFs
[22:17:18] [PASSED] 46 VFs
[22:17:18] [PASSED] 47 VFs
[22:17:18] [PASSED] 48 VFs
[22:17:18] [PASSED] 49 VFs
[22:17:18] [PASSED] 50 VFs
[22:17:18] [PASSED] 51 VFs
[22:17:18] [PASSED] 52 VFs
[22:17:18] [PASSED] 53 VFs
[22:17:18] [PASSED] 54 VFs
[22:17:18] [PASSED] 55 VFs
[22:17:18] [PASSED] 56 VFs
[22:17:18] [PASSED] 57 VFs
[22:17:18] [PASSED] 58 VFs
[22:17:18] [PASSED] 59 VFs
[22:17:18] [PASSED] 60 VFs
[22:17:18] [PASSED] 61 VFs
[22:17:18] [PASSED] 62 VFs
[22:17:18] [PASSED] 63 VFs
[22:17:18] ==================== [PASSED] fair_ggtt ====================
[22:17:18] ======================== fair_vram ========================
[22:17:18] [PASSED] 1 VF
[22:17:18] [PASSED] 2 VFs
[22:17:18] [PASSED] 3 VFs
[22:17:18] [PASSED] 4 VFs
[22:17:18] [PASSED] 5 VFs
[22:17:18] [PASSED] 6 VFs
[22:17:18] [PASSED] 7 VFs
[22:17:18] [PASSED] 8 VFs
[22:17:18] [PASSED] 9 VFs
[22:17:18] [PASSED] 10 VFs
[22:17:18] [PASSED] 11 VFs
[22:17:18] [PASSED] 12 VFs
[22:17:18] [PASSED] 13 VFs
[22:17:18] [PASSED] 14 VFs
[22:17:18] [PASSED] 15 VFs
[22:17:18] [PASSED] 16 VFs
[22:17:18] [PASSED] 17 VFs
[22:17:18] [PASSED] 18 VFs
[22:17:18] [PASSED] 19 VFs
[22:17:18] [PASSED] 20 VFs
[22:17:18] [PASSED] 21 VFs
[22:17:18] [PASSED] 22 VFs
[22:17:18] [PASSED] 23 VFs
[22:17:18] [PASSED] 24 VFs
[22:17:18] [PASSED] 25 VFs
[22:17:18] [PASSED] 26 VFs
[22:17:18] [PASSED] 27 VFs
[22:17:18] [PASSED] 28 VFs
[22:17:18] [PASSED] 29 VFs
[22:17:18] [PASSED] 30 VFs
[22:17:18] [PASSED] 31 VFs
[22:17:18] [PASSED] 32 VFs
[22:17:18] [PASSED] 33 VFs
[22:17:18] [PASSED] 34 VFs
[22:17:18] [PASSED] 35 VFs
[22:17:18] [PASSED] 36 VFs
[22:17:18] [PASSED] 37 VFs
[22:17:18] [PASSED] 38 VFs
[22:17:18] [PASSED] 39 VFs
[22:17:18] [PASSED] 40 VFs
[22:17:18] [PASSED] 41 VFs
[22:17:18] [PASSED] 42 VFs
[22:17:18] [PASSED] 43 VFs
[22:17:18] [PASSED] 44 VFs
[22:17:18] [PASSED] 45 VFs
[22:17:18] [PASSED] 46 VFs
[22:17:18] [PASSED] 47 VFs
[22:17:18] [PASSED] 48 VFs
[22:17:18] [PASSED] 49 VFs
[22:17:18] [PASSED] 50 VFs
[22:17:18] [PASSED] 51 VFs
[22:17:18] [PASSED] 52 VFs
[22:17:18] [PASSED] 53 VFs
[22:17:18] [PASSED] 54 VFs
[22:17:18] [PASSED] 55 VFs
[22:17:18] [PASSED] 56 VFs
[22:17:18] [PASSED] 57 VFs
[22:17:18] [PASSED] 58 VFs
[22:17:18] [PASSED] 59 VFs
[22:17:18] [PASSED] 60 VFs
[22:17:18] [PASSED] 61 VFs
[22:17:18] [PASSED] 62 VFs
[22:17:18] [PASSED] 63 VFs
[22:17:18] ==================== [PASSED] fair_vram ====================
[22:17:18] ================== [PASSED] pf_gt_config ===================
[22:17:18] ===================== lmtt (1 subtest) =====================
[22:17:18] ======================== test_ops =========================
[22:17:18] [PASSED] 2-level
[22:17:18] [PASSED] multi-level
[22:17:18] ==================== [PASSED] test_ops =====================
[22:17:18] ====================== [PASSED] lmtt =======================
[22:17:18] ================= sriov_packet (1 subtest) =================
[22:17:18] [PASSED] test_descriptor_init
[22:17:18] ================== [PASSED] sriov_packet ===================
[22:17:18] ================= pf_service (11 subtests) =================
[22:17:18] [PASSED] pf_negotiate_any
[22:17:18] [PASSED] pf_negotiate_base_match
[22:17:18] [PASSED] pf_negotiate_base_newer
[22:17:18] [PASSED] pf_negotiate_base_next
[22:17:18] [SKIPPED] pf_negotiate_base_older (no older minor)
[22:17:18] [PASSED] pf_negotiate_base_prev
[22:17:18] [PASSED] pf_negotiate_latest_match
[22:17:18] [PASSED] pf_negotiate_latest_newer
[22:17:18] [PASSED] pf_negotiate_latest_next
[22:17:18] [SKIPPED] pf_negotiate_latest_older (no older minor)
[22:17:18] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[22:17:18] =================== [PASSED] pf_service ====================
[22:17:18] ================= xe_guc_g2g (2 subtests) ==================
[22:17:18] ============== xe_live_guc_g2g_kunit_default ==============
[22:17:18] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[22:17:18] ============== xe_live_guc_g2g_kunit_allmem ===============
[22:17:18] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[22:17:18] =================== [SKIPPED] xe_guc_g2g ===================
[22:17:18] =================== xe_mocs (2 subtests) ===================
[22:17:18] ================ xe_live_mocs_kernel_kunit ================
[22:17:18] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[22:17:18] ================ xe_live_mocs_reset_kunit =================
[22:17:18] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[22:17:18] ==================== [SKIPPED] xe_mocs =====================
[22:17:18] ================= xe_migrate (2 subtests) ==================
[22:17:18] ================= xe_migrate_sanity_kunit =================
[22:17:18] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[22:17:18] ================== xe_validate_ccs_kunit ==================
[22:17:18] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[22:17:18] =================== [SKIPPED] xe_migrate ===================
[22:17:18] ================== xe_dma_buf (1 subtest) ==================
[22:17:18] ==================== xe_dma_buf_kunit =====================
[22:17:18] ================ [SKIPPED] xe_dma_buf_kunit ================
[22:17:18] =================== [SKIPPED] xe_dma_buf ===================
[22:17:18] ================= xe_bo_shrink (1 subtest) =================
[22:17:18] =================== xe_bo_shrink_kunit ====================
[22:17:18] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[22:17:18] ================== [SKIPPED] xe_bo_shrink ==================
[22:17:18] ==================== xe_bo (2 subtests) ====================
[22:17:18] ================== xe_ccs_migrate_kunit ===================
[22:17:18] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[22:17:18] ==================== xe_bo_evict_kunit ====================
[22:17:18] =============== [SKIPPED] xe_bo_evict_kunit ================
[22:17:18] ===================== [SKIPPED] xe_bo ======================
[22:17:18] ==================== args (13 subtests) ====================
[22:17:18] [PASSED] count_args_test
[22:17:18] [PASSED] call_args_example
[22:17:18] [PASSED] call_args_test
[22:17:18] [PASSED] drop_first_arg_example
[22:17:18] [PASSED] drop_first_arg_test
[22:17:18] [PASSED] first_arg_example
[22:17:18] [PASSED] first_arg_test
[22:17:18] [PASSED] last_arg_example
[22:17:18] [PASSED] last_arg_test
[22:17:18] [PASSED] pick_arg_example
[22:17:18] [PASSED] if_args_example
[22:17:18] [PASSED] if_args_test
[22:17:18] [PASSED] sep_comma_example
[22:17:18] ====================== [PASSED] args =======================
[22:17:18] =================== xe_pci (3 subtests) ====================
[22:17:18] ==================== check_graphics_ip ====================
[22:17:18] [PASSED] 12.00 Xe_LP
[22:17:18] [PASSED] 12.10 Xe_LP+
[22:17:18] [PASSED] 12.55 Xe_HPG
[22:17:18] [PASSED] 12.60 Xe_HPC
[22:17:18] [PASSED] 12.70 Xe_LPG
[22:17:18] [PASSED] 12.71 Xe_LPG
[22:17:18] [PASSED] 12.74 Xe_LPG+
[22:17:18] [PASSED] 20.01 Xe2_HPG
[22:17:18] [PASSED] 20.02 Xe2_HPG
[22:17:18] [PASSED] 20.04 Xe2_LPG
[22:17:18] [PASSED] 30.00 Xe3_LPG
[22:17:18] [PASSED] 30.01 Xe3_LPG
[22:17:18] [PASSED] 30.03 Xe3_LPG
[22:17:18] [PASSED] 30.04 Xe3_LPG
[22:17:18] [PASSED] 30.05 Xe3_LPG
[22:17:18] [PASSED] 35.10 Xe3p_LPG
[22:17:18] [PASSED] 35.11 Xe3p_XPC
[22:17:18] ================ [PASSED] check_graphics_ip ================
[22:17:18] ===================== check_media_ip ======================
[22:17:18] [PASSED] 12.00 Xe_M
[22:17:18] [PASSED] 12.55 Xe_HPM
[22:17:18] [PASSED] 13.00 Xe_LPM+
[22:17:18] [PASSED] 13.01 Xe2_HPM
[22:17:18] [PASSED] 20.00 Xe2_LPM
[22:17:18] [PASSED] 30.00 Xe3_LPM
[22:17:18] [PASSED] 30.02 Xe3_LPM
[22:17:18] [PASSED] 35.00 Xe3p_LPM
[22:17:18] [PASSED] 35.03 Xe3p_HPM
[22:17:18] ================= [PASSED] check_media_ip ==================
[22:17:18] =================== check_platform_desc ===================
[22:17:18] [PASSED] 0x9A60 (TIGERLAKE)
[22:17:18] [PASSED] 0x9A68 (TIGERLAKE)
[22:17:18] [PASSED] 0x9A70 (TIGERLAKE)
[22:17:18] [PASSED] 0x9A40 (TIGERLAKE)
[22:17:18] [PASSED] 0x9A49 (TIGERLAKE)
[22:17:18] [PASSED] 0x9A59 (TIGERLAKE)
[22:17:18] [PASSED] 0x9A78 (TIGERLAKE)
[22:17:18] [PASSED] 0x9AC0 (TIGERLAKE)
[22:17:18] [PASSED] 0x9AC9 (TIGERLAKE)
[22:17:18] [PASSED] 0x9AD9 (TIGERLAKE)
[22:17:18] [PASSED] 0x9AF8 (TIGERLAKE)
[22:17:18] [PASSED] 0x4C80 (ROCKETLAKE)
[22:17:18] [PASSED] 0x4C8A (ROCKETLAKE)
[22:17:18] [PASSED] 0x4C8B (ROCKETLAKE)
[22:17:18] [PASSED] 0x4C8C (ROCKETLAKE)
[22:17:18] [PASSED] 0x4C90 (ROCKETLAKE)
[22:17:18] [PASSED] 0x4C9A (ROCKETLAKE)
[22:17:18] [PASSED] 0x4680 (ALDERLAKE_S)
[22:17:18] [PASSED] 0x4682 (ALDERLAKE_S)
[22:17:18] [PASSED] 0x4688 (ALDERLAKE_S)
[22:17:18] [PASSED] 0x468A (ALDERLAKE_S)
[22:17:18] [PASSED] 0x468B (ALDERLAKE_S)
[22:17:18] [PASSED] 0x4690 (ALDERLAKE_S)
[22:17:18] [PASSED] 0x4692 (ALDERLAKE_S)
[22:17:18] [PASSED] 0x4693 (ALDERLAKE_S)
[22:17:18] [PASSED] 0x46A0 (ALDERLAKE_P)
[22:17:18] [PASSED] 0x46A1 (ALDERLAKE_P)
[22:17:18] [PASSED] 0x46A2 (ALDERLAKE_P)
[22:17:18] [PASSED] 0x46A3 (ALDERLAKE_P)
[22:17:18] [PASSED] 0x46A6 (ALDERLAKE_P)
[22:17:18] [PASSED] 0x46A8 (ALDERLAKE_P)
[22:17:18] [PASSED] 0x46AA (ALDERLAKE_P)
[22:17:18] [PASSED] 0x462A (ALDERLAKE_P)
[22:17:18] [PASSED] 0x4626 (ALDERLAKE_P)
[22:17:18] [PASSED] 0x4628 (ALDERLAKE_P)
[22:17:18] [PASSED] 0x46B0 (ALDERLAKE_P)
[22:17:18] [PASSED] 0x46B1 (ALDERLAKE_P)
[22:17:18] [PASSED] 0x46B2 (ALDERLAKE_P)
[22:17:18] [PASSED] 0x46B3 (ALDERLAKE_P)
[22:17:18] [PASSED] 0x46C0 (ALDERLAKE_P)
[22:17:18] [PASSED] 0x46C1 (ALDERLAKE_P)
[22:17:18] [PASSED] 0x46C2 (ALDERLAKE_P)
[22:17:18] [PASSED] 0x46C3 (ALDERLAKE_P)
[22:17:18] [PASSED] 0x46D0 (ALDERLAKE_N)
[22:17:18] [PASSED] 0x46D1 (ALDERLAKE_N)
[22:17:18] [PASSED] 0x46D2 (ALDERLAKE_N)
[22:17:18] [PASSED] 0x46D3 (ALDERLAKE_N)
[22:17:18] [PASSED] 0x46D4 (ALDERLAKE_N)
[22:17:18] [PASSED] 0xA721 (ALDERLAKE_P)
[22:17:18] [PASSED] 0xA7A1 (ALDERLAKE_P)
[22:17:18] [PASSED] 0xA7A9 (ALDERLAKE_P)
[22:17:18] [PASSED] 0xA7AC (ALDERLAKE_P)
[22:17:18] [PASSED] 0xA7AD (ALDERLAKE_P)
[22:17:18] [PASSED] 0xA720 (ALDERLAKE_P)
[22:17:18] [PASSED] 0xA7A0 (ALDERLAKE_P)
[22:17:18] [PASSED] 0xA7A8 (ALDERLAKE_P)
[22:17:18] [PASSED] 0xA7AA (ALDERLAKE_P)
[22:17:18] [PASSED] 0xA7AB (ALDERLAKE_P)
[22:17:18] [PASSED] 0xA780 (ALDERLAKE_S)
[22:17:18] [PASSED] 0xA781 (ALDERLAKE_S)
[22:17:18] [PASSED] 0xA782 (ALDERLAKE_S)
[22:17:18] [PASSED] 0xA783 (ALDERLAKE_S)
[22:17:18] [PASSED] 0xA788 (ALDERLAKE_S)
[22:17:18] [PASSED] 0xA789 (ALDERLAKE_S)
[22:17:18] [PASSED] 0xA78A (ALDERLAKE_S)
[22:17:18] [PASSED] 0xA78B (ALDERLAKE_S)
[22:17:18] [PASSED] 0x4905 (DG1)
[22:17:18] [PASSED] 0x4906 (DG1)
[22:17:18] [PASSED] 0x4907 (DG1)
[22:17:18] [PASSED] 0x4908 (DG1)
[22:17:18] [PASSED] 0x4909 (DG1)
[22:17:18] [PASSED] 0x56C0 (DG2)
[22:17:18] [PASSED] 0x56C2 (DG2)
[22:17:18] [PASSED] 0x56C1 (DG2)
[22:17:18] [PASSED] 0x7D51 (METEORLAKE)
[22:17:18] [PASSED] 0x7DD1 (METEORLAKE)
[22:17:18] [PASSED] 0x7D41 (METEORLAKE)
[22:17:18] [PASSED] 0x7D67 (METEORLAKE)
[22:17:18] [PASSED] 0xB640 (METEORLAKE)
[22:17:18] [PASSED] 0x56A0 (DG2)
[22:17:18] [PASSED] 0x56A1 (DG2)
[22:17:18] [PASSED] 0x56A2 (DG2)
[22:17:18] [PASSED] 0x56BE (DG2)
[22:17:18] [PASSED] 0x56BF (DG2)
[22:17:18] [PASSED] 0x5690 (DG2)
[22:17:18] [PASSED] 0x5691 (DG2)
[22:17:18] [PASSED] 0x5692 (DG2)
[22:17:18] [PASSED] 0x56A5 (DG2)
[22:17:18] [PASSED] 0x56A6 (DG2)
[22:17:18] [PASSED] 0x56B0 (DG2)
[22:17:18] [PASSED] 0x56B1 (DG2)
[22:17:18] [PASSED] 0x56BA (DG2)
[22:17:18] [PASSED] 0x56BB (DG2)
[22:17:18] [PASSED] 0x56BC (DG2)
[22:17:18] [PASSED] 0x56BD (DG2)
[22:17:18] [PASSED] 0x5693 (DG2)
[22:17:18] [PASSED] 0x5694 (DG2)
[22:17:18] [PASSED] 0x5695 (DG2)
[22:17:18] [PASSED] 0x56A3 (DG2)
[22:17:18] [PASSED] 0x56A4 (DG2)
[22:17:18] [PASSED] 0x56B2 (DG2)
[22:17:18] [PASSED] 0x56B3 (DG2)
[22:17:18] [PASSED] 0x5696 (DG2)
[22:17:18] [PASSED] 0x5697 (DG2)
[22:17:18] [PASSED] 0xB69 (PVC)
[22:17:18] [PASSED] 0xB6E (PVC)
[22:17:18] [PASSED] 0xBD4 (PVC)
[22:17:18] [PASSED] 0xBD5 (PVC)
[22:17:18] [PASSED] 0xBD6 (PVC)
[22:17:18] [PASSED] 0xBD7 (PVC)
[22:17:18] [PASSED] 0xBD8 (PVC)
[22:17:18] [PASSED] 0xBD9 (PVC)
[22:17:18] [PASSED] 0xBDA (PVC)
[22:17:18] [PASSED] 0xBDB (PVC)
[22:17:18] [PASSED] 0xBE0 (PVC)
[22:17:18] [PASSED] 0xBE1 (PVC)
[22:17:18] [PASSED] 0xBE5 (PVC)
[22:17:18] [PASSED] 0x7D40 (METEORLAKE)
[22:17:18] [PASSED] 0x7D45 (METEORLAKE)
[22:17:18] [PASSED] 0x7D55 (METEORLAKE)
[22:17:18] [PASSED] 0x7D60 (METEORLAKE)
[22:17:18] [PASSED] 0x7DD5 (METEORLAKE)
[22:17:18] [PASSED] 0x6420 (LUNARLAKE)
[22:17:18] [PASSED] 0x64A0 (LUNARLAKE)
[22:17:18] [PASSED] 0x64B0 (LUNARLAKE)
[22:17:18] [PASSED] 0xE202 (BATTLEMAGE)
[22:17:18] [PASSED] 0xE209 (BATTLEMAGE)
[22:17:18] [PASSED] 0xE20B (BATTLEMAGE)
[22:17:18] [PASSED] 0xE20C (BATTLEMAGE)
[22:17:18] [PASSED] 0xE20D (BATTLEMAGE)
[22:17:18] [PASSED] 0xE210 (BATTLEMAGE)
[22:17:18] [PASSED] 0xE211 (BATTLEMAGE)
[22:17:18] [PASSED] 0xE212 (BATTLEMAGE)
[22:17:18] [PASSED] 0xE216 (BATTLEMAGE)
[22:17:18] [PASSED] 0xE220 (BATTLEMAGE)
[22:17:18] [PASSED] 0xE221 (BATTLEMAGE)
[22:17:18] [PASSED] 0xE222 (BATTLEMAGE)
[22:17:18] [PASSED] 0xE223 (BATTLEMAGE)
[22:17:18] [PASSED] 0xB080 (PANTHERLAKE)
[22:17:18] [PASSED] 0xB081 (PANTHERLAKE)
[22:17:18] [PASSED] 0xB082 (PANTHERLAKE)
[22:17:18] [PASSED] 0xB083 (PANTHERLAKE)
[22:17:18] [PASSED] 0xB084 (PANTHERLAKE)
[22:17:18] [PASSED] 0xB085 (PANTHERLAKE)
[22:17:18] [PASSED] 0xB086 (PANTHERLAKE)
[22:17:18] [PASSED] 0xB087 (PANTHERLAKE)
[22:17:18] [PASSED] 0xB08F (PANTHERLAKE)
[22:17:18] [PASSED] 0xB090 (PANTHERLAKE)
[22:17:18] [PASSED] 0xB0A0 (PANTHERLAKE)
[22:17:18] [PASSED] 0xB0B0 (PANTHERLAKE)
[22:17:18] [PASSED] 0xFD80 (PANTHERLAKE)
[22:17:18] [PASSED] 0xFD81 (PANTHERLAKE)
[22:17:18] [PASSED] 0xD740 (NOVALAKE_S)
[22:17:18] [PASSED] 0xD741 (NOVALAKE_S)
[22:17:18] [PASSED] 0xD742 (NOVALAKE_S)
[22:17:18] [PASSED] 0xD743 (NOVALAKE_S)
[22:17:18] [PASSED] 0xD745 (NOVALAKE_S)
[22:17:18] [PASSED] 0xD74A (NOVALAKE_S)
[22:17:18] [PASSED] 0xD74B (NOVALAKE_S)
[22:17:18] [PASSED] 0x674C (CRESCENTISLAND)
[22:17:18] [PASSED] 0x674D (CRESCENTISLAND)
[22:17:18] [PASSED] 0x674E (CRESCENTISLAND)
[22:17:18] [PASSED] 0x674F (CRESCENTISLAND)
[22:17:18] [PASSED] 0x6750 (CRESCENTISLAND)
[22:17:18] [PASSED] 0xD750 (NOVALAKE_P)
[22:17:18] [PASSED] 0xD751 (NOVALAKE_P)
[22:17:18] [PASSED] 0xD752 (NOVALAKE_P)
[22:17:18] [PASSED] 0xD753 (NOVALAKE_P)
[22:17:18] [PASSED] 0xD754 (NOVALAKE_P)
[22:17:18] [PASSED] 0xD755 (NOVALAKE_P)
[22:17:18] [PASSED] 0xD756 (NOVALAKE_P)
[22:17:18] [PASSED] 0xD757 (NOVALAKE_P)
[22:17:18] [PASSED] 0xD75F (NOVALAKE_P)
[22:17:18] =============== [PASSED] check_platform_desc ===============
[22:17:18] ===================== [PASSED] xe_pci ======================
[22:17:18] ============= xe_rtp_tables_test (5 subtests) ==============
[22:17:18] ================== xe_rtp_table_gt_test ===================
[22:17:18] [PASSED] gt_was/14011060649
[22:17:18] [PASSED] gt_was/14011059788
[22:17:18] [PASSED] gt_was/14015795083
[22:17:18] [PASSED] gt_was/16021867713
[22:17:18] [PASSED] gt_was/14019449301
[22:17:18] [PASSED] gt_was/16028005424
[22:17:18] [PASSED] gt_was/14026578760
[22:17:18] [PASSED] gt_was/1409420604
[22:17:18] [PASSED] gt_was/1408615072
[22:17:18] [PASSED] gt_was/22010523718
[22:17:18] [PASSED] gt_was/14011006942
[22:17:18] [PASSED] gt_was/14014830051
[22:17:18] [PASSED] gt_was/18018781329
[22:17:18] [PASSED] gt_was/1509235366
[22:17:18] [PASSED] gt_was/18018781329
[22:17:18] [PASSED] gt_was/16016694945
[22:17:18] [PASSED] gt_was/14018575942
[22:17:18] [PASSED] gt_was/22016670082
[22:17:18] [PASSED] gt_was/22016670082
[22:17:18] [PASSED] gt_was/14017421178
[22:17:18] [PASSED] gt_was/16025250150
[22:17:18] [PASSED] gt_was/14021871409
[22:17:18] [PASSED] gt_was/16021865536
[22:17:18] [PASSED] gt_was/14021486841
[22:17:18] [PASSED] gt_was/14025160223
[22:17:18] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[22:17:18] [PASSED] gt_was/14025635424
[22:17:18] [PASSED] gt_was/16028005424
[22:17:18] ============== [PASSED] xe_rtp_table_gt_test ===============
[22:17:18] ================== xe_rtp_table_gt_test ===================
[22:17:18] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[22:17:18] [PASSED] gt_tunings/Tuning: 32B Access Enable
[22:17:18] [PASSED] gt_tunings/Tuning: L3 cache
[22:17:18] [PASSED] gt_tunings/Tuning: L3 cache - media
[22:17:18] [PASSED] gt_tunings/Tuning: Compression Overfetch
[22:17:18] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[22:17:18] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[22:17:18] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[22:17:18] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[22:17:18] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[22:17:18] [PASSED] gt_tunings/Tuning: Stateless compression control
[22:17:18] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[22:17:18] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[22:17:18] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[22:17:18] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[22:17:18] ============== [PASSED] xe_rtp_table_gt_test ===============
[22:17:18] ================== xe_rtp_table_oob_test ==================
[22:17:18] [PASSED] oob_was/1607983814
[22:17:18] [PASSED] oob_was/16010904313
[22:17:18] [PASSED] oob_was/18022495364
[22:17:18] [PASSED] oob_was/22012773006
[22:17:18] [PASSED] oob_was/14014475959
[22:17:18] [PASSED] oob_was/22011391025
[22:17:18] [PASSED] oob_was/22012727170
[22:17:18] [PASSED] oob_was/22012727685
[22:17:18] [PASSED] oob_was/22016596838
[22:17:18] [PASSED] oob_was/18020744125
[22:17:18] [PASSED] oob_was/1409600907
[22:17:18] [PASSED] oob_was/22014953428
[22:17:18] [PASSED] oob_was/16017236439
[22:17:18] [PASSED] oob_was/14019821291
[22:17:18] [PASSED] oob_was/14015076503
[22:17:18] [PASSED] oob_was/14018913170
[22:17:18] [PASSED] oob_was/14018094691
[22:17:18] [PASSED] oob_was/18024947630
[22:17:18] [PASSED] oob_was/16022287689
[22:17:18] [PASSED] oob_was/13011645652
[22:17:18] [PASSED] oob_was/14022293748
[22:17:18] [PASSED] oob_was/22019794406
[22:17:18] [PASSED] oob_was/22019338487
[22:17:18] [PASSED] oob_was/16023588340
[22:17:18] [PASSED] oob_was/14019789679
[22:17:18] [PASSED] oob_was/14022866841
[22:17:18] [PASSED] oob_was/16021333562
[22:17:18] [PASSED] oob_was/14016712196
[22:17:18] [PASSED] oob_was/14015568240
[22:17:18] [PASSED] oob_was/18013179988
[22:17:18] [PASSED] oob_was/1508761755
[22:17:18] [PASSED] oob_was/16023105232
[22:17:18] [PASSED] oob_was/16026508708
[22:17:18] [PASSED] oob_was/14020001231
[22:17:18] [PASSED] oob_was/16023683509
[22:17:18] [PASSED] oob_was/14025515070
[22:17:18] [PASSED] oob_was/15015404425_disable
[22:17:18] [PASSED] oob_was/16026007364
[22:17:18] [PASSED] oob_was/14020316580
[22:17:18] [PASSED] oob_was/14025883347
[22:17:18] [PASSED] oob_was/16029380221
[22:17:18] ============== [PASSED] xe_rtp_table_oob_test ==============
[22:17:18] ================ xe_rtp_table_dev_oob_test ================
[22:17:18] [PASSED] device_oob_was/22010954014
[22:17:18] [PASSED] device_oob_was/15015404425
[22:17:18] [PASSED] device_oob_was/22019338487_display
[22:17:18] [PASSED] device_oob_was/14022085890
[22:17:18] [PASSED] device_oob_was/14026539277
[22:17:18] [PASSED] device_oob_was/14026633728
[22:17:18] [PASSED] device_oob_was/14026746987
[22:17:18] [PASSED] device_oob_was/14026779378
[22:17:18] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[22:17:18] ========== xe_rtp_table_missing_upper_bound_test ==========
[22:17:18] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[22:17:18] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[22:17:18] [PASSED] register_whitelist/1806527549
[22:17:18] [PASSED] register_whitelist/allow_read_ctx_timestamp
[22:17:18] [PASSED] register_whitelist/allow_read_queue_timestamp
[22:17:18] [PASSED] register_whitelist/16014440446
[22:17:18] [PASSED] register_whitelist/16017236439
[22:17:18] [PASSED] register_whitelist/16020183090
[22:17:18] [PASSED] register_whitelist/14024997852
[22:17:18] [PASSED] register_whitelist/14024997852
[22:17:18] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[22:17:18] =============== [PASSED] xe_rtp_tables_test ================
[22:17:18] =================== xe_rtp (3 subtests) ====================
[22:17:18] =================== xe_rtp_rules_tests ====================
[22:17:18] [PASSED] no
[22:17:18] [PASSED] yes
[22:17:18] [PASSED] no-and-no
[22:17:18] [PASSED] no-and-yes
[22:17:18] [PASSED] yes-and-no
[22:17:18] [PASSED] yes-and-yes
[22:17:18] [PASSED] no-or-no
[22:17:18] [PASSED] no-or-yes
[22:17:18] [PASSED] yes-or-no
[22:17:18] [PASSED] yes-or-yes
[22:17:18] [PASSED] no-yes-or-yes-no
[22:17:18] [PASSED] no-yes-or-yes-yes
[22:17:18] [PASSED] yes-yes-or-no-yes
[22:17:18] [PASSED] yes-yes-or-yes-yes
[22:17:18] [PASSED] no-no-or-yes-or-no
[22:17:18] [PASSED] or
[22:17:18] [PASSED] or-yes
[22:17:18] [PASSED] or-no
[22:17:18] [PASSED] yes-or
[22:17:18] [PASSED] no-or
[22:17:18] [PASSED] no-or-or-yes
[22:17:18] [PASSED] yes-or-or-no
[22:17:18] [PASSED] no-or-or-no
[22:17:18] [PASSED] missing-context-engine-class
[22:17:18] [PASSED] missing-context-engine-class-or-yes
[22:17:18] [PASSED] missing-context-engine-class-or-or-yes
[22:17:18] =============== [PASSED] xe_rtp_rules_tests ================
[22:17:18] =============== xe_rtp_process_to_sr_tests ================
[22:17:18] [PASSED] coalesce-same-reg
[22:17:18] [PASSED] coalesce-same-reg-literal-and-func
[22:17:18] [PASSED] no-match-no-add
[22:17:18] [PASSED] two-regs-two-entries
[22:17:18] [PASSED] clr-one-set-other
[22:17:18] [PASSED] set-field
[22:17:18] [PASSED] conflict-duplicate
[22:17:18] [PASSED] conflict-not-disjoint
[22:17:18] [PASSED] conflict-not-disjoint-literal-and-func
[22:17:18] [PASSED] conflict-reg-type
[22:17:18] [PASSED] bad-mcr-reg-forced-to-regular
[22:17:18] [PASSED] bad-regular-reg-forced-to-mcr
[22:17:18] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[22:17:18] ================== xe_rtp_process_tests ===================
[22:17:18] [PASSED] active1
[22:17:18] [PASSED] active2
[22:17:18] [PASSED] active-inactive
[22:17:18] [PASSED] inactive-active
[22:17:18] [PASSED] inactive-active-inactive
[22:17:18] [PASSED] inactive-inactive-inactive
[22:17:18] ============== [PASSED] xe_rtp_process_tests ===============
[22:17:18] ===================== [PASSED] xe_rtp ======================
[22:17:18] ==================== xe_wa (1 subtest) =====================
[22:17:18] ======================== xe_wa_gt =========================
[22:17:18] [PASSED] TIGERLAKE B0
[22:17:18] [PASSED] DG1 A0
[22:17:18] [PASSED] DG1 B0
[22:17:18] [PASSED] ALDERLAKE_S A0
[22:17:18] [PASSED] ALDERLAKE_S B0
[22:17:18] [PASSED] ALDERLAKE_S C0
[22:17:18] [PASSED] ALDERLAKE_S D0
[22:17:18] [PASSED] ALDERLAKE_P A0
[22:17:18] [PASSED] ALDERLAKE_P B0
[22:17:18] [PASSED] ALDERLAKE_P C0
[22:17:18] [PASSED] ALDERLAKE_S RPLS D0
[22:17:18] [PASSED] ALDERLAKE_P RPLU E0
[22:17:18] [PASSED] DG2 G10 C0
[22:17:18] [PASSED] DG2 G11 B1
[22:17:18] [PASSED] DG2 G12 A1
[22:17:18] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[22:17:18] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[22:17:18] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[22:17:18] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[22:17:18] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[22:17:18] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[22:17:18] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[22:17:18] ==================== [PASSED] xe_wa_gt =====================
[22:17:18] ====================== [PASSED] xe_wa ======================
[22:17:18] ============================================================
[22:17:18] Testing complete. Ran 739 tests: passed: 721, skipped: 18
[22:17:18] Elapsed time: 36.764s total, 4.334s configuring, 31.764s building, 0.641s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[22:17:18] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:17:20] 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
[22:17:45] Starting KUnit Kernel (1/1)...
[22:17:45] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:17:45] ============ drm_test_pick_cmdline (2 subtests) ============
[22:17:45] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[22:17:45] =============== drm_test_pick_cmdline_named ===============
[22:17:45] [PASSED] NTSC
[22:17:45] [PASSED] NTSC-J
[22:17:45] [PASSED] PAL
[22:17:45] [PASSED] PAL-M
[22:17:45] =========== [PASSED] drm_test_pick_cmdline_named ===========
[22:17:45] ============== [PASSED] drm_test_pick_cmdline ==============
[22:17:45] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[22:17:45] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[22:17:45] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[22:17:45] =========== drm_validate_clone_mode (2 subtests) ===========
[22:17:45] ============== drm_test_check_in_clone_mode ===============
[22:17:45] [PASSED] in_clone_mode
[22:17:45] [PASSED] not_in_clone_mode
[22:17:45] ========== [PASSED] drm_test_check_in_clone_mode ===========
[22:17:45] =============== drm_test_check_valid_clones ===============
[22:17:45] [PASSED] not_in_clone_mode
[22:17:45] [PASSED] valid_clone
[22:17:45] [PASSED] invalid_clone
[22:17:45] =========== [PASSED] drm_test_check_valid_clones ===========
[22:17:45] ============= [PASSED] drm_validate_clone_mode =============
[22:17:45] ============= drm_validate_modeset (1 subtest) =============
[22:17:45] [PASSED] drm_test_check_connector_changed_modeset
[22:17:45] ============== [PASSED] drm_validate_modeset ===============
[22:17:45] ====== drm_test_bridge_get_current_state (2 subtests) ======
[22:17:45] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[22:17:45] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[22:17:45] ======== [PASSED] drm_test_bridge_get_current_state ========
[22:17:45] ====== drm_test_bridge_helper_reset_crtc (4 subtests) ======
[22:17:45] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[22:17:45] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[22:17:45] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[22:17:45] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[22:17:45] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[22:17:45] ============== drm_bridge_alloc (2 subtests) ===============
[22:17:45] [PASSED] drm_test_drm_bridge_alloc_basic
[22:17:45] [PASSED] drm_test_drm_bridge_alloc_get_put
[22:17:45] ================ [PASSED] drm_bridge_alloc =================
[22:17:45] ============= drm_bridge_bus_fmt (5 subtests) ==============
[22:17:45] [PASSED] drm_test_bridge_rgb_yuv_rgb
[22:17:45] [PASSED] drm_test_bridge_must_convert_to_yuv444
[22:17:45] [PASSED] drm_test_bridge_hdmi_auto_rgb
[22:17:45] [PASSED] drm_test_bridge_auto_first
[22:17:45] [PASSED] drm_test_bridge_rgb_yuv_no_path
[22:17:45] =============== [PASSED] drm_bridge_bus_fmt ================
[22:17:45] ============= drm_cmdline_parser (40 subtests) =============
[22:17:45] [PASSED] drm_test_cmdline_force_d_only
[22:17:45] [PASSED] drm_test_cmdline_force_D_only_dvi
[22:17:45] [PASSED] drm_test_cmdline_force_D_only_hdmi
[22:17:45] [PASSED] drm_test_cmdline_force_D_only_not_digital
[22:17:45] [PASSED] drm_test_cmdline_force_e_only
[22:17:45] [PASSED] drm_test_cmdline_res
[22:17:45] [PASSED] drm_test_cmdline_res_vesa
[22:17:45] [PASSED] drm_test_cmdline_res_vesa_rblank
[22:17:45] [PASSED] drm_test_cmdline_res_rblank
[22:17:45] [PASSED] drm_test_cmdline_res_bpp
[22:17:45] [PASSED] drm_test_cmdline_res_refresh
[22:17:45] [PASSED] drm_test_cmdline_res_bpp_refresh
[22:17:45] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[22:17:45] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[22:17:45] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[22:17:45] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[22:17:45] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[22:17:45] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[22:17:45] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[22:17:45] [PASSED] drm_test_cmdline_res_margins_force_on
[22:17:45] [PASSED] drm_test_cmdline_res_vesa_margins
[22:17:45] [PASSED] drm_test_cmdline_name
[22:17:45] [PASSED] drm_test_cmdline_name_bpp
[22:17:45] [PASSED] drm_test_cmdline_name_option
[22:17:45] [PASSED] drm_test_cmdline_name_bpp_option
[22:17:45] [PASSED] drm_test_cmdline_rotate_0
[22:17:45] [PASSED] drm_test_cmdline_rotate_90
[22:17:45] [PASSED] drm_test_cmdline_rotate_180
[22:17:45] [PASSED] drm_test_cmdline_rotate_270
[22:17:45] [PASSED] drm_test_cmdline_hmirror
[22:17:45] [PASSED] drm_test_cmdline_vmirror
[22:17:45] [PASSED] drm_test_cmdline_margin_options
[22:17:45] [PASSED] drm_test_cmdline_multiple_options
[22:17:45] [PASSED] drm_test_cmdline_bpp_extra_and_option
[22:17:45] [PASSED] drm_test_cmdline_extra_and_option
[22:17:45] [PASSED] drm_test_cmdline_freestanding_options
[22:17:45] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[22:17:45] [PASSED] drm_test_cmdline_panel_orientation
[22:17:45] ================ drm_test_cmdline_invalid =================
[22:17:45] [PASSED] margin_only
[22:17:45] [PASSED] interlace_only
[22:17:45] [PASSED] res_missing_x
[22:17:45] [PASSED] res_missing_y
[22:17:45] [PASSED] res_bad_y
[22:17:45] [PASSED] res_missing_y_bpp
[22:17:45] [PASSED] res_bad_bpp
[22:17:45] [PASSED] res_bad_refresh
[22:17:45] [PASSED] res_bpp_refresh_force_on_off
[22:17:45] [PASSED] res_invalid_mode
[22:17:45] [PASSED] res_bpp_wrong_place_mode
[22:17:45] [PASSED] name_bpp_refresh
[22:17:45] [PASSED] name_refresh
[22:17:45] [PASSED] name_refresh_wrong_mode
[22:17:45] [PASSED] name_refresh_invalid_mode
[22:17:45] [PASSED] rotate_multiple
[22:17:45] [PASSED] rotate_invalid_val
[22:17:45] [PASSED] rotate_truncated
[22:17:45] [PASSED] invalid_option
[22:17:45] [PASSED] invalid_tv_option
[22:17:45] [PASSED] truncated_tv_option
[22:17:45] ============ [PASSED] drm_test_cmdline_invalid =============
[22:17:45] =============== drm_test_cmdline_tv_options ===============
[22:17:45] [PASSED] NTSC
[22:17:45] [PASSED] NTSC_443
[22:17:45] [PASSED] NTSC_J
[22:17:45] [PASSED] PAL
[22:17:45] [PASSED] PAL_M
[22:17:45] [PASSED] PAL_N
[22:17:45] [PASSED] SECAM
[22:17:45] [PASSED] MONO_525
[22:17:45] [PASSED] MONO_625
[22:17:45] =========== [PASSED] drm_test_cmdline_tv_options ===========
[22:17:45] =============== [PASSED] drm_cmdline_parser ================
[22:17:45] ========== drmm_connector_hdmi_init (20 subtests) ==========
[22:17:45] [PASSED] drm_test_connector_hdmi_init_valid
[22:17:45] [PASSED] drm_test_connector_hdmi_init_bpc_8
[22:17:45] [PASSED] drm_test_connector_hdmi_init_bpc_10
[22:17:45] [PASSED] drm_test_connector_hdmi_init_bpc_12
[22:17:45] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[22:17:45] [PASSED] drm_test_connector_hdmi_init_bpc_null
[22:17:45] [PASSED] drm_test_connector_hdmi_init_formats_empty
[22:17:45] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[22:17:45] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[22:17:45] [PASSED] supported_formats=0x9 yuv420_allowed=1
[22:17:45] [PASSED] supported_formats=0x9 yuv420_allowed=0
[22:17:45] [PASSED] supported_formats=0x5 yuv420_allowed=1
[22:17:45] [PASSED] supported_formats=0x5 yuv420_allowed=0
[22:17:45] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[22:17:45] [PASSED] drm_test_connector_hdmi_init_null_ddc
[22:17:45] [PASSED] drm_test_connector_hdmi_init_null_product
[22:17:45] [PASSED] drm_test_connector_hdmi_init_null_vendor
[22:17:45] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[22:17:45] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[22:17:45] [PASSED] drm_test_connector_hdmi_init_product_valid
[22:17:45] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[22:17:45] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[22:17:45] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[22:17:45] ========= drm_test_connector_hdmi_init_type_valid =========
[22:17:45] [PASSED] HDMI-A
[22:17:45] [PASSED] HDMI-B
[22:17:45] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[22:17:45] ======== drm_test_connector_hdmi_init_type_invalid ========
[22:17:45] [PASSED] Unknown
[22:17:45] [PASSED] VGA
[22:17:45] [PASSED] DVI-I
[22:17:45] [PASSED] DVI-D
[22:17:45] [PASSED] DVI-A
[22:17:45] [PASSED] Composite
[22:17:45] [PASSED] SVIDEO
[22:17:45] [PASSED] LVDS
[22:17:45] [PASSED] Component
[22:17:45] [PASSED] DIN
[22:17:45] [PASSED] DP
[22:17:45] [PASSED] TV
[22:17:45] [PASSED] eDP
[22:17:45] [PASSED] Virtual
[22:17:45] [PASSED] DSI
[22:17:45] [PASSED] DPI
[22:17:45] [PASSED] Writeback
[22:17:45] [PASSED] SPI
[22:17:45] [PASSED] USB
[22:17:45] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[22:17:45] ============ [PASSED] drmm_connector_hdmi_init =============
[22:17:45] ============= drmm_connector_init (3 subtests) =============
[22:17:45] [PASSED] drm_test_drmm_connector_init
[22:17:45] [PASSED] drm_test_drmm_connector_init_null_ddc
[22:17:45] ========= drm_test_drmm_connector_init_type_valid =========
[22:17:45] [PASSED] Unknown
[22:17:45] [PASSED] VGA
[22:17:45] [PASSED] DVI-I
[22:17:45] [PASSED] DVI-D
[22:17:45] [PASSED] DVI-A
[22:17:45] [PASSED] Composite
[22:17:45] [PASSED] SVIDEO
[22:17:45] [PASSED] LVDS
[22:17:45] [PASSED] Component
[22:17:45] [PASSED] DIN
[22:17:45] [PASSED] DP
[22:17:45] [PASSED] HDMI-A
[22:17:45] [PASSED] HDMI-B
[22:17:45] [PASSED] TV
[22:17:45] [PASSED] eDP
[22:17:45] [PASSED] Virtual
[22:17:45] [PASSED] DSI
[22:17:45] [PASSED] DPI
[22:17:45] [PASSED] Writeback
[22:17:45] [PASSED] SPI
[22:17:45] [PASSED] USB
[22:17:45] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[22:17:45] =============== [PASSED] drmm_connector_init ===============
[22:17:45] ========= drm_connector_dynamic_init (6 subtests) ==========
[22:17:45] [PASSED] drm_test_drm_connector_dynamic_init
[22:17:45] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[22:17:45] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[22:17:45] [PASSED] drm_test_drm_connector_dynamic_init_properties
[22:17:45] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[22:17:45] [PASSED] Unknown
[22:17:45] [PASSED] VGA
[22:17:45] [PASSED] DVI-I
[22:17:45] [PASSED] DVI-D
[22:17:45] [PASSED] DVI-A
[22:17:45] [PASSED] Composite
[22:17:45] [PASSED] SVIDEO
[22:17:45] [PASSED] LVDS
[22:17:45] [PASSED] Component
[22:17:45] [PASSED] DIN
[22:17:45] [PASSED] DP
[22:17:45] [PASSED] HDMI-A
[22:17:45] [PASSED] HDMI-B
[22:17:45] [PASSED] TV
[22:17:45] [PASSED] eDP
[22:17:45] [PASSED] Virtual
[22:17:45] [PASSED] DSI
[22:17:45] [PASSED] DPI
[22:17:45] [PASSED] Writeback
[22:17:45] [PASSED] SPI
[22:17:45] [PASSED] USB
[22:17:45] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[22:17:45] ======== drm_test_drm_connector_dynamic_init_name =========
[22:17:45] [PASSED] Unknown
[22:17:45] [PASSED] VGA
[22:17:45] [PASSED] DVI-I
[22:17:45] [PASSED] DVI-D
[22:17:45] [PASSED] DVI-A
[22:17:45] [PASSED] Composite
[22:17:45] [PASSED] SVIDEO
[22:17:45] [PASSED] LVDS
[22:17:45] [PASSED] Component
[22:17:45] [PASSED] DIN
[22:17:45] [PASSED] DP
[22:17:45] [PASSED] HDMI-A
[22:17:45] [PASSED] HDMI-B
[22:17:45] [PASSED] TV
[22:17:45] [PASSED] eDP
[22:17:45] [PASSED] Virtual
[22:17:45] [PASSED] DSI
[22:17:45] [PASSED] DPI
[22:17:45] [PASSED] Writeback
[22:17:45] [PASSED] SPI
[22:17:45] [PASSED] USB
[22:17:45] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[22:17:45] =========== [PASSED] drm_connector_dynamic_init ============
[22:17:45] ==== drm_connector_dynamic_register_early (4 subtests) =====
[22:17:45] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[22:17:45] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[22:17:45] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[22:17:45] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[22:17:45] ====== [PASSED] drm_connector_dynamic_register_early =======
[22:17:45] ======= drm_connector_dynamic_register (7 subtests) ========
[22:17:45] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[22:17:45] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[22:17:45] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[22:17:45] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[22:17:45] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[22:17:45] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[22:17:45] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[22:17:45] ========= [PASSED] drm_connector_dynamic_register ==========
[22:17:45] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[22:17:45] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[22:17:45] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[22:17:45] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[22:17:45] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[22:17:45] ========== drm_test_get_tv_mode_from_name_valid ===========
[22:17:45] [PASSED] NTSC
[22:17:45] [PASSED] NTSC-443
[22:17:45] [PASSED] NTSC-J
[22:17:45] [PASSED] PAL
[22:17:45] [PASSED] PAL-M
[22:17:45] [PASSED] PAL-N
[22:17:45] [PASSED] SECAM
[22:17:45] [PASSED] Mono
[22:17:45] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[22:17:45] [PASSED] drm_test_get_tv_mode_from_name_truncated
[22:17:45] ============ [PASSED] drm_get_tv_mode_from_name ============
[22:17:45] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[22:17:45] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[22:17:45] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[22:17:45] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[22:17:45] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[22:17:45] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[22:17:45] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[22:17:45] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[22:17:45] [PASSED] VIC 96
[22:17:45] [PASSED] VIC 97
[22:17:45] [PASSED] VIC 101
[22:17:45] [PASSED] VIC 102
[22:17:45] [PASSED] VIC 106
[22:17:45] [PASSED] VIC 107
[22:17:45] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[22:17:45] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[22:17:45] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[22:17:45] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[22:17:45] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[22:17:45] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[22:17:45] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[22:17:45] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[22:17:45] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[22:17:45] [PASSED] Automatic
[22:17:45] [PASSED] Full
[22:17:45] [PASSED] Limited 16:235
[22:17:45] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[22:17:45] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[22:17:45] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[22:17:45] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[22:17:45] === drm_test_drm_hdmi_connector_get_output_format_name ====
[22:17:45] [PASSED] RGB
[22:17:45] [PASSED] YUV 4:2:0
[22:17:45] [PASSED] YUV 4:2:2
[22:17:45] [PASSED] YUV 4:4:4
[22:17:45] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[22:17:45] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[22:17:45] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[22:17:45] ============= drm_damage_helper (21 subtests) ==============
[22:17:45] [PASSED] drm_test_damage_iter_no_damage
[22:17:45] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[22:17:45] [PASSED] drm_test_damage_iter_no_damage_src_moved
[22:17:45] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[22:17:45] [PASSED] drm_test_damage_iter_no_damage_not_visible
[22:17:45] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[22:17:45] [PASSED] drm_test_damage_iter_no_damage_no_fb
[22:17:45] [PASSED] drm_test_damage_iter_simple_damage
[22:17:45] [PASSED] drm_test_damage_iter_single_damage
[22:17:45] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[22:17:45] [PASSED] drm_test_damage_iter_single_damage_outside_src
[22:17:45] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[22:17:45] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[22:17:45] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[22:17:45] [PASSED] drm_test_damage_iter_single_damage_src_moved
[22:17:45] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[22:17:45] [PASSED] drm_test_damage_iter_damage
[22:17:45] [PASSED] drm_test_damage_iter_damage_one_intersect
[22:17:45] [PASSED] drm_test_damage_iter_damage_one_outside
[22:17:45] [PASSED] drm_test_damage_iter_damage_src_moved
[22:17:45] [PASSED] drm_test_damage_iter_damage_not_visible
[22:17:45] ================ [PASSED] drm_damage_helper ================
[22:17:45] ============== drm_dp_mst_helper (3 subtests) ==============
[22:17:45] ============== drm_test_dp_mst_calc_pbn_mode ==============
[22:17:45] [PASSED] Clock 154000 BPP 30 DSC disabled
[22:17:45] [PASSED] Clock 234000 BPP 30 DSC disabled
[22:17:45] [PASSED] Clock 297000 BPP 24 DSC disabled
[22:17:45] [PASSED] Clock 332880 BPP 24 DSC enabled
[22:17:45] [PASSED] Clock 324540 BPP 24 DSC enabled
[22:17:45] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[22:17:45] ============== drm_test_dp_mst_calc_pbn_div ===============
[22:17:45] [PASSED] Link rate 2000000 lane count 4
[22:17:45] [PASSED] Link rate 2000000 lane count 2
[22:17:45] [PASSED] Link rate 2000000 lane count 1
[22:17:45] [PASSED] Link rate 1350000 lane count 4
[22:17:45] [PASSED] Link rate 1350000 lane count 2
[22:17:45] [PASSED] Link rate 1350000 lane count 1
[22:17:45] [PASSED] Link rate 1000000 lane count 4
[22:17:45] [PASSED] Link rate 1000000 lane count 2
[22:17:45] [PASSED] Link rate 1000000 lane count 1
[22:17:45] [PASSED] Link rate 810000 lane count 4
[22:17:45] [PASSED] Link rate 810000 lane count 2
[22:17:45] [PASSED] Link rate 810000 lane count 1
[22:17:45] [PASSED] Link rate 540000 lane count 4
[22:17:45] [PASSED] Link rate 540000 lane count 2
[22:17:45] [PASSED] Link rate 540000 lane count 1
[22:17:45] [PASSED] Link rate 270000 lane count 4
[22:17:45] [PASSED] Link rate 270000 lane count 2
[22:17:45] [PASSED] Link rate 270000 lane count 1
[22:17:45] [PASSED] Link rate 162000 lane count 4
[22:17:45] [PASSED] Link rate 162000 lane count 2
[22:17:45] [PASSED] Link rate 162000 lane count 1
[22:17:45] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[22:17:45] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[22:17:45] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[22:17:45] [PASSED] DP_POWER_UP_PHY with port number
[22:17:45] [PASSED] DP_POWER_DOWN_PHY with port number
[22:17:45] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[22:17:45] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[22:17:45] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[22:17:45] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[22:17:45] [PASSED] DP_QUERY_PAYLOAD with port number
[22:17:45] [PASSED] DP_QUERY_PAYLOAD with VCPI
[22:17:45] [PASSED] DP_REMOTE_DPCD_READ with port number
[22:17:45] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[22:17:45] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[22:17:45] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[22:17:45] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[22:17:45] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[22:17:45] [PASSED] DP_REMOTE_I2C_READ with port number
[22:17:45] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[22:17:45] [PASSED] DP_REMOTE_I2C_READ with transactions array
[22:17:45] [PASSED] DP_REMOTE_I2C_WRITE with port number
[22:17:45] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[22:17:45] [PASSED] DP_REMOTE_I2C_WRITE with data array
[22:17:45] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[22:17:45] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[22:17:45] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[22:17:45] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[22:17:45] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[22:17:45] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[22:17:45] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[22:17:45] ================ [PASSED] drm_dp_mst_helper ================
[22:17:45] ================== drm_exec (7 subtests) ===================
[22:17:45] [PASSED] sanitycheck
[22:17:45] [PASSED] test_lock
[22:17:45] [PASSED] test_lock_unlock
[22:17:45] [PASSED] test_duplicates
[22:17:45] [PASSED] test_prepare
[22:17:45] [PASSED] test_prepare_array
[22:17:45] [PASSED] test_multiple_loops
[22:17:45] ==================== [PASSED] drm_exec =====================
[22:17:45] =========== drm_format_helper_test (17 subtests) ===========
[22:17:45] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[22:17:45] [PASSED] single_pixel_source_buffer
[22:17:45] [PASSED] single_pixel_clip_rectangle
[22:17:45] [PASSED] well_known_colors
[22:17:45] [PASSED] destination_pitch
[22:17:45] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[22:17:45] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[22:17:45] [PASSED] single_pixel_source_buffer
[22:17:45] [PASSED] single_pixel_clip_rectangle
[22:17:45] [PASSED] well_known_colors
[22:17:45] [PASSED] destination_pitch
[22:17:45] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[22:17:45] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[22:17:45] [PASSED] single_pixel_source_buffer
[22:17:45] [PASSED] single_pixel_clip_rectangle
[22:17:45] [PASSED] well_known_colors
[22:17:45] [PASSED] destination_pitch
[22:17:45] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[22:17:45] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[22:17:45] [PASSED] single_pixel_source_buffer
[22:17:45] [PASSED] single_pixel_clip_rectangle
[22:17:45] [PASSED] well_known_colors
[22:17:45] [PASSED] destination_pitch
[22:17:45] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[22:17:45] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[22:17:45] [PASSED] single_pixel_source_buffer
[22:17:45] [PASSED] single_pixel_clip_rectangle
[22:17:45] [PASSED] well_known_colors
[22:17:45] [PASSED] destination_pitch
[22:17:45] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[22:17:45] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[22:17:45] [PASSED] single_pixel_source_buffer
[22:17:45] [PASSED] single_pixel_clip_rectangle
[22:17:45] [PASSED] well_known_colors
[22:17:45] [PASSED] destination_pitch
[22:17:45] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[22:17:45] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[22:17:45] [PASSED] single_pixel_source_buffer
[22:17:45] [PASSED] single_pixel_clip_rectangle
[22:17:45] [PASSED] well_known_colors
[22:17:45] [PASSED] destination_pitch
[22:17:45] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[22:17:45] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[22:17:45] [PASSED] single_pixel_source_buffer
[22:17:45] [PASSED] single_pixel_clip_rectangle
[22:17:45] [PASSED] well_known_colors
[22:17:45] [PASSED] destination_pitch
[22:17:45] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[22:17:45] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[22:17:45] [PASSED] single_pixel_source_buffer
[22:17:45] [PASSED] single_pixel_clip_rectangle
[22:17:45] [PASSED] well_known_colors
[22:17:45] [PASSED] destination_pitch
[22:17:45] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[22:17:45] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[22:17:45] [PASSED] single_pixel_source_buffer
[22:17:45] [PASSED] single_pixel_clip_rectangle
[22:17:45] [PASSED] well_known_colors
[22:17:45] [PASSED] destination_pitch
[22:17:45] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[22:17:45] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[22:17:45] [PASSED] single_pixel_source_buffer
[22:17:45] [PASSED] single_pixel_clip_rectangle
[22:17:45] [PASSED] well_known_colors
[22:17:45] [PASSED] destination_pitch
[22:17:45] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[22:17:45] ============== drm_test_fb_xrgb8888_to_mono ===============
[22:17:45] [PASSED] single_pixel_source_buffer
[22:17:45] [PASSED] single_pixel_clip_rectangle
[22:17:45] [PASSED] well_known_colors
[22:17:45] [PASSED] destination_pitch
[22:17:45] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[22:17:45] ==================== drm_test_fb_swab =====================
[22:17:45] [PASSED] single_pixel_source_buffer
[22:17:45] [PASSED] single_pixel_clip_rectangle
[22:17:45] [PASSED] well_known_colors
[22:17:45] [PASSED] destination_pitch
[22:17:45] ================ [PASSED] drm_test_fb_swab =================
[22:17:45] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[22:17:45] [PASSED] single_pixel_source_buffer
[22:17:45] [PASSED] single_pixel_clip_rectangle
[22:17:45] [PASSED] well_known_colors
[22:17:45] [PASSED] destination_pitch
[22:17:45] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[22:17:45] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[22:17:45] [PASSED] single_pixel_source_buffer
[22:17:45] [PASSED] single_pixel_clip_rectangle
[22:17:45] [PASSED] well_known_colors
[22:17:45] [PASSED] destination_pitch
[22:17:45] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[22:17:45] ================= drm_test_fb_clip_offset =================
[22:17:45] [PASSED] pass through
[22:17:45] [PASSED] horizontal offset
[22:17:45] [PASSED] vertical offset
[22:17:45] [PASSED] horizontal and vertical offset
[22:17:45] [PASSED] horizontal offset (custom pitch)
[22:17:45] [PASSED] vertical offset (custom pitch)
[22:17:45] [PASSED] horizontal and vertical offset (custom pitch)
[22:17:45] ============= [PASSED] drm_test_fb_clip_offset =============
[22:17:45] =================== drm_test_fb_memcpy ====================
[22:17:45] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[22:17:45] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[22:17:45] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[22:17:45] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[22:17:45] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[22:17:45] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[22:17:45] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[22:17:45] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[22:17:45] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[22:17:45] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[22:17:45] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[22:17:45] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[22:17:45] =============== [PASSED] drm_test_fb_memcpy ================
[22:17:45] ============= [PASSED] drm_format_helper_test ==============
[22:17:45] ================= drm_format (18 subtests) =================
[22:17:45] [PASSED] drm_test_format_block_width_invalid
[22:17:45] [PASSED] drm_test_format_block_width_one_plane
[22:17:45] [PASSED] drm_test_format_block_width_two_plane
[22:17:45] [PASSED] drm_test_format_block_width_three_plane
[22:17:45] [PASSED] drm_test_format_block_width_tiled
[22:17:45] [PASSED] drm_test_format_block_height_invalid
[22:17:45] [PASSED] drm_test_format_block_height_one_plane
[22:17:45] [PASSED] drm_test_format_block_height_two_plane
[22:17:45] [PASSED] drm_test_format_block_height_three_plane
[22:17:45] [PASSED] drm_test_format_block_height_tiled
[22:17:45] [PASSED] drm_test_format_min_pitch_invalid
[22:17:45] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[22:17:45] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[22:17:45] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[22:17:45] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[22:17:45] [PASSED] drm_test_format_min_pitch_two_plane
[22:17:45] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[22:17:45] [PASSED] drm_test_format_min_pitch_tiled
[22:17:45] =================== [PASSED] drm_format ====================
[22:17:45] ============== drm_framebuffer (10 subtests) ===============
[22:17:45] ========== drm_test_framebuffer_check_src_coords ==========
[22:17:45] [PASSED] Success: source fits into fb
[22:17:45] [PASSED] Fail: overflowing fb with x-axis coordinate
[22:17:45] [PASSED] Fail: overflowing fb with y-axis coordinate
[22:17:45] [PASSED] Fail: overflowing fb with source width
[22:17:45] [PASSED] Fail: overflowing fb with source height
[22:17:45] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[22:17:45] [PASSED] drm_test_framebuffer_cleanup
[22:17:45] =============== drm_test_framebuffer_create ===============
[22:17:45] [PASSED] ABGR8888 normal sizes
[22:17:45] [PASSED] ABGR8888 max sizes
[22:17:45] [PASSED] ABGR8888 pitch greater than min required
[22:17:45] [PASSED] ABGR8888 pitch less than min required
[22:17:45] [PASSED] ABGR8888 Invalid width
[22:17:45] [PASSED] ABGR8888 Invalid buffer handle
[22:17:45] [PASSED] No pixel format
[22:17:45] [PASSED] ABGR8888 Width 0
[22:17:45] [PASSED] ABGR8888 Height 0
[22:17:45] [PASSED] ABGR8888 Out of bound height * pitch combination
[22:17:45] [PASSED] ABGR8888 Large buffer offset
[22:17:45] [PASSED] ABGR8888 Buffer offset for inexistent plane
[22:17:45] [PASSED] ABGR8888 Invalid flag
[22:17:45] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[22:17:45] [PASSED] ABGR8888 Valid buffer modifier
[22:17:45] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[22:17:45] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[22:17:45] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[22:17:45] [PASSED] NV12 Normal sizes
[22:17:45] [PASSED] NV12 Max sizes
[22:17:45] [PASSED] NV12 Invalid pitch
[22:17:45] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[22:17:45] [PASSED] NV12 different modifier per-plane
[22:17:45] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[22:17:45] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[22:17:45] [PASSED] NV12 Modifier for inexistent plane
[22:17:45] [PASSED] NV12 Handle for inexistent plane
[22:17:45] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[22:17:45] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[22:17:45] [PASSED] YVU420 Normal sizes
[22:17:45] [PASSED] YVU420 Max sizes
[22:17:45] [PASSED] YVU420 Invalid pitch
[22:17:45] [PASSED] YVU420 Different pitches
[22:17:45] [PASSED] YVU420 Different buffer offsets/pitches
[22:17:45] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[22:17:45] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[22:17:45] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[22:17:45] [PASSED] YVU420 Valid modifier
[22:17:45] [PASSED] YVU420 Different modifiers per plane
[22:17:45] [PASSED] YVU420 Modifier for inexistent plane
[22:17:45] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[22:17:45] [PASSED] X0L2 Normal sizes
[22:17:45] [PASSED] X0L2 Max sizes
[22:17:45] [PASSED] X0L2 Invalid pitch
[22:17:45] [PASSED] X0L2 Pitch greater than minimum required
[22:17:45] [PASSED] X0L2 Handle for inexistent plane
[22:17:45] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[22:17:45] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[22:17:45] [PASSED] X0L2 Valid modifier
[22:17:45] [PASSED] X0L2 Modifier for inexistent plane
[22:17:45] =========== [PASSED] drm_test_framebuffer_create ===========
[22:17:45] [PASSED] drm_test_framebuffer_free
[22:17:45] [PASSED] drm_test_framebuffer_init
[22:17:45] [PASSED] drm_test_framebuffer_init_bad_format
[22:17:45] [PASSED] drm_test_framebuffer_init_dev_mismatch
[22:17:45] [PASSED] drm_test_framebuffer_lookup
[22:17:45] [PASSED] drm_test_framebuffer_lookup_inexistent
[22:17:45] [PASSED] drm_test_framebuffer_modifiers_not_supported
[22:17:45] ================= [PASSED] drm_framebuffer =================
[22:17:45] ================ drm_gem_shmem (8 subtests) ================
[22:17:45] [PASSED] drm_gem_shmem_test_obj_create
[22:17:45] [PASSED] drm_gem_shmem_test_obj_create_private
[22:17:45] [PASSED] drm_gem_shmem_test_pin_pages
[22:17:45] [PASSED] drm_gem_shmem_test_vmap
[22:17:45] [PASSED] drm_gem_shmem_test_get_sg_table
[22:17:45] [PASSED] drm_gem_shmem_test_get_pages_sgt
[22:17:45] [PASSED] drm_gem_shmem_test_madvise
[22:17:45] [PASSED] drm_gem_shmem_test_purge
[22:17:45] ================== [PASSED] drm_gem_shmem ==================
[22:17:45] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[22:17:45] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[22:17:45] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[22:17:45] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[22:17:45] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[22:17:45] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[22:17:45] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[22:17:45] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[22:17:45] [PASSED] Automatic
[22:17:45] [PASSED] Full
[22:17:45] [PASSED] Limited 16:235
[22:17:45] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[22:17:45] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[22:17:45] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[22:17:45] [PASSED] drm_test_check_disable_connector
[22:17:45] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[22:17:45] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[22:17:45] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[22:17:45] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[22:17:45] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[22:17:45] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[22:17:45] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[22:17:45] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[22:17:45] [PASSED] drm_test_check_output_bpc_dvi
[22:17:45] [PASSED] drm_test_check_output_bpc_format_vic_1
[22:17:45] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[22:17:45] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[22:17:45] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[22:17:45] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[22:17:45] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[22:17:45] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[22:17:45] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[22:17:45] ============ drm_test_check_hdmi_color_format =============
[22:17:45] [PASSED] AUTO -> RGB
[22:17:45] [PASSED] YCBCR422 -> YUV422
[22:17:45] [PASSED] YCBCR420 -> YUV420
[22:17:45] [PASSED] YCBCR444 -> YUV444
[22:17:45] [PASSED] RGB -> RGB
[22:17:45] ======== [PASSED] drm_test_check_hdmi_color_format =========
[22:17:45] ======== drm_test_check_hdmi_color_format_420_only ========
[22:17:45] [PASSED] RGB should fail
[22:17:45] [PASSED] YUV444 should fail
[22:17:45] [PASSED] YUV422 should fail
[22:17:45] [PASSED] YUV420 should work
[22:17:45] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[22:17:45] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[22:17:45] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[22:17:45] [PASSED] drm_test_check_broadcast_rgb_value
[22:17:45] [PASSED] drm_test_check_bpc_8_value
[22:17:45] [PASSED] drm_test_check_bpc_10_value
[22:17:45] [PASSED] drm_test_check_bpc_12_value
[22:17:45] [PASSED] drm_test_check_format_value
[22:17:45] [PASSED] drm_test_check_tmds_char_value
[22:17:45] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[22:17:45] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[22:17:45] [PASSED] drm_test_check_mode_valid
[22:17:45] [PASSED] drm_test_check_mode_valid_reject
[22:17:45] [PASSED] drm_test_check_mode_valid_reject_rate
[22:17:45] [PASSED] drm_test_check_mode_valid_reject_max_clock
[22:17:45] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[22:17:45] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[22:17:45] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[22:17:45] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[22:17:45] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[22:17:45] [PASSED] drm_test_check_infoframes
[22:17:45] [PASSED] drm_test_check_reject_avi_infoframe
[22:17:45] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[22:17:45] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[22:17:45] [PASSED] drm_test_check_reject_audio_infoframe
[22:17:45] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[22:17:45] ================= drm_managed (2 subtests) =================
[22:17:45] [PASSED] drm_test_managed_release_action
[22:17:45] [PASSED] drm_test_managed_run_action
[22:17:45] =================== [PASSED] drm_managed ===================
[22:17:45] =================== drm_mm (6 subtests) ====================
[22:17:45] [PASSED] drm_test_mm_init
[22:17:45] [PASSED] drm_test_mm_debug
[22:17:45] [PASSED] drm_test_mm_align32
[22:17:45] [PASSED] drm_test_mm_align64
[22:17:45] [PASSED] drm_test_mm_lowest
[22:17:45] [PASSED] drm_test_mm_highest
[22:17:45] ===================== [PASSED] drm_mm ======================
[22:17:45] ============= drm_modes_analog_tv (5 subtests) =============
[22:17:45] [PASSED] drm_test_modes_analog_tv_mono_576i
[22:17:45] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[22:17:45] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[22:17:45] [PASSED] drm_test_modes_analog_tv_pal_576i
[22:17:45] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[22:17:45] =============== [PASSED] drm_modes_analog_tv ===============
[22:17:45] ============== drm_plane_helper (2 subtests) ===============
[22:17:45] =============== drm_test_check_plane_state ================
[22:17:45] [PASSED] clipping_simple
[22:17:45] [PASSED] clipping_rotate_reflect
[22:17:45] [PASSED] positioning_simple
[22:17:45] [PASSED] upscaling
[22:17:45] [PASSED] downscaling
[22:17:45] [PASSED] rounding1
[22:17:45] [PASSED] rounding2
[22:17:45] [PASSED] rounding3
[22:17:45] [PASSED] rounding4
[22:17:45] =========== [PASSED] drm_test_check_plane_state ============
[22:17:45] =========== drm_test_check_invalid_plane_state ============
[22:17:45] [PASSED] positioning_invalid
[22:17:45] [PASSED] upscaling_invalid
[22:17:45] [PASSED] downscaling_invalid
[22:17:45] ======= [PASSED] drm_test_check_invalid_plane_state ========
[22:17:45] ================ [PASSED] drm_plane_helper =================
[22:17:45] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[22:17:45] ====== drm_test_connector_helper_tv_get_modes_check =======
[22:17:45] [PASSED] None
[22:17:45] [PASSED] PAL
[22:17:45] [PASSED] NTSC
[22:17:45] [PASSED] Both, NTSC Default
[22:17:45] [PASSED] Both, PAL Default
[22:17:45] [PASSED] Both, NTSC Default, with PAL on command-line
[22:17:45] [PASSED] Both, PAL Default, with NTSC on command-line
[22:17:45] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[22:17:45] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[22:17:45] ================== drm_rect (9 subtests) ===================
[22:17:45] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[22:17:45] [PASSED] drm_test_rect_clip_scaled_not_clipped
[22:17:45] [PASSED] drm_test_rect_clip_scaled_clipped
[22:17:45] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[22:17:45] ================= drm_test_rect_intersect =================
[22:17:45] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[22:17:45] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[22:17:45] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[22:17:45] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[22:17:45] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[22:17:45] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[22:17:45] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[22:17:45] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[22:17:45] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[22:17:45] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[22:17:45] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[22:17:45] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[22:17:45] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[22:17:45] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[22:17:45] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[22:17:45] ============= [PASSED] drm_test_rect_intersect =============
[22:17:45] ================ drm_test_rect_calc_hscale ================
[22:17:45] [PASSED] normal use
[22:17:45] [PASSED] out of max range
[22:17:45] [PASSED] out of min range
[22:17:45] [PASSED] zero dst
[22:17:45] [PASSED] negative src
[22:17:45] [PASSED] negative dst
[22:17:45] ============ [PASSED] drm_test_rect_calc_hscale ============
[22:17:45] ================ drm_test_rect_calc_vscale ================
[22:17:45] [PASSED] normal use
[22:17:45] [PASSED] out of max range
[22:17:45] [PASSED] out of min range
[22:17:45] [PASSED] zero dst
[22:17:45] [PASSED] negative src
[22:17:45] [PASSED] negative dst
[22:17:45] ============ [PASSED] drm_test_rect_calc_vscale ============
[22:17:45] ================== drm_test_rect_rotate ===================
[22:17:45] [PASSED] reflect-x
[22:17:45] [PASSED] reflect-y
[22:17:45] [PASSED] rotate-0
[22:17:45] [PASSED] rotate-90
[22:17:45] [PASSED] rotate-180
[22:17:45] [PASSED] rotate-270
[22:17:45] ============== [PASSED] drm_test_rect_rotate ===============
[22:17:45] ================ drm_test_rect_rotate_inv =================
[22:17:45] [PASSED] reflect-x
[22:17:45] [PASSED] reflect-y
[22:17:45] [PASSED] rotate-0
[22:17:45] [PASSED] rotate-90
[22:17:45] [PASSED] rotate-180
[22:17:45] [PASSED] rotate-270
[22:17:45] ============ [PASSED] drm_test_rect_rotate_inv =============
[22:17:45] ==================== [PASSED] drm_rect =====================
[22:17:45] ============ drm_sysfb_modeset_test (1 subtest) ============
[22:17:45] ============ drm_test_sysfb_build_fourcc_list =============
[22:17:45] [PASSED] no native formats
[22:17:45] [PASSED] XRGB8888 as native format
[22:17:45] [PASSED] remove duplicates
[22:17:45] [PASSED] convert alpha formats
[22:17:45] [PASSED] random formats
[22:17:45] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[22:17:45] ============= [PASSED] drm_sysfb_modeset_test ==============
[22:17:45] ================== drm_fixp (2 subtests) ===================
[22:17:45] [PASSED] drm_test_int2fixp
[22:17:45] [PASSED] drm_test_sm2fixp
[22:17:45] ==================== [PASSED] drm_fixp =====================
[22:17:45] ============================================================
[22:17:45] Testing complete. Ran 639 tests: passed: 639
[22:17:45] Elapsed time: 26.831s total, 1.858s configuring, 24.753s building, 0.200s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[22:17:45] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:17:47] 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
[22:17:57] Starting KUnit Kernel (1/1)...
[22:17:57] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:17:57] ================= ttm_device (5 subtests) ==================
[22:17:57] [PASSED] ttm_device_init_basic
[22:17:57] [PASSED] ttm_device_init_multiple
[22:17:57] [PASSED] ttm_device_fini_basic
[22:17:57] [PASSED] ttm_device_init_no_vma_man
[22:17:57] ================== ttm_device_init_pools ==================
[22:17:57] [PASSED] No DMA allocations, no DMA32 required
[22:17:57] [PASSED] DMA allocations, DMA32 required
[22:17:57] [PASSED] No DMA allocations, DMA32 required
[22:17:57] [PASSED] DMA allocations, no DMA32 required
[22:17:57] ============== [PASSED] ttm_device_init_pools ==============
[22:17:57] =================== [PASSED] ttm_device ====================
[22:17:57] ================== ttm_pool (8 subtests) ===================
[22:17:57] ================== ttm_pool_alloc_basic ===================
[22:17:57] [PASSED] One page
[22:17:57] [PASSED] More than one page
[22:17:57] [PASSED] Above the allocation limit
[22:17:57] [PASSED] One page, with coherent DMA mappings enabled
[22:17:57] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[22:17:57] ============== [PASSED] ttm_pool_alloc_basic ===============
[22:17:57] ============== ttm_pool_alloc_basic_dma_addr ==============
[22:17:57] [PASSED] One page
[22:17:57] [PASSED] More than one page
[22:17:57] [PASSED] Above the allocation limit
[22:17:57] [PASSED] One page, with coherent DMA mappings enabled
[22:17:57] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[22:17:57] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[22:17:57] [PASSED] ttm_pool_alloc_order_caching_match
[22:17:57] [PASSED] ttm_pool_alloc_caching_mismatch
[22:17:57] [PASSED] ttm_pool_alloc_order_mismatch
[22:17:57] [PASSED] ttm_pool_free_dma_alloc
[22:17:57] [PASSED] ttm_pool_free_no_dma_alloc
[22:17:57] [PASSED] ttm_pool_fini_basic
[22:17:57] ==================== [PASSED] ttm_pool =====================
[22:17:57] ================ ttm_resource (8 subtests) =================
[22:17:57] ================= ttm_resource_init_basic =================
[22:17:57] [PASSED] Init resource in TTM_PL_SYSTEM
[22:17:57] [PASSED] Init resource in TTM_PL_VRAM
[22:17:57] [PASSED] Init resource in a private placement
[22:17:57] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[22:17:57] ============= [PASSED] ttm_resource_init_basic =============
[22:17:57] [PASSED] ttm_resource_init_pinned
[22:17:57] [PASSED] ttm_resource_fini_basic
[22:17:57] [PASSED] ttm_resource_manager_init_basic
[22:17:57] [PASSED] ttm_resource_manager_usage_basic
[22:17:57] [PASSED] ttm_resource_manager_set_used_basic
[22:17:57] [PASSED] ttm_sys_man_alloc_basic
[22:17:57] [PASSED] ttm_sys_man_free_basic
[22:17:57] ================== [PASSED] ttm_resource ===================
[22:17:57] =================== ttm_tt (15 subtests) ===================
[22:17:57] ==================== ttm_tt_init_basic ====================
[22:17:57] [PASSED] Page-aligned size
[22:17:57] [PASSED] Extra pages requested
[22:17:57] ================ [PASSED] ttm_tt_init_basic ================
[22:17:57] [PASSED] ttm_tt_init_misaligned
[22:17:57] [PASSED] ttm_tt_fini_basic
[22:17:57] [PASSED] ttm_tt_fini_sg
[22:17:57] [PASSED] ttm_tt_fini_shmem
[22:17:57] [PASSED] ttm_tt_create_basic
[22:17:57] [PASSED] ttm_tt_create_invalid_bo_type
[22:17:57] [PASSED] ttm_tt_create_ttm_exists
[22:17:57] [PASSED] ttm_tt_create_failed
[22:17:57] [PASSED] ttm_tt_destroy_basic
[22:17:57] [PASSED] ttm_tt_populate_null_ttm
[22:17:57] [PASSED] ttm_tt_populate_populated_ttm
[22:17:57] [PASSED] ttm_tt_unpopulate_basic
[22:17:57] [PASSED] ttm_tt_unpopulate_empty_ttm
[22:17:57] [PASSED] ttm_tt_swapin_basic
[22:17:57] ===================== [PASSED] ttm_tt ======================
[22:17:57] =================== ttm_bo (14 subtests) ===================
[22:17:57] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[22:17:57] [PASSED] Cannot be interrupted and sleeps
[22:17:57] [PASSED] Cannot be interrupted, locks straight away
[22:17:57] [PASSED] Can be interrupted, sleeps
[22:17:57] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[22:17:57] [PASSED] ttm_bo_reserve_locked_no_sleep
[22:17:57] [PASSED] ttm_bo_reserve_no_wait_ticket
[22:17:57] [PASSED] ttm_bo_reserve_double_resv
[22:17:57] [PASSED] ttm_bo_reserve_interrupted
[22:17:57] [PASSED] ttm_bo_reserve_deadlock
[22:17:57] [PASSED] ttm_bo_unreserve_basic
[22:17:57] [PASSED] ttm_bo_unreserve_pinned
[22:17:57] [PASSED] ttm_bo_unreserve_bulk
[22:17:57] [PASSED] ttm_bo_fini_basic
[22:17:57] [PASSED] ttm_bo_fini_shared_resv
[22:17:57] [PASSED] ttm_bo_pin_basic
[22:17:57] [PASSED] ttm_bo_pin_unpin_resource
[22:17:57] [PASSED] ttm_bo_multiple_pin_one_unpin
[22:17:57] ===================== [PASSED] ttm_bo ======================
[22:17:57] ============== ttm_bo_validate (22 subtests) ===============
[22:17:57] ============== ttm_bo_init_reserved_sys_man ===============
[22:17:57] [PASSED] Buffer object for userspace
[22:17:57] [PASSED] Kernel buffer object
[22:17:57] [PASSED] Shared buffer object
[22:17:57] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[22:17:57] ============== ttm_bo_init_reserved_mock_man ==============
[22:17:57] [PASSED] Buffer object for userspace
[22:17:57] [PASSED] Kernel buffer object
[22:17:57] [PASSED] Shared buffer object
[22:17:57] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[22:17:57] [PASSED] ttm_bo_init_reserved_resv
[22:17:57] ================== ttm_bo_validate_basic ==================
[22:17:57] [PASSED] Buffer object for userspace
[22:17:57] [PASSED] Kernel buffer object
[22:17:57] [PASSED] Shared buffer object
[22:17:57] ============== [PASSED] ttm_bo_validate_basic ==============
[22:17:57] [PASSED] ttm_bo_validate_invalid_placement
[22:17:57] ============= ttm_bo_validate_same_placement ==============
[22:17:57] [PASSED] System manager
[22:17:57] [PASSED] VRAM manager
[22:17:57] ========= [PASSED] ttm_bo_validate_same_placement ==========
[22:17:57] [PASSED] ttm_bo_validate_failed_alloc
[22:17:57] [PASSED] ttm_bo_validate_pinned
[22:17:57] [PASSED] ttm_bo_validate_busy_placement
[22:17:57] ================ ttm_bo_validate_multihop =================
[22:17:57] [PASSED] Buffer object for userspace
[22:17:57] [PASSED] Kernel buffer object
[22:17:57] [PASSED] Shared buffer object
[22:17:57] ============ [PASSED] ttm_bo_validate_multihop =============
[22:17:57] ========== ttm_bo_validate_no_placement_signaled ==========
[22:17:57] [PASSED] Buffer object in system domain, no page vector
[22:17:57] [PASSED] Buffer object in system domain with an existing page vector
[22:17:57] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[22:17:57] ======== ttm_bo_validate_no_placement_not_signaled ========
[22:17:57] [PASSED] Buffer object for userspace
[22:17:57] [PASSED] Kernel buffer object
[22:17:57] [PASSED] Shared buffer object
[22:17:57] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[22:17:57] [PASSED] ttm_bo_validate_move_fence_signaled
[22:17:57] ========= ttm_bo_validate_move_fence_not_signaled =========
[22:17:57] [PASSED] Waits for GPU
[22:17:57] [PASSED] Tries to lock straight away
[22:17:57] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[22:17:57] [PASSED] ttm_bo_validate_swapout
[22:17:57] [PASSED] ttm_bo_validate_happy_evict
[22:17:57] [PASSED] ttm_bo_validate_all_pinned_evict
[22:17:57] [PASSED] ttm_bo_validate_allowed_only_evict
[22:17:57] [PASSED] ttm_bo_validate_deleted_evict
[22:17:57] [PASSED] ttm_bo_validate_busy_domain_evict
[22:17:57] [PASSED] ttm_bo_validate_evict_gutting
[22:17:57] [PASSED] ttm_bo_validate_recrusive_evict
[22:17:57] ================= [PASSED] ttm_bo_validate =================
[22:17:57] ============================================================
[22:17:57] Testing complete. Ran 102 tests: passed: 102
[22:17:57] Elapsed time: 11.765s total, 1.726s configuring, 9.823s building, 0.185s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 37+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe: Add and use more KLV helpers (rev2)
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (14 preceding siblings ...)
2026-07-07 22:18 ` ✓ CI.KUnit: success " Patchwork
@ 2026-07-07 23:04 ` Patchwork
2026-07-08 0:20 ` ✓ Xe.CI.FULL: " Patchwork
` (12 subsequent siblings)
28 siblings, 0 replies; 37+ messages in thread
From: Patchwork @ 2026-07-07 23:04 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1490 bytes --]
== Series Details ==
Series: drm/xe: Add and use more KLV helpers (rev2)
URL : https://patchwork.freedesktop.org/series/169511/
State : success
== Summary ==
CI Bug Log - changes from xe-5361-46d1ee52cdded9f4ad5a200663acf8b799dbf525_BAT -> xe-pw-169511v2_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-169511v2_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_module_load@load:
- bat-wcl-1: [PASS][1] -> [ABORT][2] ([Intel XE#8543])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5361-46d1ee52cdded9f4ad5a200663acf8b799dbf525/bat-wcl-1/igt@xe_module_load@load.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/bat-wcl-1/igt@xe_module_load@load.html
[Intel XE#8543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8543
Build changes
-------------
* Linux: xe-5361-46d1ee52cdded9f4ad5a200663acf8b799dbf525 -> xe-pw-169511v2
IGT_8991: c5721520bb6611ab8fcbe27db0c120b72d25b99e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5361-46d1ee52cdded9f4ad5a200663acf8b799dbf525: 46d1ee52cdded9f4ad5a200663acf8b799dbf525
xe-pw-169511v2: 169511v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/index.html
[-- Attachment #2: Type: text/html, Size: 2055 bytes --]
^ permalink raw reply [flat|nested] 37+ messages in thread
* ✓ Xe.CI.FULL: success for drm/xe: Add and use more KLV helpers (rev2)
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (15 preceding siblings ...)
2026-07-07 23:04 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-07-08 0:20 ` Patchwork
2026-07-08 19:04 ` ✗ CI.checkpatch: warning for drm/xe: Add and use more KLV helpers (rev4) Patchwork
` (11 subsequent siblings)
28 siblings, 0 replies; 37+ messages in thread
From: Patchwork @ 2026-07-08 0:20 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 25233 bytes --]
== Series Details ==
Series: drm/xe: Add and use more KLV helpers (rev2)
URL : https://patchwork.freedesktop.org/series/169511/
State : success
== Summary ==
CI Bug Log - changes from xe-5361-46d1ee52cdded9f4ad5a200663acf8b799dbf525_FULL -> xe-pw-169511v2_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-169511v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#2370])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#2327]) +1 other test skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-9/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#7059] / [Intel XE#7085])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#1124]) +5 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#610] / [Intel XE#7387])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-9/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#7679]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-target-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#367]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-9/igt@kms_bw@linear-tiling-3-displays-target-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2887]) +6 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-5/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][9] -> [INCOMPLETE][10] ([Intel XE#7084] / [Intel XE#8150]) +1 other test incomplete
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5361-46d1ee52cdded9f4ad5a200663acf8b799dbf525/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#3432])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2252]) +4 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-9/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2325] / [Intel XE#7358])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-5/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][14] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-5/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2390] / [Intel XE#6974])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-9/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#6974])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-9/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2320]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2321] / [Intel XE#7355])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_dsc@dsc-basic-bigjoiner:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#8265]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-3/igt@kms_dsc@dsc-basic-bigjoiner.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3:
- shard-bmg: [PASS][20] -> [FAIL][21] ([Intel XE#3149] / [Intel XE#3321]) +1 other test fail
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5361-46d1ee52cdded9f4ad5a200663acf8b799dbf525/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html
* igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@b-edp1:
- shard-lnl: [PASS][22] -> [INCOMPLETE][23] ([Intel XE#8488]) +1 other test incomplete
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5361-46d1ee52cdded9f4ad5a200663acf8b799dbf525/shard-lnl-7/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@b-edp1.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-lnl-5/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@b-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#7178] / [Intel XE#7349])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#7178] / [Intel XE#7351])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#4141]) +5 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7061] / [Intel XE#7356]) +3 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2311]) +35 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2313]) +31 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@hdr-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7061]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-5/igt@kms_frontbuffer_tracking@hdr-abgr161616f-draw-mmap-wc.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#7591])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-a-plane-5:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#8303]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7283])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_pm_dc@dc3co-vpb-simulation@pr:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#8395]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-5/igt@kms_pm_dc@dc3co-vpb-simulation@pr.html
* igt@kms_pm_dc@dc3co-vpb-simulation@psr2:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#8396])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-5/igt@kms_pm_dc@dc3co-vpb-simulation@psr2.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#1489]) +4 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-9/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2387] / [Intel XE#7429])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-3/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-9/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2330] / [Intel XE#5813])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#3904] / [Intel XE#7342])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-9/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2413])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#1435])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-9/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_sharpness_filter@filter-scaler-downscale:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#6503])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-9/igt@kms_sharpness_filter@filter-scaler-downscale.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#1499])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-5/igt@kms_vrr@max-min.html
* igt@xe_evict@evict-small-multi-queue-cm:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#8370]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-9/igt@xe_evict@evict-small-multi-queue-cm.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2322] / [Intel XE#7372]) +4 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-3/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-prefetch:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#8374]) +5 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-5/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-prefetch.html
* igt@xe_exec_multi_queue@two-queues-basic-smem:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#8364]) +18 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-3/igt@xe_exec_multi_queue@two-queues-basic-smem.html
* igt@xe_exec_reset@multi-queue-long-spin-many-queue-switch:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#8369])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-9/igt@xe_exec_reset@multi-queue-long-spin-many-queue-switch.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#8378]) +4 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
- shard-bmg: [PASS][51] -> [ABORT][52] ([Intel XE#8007])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5361-46d1ee52cdded9f4ad5a200663acf8b799dbf525/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
* igt@xe_multigpu_svm@mgpu-migration-prefetch:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#6964])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-9/igt@xe_multigpu_svm@mgpu-migration-prefetch.html
* igt@xe_page_reclaim@many-vma-same-bo:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#7793]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-9/igt@xe_page_reclaim@many-vma-same-bo.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#5694] / [Intel XE#7370])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-5/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#579] / [Intel XE#7329] / [Intel XE#7517])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-9/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_prefetch_fault@prefetch-fault:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#7599])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-5/igt@xe_prefetch_fault@prefetch-fault.html
* igt@xe_query@multigpu-query-pxp-status:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#944]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-5/igt@xe_query@multigpu-query-pxp-status.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-lnl: [PASS][59] -> [ABORT][60] ([Intel XE#8007])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5361-46d1ee52cdded9f4ad5a200663acf8b799dbf525/shard-lnl-3/igt@xe_wedged@wedged-mode-toggle.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-lnl-2/igt@xe_wedged@wedged-mode-toggle.html
#### Possible fixes ####
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-bmg: [FAIL][61] ([Intel XE#3149] / [Intel XE#6266]) -> [PASS][62] +1 other test pass
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5361-46d1ee52cdded9f4ad5a200663acf8b799dbf525/shard-bmg-3/igt@kms_flip@2x-blocking-wf_vblank.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-6/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][63] ([Intel XE#301]) -> [PASS][64] +2 other tests pass
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5361-46d1ee52cdded9f4ad5a200663acf8b799dbf525/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init:
- shard-bmg: [ABORT][65] ([Intel XE#8007]) -> [PASS][66] +2 other tests pass
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5361-46d1ee52cdded9f4ad5a200663acf8b799dbf525/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
#### Warnings ####
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-lnl: [SKIP][67] ([Intel XE#309] / [Intel XE#7343] / [Intel XE#7935]) -> [SKIP][68] ([Intel XE#309] / [Intel XE#7343])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5361-46d1ee52cdded9f4ad5a200663acf8b799dbf525/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-lnl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][69] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][70] ([Intel XE#2426] / [Intel XE#5848])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5361-46d1ee52cdded9f4ad5a200663acf8b799dbf525/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7329
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7517
[Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591
[Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7935
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8303]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8303
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
[Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395
[Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396
[Intel XE#8488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8488
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-5361-46d1ee52cdded9f4ad5a200663acf8b799dbf525 -> xe-pw-169511v2
IGT_8991: c5721520bb6611ab8fcbe27db0c120b72d25b99e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5361-46d1ee52cdded9f4ad5a200663acf8b799dbf525: 46d1ee52cdded9f4ad5a200663acf8b799dbf525
xe-pw-169511v2: 169511v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v2/index.html
[-- Attachment #2: Type: text/html, Size: 27539 bytes --]
^ permalink raw reply [flat|nested] 37+ messages in thread
* [PATCH v3 09/13] drm/xe/tests: Add string encoding helper test
2026-07-07 22:08 ` [PATCH v2 09/13] drm/xe/tests: Add string encoding helper test Michal Wajdeczko
@ 2026-07-08 18:07 ` Michal Wajdeczko
0 siblings, 0 replies; 37+ messages in thread
From: Michal Wajdeczko @ 2026-07-08 18:07 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Michał Winiarski
Before we start using string to KLV encoding helper, add a simple
test to make sure it works as expected.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michał Winiarski <michal.winiarski@intel.com> #v1
---
v2: avoid using VLAs (Sashiko) and more (me)
v3: check correct pointer (Sashiko)
---
.../drm/xe/tests/xe_guc_klv_helpers_kunit.c | 84 +++++++++++++++++++
1 file changed, 84 insertions(+)
diff --git a/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c b/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c
index f87189ef13d5..cb4b182d88d0 100644
--- a/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c
+++ b/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c
@@ -84,10 +84,94 @@ static void test_encode_u64(struct kunit *test)
KUNIT_ASSERT_PTR_EQ(test, fail, xe_guc_klv_encode_u64(fail, ARRAY_SIZE(klvs), key, value));
}
+static u32 str_klv_size(const char *string)
+{
+ return GUC_KLV_LEN_MIN + to_num_dwords(strlen(string) + 1);
+}
+
+static void test_encode_string(struct kunit *test)
+{
+ size_t longest_str = to_num_bytes(FIELD_MAX(GUC_KLV_0_LEN)) - 1;
+ u32 avail = GUC_KLV_LEN_MIN + FIELD_MAX(GUC_KLV_0_LEN) + 1;
+ const char *string = "abcdefghijklmnopqrstvwxyz";
+ u16 key = TEST_KEY;
+ u32 *klvs;
+ u32 *next;
+ char *buf;
+ u32 n;
+
+ klvs = kunit_kcalloc(test, avail, sizeof(u32), GFP_KERNEL);
+ KUNIT_ASSERT_NOT_ERR_OR_NULL(test, klvs);
+
+ buf = kunit_kzalloc(test, longest_str + 2, GFP_KERNEL);
+ KUNIT_ASSERT_NOT_ERR_OR_NULL(test, buf);
+
+ /* empty string, no space, must fail */
+ for (n = 0; n < str_klv_size(""); n++) {
+ klvs[0] = TEST_PAD;
+ KUNIT_EXPECT_PTR_EQ(test, ERR_PTR(-ENOSPC),
+ xe_guc_klv_encode_string(klvs, n, key, ""));
+ KUNIT_EXPECT_EQ(test, klvs[0], TEST_PAD);
+ }
+
+ /* empty string, must pass */
+ KUNIT_EXPECT_PTR_EQ(test, klvs + str_klv_size(""),
+ xe_guc_klv_encode_string(klvs, str_klv_size(""), key, ""));
+ KUNIT_EXPECT_PTR_EQ(test, klvs + str_klv_size(""),
+ xe_guc_klv_encode_string(klvs, avail, key, ""));
+
+ /* demo string, no space, must fail */
+ for (n = 0; n < str_klv_size(string); n++) {
+ klvs[0] = TEST_PAD;
+ KUNIT_EXPECT_PTR_EQ(test, ERR_PTR(-ENOSPC),
+ xe_guc_klv_encode_string(klvs, n, key, string));
+ KUNIT_EXPECT_EQ(test, klvs[0], TEST_PAD);
+ }
+
+ /* different string len, must pass */
+ for (n = 0; n <= strlen(string); n++) {
+ strscpy(buf, string, n + 1);
+ kunit_info(test, "%u: '%s'\n", n, buf);
+ KUNIT_ASSERT_EQ(test, n, strlen(buf));
+ memset32(klvs, TEST_PAD, avail);
+
+ next = xe_guc_klv_encode_string(klvs, str_klv_size(buf), key, buf);
+ KUNIT_ASSERT_NOT_ERR_OR_NULL(test, next);
+ KUNIT_EXPECT_PTR_EQ(test, next, klvs + str_klv_size(buf));
+ KUNIT_EXPECT_STREQ_MSG(test, buf, (char *)(klvs + GUC_KLV_LEN_MIN), "n=%u", n);
+ kunit_info(test, "%u: %*ph\n", n, (int)to_num_bytes(next - klvs), klvs);
+ KUNIT_EXPECT_NE(test, *(next - 1), TEST_PAD);
+ KUNIT_ASSERT_EQ(test, *next, TEST_PAD);
+
+ /* bigger buf doesn't matter */
+ KUNIT_EXPECT_PTR_EQ(test,
+ xe_guc_klv_encode_string(klvs, str_klv_size(buf), key, buf),
+ xe_guc_klv_encode_string(klvs, avail, key, buf));
+ }
+
+ /* don't crash if already failed */
+ KUNIT_EXPECT_PTR_EQ(test, ERR_PTR(-EROFS),
+ xe_guc_klv_encode_string(ERR_PTR(-EROFS), avail, key, ""));
+
+ /* too long string, must fail */
+ memset(buf, 'X', longest_str + 1);
+ buf[longest_str + 1] = '\0';
+ KUNIT_EXPECT_LT(test, longest_str, strlen(buf));
+ KUNIT_EXPECT_PTR_EQ(test, ERR_PTR(-E2BIG),
+ xe_guc_klv_encode_string(klvs, avail, key, buf));
+
+ /* longest string, should pass */
+ buf[longest_str] = '\0';
+ KUNIT_EXPECT_EQ(test, longest_str, strlen(buf));
+ KUNIT_EXPECT_PTR_EQ(test, klvs + str_klv_size(buf),
+ xe_guc_klv_encode_string(klvs, avail, key, buf));
+}
+
static struct kunit_case guc_klv_helpers_test_cases[] = {
KUNIT_CASE(test_count),
KUNIT_CASE(test_encode_u32),
KUNIT_CASE(test_encode_u64),
+ KUNIT_CASE(test_encode_string),
{}
};
--
2.47.1
^ permalink raw reply related [flat|nested] 37+ messages in thread
* [PATCH v3 12/13] drm/xe/tests: Add migration packet test
2026-07-07 22:08 ` [PATCH v2 12/13] drm/xe/tests: Add migration packet test Michal Wajdeczko
@ 2026-07-08 18:09 ` Michal Wajdeczko
0 siblings, 0 replies; 37+ messages in thread
From: Michal Wajdeczko @ 2026-07-08 18:09 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Michał Winiarski
One of our migration data packet (descriptor) is based on the KLV
encoding. Add a simple descriptor initialization test, as we plan
to use new KLV helper functions there.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michał Winiarski <michal.winiarski@intel.com>
---
v2: avoid KUNIT_ASSERT under mutex (Sashiko/Michal)
v3: also avoid kunit_skip (Sashiko)
---
.../gpu/drm/xe/tests/xe_sriov_packet_kunit.c | 89 +++++++++++++++++++
drivers/gpu/drm/xe/xe_sriov_packet.c | 4 +
2 files changed, 93 insertions(+)
create mode 100644 drivers/gpu/drm/xe/tests/xe_sriov_packet_kunit.c
diff --git a/drivers/gpu/drm/xe/tests/xe_sriov_packet_kunit.c b/drivers/gpu/drm/xe/tests/xe_sriov_packet_kunit.c
new file mode 100644
index 000000000000..c2720b461dee
--- /dev/null
+++ b/drivers/gpu/drm/xe/tests/xe_sriov_packet_kunit.c
@@ -0,0 +1,89 @@
+// SPDX-License-Identifier: GPL-2.0 AND MIT
+/*
+ * Copyright © 2026 Intel Corporation
+ */
+
+#include <kunit/test.h>
+#include <kunit/test-bug.h>
+
+#include "xe_device.h"
+#include "xe_guc_klv_helpers.h"
+#include "xe_kunit_helpers.h"
+#include "xe_pci_test.h"
+
+#define TEST_VF VFID(1)
+
+static int sriov_packet_test_init(struct kunit *test)
+{
+ struct xe_pci_fake_data fake = {
+ .sriov_mode = XE_SRIOV_MODE_PF,
+ .platform = XE_PANTHERLAKE, /* we need MEMIRQ */
+ .subplatform = XE_SUBPLATFORM_NONE,
+ .graphics_verx100 = 3000,
+ .media_verx100 = 3000,
+ };
+ struct xe_device *xe;
+
+ test->priv = &fake;
+ xe_kunit_helper_xe_device_test_init(test);
+ xe = test->priv;
+
+ /* pretend we can support at least VF1 */
+ xe->sriov.pf.device_total_vfs = 1;
+ xe->sriov.pf.driver_max_vfs = 1;
+
+ KUNIT_ASSERT_EQ(test, 0, xe_sriov_init(xe));
+ KUNIT_ASSERT_TRUE(test, xe_sriov_pf_migration_supported(xe));
+
+ return 0;
+}
+
+static void test_descriptor_init(struct kunit *test)
+{
+ struct xe_device *xe = test->priv;
+ struct xe_sriov_packet **desc;
+
+ /* note: with lock held we should avoid KUNIT_ASSERT() */
+ guard(mutex)(pf_migration_mutex(xe, TEST_VF));
+
+ KUNIT_EXPECT_EQ(test, 0, pf_descriptor_init(xe, TEST_VF));
+ desc = pf_pick_descriptor(xe, TEST_VF);
+ KUNIT_EXPECT_NOT_ERR_OR_NULL(test, *desc);
+ if (!*desc)
+ return;
+ KUNIT_EXPECT_NE(test, (*desc)->hdr.version, 0);
+ KUNIT_EXPECT_EQ(test, (*desc)->hdr.version, XE_SRIOV_PACKET_SUPPORTED_VERSION);
+ KUNIT_EXPECT_EQ(test, (*desc)->hdr.type, XE_SRIOV_PACKET_TYPE_DESCRIPTOR);
+ KUNIT_EXPECT_NE(test, (*desc)->hdr.size, 0);
+ KUNIT_EXPECT_NOT_ERR_OR_NULL(test, (*desc)->vaddr);
+ if (!(*desc)->vaddr)
+ return;
+ KUNIT_EXPECT_EQ(test, 0, xe_sriov_packet_process_descriptor(xe, TEST_VF, *desc));
+
+ switch ((*desc)->hdr.version) {
+ case 1:
+ /* v1 is KLV based */
+ KUNIT_EXPECT_TRUE(test, IS_ALIGNED((*desc)->hdr.size, sizeof(u32)));
+ /* v1 has at least DEVID and REVID KLVs */
+ KUNIT_EXPECT_LE(test, 2,
+ xe_guc_klv_count((*desc)->vaddr,
+ (*desc)->hdr.size / sizeof(u32)));
+ break;
+ default:
+ kunit_mark_skipped(test, "no test code for version %u\n", (*desc)->hdr.version);
+ return;
+ }
+}
+
+static struct kunit_case sriov_packet_test_cases[] = {
+ KUNIT_CASE(test_descriptor_init),
+ {}
+};
+
+static struct kunit_suite sriov_packet_suite = {
+ .name = "sriov_packet",
+ .test_cases = sriov_packet_test_cases,
+ .init = sriov_packet_test_init,
+};
+
+kunit_test_suite(sriov_packet_suite);
diff --git a/drivers/gpu/drm/xe/xe_sriov_packet.c b/drivers/gpu/drm/xe/xe_sriov_packet.c
index e581e8e6c1d1..558a3697d639 100644
--- a/drivers/gpu/drm/xe/xe_sriov_packet.c
+++ b/drivers/gpu/drm/xe/xe_sriov_packet.c
@@ -516,3 +516,7 @@ int xe_sriov_packet_save_init(struct xe_device *xe, unsigned int vfid)
return 0;
}
+
+#if IS_BUILTIN(CONFIG_DRM_XE_KUNIT_TEST)
+#include "tests/xe_sriov_packet_kunit.c"
+#endif
--
2.47.1
^ permalink raw reply related [flat|nested] 37+ messages in thread
* ✗ CI.checkpatch: warning for drm/xe: Add and use more KLV helpers (rev4)
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (16 preceding siblings ...)
2026-07-08 0:20 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-07-08 19:04 ` Patchwork
2026-07-08 19:05 ` ✓ CI.KUnit: success " Patchwork
` (10 subsequent siblings)
28 siblings, 0 replies; 37+ messages in thread
From: Patchwork @ 2026-07-08 19:04 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Add and use more KLV helpers (rev4)
URL : https://patchwork.freedesktop.org/series/169511/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
061140b9bc586ae7f40abc1249c97e1cc72d1b9d
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit a1ff64d6be31e0940ac4a3e65ada420a5779a0a7
Author: Michal Wajdeczko <michal.wajdeczko@intel.com>
Date: Wed Jul 8 00:08:15 2026 +0200
drm/xe/pf: Handle migration descriptor using KLV helpers
As we plan to add more KLVs to the migration descriptor packet,
to simplify such extensions and avoid coding errors, start using
our KLV helpers for packet preparing and parsing.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michał Winiarski <michal.winiarski@intel.com>
+ /mt/dim checkpatch d2b771941e0c8aec7b6648b0c47d81161136944d drm-intel
8a0f0a06101d drm/xe/guc: Allow to print single KLV
71902ecb73d5 drm/xe/guc: Prepare to print group KLVs
35206c62741c drm/xe/guc: Add basic KLV encoding helpers
f42e93e581d7 drm/xe/guc: Add string KLV encoding helper
9aebc029b196 drm/xe/guc: Add object KLV encoding helper
7b10504c85ee drm/xe/guc: Add KLV parsing helper
b9af29308ad7 drm/xe/guc: Formalize Reserved KLVs
-:51: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#51:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 106 lines checked
bec44afc460a drm/xe/tests: Add GuC KLV helpers basic tests
-: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, 106 lines checked
026977e61aad drm/xe/tests: Add string encoding helper test
177f2a2a40d6 drm/xe/tests: Add object encoding helper test
03a0924a10cf drm/xe/tests: Add GuC KLV printer test
cf59f24cbd98 drm/xe/tests: Add migration packet test
-:17: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#17:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 96 lines checked
a1ff64d6be31 drm/xe/pf: Handle migration descriptor using KLV helpers
^ permalink raw reply [flat|nested] 37+ messages in thread
* ✓ CI.KUnit: success for drm/xe: Add and use more KLV helpers (rev4)
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (17 preceding siblings ...)
2026-07-08 19:04 ` ✗ CI.checkpatch: warning for drm/xe: Add and use more KLV helpers (rev4) Patchwork
@ 2026-07-08 19:05 ` Patchwork
2026-07-08 19:55 ` ✓ Xe.CI.BAT: " Patchwork
` (9 subsequent siblings)
28 siblings, 0 replies; 37+ messages in thread
From: Patchwork @ 2026-07-08 19:05 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Add and use more KLV helpers (rev4)
URL : https://patchwork.freedesktop.org/series/169511/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[19:04:21] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:04:25] 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
../drivers/gpu/drm/xe/xe_pt.c:1430:13: warning: ‘xe_pt_svm_userptr_notifier_lock’ defined but not used [-Wunused-function]
1430 | static void xe_pt_svm_userptr_notifier_lock(struct xe_vm *vm)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[19:04:57] Starting KUnit Kernel (1/1)...
[19:04:57] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:04:57] ================== guc_buf (11 subtests) ===================
[19:04:57] [PASSED] test_smallest
[19:04:57] [PASSED] test_largest
[19:04:57] [PASSED] test_granular
[19:04:57] [PASSED] test_unique
[19:04:57] [PASSED] test_overlap
[19:04:57] [PASSED] test_reusable
[19:04:57] [PASSED] test_too_big
[19:04:57] [PASSED] test_flush
[19:04:57] [PASSED] test_lookup
[19:04:57] [PASSED] test_data
[19:04:57] [PASSED] test_class
[19:04:57] ===================== [PASSED] guc_buf =====================
[19:04:57] =================== guc_dbm (7 subtests) ===================
[19:04:57] [PASSED] test_empty
[19:04:57] [PASSED] test_default
[19:04:57] ======================== test_size ========================
[19:04:57] [PASSED] 4
[19:04:57] [PASSED] 8
[19:04:57] [PASSED] 32
[19:04:57] [PASSED] 256
[19:04:57] ==================== [PASSED] test_size ====================
[19:04:57] ======================= test_reuse ========================
[19:04:57] [PASSED] 4
[19:04:57] [PASSED] 8
[19:04:57] [PASSED] 32
[19:04:57] [PASSED] 256
[19:04:57] =================== [PASSED] test_reuse ====================
[19:04:57] =================== test_range_overlap ====================
[19:04:57] [PASSED] 4
[19:04:57] [PASSED] 8
[19:04:57] [PASSED] 32
[19:04:57] [PASSED] 256
[19:04:57] =============== [PASSED] test_range_overlap ================
[19:04:57] =================== test_range_compact ====================
[19:04:57] [PASSED] 4
[19:04:57] [PASSED] 8
[19:04:57] [PASSED] 32
[19:04:57] [PASSED] 256
[19:04:57] =============== [PASSED] test_range_compact ================
[19:04:57] ==================== test_range_spare =====================
[19:04:57] [PASSED] 4
[19:04:57] [PASSED] 8
[19:04:57] [PASSED] 32
[19:04:57] [PASSED] 256
[19:04:57] ================ [PASSED] test_range_spare =================
[19:04:57] ===================== [PASSED] guc_dbm =====================
[19:04:57] =================== guc_idm (6 subtests) ===================
[19:04:57] [PASSED] bad_init
[19:04:57] [PASSED] no_init
[19:04:57] [PASSED] init_fini
[19:04:57] [PASSED] check_used
[19:04:57] [PASSED] check_quota
[19:04:57] [PASSED] check_all
[19:04:57] ===================== [PASSED] guc_idm =====================
[19:04:57] =============== guc_klv_helpers (9 subtests) ===============
[19:04:57] [PASSED] test_count
[19:04:57] [PASSED] test_encode_u32
[19:04:57] [PASSED] test_encode_u64
[19:04:57] [PASSED] test_encode_string
[19:04:57] [PASSED] test_encode_object_raw
[19:04:57] [PASSED] test_encode_object_klv
[19:04:57] [PASSED] test_encode_object_nested
[19:04:57] [PASSED] test_encode_object_basic
[19:04:57] [PASSED] test_print
[19:04:57] ================= [PASSED] guc_klv_helpers =================
[19:04:57] ================== no_relay (3 subtests) ===================
[19:04:57] [PASSED] xe_drops_guc2pf_if_not_ready
[19:04:57] [PASSED] xe_drops_guc2vf_if_not_ready
[19:04:57] [PASSED] xe_rejects_send_if_not_ready
[19:04:57] ==================== [PASSED] no_relay =====================
[19:04:57] ================== pf_relay (14 subtests) ==================
[19:04:57] [PASSED] pf_rejects_guc2pf_too_short
[19:04:57] [PASSED] pf_rejects_guc2pf_too_long
[19:04:57] [PASSED] pf_rejects_guc2pf_no_payload
[19:04:57] [PASSED] pf_fails_no_payload
[19:04:57] [PASSED] pf_fails_bad_origin
[19:04:57] [PASSED] pf_fails_bad_type
[19:04:57] [PASSED] pf_txn_reports_error
[19:04:57] [PASSED] pf_txn_sends_pf2guc
[19:04:57] [PASSED] pf_sends_pf2guc
[19:04:57] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[19:04:57] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[19:04:57] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[19:04:57] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[19:04:57] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[19:04:57] ==================== [PASSED] pf_relay =====================
[19:04:57] ================== vf_relay (3 subtests) ===================
[19:04:57] [PASSED] vf_rejects_guc2vf_too_short
[19:04:57] [PASSED] vf_rejects_guc2vf_too_long
[19:04:57] [PASSED] vf_rejects_guc2vf_no_payload
[19:04:57] ==================== [PASSED] vf_relay =====================
[19:04:57] ================ pf_gt_config (9 subtests) =================
[19:04:57] [PASSED] fair_contexts_1vf
[19:04:57] [PASSED] fair_doorbells_1vf
[19:04:57] [PASSED] fair_ggtt_1vf
[19:04:57] ====================== fair_vram_1vf ======================
[19:04:57] [PASSED] 3.50 GiB
[19:04:57] [PASSED] 11.5 GiB
[19:04:57] [PASSED] 15.5 GiB
[19:04:57] [PASSED] 31.5 GiB
[19:04:57] [PASSED] 63.5 GiB
[19:04:57] [PASSED] 1.91 GiB
[19:04:57] ================== [PASSED] fair_vram_1vf ==================
[19:04:57] ================ fair_vram_1vf_admin_only =================
[19:04:57] [PASSED] 3.50 GiB
[19:04:57] [PASSED] 11.5 GiB
[19:04:57] [PASSED] 15.5 GiB
[19:04:57] [PASSED] 31.5 GiB
[19:04:57] [PASSED] 63.5 GiB
[19:04:57] [PASSED] 1.91 GiB
[19:04:57] ============ [PASSED] fair_vram_1vf_admin_only =============
[19:04:57] ====================== fair_contexts ======================
[19:04:57] [PASSED] 1 VF
[19:04:57] [PASSED] 2 VFs
[19:04:57] [PASSED] 3 VFs
[19:04:57] [PASSED] 4 VFs
[19:04:57] [PASSED] 5 VFs
[19:04:57] [PASSED] 6 VFs
[19:04:57] [PASSED] 7 VFs
[19:04:57] [PASSED] 8 VFs
[19:04:57] [PASSED] 9 VFs
[19:04:57] [PASSED] 10 VFs
[19:04:57] [PASSED] 11 VFs
[19:04:57] [PASSED] 12 VFs
[19:04:57] [PASSED] 13 VFs
[19:04:57] [PASSED] 14 VFs
[19:04:57] [PASSED] 15 VFs
[19:04:57] [PASSED] 16 VFs
[19:04:57] [PASSED] 17 VFs
[19:04:57] [PASSED] 18 VFs
[19:04:57] [PASSED] 19 VFs
[19:04:57] [PASSED] 20 VFs
[19:04:57] [PASSED] 21 VFs
[19:04:57] [PASSED] 22 VFs
[19:04:57] [PASSED] 23 VFs
[19:04:57] [PASSED] 24 VFs
[19:04:57] [PASSED] 25 VFs
[19:04:57] [PASSED] 26 VFs
[19:04:57] [PASSED] 27 VFs
[19:04:57] [PASSED] 28 VFs
[19:04:57] [PASSED] 29 VFs
[19:04:57] [PASSED] 30 VFs
[19:04:57] [PASSED] 31 VFs
[19:04:57] [PASSED] 32 VFs
[19:04:57] [PASSED] 33 VFs
[19:04:57] [PASSED] 34 VFs
[19:04:57] [PASSED] 35 VFs
[19:04:57] [PASSED] 36 VFs
[19:04:57] [PASSED] 37 VFs
[19:04:57] [PASSED] 38 VFs
[19:04:57] [PASSED] 39 VFs
[19:04:57] [PASSED] 40 VFs
[19:04:57] [PASSED] 41 VFs
[19:04:57] [PASSED] 42 VFs
[19:04:57] [PASSED] 43 VFs
[19:04:57] [PASSED] 44 VFs
[19:04:57] [PASSED] 45 VFs
[19:04:57] [PASSED] 46 VFs
[19:04:57] [PASSED] 47 VFs
[19:04:57] [PASSED] 48 VFs
[19:04:57] [PASSED] 49 VFs
[19:04:57] [PASSED] 50 VFs
[19:04:57] [PASSED] 51 VFs
[19:04:57] [PASSED] 52 VFs
[19:04:57] [PASSED] 53 VFs
[19:04:57] [PASSED] 54 VFs
[19:04:57] [PASSED] 55 VFs
[19:04:57] [PASSED] 56 VFs
[19:04:57] [PASSED] 57 VFs
[19:04:57] [PASSED] 58 VFs
[19:04:57] [PASSED] 59 VFs
[19:04:57] [PASSED] 60 VFs
[19:04:57] [PASSED] 61 VFs
[19:04:57] [PASSED] 62 VFs
[19:04:57] [PASSED] 63 VFs
[19:04:57] ================== [PASSED] fair_contexts ==================
[19:04:57] ===================== fair_doorbells ======================
[19:04:57] [PASSED] 1 VF
[19:04:57] [PASSED] 2 VFs
[19:04:57] [PASSED] 3 VFs
[19:04:57] [PASSED] 4 VFs
[19:04:57] [PASSED] 5 VFs
[19:04:57] [PASSED] 6 VFs
[19:04:57] [PASSED] 7 VFs
[19:04:57] [PASSED] 8 VFs
[19:04:57] [PASSED] 9 VFs
[19:04:57] [PASSED] 10 VFs
[19:04:57] [PASSED] 11 VFs
[19:04:57] [PASSED] 12 VFs
[19:04:57] [PASSED] 13 VFs
[19:04:57] [PASSED] 14 VFs
[19:04:57] [PASSED] 15 VFs
[19:04:57] [PASSED] 16 VFs
[19:04:57] [PASSED] 17 VFs
[19:04:57] [PASSED] 18 VFs
[19:04:57] [PASSED] 19 VFs
[19:04:57] [PASSED] 20 VFs
[19:04:57] [PASSED] 21 VFs
[19:04:57] [PASSED] 22 VFs
[19:04:57] [PASSED] 23 VFs
[19:04:57] [PASSED] 24 VFs
[19:04:57] [PASSED] 25 VFs
[19:04:57] [PASSED] 26 VFs
[19:04:57] [PASSED] 27 VFs
[19:04:57] [PASSED] 28 VFs
[19:04:57] [PASSED] 29 VFs
[19:04:57] [PASSED] 30 VFs
[19:04:57] [PASSED] 31 VFs
[19:04:57] [PASSED] 32 VFs
[19:04:57] [PASSED] 33 VFs
[19:04:57] [PASSED] 34 VFs
[19:04:57] [PASSED] 35 VFs
[19:04:57] [PASSED] 36 VFs
[19:04:57] [PASSED] 37 VFs
[19:04:57] [PASSED] 38 VFs
[19:04:57] [PASSED] 39 VFs
[19:04:57] [PASSED] 40 VFs
[19:04:57] [PASSED] 41 VFs
[19:04:57] [PASSED] 42 VFs
[19:04:57] [PASSED] 43 VFs
[19:04:57] [PASSED] 44 VFs
[19:04:57] [PASSED] 45 VFs
[19:04:57] [PASSED] 46 VFs
[19:04:57] [PASSED] 47 VFs
[19:04:57] [PASSED] 48 VFs
[19:04:57] [PASSED] 49 VFs
[19:04:57] [PASSED] 50 VFs
[19:04:57] [PASSED] 51 VFs
[19:04:57] [PASSED] 52 VFs
[19:04:57] [PASSED] 53 VFs
[19:04:57] [PASSED] 54 VFs
[19:04:57] [PASSED] 55 VFs
[19:04:57] [PASSED] 56 VFs
[19:04:57] [PASSED] 57 VFs
[19:04:57] [PASSED] 58 VFs
[19:04:57] [PASSED] 59 VFs
[19:04:57] [PASSED] 60 VFs
[19:04:57] [PASSED] 61 VFs
[19:04:57] [PASSED] 62 VFs
[19:04:57] [PASSED] 63 VFs
[19:04:57] ================= [PASSED] fair_doorbells ==================
[19:04:57] ======================== fair_ggtt ========================
[19:04:57] [PASSED] 1 VF
[19:04:57] [PASSED] 2 VFs
[19:04:57] [PASSED] 3 VFs
[19:04:57] [PASSED] 4 VFs
[19:04:57] [PASSED] 5 VFs
[19:04:57] [PASSED] 6 VFs
[19:04:57] [PASSED] 7 VFs
[19:04:57] [PASSED] 8 VFs
[19:04:57] [PASSED] 9 VFs
[19:04:57] [PASSED] 10 VFs
[19:04:57] [PASSED] 11 VFs
[19:04:57] [PASSED] 12 VFs
[19:04:57] [PASSED] 13 VFs
[19:04:57] [PASSED] 14 VFs
[19:04:57] [PASSED] 15 VFs
[19:04:57] [PASSED] 16 VFs
[19:04:57] [PASSED] 17 VFs
[19:04:57] [PASSED] 18 VFs
[19:04:57] [PASSED] 19 VFs
[19:04:57] [PASSED] 20 VFs
[19:04:57] [PASSED] 21 VFs
[19:04:57] [PASSED] 22 VFs
[19:04:57] [PASSED] 23 VFs
[19:04:57] [PASSED] 24 VFs
[19:04:57] [PASSED] 25 VFs
[19:04:57] [PASSED] 26 VFs
[19:04:57] [PASSED] 27 VFs
[19:04:57] [PASSED] 28 VFs
[19:04:57] [PASSED] 29 VFs
[19:04:57] [PASSED] 30 VFs
[19:04:57] [PASSED] 31 VFs
[19:04:57] [PASSED] 32 VFs
[19:04:57] [PASSED] 33 VFs
[19:04:57] [PASSED] 34 VFs
[19:04:57] [PASSED] 35 VFs
[19:04:57] [PASSED] 36 VFs
[19:04:57] [PASSED] 37 VFs
[19:04:57] [PASSED] 38 VFs
[19:04:57] [PASSED] 39 VFs
[19:04:57] [PASSED] 40 VFs
[19:04:57] [PASSED] 41 VFs
[19:04:57] [PASSED] 42 VFs
[19:04:57] [PASSED] 43 VFs
[19:04:57] [PASSED] 44 VFs
[19:04:57] [PASSED] 45 VFs
[19:04:57] [PASSED] 46 VFs
[19:04:57] [PASSED] 47 VFs
[19:04:57] [PASSED] 48 VFs
[19:04:57] [PASSED] 49 VFs
[19:04:57] [PASSED] 50 VFs
[19:04:57] [PASSED] 51 VFs
[19:04:57] [PASSED] 52 VFs
[19:04:57] [PASSED] 53 VFs
[19:04:57] [PASSED] 54 VFs
[19:04:57] [PASSED] 55 VFs
[19:04:57] [PASSED] 56 VFs
[19:04:57] [PASSED] 57 VFs
[19:04:57] [PASSED] 58 VFs
[19:04:57] [PASSED] 59 VFs
[19:04:57] [PASSED] 60 VFs
[19:04:57] [PASSED] 61 VFs
[19:04:57] [PASSED] 62 VFs
[19:04:57] [PASSED] 63 VFs
[19:04:57] ==================== [PASSED] fair_ggtt ====================
[19:04:57] ======================== fair_vram ========================
[19:04:57] [PASSED] 1 VF
[19:04:57] [PASSED] 2 VFs
[19:04:57] [PASSED] 3 VFs
[19:04:57] [PASSED] 4 VFs
[19:04:57] [PASSED] 5 VFs
[19:04:57] [PASSED] 6 VFs
[19:04:57] [PASSED] 7 VFs
[19:04:57] [PASSED] 8 VFs
[19:04:57] [PASSED] 9 VFs
[19:04:57] [PASSED] 10 VFs
[19:04:57] [PASSED] 11 VFs
[19:04:57] [PASSED] 12 VFs
[19:04:57] [PASSED] 13 VFs
[19:04:57] [PASSED] 14 VFs
[19:04:57] [PASSED] 15 VFs
[19:04:57] [PASSED] 16 VFs
[19:04:57] [PASSED] 17 VFs
[19:04:57] [PASSED] 18 VFs
[19:04:57] [PASSED] 19 VFs
[19:04:57] [PASSED] 20 VFs
[19:04:57] [PASSED] 21 VFs
[19:04:57] [PASSED] 22 VFs
[19:04:57] [PASSED] 23 VFs
[19:04:57] [PASSED] 24 VFs
[19:04:57] [PASSED] 25 VFs
[19:04:57] [PASSED] 26 VFs
[19:04:57] [PASSED] 27 VFs
[19:04:57] [PASSED] 28 VFs
[19:04:57] [PASSED] 29 VFs
[19:04:57] [PASSED] 30 VFs
[19:04:57] [PASSED] 31 VFs
[19:04:57] [PASSED] 32 VFs
[19:04:57] [PASSED] 33 VFs
[19:04:57] [PASSED] 34 VFs
[19:04:57] [PASSED] 35 VFs
[19:04:57] [PASSED] 36 VFs
[19:04:57] [PASSED] 37 VFs
[19:04:57] [PASSED] 38 VFs
[19:04:57] [PASSED] 39 VFs
[19:04:57] [PASSED] 40 VFs
[19:04:57] [PASSED] 41 VFs
[19:04:57] [PASSED] 42 VFs
[19:04:57] [PASSED] 43 VFs
[19:04:57] [PASSED] 44 VFs
[19:04:57] [PASSED] 45 VFs
[19:04:57] [PASSED] 46 VFs
[19:04:57] [PASSED] 47 VFs
[19:04:57] [PASSED] 48 VFs
[19:04:57] [PASSED] 49 VFs
[19:04:57] [PASSED] 50 VFs
[19:04:57] [PASSED] 51 VFs
[19:04:57] [PASSED] 52 VFs
[19:04:57] [PASSED] 53 VFs
[19:04:57] [PASSED] 54 VFs
[19:04:57] [PASSED] 55 VFs
[19:04:57] [PASSED] 56 VFs
[19:04:57] [PASSED] 57 VFs
[19:04:57] [PASSED] 58 VFs
[19:04:57] [PASSED] 59 VFs
[19:04:57] [PASSED] 60 VFs
[19:04:57] [PASSED] 61 VFs
[19:04:57] [PASSED] 62 VFs
[19:04:57] [PASSED] 63 VFs
[19:04:57] ==================== [PASSED] fair_vram ====================
[19:04:57] ================== [PASSED] pf_gt_config ===================
[19:04:57] ===================== lmtt (1 subtest) =====================
[19:04:57] ======================== test_ops =========================
[19:04:57] [PASSED] 2-level
[19:04:57] [PASSED] multi-level
[19:04:57] ==================== [PASSED] test_ops =====================
[19:04:57] ====================== [PASSED] lmtt =======================
[19:04:57] ================= sriov_packet (1 subtest) =================
[19:04:57] [PASSED] test_descriptor_init
[19:04:57] ================== [PASSED] sriov_packet ===================
[19:04:57] ================= pf_service (11 subtests) =================
[19:04:57] [PASSED] pf_negotiate_any
[19:04:57] [PASSED] pf_negotiate_base_match
[19:04:57] [PASSED] pf_negotiate_base_newer
[19:04:57] [PASSED] pf_negotiate_base_next
[19:04:57] [SKIPPED] pf_negotiate_base_older (no older minor)
[19:04:57] [PASSED] pf_negotiate_base_prev
[19:04:57] [PASSED] pf_negotiate_latest_match
[19:04:57] [PASSED] pf_negotiate_latest_newer
[19:04:57] [PASSED] pf_negotiate_latest_next
[19:04:57] [SKIPPED] pf_negotiate_latest_older (no older minor)
[19:04:57] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[19:04:57] =================== [PASSED] pf_service ====================
[19:04:57] ================= xe_guc_g2g (2 subtests) ==================
[19:04:57] ============== xe_live_guc_g2g_kunit_default ==============
[19:04:57] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[19:04:57] ============== xe_live_guc_g2g_kunit_allmem ===============
[19:04:57] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[19:04:57] =================== [SKIPPED] xe_guc_g2g ===================
[19:04:57] =================== xe_mocs (2 subtests) ===================
[19:04:57] ================ xe_live_mocs_kernel_kunit ================
[19:04:57] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[19:04:57] ================ xe_live_mocs_reset_kunit =================
[19:04:57] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[19:04:57] ==================== [SKIPPED] xe_mocs =====================
[19:04:57] ================= xe_migrate (2 subtests) ==================
[19:04:57] ================= xe_migrate_sanity_kunit =================
[19:04:57] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[19:04:57] ================== xe_validate_ccs_kunit ==================
[19:04:57] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[19:04:57] =================== [SKIPPED] xe_migrate ===================
[19:04:57] ================== xe_dma_buf (1 subtest) ==================
[19:04:57] ==================== xe_dma_buf_kunit =====================
[19:04:57] ================ [SKIPPED] xe_dma_buf_kunit ================
[19:04:57] =================== [SKIPPED] xe_dma_buf ===================
[19:04:57] ================= xe_bo_shrink (1 subtest) =================
[19:04:57] =================== xe_bo_shrink_kunit ====================
[19:04:57] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[19:04:57] ================== [SKIPPED] xe_bo_shrink ==================
[19:04:57] ==================== xe_bo (2 subtests) ====================
[19:04:57] ================== xe_ccs_migrate_kunit ===================
[19:04:57] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[19:04:57] ==================== xe_bo_evict_kunit ====================
[19:04:57] =============== [SKIPPED] xe_bo_evict_kunit ================
[19:04:57] ===================== [SKIPPED] xe_bo ======================
[19:04:57] ==================== args (13 subtests) ====================
[19:04:57] [PASSED] count_args_test
[19:04:57] [PASSED] call_args_example
[19:04:57] [PASSED] call_args_test
[19:04:57] [PASSED] drop_first_arg_example
[19:04:57] [PASSED] drop_first_arg_test
[19:04:57] [PASSED] first_arg_example
[19:04:57] [PASSED] first_arg_test
[19:04:57] [PASSED] last_arg_example
[19:04:57] [PASSED] last_arg_test
[19:04:57] [PASSED] pick_arg_example
[19:04:57] [PASSED] if_args_example
[19:04:57] [PASSED] if_args_test
[19:04:57] [PASSED] sep_comma_example
[19:04:57] ====================== [PASSED] args =======================
[19:04:57] =================== xe_pci (3 subtests) ====================
[19:04:57] ==================== check_graphics_ip ====================
[19:04:57] [PASSED] 12.00 Xe_LP
[19:04:57] [PASSED] 12.10 Xe_LP+
[19:04:57] [PASSED] 12.55 Xe_HPG
[19:04:57] [PASSED] 12.60 Xe_HPC
[19:04:57] [PASSED] 12.70 Xe_LPG
[19:04:57] [PASSED] 12.71 Xe_LPG
[19:04:57] [PASSED] 12.74 Xe_LPG+
[19:04:57] [PASSED] 20.01 Xe2_HPG
[19:04:57] [PASSED] 20.02 Xe2_HPG
[19:04:57] [PASSED] 20.04 Xe2_LPG
[19:04:57] [PASSED] 30.00 Xe3_LPG
[19:04:57] [PASSED] 30.01 Xe3_LPG
[19:04:57] [PASSED] 30.03 Xe3_LPG
[19:04:57] [PASSED] 30.04 Xe3_LPG
[19:04:57] [PASSED] 30.05 Xe3_LPG
[19:04:57] [PASSED] 35.10 Xe3p_LPG
[19:04:57] [PASSED] 35.11 Xe3p_XPC
[19:04:57] ================ [PASSED] check_graphics_ip ================
[19:04:57] ===================== check_media_ip ======================
[19:04:57] [PASSED] 12.00 Xe_M
[19:04:57] [PASSED] 12.55 Xe_HPM
[19:04:57] [PASSED] 13.00 Xe_LPM+
[19:04:57] [PASSED] 13.01 Xe2_HPM
[19:04:57] [PASSED] 20.00 Xe2_LPM
[19:04:57] [PASSED] 30.00 Xe3_LPM
[19:04:57] [PASSED] 30.02 Xe3_LPM
[19:04:57] [PASSED] 35.00 Xe3p_LPM
[19:04:57] [PASSED] 35.03 Xe3p_HPM
[19:04:57] ================= [PASSED] check_media_ip ==================
[19:04:57] =================== check_platform_desc ===================
[19:04:57] [PASSED] 0x9A60 (TIGERLAKE)
[19:04:57] [PASSED] 0x9A68 (TIGERLAKE)
[19:04:57] [PASSED] 0x9A70 (TIGERLAKE)
[19:04:57] [PASSED] 0x9A40 (TIGERLAKE)
[19:04:57] [PASSED] 0x9A49 (TIGERLAKE)
[19:04:57] [PASSED] 0x9A59 (TIGERLAKE)
[19:04:57] [PASSED] 0x9A78 (TIGERLAKE)
[19:04:57] [PASSED] 0x9AC0 (TIGERLAKE)
[19:04:57] [PASSED] 0x9AC9 (TIGERLAKE)
[19:04:57] [PASSED] 0x9AD9 (TIGERLAKE)
[19:04:57] [PASSED] 0x9AF8 (TIGERLAKE)
[19:04:57] [PASSED] 0x4C80 (ROCKETLAKE)
[19:04:57] [PASSED] 0x4C8A (ROCKETLAKE)
[19:04:57] [PASSED] 0x4C8B (ROCKETLAKE)
[19:04:57] [PASSED] 0x4C8C (ROCKETLAKE)
[19:04:57] [PASSED] 0x4C90 (ROCKETLAKE)
[19:04:57] [PASSED] 0x4C9A (ROCKETLAKE)
[19:04:57] [PASSED] 0x4680 (ALDERLAKE_S)
[19:04:57] [PASSED] 0x4682 (ALDERLAKE_S)
[19:04:57] [PASSED] 0x4688 (ALDERLAKE_S)
[19:04:57] [PASSED] 0x468A (ALDERLAKE_S)
[19:04:57] [PASSED] 0x468B (ALDERLAKE_S)
[19:04:57] [PASSED] 0x4690 (ALDERLAKE_S)
[19:04:57] [PASSED] 0x4692 (ALDERLAKE_S)
[19:04:57] [PASSED] 0x4693 (ALDERLAKE_S)
[19:04:57] [PASSED] 0x46A0 (ALDERLAKE_P)
[19:04:57] [PASSED] 0x46A1 (ALDERLAKE_P)
[19:04:57] [PASSED] 0x46A2 (ALDERLAKE_P)
[19:04:57] [PASSED] 0x46A3 (ALDERLAKE_P)
[19:04:57] [PASSED] 0x46A6 (ALDERLAKE_P)
[19:04:57] [PASSED] 0x46A8 (ALDERLAKE_P)
[19:04:57] [PASSED] 0x46AA (ALDERLAKE_P)
[19:04:57] [PASSED] 0x462A (ALDERLAKE_P)
[19:04:57] [PASSED] 0x4626 (ALDERLAKE_P)
[19:04:57] [PASSED] 0x4628 (ALDERLAKE_P)
[19:04:57] [PASSED] 0x46B0 (ALDERLAKE_P)
[19:04:57] [PASSED] 0x46B1 (ALDERLAKE_P)
[19:04:57] [PASSED] 0x46B2 (ALDERLAKE_P)
[19:04:57] [PASSED] 0x46B3 (ALDERLAKE_P)
[19:04:57] [PASSED] 0x46C0 (ALDERLAKE_P)
[19:04:57] [PASSED] 0x46C1 (ALDERLAKE_P)
[19:04:57] [PASSED] 0x46C2 (ALDERLAKE_P)
[19:04:57] [PASSED] 0x46C3 (ALDERLAKE_P)
[19:04:57] [PASSED] 0x46D0 (ALDERLAKE_N)
[19:04:57] [PASSED] 0x46D1 (ALDERLAKE_N)
[19:04:57] [PASSED] 0x46D2 (ALDERLAKE_N)
[19:04:57] [PASSED] 0x46D3 (ALDERLAKE_N)
[19:04:57] [PASSED] 0x46D4 (ALDERLAKE_N)
[19:04:57] [PASSED] 0xA721 (ALDERLAKE_P)
[19:04:57] [PASSED] 0xA7A1 (ALDERLAKE_P)
[19:04:57] [PASSED] 0xA7A9 (ALDERLAKE_P)
[19:04:57] [PASSED] 0xA7AC (ALDERLAKE_P)
[19:04:57] [PASSED] 0xA7AD (ALDERLAKE_P)
[19:04:57] [PASSED] 0xA720 (ALDERLAKE_P)
[19:04:57] [PASSED] 0xA7A0 (ALDERLAKE_P)
[19:04:57] [PASSED] 0xA7A8 (ALDERLAKE_P)
[19:04:57] [PASSED] 0xA7AA (ALDERLAKE_P)
[19:04:57] [PASSED] 0xA7AB (ALDERLAKE_P)
[19:04:57] [PASSED] 0xA780 (ALDERLAKE_S)
[19:04:57] [PASSED] 0xA781 (ALDERLAKE_S)
[19:04:57] [PASSED] 0xA782 (ALDERLAKE_S)
[19:04:57] [PASSED] 0xA783 (ALDERLAKE_S)
[19:04:57] [PASSED] 0xA788 (ALDERLAKE_S)
[19:04:57] [PASSED] 0xA789 (ALDERLAKE_S)
[19:04:57] [PASSED] 0xA78A (ALDERLAKE_S)
[19:04:57] [PASSED] 0xA78B (ALDERLAKE_S)
[19:04:57] [PASSED] 0x4905 (DG1)
[19:04:57] [PASSED] 0x4906 (DG1)
[19:04:57] [PASSED] 0x4907 (DG1)
[19:04:57] [PASSED] 0x4908 (DG1)
[19:04:57] [PASSED] 0x4909 (DG1)
[19:04:57] [PASSED] 0x56C0 (DG2)
[19:04:57] [PASSED] 0x56C2 (DG2)
[19:04:57] [PASSED] 0x56C1 (DG2)
[19:04:57] [PASSED] 0x7D51 (METEORLAKE)
[19:04:57] [PASSED] 0x7DD1 (METEORLAKE)
[19:04:57] [PASSED] 0x7D41 (METEORLAKE)
[19:04:57] [PASSED] 0x7D67 (METEORLAKE)
[19:04:57] [PASSED] 0xB640 (METEORLAKE)
[19:04:57] [PASSED] 0x56A0 (DG2)
[19:04:57] [PASSED] 0x56A1 (DG2)
[19:04:57] [PASSED] 0x56A2 (DG2)
[19:04:57] [PASSED] 0x56BE (DG2)
[19:04:57] [PASSED] 0x56BF (DG2)
[19:04:57] [PASSED] 0x5690 (DG2)
[19:04:57] [PASSED] 0x5691 (DG2)
[19:04:57] [PASSED] 0x5692 (DG2)
[19:04:57] [PASSED] 0x56A5 (DG2)
[19:04:57] [PASSED] 0x56A6 (DG2)
[19:04:57] [PASSED] 0x56B0 (DG2)
[19:04:57] [PASSED] 0x56B1 (DG2)
[19:04:57] [PASSED] 0x56BA (DG2)
[19:04:57] [PASSED] 0x56BB (DG2)
[19:04:57] [PASSED] 0x56BC (DG2)
[19:04:57] [PASSED] 0x56BD (DG2)
[19:04:57] [PASSED] 0x5693 (DG2)
[19:04:57] [PASSED] 0x5694 (DG2)
[19:04:57] [PASSED] 0x5695 (DG2)
[19:04:57] [PASSED] 0x56A3 (DG2)
[19:04:57] [PASSED] 0x56A4 (DG2)
[19:04:57] [PASSED] 0x56B2 (DG2)
[19:04:57] [PASSED] 0x56B3 (DG2)
[19:04:57] [PASSED] 0x5696 (DG2)
[19:04:57] [PASSED] 0x5697 (DG2)
[19:04:57] [PASSED] 0xB69 (PVC)
[19:04:57] [PASSED] 0xB6E (PVC)
[19:04:57] [PASSED] 0xBD4 (PVC)
[19:04:57] [PASSED] 0xBD5 (PVC)
[19:04:57] [PASSED] 0xBD6 (PVC)
[19:04:57] [PASSED] 0xBD7 (PVC)
[19:04:57] [PASSED] 0xBD8 (PVC)
[19:04:57] [PASSED] 0xBD9 (PVC)
[19:04:57] [PASSED] 0xBDA (PVC)
[19:04:57] [PASSED] 0xBDB (PVC)
[19:04:57] [PASSED] 0xBE0 (PVC)
[19:04:57] [PASSED] 0xBE1 (PVC)
[19:04:57] [PASSED] 0xBE5 (PVC)
[19:04:57] [PASSED] 0x7D40 (METEORLAKE)
[19:04:57] [PASSED] 0x7D45 (METEORLAKE)
[19:04:57] [PASSED] 0x7D55 (METEORLAKE)
[19:04:57] [PASSED] 0x7D60 (METEORLAKE)
[19:04:57] [PASSED] 0x7DD5 (METEORLAKE)
[19:04:57] [PASSED] 0x6420 (LUNARLAKE)
[19:04:57] [PASSED] 0x64A0 (LUNARLAKE)
[19:04:57] [PASSED] 0x64B0 (LUNARLAKE)
[19:04:57] [PASSED] 0xE202 (BATTLEMAGE)
[19:04:57] [PASSED] 0xE209 (BATTLEMAGE)
[19:04:57] [PASSED] 0xE20B (BATTLEMAGE)
[19:04:57] [PASSED] 0xE20C (BATTLEMAGE)
[19:04:57] [PASSED] 0xE20D (BATTLEMAGE)
[19:04:57] [PASSED] 0xE210 (BATTLEMAGE)
[19:04:57] [PASSED] 0xE211 (BATTLEMAGE)
[19:04:57] [PASSED] 0xE212 (BATTLEMAGE)
[19:04:57] [PASSED] 0xE216 (BATTLEMAGE)
[19:04:57] [PASSED] 0xE220 (BATTLEMAGE)
[19:04:57] [PASSED] 0xE221 (BATTLEMAGE)
[19:04:57] [PASSED] 0xE222 (BATTLEMAGE)
[19:04:57] [PASSED] 0xE223 (BATTLEMAGE)
[19:04:57] [PASSED] 0xB080 (PANTHERLAKE)
[19:04:57] [PASSED] 0xB081 (PANTHERLAKE)
[19:04:57] [PASSED] 0xB082 (PANTHERLAKE)
[19:04:57] [PASSED] 0xB083 (PANTHERLAKE)
[19:04:57] [PASSED] 0xB084 (PANTHERLAKE)
[19:04:57] [PASSED] 0xB085 (PANTHERLAKE)
[19:04:57] [PASSED] 0xB086 (PANTHERLAKE)
[19:04:57] [PASSED] 0xB087 (PANTHERLAKE)
[19:04:57] [PASSED] 0xB08F (PANTHERLAKE)
[19:04:57] [PASSED] 0xB090 (PANTHERLAKE)
[19:04:57] [PASSED] 0xB0A0 (PANTHERLAKE)
[19:04:57] [PASSED] 0xB0B0 (PANTHERLAKE)
[19:04:57] [PASSED] 0xFD80 (PANTHERLAKE)
[19:04:57] [PASSED] 0xFD81 (PANTHERLAKE)
[19:04:57] [PASSED] 0xD740 (NOVALAKE_S)
[19:04:57] [PASSED] 0xD741 (NOVALAKE_S)
[19:04:57] [PASSED] 0xD742 (NOVALAKE_S)
[19:04:57] [PASSED] 0xD743 (NOVALAKE_S)
[19:04:57] [PASSED] 0xD745 (NOVALAKE_S)
[19:04:57] [PASSED] 0xD74A (NOVALAKE_S)
[19:04:57] [PASSED] 0xD74B (NOVALAKE_S)
[19:04:57] [PASSED] 0x674C (CRESCENTISLAND)
[19:04:57] [PASSED] 0x674D (CRESCENTISLAND)
[19:04:57] [PASSED] 0x674E (CRESCENTISLAND)
[19:04:57] [PASSED] 0x674F (CRESCENTISLAND)
[19:04:57] [PASSED] 0x6750 (CRESCENTISLAND)
[19:04:57] [PASSED] 0xD750 (NOVALAKE_P)
[19:04:57] [PASSED] 0xD751 (NOVALAKE_P)
[19:04:57] [PASSED] 0xD752 (NOVALAKE_P)
[19:04:57] [PASSED] 0xD753 (NOVALAKE_P)
[19:04:57] [PASSED] 0xD754 (NOVALAKE_P)
[19:04:57] [PASSED] 0xD755 (NOVALAKE_P)
[19:04:57] [PASSED] 0xD756 (NOVALAKE_P)
[19:04:57] [PASSED] 0xD757 (NOVALAKE_P)
[19:04:57] [PASSED] 0xD75F (NOVALAKE_P)
[19:04:57] =============== [PASSED] check_platform_desc ===============
[19:04:57] ===================== [PASSED] xe_pci ======================
[19:04:57] ============= xe_rtp_tables_test (5 subtests) ==============
[19:04:57] ================== xe_rtp_table_gt_test ===================
[19:04:57] [PASSED] gt_was/14011060649
[19:04:57] [PASSED] gt_was/14011059788
[19:04:57] [PASSED] gt_was/14015795083
[19:04:57] [PASSED] gt_was/16021867713
[19:04:57] [PASSED] gt_was/14019449301
[19:04:57] [PASSED] gt_was/16028005424
[19:04:57] [PASSED] gt_was/14026578760
[19:04:57] [PASSED] gt_was/1409420604
[19:04:57] [PASSED] gt_was/1408615072
[19:04:57] [PASSED] gt_was/22010523718
[19:04:57] [PASSED] gt_was/14011006942
[19:04:57] [PASSED] gt_was/14014830051
[19:04:57] [PASSED] gt_was/18018781329
[19:04:57] [PASSED] gt_was/1509235366
[19:04:57] [PASSED] gt_was/18018781329
[19:04:57] [PASSED] gt_was/16016694945
[19:04:57] [PASSED] gt_was/14018575942
[19:04:57] [PASSED] gt_was/22016670082
[19:04:57] [PASSED] gt_was/22016670082
[19:04:57] [PASSED] gt_was/14017421178
[19:04:57] [PASSED] gt_was/16025250150
[19:04:57] [PASSED] gt_was/14021871409
[19:04:57] [PASSED] gt_was/16021865536
[19:04:57] [PASSED] gt_was/14021486841
[19:04:57] [PASSED] gt_was/14025160223
[19:04:57] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[19:04:57] [PASSED] gt_was/14025635424
[19:04:57] [PASSED] gt_was/16028005424
[19:04:57] ============== [PASSED] xe_rtp_table_gt_test ===============
[19:04:57] ================== xe_rtp_table_gt_test ===================
[19:04:57] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[19:04:57] [PASSED] gt_tunings/Tuning: 32B Access Enable
[19:04:57] [PASSED] gt_tunings/Tuning: L3 cache
[19:04:57] [PASSED] gt_tunings/Tuning: L3 cache - media
[19:04:57] [PASSED] gt_tunings/Tuning: Compression Overfetch
[19:04:57] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[19:04:57] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[19:04:57] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[19:04:57] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[19:04:57] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[19:04:57] [PASSED] gt_tunings/Tuning: Stateless compression control
[19:04:57] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[19:04:57] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[19:04:57] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[19:04:57] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[19:04:57] ============== [PASSED] xe_rtp_table_gt_test ===============
[19:04:57] ================== xe_rtp_table_oob_test ==================
[19:04:57] [PASSED] oob_was/1607983814
[19:04:57] [PASSED] oob_was/16010904313
[19:04:57] [PASSED] oob_was/18022495364
[19:04:57] [PASSED] oob_was/22012773006
[19:04:57] [PASSED] oob_was/14014475959
[19:04:57] [PASSED] oob_was/22011391025
[19:04:57] [PASSED] oob_was/22012727170
[19:04:57] [PASSED] oob_was/22012727685
[19:04:57] [PASSED] oob_was/22016596838
[19:04:57] [PASSED] oob_was/18020744125
[19:04:57] [PASSED] oob_was/1409600907
[19:04:57] [PASSED] oob_was/22014953428
[19:04:57] [PASSED] oob_was/16017236439
[19:04:57] [PASSED] oob_was/14019821291
[19:04:57] [PASSED] oob_was/14015076503
[19:04:57] [PASSED] oob_was/14018913170
[19:04:57] [PASSED] oob_was/14018094691
[19:04:57] [PASSED] oob_was/18024947630
[19:04:57] [PASSED] oob_was/16022287689
[19:04:57] [PASSED] oob_was/13011645652
[19:04:57] [PASSED] oob_was/14022293748
[19:04:57] [PASSED] oob_was/22019794406
[19:04:57] [PASSED] oob_was/22019338487
[19:04:57] [PASSED] oob_was/16023588340
[19:04:57] [PASSED] oob_was/14019789679
[19:04:57] [PASSED] oob_was/14022866841
[19:04:57] [PASSED] oob_was/16021333562
[19:04:57] [PASSED] oob_was/14016712196
[19:04:57] [PASSED] oob_was/14015568240
[19:04:57] [PASSED] oob_was/18013179988
[19:04:57] [PASSED] oob_was/1508761755
[19:04:57] [PASSED] oob_was/16023105232
[19:04:57] [PASSED] oob_was/16026508708
[19:04:57] [PASSED] oob_was/14020001231
[19:04:57] [PASSED] oob_was/16023683509
[19:04:57] [PASSED] oob_was/14025515070
[19:04:57] [PASSED] oob_was/15015404425_disable
[19:04:57] [PASSED] oob_was/16026007364
[19:04:57] [PASSED] oob_was/14020316580
[19:04:57] [PASSED] oob_was/14025883347
[19:04:57] [PASSED] oob_was/16029380221
[19:04:57] ============== [PASSED] xe_rtp_table_oob_test ==============
[19:04:57] ================ xe_rtp_table_dev_oob_test ================
[19:04:57] [PASSED] device_oob_was/22010954014
[19:04:57] [PASSED] device_oob_was/15015404425
[19:04:57] [PASSED] device_oob_was/22019338487_display
[19:04:57] [PASSED] device_oob_was/14022085890
[19:04:57] [PASSED] device_oob_was/14026539277
[19:04:57] [PASSED] device_oob_was/14026633728
[19:04:57] [PASSED] device_oob_was/14026746987
[19:04:57] [PASSED] device_oob_was/14026779378
[19:04:57] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[19:04:57] ========== xe_rtp_table_missing_upper_bound_test ==========
[19:04:57] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[19:04:57] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[19:04:57] [PASSED] register_whitelist/1806527549
[19:04:57] [PASSED] register_whitelist/allow_read_ctx_timestamp
[19:04:57] [PASSED] register_whitelist/allow_read_queue_timestamp
[19:04:57] [PASSED] register_whitelist/16014440446
[19:04:57] [PASSED] register_whitelist/16017236439
[19:04:57] [PASSED] register_whitelist/16020183090
[19:04:57] [PASSED] register_whitelist/14024997852
[19:04:57] [PASSED] register_whitelist/14024997852
[19:04:57] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[19:04:57] =============== [PASSED] xe_rtp_tables_test ================
[19:04:57] =================== xe_rtp (3 subtests) ====================
[19:04:57] =================== xe_rtp_rules_tests ====================
[19:04:57] [PASSED] no
[19:04:57] [PASSED] yes
[19:04:57] [PASSED] no-and-no
[19:04:57] [PASSED] no-and-yes
[19:04:57] [PASSED] yes-and-no
[19:04:57] [PASSED] yes-and-yes
[19:04:57] [PASSED] no-or-no
[19:04:57] [PASSED] no-or-yes
[19:04:57] [PASSED] yes-or-no
[19:04:57] [PASSED] yes-or-yes
[19:04:57] [PASSED] no-yes-or-yes-no
[19:04:57] [PASSED] no-yes-or-yes-yes
[19:04:57] [PASSED] yes-yes-or-no-yes
[19:04:57] [PASSED] yes-yes-or-yes-yes
[19:04:57] [PASSED] no-no-or-yes-or-no
[19:04:57] [PASSED] or
[19:04:57] [PASSED] or-yes
[19:04:57] [PASSED] or-no
[19:04:57] [PASSED] yes-or
[19:04:57] [PASSED] no-or
[19:04:57] [PASSED] no-or-or-yes
[19:04:57] [PASSED] yes-or-or-no
[19:04:57] [PASSED] no-or-or-no
[19:04:57] [PASSED] missing-context-engine-class
[19:04:57] [PASSED] missing-context-engine-class-or-yes
[19:04:57] [PASSED] missing-context-engine-class-or-or-yes
[19:04:57] =============== [PASSED] xe_rtp_rules_tests ================
[19:04:57] =============== xe_rtp_process_to_sr_tests ================
[19:04:57] [PASSED] coalesce-same-reg
[19:04:57] [PASSED] coalesce-same-reg-literal-and-func
[19:04:57] [PASSED] no-match-no-add
[19:04:57] [PASSED] two-regs-two-entries
[19:04:57] [PASSED] clr-one-set-other
[19:04:57] [PASSED] set-field
[19:04:57] [PASSED] conflict-duplicate
[19:04:57] [PASSED] conflict-not-disjoint
[19:04:57] [PASSED] conflict-not-disjoint-literal-and-func
[19:04:57] [PASSED] conflict-reg-type
[19:04:57] [PASSED] bad-mcr-reg-forced-to-regular
[19:04:57] [PASSED] bad-regular-reg-forced-to-mcr
[19:04:57] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[19:04:57] ================== xe_rtp_process_tests ===================
[19:04:57] [PASSED] active1
[19:04:57] [PASSED] active2
[19:04:57] [PASSED] active-inactive
[19:04:57] [PASSED] inactive-active
[19:04:57] [PASSED] inactive-active-inactive
[19:04:57] [PASSED] inactive-inactive-inactive
[19:04:57] ============== [PASSED] xe_rtp_process_tests ===============
[19:04:57] ===================== [PASSED] xe_rtp ======================
[19:04:57] ==================== xe_wa (1 subtest) =====================
[19:04:57] ======================== xe_wa_gt =========================
[19:04:57] [PASSED] TIGERLAKE B0
[19:04:57] [PASSED] DG1 A0
[19:04:57] [PASSED] DG1 B0
[19:04:57] [PASSED] ALDERLAKE_S A0
[19:04:57] [PASSED] ALDERLAKE_S B0
[19:04:57] [PASSED] ALDERLAKE_S C0
[19:04:57] [PASSED] ALDERLAKE_S D0
[19:04:57] [PASSED] ALDERLAKE_P A0
[19:04:57] [PASSED] ALDERLAKE_P B0
[19:04:57] [PASSED] ALDERLAKE_P C0
[19:04:57] [PASSED] ALDERLAKE_S RPLS D0
[19:04:57] [PASSED] ALDERLAKE_P RPLU E0
[19:04:57] [PASSED] DG2 G10 C0
[19:04:57] [PASSED] DG2 G11 B1
[19:04:57] [PASSED] DG2 G12 A1
[19:04:57] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[19:04:57] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[19:04:57] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[19:04:57] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[19:04:57] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[19:04:57] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[19:04:57] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[19:04:57] ==================== [PASSED] xe_wa_gt =====================
[19:04:57] ====================== [PASSED] xe_wa ======================
[19:04:57] ============================================================
[19:04:57] Testing complete. Ran 739 tests: passed: 721, skipped: 18
[19:04:57] Elapsed time: 36.404s total, 4.277s configuring, 31.459s building, 0.647s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[19:04:57] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:04:59] 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
[19:05:24] Starting KUnit Kernel (1/1)...
[19:05:24] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:05:24] ============ drm_test_pick_cmdline (2 subtests) ============
[19:05:24] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[19:05:24] =============== drm_test_pick_cmdline_named ===============
[19:05:24] [PASSED] NTSC
[19:05:24] [PASSED] NTSC-J
[19:05:24] [PASSED] PAL
[19:05:24] [PASSED] PAL-M
[19:05:24] =========== [PASSED] drm_test_pick_cmdline_named ===========
[19:05:24] ============== [PASSED] drm_test_pick_cmdline ==============
[19:05:24] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[19:05:24] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[19:05:24] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[19:05:24] =========== drm_validate_clone_mode (2 subtests) ===========
[19:05:24] ============== drm_test_check_in_clone_mode ===============
[19:05:24] [PASSED] in_clone_mode
[19:05:24] [PASSED] not_in_clone_mode
[19:05:24] ========== [PASSED] drm_test_check_in_clone_mode ===========
[19:05:24] =============== drm_test_check_valid_clones ===============
[19:05:24] [PASSED] not_in_clone_mode
[19:05:24] [PASSED] valid_clone
[19:05:24] [PASSED] invalid_clone
[19:05:24] =========== [PASSED] drm_test_check_valid_clones ===========
[19:05:24] ============= [PASSED] drm_validate_clone_mode =============
[19:05:24] ============= drm_validate_modeset (1 subtest) =============
[19:05:24] [PASSED] drm_test_check_connector_changed_modeset
[19:05:24] ============== [PASSED] drm_validate_modeset ===============
[19:05:24] ====== drm_test_bridge_get_current_state (2 subtests) ======
[19:05:24] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[19:05:24] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[19:05:24] ======== [PASSED] drm_test_bridge_get_current_state ========
[19:05:24] ====== drm_test_bridge_helper_reset_crtc (4 subtests) ======
[19:05:24] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[19:05:24] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[19:05:24] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[19:05:24] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[19:05:24] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[19:05:24] ============== drm_bridge_alloc (2 subtests) ===============
[19:05:24] [PASSED] drm_test_drm_bridge_alloc_basic
[19:05:24] [PASSED] drm_test_drm_bridge_alloc_get_put
[19:05:24] ================ [PASSED] drm_bridge_alloc =================
[19:05:24] ============= drm_bridge_bus_fmt (5 subtests) ==============
[19:05:24] [PASSED] drm_test_bridge_rgb_yuv_rgb
[19:05:24] [PASSED] drm_test_bridge_must_convert_to_yuv444
[19:05:24] [PASSED] drm_test_bridge_hdmi_auto_rgb
[19:05:24] [PASSED] drm_test_bridge_auto_first
[19:05:24] [PASSED] drm_test_bridge_rgb_yuv_no_path
[19:05:24] =============== [PASSED] drm_bridge_bus_fmt ================
[19:05:24] ============= drm_cmdline_parser (40 subtests) =============
[19:05:24] [PASSED] drm_test_cmdline_force_d_only
[19:05:24] [PASSED] drm_test_cmdline_force_D_only_dvi
[19:05:24] [PASSED] drm_test_cmdline_force_D_only_hdmi
[19:05:24] [PASSED] drm_test_cmdline_force_D_only_not_digital
[19:05:24] [PASSED] drm_test_cmdline_force_e_only
[19:05:24] [PASSED] drm_test_cmdline_res
[19:05:24] [PASSED] drm_test_cmdline_res_vesa
[19:05:24] [PASSED] drm_test_cmdline_res_vesa_rblank
[19:05:24] [PASSED] drm_test_cmdline_res_rblank
[19:05:24] [PASSED] drm_test_cmdline_res_bpp
[19:05:24] [PASSED] drm_test_cmdline_res_refresh
[19:05:24] [PASSED] drm_test_cmdline_res_bpp_refresh
[19:05:24] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[19:05:24] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[19:05:24] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[19:05:24] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[19:05:24] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[19:05:24] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[19:05:24] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[19:05:24] [PASSED] drm_test_cmdline_res_margins_force_on
[19:05:24] [PASSED] drm_test_cmdline_res_vesa_margins
[19:05:24] [PASSED] drm_test_cmdline_name
[19:05:24] [PASSED] drm_test_cmdline_name_bpp
[19:05:24] [PASSED] drm_test_cmdline_name_option
[19:05:24] [PASSED] drm_test_cmdline_name_bpp_option
[19:05:24] [PASSED] drm_test_cmdline_rotate_0
[19:05:24] [PASSED] drm_test_cmdline_rotate_90
[19:05:24] [PASSED] drm_test_cmdline_rotate_180
[19:05:24] [PASSED] drm_test_cmdline_rotate_270
[19:05:24] [PASSED] drm_test_cmdline_hmirror
[19:05:24] [PASSED] drm_test_cmdline_vmirror
[19:05:24] [PASSED] drm_test_cmdline_margin_options
[19:05:24] [PASSED] drm_test_cmdline_multiple_options
[19:05:24] [PASSED] drm_test_cmdline_bpp_extra_and_option
[19:05:24] [PASSED] drm_test_cmdline_extra_and_option
[19:05:24] [PASSED] drm_test_cmdline_freestanding_options
[19:05:24] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[19:05:24] [PASSED] drm_test_cmdline_panel_orientation
[19:05:24] ================ drm_test_cmdline_invalid =================
[19:05:24] [PASSED] margin_only
[19:05:24] [PASSED] interlace_only
[19:05:24] [PASSED] res_missing_x
[19:05:24] [PASSED] res_missing_y
[19:05:24] [PASSED] res_bad_y
[19:05:24] [PASSED] res_missing_y_bpp
[19:05:24] [PASSED] res_bad_bpp
[19:05:24] [PASSED] res_bad_refresh
[19:05:24] [PASSED] res_bpp_refresh_force_on_off
[19:05:24] [PASSED] res_invalid_mode
[19:05:24] [PASSED] res_bpp_wrong_place_mode
[19:05:24] [PASSED] name_bpp_refresh
[19:05:24] [PASSED] name_refresh
[19:05:24] [PASSED] name_refresh_wrong_mode
[19:05:24] [PASSED] name_refresh_invalid_mode
[19:05:24] [PASSED] rotate_multiple
[19:05:24] [PASSED] rotate_invalid_val
[19:05:24] [PASSED] rotate_truncated
[19:05:24] [PASSED] invalid_option
[19:05:24] [PASSED] invalid_tv_option
[19:05:24] [PASSED] truncated_tv_option
[19:05:24] ============ [PASSED] drm_test_cmdline_invalid =============
[19:05:24] =============== drm_test_cmdline_tv_options ===============
[19:05:24] [PASSED] NTSC
[19:05:24] [PASSED] NTSC_443
[19:05:24] [PASSED] NTSC_J
[19:05:24] [PASSED] PAL
[19:05:24] [PASSED] PAL_M
[19:05:24] [PASSED] PAL_N
[19:05:24] [PASSED] SECAM
[19:05:24] [PASSED] MONO_525
[19:05:24] [PASSED] MONO_625
[19:05:24] =========== [PASSED] drm_test_cmdline_tv_options ===========
[19:05:24] =============== [PASSED] drm_cmdline_parser ================
[19:05:24] ========== drmm_connector_hdmi_init (20 subtests) ==========
[19:05:24] [PASSED] drm_test_connector_hdmi_init_valid
[19:05:24] [PASSED] drm_test_connector_hdmi_init_bpc_8
[19:05:24] [PASSED] drm_test_connector_hdmi_init_bpc_10
[19:05:24] [PASSED] drm_test_connector_hdmi_init_bpc_12
[19:05:24] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[19:05:24] [PASSED] drm_test_connector_hdmi_init_bpc_null
[19:05:24] [PASSED] drm_test_connector_hdmi_init_formats_empty
[19:05:24] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[19:05:24] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[19:05:24] [PASSED] supported_formats=0x9 yuv420_allowed=1
[19:05:24] [PASSED] supported_formats=0x9 yuv420_allowed=0
[19:05:24] [PASSED] supported_formats=0x5 yuv420_allowed=1
[19:05:24] [PASSED] supported_formats=0x5 yuv420_allowed=0
[19:05:24] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[19:05:24] [PASSED] drm_test_connector_hdmi_init_null_ddc
[19:05:24] [PASSED] drm_test_connector_hdmi_init_null_product
[19:05:24] [PASSED] drm_test_connector_hdmi_init_null_vendor
[19:05:24] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[19:05:24] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[19:05:24] [PASSED] drm_test_connector_hdmi_init_product_valid
[19:05:24] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[19:05:24] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[19:05:24] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[19:05:24] ========= drm_test_connector_hdmi_init_type_valid =========
[19:05:24] [PASSED] HDMI-A
[19:05:24] [PASSED] HDMI-B
[19:05:24] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[19:05:24] ======== drm_test_connector_hdmi_init_type_invalid ========
[19:05:24] [PASSED] Unknown
[19:05:24] [PASSED] VGA
[19:05:24] [PASSED] DVI-I
[19:05:24] [PASSED] DVI-D
[19:05:24] [PASSED] DVI-A
[19:05:24] [PASSED] Composite
[19:05:24] [PASSED] SVIDEO
[19:05:24] [PASSED] LVDS
[19:05:24] [PASSED] Component
[19:05:24] [PASSED] DIN
[19:05:24] [PASSED] DP
[19:05:24] [PASSED] TV
[19:05:24] [PASSED] eDP
[19:05:24] [PASSED] Virtual
[19:05:24] [PASSED] DSI
[19:05:24] [PASSED] DPI
[19:05:24] [PASSED] Writeback
[19:05:24] [PASSED] SPI
[19:05:24] [PASSED] USB
[19:05:24] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[19:05:24] ============ [PASSED] drmm_connector_hdmi_init =============
[19:05:24] ============= drmm_connector_init (3 subtests) =============
[19:05:24] [PASSED] drm_test_drmm_connector_init
[19:05:24] [PASSED] drm_test_drmm_connector_init_null_ddc
[19:05:24] ========= drm_test_drmm_connector_init_type_valid =========
[19:05:24] [PASSED] Unknown
[19:05:24] [PASSED] VGA
[19:05:24] [PASSED] DVI-I
[19:05:24] [PASSED] DVI-D
[19:05:24] [PASSED] DVI-A
[19:05:24] [PASSED] Composite
[19:05:24] [PASSED] SVIDEO
[19:05:24] [PASSED] LVDS
[19:05:24] [PASSED] Component
[19:05:24] [PASSED] DIN
[19:05:24] [PASSED] DP
[19:05:24] [PASSED] HDMI-A
[19:05:24] [PASSED] HDMI-B
[19:05:24] [PASSED] TV
[19:05:24] [PASSED] eDP
[19:05:24] [PASSED] Virtual
[19:05:24] [PASSED] DSI
[19:05:24] [PASSED] DPI
[19:05:24] [PASSED] Writeback
[19:05:24] [PASSED] SPI
[19:05:24] [PASSED] USB
[19:05:24] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[19:05:24] =============== [PASSED] drmm_connector_init ===============
[19:05:24] ========= drm_connector_dynamic_init (6 subtests) ==========
[19:05:24] [PASSED] drm_test_drm_connector_dynamic_init
[19:05:24] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[19:05:24] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[19:05:24] [PASSED] drm_test_drm_connector_dynamic_init_properties
[19:05:24] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[19:05:24] [PASSED] Unknown
[19:05:24] [PASSED] VGA
[19:05:24] [PASSED] DVI-I
[19:05:24] [PASSED] DVI-D
[19:05:24] [PASSED] DVI-A
[19:05:24] [PASSED] Composite
[19:05:24] [PASSED] SVIDEO
[19:05:24] [PASSED] LVDS
[19:05:24] [PASSED] Component
[19:05:24] [PASSED] DIN
[19:05:24] [PASSED] DP
[19:05:24] [PASSED] HDMI-A
[19:05:24] [PASSED] HDMI-B
[19:05:24] [PASSED] TV
[19:05:24] [PASSED] eDP
[19:05:24] [PASSED] Virtual
[19:05:24] [PASSED] DSI
[19:05:24] [PASSED] DPI
[19:05:24] [PASSED] Writeback
[19:05:24] [PASSED] SPI
[19:05:24] [PASSED] USB
[19:05:24] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[19:05:24] ======== drm_test_drm_connector_dynamic_init_name =========
[19:05:24] [PASSED] Unknown
[19:05:24] [PASSED] VGA
[19:05:24] [PASSED] DVI-I
[19:05:24] [PASSED] DVI-D
[19:05:24] [PASSED] DVI-A
[19:05:24] [PASSED] Composite
[19:05:24] [PASSED] SVIDEO
[19:05:24] [PASSED] LVDS
[19:05:24] [PASSED] Component
[19:05:24] [PASSED] DIN
[19:05:24] [PASSED] DP
[19:05:24] [PASSED] HDMI-A
[19:05:24] [PASSED] HDMI-B
[19:05:24] [PASSED] TV
[19:05:24] [PASSED] eDP
[19:05:24] [PASSED] Virtual
[19:05:24] [PASSED] DSI
[19:05:24] [PASSED] DPI
[19:05:24] [PASSED] Writeback
[19:05:24] [PASSED] SPI
[19:05:24] [PASSED] USB
[19:05:24] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[19:05:24] =========== [PASSED] drm_connector_dynamic_init ============
[19:05:24] ==== drm_connector_dynamic_register_early (4 subtests) =====
[19:05:24] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[19:05:24] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[19:05:24] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[19:05:24] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[19:05:24] ====== [PASSED] drm_connector_dynamic_register_early =======
[19:05:24] ======= drm_connector_dynamic_register (7 subtests) ========
[19:05:24] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[19:05:24] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[19:05:24] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[19:05:24] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[19:05:24] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[19:05:24] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[19:05:24] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[19:05:24] ========= [PASSED] drm_connector_dynamic_register ==========
[19:05:24] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[19:05:24] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[19:05:24] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[19:05:24] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[19:05:24] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[19:05:24] ========== drm_test_get_tv_mode_from_name_valid ===========
[19:05:24] [PASSED] NTSC
[19:05:24] [PASSED] NTSC-443
[19:05:24] [PASSED] NTSC-J
[19:05:24] [PASSED] PAL
[19:05:24] [PASSED] PAL-M
[19:05:24] [PASSED] PAL-N
[19:05:24] [PASSED] SECAM
[19:05:24] [PASSED] Mono
[19:05:24] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[19:05:24] [PASSED] drm_test_get_tv_mode_from_name_truncated
[19:05:24] ============ [PASSED] drm_get_tv_mode_from_name ============
[19:05:24] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[19:05:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[19:05:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[19:05:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[19:05:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[19:05:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[19:05:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[19:05:24] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[19:05:24] [PASSED] VIC 96
[19:05:24] [PASSED] VIC 97
[19:05:24] [PASSED] VIC 101
[19:05:24] [PASSED] VIC 102
[19:05:24] [PASSED] VIC 106
[19:05:24] [PASSED] VIC 107
[19:05:24] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[19:05:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[19:05:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[19:05:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[19:05:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[19:05:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[19:05:24] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[19:05:24] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[19:05:24] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[19:05:24] [PASSED] Automatic
[19:05:24] [PASSED] Full
[19:05:24] [PASSED] Limited 16:235
[19:05:24] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[19:05:24] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[19:05:24] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[19:05:24] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[19:05:24] === drm_test_drm_hdmi_connector_get_output_format_name ====
[19:05:24] [PASSED] RGB
[19:05:24] [PASSED] YUV 4:2:0
[19:05:24] [PASSED] YUV 4:2:2
[19:05:24] [PASSED] YUV 4:4:4
[19:05:24] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[19:05:24] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[19:05:24] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[19:05:24] ============= drm_damage_helper (21 subtests) ==============
[19:05:24] [PASSED] drm_test_damage_iter_no_damage
[19:05:24] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[19:05:24] [PASSED] drm_test_damage_iter_no_damage_src_moved
[19:05:24] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[19:05:24] [PASSED] drm_test_damage_iter_no_damage_not_visible
[19:05:24] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[19:05:24] [PASSED] drm_test_damage_iter_no_damage_no_fb
[19:05:24] [PASSED] drm_test_damage_iter_simple_damage
[19:05:24] [PASSED] drm_test_damage_iter_single_damage
[19:05:24] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[19:05:24] [PASSED] drm_test_damage_iter_single_damage_outside_src
[19:05:24] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[19:05:24] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[19:05:24] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[19:05:24] [PASSED] drm_test_damage_iter_single_damage_src_moved
[19:05:24] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[19:05:24] [PASSED] drm_test_damage_iter_damage
[19:05:24] [PASSED] drm_test_damage_iter_damage_one_intersect
[19:05:24] [PASSED] drm_test_damage_iter_damage_one_outside
[19:05:24] [PASSED] drm_test_damage_iter_damage_src_moved
[19:05:24] [PASSED] drm_test_damage_iter_damage_not_visible
[19:05:24] ================ [PASSED] drm_damage_helper ================
[19:05:24] ============== drm_dp_mst_helper (3 subtests) ==============
[19:05:24] ============== drm_test_dp_mst_calc_pbn_mode ==============
[19:05:24] [PASSED] Clock 154000 BPP 30 DSC disabled
[19:05:24] [PASSED] Clock 234000 BPP 30 DSC disabled
[19:05:24] [PASSED] Clock 297000 BPP 24 DSC disabled
[19:05:24] [PASSED] Clock 332880 BPP 24 DSC enabled
[19:05:24] [PASSED] Clock 324540 BPP 24 DSC enabled
[19:05:24] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[19:05:24] ============== drm_test_dp_mst_calc_pbn_div ===============
[19:05:24] [PASSED] Link rate 2000000 lane count 4
[19:05:24] [PASSED] Link rate 2000000 lane count 2
[19:05:24] [PASSED] Link rate 2000000 lane count 1
[19:05:24] [PASSED] Link rate 1350000 lane count 4
[19:05:24] [PASSED] Link rate 1350000 lane count 2
[19:05:24] [PASSED] Link rate 1350000 lane count 1
[19:05:24] [PASSED] Link rate 1000000 lane count 4
[19:05:24] [PASSED] Link rate 1000000 lane count 2
[19:05:24] [PASSED] Link rate 1000000 lane count 1
[19:05:24] [PASSED] Link rate 810000 lane count 4
[19:05:24] [PASSED] Link rate 810000 lane count 2
[19:05:24] [PASSED] Link rate 810000 lane count 1
[19:05:24] [PASSED] Link rate 540000 lane count 4
[19:05:24] [PASSED] Link rate 540000 lane count 2
[19:05:24] [PASSED] Link rate 540000 lane count 1
[19:05:24] [PASSED] Link rate 270000 lane count 4
[19:05:24] [PASSED] Link rate 270000 lane count 2
[19:05:24] [PASSED] Link rate 270000 lane count 1
[19:05:24] [PASSED] Link rate 162000 lane count 4
[19:05:24] [PASSED] Link rate 162000 lane count 2
[19:05:24] [PASSED] Link rate 162000 lane count 1
[19:05:24] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[19:05:24] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[19:05:24] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[19:05:24] [PASSED] DP_POWER_UP_PHY with port number
[19:05:24] [PASSED] DP_POWER_DOWN_PHY with port number
[19:05:24] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[19:05:24] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[19:05:24] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[19:05:24] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[19:05:24] [PASSED] DP_QUERY_PAYLOAD with port number
[19:05:24] [PASSED] DP_QUERY_PAYLOAD with VCPI
[19:05:24] [PASSED] DP_REMOTE_DPCD_READ with port number
[19:05:24] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[19:05:24] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[19:05:24] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[19:05:24] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[19:05:24] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[19:05:24] [PASSED] DP_REMOTE_I2C_READ with port number
[19:05:24] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[19:05:24] [PASSED] DP_REMOTE_I2C_READ with transactions array
[19:05:24] [PASSED] DP_REMOTE_I2C_WRITE with port number
[19:05:24] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[19:05:24] [PASSED] DP_REMOTE_I2C_WRITE with data array
[19:05:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[19:05:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[19:05:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[19:05:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[19:05:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[19:05:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[19:05:24] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[19:05:24] ================ [PASSED] drm_dp_mst_helper ================
[19:05:24] ================== drm_exec (7 subtests) ===================
[19:05:24] [PASSED] sanitycheck
[19:05:24] [PASSED] test_lock
[19:05:24] [PASSED] test_lock_unlock
[19:05:24] [PASSED] test_duplicates
[19:05:24] [PASSED] test_prepare
[19:05:24] [PASSED] test_prepare_array
[19:05:24] [PASSED] test_multiple_loops
[19:05:24] ==================== [PASSED] drm_exec =====================
[19:05:24] =========== drm_format_helper_test (17 subtests) ===========
[19:05:24] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[19:05:24] [PASSED] single_pixel_source_buffer
[19:05:24] [PASSED] single_pixel_clip_rectangle
[19:05:24] [PASSED] well_known_colors
[19:05:24] [PASSED] destination_pitch
[19:05:24] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[19:05:24] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[19:05:24] [PASSED] single_pixel_source_buffer
[19:05:24] [PASSED] single_pixel_clip_rectangle
[19:05:24] [PASSED] well_known_colors
[19:05:24] [PASSED] destination_pitch
[19:05:24] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[19:05:24] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[19:05:24] [PASSED] single_pixel_source_buffer
[19:05:24] [PASSED] single_pixel_clip_rectangle
[19:05:24] [PASSED] well_known_colors
[19:05:24] [PASSED] destination_pitch
[19:05:24] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[19:05:24] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[19:05:24] [PASSED] single_pixel_source_buffer
[19:05:24] [PASSED] single_pixel_clip_rectangle
[19:05:24] [PASSED] well_known_colors
[19:05:24] [PASSED] destination_pitch
[19:05:24] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[19:05:24] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[19:05:24] [PASSED] single_pixel_source_buffer
[19:05:24] [PASSED] single_pixel_clip_rectangle
[19:05:24] [PASSED] well_known_colors
[19:05:24] [PASSED] destination_pitch
[19:05:24] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[19:05:24] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[19:05:24] [PASSED] single_pixel_source_buffer
[19:05:24] [PASSED] single_pixel_clip_rectangle
[19:05:24] [PASSED] well_known_colors
[19:05:24] [PASSED] destination_pitch
[19:05:24] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[19:05:24] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[19:05:24] [PASSED] single_pixel_source_buffer
[19:05:24] [PASSED] single_pixel_clip_rectangle
[19:05:24] [PASSED] well_known_colors
[19:05:24] [PASSED] destination_pitch
[19:05:24] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[19:05:24] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[19:05:24] [PASSED] single_pixel_source_buffer
[19:05:24] [PASSED] single_pixel_clip_rectangle
[19:05:24] [PASSED] well_known_colors
[19:05:24] [PASSED] destination_pitch
[19:05:24] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[19:05:24] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[19:05:24] [PASSED] single_pixel_source_buffer
[19:05:24] [PASSED] single_pixel_clip_rectangle
[19:05:24] [PASSED] well_known_colors
[19:05:24] [PASSED] destination_pitch
[19:05:24] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[19:05:24] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[19:05:24] [PASSED] single_pixel_source_buffer
[19:05:24] [PASSED] single_pixel_clip_rectangle
[19:05:24] [PASSED] well_known_colors
[19:05:24] [PASSED] destination_pitch
[19:05:24] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[19:05:24] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[19:05:24] [PASSED] single_pixel_source_buffer
[19:05:24] [PASSED] single_pixel_clip_rectangle
[19:05:24] [PASSED] well_known_colors
[19:05:24] [PASSED] destination_pitch
[19:05:24] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[19:05:24] ============== drm_test_fb_xrgb8888_to_mono ===============
[19:05:24] [PASSED] single_pixel_source_buffer
[19:05:24] [PASSED] single_pixel_clip_rectangle
[19:05:24] [PASSED] well_known_colors
[19:05:24] [PASSED] destination_pitch
[19:05:24] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[19:05:24] ==================== drm_test_fb_swab =====================
[19:05:24] [PASSED] single_pixel_source_buffer
[19:05:24] [PASSED] single_pixel_clip_rectangle
[19:05:24] [PASSED] well_known_colors
[19:05:24] [PASSED] destination_pitch
[19:05:24] ================ [PASSED] drm_test_fb_swab =================
[19:05:24] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[19:05:24] [PASSED] single_pixel_source_buffer
[19:05:24] [PASSED] single_pixel_clip_rectangle
[19:05:24] [PASSED] well_known_colors
[19:05:24] [PASSED] destination_pitch
[19:05:24] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[19:05:24] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[19:05:24] [PASSED] single_pixel_source_buffer
[19:05:24] [PASSED] single_pixel_clip_rectangle
[19:05:24] [PASSED] well_known_colors
[19:05:24] [PASSED] destination_pitch
[19:05:24] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[19:05:24] ================= drm_test_fb_clip_offset =================
[19:05:24] [PASSED] pass through
[19:05:24] [PASSED] horizontal offset
[19:05:24] [PASSED] vertical offset
[19:05:24] [PASSED] horizontal and vertical offset
[19:05:24] [PASSED] horizontal offset (custom pitch)
[19:05:24] [PASSED] vertical offset (custom pitch)
[19:05:24] [PASSED] horizontal and vertical offset (custom pitch)
[19:05:24] ============= [PASSED] drm_test_fb_clip_offset =============
[19:05:24] =================== drm_test_fb_memcpy ====================
[19:05:24] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[19:05:24] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[19:05:24] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[19:05:24] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[19:05:24] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[19:05:24] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[19:05:24] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[19:05:24] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[19:05:24] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[19:05:24] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[19:05:24] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[19:05:24] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[19:05:24] =============== [PASSED] drm_test_fb_memcpy ================
[19:05:24] ============= [PASSED] drm_format_helper_test ==============
[19:05:24] ================= drm_format (18 subtests) =================
[19:05:24] [PASSED] drm_test_format_block_width_invalid
[19:05:24] [PASSED] drm_test_format_block_width_one_plane
[19:05:24] [PASSED] drm_test_format_block_width_two_plane
[19:05:24] [PASSED] drm_test_format_block_width_three_plane
[19:05:24] [PASSED] drm_test_format_block_width_tiled
[19:05:24] [PASSED] drm_test_format_block_height_invalid
[19:05:24] [PASSED] drm_test_format_block_height_one_plane
[19:05:24] [PASSED] drm_test_format_block_height_two_plane
[19:05:24] [PASSED] drm_test_format_block_height_three_plane
[19:05:24] [PASSED] drm_test_format_block_height_tiled
[19:05:24] [PASSED] drm_test_format_min_pitch_invalid
[19:05:24] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[19:05:24] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[19:05:24] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[19:05:24] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[19:05:24] [PASSED] drm_test_format_min_pitch_two_plane
[19:05:24] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[19:05:24] [PASSED] drm_test_format_min_pitch_tiled
[19:05:24] =================== [PASSED] drm_format ====================
[19:05:24] ============== drm_framebuffer (10 subtests) ===============
[19:05:24] ========== drm_test_framebuffer_check_src_coords ==========
[19:05:24] [PASSED] Success: source fits into fb
[19:05:24] [PASSED] Fail: overflowing fb with x-axis coordinate
[19:05:24] [PASSED] Fail: overflowing fb with y-axis coordinate
[19:05:24] [PASSED] Fail: overflowing fb with source width
[19:05:24] [PASSED] Fail: overflowing fb with source height
[19:05:24] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[19:05:24] [PASSED] drm_test_framebuffer_cleanup
[19:05:24] =============== drm_test_framebuffer_create ===============
[19:05:24] [PASSED] ABGR8888 normal sizes
[19:05:24] [PASSED] ABGR8888 max sizes
[19:05:24] [PASSED] ABGR8888 pitch greater than min required
[19:05:24] [PASSED] ABGR8888 pitch less than min required
[19:05:24] [PASSED] ABGR8888 Invalid width
[19:05:24] [PASSED] ABGR8888 Invalid buffer handle
[19:05:24] [PASSED] No pixel format
[19:05:24] [PASSED] ABGR8888 Width 0
[19:05:24] [PASSED] ABGR8888 Height 0
[19:05:24] [PASSED] ABGR8888 Out of bound height * pitch combination
[19:05:24] [PASSED] ABGR8888 Large buffer offset
[19:05:24] [PASSED] ABGR8888 Buffer offset for inexistent plane
[19:05:24] [PASSED] ABGR8888 Invalid flag
[19:05:24] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[19:05:24] [PASSED] ABGR8888 Valid buffer modifier
[19:05:24] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[19:05:24] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[19:05:24] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[19:05:24] [PASSED] NV12 Normal sizes
[19:05:24] [PASSED] NV12 Max sizes
[19:05:24] [PASSED] NV12 Invalid pitch
[19:05:24] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[19:05:24] [PASSED] NV12 different modifier per-plane
[19:05:24] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[19:05:24] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[19:05:24] [PASSED] NV12 Modifier for inexistent plane
[19:05:24] [PASSED] NV12 Handle for inexistent plane
[19:05:24] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[19:05:24] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[19:05:24] [PASSED] YVU420 Normal sizes
[19:05:24] [PASSED] YVU420 Max sizes
[19:05:24] [PASSED] YVU420 Invalid pitch
[19:05:24] [PASSED] YVU420 Different pitches
[19:05:24] [PASSED] YVU420 Different buffer offsets/pitches
[19:05:24] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[19:05:24] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[19:05:24] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[19:05:24] [PASSED] YVU420 Valid modifier
[19:05:24] [PASSED] YVU420 Different modifiers per plane
[19:05:24] [PASSED] YVU420 Modifier for inexistent plane
[19:05:24] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[19:05:24] [PASSED] X0L2 Normal sizes
[19:05:24] [PASSED] X0L2 Max sizes
[19:05:24] [PASSED] X0L2 Invalid pitch
[19:05:24] [PASSED] X0L2 Pitch greater than minimum required
[19:05:24] [PASSED] X0L2 Handle for inexistent plane
[19:05:24] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[19:05:24] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[19:05:24] [PASSED] X0L2 Valid modifier
[19:05:24] [PASSED] X0L2 Modifier for inexistent plane
[19:05:24] =========== [PASSED] drm_test_framebuffer_create ===========
[19:05:24] [PASSED] drm_test_framebuffer_free
[19:05:24] [PASSED] drm_test_framebuffer_init
[19:05:24] [PASSED] drm_test_framebuffer_init_bad_format
[19:05:24] [PASSED] drm_test_framebuffer_init_dev_mismatch
[19:05:24] [PASSED] drm_test_framebuffer_lookup
[19:05:24] [PASSED] drm_test_framebuffer_lookup_inexistent
[19:05:24] [PASSED] drm_test_framebuffer_modifiers_not_supported
[19:05:24] ================= [PASSED] drm_framebuffer =================
[19:05:24] ================ drm_gem_shmem (8 subtests) ================
[19:05:24] [PASSED] drm_gem_shmem_test_obj_create
[19:05:24] [PASSED] drm_gem_shmem_test_obj_create_private
[19:05:24] [PASSED] drm_gem_shmem_test_pin_pages
[19:05:24] [PASSED] drm_gem_shmem_test_vmap
[19:05:24] [PASSED] drm_gem_shmem_test_get_sg_table
[19:05:24] [PASSED] drm_gem_shmem_test_get_pages_sgt
[19:05:24] [PASSED] drm_gem_shmem_test_madvise
[19:05:24] [PASSED] drm_gem_shmem_test_purge
[19:05:24] ================== [PASSED] drm_gem_shmem ==================
[19:05:24] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[19:05:24] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[19:05:24] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[19:05:24] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[19:05:24] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[19:05:24] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[19:05:24] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[19:05:24] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[19:05:24] [PASSED] Automatic
[19:05:24] [PASSED] Full
[19:05:24] [PASSED] Limited 16:235
[19:05:24] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[19:05:24] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[19:05:24] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[19:05:24] [PASSED] drm_test_check_disable_connector
[19:05:24] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[19:05:24] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[19:05:24] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[19:05:24] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[19:05:24] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[19:05:24] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[19:05:24] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[19:05:24] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[19:05:24] [PASSED] drm_test_check_output_bpc_dvi
[19:05:24] [PASSED] drm_test_check_output_bpc_format_vic_1
[19:05:24] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[19:05:24] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[19:05:24] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[19:05:24] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[19:05:24] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[19:05:24] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[19:05:24] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[19:05:24] ============ drm_test_check_hdmi_color_format =============
[19:05:24] [PASSED] AUTO -> RGB
[19:05:24] [PASSED] YCBCR422 -> YUV422
[19:05:24] [PASSED] YCBCR420 -> YUV420
[19:05:24] [PASSED] YCBCR444 -> YUV444
[19:05:24] [PASSED] RGB -> RGB
[19:05:24] ======== [PASSED] drm_test_check_hdmi_color_format =========
[19:05:24] ======== drm_test_check_hdmi_color_format_420_only ========
[19:05:24] [PASSED] RGB should fail
[19:05:24] [PASSED] YUV444 should fail
[19:05:24] [PASSED] YUV422 should fail
[19:05:24] [PASSED] YUV420 should work
[19:05:24] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[19:05:24] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[19:05:24] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[19:05:24] [PASSED] drm_test_check_broadcast_rgb_value
[19:05:24] [PASSED] drm_test_check_bpc_8_value
[19:05:24] [PASSED] drm_test_check_bpc_10_value
[19:05:24] [PASSED] drm_test_check_bpc_12_value
[19:05:24] [PASSED] drm_test_check_format_value
[19:05:24] [PASSED] drm_test_check_tmds_char_value
[19:05:24] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[19:05:24] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[19:05:24] [PASSED] drm_test_check_mode_valid
[19:05:24] [PASSED] drm_test_check_mode_valid_reject
[19:05:24] [PASSED] drm_test_check_mode_valid_reject_rate
[19:05:24] [PASSED] drm_test_check_mode_valid_reject_max_clock
[19:05:24] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[19:05:24] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[19:05:24] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[19:05:24] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[19:05:24] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[19:05:24] [PASSED] drm_test_check_infoframes
[19:05:24] [PASSED] drm_test_check_reject_avi_infoframe
[19:05:24] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[19:05:24] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[19:05:24] [PASSED] drm_test_check_reject_audio_infoframe
[19:05:24] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[19:05:24] ================= drm_managed (2 subtests) =================
[19:05:24] [PASSED] drm_test_managed_release_action
[19:05:24] [PASSED] drm_test_managed_run_action
[19:05:24] =================== [PASSED] drm_managed ===================
[19:05:24] =================== drm_mm (6 subtests) ====================
[19:05:24] [PASSED] drm_test_mm_init
[19:05:24] [PASSED] drm_test_mm_debug
[19:05:24] [PASSED] drm_test_mm_align32
[19:05:24] [PASSED] drm_test_mm_align64
[19:05:24] [PASSED] drm_test_mm_lowest
[19:05:24] [PASSED] drm_test_mm_highest
[19:05:24] ===================== [PASSED] drm_mm ======================
[19:05:24] ============= drm_modes_analog_tv (5 subtests) =============
[19:05:24] [PASSED] drm_test_modes_analog_tv_mono_576i
[19:05:24] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[19:05:24] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[19:05:24] [PASSED] drm_test_modes_analog_tv_pal_576i
[19:05:24] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[19:05:24] =============== [PASSED] drm_modes_analog_tv ===============
[19:05:24] ============== drm_plane_helper (2 subtests) ===============
[19:05:24] =============== drm_test_check_plane_state ================
[19:05:24] [PASSED] clipping_simple
[19:05:24] [PASSED] clipping_rotate_reflect
[19:05:24] [PASSED] positioning_simple
[19:05:24] [PASSED] upscaling
[19:05:24] [PASSED] downscaling
[19:05:24] [PASSED] rounding1
[19:05:24] [PASSED] rounding2
[19:05:24] [PASSED] rounding3
[19:05:24] [PASSED] rounding4
[19:05:24] =========== [PASSED] drm_test_check_plane_state ============
[19:05:24] =========== drm_test_check_invalid_plane_state ============
[19:05:24] [PASSED] positioning_invalid
[19:05:24] [PASSED] upscaling_invalid
[19:05:24] [PASSED] downscaling_invalid
[19:05:24] ======= [PASSED] drm_test_check_invalid_plane_state ========
[19:05:24] ================ [PASSED] drm_plane_helper =================
[19:05:24] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[19:05:24] ====== drm_test_connector_helper_tv_get_modes_check =======
[19:05:24] [PASSED] None
[19:05:24] [PASSED] PAL
[19:05:24] [PASSED] NTSC
[19:05:24] [PASSED] Both, NTSC Default
[19:05:24] [PASSED] Both, PAL Default
[19:05:24] [PASSED] Both, NTSC Default, with PAL on command-line
[19:05:24] [PASSED] Both, PAL Default, with NTSC on command-line
[19:05:24] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[19:05:24] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[19:05:24] ================== drm_rect (9 subtests) ===================
[19:05:24] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[19:05:24] [PASSED] drm_test_rect_clip_scaled_not_clipped
[19:05:24] [PASSED] drm_test_rect_clip_scaled_clipped
[19:05:24] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[19:05:24] ================= drm_test_rect_intersect =================
[19:05:24] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[19:05:24] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[19:05:24] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[19:05:24] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[19:05:24] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[19:05:24] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[19:05:24] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[19:05:24] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[19:05:24] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[19:05:24] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[19:05:24] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[19:05:24] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[19:05:24] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[19:05:24] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[19:05:24] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[19:05:24] ============= [PASSED] drm_test_rect_intersect =============
[19:05:24] ================ drm_test_rect_calc_hscale ================
[19:05:24] [PASSED] normal use
[19:05:24] [PASSED] out of max range
[19:05:24] [PASSED] out of min range
[19:05:24] [PASSED] zero dst
[19:05:24] [PASSED] negative src
[19:05:24] [PASSED] negative dst
[19:05:24] ============ [PASSED] drm_test_rect_calc_hscale ============
[19:05:24] ================ drm_test_rect_calc_vscale ================
[19:05:24] [PASSED] normal use
[19:05:24] [PASSED] out of max range
[19:05:24] [PASSED] out of min range
[19:05:24] [PASSED] zero dst
[19:05:24] [PASSED] negative src
[19:05:24] [PASSED] negative dst
[19:05:24] ============ [PASSED] drm_test_rect_calc_vscale ============
[19:05:24] ================== drm_test_rect_rotate ===================
[19:05:24] [PASSED] reflect-x
[19:05:24] [PASSED] reflect-y
[19:05:24] [PASSED] rotate-0
[19:05:24] [PASSED] rotate-90
[19:05:24] [PASSED] rotate-180
[19:05:24] [PASSED] rotate-270
[19:05:24] ============== [PASSED] drm_test_rect_rotate ===============
[19:05:24] ================ drm_test_rect_rotate_inv =================
[19:05:24] [PASSED] reflect-x
[19:05:24] [PASSED] reflect-y
[19:05:24] [PASSED] rotate-0
[19:05:24] [PASSED] rotate-90
[19:05:24] [PASSED] rotate-180
[19:05:24] [PASSED] rotate-270
[19:05:24] ============ [PASSED] drm_test_rect_rotate_inv =============
[19:05:24] ==================== [PASSED] drm_rect =====================
[19:05:24] ============ drm_sysfb_modeset_test (1 subtest) ============
[19:05:24] ============ drm_test_sysfb_build_fourcc_list =============
[19:05:24] [PASSED] no native formats
[19:05:24] [PASSED] XRGB8888 as native format
[19:05:24] [PASSED] remove duplicates
[19:05:24] [PASSED] convert alpha formats
[19:05:24] [PASSED] random formats
[19:05:24] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[19:05:24] ============= [PASSED] drm_sysfb_modeset_test ==============
[19:05:24] ================== drm_fixp (2 subtests) ===================
[19:05:24] [PASSED] drm_test_int2fixp
[19:05:24] [PASSED] drm_test_sm2fixp
[19:05:24] ==================== [PASSED] drm_fixp =====================
[19:05:24] ============================================================
[19:05:24] Testing complete. Ran 639 tests: passed: 639
[19:05:24] Elapsed time: 26.411s total, 1.791s configuring, 24.455s building, 0.139s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[19:05:24] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:05:26] 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
[19:05:36] Starting KUnit Kernel (1/1)...
[19:05:36] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:05:36] ================= ttm_device (5 subtests) ==================
[19:05:36] [PASSED] ttm_device_init_basic
[19:05:36] [PASSED] ttm_device_init_multiple
[19:05:36] [PASSED] ttm_device_fini_basic
[19:05:36] [PASSED] ttm_device_init_no_vma_man
[19:05:36] ================== ttm_device_init_pools ==================
[19:05:36] [PASSED] No DMA allocations, no DMA32 required
[19:05:36] [PASSED] DMA allocations, DMA32 required
[19:05:36] [PASSED] No DMA allocations, DMA32 required
[19:05:36] [PASSED] DMA allocations, no DMA32 required
[19:05:36] ============== [PASSED] ttm_device_init_pools ==============
[19:05:36] =================== [PASSED] ttm_device ====================
[19:05:36] ================== ttm_pool (8 subtests) ===================
[19:05:36] ================== ttm_pool_alloc_basic ===================
[19:05:36] [PASSED] One page
[19:05:36] [PASSED] More than one page
[19:05:36] [PASSED] Above the allocation limit
[19:05:36] [PASSED] One page, with coherent DMA mappings enabled
[19:05:36] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[19:05:36] ============== [PASSED] ttm_pool_alloc_basic ===============
[19:05:36] ============== ttm_pool_alloc_basic_dma_addr ==============
[19:05:36] [PASSED] One page
[19:05:36] [PASSED] More than one page
[19:05:36] [PASSED] Above the allocation limit
[19:05:36] [PASSED] One page, with coherent DMA mappings enabled
[19:05:36] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[19:05:36] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[19:05:36] [PASSED] ttm_pool_alloc_order_caching_match
[19:05:36] [PASSED] ttm_pool_alloc_caching_mismatch
[19:05:36] [PASSED] ttm_pool_alloc_order_mismatch
[19:05:36] [PASSED] ttm_pool_free_dma_alloc
[19:05:36] [PASSED] ttm_pool_free_no_dma_alloc
[19:05:36] [PASSED] ttm_pool_fini_basic
[19:05:36] ==================== [PASSED] ttm_pool =====================
[19:05:36] ================ ttm_resource (8 subtests) =================
[19:05:36] ================= ttm_resource_init_basic =================
[19:05:36] [PASSED] Init resource in TTM_PL_SYSTEM
[19:05:36] [PASSED] Init resource in TTM_PL_VRAM
[19:05:36] [PASSED] Init resource in a private placement
[19:05:36] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[19:05:36] ============= [PASSED] ttm_resource_init_basic =============
[19:05:36] [PASSED] ttm_resource_init_pinned
[19:05:36] [PASSED] ttm_resource_fini_basic
[19:05:36] [PASSED] ttm_resource_manager_init_basic
[19:05:36] [PASSED] ttm_resource_manager_usage_basic
[19:05:36] [PASSED] ttm_resource_manager_set_used_basic
[19:05:36] [PASSED] ttm_sys_man_alloc_basic
[19:05:36] [PASSED] ttm_sys_man_free_basic
[19:05:36] ================== [PASSED] ttm_resource ===================
[19:05:36] =================== ttm_tt (15 subtests) ===================
[19:05:36] ==================== ttm_tt_init_basic ====================
[19:05:36] [PASSED] Page-aligned size
[19:05:36] [PASSED] Extra pages requested
[19:05:36] ================ [PASSED] ttm_tt_init_basic ================
[19:05:36] [PASSED] ttm_tt_init_misaligned
[19:05:36] [PASSED] ttm_tt_fini_basic
[19:05:36] [PASSED] ttm_tt_fini_sg
[19:05:36] [PASSED] ttm_tt_fini_shmem
[19:05:36] [PASSED] ttm_tt_create_basic
[19:05:36] [PASSED] ttm_tt_create_invalid_bo_type
[19:05:36] [PASSED] ttm_tt_create_ttm_exists
[19:05:36] [PASSED] ttm_tt_create_failed
[19:05:36] [PASSED] ttm_tt_destroy_basic
[19:05:36] [PASSED] ttm_tt_populate_null_ttm
[19:05:36] [PASSED] ttm_tt_populate_populated_ttm
[19:05:36] [PASSED] ttm_tt_unpopulate_basic
[19:05:36] [PASSED] ttm_tt_unpopulate_empty_ttm
[19:05:36] [PASSED] ttm_tt_swapin_basic
[19:05:36] ===================== [PASSED] ttm_tt ======================
[19:05:36] =================== ttm_bo (14 subtests) ===================
[19:05:36] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[19:05:36] [PASSED] Cannot be interrupted and sleeps
[19:05:36] [PASSED] Cannot be interrupted, locks straight away
[19:05:36] [PASSED] Can be interrupted, sleeps
[19:05:36] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[19:05:36] [PASSED] ttm_bo_reserve_locked_no_sleep
[19:05:36] [PASSED] ttm_bo_reserve_no_wait_ticket
[19:05:36] [PASSED] ttm_bo_reserve_double_resv
[19:05:36] [PASSED] ttm_bo_reserve_interrupted
[19:05:36] [PASSED] ttm_bo_reserve_deadlock
[19:05:36] [PASSED] ttm_bo_unreserve_basic
[19:05:36] [PASSED] ttm_bo_unreserve_pinned
[19:05:36] [PASSED] ttm_bo_unreserve_bulk
[19:05:36] [PASSED] ttm_bo_fini_basic
[19:05:36] [PASSED] ttm_bo_fini_shared_resv
[19:05:36] [PASSED] ttm_bo_pin_basic
[19:05:36] [PASSED] ttm_bo_pin_unpin_resource
[19:05:36] [PASSED] ttm_bo_multiple_pin_one_unpin
[19:05:36] ===================== [PASSED] ttm_bo ======================
[19:05:36] ============== ttm_bo_validate (22 subtests) ===============
[19:05:36] ============== ttm_bo_init_reserved_sys_man ===============
[19:05:36] [PASSED] Buffer object for userspace
[19:05:36] [PASSED] Kernel buffer object
[19:05:36] [PASSED] Shared buffer object
[19:05:36] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[19:05:36] ============== ttm_bo_init_reserved_mock_man ==============
[19:05:36] [PASSED] Buffer object for userspace
[19:05:36] [PASSED] Kernel buffer object
[19:05:36] [PASSED] Shared buffer object
[19:05:36] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[19:05:36] [PASSED] ttm_bo_init_reserved_resv
[19:05:36] ================== ttm_bo_validate_basic ==================
[19:05:36] [PASSED] Buffer object for userspace
[19:05:36] [PASSED] Kernel buffer object
[19:05:36] [PASSED] Shared buffer object
[19:05:36] ============== [PASSED] ttm_bo_validate_basic ==============
[19:05:36] [PASSED] ttm_bo_validate_invalid_placement
[19:05:36] ============= ttm_bo_validate_same_placement ==============
[19:05:36] [PASSED] System manager
[19:05:36] [PASSED] VRAM manager
[19:05:36] ========= [PASSED] ttm_bo_validate_same_placement ==========
[19:05:36] [PASSED] ttm_bo_validate_failed_alloc
[19:05:36] [PASSED] ttm_bo_validate_pinned
[19:05:36] [PASSED] ttm_bo_validate_busy_placement
[19:05:36] ================ ttm_bo_validate_multihop =================
[19:05:36] [PASSED] Buffer object for userspace
[19:05:36] [PASSED] Kernel buffer object
[19:05:36] [PASSED] Shared buffer object
[19:05:36] ============ [PASSED] ttm_bo_validate_multihop =============
[19:05:36] ========== ttm_bo_validate_no_placement_signaled ==========
[19:05:36] [PASSED] Buffer object in system domain, no page vector
[19:05:36] [PASSED] Buffer object in system domain with an existing page vector
[19:05:36] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[19:05:36] ======== ttm_bo_validate_no_placement_not_signaled ========
[19:05:36] [PASSED] Buffer object for userspace
[19:05:36] [PASSED] Kernel buffer object
[19:05:36] [PASSED] Shared buffer object
[19:05:36] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[19:05:36] [PASSED] ttm_bo_validate_move_fence_signaled
[19:05:36] ========= ttm_bo_validate_move_fence_not_signaled =========
[19:05:36] [PASSED] Waits for GPU
[19:05:36] [PASSED] Tries to lock straight away
[19:05:36] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[19:05:36] [PASSED] ttm_bo_validate_swapout
[19:05:36] [PASSED] ttm_bo_validate_happy_evict
[19:05:36] [PASSED] ttm_bo_validate_all_pinned_evict
[19:05:36] [PASSED] ttm_bo_validate_allowed_only_evict
[19:05:36] [PASSED] ttm_bo_validate_deleted_evict
[19:05:36] [PASSED] ttm_bo_validate_busy_domain_evict
[19:05:36] [PASSED] ttm_bo_validate_evict_gutting
[19:05:36] [PASSED] ttm_bo_validate_recrusive_evict
[19:05:36] ================= [PASSED] ttm_bo_validate =================
[19:05:36] ============================================================
[19:05:36] Testing complete. Ran 102 tests: passed: 102
[19:05:36] Elapsed time: 11.951s total, 1.813s configuring, 9.923s building, 0.176s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 37+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe: Add and use more KLV helpers (rev4)
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (18 preceding siblings ...)
2026-07-08 19:05 ` ✓ CI.KUnit: success " Patchwork
@ 2026-07-08 19:55 ` Patchwork
2026-07-08 23:56 ` ✓ Xe.CI.FULL: " Patchwork
` (8 subsequent siblings)
28 siblings, 0 replies; 37+ messages in thread
From: Patchwork @ 2026-07-08 19:55 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1095 bytes --]
== Series Details ==
Series: drm/xe: Add and use more KLV helpers (rev4)
URL : https://patchwork.freedesktop.org/series/169511/
State : success
== Summary ==
CI Bug Log - changes from xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d_BAT -> xe-pw-169511v4_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8992 -> IGT_8994
* Linux: xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d -> xe-pw-169511v4
IGT_8992: 1e912fa143a35c4238a1fbcf94443175d8ce1d60 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8994: 59469572ae481848d6bd469242aef7c5333b39ad @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d: d2b771941e0c8aec7b6648b0c47d81161136944d
xe-pw-169511v4: 169511v4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/index.html
[-- Attachment #2: Type: text/html, Size: 1657 bytes --]
^ permalink raw reply [flat|nested] 37+ messages in thread
* ✓ Xe.CI.FULL: success for drm/xe: Add and use more KLV helpers (rev4)
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (19 preceding siblings ...)
2026-07-08 19:55 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-07-08 23:56 ` Patchwork
2026-07-10 17:31 ` ✗ CI.checkpatch: warning for drm/xe: Add and use more KLV helpers (rev5) Patchwork
` (7 subsequent siblings)
28 siblings, 0 replies; 37+ messages in thread
From: Patchwork @ 2026-07-08 23:56 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 41616 bytes --]
== Series Details ==
Series: drm/xe: Add and use more KLV helpers (rev4)
URL : https://patchwork.freedesktop.org/series/169511/
State : success
== Summary ==
CI Bug Log - changes from xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d_FULL -> xe-pw-169511v4_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-169511v4_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#2327]) +2 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-5/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][2] ([Intel XE#1407]) +1 other test skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-2/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#7059] / [Intel XE#7085])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2328] / [Intel XE#7367])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb.html
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1467] / [Intel XE#7367])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-8/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-10/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#8365])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-7/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#7679])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-6/igt@kms_bw@connected-linear-tiling-4-displays-target-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-target-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#367])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-3/igt@kms_bw@linear-tiling-2-displays-target-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-target-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#367])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-9/igt@kms_bw@linear-tiling-3-displays-target-1920x1080p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#2887]) +3 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2:
- shard-bmg: [PASS][13] -> [INCOMPLETE][14] ([Intel XE#7084] / [Intel XE#8150])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2887]) +8 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-9/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_chamelium_color@gamma:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#306] / [Intel XE#7358])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-1/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_color_pipeline@plane-ctm3x4:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#7358])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-5/igt@kms_chamelium_color_pipeline@plane-ctm3x4.html
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#7358])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-8/igt@kms_chamelium_color_pipeline@plane-ctm3x4.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2252]) +4 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-4/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#373]) +4 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-8/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#6974])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-4/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#6974])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-3/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@lic-type-0:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#7642])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-3/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][24] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-10/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2321] / [Intel XE#7355])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1424]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-8/igt@kms_cursor_crc@cursor-random-32x10.html
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2320])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-10/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#309] / [Intel XE#7343]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#1508])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-fractional-bpp-bigjoiner:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#8265]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-6/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#8265]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#4156] / [Intel XE#7425])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-3/igt@kms_fbcon_fbt@fbc.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1421])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [PASS][34] -> [FAIL][35] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1397] / [Intel XE#7385])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#7178] / [Intel XE#7349]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#656] / [Intel XE#7905]) +13 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#7061] / [Intel XE#7356])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#7905]) +13 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-2/igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrshdr-suspend:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#6312]) +8 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-2/igt@kms_frontbuffer_tracking@drrshdr-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#4141]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-move:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#6312] / [Intel XE#651]) +5 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2311]) +31 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#7061]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-blt.html
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#7061])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-suspend:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#7865]) +9 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-suspend.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2313]) +29 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#7061] / [Intel XE#7356])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#6900] / [Intel XE#7362])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#7283])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-1/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#7283]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-10/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#4596] / [Intel XE#5854])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-2/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#2763] / [Intel XE#6886]) +11 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_dc@dc3co-vpb-framegap@pr:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#8395]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-8/igt@kms_pm_dc@dc3co-vpb-framegap@pr.html
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#8395]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-5/igt@kms_pm_dc@dc3co-vpb-framegap@pr.html
* igt@kms_pm_dc@dc3co-vpb-framegap@psr2:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#8396])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-5/igt@kms_pm_dc@dc3co-vpb-framegap@psr2.html
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#8396])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-8/igt@kms_pm_dc@dc3co-vpb-framegap@psr2.html
* igt@kms_pm_dc@dc5-pageflip-negative:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#6927])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-10/igt@kms_pm_dc@dc5-pageflip-negative.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][64] -> [FAIL][65] ([Intel XE#8399])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2499])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-10/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#1489]) +4 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#2893] / [Intel XE#7304])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-8/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2387] / [Intel XE#7429])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1406] / [Intel XE#7345]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-6/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@fbc-psr2-sprite-plane-move@edp-1:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1406] / [Intel XE#4609]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-6/igt@kms_psr@fbc-psr2-sprite-plane-move@edp-1.html
* igt@kms_psr@pr-dpms:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1406]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-3/igt@kms_psr@pr-dpms.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-6/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-1/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1435])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-3/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_sharpness_filter@filter-scaler-downscale:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#6503]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-4/igt@kms_sharpness_filter@filter-scaler-downscale.html
* igt@xe_evict@evict-cm-threads-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#8370])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-8/igt@xe_evict@evict-cm-threads-small-multi-queue.html
* igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#6540] / [Intel XE#688]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-6/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd.html
* igt@xe_exec_balancer@once-cm-parallel-rebind:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#7482]) +6 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-6/igt@xe_exec_balancer@once-cm-parallel-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1392]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2322] / [Intel XE#7372]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-multi-queue-rebind:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#8374]) +4 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-1/igt@xe_exec_fault_mode@many-multi-queue-rebind.html
* igt@xe_exec_fault_mode@twice-multi-queue-imm:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#8374]) +6 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-6/igt@xe_exec_fault_mode@twice-multi-queue-imm.html
* igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd-smem:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#8364]) +12 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-6/igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd-smem.html
* igt@xe_exec_multi_queue@max-queues-preempt-mode-basic:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#8364]) +15 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-10/igt@xe_exec_multi_queue@max-queues-preempt-mode-basic.html
* igt@xe_exec_reset@multi-queue-cancel-on-secondary:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#8369])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-9/igt@xe_exec_reset@multi-queue-cancel-on-secondary.html
* igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#8378]) +5 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html
* igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#8378]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-4/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-rebind.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early:
- shard-bmg: [PASS][90] -> [ABORT][91] ([Intel XE#8007])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
- shard-bmg: NOTRUN -> [ABORT][92] ([Intel XE#8007])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2229])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-10/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_madvise@atomic-device:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#7980])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-3/igt@xe_madvise@atomic-device.html
* igt@xe_mmap@vram:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1416])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-8/igt@xe_mmap@vram.html
* igt@xe_multigpu_svm@mgpu-latency-copy-basic:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#6964])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-2/igt@xe_multigpu_svm@mgpu-latency-copy-basic.html
* igt@xe_multigpu_svm@mgpu-migration-basic:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#6964])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-6/igt@xe_multigpu_svm@mgpu-migration-basic.html
* igt@xe_page_reclaim@prl-invalidate-full:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#7793])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-7/igt@xe_page_reclaim@prl-invalidate-full.html
* igt@xe_pat@pat-index-xehpc:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1420] / [Intel XE#2838] / [Intel XE#7590])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-1/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@xa-app-transient-media-on:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#7590])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-4/igt@xe_pat@xa-app-transient-media-on.html
* igt@xe_pmu@all-fn-engine-activity-load:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#4650] / [Intel XE#7347])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-6/igt@xe_pmu@all-fn-engine-activity-load.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-3/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_query@multigpu-query-config:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#944]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-6/igt@xe_query@multigpu-query-config.html
* igt@xe_query@multigpu-query-oa-units:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#944])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-4/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_sriov_admin@default-sched-attributes-vfs-disabled:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#7174])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-2/igt@xe_sriov_admin@default-sched-attributes-vfs-disabled.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#4273])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-1/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_sriov_vram@vf-access-after-resize-down:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#6376] / [Intel XE#7330] / [Intel XE#7422])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-7/igt@xe_sriov_vram@vf-access-after-resize-down.html
#### Possible fixes ####
* igt@core_hotunplug@hotreplug:
- shard-bmg: [ABORT][108] ([Intel XE#8007]) -> [PASS][109]
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d/shard-bmg-5/igt@core_hotunplug@hotreplug.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-2/igt@core_hotunplug@hotreplug.html
* igt@kms_cursor_legacy@single-bo@pipe-a:
- shard-lnl: [ABORT][110] ([Intel XE#8007]) -> [PASS][111] +1 other test pass
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d/shard-lnl-6/igt@kms_cursor_legacy@single-bo@pipe-a.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-1/igt@kms_cursor_legacy@single-bo@pipe-a.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [FAIL][112] ([Intel XE#301]) -> [PASS][113]
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [FAIL][114] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][115]
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][116] ([Intel XE#8399]) -> [PASS][117]
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: [FAIL][118] ([Intel XE#6569]) -> [PASS][119]
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d/shard-bmg-2/igt@xe_sriov_flr@flr-twice.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-6/igt@xe_sriov_flr@flr-twice.html
* igt@xe_survivability@runtime-survivability:
- shard-bmg: [DMESG-WARN][120] ([Intel XE#6627] / [Intel XE#7419]) -> [PASS][121]
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d/shard-bmg-2/igt@xe_survivability@runtime-survivability.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-5/igt@xe_survivability@runtime-survivability.html
#### Warnings ####
* igt@kms_flip@flip-vs-expired-vblank:
- shard-lnl: [FAIL][122] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][123] ([Intel XE#301])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][124] ([Intel XE#3544]) -> [SKIP][125] ([Intel XE#3374] / [Intel XE#3544])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[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#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900
[Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7330
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
[Intel XE#7347]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7347
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7362
[Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419
[Intel XE#7422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7422
[Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7980]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7980
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8365]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8365
[Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
[Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395
[Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396
[Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8992 -> IGT_8994
* Linux: xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d -> xe-pw-169511v4
IGT_8992: 1e912fa143a35c4238a1fbcf94443175d8ce1d60 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8994: 59469572ae481848d6bd469242aef7c5333b39ad @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d: d2b771941e0c8aec7b6648b0c47d81161136944d
xe-pw-169511v4: 169511v4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v4/index.html
[-- Attachment #2: Type: text/html, Size: 47351 bytes --]
^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: [PATCH v2 04/13] drm/xe/guc: Add string KLV encoding helper
2026-07-07 22:08 ` [PATCH v2 04/13] drm/xe/guc: Add string KLV encoding helper Michal Wajdeczko
@ 2026-07-09 12:51 ` Michał Winiarski
0 siblings, 0 replies; 37+ messages in thread
From: Michał Winiarski @ 2026-07-09 12:51 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
On Wed, Jul 08, 2026 at 12:08:06AM +0200, Michal Wajdeczko wrote:
> We also plan to encode a text data as KLV. Add helper for that too.
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Michał Winiarski <michal.winiarski@intel.com>
Reviewed-by: Michał Winiarski <michal.winiarski@intel.com>
Thanks,
-Michał
> ---
> v2: don't mix units, report too long string (Michal/Sashiko)
> ---
> drivers/gpu/drm/xe/xe_guc_klv_helpers.c | 35 +++++++++++++++++++++++++
> drivers/gpu/drm/xe/xe_guc_klv_helpers.h | 1 +
> 2 files changed, 36 insertions(+)
^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: [PATCH v2 05/13] drm/xe/guc: Add object KLV encoding helper
2026-07-07 22:08 ` [PATCH v2 05/13] drm/xe/guc: Add object " Michal Wajdeczko
@ 2026-07-09 12:53 ` Michał Winiarski
0 siblings, 0 replies; 37+ messages in thread
From: Michał Winiarski @ 2026-07-09 12:53 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
On Wed, Jul 08, 2026 at 12:08:07AM +0200, Michal Wajdeczko wrote:
> We plan to encode larger objects as single KLV or set of KLVs.
> Add helper for that.
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michał Winiarski <michal.winiarski@intel.com>
Thanks,
-Michał
> ---
> v2: limit avail to avoid unexpected truncation (Michal/Sashiko)
> ---
> drivers/gpu/drm/xe/xe_guc_klv_helpers.c | 39 +++++++++++++++++++++++++
> drivers/gpu/drm/xe/xe_guc_klv_helpers.h | 2 ++
> 2 files changed, 41 insertions(+)
^ permalink raw reply [flat|nested] 37+ messages in thread
* [PATCH v3 07/13] drm/xe/guc: Formalize Reserved KLVs
2026-07-07 22:08 ` [PATCH v2 07/13] drm/xe/guc: Formalize Reserved KLVs Michal Wajdeczko
@ 2026-07-10 17:25 ` Michal Wajdeczko
0 siblings, 0 replies; 37+ messages in thread
From: Michal Wajdeczko @ 2026-07-10 17:25 UTC (permalink / raw)
To: intel-xe
We have already started using few KLV keys from the 0xF000 range
that, as we have agreed with the GuC team, will not be used in any
GuC ABI actions. Add definitions for that reserved range and move
our migration KLVs to new ABI header.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michał Winiarski <michal.winiarski@intel.com>
---
v2: rebased
---
drivers/gpu/drm/xe/abi/guc_klvs_abi.h | 17 +++++++++++++
drivers/gpu/drm/xe/abi/xe_driver_klvs_abi.h | 27 +++++++++++++++++++++
drivers/gpu/drm/xe/xe_guc_klv_helpers.c | 14 +++++++++++
drivers/gpu/drm/xe/xe_sriov_packet.c | 7 ++----
4 files changed, 60 insertions(+), 5 deletions(-)
create mode 100644 drivers/gpu/drm/xe/abi/xe_driver_klvs_abi.h
diff --git a/drivers/gpu/drm/xe/abi/guc_klvs_abi.h b/drivers/gpu/drm/xe/abi/guc_klvs_abi.h
index e50c586f6146..54e94fa0f4b8 100644
--- a/drivers/gpu/drm/xe/abi/guc_klvs_abi.h
+++ b/drivers/gpu/drm/xe/abi/guc_klvs_abi.h
@@ -22,6 +22,7 @@
* | | | - `GuC Scheduling Policies KLVs`_ |
* | | | - `GuC VGT Policy KLVs`_ |
* | | | - `GuC VF Configuration KLVs`_ |
+ * | | | - `GuC Reserved KLVs`_ |
* | | | |
* | +-------+--------------------------------------------------------------+
* | | 15:0 | **LEN** - length of VALUE (in 32bit dwords) |
@@ -525,4 +526,20 @@ enum xe_guc_klv_ids {
GUC_WA_KLV_IGNORE_MMIO_READ_SEM_TOKEN_64 = 0x9010,
};
+/**
+ * DOC: GuC Reserved KLVs
+ *
+ * Range of `GuC KLV`_ keys reserved for internal use by the GuC that will
+ * never be part of the offcial GuC ABI and can be reused by the drivers.
+ *
+ * Currently this range includes 1024 keys starting from:
+ *
+ * _`GUC_KLV_RESERVED_RANGE_START` : 0xF000
+ *
+ * See `Xe Driver KLVs`_ for the KLVs that the Xe driver is currently using.
+ */
+
+#define GUC_KLV_RESERVED_RANGE_START 0xf000u
+#define GUC_KLV_RESERVED_RANGE_LEN 1024u
+
#endif
diff --git a/drivers/gpu/drm/xe/abi/xe_driver_klvs_abi.h b/drivers/gpu/drm/xe/abi/xe_driver_klvs_abi.h
new file mode 100644
index 000000000000..3b557e56892a
--- /dev/null
+++ b/drivers/gpu/drm/xe/abi/xe_driver_klvs_abi.h
@@ -0,0 +1,27 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2026 Intel Corporation
+ */
+
+#ifndef _ABI_XE_DRIVER_KLVS_ABI_H
+#define _ABI_XE_DRIVER_KLVS_ABI_H
+
+#include "abi/guc_klvs_abi.h"
+
+/**
+ * DOC: Xe Driver KLVs
+ *
+ * The Xe driver uses the following keys from the `GuC Reserved KLVs`_ range:
+ *
+ * _`MIGRATION_KLV_DEVICE_DEVID_KEY` :
+ * PCI device ID of the migrated VF.
+ * _`MIGRATION_KLV_DEVICE_REVID_KEY` :
+ * PCI device revision ID of the migrated VF.
+ */
+
+#define MIGRATION_KLV_DEVICE_DEVID_KEY 0xf001u
+#define MIGRATION_KLV_DEVICE_DEVID_LEN 1u
+#define MIGRATION_KLV_DEVICE_REVID_KEY 0xf002u
+#define MIGRATION_KLV_DEVICE_REVID_LEN 1u
+
+#endif
diff --git a/drivers/gpu/drm/xe/xe_guc_klv_helpers.c b/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
index 7ad0b6f88f4c..cf6cd862e2d2 100644
--- a/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
+++ b/drivers/gpu/drm/xe/xe_guc_klv_helpers.c
@@ -8,6 +8,7 @@
#include <drm/drm_print.h>
#include "abi/guc_klvs_abi.h"
+#include "abi/xe_driver_klvs_abi.h"
#include "xe_guc_klv_helpers.h"
#include "xe_guc_klv_thresholds_set.h"
@@ -19,6 +20,11 @@ static bool is_group_key(u16 key)
return false;
}
+static bool is_reserved_key(u16 key)
+{
+ return in_range(key, GUC_KLV_RESERVED_RANGE_START, GUC_KLV_RESERVED_RANGE_LEN);
+}
+
/**
* xe_guc_klv_key_to_string - Convert KLV key into friendly name.
* @key: the `GuC KLV`_ key
@@ -80,7 +86,15 @@ const char *xe_guc_klv_key_to_string(u16 key)
MAKE_XE_GUC_KLV_THRESHOLDS_SET(define_threshold_key_to_string_case)
#undef define_threshold_key_to_string_case
+ /* driver KLVs */
+ case MIGRATION_KLV_DEVICE_DEVID_KEY:
+ return "migration_devid";
+ case MIGRATION_KLV_DEVICE_REVID_KEY:
+ return "migration_revid";
+
default:
+ if (is_reserved_key(key))
+ return "(reserved)";
return "(unknown)";
}
}
diff --git a/drivers/gpu/drm/xe/xe_sriov_packet.c b/drivers/gpu/drm/xe/xe_sriov_packet.c
index 2ae9eff2a7c0..e581e8e6c1d1 100644
--- a/drivers/gpu/drm/xe/xe_sriov_packet.c
+++ b/drivers/gpu/drm/xe/xe_sriov_packet.c
@@ -3,6 +3,8 @@
* Copyright © 2025 Intel Corporation
*/
+#include "abi/xe_driver_klvs_abi.h"
+
#include "xe_bo.h"
#include "xe_device.h"
#include "xe_guc_klv_helpers.h"
@@ -352,11 +354,6 @@ ssize_t xe_sriov_packet_write_single(struct xe_device *xe, unsigned int vfid,
return copied;
}
-#define MIGRATION_KLV_DEVICE_DEVID_KEY 0xf001u
-#define MIGRATION_KLV_DEVICE_DEVID_LEN 1u
-#define MIGRATION_KLV_DEVICE_REVID_KEY 0xf002u
-#define MIGRATION_KLV_DEVICE_REVID_LEN 1u
-
#define MIGRATION_DESCRIPTOR_DWORDS (GUC_KLV_LEN_MIN + MIGRATION_KLV_DEVICE_DEVID_LEN + \
GUC_KLV_LEN_MIN + MIGRATION_KLV_DEVICE_REVID_LEN)
static int pf_descriptor_init(struct xe_device *xe, unsigned int vfid)
--
2.47.1
^ permalink raw reply related [flat|nested] 37+ messages in thread
* ✗ CI.checkpatch: warning for drm/xe: Add and use more KLV helpers (rev5)
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (20 preceding siblings ...)
2026-07-08 23:56 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-07-10 17:31 ` Patchwork
2026-07-10 17:32 ` ✓ CI.KUnit: success " Patchwork
` (6 subsequent siblings)
28 siblings, 0 replies; 37+ messages in thread
From: Patchwork @ 2026-07-10 17:31 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Add and use more KLV helpers (rev5)
URL : https://patchwork.freedesktop.org/series/169511/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
061140b9bc586ae7f40abc1249c97e1cc72d1b9d
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 72b52de96ae74ea890978ccc58993ed701215acc
Author: Michal Wajdeczko <michal.wajdeczko@intel.com>
Date: Wed Jul 8 00:08:15 2026 +0200
drm/xe/pf: Handle migration descriptor using KLV helpers
As we plan to add more KLVs to the migration descriptor packet,
to simplify such extensions and avoid coding errors, start using
our KLV helpers for packet preparing and parsing.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michał Winiarski <michal.winiarski@intel.com>
+ /mt/dim checkpatch 08cdb6010efc9b2f58f740fc59dadc8c119f8b55 drm-intel
78f4b5873750 drm/xe/guc: Allow to print single KLV
93032f826e98 drm/xe/guc: Prepare to print group KLVs
d60d76eb784c drm/xe/guc: Add basic KLV encoding helpers
0f7d48ba0d58 drm/xe/guc: Add string KLV encoding helper
51b6b46d7744 drm/xe/guc: Add object KLV encoding helper
c331d78d518c drm/xe/guc: Add KLV parsing helper
ffe428329bfa drm/xe/guc: Formalize Reserved KLVs
-:51: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#51:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 106 lines checked
69079fcf50ac drm/xe/tests: Add GuC KLV helpers basic tests
-: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, 106 lines checked
fd4fa7b2a3f8 drm/xe/tests: Add string encoding helper test
5d42ec09452d drm/xe/tests: Add object encoding helper test
2a49841b85b5 drm/xe/tests: Add GuC KLV printer test
b53694152eac drm/xe/tests: Add migration packet test
-:17: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#17:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 96 lines checked
72b52de96ae7 drm/xe/pf: Handle migration descriptor using KLV helpers
^ permalink raw reply [flat|nested] 37+ messages in thread
* ✓ CI.KUnit: success for drm/xe: Add and use more KLV helpers (rev5)
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (21 preceding siblings ...)
2026-07-10 17:31 ` ✗ CI.checkpatch: warning for drm/xe: Add and use more KLV helpers (rev5) Patchwork
@ 2026-07-10 17:32 ` Patchwork
2026-07-10 18:22 ` ✓ Xe.CI.BAT: " Patchwork
` (5 subsequent siblings)
28 siblings, 0 replies; 37+ messages in thread
From: Patchwork @ 2026-07-10 17:32 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Add and use more KLV helpers (rev5)
URL : https://patchwork.freedesktop.org/series/169511/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[17:31:18] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:31:22] 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:31:54] Starting KUnit Kernel (1/1)...
[17:31:54] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:31:54] ================== guc_buf (11 subtests) ===================
[17:31:54] [PASSED] test_smallest
[17:31:54] [PASSED] test_largest
[17:31:54] [PASSED] test_granular
[17:31:54] [PASSED] test_unique
[17:31:54] [PASSED] test_overlap
[17:31:54] [PASSED] test_reusable
[17:31:54] [PASSED] test_too_big
[17:31:54] [PASSED] test_flush
[17:31:54] [PASSED] test_lookup
[17:31:54] [PASSED] test_data
[17:31:54] [PASSED] test_class
[17:31:54] ===================== [PASSED] guc_buf =====================
[17:31:54] =================== guc_dbm (7 subtests) ===================
[17:31:54] [PASSED] test_empty
[17:31:54] [PASSED] test_default
[17:31:54] ======================== test_size ========================
[17:31:54] [PASSED] 4
[17:31:54] [PASSED] 8
[17:31:54] [PASSED] 32
[17:31:54] [PASSED] 256
[17:31:54] ==================== [PASSED] test_size ====================
[17:31:54] ======================= test_reuse ========================
[17:31:54] [PASSED] 4
[17:31:54] [PASSED] 8
[17:31:54] [PASSED] 32
[17:31:54] [PASSED] 256
[17:31:54] =================== [PASSED] test_reuse ====================
[17:31:54] =================== test_range_overlap ====================
[17:31:54] [PASSED] 4
[17:31:54] [PASSED] 8
[17:31:54] [PASSED] 32
[17:31:54] [PASSED] 256
[17:31:54] =============== [PASSED] test_range_overlap ================
[17:31:54] =================== test_range_compact ====================
[17:31:54] [PASSED] 4
[17:31:54] [PASSED] 8
[17:31:54] [PASSED] 32
[17:31:54] [PASSED] 256
[17:31:54] =============== [PASSED] test_range_compact ================
[17:31:54] ==================== test_range_spare =====================
[17:31:54] [PASSED] 4
[17:31:54] [PASSED] 8
[17:31:54] [PASSED] 32
[17:31:54] [PASSED] 256
[17:31:54] ================ [PASSED] test_range_spare =================
[17:31:54] ===================== [PASSED] guc_dbm =====================
[17:31:54] =================== guc_idm (6 subtests) ===================
[17:31:54] [PASSED] bad_init
[17:31:54] [PASSED] no_init
[17:31:54] [PASSED] init_fini
[17:31:54] [PASSED] check_used
[17:31:54] [PASSED] check_quota
[17:31:54] [PASSED] check_all
[17:31:54] ===================== [PASSED] guc_idm =====================
[17:31:54] =============== guc_klv_helpers (9 subtests) ===============
[17:31:54] [PASSED] test_count
[17:31:54] [PASSED] test_encode_u32
[17:31:54] [PASSED] test_encode_u64
[17:31:54] [PASSED] test_encode_string
[17:31:54] [PASSED] test_encode_object_raw
[17:31:54] [PASSED] test_encode_object_klv
[17:31:54] [PASSED] test_encode_object_nested
[17:31:54] [PASSED] test_encode_object_basic
[17:31:54] [PASSED] test_print
[17:31:54] ================= [PASSED] guc_klv_helpers =================
[17:31:54] ================== no_relay (3 subtests) ===================
[17:31:54] [PASSED] xe_drops_guc2pf_if_not_ready
[17:31:54] [PASSED] xe_drops_guc2vf_if_not_ready
[17:31:54] [PASSED] xe_rejects_send_if_not_ready
[17:31:54] ==================== [PASSED] no_relay =====================
[17:31:54] ================== pf_relay (14 subtests) ==================
[17:31:54] [PASSED] pf_rejects_guc2pf_too_short
[17:31:54] [PASSED] pf_rejects_guc2pf_too_long
[17:31:54] [PASSED] pf_rejects_guc2pf_no_payload
[17:31:54] [PASSED] pf_fails_no_payload
[17:31:54] [PASSED] pf_fails_bad_origin
[17:31:54] [PASSED] pf_fails_bad_type
[17:31:54] [PASSED] pf_txn_reports_error
[17:31:54] [PASSED] pf_txn_sends_pf2guc
[17:31:54] [PASSED] pf_sends_pf2guc
[17:31:54] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[17:31:54] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[17:31:54] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[17:31:54] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[17:31:54] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[17:31:54] ==================== [PASSED] pf_relay =====================
[17:31:54] ================== vf_relay (3 subtests) ===================
[17:31:54] [PASSED] vf_rejects_guc2vf_too_short
[17:31:54] [PASSED] vf_rejects_guc2vf_too_long
[17:31:54] [PASSED] vf_rejects_guc2vf_no_payload
[17:31:54] ==================== [PASSED] vf_relay =====================
[17:31:54] ================ pf_gt_config (9 subtests) =================
[17:31:54] [PASSED] fair_contexts_1vf
[17:31:54] [PASSED] fair_doorbells_1vf
[17:31:54] [PASSED] fair_ggtt_1vf
[17:31:54] ====================== fair_vram_1vf ======================
[17:31:54] [PASSED] 3.50 GiB
[17:31:54] [PASSED] 11.5 GiB
[17:31:54] [PASSED] 15.5 GiB
[17:31:54] [PASSED] 31.5 GiB
[17:31:54] [PASSED] 63.5 GiB
[17:31:54] [PASSED] 1.91 GiB
[17:31:54] ================== [PASSED] fair_vram_1vf ==================
[17:31:54] ================ fair_vram_1vf_admin_only =================
[17:31:54] [PASSED] 3.50 GiB
[17:31:54] [PASSED] 11.5 GiB
[17:31:54] [PASSED] 15.5 GiB
[17:31:54] [PASSED] 31.5 GiB
[17:31:54] [PASSED] 63.5 GiB
[17:31:54] [PASSED] 1.91 GiB
[17:31:54] ============ [PASSED] fair_vram_1vf_admin_only =============
[17:31:54] ====================== fair_contexts ======================
[17:31:54] [PASSED] 1 VF
[17:31:54] [PASSED] 2 VFs
[17:31:54] [PASSED] 3 VFs
[17:31:54] [PASSED] 4 VFs
[17:31:54] [PASSED] 5 VFs
[17:31:54] [PASSED] 6 VFs
[17:31:54] [PASSED] 7 VFs
[17:31:54] [PASSED] 8 VFs
[17:31:54] [PASSED] 9 VFs
[17:31:54] [PASSED] 10 VFs
[17:31:54] [PASSED] 11 VFs
[17:31:54] [PASSED] 12 VFs
[17:31:54] [PASSED] 13 VFs
[17:31:54] [PASSED] 14 VFs
[17:31:54] [PASSED] 15 VFs
[17:31:54] [PASSED] 16 VFs
[17:31:54] [PASSED] 17 VFs
[17:31:54] [PASSED] 18 VFs
[17:31:54] [PASSED] 19 VFs
[17:31:54] [PASSED] 20 VFs
[17:31:54] [PASSED] 21 VFs
[17:31:54] [PASSED] 22 VFs
[17:31:54] [PASSED] 23 VFs
[17:31:54] [PASSED] 24 VFs
[17:31:54] [PASSED] 25 VFs
[17:31:54] [PASSED] 26 VFs
[17:31:54] [PASSED] 27 VFs
[17:31:54] [PASSED] 28 VFs
[17:31:54] [PASSED] 29 VFs
[17:31:54] [PASSED] 30 VFs
[17:31:54] [PASSED] 31 VFs
[17:31:54] [PASSED] 32 VFs
[17:31:54] [PASSED] 33 VFs
[17:31:54] [PASSED] 34 VFs
[17:31:54] [PASSED] 35 VFs
[17:31:54] [PASSED] 36 VFs
[17:31:54] [PASSED] 37 VFs
[17:31:54] [PASSED] 38 VFs
[17:31:54] [PASSED] 39 VFs
[17:31:54] [PASSED] 40 VFs
[17:31:54] [PASSED] 41 VFs
[17:31:54] [PASSED] 42 VFs
[17:31:54] [PASSED] 43 VFs
[17:31:54] [PASSED] 44 VFs
[17:31:54] [PASSED] 45 VFs
[17:31:54] [PASSED] 46 VFs
[17:31:54] [PASSED] 47 VFs
[17:31:54] [PASSED] 48 VFs
[17:31:54] [PASSED] 49 VFs
[17:31:54] [PASSED] 50 VFs
[17:31:54] [PASSED] 51 VFs
[17:31:54] [PASSED] 52 VFs
[17:31:54] [PASSED] 53 VFs
[17:31:54] [PASSED] 54 VFs
[17:31:54] [PASSED] 55 VFs
[17:31:54] [PASSED] 56 VFs
[17:31:54] [PASSED] 57 VFs
[17:31:54] [PASSED] 58 VFs
[17:31:54] [PASSED] 59 VFs
[17:31:54] [PASSED] 60 VFs
[17:31:54] [PASSED] 61 VFs
[17:31:54] [PASSED] 62 VFs
[17:31:54] [PASSED] 63 VFs
[17:31:54] ================== [PASSED] fair_contexts ==================
[17:31:54] ===================== fair_doorbells ======================
[17:31:54] [PASSED] 1 VF
[17:31:54] [PASSED] 2 VFs
[17:31:54] [PASSED] 3 VFs
[17:31:54] [PASSED] 4 VFs
[17:31:54] [PASSED] 5 VFs
[17:31:54] [PASSED] 6 VFs
[17:31:54] [PASSED] 7 VFs
[17:31:54] [PASSED] 8 VFs
[17:31:54] [PASSED] 9 VFs
[17:31:54] [PASSED] 10 VFs
[17:31:54] [PASSED] 11 VFs
[17:31:54] [PASSED] 12 VFs
[17:31:54] [PASSED] 13 VFs
[17:31:54] [PASSED] 14 VFs
[17:31:54] [PASSED] 15 VFs
[17:31:54] [PASSED] 16 VFs
[17:31:54] [PASSED] 17 VFs
[17:31:54] [PASSED] 18 VFs
[17:31:54] [PASSED] 19 VFs
[17:31:54] [PASSED] 20 VFs
[17:31:54] [PASSED] 21 VFs
[17:31:54] [PASSED] 22 VFs
[17:31:54] [PASSED] 23 VFs
[17:31:54] [PASSED] 24 VFs
[17:31:54] [PASSED] 25 VFs
[17:31:54] [PASSED] 26 VFs
[17:31:54] [PASSED] 27 VFs
[17:31:54] [PASSED] 28 VFs
[17:31:54] [PASSED] 29 VFs
[17:31:54] [PASSED] 30 VFs
[17:31:54] [PASSED] 31 VFs
[17:31:54] [PASSED] 32 VFs
[17:31:54] [PASSED] 33 VFs
[17:31:54] [PASSED] 34 VFs
[17:31:54] [PASSED] 35 VFs
[17:31:54] [PASSED] 36 VFs
[17:31:54] [PASSED] 37 VFs
[17:31:54] [PASSED] 38 VFs
[17:31:54] [PASSED] 39 VFs
[17:31:54] [PASSED] 40 VFs
[17:31:54] [PASSED] 41 VFs
[17:31:54] [PASSED] 42 VFs
[17:31:54] [PASSED] 43 VFs
[17:31:54] [PASSED] 44 VFs
[17:31:54] [PASSED] 45 VFs
[17:31:54] [PASSED] 46 VFs
[17:31:54] [PASSED] 47 VFs
[17:31:54] [PASSED] 48 VFs
[17:31:54] [PASSED] 49 VFs
[17:31:54] [PASSED] 50 VFs
[17:31:54] [PASSED] 51 VFs
[17:31:54] [PASSED] 52 VFs
[17:31:54] [PASSED] 53 VFs
[17:31:54] [PASSED] 54 VFs
[17:31:54] [PASSED] 55 VFs
[17:31:54] [PASSED] 56 VFs
[17:31:54] [PASSED] 57 VFs
[17:31:54] [PASSED] 58 VFs
[17:31:54] [PASSED] 59 VFs
[17:31:54] [PASSED] 60 VFs
[17:31:54] [PASSED] 61 VFs
[17:31:54] [PASSED] 62 VFs
[17:31:54] [PASSED] 63 VFs
[17:31:54] ================= [PASSED] fair_doorbells ==================
[17:31:54] ======================== fair_ggtt ========================
[17:31:54] [PASSED] 1 VF
[17:31:54] [PASSED] 2 VFs
[17:31:54] [PASSED] 3 VFs
[17:31:54] [PASSED] 4 VFs
[17:31:54] [PASSED] 5 VFs
[17:31:54] [PASSED] 6 VFs
[17:31:54] [PASSED] 7 VFs
[17:31:54] [PASSED] 8 VFs
[17:31:54] [PASSED] 9 VFs
[17:31:54] [PASSED] 10 VFs
[17:31:54] [PASSED] 11 VFs
[17:31:54] [PASSED] 12 VFs
[17:31:54] [PASSED] 13 VFs
[17:31:54] [PASSED] 14 VFs
[17:31:54] [PASSED] 15 VFs
[17:31:54] [PASSED] 16 VFs
[17:31:54] [PASSED] 17 VFs
[17:31:54] [PASSED] 18 VFs
[17:31:54] [PASSED] 19 VFs
[17:31:54] [PASSED] 20 VFs
[17:31:54] [PASSED] 21 VFs
[17:31:54] [PASSED] 22 VFs
[17:31:54] [PASSED] 23 VFs
[17:31:54] [PASSED] 24 VFs
[17:31:54] [PASSED] 25 VFs
[17:31:54] [PASSED] 26 VFs
[17:31:54] [PASSED] 27 VFs
[17:31:54] [PASSED] 28 VFs
[17:31:54] [PASSED] 29 VFs
[17:31:54] [PASSED] 30 VFs
[17:31:54] [PASSED] 31 VFs
[17:31:54] [PASSED] 32 VFs
[17:31:54] [PASSED] 33 VFs
[17:31:54] [PASSED] 34 VFs
[17:31:54] [PASSED] 35 VFs
[17:31:54] [PASSED] 36 VFs
[17:31:54] [PASSED] 37 VFs
[17:31:54] [PASSED] 38 VFs
[17:31:54] [PASSED] 39 VFs
[17:31:54] [PASSED] 40 VFs
[17:31:54] [PASSED] 41 VFs
[17:31:54] [PASSED] 42 VFs
[17:31:54] [PASSED] 43 VFs
[17:31:54] [PASSED] 44 VFs
[17:31:54] [PASSED] 45 VFs
[17:31:54] [PASSED] 46 VFs
[17:31:54] [PASSED] 47 VFs
[17:31:54] [PASSED] 48 VFs
[17:31:54] [PASSED] 49 VFs
[17:31:54] [PASSED] 50 VFs
[17:31:54] [PASSED] 51 VFs
[17:31:54] [PASSED] 52 VFs
[17:31:54] [PASSED] 53 VFs
[17:31:54] [PASSED] 54 VFs
[17:31:54] [PASSED] 55 VFs
[17:31:54] [PASSED] 56 VFs
[17:31:54] [PASSED] 57 VFs
[17:31:54] [PASSED] 58 VFs
[17:31:54] [PASSED] 59 VFs
[17:31:54] [PASSED] 60 VFs
[17:31:54] [PASSED] 61 VFs
[17:31:54] [PASSED] 62 VFs
[17:31:54] [PASSED] 63 VFs
[17:31:54] ==================== [PASSED] fair_ggtt ====================
[17:31:54] ======================== fair_vram ========================
[17:31:54] [PASSED] 1 VF
[17:31:54] [PASSED] 2 VFs
[17:31:54] [PASSED] 3 VFs
[17:31:54] [PASSED] 4 VFs
[17:31:54] [PASSED] 5 VFs
[17:31:54] [PASSED] 6 VFs
[17:31:54] [PASSED] 7 VFs
[17:31:54] [PASSED] 8 VFs
[17:31:54] [PASSED] 9 VFs
[17:31:54] [PASSED] 10 VFs
[17:31:54] [PASSED] 11 VFs
[17:31:54] [PASSED] 12 VFs
[17:31:54] [PASSED] 13 VFs
[17:31:54] [PASSED] 14 VFs
[17:31:54] [PASSED] 15 VFs
[17:31:54] [PASSED] 16 VFs
[17:31:54] [PASSED] 17 VFs
[17:31:54] [PASSED] 18 VFs
[17:31:54] [PASSED] 19 VFs
[17:31:54] [PASSED] 20 VFs
[17:31:54] [PASSED] 21 VFs
[17:31:54] [PASSED] 22 VFs
[17:31:54] [PASSED] 23 VFs
[17:31:54] [PASSED] 24 VFs
[17:31:54] [PASSED] 25 VFs
[17:31:54] [PASSED] 26 VFs
[17:31:54] [PASSED] 27 VFs
[17:31:54] [PASSED] 28 VFs
[17:31:54] [PASSED] 29 VFs
[17:31:54] [PASSED] 30 VFs
[17:31:54] [PASSED] 31 VFs
[17:31:54] [PASSED] 32 VFs
[17:31:54] [PASSED] 33 VFs
[17:31:54] [PASSED] 34 VFs
[17:31:54] [PASSED] 35 VFs
[17:31:54] [PASSED] 36 VFs
[17:31:54] [PASSED] 37 VFs
[17:31:54] [PASSED] 38 VFs
[17:31:54] [PASSED] 39 VFs
[17:31:54] [PASSED] 40 VFs
[17:31:54] [PASSED] 41 VFs
[17:31:54] [PASSED] 42 VFs
[17:31:54] [PASSED] 43 VFs
[17:31:54] [PASSED] 44 VFs
[17:31:54] [PASSED] 45 VFs
[17:31:54] [PASSED] 46 VFs
[17:31:54] [PASSED] 47 VFs
[17:31:54] [PASSED] 48 VFs
[17:31:54] [PASSED] 49 VFs
[17:31:54] [PASSED] 50 VFs
[17:31:54] [PASSED] 51 VFs
[17:31:54] [PASSED] 52 VFs
[17:31:54] [PASSED] 53 VFs
[17:31:54] [PASSED] 54 VFs
[17:31:54] [PASSED] 55 VFs
[17:31:54] [PASSED] 56 VFs
[17:31:54] [PASSED] 57 VFs
[17:31:54] [PASSED] 58 VFs
[17:31:54] [PASSED] 59 VFs
[17:31:54] [PASSED] 60 VFs
[17:31:54] [PASSED] 61 VFs
[17:31:54] [PASSED] 62 VFs
[17:31:54] [PASSED] 63 VFs
[17:31:54] ==================== [PASSED] fair_vram ====================
[17:31:54] ================== [PASSED] pf_gt_config ===================
[17:31:54] ===================== lmtt (1 subtest) =====================
[17:31:54] ======================== test_ops =========================
[17:31:54] [PASSED] 2-level
[17:31:54] [PASSED] multi-level
[17:31:54] ==================== [PASSED] test_ops =====================
[17:31:54] ====================== [PASSED] lmtt =======================
[17:31:54] ================= sriov_packet (1 subtest) =================
[17:31:54] [PASSED] test_descriptor_init
[17:31:54] ================== [PASSED] sriov_packet ===================
[17:31:54] ================= pf_service (11 subtests) =================
[17:31:54] [PASSED] pf_negotiate_any
[17:31:54] [PASSED] pf_negotiate_base_match
[17:31:54] [PASSED] pf_negotiate_base_newer
[17:31:54] [PASSED] pf_negotiate_base_next
[17:31:54] [SKIPPED] pf_negotiate_base_older (no older minor)
[17:31:54] [PASSED] pf_negotiate_base_prev
[17:31:54] [PASSED] pf_negotiate_latest_match
[17:31:54] [PASSED] pf_negotiate_latest_newer
[17:31:54] [PASSED] pf_negotiate_latest_next
[17:31:54] [SKIPPED] pf_negotiate_latest_older (no older minor)
[17:31:54] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[17:31:54] =================== [PASSED] pf_service ====================
[17:31:54] ================= xe_guc_g2g (2 subtests) ==================
[17:31:54] ============== xe_live_guc_g2g_kunit_default ==============
[17:31:54] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[17:31:54] ============== xe_live_guc_g2g_kunit_allmem ===============
[17:31:54] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[17:31:54] =================== [SKIPPED] xe_guc_g2g ===================
[17:31:54] =================== xe_mocs (2 subtests) ===================
[17:31:54] ================ xe_live_mocs_kernel_kunit ================
[17:31:54] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[17:31:54] ================ xe_live_mocs_reset_kunit =================
[17:31:54] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[17:31:54] ==================== [SKIPPED] xe_mocs =====================
[17:31:54] ================= xe_migrate (2 subtests) ==================
[17:31:54] ================= xe_migrate_sanity_kunit =================
[17:31:54] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[17:31:54] ================== xe_validate_ccs_kunit ==================
[17:31:54] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[17:31:54] =================== [SKIPPED] xe_migrate ===================
[17:31:54] ================== xe_dma_buf (1 subtest) ==================
[17:31:54] ==================== xe_dma_buf_kunit =====================
[17:31:54] ================ [SKIPPED] xe_dma_buf_kunit ================
[17:31:54] =================== [SKIPPED] xe_dma_buf ===================
[17:31:54] ================= xe_bo_shrink (1 subtest) =================
[17:31:54] =================== xe_bo_shrink_kunit ====================
[17:31:54] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[17:31:54] ================== [SKIPPED] xe_bo_shrink ==================
[17:31:54] ==================== xe_bo (2 subtests) ====================
[17:31:54] ================== xe_ccs_migrate_kunit ===================
[17:31:54] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[17:31:54] ==================== xe_bo_evict_kunit ====================
[17:31:54] =============== [SKIPPED] xe_bo_evict_kunit ================
[17:31:54] ===================== [SKIPPED] xe_bo ======================
[17:31:54] ==================== args (13 subtests) ====================
[17:31:54] [PASSED] count_args_test
[17:31:54] [PASSED] call_args_example
[17:31:54] [PASSED] call_args_test
[17:31:54] [PASSED] drop_first_arg_example
[17:31:54] [PASSED] drop_first_arg_test
[17:31:54] [PASSED] first_arg_example
[17:31:54] [PASSED] first_arg_test
[17:31:54] [PASSED] last_arg_example
[17:31:54] [PASSED] last_arg_test
[17:31:54] [PASSED] pick_arg_example
[17:31:54] [PASSED] if_args_example
[17:31:54] [PASSED] if_args_test
[17:31:54] [PASSED] sep_comma_example
[17:31:54] ====================== [PASSED] args =======================
[17:31:54] =================== xe_pci (3 subtests) ====================
[17:31:54] ==================== check_graphics_ip ====================
[17:31:54] [PASSED] 12.00 Xe_LP
[17:31:54] [PASSED] 12.10 Xe_LP+
[17:31:54] [PASSED] 12.55 Xe_HPG
[17:31:54] [PASSED] 12.60 Xe_HPC
[17:31:54] [PASSED] 12.70 Xe_LPG
[17:31:54] [PASSED] 12.71 Xe_LPG
[17:31:54] [PASSED] 12.74 Xe_LPG+
[17:31:54] [PASSED] 20.01 Xe2_HPG
[17:31:54] [PASSED] 20.02 Xe2_HPG
[17:31:54] [PASSED] 20.04 Xe2_LPG
[17:31:54] [PASSED] 30.00 Xe3_LPG
[17:31:54] [PASSED] 30.01 Xe3_LPG
[17:31:54] [PASSED] 30.03 Xe3_LPG
[17:31:54] [PASSED] 30.04 Xe3_LPG
[17:31:54] [PASSED] 30.05 Xe3_LPG
[17:31:54] [PASSED] 35.10 Xe3p_LPG
[17:31:54] [PASSED] 35.11 Xe3p_XPC
[17:31:54] ================ [PASSED] check_graphics_ip ================
[17:31:54] ===================== check_media_ip ======================
[17:31:54] [PASSED] 12.00 Xe_M
[17:31:54] [PASSED] 12.55 Xe_HPM
[17:31:54] [PASSED] 13.00 Xe_LPM+
[17:31:54] [PASSED] 13.01 Xe2_HPM
[17:31:54] [PASSED] 20.00 Xe2_LPM
[17:31:54] [PASSED] 30.00 Xe3_LPM
[17:31:54] [PASSED] 30.02 Xe3_LPM
[17:31:54] [PASSED] 35.00 Xe3p_LPM
[17:31:54] [PASSED] 35.03 Xe3p_HPM
[17:31:54] ================= [PASSED] check_media_ip ==================
[17:31:54] =================== check_platform_desc ===================
[17:31:54] [PASSED] 0x9A60 (TIGERLAKE)
[17:31:54] [PASSED] 0x9A68 (TIGERLAKE)
[17:31:54] [PASSED] 0x9A70 (TIGERLAKE)
[17:31:54] [PASSED] 0x9A40 (TIGERLAKE)
[17:31:54] [PASSED] 0x9A49 (TIGERLAKE)
[17:31:54] [PASSED] 0x9A59 (TIGERLAKE)
[17:31:54] [PASSED] 0x9A78 (TIGERLAKE)
[17:31:54] [PASSED] 0x9AC0 (TIGERLAKE)
[17:31:54] [PASSED] 0x9AC9 (TIGERLAKE)
[17:31:54] [PASSED] 0x9AD9 (TIGERLAKE)
[17:31:54] [PASSED] 0x9AF8 (TIGERLAKE)
[17:31:54] [PASSED] 0x4C80 (ROCKETLAKE)
[17:31:54] [PASSED] 0x4C8A (ROCKETLAKE)
[17:31:54] [PASSED] 0x4C8B (ROCKETLAKE)
[17:31:54] [PASSED] 0x4C8C (ROCKETLAKE)
[17:31:54] [PASSED] 0x4C90 (ROCKETLAKE)
[17:31:54] [PASSED] 0x4C9A (ROCKETLAKE)
[17:31:54] [PASSED] 0x4680 (ALDERLAKE_S)
[17:31:54] [PASSED] 0x4682 (ALDERLAKE_S)
[17:31:54] [PASSED] 0x4688 (ALDERLAKE_S)
[17:31:54] [PASSED] 0x468A (ALDERLAKE_S)
[17:31:54] [PASSED] 0x468B (ALDERLAKE_S)
[17:31:54] [PASSED] 0x4690 (ALDERLAKE_S)
[17:31:54] [PASSED] 0x4692 (ALDERLAKE_S)
[17:31:54] [PASSED] 0x4693 (ALDERLAKE_S)
[17:31:54] [PASSED] 0x46A0 (ALDERLAKE_P)
[17:31:54] [PASSED] 0x46A1 (ALDERLAKE_P)
[17:31:54] [PASSED] 0x46A2 (ALDERLAKE_P)
[17:31:54] [PASSED] 0x46A3 (ALDERLAKE_P)
[17:31:54] [PASSED] 0x46A6 (ALDERLAKE_P)
[17:31:54] [PASSED] 0x46A8 (ALDERLAKE_P)
[17:31:54] [PASSED] 0x46AA (ALDERLAKE_P)
[17:31:54] [PASSED] 0x462A (ALDERLAKE_P)
[17:31:54] [PASSED] 0x4626 (ALDERLAKE_P)
[17:31:54] [PASSED] 0x4628 (ALDERLAKE_P)
[17:31:54] [PASSED] 0x46B0 (ALDERLAKE_P)
[17:31:54] [PASSED] 0x46B1 (ALDERLAKE_P)
[17:31:54] [PASSED] 0x46B2 (ALDERLAKE_P)
[17:31:54] [PASSED] 0x46B3 (ALDERLAKE_P)
[17:31:54] [PASSED] 0x46C0 (ALDERLAKE_P)
[17:31:54] [PASSED] 0x46C1 (ALDERLAKE_P)
[17:31:54] [PASSED] 0x46C2 (ALDERLAKE_P)
[17:31:54] [PASSED] 0x46C3 (ALDERLAKE_P)
[17:31:54] [PASSED] 0x46D0 (ALDERLAKE_N)
[17:31:54] [PASSED] 0x46D1 (ALDERLAKE_N)
[17:31:54] [PASSED] 0x46D2 (ALDERLAKE_N)
[17:31:54] [PASSED] 0x46D3 (ALDERLAKE_N)
[17:31:54] [PASSED] 0x46D4 (ALDERLAKE_N)
[17:31:54] [PASSED] 0xA721 (ALDERLAKE_P)
[17:31:54] [PASSED] 0xA7A1 (ALDERLAKE_P)
[17:31:54] [PASSED] 0xA7A9 (ALDERLAKE_P)
[17:31:54] [PASSED] 0xA7AC (ALDERLAKE_P)
[17:31:54] [PASSED] 0xA7AD (ALDERLAKE_P)
[17:31:54] [PASSED] 0xA720 (ALDERLAKE_P)
[17:31:54] [PASSED] 0xA7A0 (ALDERLAKE_P)
[17:31:54] [PASSED] 0xA7A8 (ALDERLAKE_P)
[17:31:54] [PASSED] 0xA7AA (ALDERLAKE_P)
[17:31:54] [PASSED] 0xA7AB (ALDERLAKE_P)
[17:31:54] [PASSED] 0xA780 (ALDERLAKE_S)
[17:31:54] [PASSED] 0xA781 (ALDERLAKE_S)
[17:31:54] [PASSED] 0xA782 (ALDERLAKE_S)
[17:31:54] [PASSED] 0xA783 (ALDERLAKE_S)
[17:31:54] [PASSED] 0xA788 (ALDERLAKE_S)
[17:31:54] [PASSED] 0xA789 (ALDERLAKE_S)
[17:31:54] [PASSED] 0xA78A (ALDERLAKE_S)
[17:31:54] [PASSED] 0xA78B (ALDERLAKE_S)
[17:31:54] [PASSED] 0x4905 (DG1)
[17:31:54] [PASSED] 0x4906 (DG1)
[17:31:54] [PASSED] 0x4907 (DG1)
[17:31:54] [PASSED] 0x4908 (DG1)
[17:31:54] [PASSED] 0x4909 (DG1)
[17:31:54] [PASSED] 0x56C0 (DG2)
[17:31:54] [PASSED] 0x56C2 (DG2)
[17:31:54] [PASSED] 0x56C1 (DG2)
[17:31:54] [PASSED] 0x7D51 (METEORLAKE)
[17:31:54] [PASSED] 0x7DD1 (METEORLAKE)
[17:31:54] [PASSED] 0x7D41 (METEORLAKE)
[17:31:54] [PASSED] 0x7D67 (METEORLAKE)
[17:31:54] [PASSED] 0xB640 (METEORLAKE)
[17:31:54] [PASSED] 0x56A0 (DG2)
[17:31:54] [PASSED] 0x56A1 (DG2)
[17:31:54] [PASSED] 0x56A2 (DG2)
[17:31:54] [PASSED] 0x56BE (DG2)
[17:31:54] [PASSED] 0x56BF (DG2)
[17:31:54] [PASSED] 0x5690 (DG2)
[17:31:54] [PASSED] 0x5691 (DG2)
[17:31:54] [PASSED] 0x5692 (DG2)
[17:31:54] [PASSED] 0x56A5 (DG2)
[17:31:54] [PASSED] 0x56A6 (DG2)
[17:31:54] [PASSED] 0x56B0 (DG2)
[17:31:54] [PASSED] 0x56B1 (DG2)
[17:31:54] [PASSED] 0x56BA (DG2)
[17:31:54] [PASSED] 0x56BB (DG2)
[17:31:54] [PASSED] 0x56BC (DG2)
[17:31:54] [PASSED] 0x56BD (DG2)
[17:31:54] [PASSED] 0x5693 (DG2)
[17:31:54] [PASSED] 0x5694 (DG2)
[17:31:54] [PASSED] 0x5695 (DG2)
[17:31:54] [PASSED] 0x56A3 (DG2)
[17:31:54] [PASSED] 0x56A4 (DG2)
[17:31:54] [PASSED] 0x56B2 (DG2)
[17:31:54] [PASSED] 0x56B3 (DG2)
[17:31:54] [PASSED] 0x5696 (DG2)
[17:31:54] [PASSED] 0x5697 (DG2)
[17:31:54] [PASSED] 0xB69 (PVC)
[17:31:54] [PASSED] 0xB6E (PVC)
[17:31:54] [PASSED] 0xBD4 (PVC)
[17:31:54] [PASSED] 0xBD5 (PVC)
[17:31:54] [PASSED] 0xBD6 (PVC)
[17:31:54] [PASSED] 0xBD7 (PVC)
[17:31:54] [PASSED] 0xBD8 (PVC)
[17:31:54] [PASSED] 0xBD9 (PVC)
[17:31:54] [PASSED] 0xBDA (PVC)
[17:31:54] [PASSED] 0xBDB (PVC)
[17:31:54] [PASSED] 0xBE0 (PVC)
[17:31:54] [PASSED] 0xBE1 (PVC)
[17:31:54] [PASSED] 0xBE5 (PVC)
[17:31:54] [PASSED] 0x7D40 (METEORLAKE)
[17:31:54] [PASSED] 0x7D45 (METEORLAKE)
[17:31:54] [PASSED] 0x7D55 (METEORLAKE)
[17:31:54] [PASSED] 0x7D60 (METEORLAKE)
[17:31:54] [PASSED] 0x7DD5 (METEORLAKE)
[17:31:54] [PASSED] 0x6420 (LUNARLAKE)
[17:31:54] [PASSED] 0x64A0 (LUNARLAKE)
[17:31:54] [PASSED] 0x64B0 (LUNARLAKE)
[17:31:54] [PASSED] 0xE202 (BATTLEMAGE)
[17:31:54] [PASSED] 0xE209 (BATTLEMAGE)
[17:31:54] [PASSED] 0xE20B (BATTLEMAGE)
[17:31:54] [PASSED] 0xE20C (BATTLEMAGE)
[17:31:54] [PASSED] 0xE20D (BATTLEMAGE)
[17:31:54] [PASSED] 0xE210 (BATTLEMAGE)
[17:31:54] [PASSED] 0xE211 (BATTLEMAGE)
[17:31:54] [PASSED] 0xE212 (BATTLEMAGE)
[17:31:54] [PASSED] 0xE216 (BATTLEMAGE)
[17:31:54] [PASSED] 0xE220 (BATTLEMAGE)
[17:31:54] [PASSED] 0xE221 (BATTLEMAGE)
[17:31:54] [PASSED] 0xE222 (BATTLEMAGE)
[17:31:54] [PASSED] 0xE223 (BATTLEMAGE)
[17:31:54] [PASSED] 0xB080 (PANTHERLAKE)
[17:31:54] [PASSED] 0xB081 (PANTHERLAKE)
[17:31:54] [PASSED] 0xB082 (PANTHERLAKE)
[17:31:54] [PASSED] 0xB083 (PANTHERLAKE)
[17:31:54] [PASSED] 0xB084 (PANTHERLAKE)
[17:31:54] [PASSED] 0xB085 (PANTHERLAKE)
[17:31:54] [PASSED] 0xB086 (PANTHERLAKE)
[17:31:54] [PASSED] 0xB087 (PANTHERLAKE)
[17:31:54] [PASSED] 0xB08F (PANTHERLAKE)
[17:31:54] [PASSED] 0xB090 (PANTHERLAKE)
[17:31:54] [PASSED] 0xB0A0 (PANTHERLAKE)
[17:31:54] [PASSED] 0xB0B0 (PANTHERLAKE)
[17:31:54] [PASSED] 0xFD80 (PANTHERLAKE)
[17:31:54] [PASSED] 0xFD81 (PANTHERLAKE)
[17:31:54] [PASSED] 0xD740 (NOVALAKE_S)
[17:31:54] [PASSED] 0xD741 (NOVALAKE_S)
[17:31:54] [PASSED] 0xD742 (NOVALAKE_S)
[17:31:54] [PASSED] 0xD743 (NOVALAKE_S)
[17:31:54] [PASSED] 0xD745 (NOVALAKE_S)
[17:31:54] [PASSED] 0xD74A (NOVALAKE_S)
[17:31:54] [PASSED] 0xD74B (NOVALAKE_S)
[17:31:54] [PASSED] 0x674C (CRESCENTISLAND)
[17:31:54] [PASSED] 0x674D (CRESCENTISLAND)
[17:31:54] [PASSED] 0x674E (CRESCENTISLAND)
[17:31:54] [PASSED] 0x674F (CRESCENTISLAND)
[17:31:54] [PASSED] 0x6750 (CRESCENTISLAND)
[17:31:54] [PASSED] 0xD750 (NOVALAKE_P)
[17:31:54] [PASSED] 0xD751 (NOVALAKE_P)
[17:31:54] [PASSED] 0xD752 (NOVALAKE_P)
[17:31:54] [PASSED] 0xD753 (NOVALAKE_P)
[17:31:54] [PASSED] 0xD754 (NOVALAKE_P)
[17:31:54] [PASSED] 0xD755 (NOVALAKE_P)
[17:31:54] [PASSED] 0xD756 (NOVALAKE_P)
[17:31:54] [PASSED] 0xD757 (NOVALAKE_P)
[17:31:54] [PASSED] 0xD75F (NOVALAKE_P)
[17:31:54] =============== [PASSED] check_platform_desc ===============
[17:31:54] ===================== [PASSED] xe_pci ======================
[17:31:54] ============= xe_rtp_tables_test (5 subtests) ==============
[17:31:54] ================== xe_rtp_table_gt_test ===================
[17:31:54] [PASSED] gt_was/14011060649
[17:31:54] [PASSED] gt_was/14011059788
[17:31:54] [PASSED] gt_was/14015795083
[17:31:54] [PASSED] gt_was/16021867713
[17:31:54] [PASSED] gt_was/14019449301
[17:31:54] [PASSED] gt_was/16028005424
[17:31:54] [PASSED] gt_was/14026578760
[17:31:54] [PASSED] gt_was/1409420604
[17:31:54] [PASSED] gt_was/1408615072
[17:31:54] [PASSED] gt_was/22010523718
[17:31:54] [PASSED] gt_was/14011006942
[17:31:54] [PASSED] gt_was/14014830051
[17:31:54] [PASSED] gt_was/18018781329
[17:31:54] [PASSED] gt_was/1509235366
[17:31:54] [PASSED] gt_was/18018781329
[17:31:54] [PASSED] gt_was/16016694945
[17:31:54] [PASSED] gt_was/14018575942
[17:31:54] [PASSED] gt_was/22016670082
[17:31:54] [PASSED] gt_was/22016670082
[17:31:54] [PASSED] gt_was/14017421178
[17:31:54] [PASSED] gt_was/16025250150
[17:31:54] [PASSED] gt_was/14021871409
[17:31:54] [PASSED] gt_was/16021865536
[17:31:54] [PASSED] gt_was/14021486841
[17:31:54] [PASSED] gt_was/14025160223
[17:31:54] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[17:31:54] [PASSED] gt_was/14025635424
[17:31:54] [PASSED] gt_was/16028005424
[17:31:54] ============== [PASSED] xe_rtp_table_gt_test ===============
[17:31:54] ================== xe_rtp_table_gt_test ===================
[17:31:54] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[17:31:54] [PASSED] gt_tunings/Tuning: 32B Access Enable
[17:31:54] [PASSED] gt_tunings/Tuning: L3 cache
[17:31:54] [PASSED] gt_tunings/Tuning: L3 cache - media
[17:31:54] [PASSED] gt_tunings/Tuning: Compression Overfetch
[17:31:54] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[17:31:54] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[17:31:54] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[17:31:54] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[17:31:54] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[17:31:54] [PASSED] gt_tunings/Tuning: Stateless compression control
[17:31:54] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[17:31:54] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[17:31:54] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[17:31:54] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[17:31:54] ============== [PASSED] xe_rtp_table_gt_test ===============
[17:31:54] ================== xe_rtp_table_oob_test ==================
[17:31:54] [PASSED] oob_was/1607983814
[17:31:54] [PASSED] oob_was/16010904313
[17:31:54] [PASSED] oob_was/18022495364
[17:31:54] [PASSED] oob_was/22012773006
[17:31:54] [PASSED] oob_was/14014475959
[17:31:54] [PASSED] oob_was/22011391025
[17:31:54] [PASSED] oob_was/22012727170
[17:31:54] [PASSED] oob_was/22012727685
[17:31:54] [PASSED] oob_was/22016596838
[17:31:54] [PASSED] oob_was/18020744125
[17:31:54] [PASSED] oob_was/1409600907
[17:31:54] [PASSED] oob_was/22014953428
[17:31:54] [PASSED] oob_was/16017236439
[17:31:54] [PASSED] oob_was/14019821291
[17:31:54] [PASSED] oob_was/14015076503
[17:31:54] [PASSED] oob_was/14018913170
[17:31:54] [PASSED] oob_was/14018094691
[17:31:54] [PASSED] oob_was/18024947630
[17:31:54] [PASSED] oob_was/16022287689
[17:31:54] [PASSED] oob_was/13011645652
[17:31:54] [PASSED] oob_was/14022293748
[17:31:54] [PASSED] oob_was/22019794406
[17:31:54] [PASSED] oob_was/22019338487
[17:31:54] [PASSED] oob_was/16023588340
[17:31:54] [PASSED] oob_was/14019789679
[17:31:54] [PASSED] oob_was/14022866841
[17:31:54] [PASSED] oob_was/16021333562
[17:31:54] [PASSED] oob_was/14016712196
[17:31:54] [PASSED] oob_was/14015568240
[17:31:54] [PASSED] oob_was/18013179988
[17:31:54] [PASSED] oob_was/1508761755
[17:31:54] [PASSED] oob_was/16023105232
[17:31:54] [PASSED] oob_was/16026508708
[17:31:54] [PASSED] oob_was/14020001231
[17:31:54] [PASSED] oob_was/16023683509
[17:31:54] [PASSED] oob_was/14025515070
[17:31:54] [PASSED] oob_was/15015404425_disable
[17:31:54] [PASSED] oob_was/16026007364
[17:31:54] [PASSED] oob_was/14020316580
[17:31:54] [PASSED] oob_was/14025883347
[17:31:54] [PASSED] oob_was/16029380221
[17:31:54] [PASSED] oob_was/22022079272
[17:31:54] [PASSED] oob_was/16029897822
[17:31:54] ============== [PASSED] xe_rtp_table_oob_test ==============
[17:31:54] ================ xe_rtp_table_dev_oob_test ================
[17:31:54] [PASSED] device_oob_was/22010954014
[17:31:54] [PASSED] device_oob_was/15015404425
[17:31:54] [PASSED] device_oob_was/22019338487_display
[17:31:54] [PASSED] device_oob_was/14022085890
[17:31:54] [PASSED] device_oob_was/14026539277
[17:31:54] [PASSED] device_oob_was/14026633728
[17:31:54] [PASSED] device_oob_was/14026746987
[17:31:54] [PASSED] device_oob_was/14026779378
[17:31:54] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[17:31:54] ========== xe_rtp_table_missing_upper_bound_test ==========
[17:31:54] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[17:31:54] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[17:31:54] [PASSED] register_whitelist/1806527549
[17:31:54] [PASSED] register_whitelist/allow_read_ctx_timestamp
[17:31:54] [PASSED] register_whitelist/allow_read_queue_timestamp
[17:31:54] [PASSED] register_whitelist/16014440446
[17:31:54] [PASSED] register_whitelist/16017236439
[17:31:54] [PASSED] register_whitelist/16020183090
[17:31:54] [PASSED] register_whitelist/14024997852
[17:31:54] [PASSED] register_whitelist/14024997852
[17:31:54] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[17:31:54] =============== [PASSED] xe_rtp_tables_test ================
[17:31:54] =================== xe_rtp (3 subtests) ====================
[17:31:54] =================== xe_rtp_rules_tests ====================
[17:31:54] [PASSED] no
[17:31:54] [PASSED] yes
[17:31:54] [PASSED] no-and-no
[17:31:54] [PASSED] no-and-yes
[17:31:54] [PASSED] yes-and-no
[17:31:54] [PASSED] yes-and-yes
[17:31:54] [PASSED] no-or-no
[17:31:54] [PASSED] no-or-yes
[17:31:54] [PASSED] yes-or-no
[17:31:54] [PASSED] yes-or-yes
[17:31:54] [PASSED] no-yes-or-yes-no
[17:31:54] [PASSED] no-yes-or-yes-yes
[17:31:54] [PASSED] yes-yes-or-no-yes
[17:31:54] [PASSED] yes-yes-or-yes-yes
[17:31:54] [PASSED] no-no-or-yes-or-no
[17:31:54] [PASSED] or
[17:31:54] [PASSED] or-yes
[17:31:54] [PASSED] or-no
[17:31:54] [PASSED] yes-or
[17:31:54] [PASSED] no-or
[17:31:54] [PASSED] no-or-or-yes
[17:31:54] [PASSED] yes-or-or-no
[17:31:54] [PASSED] no-or-or-no
[17:31:54] [PASSED] missing-context-engine-class
[17:31:54] [PASSED] missing-context-engine-class-or-yes
[17:31:54] [PASSED] missing-context-engine-class-or-or-yes
[17:31:54] =============== [PASSED] xe_rtp_rules_tests ================
[17:31:54] =============== xe_rtp_process_to_sr_tests ================
[17:31:54] [PASSED] coalesce-same-reg
[17:31:54] [PASSED] coalesce-same-reg-literal-and-func
[17:31:54] [PASSED] no-match-no-add
[17:31:54] [PASSED] two-regs-two-entries
[17:31:54] [PASSED] clr-one-set-other
[17:31:54] [PASSED] set-field
[17:31:54] [PASSED] conflict-duplicate
[17:31:54] [PASSED] conflict-not-disjoint
[17:31:54] [PASSED] conflict-not-disjoint-literal-and-func
[17:31:54] [PASSED] conflict-reg-type
[17:31:54] [PASSED] bad-mcr-reg-forced-to-regular
[17:31:54] [PASSED] bad-regular-reg-forced-to-mcr
[17:31:54] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[17:31:54] ================== xe_rtp_process_tests ===================
[17:31:54] [PASSED] active1
[17:31:54] [PASSED] active2
[17:31:54] [PASSED] active-inactive
[17:31:54] [PASSED] inactive-active
[17:31:54] [PASSED] inactive-active-inactive
[17:31:54] [PASSED] inactive-inactive-inactive
[17:31:54] ============== [PASSED] xe_rtp_process_tests ===============
[17:31:54] ===================== [PASSED] xe_rtp ======================
[17:31:54] ==================== xe_wa (1 subtest) =====================
[17:31:54] ======================== xe_wa_gt =========================
[17:31:54] [PASSED] TIGERLAKE B0
[17:31:54] [PASSED] DG1 A0
[17:31:54] [PASSED] DG1 B0
[17:31:54] [PASSED] ALDERLAKE_S A0
[17:31:54] [PASSED] ALDERLAKE_S B0
[17:31:54] [PASSED] ALDERLAKE_S C0
[17:31:54] [PASSED] ALDERLAKE_S D0
[17:31:54] [PASSED] ALDERLAKE_P A0
[17:31:54] [PASSED] ALDERLAKE_P B0
[17:31:54] [PASSED] ALDERLAKE_P C0
[17:31:54] [PASSED] ALDERLAKE_S RPLS D0
[17:31:54] [PASSED] ALDERLAKE_P RPLU E0
[17:31:54] [PASSED] DG2 G10 C0
[17:31:54] [PASSED] DG2 G11 B1
[17:31:54] [PASSED] DG2 G12 A1
[17:31:54] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[17:31:54] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[17:31:54] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[17:31:54] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[17:31:54] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[17:31:54] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[17:31:54] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[17:31:54] ==================== [PASSED] xe_wa_gt =====================
[17:31:54] ====================== [PASSED] xe_wa ======================
[17:31:54] ============================================================
[17:31:54] Testing complete. Ran 741 tests: passed: 723, skipped: 18
[17:31:54] Elapsed time: 36.800s total, 4.344s configuring, 31.789s building, 0.649s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[17:31:54] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:31:56] 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:32:21] Starting KUnit Kernel (1/1)...
[17:32:21] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:32:21] ============ drm_test_pick_cmdline (2 subtests) ============
[17:32:21] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[17:32:21] =============== drm_test_pick_cmdline_named ===============
[17:32:21] [PASSED] NTSC
[17:32:21] [PASSED] NTSC-J
[17:32:21] [PASSED] PAL
[17:32:21] [PASSED] PAL-M
[17:32:21] =========== [PASSED] drm_test_pick_cmdline_named ===========
[17:32:21] ============== [PASSED] drm_test_pick_cmdline ==============
[17:32:21] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[17:32:21] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[17:32:21] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[17:32:21] =========== drm_validate_clone_mode (2 subtests) ===========
[17:32:21] ============== drm_test_check_in_clone_mode ===============
[17:32:21] [PASSED] in_clone_mode
[17:32:21] [PASSED] not_in_clone_mode
[17:32:21] ========== [PASSED] drm_test_check_in_clone_mode ===========
[17:32:21] =============== drm_test_check_valid_clones ===============
[17:32:21] [PASSED] not_in_clone_mode
[17:32:21] [PASSED] valid_clone
[17:32:21] [PASSED] invalid_clone
[17:32:21] =========== [PASSED] drm_test_check_valid_clones ===========
[17:32:21] ============= [PASSED] drm_validate_clone_mode =============
[17:32:21] ============= drm_validate_modeset (1 subtest) =============
[17:32:21] [PASSED] drm_test_check_connector_changed_modeset
[17:32:21] ============== [PASSED] drm_validate_modeset ===============
[17:32:21] ====== drm_test_bridge_get_current_state (2 subtests) ======
[17:32:21] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[17:32:21] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[17:32:21] ======== [PASSED] drm_test_bridge_get_current_state ========
[17:32:21] ====== drm_test_bridge_helper_reset_crtc (4 subtests) ======
[17:32:21] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[17:32:21] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[17:32:21] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[17:32:21] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[17:32:21] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[17:32:21] ============== drm_bridge_alloc (2 subtests) ===============
[17:32:21] [PASSED] drm_test_drm_bridge_alloc_basic
[17:32:21] [PASSED] drm_test_drm_bridge_alloc_get_put
[17:32:21] ================ [PASSED] drm_bridge_alloc =================
[17:32:21] ============= drm_bridge_bus_fmt (5 subtests) ==============
[17:32:21] [PASSED] drm_test_bridge_rgb_yuv_rgb
[17:32:21] [PASSED] drm_test_bridge_must_convert_to_yuv444
[17:32:21] [PASSED] drm_test_bridge_hdmi_auto_rgb
[17:32:21] [PASSED] drm_test_bridge_auto_first
[17:32:21] [PASSED] drm_test_bridge_rgb_yuv_no_path
[17:32:21] =============== [PASSED] drm_bridge_bus_fmt ================
[17:32:21] ============= drm_cmdline_parser (40 subtests) =============
[17:32:21] [PASSED] drm_test_cmdline_force_d_only
[17:32:21] [PASSED] drm_test_cmdline_force_D_only_dvi
[17:32:21] [PASSED] drm_test_cmdline_force_D_only_hdmi
[17:32:21] [PASSED] drm_test_cmdline_force_D_only_not_digital
[17:32:21] [PASSED] drm_test_cmdline_force_e_only
[17:32:21] [PASSED] drm_test_cmdline_res
[17:32:21] [PASSED] drm_test_cmdline_res_vesa
[17:32:21] [PASSED] drm_test_cmdline_res_vesa_rblank
[17:32:21] [PASSED] drm_test_cmdline_res_rblank
[17:32:21] [PASSED] drm_test_cmdline_res_bpp
[17:32:21] [PASSED] drm_test_cmdline_res_refresh
[17:32:21] [PASSED] drm_test_cmdline_res_bpp_refresh
[17:32:21] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[17:32:21] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[17:32:21] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[17:32:21] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[17:32:21] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[17:32:21] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[17:32:21] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[17:32:21] [PASSED] drm_test_cmdline_res_margins_force_on
[17:32:21] [PASSED] drm_test_cmdline_res_vesa_margins
[17:32:21] [PASSED] drm_test_cmdline_name
[17:32:21] [PASSED] drm_test_cmdline_name_bpp
[17:32:21] [PASSED] drm_test_cmdline_name_option
[17:32:21] [PASSED] drm_test_cmdline_name_bpp_option
[17:32:21] [PASSED] drm_test_cmdline_rotate_0
[17:32:21] [PASSED] drm_test_cmdline_rotate_90
[17:32:21] [PASSED] drm_test_cmdline_rotate_180
[17:32:21] [PASSED] drm_test_cmdline_rotate_270
[17:32:21] [PASSED] drm_test_cmdline_hmirror
[17:32:21] [PASSED] drm_test_cmdline_vmirror
[17:32:21] [PASSED] drm_test_cmdline_margin_options
[17:32:21] [PASSED] drm_test_cmdline_multiple_options
[17:32:21] [PASSED] drm_test_cmdline_bpp_extra_and_option
[17:32:21] [PASSED] drm_test_cmdline_extra_and_option
[17:32:21] [PASSED] drm_test_cmdline_freestanding_options
[17:32:21] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[17:32:21] [PASSED] drm_test_cmdline_panel_orientation
[17:32:21] ================ drm_test_cmdline_invalid =================
[17:32:21] [PASSED] margin_only
[17:32:21] [PASSED] interlace_only
[17:32:21] [PASSED] res_missing_x
[17:32:21] [PASSED] res_missing_y
[17:32:21] [PASSED] res_bad_y
[17:32:21] [PASSED] res_missing_y_bpp
[17:32:21] [PASSED] res_bad_bpp
[17:32:21] [PASSED] res_bad_refresh
[17:32:21] [PASSED] res_bpp_refresh_force_on_off
[17:32:21] [PASSED] res_invalid_mode
[17:32:21] [PASSED] res_bpp_wrong_place_mode
[17:32:21] [PASSED] name_bpp_refresh
[17:32:21] [PASSED] name_refresh
[17:32:21] [PASSED] name_refresh_wrong_mode
[17:32:21] [PASSED] name_refresh_invalid_mode
[17:32:21] [PASSED] rotate_multiple
[17:32:21] [PASSED] rotate_invalid_val
[17:32:21] [PASSED] rotate_truncated
[17:32:21] [PASSED] invalid_option
[17:32:21] [PASSED] invalid_tv_option
[17:32:21] [PASSED] truncated_tv_option
[17:32:21] ============ [PASSED] drm_test_cmdline_invalid =============
[17:32:21] =============== drm_test_cmdline_tv_options ===============
[17:32:21] [PASSED] NTSC
[17:32:21] [PASSED] NTSC_443
[17:32:21] [PASSED] NTSC_J
[17:32:21] [PASSED] PAL
[17:32:21] [PASSED] PAL_M
[17:32:21] [PASSED] PAL_N
[17:32:21] [PASSED] SECAM
[17:32:21] [PASSED] MONO_525
[17:32:21] [PASSED] MONO_625
[17:32:21] =========== [PASSED] drm_test_cmdline_tv_options ===========
[17:32:21] =============== [PASSED] drm_cmdline_parser ================
[17:32:21] ========== drmm_connector_hdmi_init (20 subtests) ==========
[17:32:21] [PASSED] drm_test_connector_hdmi_init_valid
[17:32:21] [PASSED] drm_test_connector_hdmi_init_bpc_8
[17:32:21] [PASSED] drm_test_connector_hdmi_init_bpc_10
[17:32:21] [PASSED] drm_test_connector_hdmi_init_bpc_12
[17:32:21] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[17:32:21] [PASSED] drm_test_connector_hdmi_init_bpc_null
[17:32:21] [PASSED] drm_test_connector_hdmi_init_formats_empty
[17:32:21] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[17:32:21] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[17:32:21] [PASSED] supported_formats=0x9 yuv420_allowed=1
[17:32:21] [PASSED] supported_formats=0x9 yuv420_allowed=0
[17:32:21] [PASSED] supported_formats=0x5 yuv420_allowed=1
[17:32:21] [PASSED] supported_formats=0x5 yuv420_allowed=0
[17:32:21] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[17:32:21] [PASSED] drm_test_connector_hdmi_init_null_ddc
[17:32:21] [PASSED] drm_test_connector_hdmi_init_null_product
[17:32:21] [PASSED] drm_test_connector_hdmi_init_null_vendor
[17:32:21] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[17:32:21] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[17:32:21] [PASSED] drm_test_connector_hdmi_init_product_valid
[17:32:21] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[17:32:21] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[17:32:21] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[17:32:21] ========= drm_test_connector_hdmi_init_type_valid =========
[17:32:21] [PASSED] HDMI-A
[17:32:21] [PASSED] HDMI-B
[17:32:21] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[17:32:21] ======== drm_test_connector_hdmi_init_type_invalid ========
[17:32:21] [PASSED] Unknown
[17:32:21] [PASSED] VGA
[17:32:21] [PASSED] DVI-I
[17:32:21] [PASSED] DVI-D
[17:32:21] [PASSED] DVI-A
[17:32:21] [PASSED] Composite
[17:32:21] [PASSED] SVIDEO
[17:32:21] [PASSED] LVDS
[17:32:21] [PASSED] Component
[17:32:21] [PASSED] DIN
[17:32:21] [PASSED] DP
[17:32:21] [PASSED] TV
[17:32:21] [PASSED] eDP
[17:32:21] [PASSED] Virtual
[17:32:21] [PASSED] DSI
[17:32:21] [PASSED] DPI
[17:32:21] [PASSED] Writeback
[17:32:21] [PASSED] SPI
[17:32:21] [PASSED] USB
[17:32:21] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[17:32:21] ============ [PASSED] drmm_connector_hdmi_init =============
[17:32:21] ============= drmm_connector_init (3 subtests) =============
[17:32:21] [PASSED] drm_test_drmm_connector_init
[17:32:21] [PASSED] drm_test_drmm_connector_init_null_ddc
[17:32:21] ========= drm_test_drmm_connector_init_type_valid =========
[17:32:21] [PASSED] Unknown
[17:32:21] [PASSED] VGA
[17:32:21] [PASSED] DVI-I
[17:32:21] [PASSED] DVI-D
[17:32:21] [PASSED] DVI-A
[17:32:21] [PASSED] Composite
[17:32:21] [PASSED] SVIDEO
[17:32:21] [PASSED] LVDS
[17:32:21] [PASSED] Component
[17:32:21] [PASSED] DIN
[17:32:21] [PASSED] DP
[17:32:21] [PASSED] HDMI-A
[17:32:21] [PASSED] HDMI-B
[17:32:21] [PASSED] TV
[17:32:21] [PASSED] eDP
[17:32:21] [PASSED] Virtual
[17:32:21] [PASSED] DSI
[17:32:21] [PASSED] DPI
[17:32:21] [PASSED] Writeback
[17:32:21] [PASSED] SPI
[17:32:21] [PASSED] USB
[17:32:21] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[17:32:21] =============== [PASSED] drmm_connector_init ===============
[17:32:21] ========= drm_connector_dynamic_init (6 subtests) ==========
[17:32:21] [PASSED] drm_test_drm_connector_dynamic_init
[17:32:21] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[17:32:21] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[17:32:21] [PASSED] drm_test_drm_connector_dynamic_init_properties
[17:32:21] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[17:32:21] [PASSED] Unknown
[17:32:21] [PASSED] VGA
[17:32:21] [PASSED] DVI-I
[17:32:21] [PASSED] DVI-D
[17:32:21] [PASSED] DVI-A
[17:32:21] [PASSED] Composite
[17:32:21] [PASSED] SVIDEO
[17:32:21] [PASSED] LVDS
[17:32:21] [PASSED] Component
[17:32:21] [PASSED] DIN
[17:32:21] [PASSED] DP
[17:32:21] [PASSED] HDMI-A
[17:32:21] [PASSED] HDMI-B
[17:32:21] [PASSED] TV
[17:32:21] [PASSED] eDP
[17:32:21] [PASSED] Virtual
[17:32:21] [PASSED] DSI
[17:32:21] [PASSED] DPI
[17:32:21] [PASSED] Writeback
[17:32:21] [PASSED] SPI
[17:32:21] [PASSED] USB
[17:32:21] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[17:32:21] ======== drm_test_drm_connector_dynamic_init_name =========
[17:32:21] [PASSED] Unknown
[17:32:21] [PASSED] VGA
[17:32:21] [PASSED] DVI-I
[17:32:21] [PASSED] DVI-D
[17:32:21] [PASSED] DVI-A
[17:32:21] [PASSED] Composite
[17:32:21] [PASSED] SVIDEO
[17:32:21] [PASSED] LVDS
[17:32:21] [PASSED] Component
[17:32:21] [PASSED] DIN
[17:32:21] [PASSED] DP
[17:32:21] [PASSED] HDMI-A
[17:32:21] [PASSED] HDMI-B
[17:32:21] [PASSED] TV
[17:32:21] [PASSED] eDP
[17:32:21] [PASSED] Virtual
[17:32:21] [PASSED] DSI
[17:32:21] [PASSED] DPI
[17:32:21] [PASSED] Writeback
[17:32:21] [PASSED] SPI
[17:32:21] [PASSED] USB
[17:32:21] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[17:32:21] =========== [PASSED] drm_connector_dynamic_init ============
[17:32:21] ==== drm_connector_dynamic_register_early (4 subtests) =====
[17:32:21] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[17:32:21] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[17:32:21] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[17:32:21] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[17:32:21] ====== [PASSED] drm_connector_dynamic_register_early =======
[17:32:21] ======= drm_connector_dynamic_register (7 subtests) ========
[17:32:21] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[17:32:21] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[17:32:21] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[17:32:21] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[17:32:21] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[17:32:21] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[17:32:21] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[17:32:21] ========= [PASSED] drm_connector_dynamic_register ==========
[17:32:21] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[17:32:21] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[17:32:21] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[17:32:21] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[17:32:21] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[17:32:21] ========== drm_test_get_tv_mode_from_name_valid ===========
[17:32:21] [PASSED] NTSC
[17:32:21] [PASSED] NTSC-443
[17:32:21] [PASSED] NTSC-J
[17:32:21] [PASSED] PAL
[17:32:21] [PASSED] PAL-M
[17:32:21] [PASSED] PAL-N
[17:32:21] [PASSED] SECAM
[17:32:21] [PASSED] Mono
[17:32:21] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[17:32:21] [PASSED] drm_test_get_tv_mode_from_name_truncated
[17:32:21] ============ [PASSED] drm_get_tv_mode_from_name ============
[17:32:21] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[17:32:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[17:32:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[17:32:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[17:32:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[17:32:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[17:32:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[17:32:21] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[17:32:21] [PASSED] VIC 96
[17:32:21] [PASSED] VIC 97
[17:32:21] [PASSED] VIC 101
[17:32:21] [PASSED] VIC 102
[17:32:21] [PASSED] VIC 106
[17:32:21] [PASSED] VIC 107
[17:32:21] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[17:32:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[17:32:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[17:32:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[17:32:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[17:32:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[17:32:21] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[17:32:21] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[17:32:21] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[17:32:21] [PASSED] Automatic
[17:32:21] [PASSED] Full
[17:32:21] [PASSED] Limited 16:235
[17:32:21] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[17:32:21] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[17:32:21] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[17:32:21] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[17:32:21] === drm_test_drm_hdmi_connector_get_output_format_name ====
[17:32:21] [PASSED] RGB
[17:32:21] [PASSED] YUV 4:2:0
[17:32:21] [PASSED] YUV 4:2:2
[17:32:21] [PASSED] YUV 4:4:4
[17:32:21] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[17:32:21] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[17:32:21] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[17:32:21] ============= drm_damage_helper (21 subtests) ==============
[17:32:21] [PASSED] drm_test_damage_iter_no_damage
[17:32:21] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[17:32:21] [PASSED] drm_test_damage_iter_no_damage_src_moved
[17:32:21] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[17:32:21] [PASSED] drm_test_damage_iter_no_damage_not_visible
[17:32:21] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[17:32:21] [PASSED] drm_test_damage_iter_no_damage_no_fb
[17:32:21] [PASSED] drm_test_damage_iter_simple_damage
[17:32:21] [PASSED] drm_test_damage_iter_single_damage
[17:32:21] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[17:32:21] [PASSED] drm_test_damage_iter_single_damage_outside_src
[17:32:21] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[17:32:21] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[17:32:21] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[17:32:21] [PASSED] drm_test_damage_iter_single_damage_src_moved
[17:32:21] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[17:32:21] [PASSED] drm_test_damage_iter_damage
[17:32:21] [PASSED] drm_test_damage_iter_damage_one_intersect
[17:32:21] [PASSED] drm_test_damage_iter_damage_one_outside
[17:32:21] [PASSED] drm_test_damage_iter_damage_src_moved
[17:32:21] [PASSED] drm_test_damage_iter_damage_not_visible
[17:32:21] ================ [PASSED] drm_damage_helper ================
[17:32:21] ============== drm_dp_mst_helper (3 subtests) ==============
[17:32:21] ============== drm_test_dp_mst_calc_pbn_mode ==============
[17:32:21] [PASSED] Clock 154000 BPP 30 DSC disabled
[17:32:21] [PASSED] Clock 234000 BPP 30 DSC disabled
[17:32:21] [PASSED] Clock 297000 BPP 24 DSC disabled
[17:32:21] [PASSED] Clock 332880 BPP 24 DSC enabled
[17:32:21] [PASSED] Clock 324540 BPP 24 DSC enabled
[17:32:21] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[17:32:21] ============== drm_test_dp_mst_calc_pbn_div ===============
[17:32:21] [PASSED] Link rate 2000000 lane count 4
[17:32:21] [PASSED] Link rate 2000000 lane count 2
[17:32:21] [PASSED] Link rate 2000000 lane count 1
[17:32:21] [PASSED] Link rate 1350000 lane count 4
[17:32:21] [PASSED] Link rate 1350000 lane count 2
[17:32:21] [PASSED] Link rate 1350000 lane count 1
[17:32:21] [PASSED] Link rate 1000000 lane count 4
[17:32:21] [PASSED] Link rate 1000000 lane count 2
[17:32:21] [PASSED] Link rate 1000000 lane count 1
[17:32:21] [PASSED] Link rate 810000 lane count 4
[17:32:21] [PASSED] Link rate 810000 lane count 2
[17:32:21] [PASSED] Link rate 810000 lane count 1
[17:32:21] [PASSED] Link rate 540000 lane count 4
[17:32:21] [PASSED] Link rate 540000 lane count 2
[17:32:21] [PASSED] Link rate 540000 lane count 1
[17:32:21] [PASSED] Link rate 270000 lane count 4
[17:32:21] [PASSED] Link rate 270000 lane count 2
[17:32:21] [PASSED] Link rate 270000 lane count 1
[17:32:21] [PASSED] Link rate 162000 lane count 4
[17:32:21] [PASSED] Link rate 162000 lane count 2
[17:32:21] [PASSED] Link rate 162000 lane count 1
[17:32:21] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[17:32:21] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[17:32:21] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[17:32:21] [PASSED] DP_POWER_UP_PHY with port number
[17:32:21] [PASSED] DP_POWER_DOWN_PHY with port number
[17:32:21] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[17:32:21] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[17:32:21] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[17:32:21] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[17:32:21] [PASSED] DP_QUERY_PAYLOAD with port number
[17:32:21] [PASSED] DP_QUERY_PAYLOAD with VCPI
[17:32:21] [PASSED] DP_REMOTE_DPCD_READ with port number
[17:32:21] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[17:32:21] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[17:32:21] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[17:32:21] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[17:32:21] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[17:32:21] [PASSED] DP_REMOTE_I2C_READ with port number
[17:32:21] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[17:32:21] [PASSED] DP_REMOTE_I2C_READ with transactions array
[17:32:21] [PASSED] DP_REMOTE_I2C_WRITE with port number
[17:32:21] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[17:32:21] [PASSED] DP_REMOTE_I2C_WRITE with data array
[17:32:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[17:32:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[17:32:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[17:32:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[17:32:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[17:32:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[17:32:21] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[17:32:21] ================ [PASSED] drm_dp_mst_helper ================
[17:32:21] ================== drm_exec (7 subtests) ===================
[17:32:21] [PASSED] sanitycheck
[17:32:21] [PASSED] test_lock
[17:32:21] [PASSED] test_lock_unlock
[17:32:21] [PASSED] test_duplicates
[17:32:21] [PASSED] test_prepare
[17:32:21] [PASSED] test_prepare_array
[17:32:21] [PASSED] test_multiple_loops
[17:32:21] ==================== [PASSED] drm_exec =====================
[17:32:21] =========== drm_format_helper_test (17 subtests) ===========
[17:32:21] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[17:32:21] [PASSED] single_pixel_source_buffer
[17:32:21] [PASSED] single_pixel_clip_rectangle
[17:32:21] [PASSED] well_known_colors
[17:32:21] [PASSED] destination_pitch
[17:32:21] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[17:32:21] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[17:32:21] [PASSED] single_pixel_source_buffer
[17:32:21] [PASSED] single_pixel_clip_rectangle
[17:32:21] [PASSED] well_known_colors
[17:32:21] [PASSED] destination_pitch
[17:32:21] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[17:32:21] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[17:32:21] [PASSED] single_pixel_source_buffer
[17:32:21] [PASSED] single_pixel_clip_rectangle
[17:32:21] [PASSED] well_known_colors
[17:32:21] [PASSED] destination_pitch
[17:32:21] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[17:32:21] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[17:32:21] [PASSED] single_pixel_source_buffer
[17:32:21] [PASSED] single_pixel_clip_rectangle
[17:32:21] [PASSED] well_known_colors
[17:32:21] [PASSED] destination_pitch
[17:32:21] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[17:32:21] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[17:32:21] [PASSED] single_pixel_source_buffer
[17:32:21] [PASSED] single_pixel_clip_rectangle
[17:32:21] [PASSED] well_known_colors
[17:32:21] [PASSED] destination_pitch
[17:32:21] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[17:32:21] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[17:32:21] [PASSED] single_pixel_source_buffer
[17:32:21] [PASSED] single_pixel_clip_rectangle
[17:32:21] [PASSED] well_known_colors
[17:32:21] [PASSED] destination_pitch
[17:32:21] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[17:32:21] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[17:32:21] [PASSED] single_pixel_source_buffer
[17:32:21] [PASSED] single_pixel_clip_rectangle
[17:32:21] [PASSED] well_known_colors
[17:32:21] [PASSED] destination_pitch
[17:32:21] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[17:32:21] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[17:32:21] [PASSED] single_pixel_source_buffer
[17:32:21] [PASSED] single_pixel_clip_rectangle
[17:32:21] [PASSED] well_known_colors
[17:32:21] [PASSED] destination_pitch
[17:32:21] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[17:32:21] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[17:32:21] [PASSED] single_pixel_source_buffer
[17:32:21] [PASSED] single_pixel_clip_rectangle
[17:32:21] [PASSED] well_known_colors
[17:32:21] [PASSED] destination_pitch
[17:32:21] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[17:32:21] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[17:32:21] [PASSED] single_pixel_source_buffer
[17:32:21] [PASSED] single_pixel_clip_rectangle
[17:32:21] [PASSED] well_known_colors
[17:32:21] [PASSED] destination_pitch
[17:32:21] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[17:32:21] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[17:32:21] [PASSED] single_pixel_source_buffer
[17:32:21] [PASSED] single_pixel_clip_rectangle
[17:32:21] [PASSED] well_known_colors
[17:32:21] [PASSED] destination_pitch
[17:32:21] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[17:32:21] ============== drm_test_fb_xrgb8888_to_mono ===============
[17:32:21] [PASSED] single_pixel_source_buffer
[17:32:21] [PASSED] single_pixel_clip_rectangle
[17:32:21] [PASSED] well_known_colors
[17:32:21] [PASSED] destination_pitch
[17:32:21] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[17:32:21] ==================== drm_test_fb_swab =====================
[17:32:21] [PASSED] single_pixel_source_buffer
[17:32:21] [PASSED] single_pixel_clip_rectangle
[17:32:21] [PASSED] well_known_colors
[17:32:21] [PASSED] destination_pitch
[17:32:21] ================ [PASSED] drm_test_fb_swab =================
[17:32:21] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[17:32:21] [PASSED] single_pixel_source_buffer
[17:32:21] [PASSED] single_pixel_clip_rectangle
[17:32:21] [PASSED] well_known_colors
[17:32:21] [PASSED] destination_pitch
[17:32:21] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[17:32:21] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[17:32:21] [PASSED] single_pixel_source_buffer
[17:32:21] [PASSED] single_pixel_clip_rectangle
[17:32:21] [PASSED] well_known_colors
[17:32:21] [PASSED] destination_pitch
[17:32:21] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[17:32:21] ================= drm_test_fb_clip_offset =================
[17:32:21] [PASSED] pass through
[17:32:21] [PASSED] horizontal offset
[17:32:21] [PASSED] vertical offset
[17:32:21] [PASSED] horizontal and vertical offset
[17:32:21] [PASSED] horizontal offset (custom pitch)
[17:32:21] [PASSED] vertical offset (custom pitch)
[17:32:21] [PASSED] horizontal and vertical offset (custom pitch)
[17:32:21] ============= [PASSED] drm_test_fb_clip_offset =============
[17:32:21] =================== drm_test_fb_memcpy ====================
[17:32:21] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[17:32:21] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[17:32:21] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[17:32:21] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[17:32:21] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[17:32:21] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[17:32:21] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[17:32:21] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[17:32:21] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[17:32:21] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[17:32:21] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[17:32:21] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[17:32:21] =============== [PASSED] drm_test_fb_memcpy ================
[17:32:21] ============= [PASSED] drm_format_helper_test ==============
[17:32:21] ================= drm_format (18 subtests) =================
[17:32:21] [PASSED] drm_test_format_block_width_invalid
[17:32:21] [PASSED] drm_test_format_block_width_one_plane
[17:32:21] [PASSED] drm_test_format_block_width_two_plane
[17:32:21] [PASSED] drm_test_format_block_width_three_plane
[17:32:21] [PASSED] drm_test_format_block_width_tiled
[17:32:21] [PASSED] drm_test_format_block_height_invalid
[17:32:21] [PASSED] drm_test_format_block_height_one_plane
[17:32:21] [PASSED] drm_test_format_block_height_two_plane
[17:32:21] [PASSED] drm_test_format_block_height_three_plane
[17:32:21] [PASSED] drm_test_format_block_height_tiled
[17:32:21] [PASSED] drm_test_format_min_pitch_invalid
[17:32:21] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[17:32:21] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[17:32:21] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[17:32:21] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[17:32:21] [PASSED] drm_test_format_min_pitch_two_plane
[17:32:21] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[17:32:21] [PASSED] drm_test_format_min_pitch_tiled
[17:32:21] =================== [PASSED] drm_format ====================
[17:32:21] ============== drm_framebuffer (10 subtests) ===============
[17:32:21] ========== drm_test_framebuffer_check_src_coords ==========
[17:32:21] [PASSED] Success: source fits into fb
[17:32:21] [PASSED] Fail: overflowing fb with x-axis coordinate
[17:32:21] [PASSED] Fail: overflowing fb with y-axis coordinate
[17:32:21] [PASSED] Fail: overflowing fb with source width
[17:32:21] [PASSED] Fail: overflowing fb with source height
[17:32:21] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[17:32:21] [PASSED] drm_test_framebuffer_cleanup
[17:32:21] =============== drm_test_framebuffer_create ===============
[17:32:21] [PASSED] ABGR8888 normal sizes
[17:32:21] [PASSED] ABGR8888 max sizes
[17:32:21] [PASSED] ABGR8888 pitch greater than min required
[17:32:21] [PASSED] ABGR8888 pitch less than min required
[17:32:21] [PASSED] ABGR8888 Invalid width
[17:32:21] [PASSED] ABGR8888 Invalid buffer handle
[17:32:21] [PASSED] No pixel format
[17:32:21] [PASSED] ABGR8888 Width 0
[17:32:21] [PASSED] ABGR8888 Height 0
[17:32:21] [PASSED] ABGR8888 Out of bound height * pitch combination
[17:32:21] [PASSED] ABGR8888 Large buffer offset
[17:32:21] [PASSED] ABGR8888 Buffer offset for inexistent plane
[17:32:21] [PASSED] ABGR8888 Invalid flag
[17:32:21] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[17:32:21] [PASSED] ABGR8888 Valid buffer modifier
[17:32:21] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[17:32:21] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[17:32:21] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[17:32:21] [PASSED] NV12 Normal sizes
[17:32:21] [PASSED] NV12 Max sizes
[17:32:21] [PASSED] NV12 Invalid pitch
[17:32:21] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[17:32:21] [PASSED] NV12 different modifier per-plane
[17:32:21] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[17:32:21] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[17:32:21] [PASSED] NV12 Modifier for inexistent plane
[17:32:21] [PASSED] NV12 Handle for inexistent plane
[17:32:21] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[17:32:21] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[17:32:21] [PASSED] YVU420 Normal sizes
[17:32:21] [PASSED] YVU420 Max sizes
[17:32:21] [PASSED] YVU420 Invalid pitch
[17:32:21] [PASSED] YVU420 Different pitches
[17:32:21] [PASSED] YVU420 Different buffer offsets/pitches
[17:32:21] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[17:32:21] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[17:32:21] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[17:32:21] [PASSED] YVU420 Valid modifier
[17:32:21] [PASSED] YVU420 Different modifiers per plane
[17:32:21] [PASSED] YVU420 Modifier for inexistent plane
[17:32:21] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[17:32:21] [PASSED] X0L2 Normal sizes
[17:32:21] [PASSED] X0L2 Max sizes
[17:32:21] [PASSED] X0L2 Invalid pitch
[17:32:21] [PASSED] X0L2 Pitch greater than minimum required
[17:32:21] [PASSED] X0L2 Handle for inexistent plane
[17:32:21] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[17:32:21] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[17:32:21] [PASSED] X0L2 Valid modifier
[17:32:21] [PASSED] X0L2 Modifier for inexistent plane
[17:32:21] =========== [PASSED] drm_test_framebuffer_create ===========
[17:32:21] [PASSED] drm_test_framebuffer_free
[17:32:21] [PASSED] drm_test_framebuffer_init
[17:32:21] [PASSED] drm_test_framebuffer_init_bad_format
[17:32:21] [PASSED] drm_test_framebuffer_init_dev_mismatch
[17:32:21] [PASSED] drm_test_framebuffer_lookup
[17:32:21] [PASSED] drm_test_framebuffer_lookup_inexistent
[17:32:21] [PASSED] drm_test_framebuffer_modifiers_not_supported
[17:32:21] ================= [PASSED] drm_framebuffer =================
[17:32:21] ================ drm_gem_shmem (8 subtests) ================
[17:32:21] [PASSED] drm_gem_shmem_test_obj_create
[17:32:21] [PASSED] drm_gem_shmem_test_obj_create_private
[17:32:21] [PASSED] drm_gem_shmem_test_pin_pages
[17:32:21] [PASSED] drm_gem_shmem_test_vmap
[17:32:21] [PASSED] drm_gem_shmem_test_get_sg_table
[17:32:21] [PASSED] drm_gem_shmem_test_get_pages_sgt
[17:32:21] [PASSED] drm_gem_shmem_test_madvise
[17:32:21] [PASSED] drm_gem_shmem_test_purge
[17:32:21] ================== [PASSED] drm_gem_shmem ==================
[17:32:21] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[17:32:21] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[17:32:21] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[17:32:21] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[17:32:21] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[17:32:21] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[17:32:21] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[17:32:21] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[17:32:21] [PASSED] Automatic
[17:32:21] [PASSED] Full
[17:32:21] [PASSED] Limited 16:235
[17:32:21] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[17:32:21] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[17:32:21] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[17:32:21] [PASSED] drm_test_check_disable_connector
[17:32:21] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[17:32:21] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[17:32:21] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[17:32:21] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[17:32:21] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[17:32:21] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[17:32:21] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[17:32:21] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[17:32:21] [PASSED] drm_test_check_output_bpc_dvi
[17:32:21] [PASSED] drm_test_check_output_bpc_format_vic_1
[17:32:21] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[17:32:21] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[17:32:21] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[17:32:21] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[17:32:21] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[17:32:21] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[17:32:21] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[17:32:21] ============ drm_test_check_hdmi_color_format =============
[17:32:21] [PASSED] AUTO -> RGB
[17:32:21] [PASSED] YCBCR422 -> YUV422
[17:32:21] [PASSED] YCBCR420 -> YUV420
[17:32:21] [PASSED] YCBCR444 -> YUV444
[17:32:21] [PASSED] RGB -> RGB
[17:32:21] ======== [PASSED] drm_test_check_hdmi_color_format =========
[17:32:21] ======== drm_test_check_hdmi_color_format_420_only ========
[17:32:21] [PASSED] RGB should fail
[17:32:21] [PASSED] YUV444 should fail
[17:32:21] [PASSED] YUV422 should fail
[17:32:21] [PASSED] YUV420 should work
[17:32:21] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[17:32:21] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[17:32:21] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[17:32:21] [PASSED] drm_test_check_broadcast_rgb_value
[17:32:21] [PASSED] drm_test_check_bpc_8_value
[17:32:21] [PASSED] drm_test_check_bpc_10_value
[17:32:21] [PASSED] drm_test_check_bpc_12_value
[17:32:21] [PASSED] drm_test_check_format_value
[17:32:21] [PASSED] drm_test_check_tmds_char_value
[17:32:21] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[17:32:21] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[17:32:21] [PASSED] drm_test_check_mode_valid
[17:32:21] [PASSED] drm_test_check_mode_valid_reject
[17:32:21] [PASSED] drm_test_check_mode_valid_reject_rate
[17:32:21] [PASSED] drm_test_check_mode_valid_reject_max_clock
[17:32:21] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[17:32:21] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[17:32:21] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[17:32:21] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[17:32:21] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[17:32:21] [PASSED] drm_test_check_infoframes
[17:32:21] [PASSED] drm_test_check_reject_avi_infoframe
[17:32:21] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[17:32:21] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[17:32:21] [PASSED] drm_test_check_reject_audio_infoframe
[17:32:21] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[17:32:21] ================= drm_managed (2 subtests) =================
[17:32:21] [PASSED] drm_test_managed_release_action
[17:32:21] [PASSED] drm_test_managed_run_action
[17:32:21] =================== [PASSED] drm_managed ===================
[17:32:21] =================== drm_mm (6 subtests) ====================
[17:32:21] [PASSED] drm_test_mm_init
[17:32:21] [PASSED] drm_test_mm_debug
[17:32:21] [PASSED] drm_test_mm_align32
[17:32:21] [PASSED] drm_test_mm_align64
[17:32:21] [PASSED] drm_test_mm_lowest
[17:32:21] [PASSED] drm_test_mm_highest
[17:32:21] ===================== [PASSED] drm_mm ======================
[17:32:21] ============= drm_modes_analog_tv (5 subtests) =============
[17:32:21] [PASSED] drm_test_modes_analog_tv_mono_576i
[17:32:21] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[17:32:21] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[17:32:21] [PASSED] drm_test_modes_analog_tv_pal_576i
[17:32:21] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[17:32:21] =============== [PASSED] drm_modes_analog_tv ===============
[17:32:21] ============== drm_plane_helper (2 subtests) ===============
[17:32:21] =============== drm_test_check_plane_state ================
[17:32:21] [PASSED] clipping_simple
[17:32:21] [PASSED] clipping_rotate_reflect
[17:32:21] [PASSED] positioning_simple
[17:32:21] [PASSED] upscaling
[17:32:21] [PASSED] downscaling
[17:32:21] [PASSED] rounding1
[17:32:21] [PASSED] rounding2
[17:32:21] [PASSED] rounding3
[17:32:21] [PASSED] rounding4
[17:32:21] =========== [PASSED] drm_test_check_plane_state ============
[17:32:21] =========== drm_test_check_invalid_plane_state ============
[17:32:21] [PASSED] positioning_invalid
[17:32:21] [PASSED] upscaling_invalid
[17:32:21] [PASSED] downscaling_invalid
[17:32:21] ======= [PASSED] drm_test_check_invalid_plane_state ========
[17:32:21] ================ [PASSED] drm_plane_helper =================
[17:32:21] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[17:32:21] ====== drm_test_connector_helper_tv_get_modes_check =======
[17:32:21] [PASSED] None
[17:32:21] [PASSED] PAL
[17:32:21] [PASSED] NTSC
[17:32:21] [PASSED] Both, NTSC Default
[17:32:21] [PASSED] Both, PAL Default
[17:32:21] [PASSED] Both, NTSC Default, with PAL on command-line
[17:32:21] [PASSED] Both, PAL Default, with NTSC on command-line
[17:32:21] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[17:32:21] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[17:32:21] ================== drm_rect (9 subtests) ===================
[17:32:21] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[17:32:21] [PASSED] drm_test_rect_clip_scaled_not_clipped
[17:32:21] [PASSED] drm_test_rect_clip_scaled_clipped
[17:32:21] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[17:32:21] ================= drm_test_rect_intersect =================
[17:32:21] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[17:32:21] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[17:32:21] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[17:32:21] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[17:32:21] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[17:32:21] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[17:32:21] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[17:32:21] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[17:32:21] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[17:32:21] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[17:32:21] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[17:32:21] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[17:32:21] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[17:32:21] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[17:32:21] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[17:32:21] ============= [PASSED] drm_test_rect_intersect =============
[17:32:21] ================ drm_test_rect_calc_hscale ================
[17:32:21] [PASSED] normal use
[17:32:21] [PASSED] out of max range
[17:32:21] [PASSED] out of min range
[17:32:21] [PASSED] zero dst
[17:32:21] [PASSED] negative src
[17:32:21] [PASSED] negative dst
[17:32:21] ============ [PASSED] drm_test_rect_calc_hscale ============
[17:32:21] ================ drm_test_rect_calc_vscale ================
[17:32:21] [PASSED] normal use
[17:32:21] [PASSED] out of max range
[17:32:21] [PASSED] out of min range
[17:32:21] [PASSED] zero dst
[17:32:21] [PASSED] negative src
[17:32:21] [PASSED] negative dst
[17:32:21] ============ [PASSED] drm_test_rect_calc_vscale ============
[17:32:21] ================== drm_test_rect_rotate ===================
[17:32:21] [PASSED] reflect-x
[17:32:21] [PASSED] reflect-y
[17:32:21] [PASSED] rotate-0
[17:32:21] [PASSED] rotate-90
[17:32:21] [PASSED] rotate-180
[17:32:21] [PASSED] rotate-270
[17:32:21] ============== [PASSED] drm_test_rect_rotate ===============
[17:32:21] ================ drm_test_rect_rotate_inv =================
[17:32:21] [PASSED] reflect-x
[17:32:21] [PASSED] reflect-y
[17:32:21] [PASSED] rotate-0
[17:32:21] [PASSED] rotate-90
[17:32:21] [PASSED] rotate-180
[17:32:21] [PASSED] rotate-270
[17:32:21] ============ [PASSED] drm_test_rect_rotate_inv =============
[17:32:21] ==================== [PASSED] drm_rect =====================
[17:32:21] ============ drm_sysfb_modeset_test (1 subtest) ============
[17:32:21] ============ drm_test_sysfb_build_fourcc_list =============
[17:32:21] [PASSED] no native formats
[17:32:21] [PASSED] XRGB8888 as native format
[17:32:21] [PASSED] remove duplicates
[17:32:21] [PASSED] convert alpha formats
[17:32:21] [PASSED] random formats
[17:32:21] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[17:32:21] ============= [PASSED] drm_sysfb_modeset_test ==============
[17:32:21] ================== drm_fixp (2 subtests) ===================
[17:32:21] [PASSED] drm_test_int2fixp
[17:32:21] [PASSED] drm_test_sm2fixp
[17:32:21] ==================== [PASSED] drm_fixp =====================
[17:32:21] ============================================================
[17:32:21] Testing complete. Ran 639 tests: passed: 639
[17:32:21] Elapsed time: 26.622s total, 1.839s configuring, 24.617s building, 0.147s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[17:32:21] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:32:23] 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:32:33] Starting KUnit Kernel (1/1)...
[17:32:33] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:32:33] ================= ttm_device (5 subtests) ==================
[17:32:33] [PASSED] ttm_device_init_basic
[17:32:33] [PASSED] ttm_device_init_multiple
[17:32:33] [PASSED] ttm_device_fini_basic
[17:32:33] [PASSED] ttm_device_init_no_vma_man
[17:32:33] ================== ttm_device_init_pools ==================
[17:32:33] [PASSED] No DMA allocations, no DMA32 required
[17:32:33] [PASSED] DMA allocations, DMA32 required
[17:32:33] [PASSED] No DMA allocations, DMA32 required
[17:32:33] [PASSED] DMA allocations, no DMA32 required
[17:32:33] ============== [PASSED] ttm_device_init_pools ==============
[17:32:33] =================== [PASSED] ttm_device ====================
[17:32:33] ================== ttm_pool (8 subtests) ===================
[17:32:33] ================== ttm_pool_alloc_basic ===================
[17:32:33] [PASSED] One page
[17:32:33] [PASSED] More than one page
[17:32:33] [PASSED] Above the allocation limit
[17:32:33] [PASSED] One page, with coherent DMA mappings enabled
[17:32:33] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[17:32:33] ============== [PASSED] ttm_pool_alloc_basic ===============
[17:32:33] ============== ttm_pool_alloc_basic_dma_addr ==============
[17:32:33] [PASSED] One page
[17:32:33] [PASSED] More than one page
[17:32:33] [PASSED] Above the allocation limit
[17:32:33] [PASSED] One page, with coherent DMA mappings enabled
[17:32:33] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[17:32:33] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[17:32:33] [PASSED] ttm_pool_alloc_order_caching_match
[17:32:33] [PASSED] ttm_pool_alloc_caching_mismatch
[17:32:33] [PASSED] ttm_pool_alloc_order_mismatch
[17:32:33] [PASSED] ttm_pool_free_dma_alloc
[17:32:33] [PASSED] ttm_pool_free_no_dma_alloc
[17:32:33] [PASSED] ttm_pool_fini_basic
[17:32:33] ==================== [PASSED] ttm_pool =====================
[17:32:33] ================ ttm_resource (8 subtests) =================
[17:32:33] ================= ttm_resource_init_basic =================
[17:32:33] [PASSED] Init resource in TTM_PL_SYSTEM
[17:32:33] [PASSED] Init resource in TTM_PL_VRAM
[17:32:33] [PASSED] Init resource in a private placement
[17:32:33] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[17:32:33] ============= [PASSED] ttm_resource_init_basic =============
[17:32:33] [PASSED] ttm_resource_init_pinned
[17:32:33] [PASSED] ttm_resource_fini_basic
[17:32:33] [PASSED] ttm_resource_manager_init_basic
[17:32:33] [PASSED] ttm_resource_manager_usage_basic
[17:32:33] [PASSED] ttm_resource_manager_set_used_basic
[17:32:33] [PASSED] ttm_sys_man_alloc_basic
[17:32:33] [PASSED] ttm_sys_man_free_basic
[17:32:33] ================== [PASSED] ttm_resource ===================
[17:32:33] =================== ttm_tt (15 subtests) ===================
[17:32:33] ==================== ttm_tt_init_basic ====================
[17:32:33] [PASSED] Page-aligned size
[17:32:33] [PASSED] Extra pages requested
[17:32:33] ================ [PASSED] ttm_tt_init_basic ================
[17:32:33] [PASSED] ttm_tt_init_misaligned
[17:32:33] [PASSED] ttm_tt_fini_basic
[17:32:33] [PASSED] ttm_tt_fini_sg
[17:32:33] [PASSED] ttm_tt_fini_shmem
[17:32:33] [PASSED] ttm_tt_create_basic
[17:32:33] [PASSED] ttm_tt_create_invalid_bo_type
[17:32:33] [PASSED] ttm_tt_create_ttm_exists
[17:32:33] [PASSED] ttm_tt_create_failed
[17:32:33] [PASSED] ttm_tt_destroy_basic
[17:32:33] [PASSED] ttm_tt_populate_null_ttm
[17:32:33] [PASSED] ttm_tt_populate_populated_ttm
[17:32:33] [PASSED] ttm_tt_unpopulate_basic
[17:32:33] [PASSED] ttm_tt_unpopulate_empty_ttm
[17:32:33] [PASSED] ttm_tt_swapin_basic
[17:32:33] ===================== [PASSED] ttm_tt ======================
[17:32:33] =================== ttm_bo (14 subtests) ===================
[17:32:33] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[17:32:33] [PASSED] Cannot be interrupted and sleeps
[17:32:33] [PASSED] Cannot be interrupted, locks straight away
[17:32:33] [PASSED] Can be interrupted, sleeps
[17:32:33] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[17:32:33] [PASSED] ttm_bo_reserve_locked_no_sleep
[17:32:33] [PASSED] ttm_bo_reserve_no_wait_ticket
[17:32:33] [PASSED] ttm_bo_reserve_double_resv
[17:32:33] [PASSED] ttm_bo_reserve_interrupted
[17:32:33] [PASSED] ttm_bo_reserve_deadlock
[17:32:33] [PASSED] ttm_bo_unreserve_basic
[17:32:33] [PASSED] ttm_bo_unreserve_pinned
[17:32:33] [PASSED] ttm_bo_unreserve_bulk
[17:32:33] [PASSED] ttm_bo_fini_basic
[17:32:33] [PASSED] ttm_bo_fini_shared_resv
[17:32:33] [PASSED] ttm_bo_pin_basic
[17:32:33] [PASSED] ttm_bo_pin_unpin_resource
[17:32:33] [PASSED] ttm_bo_multiple_pin_one_unpin
[17:32:33] ===================== [PASSED] ttm_bo ======================
[17:32:33] ============== ttm_bo_validate (22 subtests) ===============
[17:32:33] ============== ttm_bo_init_reserved_sys_man ===============
[17:32:33] [PASSED] Buffer object for userspace
[17:32:33] [PASSED] Kernel buffer object
[17:32:33] [PASSED] Shared buffer object
[17:32:33] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[17:32:33] ============== ttm_bo_init_reserved_mock_man ==============
[17:32:33] [PASSED] Buffer object for userspace
[17:32:33] [PASSED] Kernel buffer object
[17:32:33] [PASSED] Shared buffer object
[17:32:33] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[17:32:33] [PASSED] ttm_bo_init_reserved_resv
[17:32:33] ================== ttm_bo_validate_basic ==================
[17:32:33] [PASSED] Buffer object for userspace
[17:32:33] [PASSED] Kernel buffer object
[17:32:33] [PASSED] Shared buffer object
[17:32:33] ============== [PASSED] ttm_bo_validate_basic ==============
[17:32:33] [PASSED] ttm_bo_validate_invalid_placement
[17:32:33] ============= ttm_bo_validate_same_placement ==============
[17:32:33] [PASSED] System manager
[17:32:33] [PASSED] VRAM manager
[17:32:33] ========= [PASSED] ttm_bo_validate_same_placement ==========
[17:32:33] [PASSED] ttm_bo_validate_failed_alloc
[17:32:33] [PASSED] ttm_bo_validate_pinned
[17:32:33] [PASSED] ttm_bo_validate_busy_placement
[17:32:33] ================ ttm_bo_validate_multihop =================
[17:32:33] [PASSED] Buffer object for userspace
[17:32:33] [PASSED] Kernel buffer object
[17:32:33] [PASSED] Shared buffer object
[17:32:33] ============ [PASSED] ttm_bo_validate_multihop =============
[17:32:33] ========== ttm_bo_validate_no_placement_signaled ==========
[17:32:33] [PASSED] Buffer object in system domain, no page vector
[17:32:33] [PASSED] Buffer object in system domain with an existing page vector
[17:32:33] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[17:32:33] ======== ttm_bo_validate_no_placement_not_signaled ========
[17:32:33] [PASSED] Buffer object for userspace
[17:32:33] [PASSED] Kernel buffer object
[17:32:33] [PASSED] Shared buffer object
[17:32:33] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[17:32:33] [PASSED] ttm_bo_validate_move_fence_signaled
[17:32:33] ========= ttm_bo_validate_move_fence_not_signaled =========
[17:32:33] [PASSED] Waits for GPU
[17:32:33] [PASSED] Tries to lock straight away
[17:32:33] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[17:32:33] [PASSED] ttm_bo_validate_swapout
[17:32:33] [PASSED] ttm_bo_validate_happy_evict
[17:32:33] [PASSED] ttm_bo_validate_all_pinned_evict
[17:32:33] [PASSED] ttm_bo_validate_allowed_only_evict
[17:32:33] [PASSED] ttm_bo_validate_deleted_evict
[17:32:33] [PASSED] ttm_bo_validate_busy_domain_evict
[17:32:33] [PASSED] ttm_bo_validate_evict_gutting
[17:32:33] [PASSED] ttm_bo_validate_recrusive_evict
[17:32:33] ================= [PASSED] ttm_bo_validate =================
[17:32:33] ============================================================
[17:32:33] Testing complete. Ran 102 tests: passed: 102
[17:32:33] Elapsed time: 11.856s total, 1.831s configuring, 9.811s building, 0.186s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 37+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe: Add and use more KLV helpers (rev5)
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (22 preceding siblings ...)
2026-07-10 17:32 ` ✓ CI.KUnit: success " Patchwork
@ 2026-07-10 18:22 ` Patchwork
2026-07-11 4:04 ` ✓ Xe.CI.FULL: " Patchwork
` (4 subsequent siblings)
28 siblings, 0 replies; 37+ messages in thread
From: Patchwork @ 2026-07-10 18:22 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 5417 bytes --]
== Series Details ==
Series: drm/xe: Add and use more KLV helpers (rev5)
URL : https://patchwork.freedesktop.org/series/169511/
State : success
== Summary ==
CI Bug Log - changes from xe-5383-08cdb6010efc9b2f58f740fc59dadc8c119f8b55_BAT -> xe-pw-169511v5_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
Additional (1): bat-bmg-2
Missing (1): bat-atsm-2
Known issues
------------
Here are the changes found in xe-pw-169511v5_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@write:
- bat-bmg-2: NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/bat-bmg-2/igt@fbdev@write.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][2] ([Intel XE#2233])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][3] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_flip@basic-flip-vs-modeset:
- bat-bmg-2: NOTRUN -> [SKIP][4] ([Intel XE#2482]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html
* igt@kms_frontbuffer_tracking@basic:
- bat-bmg-2: NOTRUN -> [SKIP][5] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-bmg-2: NOTRUN -> [SKIP][6] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@xe_exec_multi_queue@priority:
- bat-bmg-2: NOTRUN -> [SKIP][7] ([Intel XE#8364]) +13 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/bat-bmg-2/igt@xe_exec_multi_queue@priority.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-bmg-2: NOTRUN -> [SKIP][8] ([Intel XE#2229])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_dma_buf:
- bat-bmg-vm: [PASS][9] -> [ABORT][10] ([Intel XE#8007] / [Intel XE#8023]) +1 other test abort
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5383-08cdb6010efc9b2f58f740fc59dadc8c119f8b55/bat-bmg-vm/igt@xe_live_ktest@xe_dma_buf.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/bat-bmg-vm/igt@xe_live_ktest@xe_dma_buf.html
* igt@xe_pat@pat-index-xehpc:
- bat-bmg-2: NOTRUN -> [SKIP][11] ([Intel XE#1420] / [Intel XE#7590])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-bmg-2: NOTRUN -> [SKIP][12] ([Intel XE#2245] / [Intel XE#7590])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/bat-bmg-2/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-bmg-2: NOTRUN -> [SKIP][13] ([Intel XE#2236] / [Intel XE#7590])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434
[Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
[Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489
[Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419
[Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8023]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8023
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
Build changes
-------------
* Linux: xe-5383-08cdb6010efc9b2f58f740fc59dadc8c119f8b55 -> xe-pw-169511v5
IGT_9002: 9002
xe-5383-08cdb6010efc9b2f58f740fc59dadc8c119f8b55: 08cdb6010efc9b2f58f740fc59dadc8c119f8b55
xe-pw-169511v5: 169511v5
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/index.html
[-- Attachment #2: Type: text/html, Size: 6349 bytes --]
^ permalink raw reply [flat|nested] 37+ messages in thread
* [PATCH v3 10/13] drm/xe/tests: Add object encoding helper test
2026-07-07 22:08 ` [PATCH v2 10/13] drm/xe/tests: Add object " Michal Wajdeczko
@ 2026-07-10 19:59 ` Michal Wajdeczko
0 siblings, 0 replies; 37+ messages in thread
From: Michal Wajdeczko @ 2026-07-10 19:59 UTC (permalink / raw)
To: intel-xe
We will soon be encoding complex objects as KLVs using our helper
function. Add few simple tests to make sure this helper function
works as expected.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michał Winiarski <michal.winiarski@intel.com>
---
v2: add more negative tests (me)
v3: drop faulty encoder for now (drm-xe-next)
---
.../drm/xe/tests/xe_guc_klv_helpers_kunit.c | 205 ++++++++++++++++++
1 file changed, 205 insertions(+)
diff --git a/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c b/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c
index cb4b182d88d0..33d7a52f6bf8 100644
--- a/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c
+++ b/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c
@@ -7,6 +7,7 @@
#include <kunit/test-bug.h>
#define TEST_KEY (GUC_KLV_RESERVED_RANGE_START + 0x3de)
+#define TEST_GROUP_KEY (GUC_KLV_RESERVED_RANGE_START + 0x3f0)
#define TEST_PAD 0xdeadbeef
static void test_count(struct kunit *test)
@@ -167,11 +168,215 @@ static void test_encode_string(struct kunit *test)
xe_guc_klv_encode_string(klvs, avail, key, buf));
}
+struct some_object {
+ u32 value1;
+ u64 value2;
+} __packed;
+
+static u32 *obj_raw_encoder(u32 *klvs, u32 avail, const void *arg)
+{
+ const struct some_object *obj = arg;
+ size_t sz = sizeof(*obj);
+ u32 dwords = to_num_dwords(sz);
+
+ if (IS_ERR(klvs))
+ return klvs;
+ if (dwords > avail)
+ return ERR_PTR(-ENOSPC);
+ memcpy(klvs, obj, sz);
+ return klvs + dwords;
+}
+
+static u32 *obj_klv_encoder(u32 *klvs, u32 avail, const void *arg)
+{
+ const struct some_object *obj = arg;
+ u32 *end = klvs + avail;
+
+ klvs = xe_guc_klv_encode_u32(klvs, end - klvs, TEST_KEY + 1, obj->value1);
+ klvs = xe_guc_klv_encode_u64(klvs, end - klvs, TEST_KEY + 2, obj->value2);
+ return klvs;
+}
+
+static u32 *obj_nested_encoder(u32 *klvs, u32 avail, const void *arg)
+{
+ u32 *end = klvs + avail;
+
+ klvs = xe_guc_klv_encode_object(klvs, end - klvs, TEST_GROUP_KEY + 1,
+ arg, obj_klv_encoder);
+ klvs = xe_guc_klv_encode_object(klvs, end - klvs, TEST_GROUP_KEY + 2,
+ arg, obj_klv_encoder);
+ return klvs;
+}
+
+static void test_encode_object_raw(struct kunit *test)
+{
+ const struct some_object obj = {
+ .value1 = 0xdead1234,
+ .value2 = 0xdead87654321dead,
+ };
+ u32 payload = to_num_dwords(sizeof(obj));
+ u32 *err = ERR_PTR(-ENOSPC);
+ u16 key = TEST_KEY;
+ u32 klvs[16];
+ u32 n;
+
+ /* too small, must fail */
+ for (n = 0; n < GUC_KLV_LEN_MIN + payload; n++) {
+ memset32(klvs, TEST_PAD, ARRAY_SIZE(klvs));
+ KUNIT_EXPECT_PTR_EQ_MSG(test, ERR_PTR(-ENOSPC),
+ xe_guc_klv_encode_object(klvs, n, key, &obj,
+ obj_raw_encoder),
+ "buf size=%u dwords", n);
+ }
+
+ /* must pass */
+ memset32(klvs, TEST_PAD, ARRAY_SIZE(klvs));
+ KUNIT_ASSERT_NOT_ERR_OR_NULL(test,
+ xe_guc_klv_encode_object(klvs, GUC_KLV_LEN_MIN + payload,
+ key, &obj, obj_raw_encoder));
+ KUNIT_EXPECT_EQ(test, klvs[0], PREP_GUC_KLV(key, payload));
+ KUNIT_EXPECT_MEMEQ(test, &klvs[1], &obj, sizeof(obj));
+
+ /* already failed, must fail */
+ KUNIT_ASSERT_PTR_EQ(test, err,
+ xe_guc_klv_encode_object(err, ARRAY_SIZE(klvs), key,
+ &obj, obj_raw_encoder));
+}
+
+static void test_encode_object_klv(struct kunit *test)
+{
+ const struct some_object obj = {
+ .value1 = 0xdead1234,
+ .value2 = 0xdead87654321dead,
+ };
+ u16 key = TEST_GROUP_KEY;
+ u32 payload = 0;
+ u32 klvs[16];
+ u32 n;
+
+ payload += GUC_KLV_LEN_MIN + to_num_dwords(sizeof(obj.value1));
+ payload += GUC_KLV_LEN_MIN + to_num_dwords(sizeof(obj.value2));
+
+ /* too small, must fail */
+ for (n = 0; n < GUC_KLV_LEN_MIN + payload; n++) {
+ memset32(klvs, TEST_PAD, ARRAY_SIZE(klvs));
+ KUNIT_EXPECT_PTR_EQ_MSG(test, ERR_PTR(-ENOSPC),
+ xe_guc_klv_encode_object(klvs, n, key, &obj,
+ obj_klv_encoder),
+ "buf size=%u dwords", n);
+ }
+
+ /* must pass */
+ memset32(klvs, TEST_PAD, ARRAY_SIZE(klvs));
+ KUNIT_ASSERT_NOT_ERR_OR_NULL(test,
+ xe_guc_klv_encode_object(klvs, GUC_KLV_LEN_MIN + payload,
+ key, &obj, obj_klv_encoder));
+ KUNIT_EXPECT_EQ(test, klvs[0], PREP_GUC_KLV(key, payload));
+ KUNIT_EXPECT_EQ(test, klvs[1], PREP_GUC_KLV(TEST_KEY + 1, 1));
+ KUNIT_EXPECT_EQ(test, klvs[2], obj.value1);
+ KUNIT_EXPECT_EQ(test, klvs[3], PREP_GUC_KLV(TEST_KEY + 2, 2));
+ KUNIT_EXPECT_EQ(test, klvs[4], lower_32_bits(obj.value2));
+ KUNIT_EXPECT_EQ(test, klvs[5], upper_32_bits(obj.value2));
+ KUNIT_EXPECT_EQ(test, klvs[6], TEST_PAD);
+}
+
+static void test_encode_object_nested(struct kunit *test)
+{
+ const struct some_object obj = {
+ .value1 = 0xdead1234,
+ .value2 = 0xdead87654321dead,
+ };
+ u16 key = TEST_GROUP_KEY;
+ u32 payload = 0;
+ u32 klvs[16];
+ u32 n;
+
+ payload += GUC_KLV_LEN_MIN;
+ payload += GUC_KLV_LEN_MIN + to_num_dwords(sizeof(obj.value1));
+ payload += GUC_KLV_LEN_MIN + to_num_dwords(sizeof(obj.value2));
+ payload *= 2;
+
+ /* too small, must fail */
+ for (n = 0; n < GUC_KLV_LEN_MIN + payload; n++) {
+ memset32(klvs, TEST_PAD, ARRAY_SIZE(klvs));
+ KUNIT_EXPECT_PTR_EQ_MSG(test, ERR_PTR(-ENOSPC),
+ xe_guc_klv_encode_object(klvs, n, key, &obj,
+ obj_nested_encoder),
+ "buf size=%u dwords", n);
+ }
+
+ /* must pass */
+ memset32(klvs, TEST_PAD, ARRAY_SIZE(klvs));
+ KUNIT_ASSERT_NOT_ERR_OR_NULL(test,
+ xe_guc_klv_encode_object(klvs, GUC_KLV_LEN_MIN + payload,
+ key, &obj, obj_nested_encoder));
+ KUNIT_EXPECT_EQ(test, klvs[0], PREP_GUC_KLV(key, payload));
+ KUNIT_EXPECT_EQ(test, klvs[1], PREP_GUC_KLV(TEST_GROUP_KEY + 1, 5));
+ KUNIT_EXPECT_EQ(test, klvs[2], PREP_GUC_KLV(TEST_KEY + 1, 1));
+ KUNIT_EXPECT_EQ(test, klvs[3], obj.value1);
+ KUNIT_EXPECT_EQ(test, klvs[4], PREP_GUC_KLV(TEST_KEY + 2, 2));
+ KUNIT_EXPECT_EQ(test, klvs[5], lower_32_bits(obj.value2));
+ KUNIT_EXPECT_EQ(test, klvs[6], upper_32_bits(obj.value2));
+ KUNIT_EXPECT_EQ(test, klvs[7], PREP_GUC_KLV(TEST_GROUP_KEY + 2, 5));
+ KUNIT_EXPECT_EQ(test, klvs[8], PREP_GUC_KLV(TEST_KEY + 1, 1));
+ KUNIT_EXPECT_EQ(test, klvs[9], obj.value1);
+ KUNIT_EXPECT_EQ(test, klvs[10], PREP_GUC_KLV(TEST_KEY + 2, 2));
+ KUNIT_EXPECT_EQ(test, klvs[11], lower_32_bits(obj.value2));
+ KUNIT_EXPECT_EQ(test, klvs[12], upper_32_bits(obj.value2));
+ KUNIT_EXPECT_EQ(test, klvs[13], TEST_PAD);
+}
+
+static u32 *obj_echo_encoder(u32 *klvs, u32 avail, const void *arg)
+{
+ return ERR_CAST(arg);
+}
+
+static void test_encode_object_basic(struct kunit *test)
+{
+ u32 longest = GUC_KLV_LEN_MIN + FIELD_MAX(GUC_KLV_0_LEN);
+ u32 avail = GUC_KLV_LEN_MIN + longest;
+ u16 key = TEST_GROUP_KEY;
+ u32 *klvs;
+
+ klvs = kunit_kcalloc(test, avail, sizeof(u32), GFP_KERNEL);
+ KUNIT_ASSERT_NOT_ERR_OR_NULL(test, klvs);
+
+ /* smallest */
+ KUNIT_EXPECT_PTR_EQ(test, klvs + GUC_KLV_LEN_MIN,
+ xe_guc_klv_encode_object(klvs, avail, key,
+ klvs + GUC_KLV_LEN_MIN,
+ obj_echo_encoder));
+ /* largest */
+ KUNIT_EXPECT_PTR_EQ(test, klvs + longest,
+ xe_guc_klv_encode_object(klvs, avail, key,
+ klvs + longest,
+ obj_echo_encoder));
+ /* already failed */
+ KUNIT_EXPECT_PTR_EQ(test, ERR_PTR(-EROFS),
+ xe_guc_klv_encode_object(ERR_PTR(-EROFS), avail, key,
+ klvs + GUC_KLV_LEN_MIN,
+ obj_echo_encoder));
+ /* encoding error */
+ KUNIT_EXPECT_PTR_EQ(test, ERR_PTR(-EUCLEAN),
+ xe_guc_klv_encode_object(klvs, avail, key,
+ ERR_PTR(-EUCLEAN),
+ obj_echo_encoder));
+ /* no space */
+ KUNIT_EXPECT_PTR_EQ(test, ERR_PTR(-ENOSPC),
+ xe_guc_klv_encode_object(klvs, 0, key,
+ klvs + GUC_KLV_LEN_MIN,
+ obj_echo_encoder));
+}
+
static struct kunit_case guc_klv_helpers_test_cases[] = {
KUNIT_CASE(test_count),
KUNIT_CASE(test_encode_u32),
KUNIT_CASE(test_encode_u64),
KUNIT_CASE(test_encode_string),
+ KUNIT_CASE(test_encode_object_raw),
+ KUNIT_CASE(test_encode_object_klv),
+ KUNIT_CASE(test_encode_object_nested),
+ KUNIT_CASE(test_encode_object_basic),
{}
};
--
2.47.1
^ permalink raw reply related [flat|nested] 37+ messages in thread
* ✓ Xe.CI.FULL: success for drm/xe: Add and use more KLV helpers (rev5)
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (23 preceding siblings ...)
2026-07-10 18:22 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-07-11 4:04 ` Patchwork
2026-07-11 7:42 ` ✗ CI.checkpatch: warning for drm/xe: Add and use more KLV helpers (rev7) Patchwork
` (3 subsequent siblings)
28 siblings, 0 replies; 37+ messages in thread
From: Patchwork @ 2026-07-11 4:04 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 15852 bytes --]
== Series Details ==
Series: drm/xe: Add and use more KLV helpers (rev5)
URL : https://patchwork.freedesktop.org/series/169511/
State : success
== Summary ==
CI Bug Log - changes from xe-5383-08cdb6010efc9b2f58f740fc59dadc8c119f8b55_FULL -> xe-pw-169511v5_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-169511v5_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-lnl: NOTRUN -> [SKIP][1] ([Intel XE#1124]) +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-lnl-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_bw@linear-tiling-1-displays-target-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#367])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-bmg-3/igt@kms_bw@linear-tiling-1-displays-target-2560x1440p.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2887])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-bmg-3/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#2887])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-lnl-6/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_chamelium_hpd@common-hpd-after-hibernate:
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#373])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-lnl-4/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: [PASS][6] -> [FAIL][7] ([Intel XE#3321]) +1 other test fail
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5383-08cdb6010efc9b2f58f740fc59dadc8c119f8b55/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [PASS][8] -> [FAIL][9] ([Intel XE#301]) +1 other test fail
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5383-08cdb6010efc9b2f58f740fc59dadc8c119f8b55/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#7178] / [Intel XE#7351])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#7178] / [Intel XE#7351])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2311])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-indfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#7905]) +4 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-lnl-6/igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#4141])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#7865])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-lnl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2313]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#656] / [Intel XE#7905]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][18] -> [SKIP][19] ([Intel XE#1503])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5383-08cdb6010efc9b2f58f740fc59dadc8c119f8b55/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-bmg-9/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#7283])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-bmg-3/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2893] / [Intel XE#7304])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-lnl-4/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-suspend:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2234] / [Intel XE#2850])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-bmg-3/igt@kms_psr@fbc-pr-suspend.html
* igt@xe_exec_balancer@no-exec-cm-virtual-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#7482])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-lnl-6/igt@xe_exec_balancer@no-exec-cm-virtual-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-fault:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#8374])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-fault.html
* igt@xe_exec_fault_mode@twice-multi-queue-invalid-fault:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#8374])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-lnl-6/igt@xe_exec_fault_mode@twice-multi-queue-invalid-fault.html
* igt@xe_exec_multi_queue@two-queues-close-fd:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#8364]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-bmg-3/igt@xe_exec_multi_queue@two-queues-close-fd.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-close-fd-smem:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#8364]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-lnl-4/igt@xe_exec_multi_queue@two-queues-preempt-mode-close-fd-smem.html
* igt@xe_exec_reset@cm-multi-queue-gt-reset:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#8369])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-lnl-6/igt@xe_exec_reset@cm-multi-queue-gt-reset.html
* igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads:
- shard-bmg: [PASS][29] -> [FAIL][30] ([Intel XE#7850])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5383-08cdb6010efc9b2f58f740fc59dadc8c119f8b55/shard-bmg-6/igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-bmg-6/igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads.html
* igt@xe_exec_threads@threads-multi-queue-cm-basic:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#8378])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-lnl-4/igt@xe_exec_threads@threads-multi-queue-cm-basic.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- shard-bmg: [PASS][32] -> [ABORT][33] ([Intel XE#8007]) +2 other tests abort
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5383-08cdb6010efc9b2f58f740fc59dadc8c119f8b55/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-bmg: [PASS][34] -> [FAIL][35] ([Intel XE#7992])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5383-08cdb6010efc9b2f58f740fc59dadc8c119f8b55/shard-bmg-10/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-bmg-8/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
* igt@xe_pxp@pxp-stale-bo-exec-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#4733] / [Intel XE#7417])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-bmg-3/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html
* igt@xe_wedged@basic-wedged:
- shard-lnl: [PASS][37] -> [ABORT][38] ([Intel XE#3119])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5383-08cdb6010efc9b2f58f740fc59dadc8c119f8b55/shard-lnl-1/igt@xe_wedged@basic-wedged.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-lnl-7/igt@xe_wedged@basic-wedged.html
#### Possible fixes ####
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [FAIL][39] ([Intel XE#301]) -> [PASS][40] +1 other test pass
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5383-08cdb6010efc9b2f58f740fc59dadc8c119f8b55/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
- shard-bmg: [ABORT][41] ([Intel XE#8007]) -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5383-08cdb6010efc9b2f58f740fc59dadc8c119f8b55/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
#### Warnings ####
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-lnl: [ABORT][43] ([Intel XE#8007]) -> [SKIP][44] ([Intel XE#2321] / [Intel XE#7355])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5383-08cdb6010efc9b2f58f740fc59dadc8c119f8b55/shard-lnl-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-lnl-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][45] ([Intel XE#3544]) -> [SKIP][46] ([Intel XE#3374] / [Intel XE#3544])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5383-08cdb6010efc9b2f58f740fc59dadc8c119f8b55/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][47] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][48] ([Intel XE#2509] / [Intel XE#7437])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5383-08cdb6010efc9b2f58f740fc59dadc8c119f8b55/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3119]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3119
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7850
[Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
Build changes
-------------
* Linux: xe-5383-08cdb6010efc9b2f58f740fc59dadc8c119f8b55 -> xe-pw-169511v5
IGT_9002: 9002
xe-5383-08cdb6010efc9b2f58f740fc59dadc8c119f8b55: 08cdb6010efc9b2f58f740fc59dadc8c119f8b55
xe-pw-169511v5: 169511v5
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v5/index.html
[-- Attachment #2: Type: text/html, Size: 17883 bytes --]
^ permalink raw reply [flat|nested] 37+ messages in thread
* [PATCH v3 11/13] drm/xe/tests: Add GuC KLV printer test
2026-07-07 22:08 ` [PATCH v2 11/13] drm/xe/tests: Add GuC KLV printer test Michal Wajdeczko
@ 2026-07-11 7:36 ` Michal Wajdeczko
0 siblings, 0 replies; 37+ messages in thread
From: Michal Wajdeczko @ 2026-07-11 7:36 UTC (permalink / raw)
To: intel-xe
For completeness, add a simple test to exercise the KLV printer
to make sure it doesn't crash at least.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michał Winiarski <michal.winiarski@intel.com>
---
.../drm/xe/tests/xe_guc_klv_helpers_kunit.c | 41 +++++++++++++++++++
1 file changed, 41 insertions(+)
diff --git a/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c b/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c
index 33d7a52f6bf8..82869363ab7e 100644
--- a/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c
+++ b/drivers/gpu/drm/xe/tests/xe_guc_klv_helpers_kunit.c
@@ -10,6 +10,11 @@
#define TEST_GROUP_KEY (GUC_KLV_RESERVED_RANGE_START + 0x3f0)
#define TEST_PAD 0xdeadbeef
+static bool fake_is_group_key(u16 key)
+{
+ return is_reserved_key(key) && key >= TEST_GROUP_KEY;
+}
+
static void test_count(struct kunit *test)
{
u32 value = 0x12345678;
@@ -368,6 +373,41 @@ static void test_encode_object_basic(struct kunit *test)
obj_echo_encoder));
}
+static void __drm_printfn_kunit(struct drm_printer *p, struct va_format *vaf)
+{
+ struct kunit *test = p->arg;
+
+ kunit_info(test, "%pV", vaf);
+}
+
+static struct drm_printer drm_kunit_printer(void)
+{
+ struct drm_printer p = {
+ .printfn = __drm_printfn_kunit,
+ .arg = kunit_get_current_test(),
+ };
+ return p;
+}
+
+static void test_print(struct kunit *test)
+{
+ struct drm_printer p = drm_kunit_printer();
+ u32 zeros[] = { 0, 0, 0, /* padding */ };
+ u32 klvs[] = {
+ PREP_GUC_KLV(GUC_KLV_OPT_IN_FEATURE_EXT_CAT_ERR_TYPE_KEY, 0),
+ PREP_GUC_KLV(GUC_KLV_VF_CFG_NUM_CONTEXTS_KEY, 1), 1234,
+ PREP_GUC_KLV(GUC_KLV_VF_CFG_GGTT_SIZE_KEY, 2), 0x4000, 0x0123,
+ PREP_GUC_KLV(TEST_KEY, 3), 1, 2, 3,
+ PREP_GUC_KLV(TEST_GROUP_KEY, 5),
+ PREP_GUC_KLV(TEST_KEY + 1, 1), 1,
+ PREP_GUC_KLV(TEST_KEY + 2, 2), 1, 2,
+ };
+
+ kunit_activate_static_stub(test, is_group_key, fake_is_group_key);
+ xe_guc_klv_print(zeros, ARRAY_SIZE(zeros), &p);
+ xe_guc_klv_print(klvs, ARRAY_SIZE(klvs), &p);
+}
+
static struct kunit_case guc_klv_helpers_test_cases[] = {
KUNIT_CASE(test_count),
KUNIT_CASE(test_encode_u32),
@@ -377,6 +417,7 @@ static struct kunit_case guc_klv_helpers_test_cases[] = {
KUNIT_CASE(test_encode_object_klv),
KUNIT_CASE(test_encode_object_nested),
KUNIT_CASE(test_encode_object_basic),
+ KUNIT_CASE(test_print),
{}
};
--
2.47.1
^ permalink raw reply related [flat|nested] 37+ messages in thread
* ✗ CI.checkpatch: warning for drm/xe: Add and use more KLV helpers (rev7)
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (24 preceding siblings ...)
2026-07-11 4:04 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-07-11 7:42 ` Patchwork
2026-07-11 7:43 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
28 siblings, 0 replies; 37+ messages in thread
From: Patchwork @ 2026-07-11 7:42 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Add and use more KLV helpers (rev7)
URL : https://patchwork.freedesktop.org/series/169511/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
061140b9bc586ae7f40abc1249c97e1cc72d1b9d
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 87372ffbf45a1051eca7a012469282e851c1c317
Author: Michal Wajdeczko <michal.wajdeczko@intel.com>
Date: Wed Jul 8 00:08:15 2026 +0200
drm/xe/pf: Handle migration descriptor using KLV helpers
As we plan to add more KLVs to the migration descriptor packet,
to simplify such extensions and avoid coding errors, start using
our KLV helpers for packet preparing and parsing.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michał Winiarski <michal.winiarski@intel.com>
+ /mt/dim checkpatch 7bb9a26014f9ba1b2cb1300252d1eeb83f169c06 drm-intel
ece5044bb347 drm/xe/guc: Allow to print single KLV
21e9d43d598b drm/xe/guc: Prepare to print group KLVs
e241beda03ae drm/xe/guc: Add basic KLV encoding helpers
8ca1aa0b41fb drm/xe/guc: Add string KLV encoding helper
9266c69f3964 drm/xe/guc: Add object KLV encoding helper
78cb40b5ab06 drm/xe/guc: Add KLV parsing helper
2f95d30733bf drm/xe/guc: Formalize Reserved KLVs
-:51: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#51:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 106 lines checked
9e7e70d95dc4 drm/xe/tests: Add GuC KLV helpers basic tests
-: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, 106 lines checked
39a17796d7b0 drm/xe/tests: Add string encoding helper test
4cbaa6cb947d drm/xe/tests: Add object encoding helper test
a2a201e91227 drm/xe/tests: Add GuC KLV printer test
09c68c295c79 drm/xe/tests: Add migration packet test
-:17: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#17:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 96 lines checked
87372ffbf45a drm/xe/pf: Handle migration descriptor using KLV helpers
^ permalink raw reply [flat|nested] 37+ messages in thread
* ✓ CI.KUnit: success for drm/xe: Add and use more KLV helpers (rev7)
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (25 preceding siblings ...)
2026-07-11 7:42 ` ✗ CI.checkpatch: warning for drm/xe: Add and use more KLV helpers (rev7) Patchwork
@ 2026-07-11 7:43 ` Patchwork
2026-07-11 8:18 ` ✓ Xe.CI.BAT: " Patchwork
2026-07-11 11:12 ` ✓ Xe.CI.FULL: " Patchwork
28 siblings, 0 replies; 37+ messages in thread
From: Patchwork @ 2026-07-11 7:43 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Add and use more KLV helpers (rev7)
URL : https://patchwork.freedesktop.org/series/169511/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[07:42:18] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:42:23] 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
[07:42:54] Starting KUnit Kernel (1/1)...
[07:42:54] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:42:54] ================== guc_buf (11 subtests) ===================
[07:42:54] [PASSED] test_smallest
[07:42:54] [PASSED] test_largest
[07:42:54] [PASSED] test_granular
[07:42:54] [PASSED] test_unique
[07:42:54] [PASSED] test_overlap
[07:42:54] [PASSED] test_reusable
[07:42:54] [PASSED] test_too_big
[07:42:54] [PASSED] test_flush
[07:42:54] [PASSED] test_lookup
[07:42:54] [PASSED] test_data
[07:42:54] [PASSED] test_class
[07:42:54] ===================== [PASSED] guc_buf =====================
[07:42:54] =================== guc_dbm (7 subtests) ===================
[07:42:54] [PASSED] test_empty
[07:42:54] [PASSED] test_default
[07:42:54] ======================== test_size ========================
[07:42:54] [PASSED] 4
[07:42:54] [PASSED] 8
[07:42:54] [PASSED] 32
[07:42:54] [PASSED] 256
[07:42:54] ==================== [PASSED] test_size ====================
[07:42:54] ======================= test_reuse ========================
[07:42:54] [PASSED] 4
[07:42:54] [PASSED] 8
[07:42:54] [PASSED] 32
[07:42:54] [PASSED] 256
[07:42:54] =================== [PASSED] test_reuse ====================
[07:42:54] =================== test_range_overlap ====================
[07:42:54] [PASSED] 4
[07:42:54] [PASSED] 8
[07:42:54] [PASSED] 32
[07:42:54] [PASSED] 256
[07:42:54] =============== [PASSED] test_range_overlap ================
[07:42:54] =================== test_range_compact ====================
[07:42:54] [PASSED] 4
[07:42:54] [PASSED] 8
[07:42:54] [PASSED] 32
[07:42:54] [PASSED] 256
[07:42:54] =============== [PASSED] test_range_compact ================
[07:42:54] ==================== test_range_spare =====================
[07:42:54] [PASSED] 4
[07:42:54] [PASSED] 8
[07:42:54] [PASSED] 32
[07:42:54] [PASSED] 256
[07:42:54] ================ [PASSED] test_range_spare =================
[07:42:54] ===================== [PASSED] guc_dbm =====================
[07:42:54] =================== guc_idm (6 subtests) ===================
[07:42:54] [PASSED] bad_init
[07:42:54] [PASSED] no_init
[07:42:54] [PASSED] init_fini
[07:42:54] [PASSED] check_used
[07:42:54] [PASSED] check_quota
[07:42:54] [PASSED] check_all
[07:42:54] ===================== [PASSED] guc_idm =====================
[07:42:54] =============== guc_klv_helpers (9 subtests) ===============
[07:42:54] [PASSED] test_count
[07:42:54] [PASSED] test_encode_u32
[07:42:54] [PASSED] test_encode_u64
[07:42:54] [PASSED] test_encode_string
[07:42:54] [PASSED] test_encode_object_raw
[07:42:54] [PASSED] test_encode_object_klv
[07:42:54] [PASSED] test_encode_object_nested
[07:42:54] [PASSED] test_encode_object_basic
[07:42:54] [PASSED] test_print
[07:42:54] ================= [PASSED] guc_klv_helpers =================
[07:42:54] ================== no_relay (3 subtests) ===================
[07:42:54] [PASSED] xe_drops_guc2pf_if_not_ready
[07:42:54] [PASSED] xe_drops_guc2vf_if_not_ready
[07:42:54] [PASSED] xe_rejects_send_if_not_ready
[07:42:54] ==================== [PASSED] no_relay =====================
[07:42:54] ================== pf_relay (14 subtests) ==================
[07:42:54] [PASSED] pf_rejects_guc2pf_too_short
[07:42:54] [PASSED] pf_rejects_guc2pf_too_long
[07:42:54] [PASSED] pf_rejects_guc2pf_no_payload
[07:42:54] [PASSED] pf_fails_no_payload
[07:42:54] [PASSED] pf_fails_bad_origin
[07:42:54] [PASSED] pf_fails_bad_type
[07:42:54] [PASSED] pf_txn_reports_error
[07:42:54] [PASSED] pf_txn_sends_pf2guc
[07:42:54] [PASSED] pf_sends_pf2guc
[07:42:54] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[07:42:54] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[07:42:54] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[07:42:54] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[07:42:54] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[07:42:54] ==================== [PASSED] pf_relay =====================
[07:42:54] ================== vf_relay (3 subtests) ===================
[07:42:54] [PASSED] vf_rejects_guc2vf_too_short
[07:42:54] [PASSED] vf_rejects_guc2vf_too_long
[07:42:54] [PASSED] vf_rejects_guc2vf_no_payload
[07:42:54] ==================== [PASSED] vf_relay =====================
[07:42:54] ================ pf_gt_config (9 subtests) =================
[07:42:54] [PASSED] fair_contexts_1vf
[07:42:54] [PASSED] fair_doorbells_1vf
[07:42:54] [PASSED] fair_ggtt_1vf
[07:42:54] ====================== fair_vram_1vf ======================
[07:42:54] [PASSED] 3.50 GiB
[07:42:54] [PASSED] 11.5 GiB
[07:42:54] [PASSED] 15.5 GiB
[07:42:54] [PASSED] 31.5 GiB
[07:42:54] [PASSED] 63.5 GiB
[07:42:54] [PASSED] 1.91 GiB
[07:42:54] ================== [PASSED] fair_vram_1vf ==================
[07:42:54] ================ fair_vram_1vf_admin_only =================
[07:42:54] [PASSED] 3.50 GiB
[07:42:54] [PASSED] 11.5 GiB
[07:42:54] [PASSED] 15.5 GiB
[07:42:54] [PASSED] 31.5 GiB
[07:42:54] [PASSED] 63.5 GiB
[07:42:54] [PASSED] 1.91 GiB
[07:42:54] ============ [PASSED] fair_vram_1vf_admin_only =============
[07:42:54] ====================== fair_contexts ======================
[07:42:54] [PASSED] 1 VF
[07:42:54] [PASSED] 2 VFs
[07:42:54] [PASSED] 3 VFs
[07:42:54] [PASSED] 4 VFs
[07:42:54] [PASSED] 5 VFs
[07:42:54] [PASSED] 6 VFs
[07:42:54] [PASSED] 7 VFs
[07:42:54] [PASSED] 8 VFs
[07:42:54] [PASSED] 9 VFs
[07:42:54] [PASSED] 10 VFs
[07:42:54] [PASSED] 11 VFs
[07:42:54] [PASSED] 12 VFs
[07:42:54] [PASSED] 13 VFs
[07:42:54] [PASSED] 14 VFs
[07:42:54] [PASSED] 15 VFs
[07:42:54] [PASSED] 16 VFs
[07:42:54] [PASSED] 17 VFs
[07:42:54] [PASSED] 18 VFs
[07:42:54] [PASSED] 19 VFs
[07:42:54] [PASSED] 20 VFs
[07:42:54] [PASSED] 21 VFs
[07:42:54] [PASSED] 22 VFs
[07:42:54] [PASSED] 23 VFs
[07:42:54] [PASSED] 24 VFs
[07:42:54] [PASSED] 25 VFs
[07:42:54] [PASSED] 26 VFs
[07:42:54] [PASSED] 27 VFs
[07:42:54] [PASSED] 28 VFs
[07:42:54] [PASSED] 29 VFs
[07:42:54] [PASSED] 30 VFs
[07:42:54] [PASSED] 31 VFs
[07:42:54] [PASSED] 32 VFs
[07:42:54] [PASSED] 33 VFs
[07:42:54] [PASSED] 34 VFs
[07:42:54] [PASSED] 35 VFs
[07:42:54] [PASSED] 36 VFs
[07:42:54] [PASSED] 37 VFs
[07:42:54] [PASSED] 38 VFs
[07:42:54] [PASSED] 39 VFs
[07:42:55] [PASSED] 40 VFs
[07:42:55] [PASSED] 41 VFs
[07:42:55] [PASSED] 42 VFs
[07:42:55] [PASSED] 43 VFs
[07:42:55] [PASSED] 44 VFs
[07:42:55] [PASSED] 45 VFs
[07:42:55] [PASSED] 46 VFs
[07:42:55] [PASSED] 47 VFs
[07:42:55] [PASSED] 48 VFs
[07:42:55] [PASSED] 49 VFs
[07:42:55] [PASSED] 50 VFs
[07:42:55] [PASSED] 51 VFs
[07:42:55] [PASSED] 52 VFs
[07:42:55] [PASSED] 53 VFs
[07:42:55] [PASSED] 54 VFs
[07:42:55] [PASSED] 55 VFs
[07:42:55] [PASSED] 56 VFs
[07:42:55] [PASSED] 57 VFs
[07:42:55] [PASSED] 58 VFs
[07:42:55] [PASSED] 59 VFs
[07:42:55] [PASSED] 60 VFs
[07:42:55] [PASSED] 61 VFs
[07:42:55] [PASSED] 62 VFs
[07:42:55] [PASSED] 63 VFs
[07:42:55] ================== [PASSED] fair_contexts ==================
[07:42:55] ===================== fair_doorbells ======================
[07:42:55] [PASSED] 1 VF
[07:42:55] [PASSED] 2 VFs
[07:42:55] [PASSED] 3 VFs
[07:42:55] [PASSED] 4 VFs
[07:42:55] [PASSED] 5 VFs
[07:42:55] [PASSED] 6 VFs
[07:42:55] [PASSED] 7 VFs
[07:42:55] [PASSED] 8 VFs
[07:42:55] [PASSED] 9 VFs
[07:42:55] [PASSED] 10 VFs
[07:42:55] [PASSED] 11 VFs
[07:42:55] [PASSED] 12 VFs
[07:42:55] [PASSED] 13 VFs
[07:42:55] [PASSED] 14 VFs
[07:42:55] [PASSED] 15 VFs
[07:42:55] [PASSED] 16 VFs
[07:42:55] [PASSED] 17 VFs
[07:42:55] [PASSED] 18 VFs
[07:42:55] [PASSED] 19 VFs
[07:42:55] [PASSED] 20 VFs
[07:42:55] [PASSED] 21 VFs
[07:42:55] [PASSED] 22 VFs
[07:42:55] [PASSED] 23 VFs
[07:42:55] [PASSED] 24 VFs
[07:42:55] [PASSED] 25 VFs
[07:42:55] [PASSED] 26 VFs
[07:42:55] [PASSED] 27 VFs
[07:42:55] [PASSED] 28 VFs
[07:42:55] [PASSED] 29 VFs
[07:42:55] [PASSED] 30 VFs
[07:42:55] [PASSED] 31 VFs
[07:42:55] [PASSED] 32 VFs
[07:42:55] [PASSED] 33 VFs
[07:42:55] [PASSED] 34 VFs
[07:42:55] [PASSED] 35 VFs
[07:42:55] [PASSED] 36 VFs
[07:42:55] [PASSED] 37 VFs
[07:42:55] [PASSED] 38 VFs
[07:42:55] [PASSED] 39 VFs
[07:42:55] [PASSED] 40 VFs
[07:42:55] [PASSED] 41 VFs
[07:42:55] [PASSED] 42 VFs
[07:42:55] [PASSED] 43 VFs
[07:42:55] [PASSED] 44 VFs
[07:42:55] [PASSED] 45 VFs
[07:42:55] [PASSED] 46 VFs
[07:42:55] [PASSED] 47 VFs
[07:42:55] [PASSED] 48 VFs
[07:42:55] [PASSED] 49 VFs
[07:42:55] [PASSED] 50 VFs
[07:42:55] [PASSED] 51 VFs
[07:42:55] [PASSED] 52 VFs
[07:42:55] [PASSED] 53 VFs
[07:42:55] [PASSED] 54 VFs
[07:42:55] [PASSED] 55 VFs
[07:42:55] [PASSED] 56 VFs
[07:42:55] [PASSED] 57 VFs
[07:42:55] [PASSED] 58 VFs
[07:42:55] [PASSED] 59 VFs
[07:42:55] [PASSED] 60 VFs
[07:42:55] [PASSED] 61 VFs
[07:42:55] [PASSED] 62 VFs
[07:42:55] [PASSED] 63 VFs
[07:42:55] ================= [PASSED] fair_doorbells ==================
[07:42:55] ======================== fair_ggtt ========================
[07:42:55] [PASSED] 1 VF
[07:42:55] [PASSED] 2 VFs
[07:42:55] [PASSED] 3 VFs
[07:42:55] [PASSED] 4 VFs
[07:42:55] [PASSED] 5 VFs
[07:42:55] [PASSED] 6 VFs
[07:42:55] [PASSED] 7 VFs
[07:42:55] [PASSED] 8 VFs
[07:42:55] [PASSED] 9 VFs
[07:42:55] [PASSED] 10 VFs
[07:42:55] [PASSED] 11 VFs
[07:42:55] [PASSED] 12 VFs
[07:42:55] [PASSED] 13 VFs
[07:42:55] [PASSED] 14 VFs
[07:42:55] [PASSED] 15 VFs
[07:42:55] [PASSED] 16 VFs
[07:42:55] [PASSED] 17 VFs
[07:42:55] [PASSED] 18 VFs
[07:42:55] [PASSED] 19 VFs
[07:42:55] [PASSED] 20 VFs
[07:42:55] [PASSED] 21 VFs
[07:42:55] [PASSED] 22 VFs
[07:42:55] [PASSED] 23 VFs
[07:42:55] [PASSED] 24 VFs
[07:42:55] [PASSED] 25 VFs
[07:42:55] [PASSED] 26 VFs
[07:42:55] [PASSED] 27 VFs
[07:42:55] [PASSED] 28 VFs
[07:42:55] [PASSED] 29 VFs
[07:42:55] [PASSED] 30 VFs
[07:42:55] [PASSED] 31 VFs
[07:42:55] [PASSED] 32 VFs
[07:42:55] [PASSED] 33 VFs
[07:42:55] [PASSED] 34 VFs
[07:42:55] [PASSED] 35 VFs
[07:42:55] [PASSED] 36 VFs
[07:42:55] [PASSED] 37 VFs
[07:42:55] [PASSED] 38 VFs
[07:42:55] [PASSED] 39 VFs
[07:42:55] [PASSED] 40 VFs
[07:42:55] [PASSED] 41 VFs
[07:42:55] [PASSED] 42 VFs
[07:42:55] [PASSED] 43 VFs
[07:42:55] [PASSED] 44 VFs
[07:42:55] [PASSED] 45 VFs
[07:42:55] [PASSED] 46 VFs
[07:42:55] [PASSED] 47 VFs
[07:42:55] [PASSED] 48 VFs
[07:42:55] [PASSED] 49 VFs
[07:42:55] [PASSED] 50 VFs
[07:42:55] [PASSED] 51 VFs
[07:42:55] [PASSED] 52 VFs
[07:42:55] [PASSED] 53 VFs
[07:42:55] [PASSED] 54 VFs
[07:42:55] [PASSED] 55 VFs
[07:42:55] [PASSED] 56 VFs
[07:42:55] [PASSED] 57 VFs
[07:42:55] [PASSED] 58 VFs
[07:42:55] [PASSED] 59 VFs
[07:42:55] [PASSED] 60 VFs
[07:42:55] [PASSED] 61 VFs
[07:42:55] [PASSED] 62 VFs
[07:42:55] [PASSED] 63 VFs
[07:42:55] ==================== [PASSED] fair_ggtt ====================
[07:42:55] ======================== fair_vram ========================
[07:42:55] [PASSED] 1 VF
[07:42:55] [PASSED] 2 VFs
[07:42:55] [PASSED] 3 VFs
[07:42:55] [PASSED] 4 VFs
[07:42:55] [PASSED] 5 VFs
[07:42:55] [PASSED] 6 VFs
[07:42:55] [PASSED] 7 VFs
[07:42:55] [PASSED] 8 VFs
[07:42:55] [PASSED] 9 VFs
[07:42:55] [PASSED] 10 VFs
[07:42:55] [PASSED] 11 VFs
[07:42:55] [PASSED] 12 VFs
[07:42:55] [PASSED] 13 VFs
[07:42:55] [PASSED] 14 VFs
[07:42:55] [PASSED] 15 VFs
[07:42:55] [PASSED] 16 VFs
[07:42:55] [PASSED] 17 VFs
[07:42:55] [PASSED] 18 VFs
[07:42:55] [PASSED] 19 VFs
[07:42:55] [PASSED] 20 VFs
[07:42:55] [PASSED] 21 VFs
[07:42:55] [PASSED] 22 VFs
[07:42:55] [PASSED] 23 VFs
[07:42:55] [PASSED] 24 VFs
[07:42:55] [PASSED] 25 VFs
[07:42:55] [PASSED] 26 VFs
[07:42:55] [PASSED] 27 VFs
[07:42:55] [PASSED] 28 VFs
[07:42:55] [PASSED] 29 VFs
[07:42:55] [PASSED] 30 VFs
[07:42:55] [PASSED] 31 VFs
[07:42:55] [PASSED] 32 VFs
[07:42:55] [PASSED] 33 VFs
[07:42:55] [PASSED] 34 VFs
[07:42:55] [PASSED] 35 VFs
[07:42:55] [PASSED] 36 VFs
[07:42:55] [PASSED] 37 VFs
[07:42:55] [PASSED] 38 VFs
[07:42:55] [PASSED] 39 VFs
[07:42:55] [PASSED] 40 VFs
[07:42:55] [PASSED] 41 VFs
[07:42:55] [PASSED] 42 VFs
[07:42:55] [PASSED] 43 VFs
[07:42:55] [PASSED] 44 VFs
[07:42:55] [PASSED] 45 VFs
[07:42:55] [PASSED] 46 VFs
[07:42:55] [PASSED] 47 VFs
[07:42:55] [PASSED] 48 VFs
[07:42:55] [PASSED] 49 VFs
[07:42:55] [PASSED] 50 VFs
[07:42:55] [PASSED] 51 VFs
[07:42:55] [PASSED] 52 VFs
[07:42:55] [PASSED] 53 VFs
[07:42:55] [PASSED] 54 VFs
[07:42:55] [PASSED] 55 VFs
[07:42:55] [PASSED] 56 VFs
[07:42:55] [PASSED] 57 VFs
[07:42:55] [PASSED] 58 VFs
[07:42:55] [PASSED] 59 VFs
[07:42:55] [PASSED] 60 VFs
[07:42:55] [PASSED] 61 VFs
[07:42:55] [PASSED] 62 VFs
[07:42:55] [PASSED] 63 VFs
[07:42:55] ==================== [PASSED] fair_vram ====================
[07:42:55] ================== [PASSED] pf_gt_config ===================
[07:42:55] ===================== lmtt (1 subtest) =====================
[07:42:55] ======================== test_ops =========================
[07:42:55] [PASSED] 2-level
[07:42:55] [PASSED] multi-level
[07:42:55] ==================== [PASSED] test_ops =====================
[07:42:55] ====================== [PASSED] lmtt =======================
[07:42:55] ================= sriov_packet (1 subtest) =================
[07:42:55] [PASSED] test_descriptor_init
[07:42:55] ================== [PASSED] sriov_packet ===================
[07:42:55] ================= pf_service (11 subtests) =================
[07:42:55] [PASSED] pf_negotiate_any
[07:42:55] [PASSED] pf_negotiate_base_match
[07:42:55] [PASSED] pf_negotiate_base_newer
[07:42:55] [PASSED] pf_negotiate_base_next
[07:42:55] [SKIPPED] pf_negotiate_base_older (no older minor)
[07:42:55] [PASSED] pf_negotiate_base_prev
[07:42:55] [PASSED] pf_negotiate_latest_match
[07:42:55] [PASSED] pf_negotiate_latest_newer
[07:42:55] [PASSED] pf_negotiate_latest_next
[07:42:55] [SKIPPED] pf_negotiate_latest_older (no older minor)
[07:42:55] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[07:42:55] =================== [PASSED] pf_service ====================
[07:42:55] ================= xe_guc_g2g (2 subtests) ==================
[07:42:55] ============== xe_live_guc_g2g_kunit_default ==============
[07:42:55] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[07:42:55] ============== xe_live_guc_g2g_kunit_allmem ===============
[07:42:55] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[07:42:55] =================== [SKIPPED] xe_guc_g2g ===================
[07:42:55] =================== xe_mocs (2 subtests) ===================
[07:42:55] ================ xe_live_mocs_kernel_kunit ================
[07:42:55] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[07:42:55] ================ xe_live_mocs_reset_kunit =================
[07:42:55] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[07:42:55] ==================== [SKIPPED] xe_mocs =====================
[07:42:55] ================= xe_migrate (2 subtests) ==================
[07:42:55] ================= xe_migrate_sanity_kunit =================
[07:42:55] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[07:42:55] ================== xe_validate_ccs_kunit ==================
[07:42:55] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[07:42:55] =================== [SKIPPED] xe_migrate ===================
[07:42:55] ================== xe_dma_buf (1 subtest) ==================
[07:42:55] ==================== xe_dma_buf_kunit =====================
[07:42:55] ================ [SKIPPED] xe_dma_buf_kunit ================
[07:42:55] =================== [SKIPPED] xe_dma_buf ===================
[07:42:55] ================= xe_bo_shrink (1 subtest) =================
[07:42:55] =================== xe_bo_shrink_kunit ====================
[07:42:55] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[07:42:55] ================== [SKIPPED] xe_bo_shrink ==================
[07:42:55] ==================== xe_bo (2 subtests) ====================
[07:42:55] ================== xe_ccs_migrate_kunit ===================
[07:42:55] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[07:42:55] ==================== xe_bo_evict_kunit ====================
[07:42:55] =============== [SKIPPED] xe_bo_evict_kunit ================
[07:42:55] ===================== [SKIPPED] xe_bo ======================
[07:42:55] ==================== args (13 subtests) ====================
[07:42:55] [PASSED] count_args_test
[07:42:55] [PASSED] call_args_example
[07:42:55] [PASSED] call_args_test
[07:42:55] [PASSED] drop_first_arg_example
[07:42:55] [PASSED] drop_first_arg_test
[07:42:55] [PASSED] first_arg_example
[07:42:55] [PASSED] first_arg_test
[07:42:55] [PASSED] last_arg_example
[07:42:55] [PASSED] last_arg_test
[07:42:55] [PASSED] pick_arg_example
[07:42:55] [PASSED] if_args_example
[07:42:55] [PASSED] if_args_test
[07:42:55] [PASSED] sep_comma_example
[07:42:55] ====================== [PASSED] args =======================
[07:42:55] =================== xe_pci (3 subtests) ====================
[07:42:55] ==================== check_graphics_ip ====================
[07:42:55] [PASSED] 12.00 Xe_LP
[07:42:55] [PASSED] 12.10 Xe_LP+
[07:42:55] [PASSED] 12.55 Xe_HPG
[07:42:55] [PASSED] 12.60 Xe_HPC
[07:42:55] [PASSED] 12.70 Xe_LPG
[07:42:55] [PASSED] 12.71 Xe_LPG
[07:42:55] [PASSED] 12.74 Xe_LPG+
[07:42:55] [PASSED] 20.01 Xe2_HPG
[07:42:55] [PASSED] 20.02 Xe2_HPG
[07:42:55] [PASSED] 20.04 Xe2_LPG
[07:42:55] [PASSED] 30.00 Xe3_LPG
[07:42:55] [PASSED] 30.01 Xe3_LPG
[07:42:55] [PASSED] 30.03 Xe3_LPG
[07:42:55] [PASSED] 30.04 Xe3_LPG
[07:42:55] [PASSED] 30.05 Xe3_LPG
[07:42:55] [PASSED] 35.10 Xe3p_LPG
[07:42:55] [PASSED] 35.11 Xe3p_XPC
[07:42:55] ================ [PASSED] check_graphics_ip ================
[07:42:55] ===================== check_media_ip ======================
[07:42:55] [PASSED] 12.00 Xe_M
[07:42:55] [PASSED] 12.55 Xe_HPM
[07:42:55] [PASSED] 13.00 Xe_LPM+
[07:42:55] [PASSED] 13.01 Xe2_HPM
[07:42:55] [PASSED] 20.00 Xe2_LPM
[07:42:55] [PASSED] 30.00 Xe3_LPM
[07:42:55] [PASSED] 30.02 Xe3_LPM
[07:42:55] [PASSED] 35.00 Xe3p_LPM
[07:42:55] [PASSED] 35.03 Xe3p_HPM
[07:42:55] ================= [PASSED] check_media_ip ==================
[07:42:55] =================== check_platform_desc ===================
[07:42:55] [PASSED] 0x9A60 (TIGERLAKE)
[07:42:55] [PASSED] 0x9A68 (TIGERLAKE)
[07:42:55] [PASSED] 0x9A70 (TIGERLAKE)
[07:42:55] [PASSED] 0x9A40 (TIGERLAKE)
[07:42:55] [PASSED] 0x9A49 (TIGERLAKE)
[07:42:55] [PASSED] 0x9A59 (TIGERLAKE)
[07:42:55] [PASSED] 0x9A78 (TIGERLAKE)
[07:42:55] [PASSED] 0x9AC0 (TIGERLAKE)
[07:42:55] [PASSED] 0x9AC9 (TIGERLAKE)
[07:42:55] [PASSED] 0x9AD9 (TIGERLAKE)
[07:42:55] [PASSED] 0x9AF8 (TIGERLAKE)
[07:42:55] [PASSED] 0x4C80 (ROCKETLAKE)
[07:42:55] [PASSED] 0x4C8A (ROCKETLAKE)
[07:42:55] [PASSED] 0x4C8B (ROCKETLAKE)
[07:42:55] [PASSED] 0x4C8C (ROCKETLAKE)
[07:42:55] [PASSED] 0x4C90 (ROCKETLAKE)
[07:42:55] [PASSED] 0x4C9A (ROCKETLAKE)
[07:42:55] [PASSED] 0x4680 (ALDERLAKE_S)
[07:42:55] [PASSED] 0x4682 (ALDERLAKE_S)
[07:42:55] [PASSED] 0x4688 (ALDERLAKE_S)
[07:42:55] [PASSED] 0x468A (ALDERLAKE_S)
[07:42:55] [PASSED] 0x468B (ALDERLAKE_S)
[07:42:55] [PASSED] 0x4690 (ALDERLAKE_S)
[07:42:55] [PASSED] 0x4692 (ALDERLAKE_S)
[07:42:55] [PASSED] 0x4693 (ALDERLAKE_S)
[07:42:55] [PASSED] 0x46A0 (ALDERLAKE_P)
[07:42:55] [PASSED] 0x46A1 (ALDERLAKE_P)
[07:42:55] [PASSED] 0x46A2 (ALDERLAKE_P)
[07:42:55] [PASSED] 0x46A3 (ALDERLAKE_P)
[07:42:55] [PASSED] 0x46A6 (ALDERLAKE_P)
[07:42:55] [PASSED] 0x46A8 (ALDERLAKE_P)
[07:42:55] [PASSED] 0x46AA (ALDERLAKE_P)
[07:42:55] [PASSED] 0x462A (ALDERLAKE_P)
[07:42:55] [PASSED] 0x4626 (ALDERLAKE_P)
[07:42:55] [PASSED] 0x4628 (ALDERLAKE_P)
[07:42:55] [PASSED] 0x46B0 (ALDERLAKE_P)
[07:42:55] [PASSED] 0x46B1 (ALDERLAKE_P)
[07:42:55] [PASSED] 0x46B2 (ALDERLAKE_P)
[07:42:55] [PASSED] 0x46B3 (ALDERLAKE_P)
[07:42:55] [PASSED] 0x46C0 (ALDERLAKE_P)
[07:42:55] [PASSED] 0x46C1 (ALDERLAKE_P)
[07:42:55] [PASSED] 0x46C2 (ALDERLAKE_P)
[07:42:55] [PASSED] 0x46C3 (ALDERLAKE_P)
[07:42:55] [PASSED] 0x46D0 (ALDERLAKE_N)
[07:42:55] [PASSED] 0x46D1 (ALDERLAKE_N)
[07:42:55] [PASSED] 0x46D2 (ALDERLAKE_N)
[07:42:55] [PASSED] 0x46D3 (ALDERLAKE_N)
[07:42:55] [PASSED] 0x46D4 (ALDERLAKE_N)
[07:42:55] [PASSED] 0xA721 (ALDERLAKE_P)
[07:42:55] [PASSED] 0xA7A1 (ALDERLAKE_P)
[07:42:55] [PASSED] 0xA7A9 (ALDERLAKE_P)
[07:42:55] [PASSED] 0xA7AC (ALDERLAKE_P)
[07:42:55] [PASSED] 0xA7AD (ALDERLAKE_P)
[07:42:55] [PASSED] 0xA720 (ALDERLAKE_P)
[07:42:55] [PASSED] 0xA7A0 (ALDERLAKE_P)
[07:42:55] [PASSED] 0xA7A8 (ALDERLAKE_P)
[07:42:55] [PASSED] 0xA7AA (ALDERLAKE_P)
[07:42:55] [PASSED] 0xA7AB (ALDERLAKE_P)
[07:42:55] [PASSED] 0xA780 (ALDERLAKE_S)
[07:42:55] [PASSED] 0xA781 (ALDERLAKE_S)
[07:42:55] [PASSED] 0xA782 (ALDERLAKE_S)
[07:42:55] [PASSED] 0xA783 (ALDERLAKE_S)
[07:42:55] [PASSED] 0xA788 (ALDERLAKE_S)
[07:42:55] [PASSED] 0xA789 (ALDERLAKE_S)
[07:42:55] [PASSED] 0xA78A (ALDERLAKE_S)
[07:42:55] [PASSED] 0xA78B (ALDERLAKE_S)
[07:42:55] [PASSED] 0x4905 (DG1)
[07:42:55] [PASSED] 0x4906 (DG1)
[07:42:55] [PASSED] 0x4907 (DG1)
[07:42:55] [PASSED] 0x4908 (DG1)
[07:42:55] [PASSED] 0x4909 (DG1)
[07:42:55] [PASSED] 0x56C0 (DG2)
[07:42:55] [PASSED] 0x56C2 (DG2)
[07:42:55] [PASSED] 0x56C1 (DG2)
[07:42:55] [PASSED] 0x7D51 (METEORLAKE)
[07:42:55] [PASSED] 0x7DD1 (METEORLAKE)
[07:42:55] [PASSED] 0x7D41 (METEORLAKE)
[07:42:55] [PASSED] 0x7D67 (METEORLAKE)
[07:42:55] [PASSED] 0xB640 (METEORLAKE)
[07:42:55] [PASSED] 0x56A0 (DG2)
[07:42:55] [PASSED] 0x56A1 (DG2)
[07:42:55] [PASSED] 0x56A2 (DG2)
[07:42:55] [PASSED] 0x56BE (DG2)
[07:42:55] [PASSED] 0x56BF (DG2)
[07:42:55] [PASSED] 0x5690 (DG2)
[07:42:55] [PASSED] 0x5691 (DG2)
[07:42:55] [PASSED] 0x5692 (DG2)
[07:42:55] [PASSED] 0x56A5 (DG2)
[07:42:55] [PASSED] 0x56A6 (DG2)
[07:42:55] [PASSED] 0x56B0 (DG2)
[07:42:55] [PASSED] 0x56B1 (DG2)
[07:42:55] [PASSED] 0x56BA (DG2)
[07:42:55] [PASSED] 0x56BB (DG2)
[07:42:55] [PASSED] 0x56BC (DG2)
[07:42:55] [PASSED] 0x56BD (DG2)
[07:42:55] [PASSED] 0x5693 (DG2)
[07:42:55] [PASSED] 0x5694 (DG2)
[07:42:55] [PASSED] 0x5695 (DG2)
[07:42:55] [PASSED] 0x56A3 (DG2)
[07:42:55] [PASSED] 0x56A4 (DG2)
[07:42:55] [PASSED] 0x56B2 (DG2)
[07:42:55] [PASSED] 0x56B3 (DG2)
[07:42:55] [PASSED] 0x5696 (DG2)
[07:42:55] [PASSED] 0x5697 (DG2)
[07:42:55] [PASSED] 0xB69 (PVC)
[07:42:55] [PASSED] 0xB6E (PVC)
[07:42:55] [PASSED] 0xBD4 (PVC)
[07:42:55] [PASSED] 0xBD5 (PVC)
[07:42:55] [PASSED] 0xBD6 (PVC)
[07:42:55] [PASSED] 0xBD7 (PVC)
[07:42:55] [PASSED] 0xBD8 (PVC)
[07:42:55] [PASSED] 0xBD9 (PVC)
[07:42:55] [PASSED] 0xBDA (PVC)
[07:42:55] [PASSED] 0xBDB (PVC)
[07:42:55] [PASSED] 0xBE0 (PVC)
[07:42:55] [PASSED] 0xBE1 (PVC)
[07:42:55] [PASSED] 0xBE5 (PVC)
[07:42:55] [PASSED] 0x7D40 (METEORLAKE)
[07:42:55] [PASSED] 0x7D45 (METEORLAKE)
[07:42:55] [PASSED] 0x7D55 (METEORLAKE)
[07:42:55] [PASSED] 0x7D60 (METEORLAKE)
[07:42:55] [PASSED] 0x7DD5 (METEORLAKE)
[07:42:55] [PASSED] 0x6420 (LUNARLAKE)
[07:42:55] [PASSED] 0x64A0 (LUNARLAKE)
[07:42:55] [PASSED] 0x64B0 (LUNARLAKE)
[07:42:55] [PASSED] 0xE202 (BATTLEMAGE)
[07:42:55] [PASSED] 0xE209 (BATTLEMAGE)
[07:42:55] [PASSED] 0xE20B (BATTLEMAGE)
[07:42:55] [PASSED] 0xE20C (BATTLEMAGE)
[07:42:55] [PASSED] 0xE20D (BATTLEMAGE)
[07:42:55] [PASSED] 0xE210 (BATTLEMAGE)
[07:42:55] [PASSED] 0xE211 (BATTLEMAGE)
[07:42:55] [PASSED] 0xE212 (BATTLEMAGE)
[07:42:55] [PASSED] 0xE216 (BATTLEMAGE)
[07:42:55] [PASSED] 0xE220 (BATTLEMAGE)
[07:42:55] [PASSED] 0xE221 (BATTLEMAGE)
[07:42:55] [PASSED] 0xE222 (BATTLEMAGE)
[07:42:55] [PASSED] 0xE223 (BATTLEMAGE)
[07:42:55] [PASSED] 0xB080 (PANTHERLAKE)
[07:42:55] [PASSED] 0xB081 (PANTHERLAKE)
[07:42:55] [PASSED] 0xB082 (PANTHERLAKE)
[07:42:55] [PASSED] 0xB083 (PANTHERLAKE)
[07:42:55] [PASSED] 0xB084 (PANTHERLAKE)
[07:42:55] [PASSED] 0xB085 (PANTHERLAKE)
[07:42:55] [PASSED] 0xB086 (PANTHERLAKE)
[07:42:55] [PASSED] 0xB087 (PANTHERLAKE)
[07:42:55] [PASSED] 0xB08F (PANTHERLAKE)
[07:42:55] [PASSED] 0xB090 (PANTHERLAKE)
[07:42:55] [PASSED] 0xB0A0 (PANTHERLAKE)
[07:42:55] [PASSED] 0xB0B0 (PANTHERLAKE)
[07:42:55] [PASSED] 0xFD80 (PANTHERLAKE)
[07:42:55] [PASSED] 0xFD81 (PANTHERLAKE)
[07:42:55] [PASSED] 0xD740 (NOVALAKE_S)
[07:42:55] [PASSED] 0xD741 (NOVALAKE_S)
[07:42:55] [PASSED] 0xD742 (NOVALAKE_S)
[07:42:55] [PASSED] 0xD743 (NOVALAKE_S)
[07:42:55] [PASSED] 0xD745 (NOVALAKE_S)
[07:42:55] [PASSED] 0xD74A (NOVALAKE_S)
[07:42:55] [PASSED] 0xD74B (NOVALAKE_S)
[07:42:55] [PASSED] 0x674C (CRESCENTISLAND)
[07:42:55] [PASSED] 0x674D (CRESCENTISLAND)
[07:42:55] [PASSED] 0x674E (CRESCENTISLAND)
[07:42:55] [PASSED] 0x674F (CRESCENTISLAND)
[07:42:55] [PASSED] 0x6750 (CRESCENTISLAND)
[07:42:55] [PASSED] 0xD750 (NOVALAKE_P)
[07:42:55] [PASSED] 0xD751 (NOVALAKE_P)
[07:42:55] [PASSED] 0xD752 (NOVALAKE_P)
[07:42:55] [PASSED] 0xD753 (NOVALAKE_P)
[07:42:55] [PASSED] 0xD754 (NOVALAKE_P)
[07:42:55] [PASSED] 0xD755 (NOVALAKE_P)
[07:42:55] [PASSED] 0xD756 (NOVALAKE_P)
[07:42:55] [PASSED] 0xD757 (NOVALAKE_P)
[07:42:55] [PASSED] 0xD75F (NOVALAKE_P)
[07:42:55] =============== [PASSED] check_platform_desc ===============
[07:42:55] ===================== [PASSED] xe_pci ======================
[07:42:55] ============= xe_rtp_tables_test (5 subtests) ==============
[07:42:55] ================== xe_rtp_table_gt_test ===================
[07:42:55] [PASSED] gt_was/14011060649
[07:42:55] [PASSED] gt_was/14011059788
[07:42:55] [PASSED] gt_was/14015795083
[07:42:55] [PASSED] gt_was/16021867713
[07:42:55] [PASSED] gt_was/14019449301
[07:42:55] [PASSED] gt_was/16028005424
[07:42:55] [PASSED] gt_was/14026578760
[07:42:55] [PASSED] gt_was/1409420604
[07:42:55] [PASSED] gt_was/1408615072
[07:42:55] [PASSED] gt_was/22010523718
[07:42:55] [PASSED] gt_was/14011006942
[07:42:55] [PASSED] gt_was/14014830051
[07:42:55] [PASSED] gt_was/18018781329
[07:42:55] [PASSED] gt_was/1509235366
[07:42:55] [PASSED] gt_was/18018781329
[07:42:55] [PASSED] gt_was/16016694945
[07:42:55] [PASSED] gt_was/14018575942
[07:42:55] [PASSED] gt_was/22016670082
[07:42:55] [PASSED] gt_was/22016670082
[07:42:55] [PASSED] gt_was/14017421178
[07:42:55] [PASSED] gt_was/16025250150
[07:42:55] [PASSED] gt_was/14021871409
[07:42:55] [PASSED] gt_was/16021865536
[07:42:55] [PASSED] gt_was/14021486841
[07:42:55] [PASSED] gt_was/14025160223
[07:42:55] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[07:42:55] [PASSED] gt_was/14025635424
[07:42:55] [PASSED] gt_was/16028005424
[07:42:55] ============== [PASSED] xe_rtp_table_gt_test ===============
[07:42:55] ================== xe_rtp_table_gt_test ===================
[07:42:55] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[07:42:55] [PASSED] gt_tunings/Tuning: 32B Access Enable
[07:42:55] [PASSED] gt_tunings/Tuning: L3 cache
[07:42:55] [PASSED] gt_tunings/Tuning: L3 cache - media
[07:42:55] [PASSED] gt_tunings/Tuning: Compression Overfetch
[07:42:55] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[07:42:55] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[07:42:55] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[07:42:55] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[07:42:55] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[07:42:55] [PASSED] gt_tunings/Tuning: Stateless compression control
[07:42:55] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[07:42:55] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[07:42:55] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[07:42:55] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[07:42:55] ============== [PASSED] xe_rtp_table_gt_test ===============
[07:42:55] ================== xe_rtp_table_oob_test ==================
[07:42:55] [PASSED] oob_was/1607983814
[07:42:55] [PASSED] oob_was/16010904313
[07:42:55] [PASSED] oob_was/18022495364
[07:42:55] [PASSED] oob_was/22012773006
[07:42:55] [PASSED] oob_was/14014475959
[07:42:55] [PASSED] oob_was/22011391025
[07:42:55] [PASSED] oob_was/22012727170
[07:42:55] [PASSED] oob_was/22012727685
[07:42:55] [PASSED] oob_was/22016596838
[07:42:55] [PASSED] oob_was/18020744125
[07:42:55] [PASSED] oob_was/1409600907
[07:42:55] [PASSED] oob_was/22014953428
[07:42:55] [PASSED] oob_was/16017236439
[07:42:55] [PASSED] oob_was/14019821291
[07:42:55] [PASSED] oob_was/14015076503
[07:42:55] [PASSED] oob_was/14018913170
[07:42:55] [PASSED] oob_was/14018094691
[07:42:55] [PASSED] oob_was/18024947630
[07:42:55] [PASSED] oob_was/16022287689
[07:42:55] [PASSED] oob_was/13011645652
[07:42:55] [PASSED] oob_was/14022293748
[07:42:55] [PASSED] oob_was/22019794406
[07:42:55] [PASSED] oob_was/22019338487
[07:42:55] [PASSED] oob_was/16023588340
[07:42:55] [PASSED] oob_was/14019789679
[07:42:55] [PASSED] oob_was/14022866841
[07:42:55] [PASSED] oob_was/16021333562
[07:42:55] [PASSED] oob_was/14016712196
[07:42:55] [PASSED] oob_was/14015568240
[07:42:55] [PASSED] oob_was/18013179988
[07:42:55] [PASSED] oob_was/1508761755
[07:42:55] [PASSED] oob_was/16023105232
[07:42:55] [PASSED] oob_was/16026508708
[07:42:55] [PASSED] oob_was/14020001231
[07:42:55] [PASSED] oob_was/16023683509
[07:42:55] [PASSED] oob_was/14025515070
[07:42:55] [PASSED] oob_was/15015404425_disable
[07:42:55] [PASSED] oob_was/16026007364
[07:42:55] [PASSED] oob_was/14020316580
[07:42:55] [PASSED] oob_was/14025883347
[07:42:55] [PASSED] oob_was/16029380221
[07:42:55] [PASSED] oob_was/22022079272
[07:42:55] [PASSED] oob_was/16029897822
[07:42:55] ============== [PASSED] xe_rtp_table_oob_test ==============
[07:42:55] ================ xe_rtp_table_dev_oob_test ================
[07:42:55] [PASSED] device_oob_was/22010954014
[07:42:55] [PASSED] device_oob_was/15015404425
[07:42:55] [PASSED] device_oob_was/22019338487_display
[07:42:55] [PASSED] device_oob_was/14022085890
[07:42:55] [PASSED] device_oob_was/14026539277
[07:42:55] [PASSED] device_oob_was/14026633728
[07:42:55] [PASSED] device_oob_was/14026746987
[07:42:55] [PASSED] device_oob_was/14026779378
[07:42:55] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[07:42:55] ========== xe_rtp_table_missing_upper_bound_test ==========
[07:42:55] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[07:42:55] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[07:42:55] [PASSED] register_whitelist/1806527549
[07:42:55] [PASSED] register_whitelist/allow_read_ctx_timestamp
[07:42:55] [PASSED] register_whitelist/allow_read_queue_timestamp
[07:42:55] [PASSED] register_whitelist/16014440446
[07:42:55] [PASSED] register_whitelist/16017236439
[07:42:55] [PASSED] register_whitelist/16020183090
[07:42:55] [PASSED] register_whitelist/14024997852
[07:42:55] [PASSED] register_whitelist/14024997852
[07:42:55] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[07:42:55] =============== [PASSED] xe_rtp_tables_test ================
[07:42:55] =================== xe_rtp (3 subtests) ====================
[07:42:55] =================== xe_rtp_rules_tests ====================
[07:42:55] [PASSED] no
[07:42:55] [PASSED] yes
[07:42:55] [PASSED] no-and-no
[07:42:55] [PASSED] no-and-yes
[07:42:55] [PASSED] yes-and-no
[07:42:55] [PASSED] yes-and-yes
[07:42:55] [PASSED] no-or-no
[07:42:55] [PASSED] no-or-yes
[07:42:55] [PASSED] yes-or-no
[07:42:55] [PASSED] yes-or-yes
[07:42:55] [PASSED] no-yes-or-yes-no
[07:42:55] [PASSED] no-yes-or-yes-yes
[07:42:55] [PASSED] yes-yes-or-no-yes
[07:42:55] [PASSED] yes-yes-or-yes-yes
[07:42:55] [PASSED] no-no-or-yes-or-no
[07:42:55] [PASSED] or
[07:42:55] [PASSED] or-yes
[07:42:55] [PASSED] or-no
[07:42:55] [PASSED] yes-or
[07:42:55] [PASSED] no-or
[07:42:55] [PASSED] no-or-or-yes
[07:42:55] [PASSED] yes-or-or-no
[07:42:55] [PASSED] no-or-or-no
[07:42:55] [PASSED] missing-context-engine-class
[07:42:55] [PASSED] missing-context-engine-class-or-yes
[07:42:55] [PASSED] missing-context-engine-class-or-or-yes
[07:42:55] =============== [PASSED] xe_rtp_rules_tests ================
[07:42:55] =============== xe_rtp_process_to_sr_tests ================
[07:42:55] [PASSED] coalesce-same-reg
[07:42:55] [PASSED] coalesce-same-reg-literal-and-func
[07:42:55] [PASSED] no-match-no-add
[07:42:55] [PASSED] two-regs-two-entries
[07:42:55] [PASSED] clr-one-set-other
[07:42:55] [PASSED] set-field
[07:42:55] [PASSED] conflict-duplicate
[07:42:55] [PASSED] conflict-not-disjoint
[07:42:55] [PASSED] conflict-not-disjoint-literal-and-func
[07:42:55] [PASSED] conflict-reg-type
[07:42:55] [PASSED] bad-mcr-reg-forced-to-regular
[07:42:55] [PASSED] bad-regular-reg-forced-to-mcr
[07:42:55] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[07:42:55] ================== xe_rtp_process_tests ===================
[07:42:55] [PASSED] active1
[07:42:55] [PASSED] active2
[07:42:55] [PASSED] active-inactive
[07:42:55] [PASSED] inactive-active
[07:42:55] [PASSED] inactive-active-inactive
[07:42:55] [PASSED] inactive-inactive-inactive
[07:42:55] ============== [PASSED] xe_rtp_process_tests ===============
[07:42:55] ===================== [PASSED] xe_rtp ======================
[07:42:55] ==================== xe_wa (1 subtest) =====================
[07:42:55] ======================== xe_wa_gt =========================
[07:42:55] [PASSED] TIGERLAKE B0
[07:42:55] [PASSED] DG1 A0
[07:42:55] [PASSED] DG1 B0
[07:42:55] [PASSED] ALDERLAKE_S A0
[07:42:55] [PASSED] ALDERLAKE_S B0
[07:42:55] [PASSED] ALDERLAKE_S C0
[07:42:55] [PASSED] ALDERLAKE_S D0
[07:42:55] [PASSED] ALDERLAKE_P A0
[07:42:55] [PASSED] ALDERLAKE_P B0
[07:42:55] [PASSED] ALDERLAKE_P C0
[07:42:55] [PASSED] ALDERLAKE_S RPLS D0
[07:42:55] [PASSED] ALDERLAKE_P RPLU E0
[07:42:55] [PASSED] DG2 G10 C0
[07:42:55] [PASSED] DG2 G11 B1
[07:42:55] [PASSED] DG2 G12 A1
[07:42:55] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[07:42:55] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[07:42:55] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[07:42:55] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[07:42:55] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[07:42:55] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[07:42:55] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[07:42:55] ==================== [PASSED] xe_wa_gt =====================
[07:42:55] ====================== [PASSED] xe_wa ======================
[07:42:55] ============================================================
[07:42:55] Testing complete. Ran 741 tests: passed: 723, skipped: 18
[07:42:55] Elapsed time: 36.589s total, 4.327s configuring, 31.596s building, 0.641s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[07:42:55] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:42: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
[07:43:21] Starting KUnit Kernel (1/1)...
[07:43:21] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:43:21] ============ drm_test_pick_cmdline (2 subtests) ============
[07:43:21] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[07:43:21] =============== drm_test_pick_cmdline_named ===============
[07:43:21] [PASSED] NTSC
[07:43:21] [PASSED] NTSC-J
[07:43:21] [PASSED] PAL
[07:43:21] [PASSED] PAL-M
[07:43:21] =========== [PASSED] drm_test_pick_cmdline_named ===========
[07:43:21] ============== [PASSED] drm_test_pick_cmdline ==============
[07:43:21] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[07:43:21] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[07:43:21] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[07:43:21] =========== drm_validate_clone_mode (2 subtests) ===========
[07:43:21] ============== drm_test_check_in_clone_mode ===============
[07:43:21] [PASSED] in_clone_mode
[07:43:21] [PASSED] not_in_clone_mode
[07:43:21] ========== [PASSED] drm_test_check_in_clone_mode ===========
[07:43:21] =============== drm_test_check_valid_clones ===============
[07:43:21] [PASSED] not_in_clone_mode
[07:43:21] [PASSED] valid_clone
[07:43:21] [PASSED] invalid_clone
[07:43:21] =========== [PASSED] drm_test_check_valid_clones ===========
[07:43:21] ============= [PASSED] drm_validate_clone_mode =============
[07:43:21] ============= drm_validate_modeset (1 subtest) =============
[07:43:21] [PASSED] drm_test_check_connector_changed_modeset
[07:43:21] ============== [PASSED] drm_validate_modeset ===============
[07:43:21] ====== drm_test_bridge_get_current_state (2 subtests) ======
[07:43:21] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[07:43:21] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[07:43:21] ======== [PASSED] drm_test_bridge_get_current_state ========
[07:43:21] ====== drm_test_bridge_helper_reset_crtc (4 subtests) ======
[07:43:21] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[07:43:21] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[07:43:21] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[07:43:21] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[07:43:21] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[07:43:21] ============== drm_bridge_alloc (2 subtests) ===============
[07:43:21] [PASSED] drm_test_drm_bridge_alloc_basic
[07:43:21] [PASSED] drm_test_drm_bridge_alloc_get_put
[07:43:21] ================ [PASSED] drm_bridge_alloc =================
[07:43:21] ============= drm_bridge_bus_fmt (5 subtests) ==============
[07:43:21] [PASSED] drm_test_bridge_rgb_yuv_rgb
[07:43:21] [PASSED] drm_test_bridge_must_convert_to_yuv444
[07:43:21] [PASSED] drm_test_bridge_hdmi_auto_rgb
[07:43:21] [PASSED] drm_test_bridge_auto_first
[07:43:21] [PASSED] drm_test_bridge_rgb_yuv_no_path
[07:43:21] =============== [PASSED] drm_bridge_bus_fmt ================
[07:43:21] ============= drm_cmdline_parser (40 subtests) =============
[07:43:21] [PASSED] drm_test_cmdline_force_d_only
[07:43:21] [PASSED] drm_test_cmdline_force_D_only_dvi
[07:43:21] [PASSED] drm_test_cmdline_force_D_only_hdmi
[07:43:21] [PASSED] drm_test_cmdline_force_D_only_not_digital
[07:43:21] [PASSED] drm_test_cmdline_force_e_only
[07:43:21] [PASSED] drm_test_cmdline_res
[07:43:21] [PASSED] drm_test_cmdline_res_vesa
[07:43:21] [PASSED] drm_test_cmdline_res_vesa_rblank
[07:43:21] [PASSED] drm_test_cmdline_res_rblank
[07:43:21] [PASSED] drm_test_cmdline_res_bpp
[07:43:21] [PASSED] drm_test_cmdline_res_refresh
[07:43:21] [PASSED] drm_test_cmdline_res_bpp_refresh
[07:43:21] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[07:43:21] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[07:43:21] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[07:43:21] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[07:43:21] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[07:43:21] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[07:43:21] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[07:43:21] [PASSED] drm_test_cmdline_res_margins_force_on
[07:43:21] [PASSED] drm_test_cmdline_res_vesa_margins
[07:43:21] [PASSED] drm_test_cmdline_name
[07:43:21] [PASSED] drm_test_cmdline_name_bpp
[07:43:21] [PASSED] drm_test_cmdline_name_option
[07:43:21] [PASSED] drm_test_cmdline_name_bpp_option
[07:43:21] [PASSED] drm_test_cmdline_rotate_0
[07:43:21] [PASSED] drm_test_cmdline_rotate_90
[07:43:21] [PASSED] drm_test_cmdline_rotate_180
[07:43:21] [PASSED] drm_test_cmdline_rotate_270
[07:43:21] [PASSED] drm_test_cmdline_hmirror
[07:43:21] [PASSED] drm_test_cmdline_vmirror
[07:43:21] [PASSED] drm_test_cmdline_margin_options
[07:43:21] [PASSED] drm_test_cmdline_multiple_options
[07:43:21] [PASSED] drm_test_cmdline_bpp_extra_and_option
[07:43:21] [PASSED] drm_test_cmdline_extra_and_option
[07:43:21] [PASSED] drm_test_cmdline_freestanding_options
[07:43:21] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[07:43:21] [PASSED] drm_test_cmdline_panel_orientation
[07:43:21] ================ drm_test_cmdline_invalid =================
[07:43:21] [PASSED] margin_only
[07:43:21] [PASSED] interlace_only
[07:43:21] [PASSED] res_missing_x
[07:43:21] [PASSED] res_missing_y
[07:43:21] [PASSED] res_bad_y
[07:43:21] [PASSED] res_missing_y_bpp
[07:43:21] [PASSED] res_bad_bpp
[07:43:21] [PASSED] res_bad_refresh
[07:43:21] [PASSED] res_bpp_refresh_force_on_off
[07:43:21] [PASSED] res_invalid_mode
[07:43:21] [PASSED] res_bpp_wrong_place_mode
[07:43:21] [PASSED] name_bpp_refresh
[07:43:21] [PASSED] name_refresh
[07:43:21] [PASSED] name_refresh_wrong_mode
[07:43:21] [PASSED] name_refresh_invalid_mode
[07:43:21] [PASSED] rotate_multiple
[07:43:21] [PASSED] rotate_invalid_val
[07:43:21] [PASSED] rotate_truncated
[07:43:21] [PASSED] invalid_option
[07:43:21] [PASSED] invalid_tv_option
[07:43:21] [PASSED] truncated_tv_option
[07:43:21] ============ [PASSED] drm_test_cmdline_invalid =============
[07:43:21] =============== drm_test_cmdline_tv_options ===============
[07:43:21] [PASSED] NTSC
[07:43:21] [PASSED] NTSC_443
[07:43:21] [PASSED] NTSC_J
[07:43:21] [PASSED] PAL
[07:43:21] [PASSED] PAL_M
[07:43:21] [PASSED] PAL_N
[07:43:21] [PASSED] SECAM
[07:43:21] [PASSED] MONO_525
[07:43:21] [PASSED] MONO_625
[07:43:21] =========== [PASSED] drm_test_cmdline_tv_options ===========
[07:43:21] =============== [PASSED] drm_cmdline_parser ================
[07:43:21] ========== drmm_connector_hdmi_init (20 subtests) ==========
[07:43:21] [PASSED] drm_test_connector_hdmi_init_valid
[07:43:21] [PASSED] drm_test_connector_hdmi_init_bpc_8
[07:43:21] [PASSED] drm_test_connector_hdmi_init_bpc_10
[07:43:21] [PASSED] drm_test_connector_hdmi_init_bpc_12
[07:43:21] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[07:43:21] [PASSED] drm_test_connector_hdmi_init_bpc_null
[07:43:21] [PASSED] drm_test_connector_hdmi_init_formats_empty
[07:43:21] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[07:43:21] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[07:43:21] [PASSED] supported_formats=0x9 yuv420_allowed=1
[07:43:21] [PASSED] supported_formats=0x9 yuv420_allowed=0
[07:43:21] [PASSED] supported_formats=0x5 yuv420_allowed=1
[07:43:21] [PASSED] supported_formats=0x5 yuv420_allowed=0
[07:43:21] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[07:43:21] [PASSED] drm_test_connector_hdmi_init_null_ddc
[07:43:21] [PASSED] drm_test_connector_hdmi_init_null_product
[07:43:21] [PASSED] drm_test_connector_hdmi_init_null_vendor
[07:43:21] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[07:43:21] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[07:43:21] [PASSED] drm_test_connector_hdmi_init_product_valid
[07:43:21] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[07:43:21] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[07:43:21] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[07:43:21] ========= drm_test_connector_hdmi_init_type_valid =========
[07:43:21] [PASSED] HDMI-A
[07:43:21] [PASSED] HDMI-B
[07:43:21] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[07:43:21] ======== drm_test_connector_hdmi_init_type_invalid ========
[07:43:21] [PASSED] Unknown
[07:43:21] [PASSED] VGA
[07:43:21] [PASSED] DVI-I
[07:43:21] [PASSED] DVI-D
[07:43:21] [PASSED] DVI-A
[07:43:21] [PASSED] Composite
[07:43:21] [PASSED] SVIDEO
[07:43:21] [PASSED] LVDS
[07:43:21] [PASSED] Component
[07:43:21] [PASSED] DIN
[07:43:21] [PASSED] DP
[07:43:21] [PASSED] TV
[07:43:21] [PASSED] eDP
[07:43:21] [PASSED] Virtual
[07:43:21] [PASSED] DSI
[07:43:21] [PASSED] DPI
[07:43:21] [PASSED] Writeback
[07:43:21] [PASSED] SPI
[07:43:21] [PASSED] USB
[07:43:21] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[07:43:21] ============ [PASSED] drmm_connector_hdmi_init =============
[07:43:21] ============= drmm_connector_init (3 subtests) =============
[07:43:21] [PASSED] drm_test_drmm_connector_init
[07:43:21] [PASSED] drm_test_drmm_connector_init_null_ddc
[07:43:21] ========= drm_test_drmm_connector_init_type_valid =========
[07:43:21] [PASSED] Unknown
[07:43:21] [PASSED] VGA
[07:43:21] [PASSED] DVI-I
[07:43:21] [PASSED] DVI-D
[07:43:21] [PASSED] DVI-A
[07:43:21] [PASSED] Composite
[07:43:21] [PASSED] SVIDEO
[07:43:21] [PASSED] LVDS
[07:43:21] [PASSED] Component
[07:43:21] [PASSED] DIN
[07:43:21] [PASSED] DP
[07:43:21] [PASSED] HDMI-A
[07:43:21] [PASSED] HDMI-B
[07:43:21] [PASSED] TV
[07:43:21] [PASSED] eDP
[07:43:21] [PASSED] Virtual
[07:43:21] [PASSED] DSI
[07:43:21] [PASSED] DPI
[07:43:21] [PASSED] Writeback
[07:43:21] [PASSED] SPI
[07:43:21] [PASSED] USB
[07:43:21] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[07:43:21] =============== [PASSED] drmm_connector_init ===============
[07:43:21] ========= drm_connector_dynamic_init (6 subtests) ==========
[07:43:21] [PASSED] drm_test_drm_connector_dynamic_init
[07:43:21] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[07:43:21] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[07:43:21] [PASSED] drm_test_drm_connector_dynamic_init_properties
[07:43:21] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[07:43:21] [PASSED] Unknown
[07:43:21] [PASSED] VGA
[07:43:21] [PASSED] DVI-I
[07:43:21] [PASSED] DVI-D
[07:43:21] [PASSED] DVI-A
[07:43:21] [PASSED] Composite
[07:43:21] [PASSED] SVIDEO
[07:43:21] [PASSED] LVDS
[07:43:21] [PASSED] Component
[07:43:21] [PASSED] DIN
[07:43:21] [PASSED] DP
[07:43:21] [PASSED] HDMI-A
[07:43:21] [PASSED] HDMI-B
[07:43:21] [PASSED] TV
[07:43:21] [PASSED] eDP
[07:43:21] [PASSED] Virtual
[07:43:21] [PASSED] DSI
[07:43:21] [PASSED] DPI
[07:43:21] [PASSED] Writeback
[07:43:21] [PASSED] SPI
[07:43:21] [PASSED] USB
[07:43:21] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[07:43:21] ======== drm_test_drm_connector_dynamic_init_name =========
[07:43:21] [PASSED] Unknown
[07:43:21] [PASSED] VGA
[07:43:21] [PASSED] DVI-I
[07:43:21] [PASSED] DVI-D
[07:43:21] [PASSED] DVI-A
[07:43:21] [PASSED] Composite
[07:43:21] [PASSED] SVIDEO
[07:43:21] [PASSED] LVDS
[07:43:21] [PASSED] Component
[07:43:21] [PASSED] DIN
[07:43:21] [PASSED] DP
[07:43:21] [PASSED] HDMI-A
[07:43:21] [PASSED] HDMI-B
[07:43:21] [PASSED] TV
[07:43:21] [PASSED] eDP
[07:43:21] [PASSED] Virtual
[07:43:21] [PASSED] DSI
[07:43:21] [PASSED] DPI
[07:43:21] [PASSED] Writeback
[07:43:21] [PASSED] SPI
[07:43:21] [PASSED] USB
[07:43:21] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[07:43:21] =========== [PASSED] drm_connector_dynamic_init ============
[07:43:21] ==== drm_connector_dynamic_register_early (4 subtests) =====
[07:43:21] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[07:43:21] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[07:43:21] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[07:43:21] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[07:43:21] ====== [PASSED] drm_connector_dynamic_register_early =======
[07:43:21] ======= drm_connector_dynamic_register (7 subtests) ========
[07:43:21] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[07:43:21] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[07:43:21] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[07:43:21] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[07:43:21] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[07:43:21] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[07:43:21] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[07:43:21] ========= [PASSED] drm_connector_dynamic_register ==========
[07:43:21] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[07:43:21] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[07:43:21] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[07:43:21] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[07:43:21] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[07:43:21] ========== drm_test_get_tv_mode_from_name_valid ===========
[07:43:21] [PASSED] NTSC
[07:43:21] [PASSED] NTSC-443
[07:43:21] [PASSED] NTSC-J
[07:43:21] [PASSED] PAL
[07:43:21] [PASSED] PAL-M
[07:43:21] [PASSED] PAL-N
[07:43:21] [PASSED] SECAM
[07:43:21] [PASSED] Mono
[07:43:21] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[07:43:21] [PASSED] drm_test_get_tv_mode_from_name_truncated
[07:43:21] ============ [PASSED] drm_get_tv_mode_from_name ============
[07:43:21] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[07:43:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[07:43:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[07:43:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[07:43:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[07:43:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[07:43:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[07:43:21] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[07:43:21] [PASSED] VIC 96
[07:43:21] [PASSED] VIC 97
[07:43:21] [PASSED] VIC 101
[07:43:21] [PASSED] VIC 102
[07:43:21] [PASSED] VIC 106
[07:43:21] [PASSED] VIC 107
[07:43:21] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[07:43:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[07:43:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[07:43:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[07:43:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[07:43:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[07:43:21] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[07:43:21] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[07:43:21] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[07:43:21] [PASSED] Automatic
[07:43:21] [PASSED] Full
[07:43:21] [PASSED] Limited 16:235
[07:43:21] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[07:43:21] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[07:43:21] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[07:43:21] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[07:43:21] === drm_test_drm_hdmi_connector_get_output_format_name ====
[07:43:21] [PASSED] RGB
[07:43:21] [PASSED] YUV 4:2:0
[07:43:21] [PASSED] YUV 4:2:2
[07:43:21] [PASSED] YUV 4:4:4
[07:43:21] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[07:43:21] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[07:43:21] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[07:43:21] ============= drm_damage_helper (21 subtests) ==============
[07:43:21] [PASSED] drm_test_damage_iter_no_damage
[07:43:21] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[07:43:21] [PASSED] drm_test_damage_iter_no_damage_src_moved
[07:43:21] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[07:43:21] [PASSED] drm_test_damage_iter_no_damage_not_visible
[07:43:21] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[07:43:21] [PASSED] drm_test_damage_iter_no_damage_no_fb
[07:43:21] [PASSED] drm_test_damage_iter_simple_damage
[07:43:21] [PASSED] drm_test_damage_iter_single_damage
[07:43:21] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[07:43:21] [PASSED] drm_test_damage_iter_single_damage_outside_src
[07:43:21] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[07:43:21] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[07:43:21] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[07:43:21] [PASSED] drm_test_damage_iter_single_damage_src_moved
[07:43:21] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[07:43:21] [PASSED] drm_test_damage_iter_damage
[07:43:21] [PASSED] drm_test_damage_iter_damage_one_intersect
[07:43:21] [PASSED] drm_test_damage_iter_damage_one_outside
[07:43:21] [PASSED] drm_test_damage_iter_damage_src_moved
[07:43:21] [PASSED] drm_test_damage_iter_damage_not_visible
[07:43:21] ================ [PASSED] drm_damage_helper ================
[07:43:21] ============== drm_dp_mst_helper (3 subtests) ==============
[07:43:21] ============== drm_test_dp_mst_calc_pbn_mode ==============
[07:43:21] [PASSED] Clock 154000 BPP 30 DSC disabled
[07:43:21] [PASSED] Clock 234000 BPP 30 DSC disabled
[07:43:21] [PASSED] Clock 297000 BPP 24 DSC disabled
[07:43:21] [PASSED] Clock 332880 BPP 24 DSC enabled
[07:43:21] [PASSED] Clock 324540 BPP 24 DSC enabled
[07:43:21] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[07:43:21] ============== drm_test_dp_mst_calc_pbn_div ===============
[07:43:21] [PASSED] Link rate 2000000 lane count 4
[07:43:21] [PASSED] Link rate 2000000 lane count 2
[07:43:21] [PASSED] Link rate 2000000 lane count 1
[07:43:21] [PASSED] Link rate 1350000 lane count 4
[07:43:21] [PASSED] Link rate 1350000 lane count 2
[07:43:21] [PASSED] Link rate 1350000 lane count 1
[07:43:21] [PASSED] Link rate 1000000 lane count 4
[07:43:21] [PASSED] Link rate 1000000 lane count 2
[07:43:21] [PASSED] Link rate 1000000 lane count 1
[07:43:21] [PASSED] Link rate 810000 lane count 4
[07:43:21] [PASSED] Link rate 810000 lane count 2
[07:43:21] [PASSED] Link rate 810000 lane count 1
[07:43:21] [PASSED] Link rate 540000 lane count 4
[07:43:21] [PASSED] Link rate 540000 lane count 2
[07:43:21] [PASSED] Link rate 540000 lane count 1
[07:43:21] [PASSED] Link rate 270000 lane count 4
[07:43:21] [PASSED] Link rate 270000 lane count 2
[07:43:21] [PASSED] Link rate 270000 lane count 1
[07:43:21] [PASSED] Link rate 162000 lane count 4
[07:43:21] [PASSED] Link rate 162000 lane count 2
[07:43:21] [PASSED] Link rate 162000 lane count 1
[07:43:21] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[07:43:21] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[07:43:21] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[07:43:21] [PASSED] DP_POWER_UP_PHY with port number
[07:43:21] [PASSED] DP_POWER_DOWN_PHY with port number
[07:43:21] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[07:43:21] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[07:43:21] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[07:43:21] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[07:43:21] [PASSED] DP_QUERY_PAYLOAD with port number
[07:43:21] [PASSED] DP_QUERY_PAYLOAD with VCPI
[07:43:21] [PASSED] DP_REMOTE_DPCD_READ with port number
[07:43:21] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[07:43:21] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[07:43:21] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[07:43:21] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[07:43:21] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[07:43:21] [PASSED] DP_REMOTE_I2C_READ with port number
[07:43:21] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[07:43:21] [PASSED] DP_REMOTE_I2C_READ with transactions array
[07:43:21] [PASSED] DP_REMOTE_I2C_WRITE with port number
[07:43:21] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[07:43:21] [PASSED] DP_REMOTE_I2C_WRITE with data array
[07:43:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[07:43:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[07:43:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[07:43:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[07:43:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[07:43:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[07:43:21] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[07:43:21] ================ [PASSED] drm_dp_mst_helper ================
[07:43:21] ================== drm_exec (7 subtests) ===================
[07:43:21] [PASSED] sanitycheck
[07:43:21] [PASSED] test_lock
[07:43:21] [PASSED] test_lock_unlock
[07:43:21] [PASSED] test_duplicates
[07:43:21] [PASSED] test_prepare
[07:43:21] [PASSED] test_prepare_array
[07:43:21] [PASSED] test_multiple_loops
[07:43:21] ==================== [PASSED] drm_exec =====================
[07:43:21] =========== drm_format_helper_test (17 subtests) ===========
[07:43:21] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[07:43:21] [PASSED] single_pixel_source_buffer
[07:43:21] [PASSED] single_pixel_clip_rectangle
[07:43:21] [PASSED] well_known_colors
[07:43:21] [PASSED] destination_pitch
[07:43:21] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[07:43:21] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[07:43:21] [PASSED] single_pixel_source_buffer
[07:43:21] [PASSED] single_pixel_clip_rectangle
[07:43:21] [PASSED] well_known_colors
[07:43:21] [PASSED] destination_pitch
[07:43:21] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[07:43:21] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[07:43:21] [PASSED] single_pixel_source_buffer
[07:43:21] [PASSED] single_pixel_clip_rectangle
[07:43:21] [PASSED] well_known_colors
[07:43:21] [PASSED] destination_pitch
[07:43:21] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[07:43:21] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[07:43:21] [PASSED] single_pixel_source_buffer
[07:43:21] [PASSED] single_pixel_clip_rectangle
[07:43:21] [PASSED] well_known_colors
[07:43:21] [PASSED] destination_pitch
[07:43:21] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[07:43:21] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[07:43:21] [PASSED] single_pixel_source_buffer
[07:43:21] [PASSED] single_pixel_clip_rectangle
[07:43:21] [PASSED] well_known_colors
[07:43:21] [PASSED] destination_pitch
[07:43:21] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[07:43:21] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[07:43:21] [PASSED] single_pixel_source_buffer
[07:43:21] [PASSED] single_pixel_clip_rectangle
[07:43:21] [PASSED] well_known_colors
[07:43:21] [PASSED] destination_pitch
[07:43:21] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[07:43:21] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[07:43:21] [PASSED] single_pixel_source_buffer
[07:43:21] [PASSED] single_pixel_clip_rectangle
[07:43:21] [PASSED] well_known_colors
[07:43:21] [PASSED] destination_pitch
[07:43:21] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[07:43:21] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[07:43:21] [PASSED] single_pixel_source_buffer
[07:43:21] [PASSED] single_pixel_clip_rectangle
[07:43:21] [PASSED] well_known_colors
[07:43:21] [PASSED] destination_pitch
[07:43:21] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[07:43:21] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[07:43:21] [PASSED] single_pixel_source_buffer
[07:43:21] [PASSED] single_pixel_clip_rectangle
[07:43:21] [PASSED] well_known_colors
[07:43:21] [PASSED] destination_pitch
[07:43:21] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[07:43:21] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[07:43:21] [PASSED] single_pixel_source_buffer
[07:43:21] [PASSED] single_pixel_clip_rectangle
[07:43:21] [PASSED] well_known_colors
[07:43:21] [PASSED] destination_pitch
[07:43:21] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[07:43:21] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[07:43:21] [PASSED] single_pixel_source_buffer
[07:43:21] [PASSED] single_pixel_clip_rectangle
[07:43:21] [PASSED] well_known_colors
[07:43:21] [PASSED] destination_pitch
[07:43:21] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[07:43:21] ============== drm_test_fb_xrgb8888_to_mono ===============
[07:43:21] [PASSED] single_pixel_source_buffer
[07:43:21] [PASSED] single_pixel_clip_rectangle
[07:43:21] [PASSED] well_known_colors
[07:43:21] [PASSED] destination_pitch
[07:43:21] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[07:43:21] ==================== drm_test_fb_swab =====================
[07:43:21] [PASSED] single_pixel_source_buffer
[07:43:21] [PASSED] single_pixel_clip_rectangle
[07:43:21] [PASSED] well_known_colors
[07:43:21] [PASSED] destination_pitch
[07:43:21] ================ [PASSED] drm_test_fb_swab =================
[07:43:21] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[07:43:21] [PASSED] single_pixel_source_buffer
[07:43:21] [PASSED] single_pixel_clip_rectangle
[07:43:21] [PASSED] well_known_colors
[07:43:21] [PASSED] destination_pitch
[07:43:21] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[07:43:21] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[07:43:21] [PASSED] single_pixel_source_buffer
[07:43:21] [PASSED] single_pixel_clip_rectangle
[07:43:21] [PASSED] well_known_colors
[07:43:21] [PASSED] destination_pitch
[07:43:21] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[07:43:21] ================= drm_test_fb_clip_offset =================
[07:43:21] [PASSED] pass through
[07:43:21] [PASSED] horizontal offset
[07:43:21] [PASSED] vertical offset
[07:43:21] [PASSED] horizontal and vertical offset
[07:43:21] [PASSED] horizontal offset (custom pitch)
[07:43:21] [PASSED] vertical offset (custom pitch)
[07:43:21] [PASSED] horizontal and vertical offset (custom pitch)
[07:43:21] ============= [PASSED] drm_test_fb_clip_offset =============
[07:43:21] =================== drm_test_fb_memcpy ====================
[07:43:21] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[07:43:21] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[07:43:21] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[07:43:21] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[07:43:21] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[07:43:21] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[07:43:21] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[07:43:21] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[07:43:21] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[07:43:21] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[07:43:21] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[07:43:21] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[07:43:21] =============== [PASSED] drm_test_fb_memcpy ================
[07:43:21] ============= [PASSED] drm_format_helper_test ==============
[07:43:21] ================= drm_format (18 subtests) =================
[07:43:21] [PASSED] drm_test_format_block_width_invalid
[07:43:21] [PASSED] drm_test_format_block_width_one_plane
[07:43:21] [PASSED] drm_test_format_block_width_two_plane
[07:43:21] [PASSED] drm_test_format_block_width_three_plane
[07:43:21] [PASSED] drm_test_format_block_width_tiled
[07:43:21] [PASSED] drm_test_format_block_height_invalid
[07:43:21] [PASSED] drm_test_format_block_height_one_plane
[07:43:21] [PASSED] drm_test_format_block_height_two_plane
[07:43:21] [PASSED] drm_test_format_block_height_three_plane
[07:43:21] [PASSED] drm_test_format_block_height_tiled
[07:43:21] [PASSED] drm_test_format_min_pitch_invalid
[07:43:21] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[07:43:21] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[07:43:21] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[07:43:21] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[07:43:21] [PASSED] drm_test_format_min_pitch_two_plane
[07:43:21] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[07:43:21] [PASSED] drm_test_format_min_pitch_tiled
[07:43:21] =================== [PASSED] drm_format ====================
[07:43:21] ============== drm_framebuffer (10 subtests) ===============
[07:43:21] ========== drm_test_framebuffer_check_src_coords ==========
[07:43:21] [PASSED] Success: source fits into fb
[07:43:21] [PASSED] Fail: overflowing fb with x-axis coordinate
[07:43:21] [PASSED] Fail: overflowing fb with y-axis coordinate
[07:43:21] [PASSED] Fail: overflowing fb with source width
[07:43:21] [PASSED] Fail: overflowing fb with source height
[07:43:21] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[07:43:21] [PASSED] drm_test_framebuffer_cleanup
[07:43:21] =============== drm_test_framebuffer_create ===============
[07:43:21] [PASSED] ABGR8888 normal sizes
[07:43:21] [PASSED] ABGR8888 max sizes
[07:43:21] [PASSED] ABGR8888 pitch greater than min required
[07:43:21] [PASSED] ABGR8888 pitch less than min required
[07:43:21] [PASSED] ABGR8888 Invalid width
[07:43:21] [PASSED] ABGR8888 Invalid buffer handle
[07:43:21] [PASSED] No pixel format
[07:43:21] [PASSED] ABGR8888 Width 0
[07:43:21] [PASSED] ABGR8888 Height 0
[07:43:21] [PASSED] ABGR8888 Out of bound height * pitch combination
[07:43:21] [PASSED] ABGR8888 Large buffer offset
[07:43:21] [PASSED] ABGR8888 Buffer offset for inexistent plane
[07:43:21] [PASSED] ABGR8888 Invalid flag
[07:43:21] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[07:43:21] [PASSED] ABGR8888 Valid buffer modifier
[07:43:21] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[07:43:21] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[07:43:21] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[07:43:21] [PASSED] NV12 Normal sizes
[07:43:21] [PASSED] NV12 Max sizes
[07:43:21] [PASSED] NV12 Invalid pitch
[07:43:21] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[07:43:21] [PASSED] NV12 different modifier per-plane
[07:43:21] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[07:43:21] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[07:43:21] [PASSED] NV12 Modifier for inexistent plane
[07:43:21] [PASSED] NV12 Handle for inexistent plane
[07:43:21] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[07:43:21] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[07:43:21] [PASSED] YVU420 Normal sizes
[07:43:21] [PASSED] YVU420 Max sizes
[07:43:21] [PASSED] YVU420 Invalid pitch
[07:43:21] [PASSED] YVU420 Different pitches
[07:43:21] [PASSED] YVU420 Different buffer offsets/pitches
[07:43:21] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[07:43:21] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[07:43:21] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[07:43:21] [PASSED] YVU420 Valid modifier
[07:43:21] [PASSED] YVU420 Different modifiers per plane
[07:43:21] [PASSED] YVU420 Modifier for inexistent plane
[07:43:21] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[07:43:21] [PASSED] X0L2 Normal sizes
[07:43:21] [PASSED] X0L2 Max sizes
[07:43:21] [PASSED] X0L2 Invalid pitch
[07:43:21] [PASSED] X0L2 Pitch greater than minimum required
[07:43:21] [PASSED] X0L2 Handle for inexistent plane
[07:43:21] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[07:43:21] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[07:43:21] [PASSED] X0L2 Valid modifier
[07:43:21] [PASSED] X0L2 Modifier for inexistent plane
[07:43:21] =========== [PASSED] drm_test_framebuffer_create ===========
[07:43:21] [PASSED] drm_test_framebuffer_free
[07:43:21] [PASSED] drm_test_framebuffer_init
[07:43:21] [PASSED] drm_test_framebuffer_init_bad_format
[07:43:21] [PASSED] drm_test_framebuffer_init_dev_mismatch
[07:43:21] [PASSED] drm_test_framebuffer_lookup
[07:43:21] [PASSED] drm_test_framebuffer_lookup_inexistent
[07:43:21] [PASSED] drm_test_framebuffer_modifiers_not_supported
[07:43:21] ================= [PASSED] drm_framebuffer =================
[07:43:21] ================ drm_gem_shmem (8 subtests) ================
[07:43:21] [PASSED] drm_gem_shmem_test_obj_create
[07:43:21] [PASSED] drm_gem_shmem_test_obj_create_private
[07:43:21] [PASSED] drm_gem_shmem_test_pin_pages
[07:43:21] [PASSED] drm_gem_shmem_test_vmap
[07:43:21] [PASSED] drm_gem_shmem_test_get_sg_table
[07:43:21] [PASSED] drm_gem_shmem_test_get_pages_sgt
[07:43:21] [PASSED] drm_gem_shmem_test_madvise
[07:43:21] [PASSED] drm_gem_shmem_test_purge
[07:43:21] ================== [PASSED] drm_gem_shmem ==================
[07:43:21] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[07:43:21] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[07:43:21] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[07:43:21] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[07:43:21] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[07:43:21] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[07:43:21] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[07:43:21] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[07:43:21] [PASSED] Automatic
[07:43:21] [PASSED] Full
[07:43:21] [PASSED] Limited 16:235
[07:43:21] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[07:43:21] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[07:43:21] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[07:43:21] [PASSED] drm_test_check_disable_connector
[07:43:21] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[07:43:21] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[07:43:21] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[07:43:21] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[07:43:21] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[07:43:21] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[07:43:21] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[07:43:21] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[07:43:21] [PASSED] drm_test_check_output_bpc_dvi
[07:43:21] [PASSED] drm_test_check_output_bpc_format_vic_1
[07:43:21] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[07:43:21] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[07:43:21] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[07:43:21] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[07:43:21] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[07:43:21] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[07:43:21] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[07:43:21] ============ drm_test_check_hdmi_color_format =============
[07:43:21] [PASSED] AUTO -> RGB
[07:43:21] [PASSED] YCBCR422 -> YUV422
[07:43:21] [PASSED] YCBCR420 -> YUV420
[07:43:21] [PASSED] YCBCR444 -> YUV444
[07:43:21] [PASSED] RGB -> RGB
[07:43:21] ======== [PASSED] drm_test_check_hdmi_color_format =========
[07:43:21] ======== drm_test_check_hdmi_color_format_420_only ========
[07:43:21] [PASSED] RGB should fail
[07:43:21] [PASSED] YUV444 should fail
[07:43:21] [PASSED] YUV422 should fail
[07:43:21] [PASSED] YUV420 should work
[07:43:21] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[07:43:21] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[07:43:21] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[07:43:21] [PASSED] drm_test_check_broadcast_rgb_value
[07:43:21] [PASSED] drm_test_check_bpc_8_value
[07:43:21] [PASSED] drm_test_check_bpc_10_value
[07:43:21] [PASSED] drm_test_check_bpc_12_value
[07:43:21] [PASSED] drm_test_check_format_value
[07:43:21] [PASSED] drm_test_check_tmds_char_value
[07:43:21] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[07:43:21] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[07:43:21] [PASSED] drm_test_check_mode_valid
[07:43:21] [PASSED] drm_test_check_mode_valid_reject
[07:43:21] [PASSED] drm_test_check_mode_valid_reject_rate
[07:43:21] [PASSED] drm_test_check_mode_valid_reject_max_clock
[07:43:21] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[07:43:21] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[07:43:21] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[07:43:21] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[07:43:21] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[07:43:21] [PASSED] drm_test_check_infoframes
[07:43:21] [PASSED] drm_test_check_reject_avi_infoframe
[07:43:21] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[07:43:21] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[07:43:21] [PASSED] drm_test_check_reject_audio_infoframe
[07:43:21] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[07:43:21] ================= drm_managed (2 subtests) =================
[07:43:21] [PASSED] drm_test_managed_release_action
[07:43:21] [PASSED] drm_test_managed_run_action
[07:43:21] =================== [PASSED] drm_managed ===================
[07:43:21] =================== drm_mm (6 subtests) ====================
[07:43:21] [PASSED] drm_test_mm_init
[07:43:21] [PASSED] drm_test_mm_debug
[07:43:21] [PASSED] drm_test_mm_align32
[07:43:21] [PASSED] drm_test_mm_align64
[07:43:21] [PASSED] drm_test_mm_lowest
[07:43:21] [PASSED] drm_test_mm_highest
[07:43:21] ===================== [PASSED] drm_mm ======================
[07:43:21] ============= drm_modes_analog_tv (5 subtests) =============
[07:43:21] [PASSED] drm_test_modes_analog_tv_mono_576i
[07:43:21] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[07:43:21] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[07:43:21] [PASSED] drm_test_modes_analog_tv_pal_576i
[07:43:21] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[07:43:21] =============== [PASSED] drm_modes_analog_tv ===============
[07:43:21] ============== drm_plane_helper (2 subtests) ===============
[07:43:21] =============== drm_test_check_plane_state ================
[07:43:21] [PASSED] clipping_simple
[07:43:21] [PASSED] clipping_rotate_reflect
[07:43:21] [PASSED] positioning_simple
[07:43:21] [PASSED] upscaling
[07:43:21] [PASSED] downscaling
[07:43:21] [PASSED] rounding1
[07:43:21] [PASSED] rounding2
[07:43:21] [PASSED] rounding3
[07:43:21] [PASSED] rounding4
[07:43:21] =========== [PASSED] drm_test_check_plane_state ============
[07:43:21] =========== drm_test_check_invalid_plane_state ============
[07:43:21] [PASSED] positioning_invalid
[07:43:21] [PASSED] upscaling_invalid
[07:43:21] [PASSED] downscaling_invalid
[07:43:21] ======= [PASSED] drm_test_check_invalid_plane_state ========
[07:43:21] ================ [PASSED] drm_plane_helper =================
[07:43:21] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[07:43:21] ====== drm_test_connector_helper_tv_get_modes_check =======
[07:43:21] [PASSED] None
[07:43:21] [PASSED] PAL
[07:43:21] [PASSED] NTSC
[07:43:21] [PASSED] Both, NTSC Default
[07:43:21] [PASSED] Both, PAL Default
[07:43:21] [PASSED] Both, NTSC Default, with PAL on command-line
[07:43:21] [PASSED] Both, PAL Default, with NTSC on command-line
[07:43:21] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[07:43:21] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[07:43:21] ================== drm_rect (9 subtests) ===================
[07:43:21] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[07:43:21] [PASSED] drm_test_rect_clip_scaled_not_clipped
[07:43:21] [PASSED] drm_test_rect_clip_scaled_clipped
[07:43:21] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[07:43:21] ================= drm_test_rect_intersect =================
[07:43:21] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[07:43:21] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[07:43:21] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[07:43:21] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[07:43:21] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[07:43:21] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[07:43:21] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[07:43:21] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[07:43:21] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[07:43:21] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[07:43:21] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[07:43:21] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[07:43:21] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[07:43:21] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[07:43:21] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[07:43:21] ============= [PASSED] drm_test_rect_intersect =============
[07:43:21] ================ drm_test_rect_calc_hscale ================
[07:43:21] [PASSED] normal use
[07:43:21] [PASSED] out of max range
[07:43:21] [PASSED] out of min range
[07:43:21] [PASSED] zero dst
[07:43:21] [PASSED] negative src
[07:43:21] [PASSED] negative dst
[07:43:21] ============ [PASSED] drm_test_rect_calc_hscale ============
[07:43:21] ================ drm_test_rect_calc_vscale ================
[07:43:21] [PASSED] normal use
[07:43:21] [PASSED] out of max range
[07:43:21] [PASSED] out of min range
[07:43:21] [PASSED] zero dst
[07:43:21] [PASSED] negative src
[07:43:21] [PASSED] negative dst
[07:43:21] ============ [PASSED] drm_test_rect_calc_vscale ============
[07:43:21] ================== drm_test_rect_rotate ===================
[07:43:21] [PASSED] reflect-x
[07:43:21] [PASSED] reflect-y
[07:43:21] [PASSED] rotate-0
[07:43:21] [PASSED] rotate-90
[07:43:21] [PASSED] rotate-180
[07:43:21] [PASSED] rotate-270
[07:43:21] ============== [PASSED] drm_test_rect_rotate ===============
[07:43:21] ================ drm_test_rect_rotate_inv =================
[07:43:21] [PASSED] reflect-x
[07:43:21] [PASSED] reflect-y
[07:43:21] [PASSED] rotate-0
[07:43:21] [PASSED] rotate-90
[07:43:21] [PASSED] rotate-180
[07:43:21] [PASSED] rotate-270
[07:43:21] ============ [PASSED] drm_test_rect_rotate_inv =============
[07:43:21] ==================== [PASSED] drm_rect =====================
[07:43:21] ============ drm_sysfb_modeset_test (1 subtest) ============
[07:43:21] ============ drm_test_sysfb_build_fourcc_list =============
[07:43:21] [PASSED] no native formats
[07:43:21] [PASSED] XRGB8888 as native format
[07:43:21] [PASSED] remove duplicates
[07:43:21] [PASSED] convert alpha formats
[07:43:21] [PASSED] random formats
[07:43:21] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[07:43:21] ============= [PASSED] drm_sysfb_modeset_test ==============
[07:43:21] ================== drm_fixp (2 subtests) ===================
[07:43:21] [PASSED] drm_test_int2fixp
[07:43:21] [PASSED] drm_test_sm2fixp
[07:43:21] ==================== [PASSED] drm_fixp =====================
[07:43:21] ============================================================
[07:43:21] Testing complete. Ran 639 tests: passed: 639
[07:43:21] Elapsed time: 26.528s total, 1.839s configuring, 24.521s building, 0.149s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[07:43:22] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:43:23] 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
[07:43:33] Starting KUnit Kernel (1/1)...
[07:43:33] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:43:33] ================= ttm_device (5 subtests) ==================
[07:43:33] [PASSED] ttm_device_init_basic
[07:43:33] [PASSED] ttm_device_init_multiple
[07:43:33] [PASSED] ttm_device_fini_basic
[07:43:33] [PASSED] ttm_device_init_no_vma_man
[07:43:33] ================== ttm_device_init_pools ==================
[07:43:33] [PASSED] No DMA allocations, no DMA32 required
[07:43:33] [PASSED] DMA allocations, DMA32 required
[07:43:33] [PASSED] No DMA allocations, DMA32 required
[07:43:33] [PASSED] DMA allocations, no DMA32 required
[07:43:33] ============== [PASSED] ttm_device_init_pools ==============
[07:43:33] =================== [PASSED] ttm_device ====================
[07:43:33] ================== ttm_pool (8 subtests) ===================
[07:43:33] ================== ttm_pool_alloc_basic ===================
[07:43:33] [PASSED] One page
[07:43:33] [PASSED] More than one page
[07:43:33] [PASSED] Above the allocation limit
[07:43:33] [PASSED] One page, with coherent DMA mappings enabled
[07:43:33] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[07:43:33] ============== [PASSED] ttm_pool_alloc_basic ===============
[07:43:33] ============== ttm_pool_alloc_basic_dma_addr ==============
[07:43:33] [PASSED] One page
[07:43:33] [PASSED] More than one page
[07:43:33] [PASSED] Above the allocation limit
[07:43:33] [PASSED] One page, with coherent DMA mappings enabled
[07:43:33] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[07:43:33] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[07:43:33] [PASSED] ttm_pool_alloc_order_caching_match
[07:43:33] [PASSED] ttm_pool_alloc_caching_mismatch
[07:43:33] [PASSED] ttm_pool_alloc_order_mismatch
[07:43:33] [PASSED] ttm_pool_free_dma_alloc
[07:43:33] [PASSED] ttm_pool_free_no_dma_alloc
[07:43:33] [PASSED] ttm_pool_fini_basic
[07:43:33] ==================== [PASSED] ttm_pool =====================
[07:43:33] ================ ttm_resource (8 subtests) =================
[07:43:33] ================= ttm_resource_init_basic =================
[07:43:33] [PASSED] Init resource in TTM_PL_SYSTEM
[07:43:33] [PASSED] Init resource in TTM_PL_VRAM
[07:43:33] [PASSED] Init resource in a private placement
[07:43:33] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[07:43:34] ============= [PASSED] ttm_resource_init_basic =============
[07:43:34] [PASSED] ttm_resource_init_pinned
[07:43:34] [PASSED] ttm_resource_fini_basic
[07:43:34] [PASSED] ttm_resource_manager_init_basic
[07:43:34] [PASSED] ttm_resource_manager_usage_basic
[07:43:34] [PASSED] ttm_resource_manager_set_used_basic
[07:43:34] [PASSED] ttm_sys_man_alloc_basic
[07:43:34] [PASSED] ttm_sys_man_free_basic
[07:43:34] ================== [PASSED] ttm_resource ===================
[07:43:34] =================== ttm_tt (15 subtests) ===================
[07:43:34] ==================== ttm_tt_init_basic ====================
[07:43:34] [PASSED] Page-aligned size
[07:43:34] [PASSED] Extra pages requested
[07:43:34] ================ [PASSED] ttm_tt_init_basic ================
[07:43:34] [PASSED] ttm_tt_init_misaligned
[07:43:34] [PASSED] ttm_tt_fini_basic
[07:43:34] [PASSED] ttm_tt_fini_sg
[07:43:34] [PASSED] ttm_tt_fini_shmem
[07:43:34] [PASSED] ttm_tt_create_basic
[07:43:34] [PASSED] ttm_tt_create_invalid_bo_type
[07:43:34] [PASSED] ttm_tt_create_ttm_exists
[07:43:34] [PASSED] ttm_tt_create_failed
[07:43:34] [PASSED] ttm_tt_destroy_basic
[07:43:34] [PASSED] ttm_tt_populate_null_ttm
[07:43:34] [PASSED] ttm_tt_populate_populated_ttm
[07:43:34] [PASSED] ttm_tt_unpopulate_basic
[07:43:34] [PASSED] ttm_tt_unpopulate_empty_ttm
[07:43:34] [PASSED] ttm_tt_swapin_basic
[07:43:34] ===================== [PASSED] ttm_tt ======================
[07:43:34] =================== ttm_bo (14 subtests) ===================
[07:43:34] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[07:43:34] [PASSED] Cannot be interrupted and sleeps
[07:43:34] [PASSED] Cannot be interrupted, locks straight away
[07:43:34] [PASSED] Can be interrupted, sleeps
[07:43:34] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[07:43:34] [PASSED] ttm_bo_reserve_locked_no_sleep
[07:43:34] [PASSED] ttm_bo_reserve_no_wait_ticket
[07:43:34] [PASSED] ttm_bo_reserve_double_resv
[07:43:34] [PASSED] ttm_bo_reserve_interrupted
[07:43:34] [PASSED] ttm_bo_reserve_deadlock
[07:43:34] [PASSED] ttm_bo_unreserve_basic
[07:43:34] [PASSED] ttm_bo_unreserve_pinned
[07:43:34] [PASSED] ttm_bo_unreserve_bulk
[07:43:34] [PASSED] ttm_bo_fini_basic
[07:43:34] [PASSED] ttm_bo_fini_shared_resv
[07:43:34] [PASSED] ttm_bo_pin_basic
[07:43:34] [PASSED] ttm_bo_pin_unpin_resource
[07:43:34] [PASSED] ttm_bo_multiple_pin_one_unpin
[07:43:34] ===================== [PASSED] ttm_bo ======================
[07:43:34] ============== ttm_bo_validate (22 subtests) ===============
[07:43:34] ============== ttm_bo_init_reserved_sys_man ===============
[07:43:34] [PASSED] Buffer object for userspace
[07:43:34] [PASSED] Kernel buffer object
[07:43:34] [PASSED] Shared buffer object
[07:43:34] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[07:43:34] ============== ttm_bo_init_reserved_mock_man ==============
[07:43:34] [PASSED] Buffer object for userspace
[07:43:34] [PASSED] Kernel buffer object
[07:43:34] [PASSED] Shared buffer object
[07:43:34] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[07:43:34] [PASSED] ttm_bo_init_reserved_resv
[07:43:34] ================== ttm_bo_validate_basic ==================
[07:43:34] [PASSED] Buffer object for userspace
[07:43:34] [PASSED] Kernel buffer object
[07:43:34] [PASSED] Shared buffer object
[07:43:34] ============== [PASSED] ttm_bo_validate_basic ==============
[07:43:34] [PASSED] ttm_bo_validate_invalid_placement
[07:43:34] ============= ttm_bo_validate_same_placement ==============
[07:43:34] [PASSED] System manager
[07:43:34] [PASSED] VRAM manager
[07:43:34] ========= [PASSED] ttm_bo_validate_same_placement ==========
[07:43:34] [PASSED] ttm_bo_validate_failed_alloc
[07:43:34] [PASSED] ttm_bo_validate_pinned
[07:43:34] [PASSED] ttm_bo_validate_busy_placement
[07:43:34] ================ ttm_bo_validate_multihop =================
[07:43:34] [PASSED] Buffer object for userspace
[07:43:34] [PASSED] Kernel buffer object
[07:43:34] [PASSED] Shared buffer object
[07:43:34] ============ [PASSED] ttm_bo_validate_multihop =============
[07:43:34] ========== ttm_bo_validate_no_placement_signaled ==========
[07:43:34] [PASSED] Buffer object in system domain, no page vector
[07:43:34] [PASSED] Buffer object in system domain with an existing page vector
[07:43:34] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[07:43:34] ======== ttm_bo_validate_no_placement_not_signaled ========
[07:43:34] [PASSED] Buffer object for userspace
[07:43:34] [PASSED] Kernel buffer object
[07:43:34] [PASSED] Shared buffer object
[07:43:34] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[07:43:34] [PASSED] ttm_bo_validate_move_fence_signaled
[07:43:34] ========= ttm_bo_validate_move_fence_not_signaled =========
[07:43:34] [PASSED] Waits for GPU
[07:43:34] [PASSED] Tries to lock straight away
[07:43:34] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[07:43:34] [PASSED] ttm_bo_validate_swapout
[07:43:34] [PASSED] ttm_bo_validate_happy_evict
[07:43:34] [PASSED] ttm_bo_validate_all_pinned_evict
[07:43:34] [PASSED] ttm_bo_validate_allowed_only_evict
[07:43:34] [PASSED] ttm_bo_validate_deleted_evict
[07:43:34] [PASSED] ttm_bo_validate_busy_domain_evict
[07:43:34] [PASSED] ttm_bo_validate_evict_gutting
[07:43:34] [PASSED] ttm_bo_validate_recrusive_evict
[07:43:34] ================= [PASSED] ttm_bo_validate =================
[07:43:34] ============================================================
[07:43:34] Testing complete. Ran 102 tests: passed: 102
[07:43:34] Elapsed time: 12.012s total, 1.837s configuring, 9.960s building, 0.183s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 37+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe: Add and use more KLV helpers (rev7)
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (26 preceding siblings ...)
2026-07-11 7:43 ` ✓ CI.KUnit: success " Patchwork
@ 2026-07-11 8:18 ` Patchwork
2026-07-11 11:12 ` ✓ Xe.CI.FULL: " Patchwork
28 siblings, 0 replies; 37+ messages in thread
From: Patchwork @ 2026-07-11 8:18 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 866 bytes --]
== Series Details ==
Series: drm/xe: Add and use more KLV helpers (rev7)
URL : https://patchwork.freedesktop.org/series/169511/
State : success
== Summary ==
CI Bug Log - changes from xe-5386-7bb9a26014f9ba1b2cb1300252d1eeb83f169c06_BAT -> xe-pw-169511v7_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-5386-7bb9a26014f9ba1b2cb1300252d1eeb83f169c06 -> xe-pw-169511v7
IGT_9002: 9002
xe-5386-7bb9a26014f9ba1b2cb1300252d1eeb83f169c06: 7bb9a26014f9ba1b2cb1300252d1eeb83f169c06
xe-pw-169511v7: 169511v7
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v7/index.html
[-- Attachment #2: Type: text/html, Size: 1414 bytes --]
^ permalink raw reply [flat|nested] 37+ messages in thread
* ✓ Xe.CI.FULL: success for drm/xe: Add and use more KLV helpers (rev7)
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
` (27 preceding siblings ...)
2026-07-11 8:18 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-07-11 11:12 ` Patchwork
28 siblings, 0 replies; 37+ messages in thread
From: Patchwork @ 2026-07-11 11:12 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 10109 bytes --]
== Series Details ==
Series: drm/xe: Add and use more KLV helpers (rev7)
URL : https://patchwork.freedesktop.org/series/169511/
State : success
== Summary ==
CI Bug Log - changes from xe-5386-7bb9a26014f9ba1b2cb1300252d1eeb83f169c06_FULL -> xe-pw-169511v7_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-169511v7_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotrebind:
- shard-bmg: [PASS][1] -> [ABORT][2] ([Intel XE#8007]) +2 other tests abort
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5386-7bb9a26014f9ba1b2cb1300252d1eeb83f169c06/shard-bmg-9/igt@core_hotunplug@hotrebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v7/shard-bmg-7/igt@core_hotunplug@hotrebind.html
* igt@kms_bw@connected-linear-tiling-1-displays-target-3840x2160p:
- shard-bmg: [PASS][3] -> [INCOMPLETE][4] ([Intel XE#6652] / [Intel XE#6819])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5386-7bb9a26014f9ba1b2cb1300252d1eeb83f169c06/shard-bmg-7/igt@kms_bw@connected-linear-tiling-1-displays-target-3840x2160p.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v7/shard-bmg-3/igt@kms_bw@connected-linear-tiling-1-displays-target-3840x2160p.html
* igt@kms_flip@flip-vs-suspend:
- shard-lnl: [PASS][5] -> [INCOMPLETE][6] ([Intel XE#2597] / [Intel XE#8488]) +1 other test incomplete
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5386-7bb9a26014f9ba1b2cb1300252d1eeb83f169c06/shard-lnl-3/igt@kms_flip@flip-vs-suspend.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v7/shard-lnl-6/igt@kms_flip@flip-vs-suspend.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2311]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v7/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2313]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v7/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@xe_exec_reset@long-spin-many-preempt-media:
- shard-bmg: [PASS][9] -> [FAIL][10] ([Intel XE#7956])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5386-7bb9a26014f9ba1b2cb1300252d1eeb83f169c06/shard-bmg-4/igt@xe_exec_reset@long-spin-many-preempt-media.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v7/shard-bmg-5/igt@xe_exec_reset@long-spin-many-preempt-media.html
* igt@xe_exec_system_allocator@many-malloc-mlock-nomemset:
- shard-bmg: [PASS][11] -> [TIMEOUT][12] ([Intel XE#8447])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5386-7bb9a26014f9ba1b2cb1300252d1eeb83f169c06/shard-bmg-4/igt@xe_exec_system_allocator@many-malloc-mlock-nomemset.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v7/shard-bmg-8/igt@xe_exec_system_allocator@many-malloc-mlock-nomemset.html
* igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#8378])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v7/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate-race.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-bmg: [PASS][14] -> [FAIL][15] ([Intel XE#7992])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5386-7bb9a26014f9ba1b2cb1300252d1eeb83f169c06/shard-bmg-9/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v7/shard-bmg-10/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
#### Possible fixes ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][16] ([Intel XE#7084] / [Intel XE#8150]) -> [PASS][17] +1 other test pass
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5386-7bb9a26014f9ba1b2cb1300252d1eeb83f169c06/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v7/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3:
- shard-bmg: [FAIL][18] ([Intel XE#3321]) -> [PASS][19] +1 other test pass
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5386-7bb9a26014f9ba1b2cb1300252d1eeb83f169c06/shard-bmg-9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v7/shard-bmg-10/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [FAIL][20] ([Intel XE#301]) -> [PASS][21] +1 other test pass
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5386-7bb9a26014f9ba1b2cb1300252d1eeb83f169c06/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v7/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-bmg: [FAIL][22] ([Intel XE#5408] / [Intel XE#6266]) -> [PASS][23]
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5386-7bb9a26014f9ba1b2cb1300252d1eeb83f169c06/shard-bmg-6/igt@kms_flip@wf_vblank-ts-check.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v7/shard-bmg-8/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip@wf_vblank-ts-check@b-hdmi-a3:
- shard-bmg: [FAIL][24] ([Intel XE#6266]) -> [PASS][25]
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5386-7bb9a26014f9ba1b2cb1300252d1eeb83f169c06/shard-bmg-6/igt@kms_flip@wf_vblank-ts-check@b-hdmi-a3.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v7/shard-bmg-8/igt@kms_flip@wf_vblank-ts-check@b-hdmi-a3.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][26] ([Intel XE#1503]) -> [PASS][27]
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5386-7bb9a26014f9ba1b2cb1300252d1eeb83f169c06/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v7/shard-bmg-8/igt@kms_hdr@invalid-hdr.html
* igt@xe_waitfence@reltime:
- shard-bmg: [FAIL][28] ([Intel XE#8017]) -> [PASS][29]
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5386-7bb9a26014f9ba1b2cb1300252d1eeb83f169c06/shard-bmg-3/igt@xe_waitfence@reltime.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v7/shard-bmg-4/igt@xe_waitfence@reltime.html
#### Warnings ####
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-lnl: [SKIP][30] ([Intel XE#2321] / [Intel XE#7355]) -> [ABORT][31] ([Intel XE#8007])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5386-7bb9a26014f9ba1b2cb1300252d1eeb83f169c06/shard-lnl-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v7/shard-lnl-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][32] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][33] ([Intel XE#1729] / [Intel XE#7424])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5386-7bb9a26014f9ba1b2cb1300252d1eeb83f169c06/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v7/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7956]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7956
[Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8017]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8017
[Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8447
[Intel XE#8488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8488
Build changes
-------------
* Linux: xe-5386-7bb9a26014f9ba1b2cb1300252d1eeb83f169c06 -> xe-pw-169511v7
IGT_9002: 9002
xe-5386-7bb9a26014f9ba1b2cb1300252d1eeb83f169c06: 7bb9a26014f9ba1b2cb1300252d1eeb83f169c06
xe-pw-169511v7: 169511v7
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169511v7/index.html
[-- Attachment #2: Type: text/html, Size: 11159 bytes --]
^ permalink raw reply [flat|nested] 37+ messages in thread
end of thread, other threads:[~2026-07-11 11:12 UTC | newest]
Thread overview: 37+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-07 22:08 [PATCH v2 00/13] drm/xe: Add and use more KLV helpers Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 01/13] drm/xe/guc: Allow to print single KLV Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 02/13] drm/xe/guc: Prepare to print group KLVs Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 03/13] drm/xe/guc: Add basic KLV encoding helpers Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 04/13] drm/xe/guc: Add string KLV encoding helper Michal Wajdeczko
2026-07-09 12:51 ` Michał Winiarski
2026-07-07 22:08 ` [PATCH v2 05/13] drm/xe/guc: Add object " Michal Wajdeczko
2026-07-09 12:53 ` Michał Winiarski
2026-07-07 22:08 ` [PATCH v2 06/13] drm/xe/guc: Add KLV parsing helper Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 07/13] drm/xe/guc: Formalize Reserved KLVs Michal Wajdeczko
2026-07-10 17:25 ` [PATCH v3 " Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 08/13] drm/xe/tests: Add GuC KLV helpers basic tests Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 09/13] drm/xe/tests: Add string encoding helper test Michal Wajdeczko
2026-07-08 18:07 ` [PATCH v3 " Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 10/13] drm/xe/tests: Add object " Michal Wajdeczko
2026-07-10 19:59 ` [PATCH v3 " Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 11/13] drm/xe/tests: Add GuC KLV printer test Michal Wajdeczko
2026-07-11 7:36 ` [PATCH v3 " Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 12/13] drm/xe/tests: Add migration packet test Michal Wajdeczko
2026-07-08 18:09 ` [PATCH v3 " Michal Wajdeczko
2026-07-07 22:08 ` [PATCH v2 13/13] drm/xe/pf: Handle migration descriptor using KLV helpers Michal Wajdeczko
2026-07-07 22:16 ` ✗ CI.checkpatch: warning for drm/xe: Add and use more KLV helpers (rev2) Patchwork
2026-07-07 22:18 ` ✓ CI.KUnit: success " Patchwork
2026-07-07 23:04 ` ✓ Xe.CI.BAT: " Patchwork
2026-07-08 0:20 ` ✓ Xe.CI.FULL: " Patchwork
2026-07-08 19:04 ` ✗ CI.checkpatch: warning for drm/xe: Add and use more KLV helpers (rev4) Patchwork
2026-07-08 19:05 ` ✓ CI.KUnit: success " Patchwork
2026-07-08 19:55 ` ✓ Xe.CI.BAT: " Patchwork
2026-07-08 23:56 ` ✓ Xe.CI.FULL: " Patchwork
2026-07-10 17:31 ` ✗ CI.checkpatch: warning for drm/xe: Add and use more KLV helpers (rev5) Patchwork
2026-07-10 17:32 ` ✓ CI.KUnit: success " Patchwork
2026-07-10 18:22 ` ✓ Xe.CI.BAT: " Patchwork
2026-07-11 4:04 ` ✓ Xe.CI.FULL: " Patchwork
2026-07-11 7:42 ` ✗ CI.checkpatch: warning for drm/xe: Add and use more KLV helpers (rev7) Patchwork
2026-07-11 7:43 ` ✓ CI.KUnit: success " Patchwork
2026-07-11 8:18 ` ✓ Xe.CI.BAT: " Patchwork
2026-07-11 11:12 ` ✓ Xe.CI.FULL: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox