* [PATCH v2 0/5] RFC: Add dedicated printk macros for tile and device
@ 2025-09-09 16:59 Michal Wajdeczko
2025-09-09 16:59 ` [PATCH v2 1/5] drm/xe: Keep xe_gt_err() macro definitions together Michal Wajdeczko
` (10 more replies)
0 siblings, 11 replies; 17+ messages in thread
From: Michal Wajdeczko @ 2025-09-09 16:59 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Rodrigo Vivi, Lucas De Marchi
v1: https://patchwork.freedesktop.org/series/153985/#rev1
v2: use uppercase for FMT macro (Rodrigo)
drop verbose debug macros (Lucas, Rodrigo)
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Michal Wajdeczko (5):
drm/xe: Keep xe_gt_err() macro definitions together
drm/xe: Drop "gt_" prefix from xe_gt_WARN() macros
drm/xe: Prepare format for GT-oriented messages in one place
drm/xe: Add dedicated printk macros for tile and device
drm/xe: Use tile-oriented messages in GGTT code
drivers/gpu/drm/xe/xe_ggtt.c | 12 +--
drivers/gpu/drm/xe/xe_gt_printk.h | 34 ++++----
drivers/gpu/drm/xe/xe_printk.h | 129 ++++++++++++++++++++++++++++
drivers/gpu/drm/xe/xe_tile_printk.h | 127 +++++++++++++++++++++++++++
4 files changed, 281 insertions(+), 21 deletions(-)
create mode 100644 drivers/gpu/drm/xe/xe_printk.h
create mode 100644 drivers/gpu/drm/xe/xe_tile_printk.h
--
2.47.1
^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH v2 1/5] drm/xe: Keep xe_gt_err() macro definitions together
2025-09-09 16:59 [PATCH v2 0/5] RFC: Add dedicated printk macros for tile and device Michal Wajdeczko
@ 2025-09-09 16:59 ` Michal Wajdeczko
2025-09-09 16:59 ` [PATCH v2 2/5] drm/xe: Drop "gt_" prefix from xe_gt_WARN() macros Michal Wajdeczko
` (9 subsequent siblings)
10 siblings, 0 replies; 17+ messages in thread
From: Michal Wajdeczko @ 2025-09-09 16:59 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Lucas De Marchi
There is no need to keep them separated. No functional changes.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
drivers/gpu/drm/xe/xe_gt_printk.h | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_gt_printk.h b/drivers/gpu/drm/xe/xe_gt_printk.h
index 11da0228cea7..fd9cba14383a 100644
--- a/drivers/gpu/drm/xe/xe_gt_printk.h
+++ b/drivers/gpu/drm/xe/xe_gt_printk.h
@@ -13,12 +13,15 @@
#define xe_gt_printk(_gt, _level, _fmt, ...) \
drm_##_level(>_to_xe(_gt)->drm, "GT%u: " _fmt, (_gt)->info.id, ##__VA_ARGS__)
-#define xe_gt_err_once(_gt, _fmt, ...) \
- xe_gt_printk((_gt), err_once, _fmt, ##__VA_ARGS__)
-
#define xe_gt_err(_gt, _fmt, ...) \
xe_gt_printk((_gt), err, _fmt, ##__VA_ARGS__)
+#define xe_gt_err_once(_gt, _fmt, ...) \
+ xe_gt_printk((_gt), err_once, _fmt, ##__VA_ARGS__)
+
+#define xe_gt_err_ratelimited(_gt, _fmt, ...) \
+ xe_gt_printk((_gt), err_ratelimited, _fmt, ##__VA_ARGS__)
+
#define xe_gt_warn(_gt, _fmt, ...) \
xe_gt_printk((_gt), warn, _fmt, ##__VA_ARGS__)
@@ -31,9 +34,6 @@
#define xe_gt_dbg(_gt, _fmt, ...) \
xe_gt_printk((_gt), dbg, _fmt, ##__VA_ARGS__)
-#define xe_gt_err_ratelimited(_gt, _fmt, ...) \
- xe_gt_printk((_gt), err_ratelimited, _fmt, ##__VA_ARGS__)
-
#define xe_gt_WARN(_gt, _condition, _fmt, ...) \
drm_WARN(>_to_xe(_gt)->drm, _condition, "GT%u: " _fmt, (_gt)->info.id, ##__VA_ARGS__)
--
2.47.1
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [PATCH v2 2/5] drm/xe: Drop "gt_" prefix from xe_gt_WARN() macros
2025-09-09 16:59 [PATCH v2 0/5] RFC: Add dedicated printk macros for tile and device Michal Wajdeczko
2025-09-09 16:59 ` [PATCH v2 1/5] drm/xe: Keep xe_gt_err() macro definitions together Michal Wajdeczko
@ 2025-09-09 16:59 ` Michal Wajdeczko
2025-09-09 16:59 ` [PATCH v2 3/5] drm/xe: Prepare format for GT-oriented messages in one place Michal Wajdeczko
` (8 subsequent siblings)
10 siblings, 0 replies; 17+ messages in thread
From: Michal Wajdeczko @ 2025-09-09 16:59 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Lucas De Marchi
Those WARN messages will already include GT-specific "GT%u:" prefix
so there is no point to include additional "gt_" prefix.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
drivers/gpu/drm/xe/xe_gt_printk.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_gt_printk.h b/drivers/gpu/drm/xe/xe_gt_printk.h
index fd9cba14383a..f2091c734aba 100644
--- a/drivers/gpu/drm/xe/xe_gt_printk.h
+++ b/drivers/gpu/drm/xe/xe_gt_printk.h
@@ -41,10 +41,10 @@
drm_WARN_ONCE(>_to_xe(_gt)->drm, _condition, "GT%u: " _fmt, (_gt)->info.id, ##__VA_ARGS__)
#define xe_gt_WARN_ON(_gt, _condition) \
- xe_gt_WARN((_gt), _condition, "%s(%s)", "gt_WARN_ON", __stringify(_condition))
+ xe_gt_WARN((_gt), _condition, "%s(%s)", "WARN_ON", __stringify(_condition))
#define xe_gt_WARN_ON_ONCE(_gt, _condition) \
- xe_gt_WARN_ONCE((_gt), _condition, "%s(%s)", "gt_WARN_ON_ONCE", __stringify(_condition))
+ xe_gt_WARN_ONCE((_gt), _condition, "%s(%s)", "WARN_ON_ONCE", __stringify(_condition))
static inline void __xe_gt_printfn_err(struct drm_printer *p, struct va_format *vaf)
{
--
2.47.1
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [PATCH v2 3/5] drm/xe: Prepare format for GT-oriented messages in one place
2025-09-09 16:59 [PATCH v2 0/5] RFC: Add dedicated printk macros for tile and device Michal Wajdeczko
2025-09-09 16:59 ` [PATCH v2 1/5] drm/xe: Keep xe_gt_err() macro definitions together Michal Wajdeczko
2025-09-09 16:59 ` [PATCH v2 2/5] drm/xe: Drop "gt_" prefix from xe_gt_WARN() macros Michal Wajdeczko
@ 2025-09-09 16:59 ` Michal Wajdeczko
2025-09-10 21:28 ` Rodrigo Vivi
2025-09-11 3:49 ` Lucas De Marchi
2025-09-09 16:59 ` [PATCH v2 4/5] drm/xe: Add dedicated printk macros for tile and device Michal Wajdeczko
` (7 subsequent siblings)
10 siblings, 2 replies; 17+ messages in thread
From: Michal Wajdeczko @ 2025-09-09 16:59 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Rodrigo Vivi
To avoid code duplication (and thus potential mistakes) and to
allow easier changes (if needed) of the prefix format of the
GT-oriented messages, prepare that prefix in dedicated macro.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
v2: use uppercase for FMT macro (Rodrigo)
---
drivers/gpu/drm/xe/xe_gt_printk.h | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_gt_printk.h b/drivers/gpu/drm/xe/xe_gt_printk.h
index f2091c734aba..dcc45628cca9 100644
--- a/drivers/gpu/drm/xe/xe_gt_printk.h
+++ b/drivers/gpu/drm/xe/xe_gt_printk.h
@@ -10,8 +10,10 @@
#include "xe_gt_types.h"
+#define __XE_GT_PRINTK_FMT(_gt, _fmt, _args...) "GT%u: " _fmt, (_gt)->info.id, ##_args
+
#define xe_gt_printk(_gt, _level, _fmt, ...) \
- drm_##_level(>_to_xe(_gt)->drm, "GT%u: " _fmt, (_gt)->info.id, ##__VA_ARGS__)
+ drm_##_level(>_to_xe(_gt)->drm, __XE_GT_PRINTK_FMT((_gt), _fmt, ##__VA_ARGS__))
#define xe_gt_err(_gt, _fmt, ...) \
xe_gt_printk((_gt), err, _fmt, ##__VA_ARGS__)
@@ -34,11 +36,14 @@
#define xe_gt_dbg(_gt, _fmt, ...) \
xe_gt_printk((_gt), dbg, _fmt, ##__VA_ARGS__)
+#define xe_gt_WARN_type(_gt, _type, _condition, _fmt, ...) \
+ drm_WARN##_type(>_to_xe(_gt)->drm, _condition, _fmt, ## __VA_ARGS__)
+
#define xe_gt_WARN(_gt, _condition, _fmt, ...) \
- drm_WARN(>_to_xe(_gt)->drm, _condition, "GT%u: " _fmt, (_gt)->info.id, ##__VA_ARGS__)
+ xe_gt_WARN_type((_gt),, _condition, __XE_GT_PRINTK_FMT((_gt), _fmt, ##__VA_ARGS__))
#define xe_gt_WARN_ONCE(_gt, _condition, _fmt, ...) \
- drm_WARN_ONCE(>_to_xe(_gt)->drm, _condition, "GT%u: " _fmt, (_gt)->info.id, ##__VA_ARGS__)
+ xe_gt_WARN_type((_gt), _ONCE, _condition, __XE_GT_PRINTK_FMT((_gt), _fmt, ##__VA_ARGS__))
#define xe_gt_WARN_ON(_gt, _condition) \
xe_gt_WARN((_gt), _condition, "%s(%s)", "WARN_ON", __stringify(_condition))
@@ -72,7 +77,7 @@ static inline void __xe_gt_printfn_dbg(struct drm_printer *p, struct va_format *
dbg = drm_dbg_printer(>_to_xe(gt)->drm, DRM_UT_DRIVER, NULL);
dbg.origin = p->origin;
- drm_printf(&dbg, "GT%u: %pV", gt->info.id, vaf);
+ drm_printf(&dbg, __XE_GT_PRINTK_FMT(gt, "%pV", vaf));
}
/**
--
2.47.1
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [PATCH v2 4/5] drm/xe: Add dedicated printk macros for tile and device
2025-09-09 16:59 [PATCH v2 0/5] RFC: Add dedicated printk macros for tile and device Michal Wajdeczko
` (2 preceding siblings ...)
2025-09-09 16:59 ` [PATCH v2 3/5] drm/xe: Prepare format for GT-oriented messages in one place Michal Wajdeczko
@ 2025-09-09 16:59 ` Michal Wajdeczko
2025-09-10 21:28 ` Rodrigo Vivi
2025-09-11 3:51 ` Lucas De Marchi
2025-09-09 16:59 ` [PATCH v2 5/5] drm/xe: Use tile-oriented messages in GGTT code Michal Wajdeczko
` (6 subsequent siblings)
10 siblings, 2 replies; 17+ messages in thread
From: Michal Wajdeczko @ 2025-09-09 16:59 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Lucas De Marchi, Rodrigo Vivi
We already have dedicated helper macros for printing GT-oriented
messages but we don't have any to print messages that are tile
oriented and we wrongly try to use plain drm or GT-oriented ones.
Add tile-oriented printk messages and to provide similar coverage
as we have with xe_assert() macros. Also add set of simple macros
for the top level xe_device, which we could easily tweak to include
extra device specific info if needed.
Typical output of our printk macros will look like:
[drm] this is xe_WARN()
[drm] *ERROR* this is xe_err()
[drm] *ERROR* this is xe_err_printer()
[drm] this is xe_info()
[drm] this is xe_info_printer()
[drm:printk_demo.cold] this is xe_dbg()
[drm:printk_demo.cold] this is xe_dbg_printer()
[drm] Tile0: this is xe_tile_WARN()
[drm] *ERROR* Tile0: this is xe_tile_err()
[drm] *ERROR* Tile0: this is xe_tile_err_printer()
[drm] Tile0: this is xe_tile_info()
[drm] Tile0: this is xe_tile_info_printer()
[drm:printk_demo.cold] Tile0: this is xe_tile_dbg()
[drm:printk_demo.cold] Tile0: this is xe_tile_dbg_printer()
[drm] Tile0: GT0: this is xe_gt_WARN()
[drm] *ERROR* Tile0: GT0: this is xe_gt_err()
[drm] *ERROR* Tile0: GT0: this is xe_gt_err_printer()
[drm] Tile0: GT0: this is xe_gt_info()
[drm] Tile0: GT0: this is xe_gt_info_printer()
[drm:printk_demo.cold] Tile0: GT0: this is xe_gt_dbg()
[drm:printk_demo.cold] Tile0: GT0: this is xe_gt_dbg_printer()
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
v2: use uppercase for FMT macro (Rodrigo)
---
drivers/gpu/drm/xe/xe_gt_printk.h | 11 ++-
drivers/gpu/drm/xe/xe_printk.h | 129 ++++++++++++++++++++++++++++
drivers/gpu/drm/xe/xe_tile_printk.h | 127 +++++++++++++++++++++++++++
3 files changed, 261 insertions(+), 6 deletions(-)
create mode 100644 drivers/gpu/drm/xe/xe_printk.h
create mode 100644 drivers/gpu/drm/xe/xe_tile_printk.h
diff --git a/drivers/gpu/drm/xe/xe_gt_printk.h b/drivers/gpu/drm/xe/xe_gt_printk.h
index dcc45628cca9..1313d32862db 100644
--- a/drivers/gpu/drm/xe/xe_gt_printk.h
+++ b/drivers/gpu/drm/xe/xe_gt_printk.h
@@ -6,14 +6,13 @@
#ifndef _XE_GT_PRINTK_H_
#define _XE_GT_PRINTK_H_
-#include <drm/drm_print.h>
-
#include "xe_gt_types.h"
+#include "xe_tile_printk.h"
#define __XE_GT_PRINTK_FMT(_gt, _fmt, _args...) "GT%u: " _fmt, (_gt)->info.id, ##_args
#define xe_gt_printk(_gt, _level, _fmt, ...) \
- drm_##_level(>_to_xe(_gt)->drm, __XE_GT_PRINTK_FMT((_gt), _fmt, ##__VA_ARGS__))
+ xe_tile_printk((_gt)->tile, _level, __XE_GT_PRINTK_FMT((_gt), _fmt, ##__VA_ARGS__))
#define xe_gt_err(_gt, _fmt, ...) \
xe_gt_printk((_gt), err, _fmt, ##__VA_ARGS__)
@@ -37,7 +36,7 @@
xe_gt_printk((_gt), dbg, _fmt, ##__VA_ARGS__)
#define xe_gt_WARN_type(_gt, _type, _condition, _fmt, ...) \
- drm_WARN##_type(>_to_xe(_gt)->drm, _condition, _fmt, ## __VA_ARGS__)
+ xe_tile_WARN##_type((_gt)->tile, _condition, _fmt, ## __VA_ARGS__)
#define xe_gt_WARN(_gt, _condition, _fmt, ...) \
xe_gt_WARN_type((_gt),, _condition, __XE_GT_PRINTK_FMT((_gt), _fmt, ##__VA_ARGS__))
@@ -72,9 +71,9 @@ static inline void __xe_gt_printfn_dbg(struct drm_printer *p, struct va_format *
/*
* The original xe_gt_dbg() callsite annotations are useless here,
- * redirect to the tweaked drm_dbg_printer() instead.
+ * redirect to the tweaked xe_tile_dbg_printer() instead.
*/
- dbg = drm_dbg_printer(>_to_xe(gt)->drm, DRM_UT_DRIVER, NULL);
+ dbg = xe_tile_dbg_printer((gt)->tile);
dbg.origin = p->origin;
drm_printf(&dbg, __XE_GT_PRINTK_FMT(gt, "%pV", vaf));
diff --git a/drivers/gpu/drm/xe/xe_printk.h b/drivers/gpu/drm/xe/xe_printk.h
new file mode 100644
index 000000000000..c5be2385aa95
--- /dev/null
+++ b/drivers/gpu/drm/xe/xe_printk.h
@@ -0,0 +1,129 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#ifndef _XE_PRINTK_H_
+#define _XE_PRINTK_H_
+
+#include <drm/drm_print.h>
+
+#include "xe_device_types.h"
+
+#define __XE_PRINTK_FMT(_xe, _fmt, _args...) _fmt, ##_args
+
+#define xe_printk(_xe, _level, _fmt, ...) \
+ drm_##_level(&(_xe)->drm, __XE_PRINTK_FMT((_xe), _fmt, ## __VA_ARGS__))
+
+#define xe_err(_xe, _fmt, ...) \
+ xe_printk((_xe), err, _fmt, ##__VA_ARGS__)
+
+#define xe_err_once(_xe, _fmt, ...) \
+ xe_printk((_xe), err_once, _fmt, ##__VA_ARGS__)
+
+#define xe_err_ratelimited(_xe, _fmt, ...) \
+ xe_printk((_xe), err_ratelimited, _fmt, ##__VA_ARGS__)
+
+#define xe_warn(_xe, _fmt, ...) \
+ xe_printk((_xe), warn, _fmt, ##__VA_ARGS__)
+
+#define xe_notice(_xe, _fmt, ...) \
+ xe_printk((_xe), notice, _fmt, ##__VA_ARGS__)
+
+#define xe_info(_xe, _fmt, ...) \
+ xe_printk((_xe), info, _fmt, ##__VA_ARGS__)
+
+#define xe_dbg(_xe, _fmt, ...) \
+ xe_printk((_xe), dbg, _fmt, ##__VA_ARGS__)
+
+#define xe_WARN_type(_xe, _type, _condition, _fmt, ...) \
+ drm_WARN##_type(&(_xe)->drm, _condition, _fmt, ## __VA_ARGS__)
+
+#define xe_WARN(_xe, _condition, _fmt, ...) \
+ xe_WARN_type((_xe),, _condition, __XE_PRINTK_FMT((_xe), _fmt, ## __VA_ARGS__))
+
+#define xe_WARN_ONCE(_xe, _condition, _fmt, ...) \
+ xe_WARN_type((_xe), _ONCE, _condition, __XE_PRINTK_FMT((_xe), _fmt, ## __VA_ARGS__))
+
+#define xe_WARN_ON(_xe, _condition) \
+ xe_WARN((_xe), _condition, "%s(%s)", "WARN_ON", __stringify(_condition))
+
+#define xe_WARN_ON_ONCE(_xe, _condition) \
+ xe_WARN_ONCE((_xe), _condition, "%s(%s)", "WARN_ON_ONCE", __stringify(_condition))
+
+static inline void __xe_printfn_err(struct drm_printer *p, struct va_format *vaf)
+{
+ struct xe_device *xe = p->arg;
+
+ xe_err(xe, "%pV", vaf);
+}
+
+static inline void __xe_printfn_info(struct drm_printer *p, struct va_format *vaf)
+{
+ struct xe_device *xe = p->arg;
+
+ xe_info(xe, "%pV", vaf);
+}
+
+static inline void __xe_printfn_dbg(struct drm_printer *p, struct va_format *vaf)
+{
+ struct xe_device *xe = p->arg;
+ struct drm_printer ddp;
+
+ /*
+ * The original xe_dbg() callsite annotations are useless here,
+ * redirect to the tweaked drm_dbg_printer() instead.
+ */
+ ddp = drm_dbg_printer(&xe->drm, DRM_UT_DRIVER, NULL);
+ ddp.origin = p->origin;
+
+ drm_printf(&ddp, __XE_PRINTK_FMT(xe, "%pV", vaf));
+}
+
+/**
+ * xe_err_printer - Construct a &drm_printer that outputs to xe_err()
+ * @xe: the &xe_device pointer to use in xe_err()
+ *
+ * Return: The &drm_printer object.
+ */
+static inline struct drm_printer xe_err_printer(struct xe_device *xe)
+{
+ struct drm_printer p = {
+ .printfn = __xe_printfn_err,
+ .arg = xe,
+ };
+ return p;
+}
+
+/**
+ * xe_info_printer - Construct a &drm_printer that outputs to xe_info()
+ * @xe: the &xe_device pointer to use in xe_info()
+ *
+ * Return: The &drm_printer object.
+ */
+static inline struct drm_printer xe_info_printer(struct xe_device *xe)
+{
+ struct drm_printer p = {
+ .printfn = __xe_printfn_info,
+ .arg = xe,
+ };
+ return p;
+}
+
+/**
+ * xe_dbg_printer - Construct a &drm_printer that outputs like xe_dbg()
+ * @xe: the &xe_device pointer to use in xe_dbg()
+ *
+ * Return: The &drm_printer object.
+ */
+static inline struct drm_printer xe_dbg_printer(struct xe_device *xe)
+{
+ struct drm_printer p = {
+ .printfn = __xe_printfn_dbg,
+ .arg = xe,
+ .origin = (const void *)_THIS_IP_,
+ };
+ return p;
+}
+
+#endif
diff --git a/drivers/gpu/drm/xe/xe_tile_printk.h b/drivers/gpu/drm/xe/xe_tile_printk.h
new file mode 100644
index 000000000000..63640a42685d
--- /dev/null
+++ b/drivers/gpu/drm/xe/xe_tile_printk.h
@@ -0,0 +1,127 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#ifndef _xe_tile_printk_H_
+#define _xe_tile_printk_H_
+
+#include "xe_printk.h"
+
+#define __XE_TILE_PRINTK_FMT(_tile, _fmt, _args...) "Tile%u: " _fmt, (_tile)->id, ##_args
+
+#define xe_tile_printk(_tile, _level, _fmt, ...) \
+ xe_printk((_tile)->xe, _level, __XE_TILE_PRINTK_FMT((_tile), _fmt, ##__VA_ARGS__))
+
+#define xe_tile_err(_tile, _fmt, ...) \
+ xe_tile_printk((_tile), err, _fmt, ##__VA_ARGS__)
+
+#define xe_tile_err_once(_tile, _fmt, ...) \
+ xe_tile_printk((_tile), err_once, _fmt, ##__VA_ARGS__)
+
+#define xe_tile_err_ratelimited(_tile, _fmt, ...) \
+ xe_tile_printk((_tile), err_ratelimited, _fmt, ##__VA_ARGS__)
+
+#define xe_tile_warn(_tile, _fmt, ...) \
+ xe_tile_printk((_tile), warn, _fmt, ##__VA_ARGS__)
+
+#define xe_tile_notice(_tile, _fmt, ...) \
+ xe_tile_printk((_tile), notice, _fmt, ##__VA_ARGS__)
+
+#define xe_tile_info(_tile, _fmt, ...) \
+ xe_tile_printk((_tile), info, _fmt, ##__VA_ARGS__)
+
+#define xe_tile_dbg(_tile, _fmt, ...) \
+ xe_tile_printk((_tile), dbg, _fmt, ##__VA_ARGS__)
+
+#define xe_tile_WARN_type(_tile, _type, _condition, _fmt, ...) \
+ xe_WARN##_type((_tile)->xe, _condition, _fmt, ## __VA_ARGS__)
+
+#define xe_tile_WARN(_tile, _condition, _fmt, ...) \
+ xe_tile_WARN_type((_tile),, _condition, __XE_TILE_PRINTK_FMT((_tile), _fmt, ##__VA_ARGS__))
+
+#define xe_tile_WARN_ONCE(_tile, _condition, _fmt, ...) \
+ xe_tile_WARN_type((_tile), _ONCE, _condition, __XE_TILE_PRINTK_FMT((_tile), _fmt, ##__VA_ARGS__))
+
+#define xe_tile_WARN_ON(_tile, _condition) \
+ xe_tile_WARN((_tile), _condition, "%s(%s)", "WARN_ON", __stringify(_condition))
+
+#define xe_tile_WARN_ON_ONCE(_tile, _condition) \
+ xe_tile_WARN_ONCE((_tile), _condition, "%s(%s)", "WARN_ON_ONCE", __stringify(_condition))
+
+static inline void __xe_tile_printfn_err(struct drm_printer *p, struct va_format *vaf)
+{
+ struct xe_tile *tile = p->arg;
+
+ xe_tile_err(tile, "%pV", vaf);
+}
+
+static inline void __xe_tile_printfn_info(struct drm_printer *p, struct va_format *vaf)
+{
+ struct xe_tile *tile = p->arg;
+
+ xe_tile_info(tile, "%pV", vaf);
+}
+
+static inline void __xe_tile_printfn_dbg(struct drm_printer *p, struct va_format *vaf)
+{
+ struct xe_tile *tile = p->arg;
+ struct drm_printer dbg;
+
+ /*
+ * The original xe_tile_dbg() callsite annotations are useless here,
+ * redirect to the tweaked xe_dbg_printer() instead.
+ */
+ dbg = xe_dbg_printer(tile->xe);
+ dbg.origin = p->origin;
+
+ drm_printf(&dbg, __XE_TILE_PRINTK_FMT(tile, "%pV", vaf));
+}
+
+/**
+ * xe_tile_err_printer - Construct a &drm_printer that outputs to xe_tile_err()
+ * @tile: the &xe_tile pointer to use in xe_tile_err()
+ *
+ * Return: The &drm_printer object.
+ */
+static inline struct drm_printer xe_tile_err_printer(struct xe_tile *tile)
+{
+ struct drm_printer p = {
+ .printfn = __xe_tile_printfn_err,
+ .arg = tile,
+ };
+ return p;
+}
+
+/**
+ * xe_tile_info_printer - Construct a &drm_printer that outputs to xe_tile_info()
+ * @tile: the &xe_tile pointer to use in xe_tile_info()
+ *
+ * Return: The &drm_printer object.
+ */
+static inline struct drm_printer xe_tile_info_printer(struct xe_tile *tile)
+{
+ struct drm_printer p = {
+ .printfn = __xe_tile_printfn_info,
+ .arg = tile,
+ };
+ return p;
+}
+
+/**
+ * xe_tile_dbg_printer - Construct a &drm_printer that outputs like xe_tile_dbg()
+ * @tile: the &xe_tile pointer to use in xe_tile_dbg()
+ *
+ * Return: The &drm_printer object.
+ */
+static inline struct drm_printer xe_tile_dbg_printer(struct xe_tile *tile)
+{
+ struct drm_printer p = {
+ .printfn = __xe_tile_printfn_dbg,
+ .arg = tile,
+ .origin = (const void *)_THIS_IP_,
+ };
+ return p;
+}
+
+#endif
--
2.47.1
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [PATCH v2 5/5] drm/xe: Use tile-oriented messages in GGTT code
2025-09-09 16:59 [PATCH v2 0/5] RFC: Add dedicated printk macros for tile and device Michal Wajdeczko
` (3 preceding siblings ...)
2025-09-09 16:59 ` [PATCH v2 4/5] drm/xe: Add dedicated printk macros for tile and device Michal Wajdeczko
@ 2025-09-09 16:59 ` Michal Wajdeczko
2025-09-09 17:52 ` ✗ CI.checkpatch: warning for RFC: Add dedicated printk macros for tile and device (rev2) Patchwork
` (5 subsequent siblings)
10 siblings, 0 replies; 17+ messages in thread
From: Michal Wajdeczko @ 2025-09-09 16:59 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Rodrigo Vivi
Use recently added macros to print tile-oriented messages.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
drivers/gpu/drm/xe/xe_ggtt.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_ggtt.c b/drivers/gpu/drm/xe/xe_ggtt.c
index 71c7690a92b3..6a14bfdef41d 100644
--- a/drivers/gpu/drm/xe/xe_ggtt.c
+++ b/drivers/gpu/drm/xe/xe_ggtt.c
@@ -28,6 +28,7 @@
#include "xe_pm.h"
#include "xe_res_cursor.h"
#include "xe_sriov.h"
+#include "xe_tile_printk.h"
#include "xe_tile_sriov_vf.h"
#include "xe_tlb_inval.h"
#include "xe_wa.h"
@@ -269,7 +270,7 @@ int xe_ggtt_init_early(struct xe_ggtt *ggtt)
gsm_size = probe_gsm_size(pdev);
if (gsm_size == 0) {
- drm_err(&xe->drm, "Hardware reported no preallocated GSM\n");
+ xe_tile_err(ggtt->tile, "Hardware reported no preallocated GSM\n");
return -ENOMEM;
}
@@ -466,8 +467,8 @@ static void xe_ggtt_dump_node(struct xe_ggtt *ggtt,
if (IS_ENABLED(CONFIG_DRM_XE_DEBUG)) {
string_get_size(node->size, 1, STRING_UNITS_2, buf, sizeof(buf));
- xe_gt_dbg(ggtt->tile->primary_gt, "GGTT %#llx-%#llx (%s) %s\n",
- node->start, node->start + node->size, buf, description);
+ xe_tile_dbg(ggtt->tile, "GGTT %#llx-%#llx (%s) %s\n",
+ node->start, node->start + node->size, buf, description);
}
}
@@ -499,9 +500,8 @@ int xe_ggtt_node_insert_balloon_locked(struct xe_ggtt_node *node, u64 start, u64
err = drm_mm_reserve_node(&ggtt->mm, &node->base);
- if (xe_gt_WARN(ggtt->tile->primary_gt, err,
- "Failed to balloon GGTT %#llx-%#llx (%pe)\n",
- node->base.start, node->base.start + node->base.size, ERR_PTR(err)))
+ if (xe_tile_WARN(ggtt->tile, err, "Failed to balloon GGTT %#llx-%#llx (%pe)\n",
+ node->base.start, node->base.start + node->base.size, ERR_PTR(err)))
return err;
xe_ggtt_dump_node(ggtt, &node->base, "balloon");
--
2.47.1
^ permalink raw reply related [flat|nested] 17+ messages in thread
* ✗ CI.checkpatch: warning for RFC: Add dedicated printk macros for tile and device (rev2)
2025-09-09 16:59 [PATCH v2 0/5] RFC: Add dedicated printk macros for tile and device Michal Wajdeczko
` (4 preceding siblings ...)
2025-09-09 16:59 ` [PATCH v2 5/5] drm/xe: Use tile-oriented messages in GGTT code Michal Wajdeczko
@ 2025-09-09 17:52 ` Patchwork
2025-09-09 17:53 ` ✓ CI.KUnit: success " Patchwork
` (4 subsequent siblings)
10 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-09-09 17:52 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: RFC: Add dedicated printk macros for tile and device (rev2)
URL : https://patchwork.freedesktop.org/series/153985/
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
fbd08a78c3a3bb17964db2a326514c69c1dca660
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 882424f8e9231cf1024a924e08029fc36b35432b
Author: Michal Wajdeczko <michal.wajdeczko@intel.com>
Date: Tue Sep 9 18:59:39 2025 +0200
drm/xe: Use tile-oriented messages in GGTT code
Use recently added macros to print tile-oriented messages.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
+ /mt/dim checkpatch edcdc7fbde1a17c5fca9e1668411cce18c7d4bb4 drm-intel
bdde1890b299 drm/xe: Keep xe_gt_err() macro definitions together
2b9841da4f92 drm/xe: Drop "gt_" prefix from xe_gt_WARN() macros
b53b2c8f6b0a drm/xe: Prepare format for GT-oriented messages in one place
-:38: ERROR:SPACING: space required after that ',' (ctx:VxO)
#38: FILE: drivers/gpu/drm/xe/xe_gt_printk.h:43:
+ xe_gt_WARN_type((_gt),, _condition, __XE_GT_PRINTK_FMT((_gt), _fmt, ##__VA_ARGS__))
^
total: 1 errors, 0 warnings, 0 checks, 35 lines checked
df70873119cf drm/xe: Add dedicated printk macros for tile and device
-:88: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#88:
new file mode 100644
-:105: ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#105: FILE: drivers/gpu/drm/xe/xe_printk.h:13:
+#define __XE_PRINTK_FMT(_xe, _fmt, _args...) _fmt, ##_args
BUT SEE:
do {} while (0) advice is over-stated in a few situations:
The more obvious case is macros, like MODULE_PARM_DESC, invoked at
file-scope, where C disallows code (it must be in functions). See
$exceptions if you have one to add by name.
More troublesome is declarative macros used at top of new scope,
like DECLARE_PER_CPU. These might just compile with a do-while-0
wrapper, but would be incorrect. Most of these are handled by
detecting struct,union,etc declaration primitives in $exceptions.
Theres also macros called inside an if (block), which "return" an
expression. These cannot do-while, and need a ({}) wrapper.
Enjoy this qualification while we work to improve our heuristics.
-:105: WARNING:MACRO_ARG_UNUSED: Argument '_xe' is not used in function-like macro
#105: FILE: drivers/gpu/drm/xe/xe_printk.h:13:
+#define __XE_PRINTK_FMT(_xe, _fmt, _args...) _fmt, ##_args
-:107: CHECK:MACRO_ARG_REUSE: Macro argument reuse '_xe' - possible side-effects?
#107: FILE: drivers/gpu/drm/xe/xe_printk.h:15:
+#define xe_printk(_xe, _level, _fmt, ...) \
+ drm_##_level(&(_xe)->drm, __XE_PRINTK_FMT((_xe), _fmt, ## __VA_ARGS__))
-:134: CHECK:MACRO_ARG_REUSE: Macro argument reuse '_xe' - possible side-effects?
#134: FILE: drivers/gpu/drm/xe/xe_printk.h:42:
+#define xe_WARN(_xe, _condition, _fmt, ...) \
+ xe_WARN_type((_xe),, _condition, __XE_PRINTK_FMT((_xe), _fmt, ## __VA_ARGS__))
-:135: ERROR:SPACING: space required after that ',' (ctx:VxO)
#135: FILE: drivers/gpu/drm/xe/xe_printk.h:43:
+ xe_WARN_type((_xe),, _condition, __XE_PRINTK_FMT((_xe), _fmt, ## __VA_ARGS__))
^
-:137: CHECK:MACRO_ARG_REUSE: Macro argument reuse '_xe' - possible side-effects?
#137: FILE: drivers/gpu/drm/xe/xe_printk.h:45:
+#define xe_WARN_ONCE(_xe, _condition, _fmt, ...) \
+ xe_WARN_type((_xe), _ONCE, _condition, __XE_PRINTK_FMT((_xe), _fmt, ## __VA_ARGS__))
-:240: CHECK:MACRO_ARG_REUSE: Macro argument reuse '_tile' - possible side-effects?
#240: FILE: drivers/gpu/drm/xe/xe_tile_printk.h:13:
+#define xe_tile_printk(_tile, _level, _fmt, ...) \
+ xe_printk((_tile)->xe, _level, __XE_TILE_PRINTK_FMT((_tile), _fmt, ##__VA_ARGS__))
-:267: CHECK:MACRO_ARG_REUSE: Macro argument reuse '_tile' - possible side-effects?
#267: FILE: drivers/gpu/drm/xe/xe_tile_printk.h:40:
+#define xe_tile_WARN(_tile, _condition, _fmt, ...) \
+ xe_tile_WARN_type((_tile),, _condition, __XE_TILE_PRINTK_FMT((_tile), _fmt, ##__VA_ARGS__))
-:268: ERROR:SPACING: space required after that ',' (ctx:VxO)
#268: FILE: drivers/gpu/drm/xe/xe_tile_printk.h:41:
+ xe_tile_WARN_type((_tile),, _condition, __XE_TILE_PRINTK_FMT((_tile), _fmt, ##__VA_ARGS__))
^
-:270: CHECK:MACRO_ARG_REUSE: Macro argument reuse '_tile' - possible side-effects?
#270: FILE: drivers/gpu/drm/xe/xe_tile_printk.h:43:
+#define xe_tile_WARN_ONCE(_tile, _condition, _fmt, ...) \
+ xe_tile_WARN_type((_tile), _ONCE, _condition, __XE_TILE_PRINTK_FMT((_tile), _fmt, ##__VA_ARGS__))
-:271: WARNING:LONG_LINE: line length of 105 exceeds 100 columns
#271: FILE: drivers/gpu/drm/xe/xe_tile_printk.h:44:
+ xe_tile_WARN_type((_tile), _ONCE, _condition, __XE_TILE_PRINTK_FMT((_tile), _fmt, ##__VA_ARGS__))
total: 3 errors, 3 warnings, 6 checks, 291 lines checked
882424f8e923 drm/xe: Use tile-oriented messages in GGTT code
^ permalink raw reply [flat|nested] 17+ messages in thread
* ✓ CI.KUnit: success for RFC: Add dedicated printk macros for tile and device (rev2)
2025-09-09 16:59 [PATCH v2 0/5] RFC: Add dedicated printk macros for tile and device Michal Wajdeczko
` (5 preceding siblings ...)
2025-09-09 17:52 ` ✗ CI.checkpatch: warning for RFC: Add dedicated printk macros for tile and device (rev2) Patchwork
@ 2025-09-09 17:53 ` Patchwork
2025-09-12 7:25 ` ✗ CI.checkpatch: warning for RFC: Add dedicated printk macros for tile and device (rev3) Patchwork
` (3 subsequent siblings)
10 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-09-09 17:53 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: RFC: Add dedicated printk macros for tile and device (rev2)
URL : https://patchwork.freedesktop.org/series/153985/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[17:52:15] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:52:19] 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:52:48] Starting KUnit Kernel (1/1)...
[17:52:48] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:52:48] ================== guc_buf (11 subtests) ===================
[17:52:48] [PASSED] test_smallest
[17:52:48] [PASSED] test_largest
[17:52:48] [PASSED] test_granular
[17:52:48] [PASSED] test_unique
[17:52:48] [PASSED] test_overlap
[17:52:48] [PASSED] test_reusable
[17:52:48] [PASSED] test_too_big
[17:52:48] [PASSED] test_flush
[17:52:48] [PASSED] test_lookup
[17:52:48] [PASSED] test_data
[17:52:48] [PASSED] test_class
[17:52:48] ===================== [PASSED] guc_buf =====================
[17:52:48] =================== guc_dbm (7 subtests) ===================
[17:52:48] [PASSED] test_empty
[17:52:48] [PASSED] test_default
[17:52:48] ======================== test_size ========================
[17:52:48] [PASSED] 4
[17:52:48] [PASSED] 8
[17:52:48] [PASSED] 32
[17:52:48] [PASSED] 256
[17:52:48] ==================== [PASSED] test_size ====================
[17:52:48] ======================= test_reuse ========================
[17:52:48] [PASSED] 4
[17:52:48] [PASSED] 8
[17:52:48] [PASSED] 32
[17:52:48] [PASSED] 256
[17:52:48] =================== [PASSED] test_reuse ====================
[17:52:48] =================== test_range_overlap ====================
[17:52:48] [PASSED] 4
[17:52:48] [PASSED] 8
[17:52:48] [PASSED] 32
[17:52:48] [PASSED] 256
[17:52:48] =============== [PASSED] test_range_overlap ================
[17:52:48] =================== test_range_compact ====================
[17:52:48] [PASSED] 4
[17:52:48] [PASSED] 8
[17:52:48] [PASSED] 32
[17:52:48] [PASSED] 256
[17:52:48] =============== [PASSED] test_range_compact ================
[17:52:48] ==================== test_range_spare =====================
[17:52:48] [PASSED] 4
[17:52:48] [PASSED] 8
[17:52:48] [PASSED] 32
[17:52:48] [PASSED] 256
[17:52:48] ================ [PASSED] test_range_spare =================
[17:52:48] ===================== [PASSED] guc_dbm =====================
[17:52:48] =================== guc_idm (6 subtests) ===================
[17:52:48] [PASSED] bad_init
[17:52:48] [PASSED] no_init
[17:52:48] [PASSED] init_fini
[17:52:48] [PASSED] check_used
[17:52:48] [PASSED] check_quota
[17:52:48] [PASSED] check_all
[17:52:48] ===================== [PASSED] guc_idm =====================
[17:52:48] ================== no_relay (3 subtests) ===================
[17:52:48] [PASSED] xe_drops_guc2pf_if_not_ready
[17:52:48] [PASSED] xe_drops_guc2vf_if_not_ready
[17:52:48] [PASSED] xe_rejects_send_if_not_ready
[17:52:48] ==================== [PASSED] no_relay =====================
[17:52:48] ================== pf_relay (14 subtests) ==================
[17:52:48] [PASSED] pf_rejects_guc2pf_too_short
[17:52:48] [PASSED] pf_rejects_guc2pf_too_long
[17:52:48] [PASSED] pf_rejects_guc2pf_no_payload
[17:52:48] [PASSED] pf_fails_no_payload
[17:52:48] [PASSED] pf_fails_bad_origin
[17:52:48] [PASSED] pf_fails_bad_type
[17:52:48] [PASSED] pf_txn_reports_error
[17:52:48] [PASSED] pf_txn_sends_pf2guc
[17:52:48] [PASSED] pf_sends_pf2guc
[17:52:48] [SKIPPED] pf_loopback_nop
[17:52:48] [SKIPPED] pf_loopback_echo
[17:52:48] [SKIPPED] pf_loopback_fail
[17:52:48] [SKIPPED] pf_loopback_busy
[17:52:48] [SKIPPED] pf_loopback_retry
[17:52:48] ==================== [PASSED] pf_relay =====================
[17:52:48] ================== vf_relay (3 subtests) ===================
[17:52:48] [PASSED] vf_rejects_guc2vf_too_short
[17:52:48] [PASSED] vf_rejects_guc2vf_too_long
[17:52:48] [PASSED] vf_rejects_guc2vf_no_payload
[17:52:48] ==================== [PASSED] vf_relay =====================
[17:52:48] ===================== lmtt (1 subtest) =====================
[17:52:48] ======================== test_ops =========================
[17:52:48] [PASSED] 2-level
[17:52:48] [PASSED] multi-level
[17:52:48] ==================== [PASSED] test_ops =====================
[17:52:48] ====================== [PASSED] lmtt =======================
[17:52:48] ================= pf_service (11 subtests) =================
[17:52:48] [PASSED] pf_negotiate_any
[17:52:48] [PASSED] pf_negotiate_base_match
[17:52:48] [PASSED] pf_negotiate_base_newer
[17:52:48] [PASSED] pf_negotiate_base_next
[17:52:48] [SKIPPED] pf_negotiate_base_older
[17:52:48] [PASSED] pf_negotiate_base_prev
[17:52:48] [PASSED] pf_negotiate_latest_match
[17:52:48] [PASSED] pf_negotiate_latest_newer
[17:52:48] [PASSED] pf_negotiate_latest_next
[17:52:48] [SKIPPED] pf_negotiate_latest_older
[17:52:48] [SKIPPED] pf_negotiate_latest_prev
[17:52:48] =================== [PASSED] pf_service ====================
[17:52:48] =================== xe_mocs (2 subtests) ===================
[17:52:48] ================ xe_live_mocs_kernel_kunit ================
[17:52:48] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[17:52:48] ================ xe_live_mocs_reset_kunit =================
[17:52:48] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[17:52:48] ==================== [SKIPPED] xe_mocs =====================
[17:52:48] ================= xe_migrate (2 subtests) ==================
[17:52:48] ================= xe_migrate_sanity_kunit =================
[17:52:48] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[17:52:48] ================== xe_validate_ccs_kunit ==================
[17:52:48] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[17:52:48] =================== [SKIPPED] xe_migrate ===================
[17:52:48] ================== xe_dma_buf (1 subtest) ==================
[17:52:48] ==================== xe_dma_buf_kunit =====================
[17:52:48] ================ [SKIPPED] xe_dma_buf_kunit ================
[17:52:48] =================== [SKIPPED] xe_dma_buf ===================
[17:52:48] ================= xe_bo_shrink (1 subtest) =================
[17:52:48] =================== xe_bo_shrink_kunit ====================
[17:52:48] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[17:52:48] ================== [SKIPPED] xe_bo_shrink ==================
[17:52:48] ==================== xe_bo (2 subtests) ====================
[17:52:48] ================== xe_ccs_migrate_kunit ===================
[17:52:48] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[17:52:48] ==================== xe_bo_evict_kunit ====================
[17:52:48] =============== [SKIPPED] xe_bo_evict_kunit ================
[17:52:48] ===================== [SKIPPED] xe_bo ======================
[17:52:48] ==================== args (11 subtests) ====================
[17:52:48] [PASSED] count_args_test
[17:52:48] [PASSED] call_args_example
[17:52:48] [PASSED] call_args_test
[17:52:48] [PASSED] drop_first_arg_example
[17:52:48] [PASSED] drop_first_arg_test
[17:52:48] [PASSED] first_arg_example
[17:52:48] [PASSED] first_arg_test
[17:52:48] [PASSED] last_arg_example
[17:52:48] [PASSED] last_arg_test
[17:52:48] [PASSED] pick_arg_example
[17:52:48] [PASSED] sep_comma_example
[17:52:48] ====================== [PASSED] args =======================
[17:52:48] =================== xe_pci (3 subtests) ====================
[17:52:48] ==================== check_graphics_ip ====================
[17:52:48] [PASSED] 12.70 Xe_LPG
[17:52:48] [PASSED] 12.71 Xe_LPG
[17:52:48] [PASSED] 12.74 Xe_LPG+
[17:52:48] [PASSED] 20.01 Xe2_HPG
[17:52:48] [PASSED] 20.02 Xe2_HPG
[17:52:48] [PASSED] 20.04 Xe2_LPG
[17:52:48] [PASSED] 30.00 Xe3_LPG
[17:52:48] [PASSED] 30.01 Xe3_LPG
[17:52:48] [PASSED] 30.03 Xe3_LPG
[17:52:48] ================ [PASSED] check_graphics_ip ================
[17:52:48] ===================== check_media_ip ======================
[17:52:48] [PASSED] 13.00 Xe_LPM+
[17:52:48] [PASSED] 13.01 Xe2_HPM
[17:52:48] [PASSED] 20.00 Xe2_LPM
[17:52:48] [PASSED] 30.00 Xe3_LPM
[17:52:48] [PASSED] 30.02 Xe3_LPM
[17:52:48] ================= [PASSED] check_media_ip ==================
[17:52:48] ================= check_platform_gt_count =================
[17:52:48] [PASSED] 0x9A60 (TIGERLAKE)
[17:52:48] [PASSED] 0x9A68 (TIGERLAKE)
[17:52:48] [PASSED] 0x9A70 (TIGERLAKE)
[17:52:48] [PASSED] 0x9A40 (TIGERLAKE)
[17:52:48] [PASSED] 0x9A49 (TIGERLAKE)
[17:52:48] [PASSED] 0x9A59 (TIGERLAKE)
[17:52:48] [PASSED] 0x9A78 (TIGERLAKE)
[17:52:48] [PASSED] 0x9AC0 (TIGERLAKE)
[17:52:48] [PASSED] 0x9AC9 (TIGERLAKE)
[17:52:48] [PASSED] 0x9AD9 (TIGERLAKE)
[17:52:48] [PASSED] 0x9AF8 (TIGERLAKE)
[17:52:48] [PASSED] 0x4C80 (ROCKETLAKE)
[17:52:48] [PASSED] 0x4C8A (ROCKETLAKE)
[17:52:48] [PASSED] 0x4C8B (ROCKETLAKE)
[17:52:48] [PASSED] 0x4C8C (ROCKETLAKE)
[17:52:48] [PASSED] 0x4C90 (ROCKETLAKE)
[17:52:48] [PASSED] 0x4C9A (ROCKETLAKE)
[17:52:48] [PASSED] 0x4680 (ALDERLAKE_S)
[17:52:48] [PASSED] 0x4682 (ALDERLAKE_S)
[17:52:48] [PASSED] 0x4688 (ALDERLAKE_S)
[17:52:48] [PASSED] 0x468A (ALDERLAKE_S)
[17:52:48] [PASSED] 0x468B (ALDERLAKE_S)
[17:52:48] [PASSED] 0x4690 (ALDERLAKE_S)
[17:52:48] [PASSED] 0x4692 (ALDERLAKE_S)
[17:52:48] [PASSED] 0x4693 (ALDERLAKE_S)
[17:52:48] [PASSED] 0x46A0 (ALDERLAKE_P)
[17:52:48] [PASSED] 0x46A1 (ALDERLAKE_P)
[17:52:48] [PASSED] 0x46A2 (ALDERLAKE_P)
[17:52:48] [PASSED] 0x46A3 (ALDERLAKE_P)
[17:52:48] [PASSED] 0x46A6 (ALDERLAKE_P)
[17:52:48] [PASSED] 0x46A8 (ALDERLAKE_P)
[17:52:48] [PASSED] 0x46AA (ALDERLAKE_P)
[17:52:48] [PASSED] 0x462A (ALDERLAKE_P)
[17:52:48] [PASSED] 0x4626 (ALDERLAKE_P)
[17:52:48] [PASSED] 0x4628 (ALDERLAKE_P)
[17:52:48] [PASSED] 0x46B0 (ALDERLAKE_P)
[17:52:48] [PASSED] 0x46B1 (ALDERLAKE_P)
[17:52:48] [PASSED] 0x46B2 (ALDERLAKE_P)
[17:52:48] [PASSED] 0x46B3 (ALDERLAKE_P)
[17:52:48] [PASSED] 0x46C0 (ALDERLAKE_P)
[17:52:48] [PASSED] 0x46C1 (ALDERLAKE_P)
[17:52:48] [PASSED] 0x46C2 (ALDERLAKE_P)
[17:52:48] [PASSED] 0x46C3 (ALDERLAKE_P)
[17:52:48] [PASSED] 0x46D0 (ALDERLAKE_N)
[17:52:48] [PASSED] 0x46D1 (ALDERLAKE_N)
[17:52:48] [PASSED] 0x46D2 (ALDERLAKE_N)
[17:52:48] [PASSED] 0x46D3 (ALDERLAKE_N)
[17:52:48] [PASSED] 0x46D4 (ALDERLAKE_N)
[17:52:48] [PASSED] 0xA721 (ALDERLAKE_P)
[17:52:48] [PASSED] 0xA7A1 (ALDERLAKE_P)
[17:52:48] [PASSED] 0xA7A9 (ALDERLAKE_P)
[17:52:48] [PASSED] 0xA7AC (ALDERLAKE_P)
[17:52:48] [PASSED] 0xA7AD (ALDERLAKE_P)
[17:52:48] [PASSED] 0xA720 (ALDERLAKE_P)
[17:52:48] [PASSED] 0xA7A0 (ALDERLAKE_P)
[17:52:48] [PASSED] 0xA7A8 (ALDERLAKE_P)
[17:52:48] [PASSED] 0xA7AA (ALDERLAKE_P)
[17:52:48] [PASSED] 0xA7AB (ALDERLAKE_P)
[17:52:48] [PASSED] 0xA780 (ALDERLAKE_S)
[17:52:48] [PASSED] 0xA781 (ALDERLAKE_S)
[17:52:48] [PASSED] 0xA782 (ALDERLAKE_S)
[17:52:48] [PASSED] 0xA783 (ALDERLAKE_S)
[17:52:48] [PASSED] 0xA788 (ALDERLAKE_S)
[17:52:48] [PASSED] 0xA789 (ALDERLAKE_S)
[17:52:48] [PASSED] 0xA78A (ALDERLAKE_S)
[17:52:48] [PASSED] 0xA78B (ALDERLAKE_S)
[17:52:48] [PASSED] 0x4905 (DG1)
[17:52:48] [PASSED] 0x4906 (DG1)
[17:52:48] [PASSED] 0x4907 (DG1)
[17:52:48] [PASSED] 0x4908 (DG1)
[17:52:48] [PASSED] 0x4909 (DG1)
[17:52:48] [PASSED] 0x56C0 (DG2)
[17:52:48] [PASSED] 0x56C2 (DG2)
[17:52:48] [PASSED] 0x56C1 (DG2)
[17:52:48] [PASSED] 0x7D51 (METEORLAKE)
[17:52:48] [PASSED] 0x7DD1 (METEORLAKE)
[17:52:48] [PASSED] 0x7D41 (METEORLAKE)
[17:52:48] [PASSED] 0x7D67 (METEORLAKE)
[17:52:48] [PASSED] 0xB640 (METEORLAKE)
[17:52:48] [PASSED] 0x56A0 (DG2)
[17:52:48] [PASSED] 0x56A1 (DG2)
[17:52:48] [PASSED] 0x56A2 (DG2)
[17:52:48] [PASSED] 0x56BE (DG2)
[17:52:48] [PASSED] 0x56BF (DG2)
[17:52:48] [PASSED] 0x5690 (DG2)
[17:52:48] [PASSED] 0x5691 (DG2)
[17:52:48] [PASSED] 0x5692 (DG2)
[17:52:48] [PASSED] 0x56A5 (DG2)
[17:52:48] [PASSED] 0x56A6 (DG2)
[17:52:48] [PASSED] 0x56B0 (DG2)
[17:52:48] [PASSED] 0x56B1 (DG2)
[17:52:48] [PASSED] 0x56BA (DG2)
[17:52:48] [PASSED] 0x56BB (DG2)
[17:52:48] [PASSED] 0x56BC (DG2)
[17:52:48] [PASSED] 0x56BD (DG2)
[17:52:48] [PASSED] 0x5693 (DG2)
[17:52:48] [PASSED] 0x5694 (DG2)
[17:52:48] [PASSED] 0x5695 (DG2)
[17:52:48] [PASSED] 0x56A3 (DG2)
[17:52:48] [PASSED] 0x56A4 (DG2)
[17:52:48] [PASSED] 0x56B2 (DG2)
[17:52:48] [PASSED] 0x56B3 (DG2)
[17:52:48] [PASSED] 0x5696 (DG2)
[17:52:48] [PASSED] 0x5697 (DG2)
[17:52:48] [PASSED] 0xB69 (PVC)
[17:52:48] [PASSED] 0xB6E (PVC)
[17:52:48] [PASSED] 0xBD4 (PVC)
[17:52:48] [PASSED] 0xBD5 (PVC)
[17:52:48] [PASSED] 0xBD6 (PVC)
[17:52:48] [PASSED] 0xBD7 (PVC)
[17:52:48] [PASSED] 0xBD8 (PVC)
[17:52:48] [PASSED] 0xBD9 (PVC)
[17:52:48] [PASSED] 0xBDA (PVC)
[17:52:48] [PASSED] 0xBDB (PVC)
[17:52:48] [PASSED] 0xBE0 (PVC)
[17:52:48] [PASSED] 0xBE1 (PVC)
[17:52:48] [PASSED] 0xBE5 (PVC)
[17:52:48] [PASSED] 0x7D40 (METEORLAKE)
[17:52:48] [PASSED] 0x7D45 (METEORLAKE)
[17:52:48] [PASSED] 0x7D55 (METEORLAKE)
[17:52:48] [PASSED] 0x7D60 (METEORLAKE)
[17:52:48] [PASSED] 0x7DD5 (METEORLAKE)
[17:52:48] [PASSED] 0x6420 (LUNARLAKE)
[17:52:48] [PASSED] 0x64A0 (LUNARLAKE)
[17:52:48] [PASSED] 0x64B0 (LUNARLAKE)
[17:52:48] [PASSED] 0xE202 (BATTLEMAGE)
[17:52:48] [PASSED] 0xE209 (BATTLEMAGE)
[17:52:48] [PASSED] 0xE20B (BATTLEMAGE)
[17:52:48] [PASSED] 0xE20C (BATTLEMAGE)
[17:52:48] [PASSED] 0xE20D (BATTLEMAGE)
[17:52:48] [PASSED] 0xE210 (BATTLEMAGE)
[17:52:48] [PASSED] 0xE211 (BATTLEMAGE)
[17:52:48] [PASSED] 0xE212 (BATTLEMAGE)
[17:52:48] [PASSED] 0xE216 (BATTLEMAGE)
[17:52:48] [PASSED] 0xE220 (BATTLEMAGE)
[17:52:48] [PASSED] 0xE221 (BATTLEMAGE)
[17:52:48] [PASSED] 0xE222 (BATTLEMAGE)
[17:52:48] [PASSED] 0xE223 (BATTLEMAGE)
[17:52:48] [PASSED] 0xB080 (PANTHERLAKE)
[17:52:48] [PASSED] 0xB081 (PANTHERLAKE)
[17:52:48] [PASSED] 0xB082 (PANTHERLAKE)
[17:52:48] [PASSED] 0xB083 (PANTHERLAKE)
[17:52:48] [PASSED] 0xB084 (PANTHERLAKE)
[17:52:48] [PASSED] 0xB085 (PANTHERLAKE)
[17:52:48] [PASSED] 0xB086 (PANTHERLAKE)
[17:52:48] [PASSED] 0xB087 (PANTHERLAKE)
[17:52:48] [PASSED] 0xB08F (PANTHERLAKE)
[17:52:48] [PASSED] 0xB090 (PANTHERLAKE)
[17:52:48] [PASSED] 0xB0A0 (PANTHERLAKE)
[17:52:48] [PASSED] 0xB0B0 (PANTHERLAKE)
[17:52:48] [PASSED] 0xFD80 (PANTHERLAKE)
[17:52:48] [PASSED] 0xFD81 (PANTHERLAKE)
[17:52:48] ============= [PASSED] check_platform_gt_count =============
[17:52:48] ===================== [PASSED] xe_pci ======================
[17:52:48] =================== xe_rtp (2 subtests) ====================
[17:52:48] =============== xe_rtp_process_to_sr_tests ================
[17:52:48] [PASSED] coalesce-same-reg
[17:52:48] [PASSED] no-match-no-add
[17:52:48] [PASSED] match-or
[17:52:48] [PASSED] match-or-xfail
[17:52:48] [PASSED] no-match-no-add-multiple-rules
[17:52:48] [PASSED] two-regs-two-entries
[17:52:48] [PASSED] clr-one-set-other
[17:52:48] [PASSED] set-field
[17:52:48] [PASSED] conflict-duplicate
[17:52:48] [PASSED] conflict-not-disjoint
[17:52:48] [PASSED] conflict-reg-type
[17:52:48] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[17:52:48] ================== xe_rtp_process_tests ===================
[17:52:48] [PASSED] active1
[17:52:48] [PASSED] active2
[17:52:48] [PASSED] active-inactive
[17:52:48] [PASSED] inactive-active
[17:52:48] [PASSED] inactive-1st_or_active-inactive
[17:52:48] [PASSED] inactive-2nd_or_active-inactive
[17:52:48] [PASSED] inactive-last_or_active-inactive
[17:52:48] [PASSED] inactive-no_or_active-inactive
[17:52:48] ============== [PASSED] xe_rtp_process_tests ===============
[17:52:48] ===================== [PASSED] xe_rtp ======================
[17:52:48] ==================== xe_wa (1 subtest) =====================
[17:52:48] ======================== xe_wa_gt =========================
[17:52:48] [PASSED] TIGERLAKE B0
[17:52:48] [PASSED] DG1 A0
[17:52:48] [PASSED] DG1 B0
[17:52:48] [PASSED] ALDERLAKE_S A0
[17:52:48] [PASSED] ALDERLAKE_S B0
[17:52:48] [PASSED] ALDERLAKE_S C0
[17:52:48] [PASSED] ALDERLAKE_S D0
[17:52:48] [PASSED] ALDERLAKE_P A0
[17:52:48] [PASSED] ALDERLAKE_P B0
[17:52:48] [PASSED] ALDERLAKE_P C0
[17:52:48] [PASSED] ALDERLAKE_S RPLS D0
[17:52:48] [PASSED] ALDERLAKE_P RPLU E0
[17:52:48] [PASSED] DG2 G10 C0
[17:52:48] [PASSED] DG2 G11 B1
[17:52:48] [PASSED] DG2 G12 A1
[17:52:48] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[17:52:48] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[17:52:48] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[17:52:48] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
stty: 'standard input': Inappropriate ioctl for device
[17:52:48] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[17:52:48] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[17:52:48] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[17:52:48] ==================== [PASSED] xe_wa_gt =====================
[17:52:48] ====================== [PASSED] xe_wa ======================
[17:52:48] ============================================================
[17:52:48] Testing complete. Ran 298 tests: passed: 282, skipped: 16
[17:52:48] Elapsed time: 33.386s total, 4.238s configuring, 28.782s building, 0.316s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[17:52:48] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:52:50] 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:53:13] Starting KUnit Kernel (1/1)...
[17:53:13] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:53:13] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[17:53:13] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[17:53:13] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[17:53:13] =========== drm_validate_clone_mode (2 subtests) ===========
[17:53:13] ============== drm_test_check_in_clone_mode ===============
[17:53:13] [PASSED] in_clone_mode
[17:53:13] [PASSED] not_in_clone_mode
[17:53:13] ========== [PASSED] drm_test_check_in_clone_mode ===========
[17:53:13] =============== drm_test_check_valid_clones ===============
[17:53:13] [PASSED] not_in_clone_mode
[17:53:13] [PASSED] valid_clone
[17:53:13] [PASSED] invalid_clone
[17:53:13] =========== [PASSED] drm_test_check_valid_clones ===========
[17:53:13] ============= [PASSED] drm_validate_clone_mode =============
[17:53:13] ============= drm_validate_modeset (1 subtest) =============
[17:53:13] [PASSED] drm_test_check_connector_changed_modeset
[17:53:13] ============== [PASSED] drm_validate_modeset ===============
[17:53:13] ====== drm_test_bridge_get_current_state (2 subtests) ======
[17:53:13] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[17:53:13] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[17:53:13] ======== [PASSED] drm_test_bridge_get_current_state ========
[17:53:13] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[17:53:13] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[17:53:13] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[17:53:13] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[17:53:13] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[17:53:13] ============== drm_bridge_alloc (2 subtests) ===============
[17:53:13] [PASSED] drm_test_drm_bridge_alloc_basic
[17:53:13] [PASSED] drm_test_drm_bridge_alloc_get_put
[17:53:13] ================ [PASSED] drm_bridge_alloc =================
[17:53:13] ================== drm_buddy (7 subtests) ==================
[17:53:13] [PASSED] drm_test_buddy_alloc_limit
[17:53:13] [PASSED] drm_test_buddy_alloc_optimistic
[17:53:13] [PASSED] drm_test_buddy_alloc_pessimistic
[17:53:13] [PASSED] drm_test_buddy_alloc_pathological
[17:53:13] [PASSED] drm_test_buddy_alloc_contiguous
[17:53:13] [PASSED] drm_test_buddy_alloc_clear
[17:53:13] [PASSED] drm_test_buddy_alloc_range_bias
[17:53:13] ==================== [PASSED] drm_buddy ====================
[17:53:13] ============= drm_cmdline_parser (40 subtests) =============
[17:53:13] [PASSED] drm_test_cmdline_force_d_only
[17:53:13] [PASSED] drm_test_cmdline_force_D_only_dvi
[17:53:13] [PASSED] drm_test_cmdline_force_D_only_hdmi
[17:53:13] [PASSED] drm_test_cmdline_force_D_only_not_digital
[17:53:13] [PASSED] drm_test_cmdline_force_e_only
[17:53:13] [PASSED] drm_test_cmdline_res
[17:53:13] [PASSED] drm_test_cmdline_res_vesa
[17:53:13] [PASSED] drm_test_cmdline_res_vesa_rblank
[17:53:13] [PASSED] drm_test_cmdline_res_rblank
[17:53:13] [PASSED] drm_test_cmdline_res_bpp
[17:53:13] [PASSED] drm_test_cmdline_res_refresh
[17:53:13] [PASSED] drm_test_cmdline_res_bpp_refresh
[17:53:13] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[17:53:13] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[17:53:13] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[17:53:13] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[17:53:13] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[17:53:13] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[17:53:13] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[17:53:13] [PASSED] drm_test_cmdline_res_margins_force_on
[17:53:13] [PASSED] drm_test_cmdline_res_vesa_margins
[17:53:13] [PASSED] drm_test_cmdline_name
[17:53:13] [PASSED] drm_test_cmdline_name_bpp
[17:53:13] [PASSED] drm_test_cmdline_name_option
[17:53:13] [PASSED] drm_test_cmdline_name_bpp_option
[17:53:13] [PASSED] drm_test_cmdline_rotate_0
[17:53:13] [PASSED] drm_test_cmdline_rotate_90
[17:53:13] [PASSED] drm_test_cmdline_rotate_180
[17:53:13] [PASSED] drm_test_cmdline_rotate_270
[17:53:13] [PASSED] drm_test_cmdline_hmirror
[17:53:13] [PASSED] drm_test_cmdline_vmirror
[17:53:13] [PASSED] drm_test_cmdline_margin_options
[17:53:13] [PASSED] drm_test_cmdline_multiple_options
[17:53:13] [PASSED] drm_test_cmdline_bpp_extra_and_option
[17:53:13] [PASSED] drm_test_cmdline_extra_and_option
[17:53:13] [PASSED] drm_test_cmdline_freestanding_options
[17:53:13] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[17:53:13] [PASSED] drm_test_cmdline_panel_orientation
[17:53:13] ================ drm_test_cmdline_invalid =================
[17:53:13] [PASSED] margin_only
[17:53:13] [PASSED] interlace_only
[17:53:13] [PASSED] res_missing_x
[17:53:13] [PASSED] res_missing_y
[17:53:13] [PASSED] res_bad_y
[17:53:13] [PASSED] res_missing_y_bpp
[17:53:13] [PASSED] res_bad_bpp
[17:53:13] [PASSED] res_bad_refresh
[17:53:13] [PASSED] res_bpp_refresh_force_on_off
[17:53:13] [PASSED] res_invalid_mode
[17:53:13] [PASSED] res_bpp_wrong_place_mode
[17:53:13] [PASSED] name_bpp_refresh
[17:53:13] [PASSED] name_refresh
[17:53:13] [PASSED] name_refresh_wrong_mode
[17:53:13] [PASSED] name_refresh_invalid_mode
[17:53:13] [PASSED] rotate_multiple
[17:53:13] [PASSED] rotate_invalid_val
[17:53:13] [PASSED] rotate_truncated
[17:53:13] [PASSED] invalid_option
[17:53:13] [PASSED] invalid_tv_option
[17:53:13] [PASSED] truncated_tv_option
[17:53:13] ============ [PASSED] drm_test_cmdline_invalid =============
[17:53:13] =============== drm_test_cmdline_tv_options ===============
[17:53:13] [PASSED] NTSC
[17:53:13] [PASSED] NTSC_443
[17:53:13] [PASSED] NTSC_J
[17:53:13] [PASSED] PAL
[17:53:13] [PASSED] PAL_M
[17:53:13] [PASSED] PAL_N
[17:53:13] [PASSED] SECAM
[17:53:13] [PASSED] MONO_525
[17:53:13] [PASSED] MONO_625
[17:53:13] =========== [PASSED] drm_test_cmdline_tv_options ===========
[17:53:13] =============== [PASSED] drm_cmdline_parser ================
[17:53:13] ========== drmm_connector_hdmi_init (20 subtests) ==========
[17:53:13] [PASSED] drm_test_connector_hdmi_init_valid
[17:53:13] [PASSED] drm_test_connector_hdmi_init_bpc_8
[17:53:13] [PASSED] drm_test_connector_hdmi_init_bpc_10
[17:53:13] [PASSED] drm_test_connector_hdmi_init_bpc_12
[17:53:13] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[17:53:13] [PASSED] drm_test_connector_hdmi_init_bpc_null
[17:53:13] [PASSED] drm_test_connector_hdmi_init_formats_empty
[17:53:13] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[17:53:13] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[17:53:13] [PASSED] supported_formats=0x9 yuv420_allowed=1
[17:53:13] [PASSED] supported_formats=0x9 yuv420_allowed=0
[17:53:13] [PASSED] supported_formats=0x3 yuv420_allowed=1
[17:53:13] [PASSED] supported_formats=0x3 yuv420_allowed=0
[17:53:13] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[17:53:13] [PASSED] drm_test_connector_hdmi_init_null_ddc
[17:53:13] [PASSED] drm_test_connector_hdmi_init_null_product
[17:53:13] [PASSED] drm_test_connector_hdmi_init_null_vendor
[17:53:13] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[17:53:13] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[17:53:13] [PASSED] drm_test_connector_hdmi_init_product_valid
[17:53:13] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[17:53:13] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[17:53:13] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[17:53:13] ========= drm_test_connector_hdmi_init_type_valid =========
[17:53:13] [PASSED] HDMI-A
[17:53:13] [PASSED] HDMI-B
[17:53:13] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[17:53:13] ======== drm_test_connector_hdmi_init_type_invalid ========
[17:53:13] [PASSED] Unknown
[17:53:13] [PASSED] VGA
[17:53:13] [PASSED] DVI-I
[17:53:13] [PASSED] DVI-D
[17:53:13] [PASSED] DVI-A
[17:53:13] [PASSED] Composite
[17:53:13] [PASSED] SVIDEO
[17:53:13] [PASSED] LVDS
[17:53:13] [PASSED] Component
[17:53:13] [PASSED] DIN
[17:53:13] [PASSED] DP
[17:53:13] [PASSED] TV
[17:53:13] [PASSED] eDP
[17:53:13] [PASSED] Virtual
[17:53:13] [PASSED] DSI
[17:53:13] [PASSED] DPI
[17:53:13] [PASSED] Writeback
[17:53:13] [PASSED] SPI
[17:53:13] [PASSED] USB
[17:53:13] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[17:53:13] ============ [PASSED] drmm_connector_hdmi_init =============
[17:53:13] ============= drmm_connector_init (3 subtests) =============
[17:53:13] [PASSED] drm_test_drmm_connector_init
[17:53:13] [PASSED] drm_test_drmm_connector_init_null_ddc
[17:53:13] ========= drm_test_drmm_connector_init_type_valid =========
[17:53:13] [PASSED] Unknown
[17:53:13] [PASSED] VGA
[17:53:13] [PASSED] DVI-I
[17:53:13] [PASSED] DVI-D
[17:53:13] [PASSED] DVI-A
[17:53:13] [PASSED] Composite
[17:53:13] [PASSED] SVIDEO
[17:53:13] [PASSED] LVDS
[17:53:13] [PASSED] Component
[17:53:13] [PASSED] DIN
[17:53:13] [PASSED] DP
[17:53:13] [PASSED] HDMI-A
[17:53:13] [PASSED] HDMI-B
[17:53:13] [PASSED] TV
[17:53:13] [PASSED] eDP
[17:53:13] [PASSED] Virtual
[17:53:13] [PASSED] DSI
[17:53:13] [PASSED] DPI
[17:53:13] [PASSED] Writeback
[17:53:13] [PASSED] SPI
[17:53:13] [PASSED] USB
[17:53:13] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[17:53:13] =============== [PASSED] drmm_connector_init ===============
[17:53:13] ========= drm_connector_dynamic_init (6 subtests) ==========
[17:53:13] [PASSED] drm_test_drm_connector_dynamic_init
[17:53:13] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[17:53:13] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[17:53:13] [PASSED] drm_test_drm_connector_dynamic_init_properties
[17:53:13] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[17:53:13] [PASSED] Unknown
[17:53:13] [PASSED] VGA
[17:53:13] [PASSED] DVI-I
[17:53:13] [PASSED] DVI-D
[17:53:13] [PASSED] DVI-A
[17:53:13] [PASSED] Composite
[17:53:13] [PASSED] SVIDEO
[17:53:13] [PASSED] LVDS
[17:53:13] [PASSED] Component
[17:53:13] [PASSED] DIN
[17:53:13] [PASSED] DP
[17:53:13] [PASSED] HDMI-A
[17:53:13] [PASSED] HDMI-B
[17:53:13] [PASSED] TV
[17:53:13] [PASSED] eDP
[17:53:13] [PASSED] Virtual
[17:53:13] [PASSED] DSI
[17:53:13] [PASSED] DPI
[17:53:13] [PASSED] Writeback
[17:53:13] [PASSED] SPI
[17:53:13] [PASSED] USB
[17:53:13] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[17:53:13] ======== drm_test_drm_connector_dynamic_init_name =========
[17:53:13] [PASSED] Unknown
[17:53:13] [PASSED] VGA
[17:53:13] [PASSED] DVI-I
[17:53:13] [PASSED] DVI-D
[17:53:13] [PASSED] DVI-A
[17:53:13] [PASSED] Composite
[17:53:13] [PASSED] SVIDEO
[17:53:13] [PASSED] LVDS
[17:53:13] [PASSED] Component
[17:53:13] [PASSED] DIN
[17:53:13] [PASSED] DP
[17:53:13] [PASSED] HDMI-A
[17:53:13] [PASSED] HDMI-B
[17:53:13] [PASSED] TV
[17:53:13] [PASSED] eDP
[17:53:13] [PASSED] Virtual
[17:53:13] [PASSED] DSI
[17:53:13] [PASSED] DPI
[17:53:13] [PASSED] Writeback
[17:53:13] [PASSED] SPI
[17:53:13] [PASSED] USB
[17:53:13] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[17:53:13] =========== [PASSED] drm_connector_dynamic_init ============
[17:53:13] ==== drm_connector_dynamic_register_early (4 subtests) =====
[17:53:13] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[17:53:13] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[17:53:13] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[17:53:13] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[17:53:13] ====== [PASSED] drm_connector_dynamic_register_early =======
[17:53:13] ======= drm_connector_dynamic_register (7 subtests) ========
[17:53:13] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[17:53:13] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[17:53:13] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[17:53:13] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[17:53:13] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[17:53:13] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[17:53:13] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[17:53:13] ========= [PASSED] drm_connector_dynamic_register ==========
[17:53:13] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[17:53:13] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[17:53:13] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[17:53:13] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[17:53:13] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[17:53:13] ========== drm_test_get_tv_mode_from_name_valid ===========
[17:53:13] [PASSED] NTSC
[17:53:13] [PASSED] NTSC-443
[17:53:13] [PASSED] NTSC-J
[17:53:13] [PASSED] PAL
[17:53:13] [PASSED] PAL-M
[17:53:13] [PASSED] PAL-N
[17:53:13] [PASSED] SECAM
[17:53:13] [PASSED] Mono
[17:53:13] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[17:53:13] [PASSED] drm_test_get_tv_mode_from_name_truncated
[17:53:13] ============ [PASSED] drm_get_tv_mode_from_name ============
[17:53:13] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[17:53:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[17:53:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[17:53:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[17:53:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[17:53:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[17:53:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[17:53:13] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[17:53:13] [PASSED] VIC 96
[17:53:13] [PASSED] VIC 97
[17:53:13] [PASSED] VIC 101
[17:53:13] [PASSED] VIC 102
[17:53:13] [PASSED] VIC 106
[17:53:13] [PASSED] VIC 107
[17:53:13] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[17:53:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[17:53:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[17:53:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[17:53:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[17:53:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[17:53:13] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[17:53:13] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[17:53:13] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[17:53:13] [PASSED] Automatic
[17:53:13] [PASSED] Full
[17:53:13] [PASSED] Limited 16:235
[17:53:13] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[17:53:13] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[17:53:13] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[17:53:13] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[17:53:13] === drm_test_drm_hdmi_connector_get_output_format_name ====
[17:53:13] [PASSED] RGB
[17:53:13] [PASSED] YUV 4:2:0
[17:53:13] [PASSED] YUV 4:2:2
[17:53:13] [PASSED] YUV 4:4:4
[17:53:13] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[17:53:13] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[17:53:13] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[17:53:13] ============= drm_damage_helper (21 subtests) ==============
[17:53:13] [PASSED] drm_test_damage_iter_no_damage
[17:53:13] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[17:53:13] [PASSED] drm_test_damage_iter_no_damage_src_moved
[17:53:13] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[17:53:13] [PASSED] drm_test_damage_iter_no_damage_not_visible
[17:53:13] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[17:53:13] [PASSED] drm_test_damage_iter_no_damage_no_fb
[17:53:13] [PASSED] drm_test_damage_iter_simple_damage
[17:53:13] [PASSED] drm_test_damage_iter_single_damage
[17:53:13] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[17:53:13] [PASSED] drm_test_damage_iter_single_damage_outside_src
[17:53:13] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[17:53:13] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[17:53:13] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[17:53:13] [PASSED] drm_test_damage_iter_single_damage_src_moved
[17:53:13] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[17:53:13] [PASSED] drm_test_damage_iter_damage
[17:53:13] [PASSED] drm_test_damage_iter_damage_one_intersect
[17:53:13] [PASSED] drm_test_damage_iter_damage_one_outside
[17:53:13] [PASSED] drm_test_damage_iter_damage_src_moved
[17:53:13] [PASSED] drm_test_damage_iter_damage_not_visible
[17:53:13] ================ [PASSED] drm_damage_helper ================
[17:53:13] ============== drm_dp_mst_helper (3 subtests) ==============
[17:53:13] ============== drm_test_dp_mst_calc_pbn_mode ==============
[17:53:13] [PASSED] Clock 154000 BPP 30 DSC disabled
[17:53:13] [PASSED] Clock 234000 BPP 30 DSC disabled
[17:53:13] [PASSED] Clock 297000 BPP 24 DSC disabled
[17:53:13] [PASSED] Clock 332880 BPP 24 DSC enabled
[17:53:13] [PASSED] Clock 324540 BPP 24 DSC enabled
[17:53:13] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[17:53:13] ============== drm_test_dp_mst_calc_pbn_div ===============
[17:53:13] [PASSED] Link rate 2000000 lane count 4
[17:53:13] [PASSED] Link rate 2000000 lane count 2
[17:53:13] [PASSED] Link rate 2000000 lane count 1
[17:53:13] [PASSED] Link rate 1350000 lane count 4
[17:53:13] [PASSED] Link rate 1350000 lane count 2
[17:53:13] [PASSED] Link rate 1350000 lane count 1
[17:53:13] [PASSED] Link rate 1000000 lane count 4
[17:53:13] [PASSED] Link rate 1000000 lane count 2
[17:53:13] [PASSED] Link rate 1000000 lane count 1
[17:53:13] [PASSED] Link rate 810000 lane count 4
[17:53:13] [PASSED] Link rate 810000 lane count 2
[17:53:13] [PASSED] Link rate 810000 lane count 1
[17:53:13] [PASSED] Link rate 540000 lane count 4
[17:53:13] [PASSED] Link rate 540000 lane count 2
[17:53:13] [PASSED] Link rate 540000 lane count 1
[17:53:13] [PASSED] Link rate 270000 lane count 4
[17:53:13] [PASSED] Link rate 270000 lane count 2
[17:53:13] [PASSED] Link rate 270000 lane count 1
[17:53:13] [PASSED] Link rate 162000 lane count 4
[17:53:13] [PASSED] Link rate 162000 lane count 2
[17:53:13] [PASSED] Link rate 162000 lane count 1
[17:53:13] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[17:53:13] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[17:53:13] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[17:53:13] [PASSED] DP_POWER_UP_PHY with port number
[17:53:13] [PASSED] DP_POWER_DOWN_PHY with port number
[17:53:13] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[17:53:13] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[17:53:13] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[17:53:13] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[17:53:13] [PASSED] DP_QUERY_PAYLOAD with port number
[17:53:13] [PASSED] DP_QUERY_PAYLOAD with VCPI
[17:53:13] [PASSED] DP_REMOTE_DPCD_READ with port number
[17:53:13] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[17:53:13] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[17:53:13] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[17:53:13] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[17:53:13] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[17:53:13] [PASSED] DP_REMOTE_I2C_READ with port number
[17:53:13] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[17:53:13] [PASSED] DP_REMOTE_I2C_READ with transactions array
[17:53:13] [PASSED] DP_REMOTE_I2C_WRITE with port number
[17:53:13] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[17:53:13] [PASSED] DP_REMOTE_I2C_WRITE with data array
[17:53:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[17:53:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[17:53:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[17:53:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[17:53:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[17:53:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[17:53:13] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[17:53:13] ================ [PASSED] drm_dp_mst_helper ================
[17:53:13] ================== drm_exec (7 subtests) ===================
[17:53:13] [PASSED] sanitycheck
[17:53:13] [PASSED] test_lock
[17:53:13] [PASSED] test_lock_unlock
[17:53:13] [PASSED] test_duplicates
[17:53:13] [PASSED] test_prepare
[17:53:13] [PASSED] test_prepare_array
[17:53:13] [PASSED] test_multiple_loops
[17:53:13] ==================== [PASSED] drm_exec =====================
[17:53:13] =========== drm_format_helper_test (17 subtests) ===========
[17:53:13] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[17:53:13] [PASSED] single_pixel_source_buffer
[17:53:13] [PASSED] single_pixel_clip_rectangle
[17:53:13] [PASSED] well_known_colors
[17:53:13] [PASSED] destination_pitch
[17:53:13] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[17:53:13] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[17:53:13] [PASSED] single_pixel_source_buffer
[17:53:13] [PASSED] single_pixel_clip_rectangle
[17:53:13] [PASSED] well_known_colors
[17:53:13] [PASSED] destination_pitch
[17:53:13] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[17:53:13] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[17:53:13] [PASSED] single_pixel_source_buffer
[17:53:13] [PASSED] single_pixel_clip_rectangle
[17:53:13] [PASSED] well_known_colors
[17:53:13] [PASSED] destination_pitch
[17:53:13] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[17:53:13] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[17:53:13] [PASSED] single_pixel_source_buffer
[17:53:13] [PASSED] single_pixel_clip_rectangle
[17:53:13] [PASSED] well_known_colors
[17:53:13] [PASSED] destination_pitch
[17:53:13] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[17:53:13] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[17:53:13] [PASSED] single_pixel_source_buffer
[17:53:13] [PASSED] single_pixel_clip_rectangle
[17:53:13] [PASSED] well_known_colors
[17:53:13] [PASSED] destination_pitch
[17:53:13] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[17:53:13] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[17:53:13] [PASSED] single_pixel_source_buffer
[17:53:13] [PASSED] single_pixel_clip_rectangle
[17:53:13] [PASSED] well_known_colors
[17:53:13] [PASSED] destination_pitch
[17:53:13] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[17:53:13] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[17:53:13] [PASSED] single_pixel_source_buffer
[17:53:13] [PASSED] single_pixel_clip_rectangle
[17:53:13] [PASSED] well_known_colors
[17:53:13] [PASSED] destination_pitch
[17:53:13] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[17:53:13] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[17:53:13] [PASSED] single_pixel_source_buffer
[17:53:13] [PASSED] single_pixel_clip_rectangle
[17:53:13] [PASSED] well_known_colors
[17:53:13] [PASSED] destination_pitch
[17:53:13] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[17:53:13] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[17:53:13] [PASSED] single_pixel_source_buffer
[17:53:13] [PASSED] single_pixel_clip_rectangle
[17:53:13] [PASSED] well_known_colors
[17:53:13] [PASSED] destination_pitch
[17:53:13] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[17:53:13] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[17:53:13] [PASSED] single_pixel_source_buffer
[17:53:13] [PASSED] single_pixel_clip_rectangle
[17:53:13] [PASSED] well_known_colors
[17:53:13] [PASSED] destination_pitch
[17:53:13] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[17:53:13] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[17:53:13] [PASSED] single_pixel_source_buffer
[17:53:13] [PASSED] single_pixel_clip_rectangle
[17:53:13] [PASSED] well_known_colors
[17:53:13] [PASSED] destination_pitch
[17:53:13] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[17:53:13] ============== drm_test_fb_xrgb8888_to_mono ===============
[17:53:13] [PASSED] single_pixel_source_buffer
[17:53:13] [PASSED] single_pixel_clip_rectangle
[17:53:13] [PASSED] well_known_colors
[17:53:13] [PASSED] destination_pitch
[17:53:13] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[17:53:13] ==================== drm_test_fb_swab =====================
[17:53:13] [PASSED] single_pixel_source_buffer
[17:53:13] [PASSED] single_pixel_clip_rectangle
[17:53:13] [PASSED] well_known_colors
[17:53:13] [PASSED] destination_pitch
[17:53:13] ================ [PASSED] drm_test_fb_swab =================
[17:53:13] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[17:53:13] [PASSED] single_pixel_source_buffer
[17:53:13] [PASSED] single_pixel_clip_rectangle
[17:53:13] [PASSED] well_known_colors
[17:53:13] [PASSED] destination_pitch
[17:53:13] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[17:53:13] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[17:53:13] [PASSED] single_pixel_source_buffer
[17:53:13] [PASSED] single_pixel_clip_rectangle
[17:53:13] [PASSED] well_known_colors
[17:53:13] [PASSED] destination_pitch
[17:53:13] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[17:53:13] ================= drm_test_fb_clip_offset =================
[17:53:13] [PASSED] pass through
[17:53:13] [PASSED] horizontal offset
[17:53:13] [PASSED] vertical offset
[17:53:13] [PASSED] horizontal and vertical offset
[17:53:13] [PASSED] horizontal offset (custom pitch)
[17:53:13] [PASSED] vertical offset (custom pitch)
[17:53:13] [PASSED] horizontal and vertical offset (custom pitch)
[17:53:13] ============= [PASSED] drm_test_fb_clip_offset =============
[17:53:13] =================== drm_test_fb_memcpy ====================
[17:53:13] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[17:53:13] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[17:53:13] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[17:53:13] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[17:53:13] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[17:53:13] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[17:53:13] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[17:53:13] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[17:53:13] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[17:53:13] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[17:53:13] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[17:53:13] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[17:53:13] =============== [PASSED] drm_test_fb_memcpy ================
[17:53:13] ============= [PASSED] drm_format_helper_test ==============
[17:53:13] ================= drm_format (18 subtests) =================
[17:53:13] [PASSED] drm_test_format_block_width_invalid
[17:53:13] [PASSED] drm_test_format_block_width_one_plane
[17:53:13] [PASSED] drm_test_format_block_width_two_plane
[17:53:13] [PASSED] drm_test_format_block_width_three_plane
[17:53:13] [PASSED] drm_test_format_block_width_tiled
[17:53:13] [PASSED] drm_test_format_block_height_invalid
[17:53:13] [PASSED] drm_test_format_block_height_one_plane
[17:53:13] [PASSED] drm_test_format_block_height_two_plane
[17:53:13] [PASSED] drm_test_format_block_height_three_plane
[17:53:13] [PASSED] drm_test_format_block_height_tiled
[17:53:13] [PASSED] drm_test_format_min_pitch_invalid
[17:53:13] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[17:53:13] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[17:53:13] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[17:53:13] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[17:53:13] [PASSED] drm_test_format_min_pitch_two_plane
[17:53:13] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[17:53:13] [PASSED] drm_test_format_min_pitch_tiled
[17:53:13] =================== [PASSED] drm_format ====================
[17:53:13] ============== drm_framebuffer (10 subtests) ===============
[17:53:13] ========== drm_test_framebuffer_check_src_coords ==========
[17:53:13] [PASSED] Success: source fits into fb
[17:53:13] [PASSED] Fail: overflowing fb with x-axis coordinate
[17:53:13] [PASSED] Fail: overflowing fb with y-axis coordinate
[17:53:13] [PASSED] Fail: overflowing fb with source width
[17:53:13] [PASSED] Fail: overflowing fb with source height
[17:53:13] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[17:53:13] [PASSED] drm_test_framebuffer_cleanup
[17:53:13] =============== drm_test_framebuffer_create ===============
[17:53:13] [PASSED] ABGR8888 normal sizes
[17:53:13] [PASSED] ABGR8888 max sizes
[17:53:13] [PASSED] ABGR8888 pitch greater than min required
[17:53:13] [PASSED] ABGR8888 pitch less than min required
[17:53:13] [PASSED] ABGR8888 Invalid width
[17:53:13] [PASSED] ABGR8888 Invalid buffer handle
[17:53:13] [PASSED] No pixel format
[17:53:13] [PASSED] ABGR8888 Width 0
[17:53:13] [PASSED] ABGR8888 Height 0
[17:53:13] [PASSED] ABGR8888 Out of bound height * pitch combination
[17:53:13] [PASSED] ABGR8888 Large buffer offset
[17:53:13] [PASSED] ABGR8888 Buffer offset for inexistent plane
[17:53:13] [PASSED] ABGR8888 Invalid flag
[17:53:13] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[17:53:13] [PASSED] ABGR8888 Valid buffer modifier
[17:53:13] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[17:53:13] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[17:53:13] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[17:53:13] [PASSED] NV12 Normal sizes
[17:53:13] [PASSED] NV12 Max sizes
[17:53:13] [PASSED] NV12 Invalid pitch
[17:53:13] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[17:53:13] [PASSED] NV12 different modifier per-plane
[17:53:13] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[17:53:13] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[17:53:13] [PASSED] NV12 Modifier for inexistent plane
[17:53:13] [PASSED] NV12 Handle for inexistent plane
[17:53:13] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[17:53:13] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[17:53:13] [PASSED] YVU420 Normal sizes
[17:53:13] [PASSED] YVU420 Max sizes
[17:53:13] [PASSED] YVU420 Invalid pitch
[17:53:13] [PASSED] YVU420 Different pitches
[17:53:13] [PASSED] YVU420 Different buffer offsets/pitches
[17:53:13] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[17:53:13] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[17:53:13] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[17:53:13] [PASSED] YVU420 Valid modifier
[17:53:13] [PASSED] YVU420 Different modifiers per plane
[17:53:13] [PASSED] YVU420 Modifier for inexistent plane
[17:53:13] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[17:53:13] [PASSED] X0L2 Normal sizes
[17:53:13] [PASSED] X0L2 Max sizes
[17:53:13] [PASSED] X0L2 Invalid pitch
[17:53:13] [PASSED] X0L2 Pitch greater than minimum required
[17:53:13] [PASSED] X0L2 Handle for inexistent plane
[17:53:13] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[17:53:13] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[17:53:13] [PASSED] X0L2 Valid modifier
[17:53:13] [PASSED] X0L2 Modifier for inexistent plane
[17:53:13] =========== [PASSED] drm_test_framebuffer_create ===========
[17:53:13] [PASSED] drm_test_framebuffer_free
[17:53:13] [PASSED] drm_test_framebuffer_init
[17:53:13] [PASSED] drm_test_framebuffer_init_bad_format
[17:53:13] [PASSED] drm_test_framebuffer_init_dev_mismatch
[17:53:13] [PASSED] drm_test_framebuffer_lookup
[17:53:13] [PASSED] drm_test_framebuffer_lookup_inexistent
[17:53:13] [PASSED] drm_test_framebuffer_modifiers_not_supported
[17:53:13] ================= [PASSED] drm_framebuffer =================
[17:53:13] ================ drm_gem_shmem (8 subtests) ================
[17:53:13] [PASSED] drm_gem_shmem_test_obj_create
[17:53:13] [PASSED] drm_gem_shmem_test_obj_create_private
[17:53:13] [PASSED] drm_gem_shmem_test_pin_pages
[17:53:13] [PASSED] drm_gem_shmem_test_vmap
[17:53:13] [PASSED] drm_gem_shmem_test_get_pages_sgt
[17:53:13] [PASSED] drm_gem_shmem_test_get_sg_table
[17:53:13] [PASSED] drm_gem_shmem_test_madvise
[17:53:13] [PASSED] drm_gem_shmem_test_purge
[17:53:13] ================== [PASSED] drm_gem_shmem ==================
[17:53:13] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[17:53:13] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[17:53:13] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[17:53:13] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[17:53:13] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[17:53:13] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[17:53:13] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[17:53:13] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[17:53:13] [PASSED] Automatic
[17:53:13] [PASSED] Full
[17:53:13] [PASSED] Limited 16:235
[17:53:13] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[17:53:13] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[17:53:13] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[17:53:13] [PASSED] drm_test_check_disable_connector
[17:53:13] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[17:53:13] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[17:53:13] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[17:53:13] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[17:53:13] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[17:53:13] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[17:53:13] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[17:53:13] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[17:53:13] [PASSED] drm_test_check_output_bpc_dvi
[17:53:13] [PASSED] drm_test_check_output_bpc_format_vic_1
[17:53:13] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[17:53:13] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[17:53:13] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[17:53:13] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[17:53:13] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[17:53:13] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[17:53:13] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[17:53:13] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[17:53:13] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[17:53:13] [PASSED] drm_test_check_broadcast_rgb_value
[17:53:13] [PASSED] drm_test_check_bpc_8_value
[17:53:13] [PASSED] drm_test_check_bpc_10_value
[17:53:13] [PASSED] drm_test_check_bpc_12_value
[17:53:13] [PASSED] drm_test_check_format_value
[17:53:13] [PASSED] drm_test_check_tmds_char_value
[17:53:13] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[17:53:13] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[17:53:13] [PASSED] drm_test_check_mode_valid
[17:53:13] [PASSED] drm_test_check_mode_valid_reject
[17:53:13] [PASSED] drm_test_check_mode_valid_reject_rate
[17:53:13] [PASSED] drm_test_check_mode_valid_reject_max_clock
[17:53:13] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[17:53:13] ================= drm_managed (2 subtests) =================
[17:53:13] [PASSED] drm_test_managed_release_action
[17:53:13] [PASSED] drm_test_managed_run_action
[17:53:13] =================== [PASSED] drm_managed ===================
[17:53:13] =================== drm_mm (6 subtests) ====================
[17:53:13] [PASSED] drm_test_mm_init
[17:53:13] [PASSED] drm_test_mm_debug
[17:53:13] [PASSED] drm_test_mm_align32
[17:53:13] [PASSED] drm_test_mm_align64
[17:53:13] [PASSED] drm_test_mm_lowest
[17:53:13] [PASSED] drm_test_mm_highest
[17:53:13] ===================== [PASSED] drm_mm ======================
[17:53:13] ============= drm_modes_analog_tv (5 subtests) =============
[17:53:13] [PASSED] drm_test_modes_analog_tv_mono_576i
[17:53:13] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[17:53:13] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[17:53:13] [PASSED] drm_test_modes_analog_tv_pal_576i
[17:53:13] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[17:53:13] =============== [PASSED] drm_modes_analog_tv ===============
[17:53:13] ============== drm_plane_helper (2 subtests) ===============
[17:53:13] =============== drm_test_check_plane_state ================
[17:53:13] [PASSED] clipping_simple
[17:53:13] [PASSED] clipping_rotate_reflect
[17:53:13] [PASSED] positioning_simple
[17:53:13] [PASSED] upscaling
[17:53:13] [PASSED] downscaling
[17:53:13] [PASSED] rounding1
[17:53:13] [PASSED] rounding2
[17:53:13] [PASSED] rounding3
[17:53:13] [PASSED] rounding4
[17:53:13] =========== [PASSED] drm_test_check_plane_state ============
[17:53:13] =========== drm_test_check_invalid_plane_state ============
[17:53:13] [PASSED] positioning_invalid
[17:53:13] [PASSED] upscaling_invalid
[17:53:13] [PASSED] downscaling_invalid
[17:53:13] ======= [PASSED] drm_test_check_invalid_plane_state ========
[17:53:13] ================ [PASSED] drm_plane_helper =================
[17:53:13] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[17:53:13] ====== drm_test_connector_helper_tv_get_modes_check =======
[17:53:13] [PASSED] None
[17:53:13] [PASSED] PAL
[17:53:13] [PASSED] NTSC
[17:53:13] [PASSED] Both, NTSC Default
[17:53:13] [PASSED] Both, PAL Default
[17:53:13] [PASSED] Both, NTSC Default, with PAL on command-line
[17:53:13] [PASSED] Both, PAL Default, with NTSC on command-line
[17:53:13] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[17:53:13] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[17:53:13] ================== drm_rect (9 subtests) ===================
[17:53:13] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[17:53:13] [PASSED] drm_test_rect_clip_scaled_not_clipped
[17:53:13] [PASSED] drm_test_rect_clip_scaled_clipped
[17:53:13] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[17:53:13] ================= drm_test_rect_intersect =================
[17:53:13] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[17:53:13] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[17:53:13] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[17:53:13] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[17:53:13] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[17:53:13] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[17:53:13] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[17:53:13] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[17:53:13] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[17:53:13] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[17:53:13] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[17:53:13] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[17:53:13] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[17:53:13] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[17:53:13] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[17:53:13] ============= [PASSED] drm_test_rect_intersect =============
[17:53:13] ================ drm_test_rect_calc_hscale ================
[17:53:13] [PASSED] normal use
[17:53:13] [PASSED] out of max range
[17:53:13] [PASSED] out of min range
[17:53:13] [PASSED] zero dst
[17:53:13] [PASSED] negative src
[17:53:13] [PASSED] negative dst
[17:53:13] ============ [PASSED] drm_test_rect_calc_hscale ============
[17:53:13] ================ drm_test_rect_calc_vscale ================
[17:53:13] [PASSED] normal use
[17:53:13] [PASSED] out of max range
[17:53:13] [PASSED] out of min range
[17:53:13] [PASSED] zero dst
[17:53:13] [PASSED] negative src
[17:53:13] [PASSED] negative dst
[17:53:13] ============ [PASSED] drm_test_rect_calc_vscale ============
[17:53:13] ================== drm_test_rect_rotate ===================
[17:53:13] [PASSED] reflect-x
[17:53:13] [PASSED] reflect-y
[17:53:13] [PASSED] rotate-0
[17:53:13] [PASSED] rotate-90
[17:53:13] [PASSED] rotate-180
[17:53:13] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[17:53:13] ============== [PASSED] drm_test_rect_rotate ===============
[17:53:13] ================ drm_test_rect_rotate_inv =================
[17:53:13] [PASSED] reflect-x
[17:53:13] [PASSED] reflect-y
[17:53:13] [PASSED] rotate-0
[17:53:13] [PASSED] rotate-90
[17:53:13] [PASSED] rotate-180
[17:53:13] [PASSED] rotate-270
[17:53:13] ============ [PASSED] drm_test_rect_rotate_inv =============
[17:53:13] ==================== [PASSED] drm_rect =====================
[17:53:13] ============ drm_sysfb_modeset_test (1 subtest) ============
[17:53:13] ============ drm_test_sysfb_build_fourcc_list =============
[17:53:13] [PASSED] no native formats
[17:53:13] [PASSED] XRGB8888 as native format
[17:53:13] [PASSED] remove duplicates
[17:53:13] [PASSED] convert alpha formats
[17:53:13] [PASSED] random formats
[17:53:13] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[17:53:13] ============= [PASSED] drm_sysfb_modeset_test ==============
[17:53:13] ============================================================
[17:53:13] Testing complete. Ran 616 tests: passed: 616
[17:53:13] Elapsed time: 24.707s total, 1.727s configuring, 22.762s building, 0.188s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[17:53:13] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:53:15] 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:53:23] Starting KUnit Kernel (1/1)...
[17:53:23] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:53:23] ================= ttm_device (5 subtests) ==================
[17:53:23] [PASSED] ttm_device_init_basic
[17:53:23] [PASSED] ttm_device_init_multiple
[17:53:23] [PASSED] ttm_device_fini_basic
[17:53:23] [PASSED] ttm_device_init_no_vma_man
[17:53:23] ================== ttm_device_init_pools ==================
[17:53:23] [PASSED] No DMA allocations, no DMA32 required
[17:53:23] [PASSED] DMA allocations, DMA32 required
[17:53:23] [PASSED] No DMA allocations, DMA32 required
[17:53:23] [PASSED] DMA allocations, no DMA32 required
[17:53:23] ============== [PASSED] ttm_device_init_pools ==============
[17:53:23] =================== [PASSED] ttm_device ====================
[17:53:23] ================== ttm_pool (8 subtests) ===================
[17:53:23] ================== ttm_pool_alloc_basic ===================
[17:53:23] [PASSED] One page
[17:53:23] [PASSED] More than one page
[17:53:23] [PASSED] Above the allocation limit
[17:53:23] [PASSED] One page, with coherent DMA mappings enabled
[17:53:23] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[17:53:23] ============== [PASSED] ttm_pool_alloc_basic ===============
[17:53:23] ============== ttm_pool_alloc_basic_dma_addr ==============
[17:53:23] [PASSED] One page
[17:53:23] [PASSED] More than one page
[17:53:23] [PASSED] Above the allocation limit
[17:53:23] [PASSED] One page, with coherent DMA mappings enabled
[17:53:23] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[17:53:23] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[17:53:23] [PASSED] ttm_pool_alloc_order_caching_match
[17:53:23] [PASSED] ttm_pool_alloc_caching_mismatch
[17:53:23] [PASSED] ttm_pool_alloc_order_mismatch
[17:53:23] [PASSED] ttm_pool_free_dma_alloc
[17:53:23] [PASSED] ttm_pool_free_no_dma_alloc
[17:53:23] [PASSED] ttm_pool_fini_basic
[17:53:23] ==================== [PASSED] ttm_pool =====================
[17:53:23] ================ ttm_resource (8 subtests) =================
[17:53:23] ================= ttm_resource_init_basic =================
[17:53:23] [PASSED] Init resource in TTM_PL_SYSTEM
[17:53:23] [PASSED] Init resource in TTM_PL_VRAM
[17:53:23] [PASSED] Init resource in a private placement
[17:53:23] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[17:53:23] ============= [PASSED] ttm_resource_init_basic =============
[17:53:23] [PASSED] ttm_resource_init_pinned
[17:53:23] [PASSED] ttm_resource_fini_basic
[17:53:23] [PASSED] ttm_resource_manager_init_basic
[17:53:23] [PASSED] ttm_resource_manager_usage_basic
[17:53:23] [PASSED] ttm_resource_manager_set_used_basic
[17:53:23] [PASSED] ttm_sys_man_alloc_basic
[17:53:23] [PASSED] ttm_sys_man_free_basic
[17:53:23] ================== [PASSED] ttm_resource ===================
[17:53:23] =================== ttm_tt (15 subtests) ===================
[17:53:23] ==================== ttm_tt_init_basic ====================
[17:53:23] [PASSED] Page-aligned size
[17:53:23] [PASSED] Extra pages requested
[17:53:23] ================ [PASSED] ttm_tt_init_basic ================
[17:53:23] [PASSED] ttm_tt_init_misaligned
[17:53:23] [PASSED] ttm_tt_fini_basic
[17:53:23] [PASSED] ttm_tt_fini_sg
[17:53:23] [PASSED] ttm_tt_fini_shmem
[17:53:23] [PASSED] ttm_tt_create_basic
[17:53:23] [PASSED] ttm_tt_create_invalid_bo_type
[17:53:23] [PASSED] ttm_tt_create_ttm_exists
[17:53:23] [PASSED] ttm_tt_create_failed
[17:53:23] [PASSED] ttm_tt_destroy_basic
[17:53:23] [PASSED] ttm_tt_populate_null_ttm
[17:53:23] [PASSED] ttm_tt_populate_populated_ttm
[17:53:23] [PASSED] ttm_tt_unpopulate_basic
[17:53:23] [PASSED] ttm_tt_unpopulate_empty_ttm
[17:53:23] [PASSED] ttm_tt_swapin_basic
[17:53:23] ===================== [PASSED] ttm_tt ======================
[17:53:23] =================== ttm_bo (14 subtests) ===================
[17:53:23] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[17:53:23] [PASSED] Cannot be interrupted and sleeps
[17:53:23] [PASSED] Cannot be interrupted, locks straight away
[17:53:23] [PASSED] Can be interrupted, sleeps
[17:53:23] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[17:53:23] [PASSED] ttm_bo_reserve_locked_no_sleep
[17:53:23] [PASSED] ttm_bo_reserve_no_wait_ticket
[17:53:23] [PASSED] ttm_bo_reserve_double_resv
[17:53:23] [PASSED] ttm_bo_reserve_interrupted
[17:53:23] [PASSED] ttm_bo_reserve_deadlock
[17:53:23] [PASSED] ttm_bo_unreserve_basic
[17:53:23] [PASSED] ttm_bo_unreserve_pinned
[17:53:23] [PASSED] ttm_bo_unreserve_bulk
[17:53:23] [PASSED] ttm_bo_put_basic
[17:53:23] [PASSED] ttm_bo_put_shared_resv
[17:53:23] [PASSED] ttm_bo_pin_basic
[17:53:23] [PASSED] ttm_bo_pin_unpin_resource
[17:53:23] [PASSED] ttm_bo_multiple_pin_one_unpin
[17:53:23] ===================== [PASSED] ttm_bo ======================
[17:53:23] ============== ttm_bo_validate (21 subtests) ===============
[17:53:23] ============== ttm_bo_init_reserved_sys_man ===============
[17:53:23] [PASSED] Buffer object for userspace
[17:53:23] [PASSED] Kernel buffer object
[17:53:23] [PASSED] Shared buffer object
[17:53:23] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[17:53:23] ============== ttm_bo_init_reserved_mock_man ==============
[17:53:23] [PASSED] Buffer object for userspace
[17:53:23] [PASSED] Kernel buffer object
[17:53:23] [PASSED] Shared buffer object
[17:53:23] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[17:53:23] [PASSED] ttm_bo_init_reserved_resv
[17:53:23] ================== ttm_bo_validate_basic ==================
[17:53:23] [PASSED] Buffer object for userspace
[17:53:23] [PASSED] Kernel buffer object
[17:53:23] [PASSED] Shared buffer object
[17:53:23] ============== [PASSED] ttm_bo_validate_basic ==============
[17:53:23] [PASSED] ttm_bo_validate_invalid_placement
[17:53:23] ============= ttm_bo_validate_same_placement ==============
[17:53:23] [PASSED] System manager
[17:53:23] [PASSED] VRAM manager
[17:53:23] ========= [PASSED] ttm_bo_validate_same_placement ==========
[17:53:23] [PASSED] ttm_bo_validate_failed_alloc
[17:53:23] [PASSED] ttm_bo_validate_pinned
[17:53:23] [PASSED] ttm_bo_validate_busy_placement
[17:53:23] ================ ttm_bo_validate_multihop =================
[17:53:23] [PASSED] Buffer object for userspace
[17:53:23] [PASSED] Kernel buffer object
[17:53:23] [PASSED] Shared buffer object
[17:53:23] ============ [PASSED] ttm_bo_validate_multihop =============
[17:53:23] ========== ttm_bo_validate_no_placement_signaled ==========
[17:53:23] [PASSED] Buffer object in system domain, no page vector
[17:53:23] [PASSED] Buffer object in system domain with an existing page vector
[17:53:23] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[17:53:23] ======== ttm_bo_validate_no_placement_not_signaled ========
[17:53:23] [PASSED] Buffer object for userspace
[17:53:23] [PASSED] Kernel buffer object
[17:53:23] [PASSED] Shared buffer object
[17:53:23] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[17:53:23] [PASSED] ttm_bo_validate_move_fence_signaled
[17:53:23] ========= ttm_bo_validate_move_fence_not_signaled =========
[17:53:23] [PASSED] Waits for GPU
[17:53:23] [PASSED] Tries to lock straight away
[17:53:23] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[17:53:23] [PASSED] ttm_bo_validate_happy_evict
[17:53:23] [PASSED] ttm_bo_validate_all_pinned_evict
[17:53:23] [PASSED] ttm_bo_validate_allowed_only_evict
[17:53:23] [PASSED] ttm_bo_validate_deleted_evict
[17:53:23] [PASSED] ttm_bo_validate_busy_domain_evict
[17:53:23] [PASSED] ttm_bo_validate_evict_gutting
[17:53:23] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[17:53:23] ================= [PASSED] ttm_bo_validate =================
[17:53:23] ============================================================
[17:53:23] Testing complete. Ran 101 tests: passed: 101
[17:53:23] Elapsed time: 9.879s total, 1.740s configuring, 7.923s building, 0.178s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH v2 3/5] drm/xe: Prepare format for GT-oriented messages in one place
2025-09-09 16:59 ` [PATCH v2 3/5] drm/xe: Prepare format for GT-oriented messages in one place Michal Wajdeczko
@ 2025-09-10 21:28 ` Rodrigo Vivi
2025-09-11 3:49 ` Lucas De Marchi
1 sibling, 0 replies; 17+ messages in thread
From: Rodrigo Vivi @ 2025-09-10 21:28 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
On Tue, Sep 09, 2025 at 06:59:37PM +0200, Michal Wajdeczko wrote:
> To avoid code duplication (and thus potential mistakes) and to
> allow easier changes (if needed) of the prefix format of the
> GT-oriented messages, prepare that prefix in dedicated macro.
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> ---
> v2: use uppercase for FMT macro (Rodrigo)
Thank you
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> ---
> drivers/gpu/drm/xe/xe_gt_printk.h | 13 +++++++++----
> 1 file changed, 9 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_printk.h b/drivers/gpu/drm/xe/xe_gt_printk.h
> index f2091c734aba..dcc45628cca9 100644
> --- a/drivers/gpu/drm/xe/xe_gt_printk.h
> +++ b/drivers/gpu/drm/xe/xe_gt_printk.h
> @@ -10,8 +10,10 @@
>
> #include "xe_gt_types.h"
>
> +#define __XE_GT_PRINTK_FMT(_gt, _fmt, _args...) "GT%u: " _fmt, (_gt)->info.id, ##_args
> +
> #define xe_gt_printk(_gt, _level, _fmt, ...) \
> - drm_##_level(>_to_xe(_gt)->drm, "GT%u: " _fmt, (_gt)->info.id, ##__VA_ARGS__)
> + drm_##_level(>_to_xe(_gt)->drm, __XE_GT_PRINTK_FMT((_gt), _fmt, ##__VA_ARGS__))
>
> #define xe_gt_err(_gt, _fmt, ...) \
> xe_gt_printk((_gt), err, _fmt, ##__VA_ARGS__)
> @@ -34,11 +36,14 @@
> #define xe_gt_dbg(_gt, _fmt, ...) \
> xe_gt_printk((_gt), dbg, _fmt, ##__VA_ARGS__)
>
> +#define xe_gt_WARN_type(_gt, _type, _condition, _fmt, ...) \
> + drm_WARN##_type(>_to_xe(_gt)->drm, _condition, _fmt, ## __VA_ARGS__)
> +
> #define xe_gt_WARN(_gt, _condition, _fmt, ...) \
> - drm_WARN(>_to_xe(_gt)->drm, _condition, "GT%u: " _fmt, (_gt)->info.id, ##__VA_ARGS__)
> + xe_gt_WARN_type((_gt),, _condition, __XE_GT_PRINTK_FMT((_gt), _fmt, ##__VA_ARGS__))
>
> #define xe_gt_WARN_ONCE(_gt, _condition, _fmt, ...) \
> - drm_WARN_ONCE(>_to_xe(_gt)->drm, _condition, "GT%u: " _fmt, (_gt)->info.id, ##__VA_ARGS__)
> + xe_gt_WARN_type((_gt), _ONCE, _condition, __XE_GT_PRINTK_FMT((_gt), _fmt, ##__VA_ARGS__))
>
> #define xe_gt_WARN_ON(_gt, _condition) \
> xe_gt_WARN((_gt), _condition, "%s(%s)", "WARN_ON", __stringify(_condition))
> @@ -72,7 +77,7 @@ static inline void __xe_gt_printfn_dbg(struct drm_printer *p, struct va_format *
> dbg = drm_dbg_printer(>_to_xe(gt)->drm, DRM_UT_DRIVER, NULL);
> dbg.origin = p->origin;
>
> - drm_printf(&dbg, "GT%u: %pV", gt->info.id, vaf);
> + drm_printf(&dbg, __XE_GT_PRINTK_FMT(gt, "%pV", vaf));
> }
>
> /**
> --
> 2.47.1
>
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH v2 4/5] drm/xe: Add dedicated printk macros for tile and device
2025-09-09 16:59 ` [PATCH v2 4/5] drm/xe: Add dedicated printk macros for tile and device Michal Wajdeczko
@ 2025-09-10 21:28 ` Rodrigo Vivi
2025-09-11 3:51 ` Lucas De Marchi
1 sibling, 0 replies; 17+ messages in thread
From: Rodrigo Vivi @ 2025-09-10 21:28 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe, Lucas De Marchi
On Tue, Sep 09, 2025 at 06:59:38PM +0200, Michal Wajdeczko wrote:
> We already have dedicated helper macros for printing GT-oriented
> messages but we don't have any to print messages that are tile
> oriented and we wrongly try to use plain drm or GT-oriented ones.
>
> Add tile-oriented printk messages and to provide similar coverage
> as we have with xe_assert() macros. Also add set of simple macros
> for the top level xe_device, which we could easily tweak to include
> extra device specific info if needed.
>
> Typical output of our printk macros will look like:
>
> [drm] this is xe_WARN()
> [drm] *ERROR* this is xe_err()
> [drm] *ERROR* this is xe_err_printer()
> [drm] this is xe_info()
> [drm] this is xe_info_printer()
> [drm:printk_demo.cold] this is xe_dbg()
> [drm:printk_demo.cold] this is xe_dbg_printer()
>
> [drm] Tile0: this is xe_tile_WARN()
> [drm] *ERROR* Tile0: this is xe_tile_err()
> [drm] *ERROR* Tile0: this is xe_tile_err_printer()
> [drm] Tile0: this is xe_tile_info()
> [drm] Tile0: this is xe_tile_info_printer()
> [drm:printk_demo.cold] Tile0: this is xe_tile_dbg()
> [drm:printk_demo.cold] Tile0: this is xe_tile_dbg_printer()
>
> [drm] Tile0: GT0: this is xe_gt_WARN()
> [drm] *ERROR* Tile0: GT0: this is xe_gt_err()
> [drm] *ERROR* Tile0: GT0: this is xe_gt_err_printer()
> [drm] Tile0: GT0: this is xe_gt_info()
> [drm] Tile0: GT0: this is xe_gt_info_printer()
> [drm:printk_demo.cold] Tile0: GT0: this is xe_gt_dbg()
> [drm:printk_demo.cold] Tile0: GT0: this is xe_gt_dbg_printer()
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> ---
> v2: use uppercase for FMT macro (Rodrigo)
Thank you
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> ---
> drivers/gpu/drm/xe/xe_gt_printk.h | 11 ++-
> drivers/gpu/drm/xe/xe_printk.h | 129 ++++++++++++++++++++++++++++
> drivers/gpu/drm/xe/xe_tile_printk.h | 127 +++++++++++++++++++++++++++
> 3 files changed, 261 insertions(+), 6 deletions(-)
> create mode 100644 drivers/gpu/drm/xe/xe_printk.h
> create mode 100644 drivers/gpu/drm/xe/xe_tile_printk.h
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_printk.h b/drivers/gpu/drm/xe/xe_gt_printk.h
> index dcc45628cca9..1313d32862db 100644
> --- a/drivers/gpu/drm/xe/xe_gt_printk.h
> +++ b/drivers/gpu/drm/xe/xe_gt_printk.h
> @@ -6,14 +6,13 @@
> #ifndef _XE_GT_PRINTK_H_
> #define _XE_GT_PRINTK_H_
>
> -#include <drm/drm_print.h>
> -
> #include "xe_gt_types.h"
> +#include "xe_tile_printk.h"
>
> #define __XE_GT_PRINTK_FMT(_gt, _fmt, _args...) "GT%u: " _fmt, (_gt)->info.id, ##_args
>
> #define xe_gt_printk(_gt, _level, _fmt, ...) \
> - drm_##_level(>_to_xe(_gt)->drm, __XE_GT_PRINTK_FMT((_gt), _fmt, ##__VA_ARGS__))
> + xe_tile_printk((_gt)->tile, _level, __XE_GT_PRINTK_FMT((_gt), _fmt, ##__VA_ARGS__))
>
> #define xe_gt_err(_gt, _fmt, ...) \
> xe_gt_printk((_gt), err, _fmt, ##__VA_ARGS__)
> @@ -37,7 +36,7 @@
> xe_gt_printk((_gt), dbg, _fmt, ##__VA_ARGS__)
>
> #define xe_gt_WARN_type(_gt, _type, _condition, _fmt, ...) \
> - drm_WARN##_type(>_to_xe(_gt)->drm, _condition, _fmt, ## __VA_ARGS__)
> + xe_tile_WARN##_type((_gt)->tile, _condition, _fmt, ## __VA_ARGS__)
>
> #define xe_gt_WARN(_gt, _condition, _fmt, ...) \
> xe_gt_WARN_type((_gt),, _condition, __XE_GT_PRINTK_FMT((_gt), _fmt, ##__VA_ARGS__))
> @@ -72,9 +71,9 @@ static inline void __xe_gt_printfn_dbg(struct drm_printer *p, struct va_format *
>
> /*
> * The original xe_gt_dbg() callsite annotations are useless here,
> - * redirect to the tweaked drm_dbg_printer() instead.
> + * redirect to the tweaked xe_tile_dbg_printer() instead.
> */
> - dbg = drm_dbg_printer(>_to_xe(gt)->drm, DRM_UT_DRIVER, NULL);
> + dbg = xe_tile_dbg_printer((gt)->tile);
> dbg.origin = p->origin;
>
> drm_printf(&dbg, __XE_GT_PRINTK_FMT(gt, "%pV", vaf));
> diff --git a/drivers/gpu/drm/xe/xe_printk.h b/drivers/gpu/drm/xe/xe_printk.h
> new file mode 100644
> index 000000000000..c5be2385aa95
> --- /dev/null
> +++ b/drivers/gpu/drm/xe/xe_printk.h
> @@ -0,0 +1,129 @@
> +/* SPDX-License-Identifier: MIT */
> +/*
> + * Copyright © 2025 Intel Corporation
> + */
> +
> +#ifndef _XE_PRINTK_H_
> +#define _XE_PRINTK_H_
> +
> +#include <drm/drm_print.h>
> +
> +#include "xe_device_types.h"
> +
> +#define __XE_PRINTK_FMT(_xe, _fmt, _args...) _fmt, ##_args
> +
> +#define xe_printk(_xe, _level, _fmt, ...) \
> + drm_##_level(&(_xe)->drm, __XE_PRINTK_FMT((_xe), _fmt, ## __VA_ARGS__))
> +
> +#define xe_err(_xe, _fmt, ...) \
> + xe_printk((_xe), err, _fmt, ##__VA_ARGS__)
> +
> +#define xe_err_once(_xe, _fmt, ...) \
> + xe_printk((_xe), err_once, _fmt, ##__VA_ARGS__)
> +
> +#define xe_err_ratelimited(_xe, _fmt, ...) \
> + xe_printk((_xe), err_ratelimited, _fmt, ##__VA_ARGS__)
> +
> +#define xe_warn(_xe, _fmt, ...) \
> + xe_printk((_xe), warn, _fmt, ##__VA_ARGS__)
> +
> +#define xe_notice(_xe, _fmt, ...) \
> + xe_printk((_xe), notice, _fmt, ##__VA_ARGS__)
> +
> +#define xe_info(_xe, _fmt, ...) \
> + xe_printk((_xe), info, _fmt, ##__VA_ARGS__)
> +
> +#define xe_dbg(_xe, _fmt, ...) \
> + xe_printk((_xe), dbg, _fmt, ##__VA_ARGS__)
> +
> +#define xe_WARN_type(_xe, _type, _condition, _fmt, ...) \
> + drm_WARN##_type(&(_xe)->drm, _condition, _fmt, ## __VA_ARGS__)
> +
> +#define xe_WARN(_xe, _condition, _fmt, ...) \
> + xe_WARN_type((_xe),, _condition, __XE_PRINTK_FMT((_xe), _fmt, ## __VA_ARGS__))
> +
> +#define xe_WARN_ONCE(_xe, _condition, _fmt, ...) \
> + xe_WARN_type((_xe), _ONCE, _condition, __XE_PRINTK_FMT((_xe), _fmt, ## __VA_ARGS__))
> +
> +#define xe_WARN_ON(_xe, _condition) \
> + xe_WARN((_xe), _condition, "%s(%s)", "WARN_ON", __stringify(_condition))
> +
> +#define xe_WARN_ON_ONCE(_xe, _condition) \
> + xe_WARN_ONCE((_xe), _condition, "%s(%s)", "WARN_ON_ONCE", __stringify(_condition))
> +
> +static inline void __xe_printfn_err(struct drm_printer *p, struct va_format *vaf)
> +{
> + struct xe_device *xe = p->arg;
> +
> + xe_err(xe, "%pV", vaf);
> +}
> +
> +static inline void __xe_printfn_info(struct drm_printer *p, struct va_format *vaf)
> +{
> + struct xe_device *xe = p->arg;
> +
> + xe_info(xe, "%pV", vaf);
> +}
> +
> +static inline void __xe_printfn_dbg(struct drm_printer *p, struct va_format *vaf)
> +{
> + struct xe_device *xe = p->arg;
> + struct drm_printer ddp;
> +
> + /*
> + * The original xe_dbg() callsite annotations are useless here,
> + * redirect to the tweaked drm_dbg_printer() instead.
> + */
> + ddp = drm_dbg_printer(&xe->drm, DRM_UT_DRIVER, NULL);
> + ddp.origin = p->origin;
> +
> + drm_printf(&ddp, __XE_PRINTK_FMT(xe, "%pV", vaf));
> +}
> +
> +/**
> + * xe_err_printer - Construct a &drm_printer that outputs to xe_err()
> + * @xe: the &xe_device pointer to use in xe_err()
> + *
> + * Return: The &drm_printer object.
> + */
> +static inline struct drm_printer xe_err_printer(struct xe_device *xe)
> +{
> + struct drm_printer p = {
> + .printfn = __xe_printfn_err,
> + .arg = xe,
> + };
> + return p;
> +}
> +
> +/**
> + * xe_info_printer - Construct a &drm_printer that outputs to xe_info()
> + * @xe: the &xe_device pointer to use in xe_info()
> + *
> + * Return: The &drm_printer object.
> + */
> +static inline struct drm_printer xe_info_printer(struct xe_device *xe)
> +{
> + struct drm_printer p = {
> + .printfn = __xe_printfn_info,
> + .arg = xe,
> + };
> + return p;
> +}
> +
> +/**
> + * xe_dbg_printer - Construct a &drm_printer that outputs like xe_dbg()
> + * @xe: the &xe_device pointer to use in xe_dbg()
> + *
> + * Return: The &drm_printer object.
> + */
> +static inline struct drm_printer xe_dbg_printer(struct xe_device *xe)
> +{
> + struct drm_printer p = {
> + .printfn = __xe_printfn_dbg,
> + .arg = xe,
> + .origin = (const void *)_THIS_IP_,
> + };
> + return p;
> +}
> +
> +#endif
> diff --git a/drivers/gpu/drm/xe/xe_tile_printk.h b/drivers/gpu/drm/xe/xe_tile_printk.h
> new file mode 100644
> index 000000000000..63640a42685d
> --- /dev/null
> +++ b/drivers/gpu/drm/xe/xe_tile_printk.h
> @@ -0,0 +1,127 @@
> +/* SPDX-License-Identifier: MIT */
> +/*
> + * Copyright © 2025 Intel Corporation
> + */
> +
> +#ifndef _xe_tile_printk_H_
> +#define _xe_tile_printk_H_
> +
> +#include "xe_printk.h"
> +
> +#define __XE_TILE_PRINTK_FMT(_tile, _fmt, _args...) "Tile%u: " _fmt, (_tile)->id, ##_args
> +
> +#define xe_tile_printk(_tile, _level, _fmt, ...) \
> + xe_printk((_tile)->xe, _level, __XE_TILE_PRINTK_FMT((_tile), _fmt, ##__VA_ARGS__))
> +
> +#define xe_tile_err(_tile, _fmt, ...) \
> + xe_tile_printk((_tile), err, _fmt, ##__VA_ARGS__)
> +
> +#define xe_tile_err_once(_tile, _fmt, ...) \
> + xe_tile_printk((_tile), err_once, _fmt, ##__VA_ARGS__)
> +
> +#define xe_tile_err_ratelimited(_tile, _fmt, ...) \
> + xe_tile_printk((_tile), err_ratelimited, _fmt, ##__VA_ARGS__)
> +
> +#define xe_tile_warn(_tile, _fmt, ...) \
> + xe_tile_printk((_tile), warn, _fmt, ##__VA_ARGS__)
> +
> +#define xe_tile_notice(_tile, _fmt, ...) \
> + xe_tile_printk((_tile), notice, _fmt, ##__VA_ARGS__)
> +
> +#define xe_tile_info(_tile, _fmt, ...) \
> + xe_tile_printk((_tile), info, _fmt, ##__VA_ARGS__)
> +
> +#define xe_tile_dbg(_tile, _fmt, ...) \
> + xe_tile_printk((_tile), dbg, _fmt, ##__VA_ARGS__)
> +
> +#define xe_tile_WARN_type(_tile, _type, _condition, _fmt, ...) \
> + xe_WARN##_type((_tile)->xe, _condition, _fmt, ## __VA_ARGS__)
> +
> +#define xe_tile_WARN(_tile, _condition, _fmt, ...) \
> + xe_tile_WARN_type((_tile),, _condition, __XE_TILE_PRINTK_FMT((_tile), _fmt, ##__VA_ARGS__))
> +
> +#define xe_tile_WARN_ONCE(_tile, _condition, _fmt, ...) \
> + xe_tile_WARN_type((_tile), _ONCE, _condition, __XE_TILE_PRINTK_FMT((_tile), _fmt, ##__VA_ARGS__))
> +
> +#define xe_tile_WARN_ON(_tile, _condition) \
> + xe_tile_WARN((_tile), _condition, "%s(%s)", "WARN_ON", __stringify(_condition))
> +
> +#define xe_tile_WARN_ON_ONCE(_tile, _condition) \
> + xe_tile_WARN_ONCE((_tile), _condition, "%s(%s)", "WARN_ON_ONCE", __stringify(_condition))
> +
> +static inline void __xe_tile_printfn_err(struct drm_printer *p, struct va_format *vaf)
> +{
> + struct xe_tile *tile = p->arg;
> +
> + xe_tile_err(tile, "%pV", vaf);
> +}
> +
> +static inline void __xe_tile_printfn_info(struct drm_printer *p, struct va_format *vaf)
> +{
> + struct xe_tile *tile = p->arg;
> +
> + xe_tile_info(tile, "%pV", vaf);
> +}
> +
> +static inline void __xe_tile_printfn_dbg(struct drm_printer *p, struct va_format *vaf)
> +{
> + struct xe_tile *tile = p->arg;
> + struct drm_printer dbg;
> +
> + /*
> + * The original xe_tile_dbg() callsite annotations are useless here,
> + * redirect to the tweaked xe_dbg_printer() instead.
> + */
> + dbg = xe_dbg_printer(tile->xe);
> + dbg.origin = p->origin;
> +
> + drm_printf(&dbg, __XE_TILE_PRINTK_FMT(tile, "%pV", vaf));
> +}
> +
> +/**
> + * xe_tile_err_printer - Construct a &drm_printer that outputs to xe_tile_err()
> + * @tile: the &xe_tile pointer to use in xe_tile_err()
> + *
> + * Return: The &drm_printer object.
> + */
> +static inline struct drm_printer xe_tile_err_printer(struct xe_tile *tile)
> +{
> + struct drm_printer p = {
> + .printfn = __xe_tile_printfn_err,
> + .arg = tile,
> + };
> + return p;
> +}
> +
> +/**
> + * xe_tile_info_printer - Construct a &drm_printer that outputs to xe_tile_info()
> + * @tile: the &xe_tile pointer to use in xe_tile_info()
> + *
> + * Return: The &drm_printer object.
> + */
> +static inline struct drm_printer xe_tile_info_printer(struct xe_tile *tile)
> +{
> + struct drm_printer p = {
> + .printfn = __xe_tile_printfn_info,
> + .arg = tile,
> + };
> + return p;
> +}
> +
> +/**
> + * xe_tile_dbg_printer - Construct a &drm_printer that outputs like xe_tile_dbg()
> + * @tile: the &xe_tile pointer to use in xe_tile_dbg()
> + *
> + * Return: The &drm_printer object.
> + */
> +static inline struct drm_printer xe_tile_dbg_printer(struct xe_tile *tile)
> +{
> + struct drm_printer p = {
> + .printfn = __xe_tile_printfn_dbg,
> + .arg = tile,
> + .origin = (const void *)_THIS_IP_,
> + };
> + return p;
> +}
> +
> +#endif
> --
> 2.47.1
>
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH v2 3/5] drm/xe: Prepare format for GT-oriented messages in one place
2025-09-09 16:59 ` [PATCH v2 3/5] drm/xe: Prepare format for GT-oriented messages in one place Michal Wajdeczko
2025-09-10 21:28 ` Rodrigo Vivi
@ 2025-09-11 3:49 ` Lucas De Marchi
1 sibling, 0 replies; 17+ messages in thread
From: Lucas De Marchi @ 2025-09-11 3:49 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe, Rodrigo Vivi
On Tue, Sep 09, 2025 at 06:59:37PM +0200, Michal Wajdeczko wrote:
>To avoid code duplication (and thus potential mistakes) and to
>allow easier changes (if needed) of the prefix format of the
>GT-oriented messages, prepare that prefix in dedicated macro.
>
>Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Lucas De Marchi
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH v2 4/5] drm/xe: Add dedicated printk macros for tile and device
2025-09-09 16:59 ` [PATCH v2 4/5] drm/xe: Add dedicated printk macros for tile and device Michal Wajdeczko
2025-09-10 21:28 ` Rodrigo Vivi
@ 2025-09-11 3:51 ` Lucas De Marchi
1 sibling, 0 replies; 17+ messages in thread
From: Lucas De Marchi @ 2025-09-11 3:51 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe, Rodrigo Vivi
On Tue, Sep 09, 2025 at 06:59:38PM +0200, Michal Wajdeczko wrote:
>We already have dedicated helper macros for printing GT-oriented
>messages but we don't have any to print messages that are tile
>oriented and we wrongly try to use plain drm or GT-oriented ones.
>
>Add tile-oriented printk messages and to provide similar coverage
>as we have with xe_assert() macros. Also add set of simple macros
>for the top level xe_device, which we could easily tweak to include
>extra device specific info if needed.
>
>Typical output of our printk macros will look like:
>
> [drm] this is xe_WARN()
> [drm] *ERROR* this is xe_err()
> [drm] *ERROR* this is xe_err_printer()
> [drm] this is xe_info()
> [drm] this is xe_info_printer()
> [drm:printk_demo.cold] this is xe_dbg()
> [drm:printk_demo.cold] this is xe_dbg_printer()
>
> [drm] Tile0: this is xe_tile_WARN()
> [drm] *ERROR* Tile0: this is xe_tile_err()
> [drm] *ERROR* Tile0: this is xe_tile_err_printer()
> [drm] Tile0: this is xe_tile_info()
> [drm] Tile0: this is xe_tile_info_printer()
> [drm:printk_demo.cold] Tile0: this is xe_tile_dbg()
> [drm:printk_demo.cold] Tile0: this is xe_tile_dbg_printer()
>
> [drm] Tile0: GT0: this is xe_gt_WARN()
> [drm] *ERROR* Tile0: GT0: this is xe_gt_err()
> [drm] *ERROR* Tile0: GT0: this is xe_gt_err_printer()
> [drm] Tile0: GT0: this is xe_gt_info()
> [drm] Tile0: GT0: this is xe_gt_info_printer()
> [drm:printk_demo.cold] Tile0: GT0: this is xe_gt_dbg()
> [drm:printk_demo.cold] Tile0: GT0: this is xe_gt_dbg_printer()
>
>Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Lucas De Marchi
^ permalink raw reply [flat|nested] 17+ messages in thread
* ✗ CI.checkpatch: warning for RFC: Add dedicated printk macros for tile and device (rev3)
2025-09-09 16:59 [PATCH v2 0/5] RFC: Add dedicated printk macros for tile and device Michal Wajdeczko
` (6 preceding siblings ...)
2025-09-09 17:53 ` ✓ CI.KUnit: success " Patchwork
@ 2025-09-12 7:25 ` Patchwork
2025-09-12 7:26 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
10 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-09-12 7:25 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: RFC: Add dedicated printk macros for tile and device (rev3)
URL : https://patchwork.freedesktop.org/series/153985/
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
fbd08a78c3a3bb17964db2a326514c69c1dca660
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit f2d164450e622b7607655535361c9b5095abd757
Author: Michal Wajdeczko <michal.wajdeczko@intel.com>
Date: Tue Sep 9 18:59:39 2025 +0200
drm/xe: Use tile-oriented messages in GGTT code
Use recently added macros to print tile-oriented messages.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
+ /mt/dim checkpatch 6d209e86cb298782b5afa278b7b0fc73cb433b4c drm-intel
9de7dfc26c17 drm/xe: Keep xe_gt_err() macro definitions together
da27b79cc2c5 drm/xe: Drop "gt_" prefix from xe_gt_WARN() macros
0a7241b8f25d drm/xe: Prepare format for GT-oriented messages in one place
-:40: ERROR:SPACING: space required after that ',' (ctx:VxO)
#40: FILE: drivers/gpu/drm/xe/xe_gt_printk.h:43:
+ xe_gt_WARN_type((_gt),, _condition, __XE_GT_PRINTK_FMT((_gt), _fmt, ##__VA_ARGS__))
^
total: 1 errors, 0 warnings, 0 checks, 35 lines checked
c325bf341810 drm/xe: Add dedicated printk macros for tile and device
-:90: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#90:
new file mode 100644
-:107: ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#107: FILE: drivers/gpu/drm/xe/xe_printk.h:13:
+#define __XE_PRINTK_FMT(_xe, _fmt, _args...) _fmt, ##_args
BUT SEE:
do {} while (0) advice is over-stated in a few situations:
The more obvious case is macros, like MODULE_PARM_DESC, invoked at
file-scope, where C disallows code (it must be in functions). See
$exceptions if you have one to add by name.
More troublesome is declarative macros used at top of new scope,
like DECLARE_PER_CPU. These might just compile with a do-while-0
wrapper, but would be incorrect. Most of these are handled by
detecting struct,union,etc declaration primitives in $exceptions.
Theres also macros called inside an if (block), which "return" an
expression. These cannot do-while, and need a ({}) wrapper.
Enjoy this qualification while we work to improve our heuristics.
-:107: WARNING:MACRO_ARG_UNUSED: Argument '_xe' is not used in function-like macro
#107: FILE: drivers/gpu/drm/xe/xe_printk.h:13:
+#define __XE_PRINTK_FMT(_xe, _fmt, _args...) _fmt, ##_args
-:109: CHECK:MACRO_ARG_REUSE: Macro argument reuse '_xe' - possible side-effects?
#109: FILE: drivers/gpu/drm/xe/xe_printk.h:15:
+#define xe_printk(_xe, _level, _fmt, ...) \
+ drm_##_level(&(_xe)->drm, __XE_PRINTK_FMT((_xe), _fmt, ## __VA_ARGS__))
-:136: CHECK:MACRO_ARG_REUSE: Macro argument reuse '_xe' - possible side-effects?
#136: FILE: drivers/gpu/drm/xe/xe_printk.h:42:
+#define xe_WARN(_xe, _condition, _fmt, ...) \
+ xe_WARN_type((_xe),, _condition, __XE_PRINTK_FMT((_xe), _fmt, ## __VA_ARGS__))
-:137: ERROR:SPACING: space required after that ',' (ctx:VxO)
#137: FILE: drivers/gpu/drm/xe/xe_printk.h:43:
+ xe_WARN_type((_xe),, _condition, __XE_PRINTK_FMT((_xe), _fmt, ## __VA_ARGS__))
^
-:139: CHECK:MACRO_ARG_REUSE: Macro argument reuse '_xe' - possible side-effects?
#139: FILE: drivers/gpu/drm/xe/xe_printk.h:45:
+#define xe_WARN_ONCE(_xe, _condition, _fmt, ...) \
+ xe_WARN_type((_xe), _ONCE, _condition, __XE_PRINTK_FMT((_xe), _fmt, ## __VA_ARGS__))
-:242: CHECK:MACRO_ARG_REUSE: Macro argument reuse '_tile' - possible side-effects?
#242: FILE: drivers/gpu/drm/xe/xe_tile_printk.h:13:
+#define xe_tile_printk(_tile, _level, _fmt, ...) \
+ xe_printk((_tile)->xe, _level, __XE_TILE_PRINTK_FMT((_tile), _fmt, ##__VA_ARGS__))
-:269: CHECK:MACRO_ARG_REUSE: Macro argument reuse '_tile' - possible side-effects?
#269: FILE: drivers/gpu/drm/xe/xe_tile_printk.h:40:
+#define xe_tile_WARN(_tile, _condition, _fmt, ...) \
+ xe_tile_WARN_type((_tile),, _condition, __XE_TILE_PRINTK_FMT((_tile), _fmt, ##__VA_ARGS__))
-:270: ERROR:SPACING: space required after that ',' (ctx:VxO)
#270: FILE: drivers/gpu/drm/xe/xe_tile_printk.h:41:
+ xe_tile_WARN_type((_tile),, _condition, __XE_TILE_PRINTK_FMT((_tile), _fmt, ##__VA_ARGS__))
^
-:272: CHECK:MACRO_ARG_REUSE: Macro argument reuse '_tile' - possible side-effects?
#272: FILE: drivers/gpu/drm/xe/xe_tile_printk.h:43:
+#define xe_tile_WARN_ONCE(_tile, _condition, _fmt, ...) \
+ xe_tile_WARN_type((_tile), _ONCE, _condition, __XE_TILE_PRINTK_FMT((_tile), _fmt, ##__VA_ARGS__))
-:273: WARNING:LONG_LINE: line length of 105 exceeds 100 columns
#273: FILE: drivers/gpu/drm/xe/xe_tile_printk.h:44:
+ xe_tile_WARN_type((_tile), _ONCE, _condition, __XE_TILE_PRINTK_FMT((_tile), _fmt, ##__VA_ARGS__))
total: 3 errors, 3 warnings, 6 checks, 291 lines checked
f2d164450e62 drm/xe: Use tile-oriented messages in GGTT code
^ permalink raw reply [flat|nested] 17+ messages in thread
* ✓ CI.KUnit: success for RFC: Add dedicated printk macros for tile and device (rev3)
2025-09-09 16:59 [PATCH v2 0/5] RFC: Add dedicated printk macros for tile and device Michal Wajdeczko
` (7 preceding siblings ...)
2025-09-12 7:25 ` ✗ CI.checkpatch: warning for RFC: Add dedicated printk macros for tile and device (rev3) Patchwork
@ 2025-09-12 7:26 ` Patchwork
2025-09-12 8:08 ` ✓ Xe.CI.BAT: " Patchwork
2025-09-12 9:58 ` ✗ Xe.CI.Full: failure " Patchwork
10 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-09-12 7:26 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: RFC: Add dedicated printk macros for tile and device (rev3)
URL : https://patchwork.freedesktop.org/series/153985/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[07:25:23] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:25:27] 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:25:56] Starting KUnit Kernel (1/1)...
[07:25:56] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:25:57] ================== guc_buf (11 subtests) ===================
[07:25:57] [PASSED] test_smallest
[07:25:57] [PASSED] test_largest
[07:25:57] [PASSED] test_granular
[07:25:57] [PASSED] test_unique
[07:25:57] [PASSED] test_overlap
[07:25:57] [PASSED] test_reusable
[07:25:57] [PASSED] test_too_big
[07:25:57] [PASSED] test_flush
[07:25:57] [PASSED] test_lookup
[07:25:57] [PASSED] test_data
[07:25:57] [PASSED] test_class
[07:25:57] ===================== [PASSED] guc_buf =====================
[07:25:57] =================== guc_dbm (7 subtests) ===================
[07:25:57] [PASSED] test_empty
[07:25:57] [PASSED] test_default
[07:25:57] ======================== test_size ========================
[07:25:57] [PASSED] 4
[07:25:57] [PASSED] 8
[07:25:57] [PASSED] 32
[07:25:57] [PASSED] 256
[07:25:57] ==================== [PASSED] test_size ====================
[07:25:57] ======================= test_reuse ========================
[07:25:57] [PASSED] 4
[07:25:57] [PASSED] 8
[07:25:57] [PASSED] 32
[07:25:57] [PASSED] 256
[07:25:57] =================== [PASSED] test_reuse ====================
[07:25:57] =================== test_range_overlap ====================
[07:25:57] [PASSED] 4
[07:25:57] [PASSED] 8
[07:25:57] [PASSED] 32
[07:25:57] [PASSED] 256
[07:25:57] =============== [PASSED] test_range_overlap ================
[07:25:57] =================== test_range_compact ====================
[07:25:57] [PASSED] 4
[07:25:57] [PASSED] 8
[07:25:57] [PASSED] 32
[07:25:57] [PASSED] 256
[07:25:57] =============== [PASSED] test_range_compact ================
[07:25:57] ==================== test_range_spare =====================
[07:25:57] [PASSED] 4
[07:25:57] [PASSED] 8
[07:25:57] [PASSED] 32
[07:25:57] [PASSED] 256
[07:25:57] ================ [PASSED] test_range_spare =================
[07:25:57] ===================== [PASSED] guc_dbm =====================
[07:25:57] =================== guc_idm (6 subtests) ===================
[07:25:57] [PASSED] bad_init
[07:25:57] [PASSED] no_init
[07:25:57] [PASSED] init_fini
[07:25:57] [PASSED] check_used
[07:25:57] [PASSED] check_quota
[07:25:57] [PASSED] check_all
[07:25:57] ===================== [PASSED] guc_idm =====================
[07:25:57] ================== no_relay (3 subtests) ===================
[07:25:57] [PASSED] xe_drops_guc2pf_if_not_ready
[07:25:57] [PASSED] xe_drops_guc2vf_if_not_ready
[07:25:57] [PASSED] xe_rejects_send_if_not_ready
[07:25:57] ==================== [PASSED] no_relay =====================
[07:25:57] ================== pf_relay (14 subtests) ==================
[07:25:57] [PASSED] pf_rejects_guc2pf_too_short
[07:25:57] [PASSED] pf_rejects_guc2pf_too_long
[07:25:57] [PASSED] pf_rejects_guc2pf_no_payload
[07:25:57] [PASSED] pf_fails_no_payload
[07:25:57] [PASSED] pf_fails_bad_origin
[07:25:57] [PASSED] pf_fails_bad_type
[07:25:57] [PASSED] pf_txn_reports_error
[07:25:57] [PASSED] pf_txn_sends_pf2guc
[07:25:57] [PASSED] pf_sends_pf2guc
[07:25:57] [SKIPPED] pf_loopback_nop
[07:25:57] [SKIPPED] pf_loopback_echo
[07:25:57] [SKIPPED] pf_loopback_fail
[07:25:57] [SKIPPED] pf_loopback_busy
[07:25:57] [SKIPPED] pf_loopback_retry
[07:25:57] ==================== [PASSED] pf_relay =====================
[07:25:57] ================== vf_relay (3 subtests) ===================
[07:25:57] [PASSED] vf_rejects_guc2vf_too_short
[07:25:57] [PASSED] vf_rejects_guc2vf_too_long
[07:25:57] [PASSED] vf_rejects_guc2vf_no_payload
[07:25:57] ==================== [PASSED] vf_relay =====================
[07:25:57] ===================== lmtt (1 subtest) =====================
[07:25:57] ======================== test_ops =========================
[07:25:57] [PASSED] 2-level
[07:25:57] [PASSED] multi-level
[07:25:57] ==================== [PASSED] test_ops =====================
[07:25:57] ====================== [PASSED] lmtt =======================
[07:25:57] ================= pf_service (11 subtests) =================
[07:25:57] [PASSED] pf_negotiate_any
[07:25:57] [PASSED] pf_negotiate_base_match
[07:25:57] [PASSED] pf_negotiate_base_newer
[07:25:57] [PASSED] pf_negotiate_base_next
[07:25:57] [SKIPPED] pf_negotiate_base_older
[07:25:57] [PASSED] pf_negotiate_base_prev
[07:25:57] [PASSED] pf_negotiate_latest_match
[07:25:57] [PASSED] pf_negotiate_latest_newer
[07:25:57] [PASSED] pf_negotiate_latest_next
[07:25:57] [SKIPPED] pf_negotiate_latest_older
[07:25:57] [SKIPPED] pf_negotiate_latest_prev
[07:25:57] =================== [PASSED] pf_service ====================
[07:25:57] =================== xe_mocs (2 subtests) ===================
[07:25:57] ================ xe_live_mocs_kernel_kunit ================
[07:25:57] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[07:25:57] ================ xe_live_mocs_reset_kunit =================
[07:25:57] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[07:25:57] ==================== [SKIPPED] xe_mocs =====================
[07:25:57] ================= xe_migrate (2 subtests) ==================
[07:25:57] ================= xe_migrate_sanity_kunit =================
[07:25:57] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[07:25:57] ================== xe_validate_ccs_kunit ==================
[07:25:57] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[07:25:57] =================== [SKIPPED] xe_migrate ===================
[07:25:57] ================== xe_dma_buf (1 subtest) ==================
[07:25:57] ==================== xe_dma_buf_kunit =====================
[07:25:57] ================ [SKIPPED] xe_dma_buf_kunit ================
[07:25:57] =================== [SKIPPED] xe_dma_buf ===================
[07:25:57] ================= xe_bo_shrink (1 subtest) =================
[07:25:57] =================== xe_bo_shrink_kunit ====================
[07:25:57] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[07:25:57] ================== [SKIPPED] xe_bo_shrink ==================
[07:25:57] ==================== xe_bo (2 subtests) ====================
[07:25:57] ================== xe_ccs_migrate_kunit ===================
[07:25:57] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[07:25:57] ==================== xe_bo_evict_kunit ====================
[07:25:57] =============== [SKIPPED] xe_bo_evict_kunit ================
[07:25:57] ===================== [SKIPPED] xe_bo ======================
[07:25:57] ==================== args (11 subtests) ====================
[07:25:57] [PASSED] count_args_test
[07:25:57] [PASSED] call_args_example
[07:25:57] [PASSED] call_args_test
[07:25:57] [PASSED] drop_first_arg_example
[07:25:57] [PASSED] drop_first_arg_test
[07:25:57] [PASSED] first_arg_example
[07:25:57] [PASSED] first_arg_test
[07:25:57] [PASSED] last_arg_example
[07:25:57] [PASSED] last_arg_test
[07:25:57] [PASSED] pick_arg_example
[07:25:57] [PASSED] sep_comma_example
[07:25:57] ====================== [PASSED] args =======================
[07:25:57] =================== xe_pci (3 subtests) ====================
[07:25:57] ==================== check_graphics_ip ====================
[07:25:57] [PASSED] 12.70 Xe_LPG
[07:25:57] [PASSED] 12.71 Xe_LPG
[07:25:57] [PASSED] 12.74 Xe_LPG+
[07:25:57] [PASSED] 20.01 Xe2_HPG
[07:25:57] [PASSED] 20.02 Xe2_HPG
[07:25:57] [PASSED] 20.04 Xe2_LPG
[07:25:57] [PASSED] 30.00 Xe3_LPG
[07:25:57] [PASSED] 30.01 Xe3_LPG
[07:25:57] [PASSED] 30.03 Xe3_LPG
[07:25:57] ================ [PASSED] check_graphics_ip ================
[07:25:57] ===================== check_media_ip ======================
[07:25:57] [PASSED] 13.00 Xe_LPM+
[07:25:57] [PASSED] 13.01 Xe2_HPM
[07:25:57] [PASSED] 20.00 Xe2_LPM
[07:25:57] [PASSED] 30.00 Xe3_LPM
[07:25:57] [PASSED] 30.02 Xe3_LPM
[07:25:57] ================= [PASSED] check_media_ip ==================
[07:25:57] ================= check_platform_gt_count =================
[07:25:57] [PASSED] 0x9A60 (TIGERLAKE)
[07:25:57] [PASSED] 0x9A68 (TIGERLAKE)
[07:25:57] [PASSED] 0x9A70 (TIGERLAKE)
[07:25:57] [PASSED] 0x9A40 (TIGERLAKE)
[07:25:57] [PASSED] 0x9A49 (TIGERLAKE)
[07:25:57] [PASSED] 0x9A59 (TIGERLAKE)
[07:25:57] [PASSED] 0x9A78 (TIGERLAKE)
[07:25:57] [PASSED] 0x9AC0 (TIGERLAKE)
[07:25:57] [PASSED] 0x9AC9 (TIGERLAKE)
[07:25:57] [PASSED] 0x9AD9 (TIGERLAKE)
[07:25:57] [PASSED] 0x9AF8 (TIGERLAKE)
[07:25:57] [PASSED] 0x4C80 (ROCKETLAKE)
[07:25:57] [PASSED] 0x4C8A (ROCKETLAKE)
[07:25:57] [PASSED] 0x4C8B (ROCKETLAKE)
[07:25:57] [PASSED] 0x4C8C (ROCKETLAKE)
[07:25:57] [PASSED] 0x4C90 (ROCKETLAKE)
[07:25:57] [PASSED] 0x4C9A (ROCKETLAKE)
[07:25:57] [PASSED] 0x4680 (ALDERLAKE_S)
[07:25:57] [PASSED] 0x4682 (ALDERLAKE_S)
[07:25:57] [PASSED] 0x4688 (ALDERLAKE_S)
[07:25:57] [PASSED] 0x468A (ALDERLAKE_S)
[07:25:57] [PASSED] 0x468B (ALDERLAKE_S)
[07:25:57] [PASSED] 0x4690 (ALDERLAKE_S)
[07:25:57] [PASSED] 0x4692 (ALDERLAKE_S)
[07:25:57] [PASSED] 0x4693 (ALDERLAKE_S)
[07:25:57] [PASSED] 0x46A0 (ALDERLAKE_P)
[07:25:57] [PASSED] 0x46A1 (ALDERLAKE_P)
[07:25:57] [PASSED] 0x46A2 (ALDERLAKE_P)
[07:25:57] [PASSED] 0x46A3 (ALDERLAKE_P)
[07:25:57] [PASSED] 0x46A6 (ALDERLAKE_P)
[07:25:57] [PASSED] 0x46A8 (ALDERLAKE_P)
[07:25:57] [PASSED] 0x46AA (ALDERLAKE_P)
[07:25:57] [PASSED] 0x462A (ALDERLAKE_P)
[07:25:57] [PASSED] 0x4626 (ALDERLAKE_P)
[07:25:57] [PASSED] 0x4628 (ALDERLAKE_P)
[07:25:57] [PASSED] 0x46B0 (ALDERLAKE_P)
[07:25:57] [PASSED] 0x46B1 (ALDERLAKE_P)
[07:25:57] [PASSED] 0x46B2 (ALDERLAKE_P)
[07:25:57] [PASSED] 0x46B3 (ALDERLAKE_P)
[07:25:57] [PASSED] 0x46C0 (ALDERLAKE_P)
[07:25:57] [PASSED] 0x46C1 (ALDERLAKE_P)
[07:25:57] [PASSED] 0x46C2 (ALDERLAKE_P)
[07:25:57] [PASSED] 0x46C3 (ALDERLAKE_P)
[07:25:57] [PASSED] 0x46D0 (ALDERLAKE_N)
[07:25:57] [PASSED] 0x46D1 (ALDERLAKE_N)
[07:25:57] [PASSED] 0x46D2 (ALDERLAKE_N)
[07:25:57] [PASSED] 0x46D3 (ALDERLAKE_N)
[07:25:57] [PASSED] 0x46D4 (ALDERLAKE_N)
[07:25:57] [PASSED] 0xA721 (ALDERLAKE_P)
[07:25:57] [PASSED] 0xA7A1 (ALDERLAKE_P)
[07:25:57] [PASSED] 0xA7A9 (ALDERLAKE_P)
[07:25:57] [PASSED] 0xA7AC (ALDERLAKE_P)
[07:25:57] [PASSED] 0xA7AD (ALDERLAKE_P)
[07:25:57] [PASSED] 0xA720 (ALDERLAKE_P)
[07:25:57] [PASSED] 0xA7A0 (ALDERLAKE_P)
[07:25:57] [PASSED] 0xA7A8 (ALDERLAKE_P)
[07:25:57] [PASSED] 0xA7AA (ALDERLAKE_P)
[07:25:57] [PASSED] 0xA7AB (ALDERLAKE_P)
[07:25:57] [PASSED] 0xA780 (ALDERLAKE_S)
[07:25:57] [PASSED] 0xA781 (ALDERLAKE_S)
[07:25:57] [PASSED] 0xA782 (ALDERLAKE_S)
[07:25:57] [PASSED] 0xA783 (ALDERLAKE_S)
[07:25:57] [PASSED] 0xA788 (ALDERLAKE_S)
[07:25:57] [PASSED] 0xA789 (ALDERLAKE_S)
[07:25:57] [PASSED] 0xA78A (ALDERLAKE_S)
[07:25:57] [PASSED] 0xA78B (ALDERLAKE_S)
[07:25:57] [PASSED] 0x4905 (DG1)
[07:25:57] [PASSED] 0x4906 (DG1)
[07:25:57] [PASSED] 0x4907 (DG1)
[07:25:57] [PASSED] 0x4908 (DG1)
[07:25:57] [PASSED] 0x4909 (DG1)
[07:25:57] [PASSED] 0x56C0 (DG2)
[07:25:57] [PASSED] 0x56C2 (DG2)
[07:25:57] [PASSED] 0x56C1 (DG2)
[07:25:57] [PASSED] 0x7D51 (METEORLAKE)
[07:25:57] [PASSED] 0x7DD1 (METEORLAKE)
[07:25:57] [PASSED] 0x7D41 (METEORLAKE)
[07:25:57] [PASSED] 0x7D67 (METEORLAKE)
[07:25:57] [PASSED] 0xB640 (METEORLAKE)
[07:25:57] [PASSED] 0x56A0 (DG2)
[07:25:57] [PASSED] 0x56A1 (DG2)
[07:25:57] [PASSED] 0x56A2 (DG2)
[07:25:57] [PASSED] 0x56BE (DG2)
[07:25:57] [PASSED] 0x56BF (DG2)
[07:25:57] [PASSED] 0x5690 (DG2)
[07:25:57] [PASSED] 0x5691 (DG2)
[07:25:57] [PASSED] 0x5692 (DG2)
[07:25:57] [PASSED] 0x56A5 (DG2)
[07:25:57] [PASSED] 0x56A6 (DG2)
[07:25:57] [PASSED] 0x56B0 (DG2)
[07:25:57] [PASSED] 0x56B1 (DG2)
[07:25:57] [PASSED] 0x56BA (DG2)
[07:25:57] [PASSED] 0x56BB (DG2)
[07:25:57] [PASSED] 0x56BC (DG2)
[07:25:57] [PASSED] 0x56BD (DG2)
[07:25:57] [PASSED] 0x5693 (DG2)
[07:25:57] [PASSED] 0x5694 (DG2)
[07:25:57] [PASSED] 0x5695 (DG2)
[07:25:57] [PASSED] 0x56A3 (DG2)
[07:25:57] [PASSED] 0x56A4 (DG2)
[07:25:57] [PASSED] 0x56B2 (DG2)
[07:25:57] [PASSED] 0x56B3 (DG2)
[07:25:57] [PASSED] 0x5696 (DG2)
[07:25:57] [PASSED] 0x5697 (DG2)
[07:25:57] [PASSED] 0xB69 (PVC)
[07:25:57] [PASSED] 0xB6E (PVC)
[07:25:57] [PASSED] 0xBD4 (PVC)
[07:25:57] [PASSED] 0xBD5 (PVC)
[07:25:57] [PASSED] 0xBD6 (PVC)
[07:25:57] [PASSED] 0xBD7 (PVC)
[07:25:57] [PASSED] 0xBD8 (PVC)
[07:25:57] [PASSED] 0xBD9 (PVC)
[07:25:57] [PASSED] 0xBDA (PVC)
[07:25:57] [PASSED] 0xBDB (PVC)
[07:25:57] [PASSED] 0xBE0 (PVC)
[07:25:57] [PASSED] 0xBE1 (PVC)
[07:25:57] [PASSED] 0xBE5 (PVC)
[07:25:57] [PASSED] 0x7D40 (METEORLAKE)
[07:25:57] [PASSED] 0x7D45 (METEORLAKE)
[07:25:57] [PASSED] 0x7D55 (METEORLAKE)
[07:25:57] [PASSED] 0x7D60 (METEORLAKE)
[07:25:57] [PASSED] 0x7DD5 (METEORLAKE)
[07:25:57] [PASSED] 0x6420 (LUNARLAKE)
[07:25:57] [PASSED] 0x64A0 (LUNARLAKE)
[07:25:57] [PASSED] 0x64B0 (LUNARLAKE)
[07:25:57] [PASSED] 0xE202 (BATTLEMAGE)
[07:25:57] [PASSED] 0xE209 (BATTLEMAGE)
[07:25:57] [PASSED] 0xE20B (BATTLEMAGE)
[07:25:57] [PASSED] 0xE20C (BATTLEMAGE)
[07:25:57] [PASSED] 0xE20D (BATTLEMAGE)
[07:25:57] [PASSED] 0xE210 (BATTLEMAGE)
[07:25:57] [PASSED] 0xE211 (BATTLEMAGE)
[07:25:57] [PASSED] 0xE212 (BATTLEMAGE)
[07:25:57] [PASSED] 0xE216 (BATTLEMAGE)
[07:25:57] [PASSED] 0xE220 (BATTLEMAGE)
[07:25:57] [PASSED] 0xE221 (BATTLEMAGE)
[07:25:57] [PASSED] 0xE222 (BATTLEMAGE)
[07:25:57] [PASSED] 0xE223 (BATTLEMAGE)
[07:25:57] [PASSED] 0xB080 (PANTHERLAKE)
[07:25:57] [PASSED] 0xB081 (PANTHERLAKE)
[07:25:57] [PASSED] 0xB082 (PANTHERLAKE)
[07:25:57] [PASSED] 0xB083 (PANTHERLAKE)
[07:25:57] [PASSED] 0xB084 (PANTHERLAKE)
[07:25:57] [PASSED] 0xB085 (PANTHERLAKE)
[07:25:57] [PASSED] 0xB086 (PANTHERLAKE)
[07:25:57] [PASSED] 0xB087 (PANTHERLAKE)
[07:25:57] [PASSED] 0xB08F (PANTHERLAKE)
[07:25:57] [PASSED] 0xB090 (PANTHERLAKE)
[07:25:57] [PASSED] 0xB0A0 (PANTHERLAKE)
[07:25:57] [PASSED] 0xB0B0 (PANTHERLAKE)
[07:25:57] [PASSED] 0xFD80 (PANTHERLAKE)
[07:25:57] [PASSED] 0xFD81 (PANTHERLAKE)
[07:25:57] ============= [PASSED] check_platform_gt_count =============
[07:25:57] ===================== [PASSED] xe_pci ======================
[07:25:57] =================== xe_rtp (2 subtests) ====================
[07:25:57] =============== xe_rtp_process_to_sr_tests ================
[07:25:57] [PASSED] coalesce-same-reg
[07:25:57] [PASSED] no-match-no-add
[07:25:57] [PASSED] match-or
[07:25:57] [PASSED] match-or-xfail
[07:25:57] [PASSED] no-match-no-add-multiple-rules
[07:25:57] [PASSED] two-regs-two-entries
[07:25:57] [PASSED] clr-one-set-other
[07:25:57] [PASSED] set-field
[07:25:57] [PASSED] conflict-duplicate
[07:25:57] [PASSED] conflict-not-disjoint
[07:25:57] [PASSED] conflict-reg-type
[07:25:57] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[07:25:57] ================== xe_rtp_process_tests ===================
[07:25:57] [PASSED] active1
[07:25:57] [PASSED] active2
[07:25:57] [PASSED] active-inactive
[07:25:57] [PASSED] inactive-active
[07:25:57] [PASSED] inactive-1st_or_active-inactive
[07:25:57] [PASSED] inactive-2nd_or_active-inactive
[07:25:57] [PASSED] inactive-last_or_active-inactive
[07:25:57] [PASSED] inactive-no_or_active-inactive
[07:25:57] ============== [PASSED] xe_rtp_process_tests ===============
[07:25:57] ===================== [PASSED] xe_rtp ======================
[07:25:57] ==================== xe_wa (1 subtest) =====================
[07:25:57] ======================== xe_wa_gt =========================
[07:25:57] [PASSED] TIGERLAKE B0
[07:25:57] [PASSED] DG1 A0
[07:25:57] [PASSED] DG1 B0
[07:25:57] [PASSED] ALDERLAKE_S A0
[07:25:57] [PASSED] ALDERLAKE_S B0
[07:25:57] [PASSED] ALDERLAKE_S C0
[07:25:57] [PASSED] ALDERLAKE_S D0
[07:25:57] [PASSED] ALDERLAKE_P A0
[07:25:57] [PASSED] ALDERLAKE_P B0
[07:25:57] [PASSED] ALDERLAKE_P C0
[07:25:57] [PASSED] ALDERLAKE_S RPLS D0
[07:25:57] [PASSED] ALDERLAKE_P RPLU E0
[07:25:57] [PASSED] DG2 G10 C0
[07:25:57] [PASSED] DG2 G11 B1
[07:25:57] [PASSED] DG2 G12 A1
[07:25:57] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[07:25:57] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[07:25:57] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[07:25:57] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
stty: 'standard input': Inappropriate ioctl for device
[07:25:57] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[07:25:57] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[07:25:57] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[07:25:57] ==================== [PASSED] xe_wa_gt =====================
[07:25:57] ====================== [PASSED] xe_wa ======================
[07:25:57] ============================================================
[07:25:57] Testing complete. Ran 298 tests: passed: 282, skipped: 16
[07:25:57] Elapsed time: 33.556s total, 4.252s configuring, 28.937s building, 0.325s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[07:25:57] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:25:58] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[07:26:22] Starting KUnit Kernel (1/1)...
[07:26:22] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:26:22] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[07:26:22] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[07:26:22] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[07:26:22] =========== drm_validate_clone_mode (2 subtests) ===========
[07:26:22] ============== drm_test_check_in_clone_mode ===============
[07:26:22] [PASSED] in_clone_mode
[07:26:22] [PASSED] not_in_clone_mode
[07:26:22] ========== [PASSED] drm_test_check_in_clone_mode ===========
[07:26:22] =============== drm_test_check_valid_clones ===============
[07:26:22] [PASSED] not_in_clone_mode
[07:26:22] [PASSED] valid_clone
[07:26:22] [PASSED] invalid_clone
[07:26:22] =========== [PASSED] drm_test_check_valid_clones ===========
[07:26:22] ============= [PASSED] drm_validate_clone_mode =============
[07:26:22] ============= drm_validate_modeset (1 subtest) =============
[07:26:22] [PASSED] drm_test_check_connector_changed_modeset
[07:26:22] ============== [PASSED] drm_validate_modeset ===============
[07:26:22] ====== drm_test_bridge_get_current_state (2 subtests) ======
[07:26:22] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[07:26:22] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[07:26:22] ======== [PASSED] drm_test_bridge_get_current_state ========
[07:26:22] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[07:26:22] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[07:26:22] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[07:26:22] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[07:26:22] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[07:26:22] ============== drm_bridge_alloc (2 subtests) ===============
[07:26:22] [PASSED] drm_test_drm_bridge_alloc_basic
[07:26:22] [PASSED] drm_test_drm_bridge_alloc_get_put
[07:26:22] ================ [PASSED] drm_bridge_alloc =================
[07:26:22] ================== drm_buddy (7 subtests) ==================
[07:26:22] [PASSED] drm_test_buddy_alloc_limit
[07:26:22] [PASSED] drm_test_buddy_alloc_optimistic
[07:26:22] [PASSED] drm_test_buddy_alloc_pessimistic
[07:26:22] [PASSED] drm_test_buddy_alloc_pathological
[07:26:22] [PASSED] drm_test_buddy_alloc_contiguous
[07:26:22] [PASSED] drm_test_buddy_alloc_clear
[07:26:22] [PASSED] drm_test_buddy_alloc_range_bias
[07:26:22] ==================== [PASSED] drm_buddy ====================
[07:26:22] ============= drm_cmdline_parser (40 subtests) =============
[07:26:22] [PASSED] drm_test_cmdline_force_d_only
[07:26:22] [PASSED] drm_test_cmdline_force_D_only_dvi
[07:26:22] [PASSED] drm_test_cmdline_force_D_only_hdmi
[07:26:22] [PASSED] drm_test_cmdline_force_D_only_not_digital
[07:26:22] [PASSED] drm_test_cmdline_force_e_only
[07:26:22] [PASSED] drm_test_cmdline_res
[07:26:22] [PASSED] drm_test_cmdline_res_vesa
[07:26:22] [PASSED] drm_test_cmdline_res_vesa_rblank
[07:26:22] [PASSED] drm_test_cmdline_res_rblank
[07:26:22] [PASSED] drm_test_cmdline_res_bpp
[07:26:22] [PASSED] drm_test_cmdline_res_refresh
[07:26:22] [PASSED] drm_test_cmdline_res_bpp_refresh
[07:26:22] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[07:26:22] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[07:26:22] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[07:26:22] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[07:26:22] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[07:26:22] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[07:26:22] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[07:26:22] [PASSED] drm_test_cmdline_res_margins_force_on
[07:26:22] [PASSED] drm_test_cmdline_res_vesa_margins
[07:26:22] [PASSED] drm_test_cmdline_name
[07:26:22] [PASSED] drm_test_cmdline_name_bpp
[07:26:22] [PASSED] drm_test_cmdline_name_option
[07:26:22] [PASSED] drm_test_cmdline_name_bpp_option
[07:26:22] [PASSED] drm_test_cmdline_rotate_0
[07:26:22] [PASSED] drm_test_cmdline_rotate_90
[07:26:22] [PASSED] drm_test_cmdline_rotate_180
[07:26:22] [PASSED] drm_test_cmdline_rotate_270
[07:26:22] [PASSED] drm_test_cmdline_hmirror
[07:26:22] [PASSED] drm_test_cmdline_vmirror
[07:26:22] [PASSED] drm_test_cmdline_margin_options
[07:26:22] [PASSED] drm_test_cmdline_multiple_options
[07:26:22] [PASSED] drm_test_cmdline_bpp_extra_and_option
[07:26:22] [PASSED] drm_test_cmdline_extra_and_option
[07:26:22] [PASSED] drm_test_cmdline_freestanding_options
[07:26:22] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[07:26:22] [PASSED] drm_test_cmdline_panel_orientation
[07:26:22] ================ drm_test_cmdline_invalid =================
[07:26:22] [PASSED] margin_only
[07:26:22] [PASSED] interlace_only
[07:26:22] [PASSED] res_missing_x
[07:26:22] [PASSED] res_missing_y
[07:26:22] [PASSED] res_bad_y
[07:26:22] [PASSED] res_missing_y_bpp
[07:26:22] [PASSED] res_bad_bpp
[07:26:22] [PASSED] res_bad_refresh
[07:26:22] [PASSED] res_bpp_refresh_force_on_off
[07:26:22] [PASSED] res_invalid_mode
[07:26:22] [PASSED] res_bpp_wrong_place_mode
[07:26:22] [PASSED] name_bpp_refresh
[07:26:22] [PASSED] name_refresh
[07:26:22] [PASSED] name_refresh_wrong_mode
[07:26:22] [PASSED] name_refresh_invalid_mode
[07:26:22] [PASSED] rotate_multiple
[07:26:22] [PASSED] rotate_invalid_val
[07:26:22] [PASSED] rotate_truncated
[07:26:22] [PASSED] invalid_option
[07:26:22] [PASSED] invalid_tv_option
[07:26:22] [PASSED] truncated_tv_option
[07:26:22] ============ [PASSED] drm_test_cmdline_invalid =============
[07:26:22] =============== drm_test_cmdline_tv_options ===============
[07:26:22] [PASSED] NTSC
[07:26:22] [PASSED] NTSC_443
[07:26:22] [PASSED] NTSC_J
[07:26:22] [PASSED] PAL
[07:26:22] [PASSED] PAL_M
[07:26:22] [PASSED] PAL_N
[07:26:22] [PASSED] SECAM
[07:26:22] [PASSED] MONO_525
[07:26:22] [PASSED] MONO_625
[07:26:22] =========== [PASSED] drm_test_cmdline_tv_options ===========
[07:26:22] =============== [PASSED] drm_cmdline_parser ================
[07:26:22] ========== drmm_connector_hdmi_init (20 subtests) ==========
[07:26:22] [PASSED] drm_test_connector_hdmi_init_valid
[07:26:22] [PASSED] drm_test_connector_hdmi_init_bpc_8
[07:26:22] [PASSED] drm_test_connector_hdmi_init_bpc_10
[07:26:22] [PASSED] drm_test_connector_hdmi_init_bpc_12
[07:26:22] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[07:26:22] [PASSED] drm_test_connector_hdmi_init_bpc_null
[07:26:22] [PASSED] drm_test_connector_hdmi_init_formats_empty
[07:26:22] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[07:26:22] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[07:26:22] [PASSED] supported_formats=0x9 yuv420_allowed=1
[07:26:22] [PASSED] supported_formats=0x9 yuv420_allowed=0
[07:26:22] [PASSED] supported_formats=0x3 yuv420_allowed=1
[07:26:22] [PASSED] supported_formats=0x3 yuv420_allowed=0
[07:26:22] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[07:26:22] [PASSED] drm_test_connector_hdmi_init_null_ddc
[07:26:22] [PASSED] drm_test_connector_hdmi_init_null_product
[07:26:22] [PASSED] drm_test_connector_hdmi_init_null_vendor
[07:26:22] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[07:26:22] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[07:26:22] [PASSED] drm_test_connector_hdmi_init_product_valid
[07:26:22] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[07:26:22] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[07:26:22] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[07:26:22] ========= drm_test_connector_hdmi_init_type_valid =========
[07:26:22] [PASSED] HDMI-A
[07:26:22] [PASSED] HDMI-B
[07:26:22] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[07:26:22] ======== drm_test_connector_hdmi_init_type_invalid ========
[07:26:22] [PASSED] Unknown
[07:26:22] [PASSED] VGA
[07:26:22] [PASSED] DVI-I
[07:26:22] [PASSED] DVI-D
[07:26:22] [PASSED] DVI-A
[07:26:22] [PASSED] Composite
[07:26:22] [PASSED] SVIDEO
[07:26:22] [PASSED] LVDS
[07:26:22] [PASSED] Component
[07:26:22] [PASSED] DIN
[07:26:22] [PASSED] DP
[07:26:22] [PASSED] TV
[07:26:22] [PASSED] eDP
[07:26:22] [PASSED] Virtual
[07:26:22] [PASSED] DSI
[07:26:22] [PASSED] DPI
[07:26:22] [PASSED] Writeback
[07:26:22] [PASSED] SPI
[07:26:22] [PASSED] USB
[07:26:22] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[07:26:22] ============ [PASSED] drmm_connector_hdmi_init =============
[07:26:22] ============= drmm_connector_init (3 subtests) =============
[07:26:22] [PASSED] drm_test_drmm_connector_init
[07:26:22] [PASSED] drm_test_drmm_connector_init_null_ddc
[07:26:22] ========= drm_test_drmm_connector_init_type_valid =========
[07:26:22] [PASSED] Unknown
[07:26:22] [PASSED] VGA
[07:26:22] [PASSED] DVI-I
[07:26:22] [PASSED] DVI-D
[07:26:22] [PASSED] DVI-A
[07:26:22] [PASSED] Composite
[07:26:22] [PASSED] SVIDEO
[07:26:22] [PASSED] LVDS
[07:26:22] [PASSED] Component
[07:26:22] [PASSED] DIN
[07:26:22] [PASSED] DP
[07:26:22] [PASSED] HDMI-A
[07:26:22] [PASSED] HDMI-B
[07:26:22] [PASSED] TV
[07:26:22] [PASSED] eDP
[07:26:22] [PASSED] Virtual
[07:26:22] [PASSED] DSI
[07:26:22] [PASSED] DPI
[07:26:22] [PASSED] Writeback
[07:26:22] [PASSED] SPI
[07:26:22] [PASSED] USB
[07:26:22] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[07:26:22] =============== [PASSED] drmm_connector_init ===============
[07:26:22] ========= drm_connector_dynamic_init (6 subtests) ==========
[07:26:22] [PASSED] drm_test_drm_connector_dynamic_init
[07:26:22] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[07:26:22] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[07:26:22] [PASSED] drm_test_drm_connector_dynamic_init_properties
[07:26:22] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[07:26:22] [PASSED] Unknown
[07:26:22] [PASSED] VGA
[07:26:22] [PASSED] DVI-I
[07:26:22] [PASSED] DVI-D
[07:26:22] [PASSED] DVI-A
[07:26:22] [PASSED] Composite
[07:26:22] [PASSED] SVIDEO
[07:26:22] [PASSED] LVDS
[07:26:22] [PASSED] Component
[07:26:22] [PASSED] DIN
[07:26:22] [PASSED] DP
[07:26:22] [PASSED] HDMI-A
[07:26:22] [PASSED] HDMI-B
[07:26:22] [PASSED] TV
[07:26:22] [PASSED] eDP
[07:26:22] [PASSED] Virtual
[07:26:22] [PASSED] DSI
[07:26:22] [PASSED] DPI
[07:26:22] [PASSED] Writeback
[07:26:22] [PASSED] SPI
[07:26:22] [PASSED] USB
[07:26:22] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[07:26:22] ======== drm_test_drm_connector_dynamic_init_name =========
[07:26:22] [PASSED] Unknown
[07:26:22] [PASSED] VGA
[07:26:22] [PASSED] DVI-I
[07:26:22] [PASSED] DVI-D
[07:26:22] [PASSED] DVI-A
[07:26:22] [PASSED] Composite
[07:26:22] [PASSED] SVIDEO
[07:26:22] [PASSED] LVDS
[07:26:22] [PASSED] Component
[07:26:22] [PASSED] DIN
[07:26:22] [PASSED] DP
[07:26:22] [PASSED] HDMI-A
[07:26:22] [PASSED] HDMI-B
[07:26:22] [PASSED] TV
[07:26:22] [PASSED] eDP
[07:26:22] [PASSED] Virtual
[07:26:22] [PASSED] DSI
[07:26:22] [PASSED] DPI
[07:26:22] [PASSED] Writeback
[07:26:22] [PASSED] SPI
[07:26:22] [PASSED] USB
[07:26:22] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[07:26:22] =========== [PASSED] drm_connector_dynamic_init ============
[07:26:22] ==== drm_connector_dynamic_register_early (4 subtests) =====
[07:26:22] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[07:26:22] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[07:26:22] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[07:26:22] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[07:26:22] ====== [PASSED] drm_connector_dynamic_register_early =======
[07:26:22] ======= drm_connector_dynamic_register (7 subtests) ========
[07:26:22] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[07:26:22] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[07:26:22] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[07:26:22] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[07:26:22] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[07:26:22] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[07:26:22] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[07:26:22] ========= [PASSED] drm_connector_dynamic_register ==========
[07:26:22] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[07:26:22] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[07:26:22] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[07:26:22] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[07:26:22] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[07:26:22] ========== drm_test_get_tv_mode_from_name_valid ===========
[07:26:22] [PASSED] NTSC
[07:26:22] [PASSED] NTSC-443
[07:26:22] [PASSED] NTSC-J
[07:26:22] [PASSED] PAL
[07:26:22] [PASSED] PAL-M
[07:26:22] [PASSED] PAL-N
[07:26:22] [PASSED] SECAM
[07:26:22] [PASSED] Mono
[07:26:22] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[07:26:22] [PASSED] drm_test_get_tv_mode_from_name_truncated
[07:26:22] ============ [PASSED] drm_get_tv_mode_from_name ============
[07:26:22] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[07:26:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[07:26:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[07:26:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[07:26:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[07:26:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[07:26:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[07:26:22] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[07:26:22] [PASSED] VIC 96
[07:26:22] [PASSED] VIC 97
[07:26:22] [PASSED] VIC 101
[07:26:22] [PASSED] VIC 102
[07:26:22] [PASSED] VIC 106
[07:26:22] [PASSED] VIC 107
[07:26:22] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[07:26:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[07:26:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[07:26:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[07:26:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[07:26:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[07:26:22] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[07:26:22] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[07:26:22] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[07:26:22] [PASSED] Automatic
[07:26:22] [PASSED] Full
[07:26:22] [PASSED] Limited 16:235
[07:26:22] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[07:26:22] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[07:26:22] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[07:26:22] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[07:26:22] === drm_test_drm_hdmi_connector_get_output_format_name ====
[07:26:22] [PASSED] RGB
[07:26:22] [PASSED] YUV 4:2:0
[07:26:22] [PASSED] YUV 4:2:2
[07:26:22] [PASSED] YUV 4:4:4
[07:26:22] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[07:26:22] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[07:26:22] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[07:26:22] ============= drm_damage_helper (21 subtests) ==============
[07:26:22] [PASSED] drm_test_damage_iter_no_damage
[07:26:22] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[07:26:22] [PASSED] drm_test_damage_iter_no_damage_src_moved
[07:26:22] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[07:26:22] [PASSED] drm_test_damage_iter_no_damage_not_visible
[07:26:22] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[07:26:22] [PASSED] drm_test_damage_iter_no_damage_no_fb
[07:26:22] [PASSED] drm_test_damage_iter_simple_damage
[07:26:22] [PASSED] drm_test_damage_iter_single_damage
[07:26:22] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[07:26:22] [PASSED] drm_test_damage_iter_single_damage_outside_src
[07:26:22] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[07:26:22] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[07:26:22] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[07:26:22] [PASSED] drm_test_damage_iter_single_damage_src_moved
[07:26:22] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[07:26:22] [PASSED] drm_test_damage_iter_damage
[07:26:22] [PASSED] drm_test_damage_iter_damage_one_intersect
[07:26:22] [PASSED] drm_test_damage_iter_damage_one_outside
[07:26:22] [PASSED] drm_test_damage_iter_damage_src_moved
[07:26:22] [PASSED] drm_test_damage_iter_damage_not_visible
[07:26:22] ================ [PASSED] drm_damage_helper ================
[07:26:22] ============== drm_dp_mst_helper (3 subtests) ==============
[07:26:22] ============== drm_test_dp_mst_calc_pbn_mode ==============
[07:26:22] [PASSED] Clock 154000 BPP 30 DSC disabled
[07:26:22] [PASSED] Clock 234000 BPP 30 DSC disabled
[07:26:22] [PASSED] Clock 297000 BPP 24 DSC disabled
[07:26:22] [PASSED] Clock 332880 BPP 24 DSC enabled
[07:26:22] [PASSED] Clock 324540 BPP 24 DSC enabled
[07:26:22] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[07:26:22] ============== drm_test_dp_mst_calc_pbn_div ===============
[07:26:22] [PASSED] Link rate 2000000 lane count 4
[07:26:22] [PASSED] Link rate 2000000 lane count 2
[07:26:22] [PASSED] Link rate 2000000 lane count 1
[07:26:22] [PASSED] Link rate 1350000 lane count 4
[07:26:22] [PASSED] Link rate 1350000 lane count 2
[07:26:22] [PASSED] Link rate 1350000 lane count 1
[07:26:22] [PASSED] Link rate 1000000 lane count 4
[07:26:22] [PASSED] Link rate 1000000 lane count 2
[07:26:22] [PASSED] Link rate 1000000 lane count 1
[07:26:22] [PASSED] Link rate 810000 lane count 4
[07:26:22] [PASSED] Link rate 810000 lane count 2
[07:26:22] [PASSED] Link rate 810000 lane count 1
[07:26:22] [PASSED] Link rate 540000 lane count 4
[07:26:22] [PASSED] Link rate 540000 lane count 2
[07:26:22] [PASSED] Link rate 540000 lane count 1
[07:26:22] [PASSED] Link rate 270000 lane count 4
[07:26:22] [PASSED] Link rate 270000 lane count 2
[07:26:22] [PASSED] Link rate 270000 lane count 1
[07:26:22] [PASSED] Link rate 162000 lane count 4
[07:26:22] [PASSED] Link rate 162000 lane count 2
[07:26:22] [PASSED] Link rate 162000 lane count 1
[07:26:22] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[07:26:22] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[07:26:22] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[07:26:22] [PASSED] DP_POWER_UP_PHY with port number
[07:26:22] [PASSED] DP_POWER_DOWN_PHY with port number
[07:26:22] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[07:26:22] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[07:26:22] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[07:26:22] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[07:26:22] [PASSED] DP_QUERY_PAYLOAD with port number
[07:26:22] [PASSED] DP_QUERY_PAYLOAD with VCPI
[07:26:22] [PASSED] DP_REMOTE_DPCD_READ with port number
[07:26:22] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[07:26:22] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[07:26:22] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[07:26:22] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[07:26:22] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[07:26:22] [PASSED] DP_REMOTE_I2C_READ with port number
[07:26:22] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[07:26:22] [PASSED] DP_REMOTE_I2C_READ with transactions array
[07:26:22] [PASSED] DP_REMOTE_I2C_WRITE with port number
[07:26:22] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[07:26:22] [PASSED] DP_REMOTE_I2C_WRITE with data array
[07:26:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[07:26:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[07:26:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[07:26:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[07:26:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[07:26:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[07:26:22] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[07:26:22] ================ [PASSED] drm_dp_mst_helper ================
[07:26:22] ================== drm_exec (7 subtests) ===================
[07:26:22] [PASSED] sanitycheck
[07:26:22] [PASSED] test_lock
[07:26:22] [PASSED] test_lock_unlock
[07:26:22] [PASSED] test_duplicates
[07:26:22] [PASSED] test_prepare
[07:26:22] [PASSED] test_prepare_array
[07:26:22] [PASSED] test_multiple_loops
[07:26:22] ==================== [PASSED] drm_exec =====================
[07:26:22] =========== drm_format_helper_test (17 subtests) ===========
[07:26:22] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[07:26:22] [PASSED] single_pixel_source_buffer
[07:26:22] [PASSED] single_pixel_clip_rectangle
[07:26:22] [PASSED] well_known_colors
[07:26:22] [PASSED] destination_pitch
[07:26:22] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[07:26:22] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[07:26:22] [PASSED] single_pixel_source_buffer
[07:26:22] [PASSED] single_pixel_clip_rectangle
[07:26:22] [PASSED] well_known_colors
[07:26:22] [PASSED] destination_pitch
[07:26:22] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[07:26:22] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[07:26:22] [PASSED] single_pixel_source_buffer
[07:26:22] [PASSED] single_pixel_clip_rectangle
[07:26:22] [PASSED] well_known_colors
[07:26:22] [PASSED] destination_pitch
[07:26:22] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[07:26:22] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[07:26:22] [PASSED] single_pixel_source_buffer
[07:26:22] [PASSED] single_pixel_clip_rectangle
[07:26:22] [PASSED] well_known_colors
[07:26:22] [PASSED] destination_pitch
[07:26:22] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[07:26:22] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[07:26:22] [PASSED] single_pixel_source_buffer
[07:26:22] [PASSED] single_pixel_clip_rectangle
[07:26:22] [PASSED] well_known_colors
[07:26:22] [PASSED] destination_pitch
[07:26:22] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[07:26:22] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[07:26:22] [PASSED] single_pixel_source_buffer
[07:26:22] [PASSED] single_pixel_clip_rectangle
[07:26:22] [PASSED] well_known_colors
[07:26:22] [PASSED] destination_pitch
[07:26:22] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[07:26:22] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[07:26:22] [PASSED] single_pixel_source_buffer
[07:26:22] [PASSED] single_pixel_clip_rectangle
[07:26:22] [PASSED] well_known_colors
[07:26:22] [PASSED] destination_pitch
[07:26:22] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[07:26:22] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[07:26:22] [PASSED] single_pixel_source_buffer
[07:26:22] [PASSED] single_pixel_clip_rectangle
[07:26:22] [PASSED] well_known_colors
[07:26:22] [PASSED] destination_pitch
[07:26:22] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[07:26:22] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[07:26:22] [PASSED] single_pixel_source_buffer
[07:26:22] [PASSED] single_pixel_clip_rectangle
[07:26:22] [PASSED] well_known_colors
[07:26:22] [PASSED] destination_pitch
[07:26:22] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[07:26:22] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[07:26:22] [PASSED] single_pixel_source_buffer
[07:26:22] [PASSED] single_pixel_clip_rectangle
[07:26:22] [PASSED] well_known_colors
[07:26:22] [PASSED] destination_pitch
[07:26:22] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[07:26:22] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[07:26:22] [PASSED] single_pixel_source_buffer
[07:26:22] [PASSED] single_pixel_clip_rectangle
[07:26:22] [PASSED] well_known_colors
[07:26:22] [PASSED] destination_pitch
[07:26:22] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[07:26:22] ============== drm_test_fb_xrgb8888_to_mono ===============
[07:26:22] [PASSED] single_pixel_source_buffer
[07:26:22] [PASSED] single_pixel_clip_rectangle
[07:26:22] [PASSED] well_known_colors
[07:26:22] [PASSED] destination_pitch
[07:26:22] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[07:26:22] ==================== drm_test_fb_swab =====================
[07:26:22] [PASSED] single_pixel_source_buffer
[07:26:22] [PASSED] single_pixel_clip_rectangle
[07:26:22] [PASSED] well_known_colors
[07:26:22] [PASSED] destination_pitch
[07:26:22] ================ [PASSED] drm_test_fb_swab =================
[07:26:22] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[07:26:22] [PASSED] single_pixel_source_buffer
[07:26:22] [PASSED] single_pixel_clip_rectangle
[07:26:22] [PASSED] well_known_colors
[07:26:22] [PASSED] destination_pitch
[07:26:22] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[07:26:22] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[07:26:22] [PASSED] single_pixel_source_buffer
[07:26:22] [PASSED] single_pixel_clip_rectangle
[07:26:22] [PASSED] well_known_colors
[07:26:22] [PASSED] destination_pitch
[07:26:22] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[07:26:22] ================= drm_test_fb_clip_offset =================
[07:26:22] [PASSED] pass through
[07:26:22] [PASSED] horizontal offset
[07:26:22] [PASSED] vertical offset
[07:26:22] [PASSED] horizontal and vertical offset
[07:26:22] [PASSED] horizontal offset (custom pitch)
[07:26:22] [PASSED] vertical offset (custom pitch)
[07:26:22] [PASSED] horizontal and vertical offset (custom pitch)
[07:26:22] ============= [PASSED] drm_test_fb_clip_offset =============
[07:26:22] =================== drm_test_fb_memcpy ====================
[07:26:22] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[07:26:22] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[07:26:22] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[07:26:22] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[07:26:22] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[07:26:22] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[07:26:22] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[07:26:22] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[07:26:22] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[07:26:22] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[07:26:22] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[07:26:22] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[07:26:22] =============== [PASSED] drm_test_fb_memcpy ================
[07:26:22] ============= [PASSED] drm_format_helper_test ==============
[07:26:22] ================= drm_format (18 subtests) =================
[07:26:22] [PASSED] drm_test_format_block_width_invalid
[07:26:22] [PASSED] drm_test_format_block_width_one_plane
[07:26:22] [PASSED] drm_test_format_block_width_two_plane
[07:26:22] [PASSED] drm_test_format_block_width_three_plane
[07:26:22] [PASSED] drm_test_format_block_width_tiled
[07:26:22] [PASSED] drm_test_format_block_height_invalid
[07:26:22] [PASSED] drm_test_format_block_height_one_plane
[07:26:22] [PASSED] drm_test_format_block_height_two_plane
[07:26:22] [PASSED] drm_test_format_block_height_three_plane
[07:26:22] [PASSED] drm_test_format_block_height_tiled
[07:26:22] [PASSED] drm_test_format_min_pitch_invalid
[07:26:22] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[07:26:22] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[07:26:22] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[07:26:22] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[07:26:22] [PASSED] drm_test_format_min_pitch_two_plane
[07:26:22] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[07:26:22] [PASSED] drm_test_format_min_pitch_tiled
[07:26:22] =================== [PASSED] drm_format ====================
[07:26:22] ============== drm_framebuffer (10 subtests) ===============
[07:26:22] ========== drm_test_framebuffer_check_src_coords ==========
[07:26:22] [PASSED] Success: source fits into fb
[07:26:22] [PASSED] Fail: overflowing fb with x-axis coordinate
[07:26:22] [PASSED] Fail: overflowing fb with y-axis coordinate
[07:26:22] [PASSED] Fail: overflowing fb with source width
[07:26:22] [PASSED] Fail: overflowing fb with source height
[07:26:22] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[07:26:22] [PASSED] drm_test_framebuffer_cleanup
[07:26:22] =============== drm_test_framebuffer_create ===============
[07:26:22] [PASSED] ABGR8888 normal sizes
[07:26:22] [PASSED] ABGR8888 max sizes
[07:26:22] [PASSED] ABGR8888 pitch greater than min required
[07:26:22] [PASSED] ABGR8888 pitch less than min required
[07:26:22] [PASSED] ABGR8888 Invalid width
[07:26:22] [PASSED] ABGR8888 Invalid buffer handle
[07:26:22] [PASSED] No pixel format
[07:26:22] [PASSED] ABGR8888 Width 0
[07:26:22] [PASSED] ABGR8888 Height 0
[07:26:22] [PASSED] ABGR8888 Out of bound height * pitch combination
[07:26:22] [PASSED] ABGR8888 Large buffer offset
[07:26:22] [PASSED] ABGR8888 Buffer offset for inexistent plane
[07:26:22] [PASSED] ABGR8888 Invalid flag
[07:26:22] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[07:26:22] [PASSED] ABGR8888 Valid buffer modifier
[07:26:22] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[07:26:22] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[07:26:22] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[07:26:22] [PASSED] NV12 Normal sizes
[07:26:22] [PASSED] NV12 Max sizes
[07:26:22] [PASSED] NV12 Invalid pitch
[07:26:22] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[07:26:22] [PASSED] NV12 different modifier per-plane
[07:26:22] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[07:26:22] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[07:26:22] [PASSED] NV12 Modifier for inexistent plane
[07:26:22] [PASSED] NV12 Handle for inexistent plane
[07:26:22] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[07:26:22] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[07:26:22] [PASSED] YVU420 Normal sizes
[07:26:22] [PASSED] YVU420 Max sizes
[07:26:22] [PASSED] YVU420 Invalid pitch
[07:26:22] [PASSED] YVU420 Different pitches
[07:26:22] [PASSED] YVU420 Different buffer offsets/pitches
[07:26:22] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[07:26:22] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[07:26:22] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[07:26:22] [PASSED] YVU420 Valid modifier
[07:26:22] [PASSED] YVU420 Different modifiers per plane
[07:26:22] [PASSED] YVU420 Modifier for inexistent plane
[07:26:22] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[07:26:22] [PASSED] X0L2 Normal sizes
[07:26:22] [PASSED] X0L2 Max sizes
[07:26:22] [PASSED] X0L2 Invalid pitch
[07:26:22] [PASSED] X0L2 Pitch greater than minimum required
[07:26:22] [PASSED] X0L2 Handle for inexistent plane
[07:26:22] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[07:26:22] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[07:26:22] [PASSED] X0L2 Valid modifier
[07:26:22] [PASSED] X0L2 Modifier for inexistent plane
[07:26:22] =========== [PASSED] drm_test_framebuffer_create ===========
[07:26:22] [PASSED] drm_test_framebuffer_free
[07:26:22] [PASSED] drm_test_framebuffer_init
[07:26:22] [PASSED] drm_test_framebuffer_init_bad_format
[07:26:22] [PASSED] drm_test_framebuffer_init_dev_mismatch
[07:26:22] [PASSED] drm_test_framebuffer_lookup
[07:26:22] [PASSED] drm_test_framebuffer_lookup_inexistent
[07:26:22] [PASSED] drm_test_framebuffer_modifiers_not_supported
[07:26:22] ================= [PASSED] drm_framebuffer =================
[07:26:22] ================ drm_gem_shmem (8 subtests) ================
[07:26:22] [PASSED] drm_gem_shmem_test_obj_create
[07:26:22] [PASSED] drm_gem_shmem_test_obj_create_private
[07:26:22] [PASSED] drm_gem_shmem_test_pin_pages
[07:26:22] [PASSED] drm_gem_shmem_test_vmap
[07:26:22] [PASSED] drm_gem_shmem_test_get_pages_sgt
[07:26:22] [PASSED] drm_gem_shmem_test_get_sg_table
[07:26:22] [PASSED] drm_gem_shmem_test_madvise
[07:26:22] [PASSED] drm_gem_shmem_test_purge
[07:26:22] ================== [PASSED] drm_gem_shmem ==================
[07:26:22] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[07:26:22] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[07:26:22] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[07:26:22] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[07:26:22] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[07:26:22] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[07:26:22] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[07:26:22] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[07:26:22] [PASSED] Automatic
[07:26:22] [PASSED] Full
[07:26:22] [PASSED] Limited 16:235
[07:26:22] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[07:26:22] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[07:26:22] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[07:26:22] [PASSED] drm_test_check_disable_connector
[07:26:22] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[07:26:22] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[07:26:22] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[07:26:22] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[07:26:22] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[07:26:22] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[07:26:22] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[07:26:22] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[07:26:22] [PASSED] drm_test_check_output_bpc_dvi
[07:26:22] [PASSED] drm_test_check_output_bpc_format_vic_1
[07:26:22] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[07:26:22] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[07:26:22] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[07:26:22] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[07:26:22] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[07:26:22] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[07:26:22] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[07:26:22] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[07:26:22] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[07:26:22] [PASSED] drm_test_check_broadcast_rgb_value
[07:26:22] [PASSED] drm_test_check_bpc_8_value
[07:26:22] [PASSED] drm_test_check_bpc_10_value
[07:26:22] [PASSED] drm_test_check_bpc_12_value
[07:26:22] [PASSED] drm_test_check_format_value
[07:26:22] [PASSED] drm_test_check_tmds_char_value
[07:26:22] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[07:26:22] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[07:26:22] [PASSED] drm_test_check_mode_valid
[07:26:22] [PASSED] drm_test_check_mode_valid_reject
[07:26:22] [PASSED] drm_test_check_mode_valid_reject_rate
[07:26:22] [PASSED] drm_test_check_mode_valid_reject_max_clock
[07:26:22] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[07:26:22] ================= drm_managed (2 subtests) =================
[07:26:22] [PASSED] drm_test_managed_release_action
[07:26:22] [PASSED] drm_test_managed_run_action
[07:26:22] =================== [PASSED] drm_managed ===================
[07:26:22] =================== drm_mm (6 subtests) ====================
[07:26:22] [PASSED] drm_test_mm_init
[07:26:22] [PASSED] drm_test_mm_debug
[07:26:22] [PASSED] drm_test_mm_align32
[07:26:22] [PASSED] drm_test_mm_align64
[07:26:22] [PASSED] drm_test_mm_lowest
[07:26:22] [PASSED] drm_test_mm_highest
[07:26:22] ===================== [PASSED] drm_mm ======================
[07:26:22] ============= drm_modes_analog_tv (5 subtests) =============
[07:26:22] [PASSED] drm_test_modes_analog_tv_mono_576i
[07:26:22] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[07:26:22] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[07:26:22] [PASSED] drm_test_modes_analog_tv_pal_576i
[07:26:22] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[07:26:22] =============== [PASSED] drm_modes_analog_tv ===============
[07:26:22] ============== drm_plane_helper (2 subtests) ===============
[07:26:22] =============== drm_test_check_plane_state ================
[07:26:22] [PASSED] clipping_simple
[07:26:22] [PASSED] clipping_rotate_reflect
[07:26:22] [PASSED] positioning_simple
[07:26:22] [PASSED] upscaling
[07:26:22] [PASSED] downscaling
[07:26:22] [PASSED] rounding1
[07:26:22] [PASSED] rounding2
[07:26:22] [PASSED] rounding3
[07:26:22] [PASSED] rounding4
[07:26:22] =========== [PASSED] drm_test_check_plane_state ============
[07:26:22] =========== drm_test_check_invalid_plane_state ============
[07:26:22] [PASSED] positioning_invalid
[07:26:22] [PASSED] upscaling_invalid
[07:26:22] [PASSED] downscaling_invalid
[07:26:22] ======= [PASSED] drm_test_check_invalid_plane_state ========
[07:26:22] ================ [PASSED] drm_plane_helper =================
[07:26:22] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[07:26:22] ====== drm_test_connector_helper_tv_get_modes_check =======
[07:26:22] [PASSED] None
[07:26:22] [PASSED] PAL
[07:26:22] [PASSED] NTSC
[07:26:22] [PASSED] Both, NTSC Default
[07:26:22] [PASSED] Both, PAL Default
[07:26:22] [PASSED] Both, NTSC Default, with PAL on command-line
[07:26:22] [PASSED] Both, PAL Default, with NTSC on command-line
[07:26:22] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[07:26:22] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[07:26:22] ================== drm_rect (9 subtests) ===================
[07:26:22] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[07:26:22] [PASSED] drm_test_rect_clip_scaled_not_clipped
[07:26:22] [PASSED] drm_test_rect_clip_scaled_clipped
[07:26:22] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[07:26:22] ================= drm_test_rect_intersect =================
[07:26:22] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[07:26:22] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[07:26:22] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[07:26:22] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[07:26:22] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[07:26:22] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[07:26:22] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[07:26:22] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[07:26:22] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[07:26:22] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[07:26:22] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[07:26:22] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[07:26:22] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[07:26:22] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[07:26:22] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[07:26:22] ============= [PASSED] drm_test_rect_intersect =============
[07:26:22] ================ drm_test_rect_calc_hscale ================
[07:26:22] [PASSED] normal use
[07:26:22] [PASSED] out of max range
[07:26:22] [PASSED] out of min range
[07:26:22] [PASSED] zero dst
[07:26:22] [PASSED] negative src
[07:26:22] [PASSED] negative dst
[07:26:22] ============ [PASSED] drm_test_rect_calc_hscale ============
[07:26:22] ================ drm_test_rect_calc_vscale ================
[07:26:22] [PASSED] normal use
[07:26:22] [PASSED] out of max range
[07:26:22] [PASSED] out of min range
[07:26:22] [PASSED] zero dst
[07:26:22] [PASSED] negative src
[07:26:22] [PASSED] negative dst
[07:26:22] ============ [PASSED] drm_test_rect_calc_vscale ============
[07:26:22] ================== drm_test_rect_rotate ===================
[07:26:22] [PASSED] reflect-x
[07:26:22] [PASSED] reflect-y
[07:26:22] [PASSED] rotate-0
[07:26:22] [PASSED] rotate-90
[07:26:22] [PASSED] rotate-180
[07:26:22] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[07:26:22] ============== [PASSED] drm_test_rect_rotate ===============
[07:26:22] ================ drm_test_rect_rotate_inv =================
[07:26:22] [PASSED] reflect-x
[07:26:22] [PASSED] reflect-y
[07:26:22] [PASSED] rotate-0
[07:26:22] [PASSED] rotate-90
[07:26:22] [PASSED] rotate-180
[07:26:22] [PASSED] rotate-270
[07:26:22] ============ [PASSED] drm_test_rect_rotate_inv =============
[07:26:22] ==================== [PASSED] drm_rect =====================
[07:26:22] ============ drm_sysfb_modeset_test (1 subtest) ============
[07:26:22] ============ drm_test_sysfb_build_fourcc_list =============
[07:26:22] [PASSED] no native formats
[07:26:22] [PASSED] XRGB8888 as native format
[07:26:22] [PASSED] remove duplicates
[07:26:22] [PASSED] convert alpha formats
[07:26:22] [PASSED] random formats
[07:26:22] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[07:26:22] ============= [PASSED] drm_sysfb_modeset_test ==============
[07:26:22] ============================================================
[07:26:22] Testing complete. Ran 616 tests: passed: 616
[07:26:22] Elapsed time: 25.083s total, 1.718s configuring, 23.198s building, 0.144s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[07:26:22] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:26:24] 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:26:32] Starting KUnit Kernel (1/1)...
[07:26:32] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:26:32] ================= ttm_device (5 subtests) ==================
[07:26:32] [PASSED] ttm_device_init_basic
[07:26:32] [PASSED] ttm_device_init_multiple
[07:26:32] [PASSED] ttm_device_fini_basic
[07:26:32] [PASSED] ttm_device_init_no_vma_man
[07:26:32] ================== ttm_device_init_pools ==================
[07:26:32] [PASSED] No DMA allocations, no DMA32 required
[07:26:32] [PASSED] DMA allocations, DMA32 required
[07:26:32] [PASSED] No DMA allocations, DMA32 required
[07:26:32] [PASSED] DMA allocations, no DMA32 required
[07:26:32] ============== [PASSED] ttm_device_init_pools ==============
[07:26:32] =================== [PASSED] ttm_device ====================
[07:26:32] ================== ttm_pool (8 subtests) ===================
[07:26:32] ================== ttm_pool_alloc_basic ===================
[07:26:32] [PASSED] One page
[07:26:32] [PASSED] More than one page
[07:26:32] [PASSED] Above the allocation limit
[07:26:32] [PASSED] One page, with coherent DMA mappings enabled
[07:26:32] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[07:26:32] ============== [PASSED] ttm_pool_alloc_basic ===============
[07:26:32] ============== ttm_pool_alloc_basic_dma_addr ==============
[07:26:32] [PASSED] One page
[07:26:32] [PASSED] More than one page
[07:26:32] [PASSED] Above the allocation limit
[07:26:32] [PASSED] One page, with coherent DMA mappings enabled
[07:26:32] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[07:26:32] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[07:26:32] [PASSED] ttm_pool_alloc_order_caching_match
[07:26:32] [PASSED] ttm_pool_alloc_caching_mismatch
[07:26:32] [PASSED] ttm_pool_alloc_order_mismatch
[07:26:32] [PASSED] ttm_pool_free_dma_alloc
[07:26:32] [PASSED] ttm_pool_free_no_dma_alloc
[07:26:32] [PASSED] ttm_pool_fini_basic
[07:26:32] ==================== [PASSED] ttm_pool =====================
[07:26:32] ================ ttm_resource (8 subtests) =================
[07:26:32] ================= ttm_resource_init_basic =================
[07:26:32] [PASSED] Init resource in TTM_PL_SYSTEM
[07:26:32] [PASSED] Init resource in TTM_PL_VRAM
[07:26:32] [PASSED] Init resource in a private placement
[07:26:32] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[07:26:32] ============= [PASSED] ttm_resource_init_basic =============
[07:26:32] [PASSED] ttm_resource_init_pinned
[07:26:32] [PASSED] ttm_resource_fini_basic
[07:26:32] [PASSED] ttm_resource_manager_init_basic
[07:26:32] [PASSED] ttm_resource_manager_usage_basic
[07:26:32] [PASSED] ttm_resource_manager_set_used_basic
[07:26:32] [PASSED] ttm_sys_man_alloc_basic
[07:26:32] [PASSED] ttm_sys_man_free_basic
[07:26:32] ================== [PASSED] ttm_resource ===================
[07:26:32] =================== ttm_tt (15 subtests) ===================
[07:26:32] ==================== ttm_tt_init_basic ====================
[07:26:32] [PASSED] Page-aligned size
[07:26:32] [PASSED] Extra pages requested
[07:26:32] ================ [PASSED] ttm_tt_init_basic ================
[07:26:32] [PASSED] ttm_tt_init_misaligned
[07:26:32] [PASSED] ttm_tt_fini_basic
[07:26:32] [PASSED] ttm_tt_fini_sg
[07:26:32] [PASSED] ttm_tt_fini_shmem
[07:26:32] [PASSED] ttm_tt_create_basic
[07:26:32] [PASSED] ttm_tt_create_invalid_bo_type
[07:26:32] [PASSED] ttm_tt_create_ttm_exists
[07:26:32] [PASSED] ttm_tt_create_failed
[07:26:32] [PASSED] ttm_tt_destroy_basic
[07:26:32] [PASSED] ttm_tt_populate_null_ttm
[07:26:32] [PASSED] ttm_tt_populate_populated_ttm
[07:26:32] [PASSED] ttm_tt_unpopulate_basic
[07:26:32] [PASSED] ttm_tt_unpopulate_empty_ttm
[07:26:32] [PASSED] ttm_tt_swapin_basic
[07:26:32] ===================== [PASSED] ttm_tt ======================
[07:26:32] =================== ttm_bo (14 subtests) ===================
[07:26:32] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[07:26:32] [PASSED] Cannot be interrupted and sleeps
[07:26:32] [PASSED] Cannot be interrupted, locks straight away
[07:26:32] [PASSED] Can be interrupted, sleeps
[07:26:32] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[07:26:32] [PASSED] ttm_bo_reserve_locked_no_sleep
[07:26:32] [PASSED] ttm_bo_reserve_no_wait_ticket
[07:26:32] [PASSED] ttm_bo_reserve_double_resv
[07:26:32] [PASSED] ttm_bo_reserve_interrupted
[07:26:32] [PASSED] ttm_bo_reserve_deadlock
[07:26:32] [PASSED] ttm_bo_unreserve_basic
[07:26:32] [PASSED] ttm_bo_unreserve_pinned
[07:26:32] [PASSED] ttm_bo_unreserve_bulk
[07:26:32] [PASSED] ttm_bo_put_basic
[07:26:32] [PASSED] ttm_bo_put_shared_resv
[07:26:32] [PASSED] ttm_bo_pin_basic
[07:26:32] [PASSED] ttm_bo_pin_unpin_resource
[07:26:32] [PASSED] ttm_bo_multiple_pin_one_unpin
[07:26:32] ===================== [PASSED] ttm_bo ======================
[07:26:32] ============== ttm_bo_validate (21 subtests) ===============
[07:26:32] ============== ttm_bo_init_reserved_sys_man ===============
[07:26:32] [PASSED] Buffer object for userspace
[07:26:32] [PASSED] Kernel buffer object
[07:26:32] [PASSED] Shared buffer object
[07:26:32] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[07:26:32] ============== ttm_bo_init_reserved_mock_man ==============
[07:26:32] [PASSED] Buffer object for userspace
[07:26:32] [PASSED] Kernel buffer object
[07:26:32] [PASSED] Shared buffer object
[07:26:32] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[07:26:32] [PASSED] ttm_bo_init_reserved_resv
[07:26:32] ================== ttm_bo_validate_basic ==================
[07:26:32] [PASSED] Buffer object for userspace
[07:26:32] [PASSED] Kernel buffer object
[07:26:32] [PASSED] Shared buffer object
[07:26:32] ============== [PASSED] ttm_bo_validate_basic ==============
[07:26:32] [PASSED] ttm_bo_validate_invalid_placement
[07:26:32] ============= ttm_bo_validate_same_placement ==============
[07:26:32] [PASSED] System manager
[07:26:32] [PASSED] VRAM manager
[07:26:32] ========= [PASSED] ttm_bo_validate_same_placement ==========
[07:26:32] [PASSED] ttm_bo_validate_failed_alloc
[07:26:32] [PASSED] ttm_bo_validate_pinned
[07:26:32] [PASSED] ttm_bo_validate_busy_placement
[07:26:32] ================ ttm_bo_validate_multihop =================
[07:26:32] [PASSED] Buffer object for userspace
[07:26:32] [PASSED] Kernel buffer object
[07:26:32] [PASSED] Shared buffer object
[07:26:32] ============ [PASSED] ttm_bo_validate_multihop =============
[07:26:32] ========== ttm_bo_validate_no_placement_signaled ==========
[07:26:32] [PASSED] Buffer object in system domain, no page vector
[07:26:32] [PASSED] Buffer object in system domain with an existing page vector
[07:26:32] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[07:26:32] ======== ttm_bo_validate_no_placement_not_signaled ========
[07:26:32] [PASSED] Buffer object for userspace
[07:26:32] [PASSED] Kernel buffer object
[07:26:32] [PASSED] Shared buffer object
[07:26:32] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[07:26:32] [PASSED] ttm_bo_validate_move_fence_signaled
[07:26:32] ========= ttm_bo_validate_move_fence_not_signaled =========
[07:26:32] [PASSED] Waits for GPU
[07:26:32] [PASSED] Tries to lock straight away
[07:26:32] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[07:26:32] [PASSED] ttm_bo_validate_happy_evict
[07:26:32] [PASSED] ttm_bo_validate_all_pinned_evict
[07:26:32] [PASSED] ttm_bo_validate_allowed_only_evict
[07:26:32] [PASSED] ttm_bo_validate_deleted_evict
[07:26:32] [PASSED] ttm_bo_validate_busy_domain_evict
[07:26:32] [PASSED] ttm_bo_validate_evict_gutting
[07:26:32] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[07:26:32] ================= [PASSED] ttm_bo_validate =================
[07:26:32] ============================================================
[07:26:32] Testing complete. Ran 101 tests: passed: 101
[07:26:32] Elapsed time: 9.945s total, 1.711s configuring, 7.968s building, 0.226s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 17+ messages in thread
* ✓ Xe.CI.BAT: success for RFC: Add dedicated printk macros for tile and device (rev3)
2025-09-09 16:59 [PATCH v2 0/5] RFC: Add dedicated printk macros for tile and device Michal Wajdeczko
` (8 preceding siblings ...)
2025-09-12 7:26 ` ✓ CI.KUnit: success " Patchwork
@ 2025-09-12 8:08 ` Patchwork
2025-09-12 9:58 ` ✗ Xe.CI.Full: failure " Patchwork
10 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-09-12 8:08 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 2126 bytes --]
== Series Details ==
Series: RFC: Add dedicated printk macros for tile and device (rev3)
URL : https://patchwork.freedesktop.org/series/153985/
State : success
== Summary ==
CI Bug Log - changes from xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c_BAT -> xe-pw-153985v3_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-153985v3_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- bat-lnl-2: [PASS][1] -> [ABORT][2] ([Intel XE#6122])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/bat-lnl-2/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/bat-lnl-2/igt@core_hotunplug@unbind-rebind.html
* igt@xe_pat@pat-index-xe2@render:
- bat-bmg-2: [PASS][3] -> [FAIL][4] ([Intel XE#5507]) +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/bat-bmg-2/igt@xe_pat@pat-index-xe2@render.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/bat-bmg-2/igt@xe_pat@pat-index-xe2@render.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#5507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5507
[Intel XE#5783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5783
[Intel XE#6122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6122
Build changes
-------------
* Linux: xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c -> xe-pw-153985v3
IGT_8536: 8536
xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c: 6d209e86cb298782b5afa278b7b0fc73cb433b4c
xe-pw-153985v3: 153985v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/index.html
[-- Attachment #2: Type: text/html, Size: 2659 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread
* ✗ Xe.CI.Full: failure for RFC: Add dedicated printk macros for tile and device (rev3)
2025-09-09 16:59 [PATCH v2 0/5] RFC: Add dedicated printk macros for tile and device Michal Wajdeczko
` (9 preceding siblings ...)
2025-09-12 8:08 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-09-12 9:58 ` Patchwork
2025-09-12 10:18 ` Michal Wajdeczko
10 siblings, 1 reply; 17+ messages in thread
From: Patchwork @ 2025-09-12 9:58 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 45615 bytes --]
== Series Details ==
Series: RFC: Add dedicated printk macros for tile and device (rev3)
URL : https://patchwork.freedesktop.org/series/153985/
State : failure
== Summary ==
CI Bug Log - changes from xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c_FULL -> xe-pw-153985v3_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-153985v3_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-153985v3_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-153985v3_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_threads@threads-cm-shared-vm-basic:
- shard-adlp: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-2/igt@xe_exec_threads@threads-cm-shared-vm-basic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-1/igt@xe_exec_threads@threads-cm-shared-vm-basic.html
#### Warnings ####
* igt@kms_pm_rpm@modeset-lpsp:
- shard-adlp: [ABORT][3] ([Intel XE#6122]) -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-2/igt@kms_pm_rpm@modeset-lpsp.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-1/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2-set2: [ABORT][5] ([Intel XE#6122]) -> [INCOMPLETE][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-dg2-432/igt@kms_pm_rpm@modeset-lpsp-stress.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-dg2-432/igt@kms_pm_rpm@modeset-lpsp-stress.html
Known issues
------------
Here are the changes found in xe-pw-153985v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotreplug:
- shard-adlp: [PASS][7] -> [DMESG-WARN][8] ([Intel XE#2953] / [Intel XE#4173])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-3/igt@core_hotunplug@hotreplug.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-9/igt@core_hotunplug@hotreplug.html
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [PASS][9] -> [FAIL][10] ([Intel XE#6084]) +3 other tests fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-adlp: [PASS][11] -> [FAIL][12] ([Intel XE#3908]) +1 other test fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-3/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-9/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2327])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-5/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][14] ([Intel XE#316]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-adlp: NOTRUN -> [SKIP][15] ([Intel XE#1124])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-adlp: NOTRUN -> [SKIP][16] ([Intel XE#367])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#367])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][18] ([Intel XE#787]) +5 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs:
- shard-adlp: NOTRUN -> [SKIP][19] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2887]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-5/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2652] / [Intel XE#787]) +12 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-adlp: NOTRUN -> [SKIP][22] ([Intel XE#2907])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2252]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-5/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-adlp: NOTRUN -> [SKIP][24] ([Intel XE#306])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_frames@hdmi-cmp-planes-random:
- shard-adlp: NOTRUN -> [SKIP][25] ([Intel XE#373]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][26] ([Intel XE#1178]) +1 other test fail
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-5/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2320])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-5/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-adlp: NOTRUN -> [SKIP][28] ([Intel XE#308])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-bmg: [PASS][29] -> [SKIP][30] ([Intel XE#2291]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: NOTRUN -> [FAIL][31] ([Intel XE#4633])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-adlp: NOTRUN -> [SKIP][32] ([Intel XE#455]) +6 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-adlp: NOTRUN -> [SKIP][33] ([Intel XE#310])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-bmg: [PASS][34] -> [FAIL][35] ([Intel XE#3098]) +1 other test fail
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [PASS][36] -> [SKIP][37] ([Intel XE#2316]) +5 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-bmg-3/igt@kms_flip@2x-nonexisting-fb.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [PASS][38] -> [FAIL][39] ([Intel XE#301] / [Intel XE#3149])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [PASS][40] -> [FAIL][41] ([Intel XE#301])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1401] / [Intel XE#1745])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1401])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#5390]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-adlp: NOTRUN -> [SKIP][45] ([Intel XE#656]) +7 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2311]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-stridechange:
- shard-adlp: NOTRUN -> [SKIP][47] ([Intel XE#651]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcdrrs-stridechange.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
- shard-adlp: NOTRUN -> [SKIP][48] ([Intel XE#653]) +3 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#656]) +5 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-lnl-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2313]) +4 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [PASS][51] -> [SKIP][52] ([Intel XE#3012])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][53] ([Intel XE#2925])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-adlp: NOTRUN -> [SKIP][54] ([Intel XE#309]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-bmg: NOTRUN -> [ABORT][55] ([Intel XE#6122]) +1 other test abort
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-8/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_pm_rpm@basic-rte:
- shard-lnl: NOTRUN -> [ABORT][56] ([Intel XE#6122])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-lnl-8/igt@kms_pm_rpm@basic-rte.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-adlp: NOTRUN -> [ABORT][57] ([Intel XE#2953] / [Intel XE#6122])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-adlp: NOTRUN -> [SKIP][58] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1406] / [Intel XE#2893])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-lnl-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#1406] / [Intel XE#2387])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-5/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-suspend:
- shard-adlp: NOTRUN -> [SKIP][61] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@kms_psr@fbc-pr-suspend.html
* igt@kms_psr@fbc-psr-dpms:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-5/igt@kms_psr@fbc-psr-dpms.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-adlp: NOTRUN -> [SKIP][63] ([Intel XE#3414])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2413])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-5/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [FAIL][65] ([Intel XE#1729])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_eudebug@basic-vm-bind:
- shard-adlp: NOTRUN -> [SKIP][66] ([Intel XE#4837] / [Intel XE#5565]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@xe_eudebug@basic-vm-bind.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#4837]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-vram:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#4837])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-lnl-8/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-vram.html
* igt@xe_evict@evict-beng-small-multi-vm:
- shard-adlp: NOTRUN -> [SKIP][69] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@xe_evict@evict-beng-small-multi-vm.html
* igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen:
- shard-adlp: NOTRUN -> [SKIP][70] ([Intel XE#5563] / [Intel XE#688])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2322]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1392])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
* igt@xe_exec_basic@multigpu-no-exec-rebind:
- shard-adlp: NOTRUN -> [SKIP][73] ([Intel XE#1392] / [Intel XE#5575]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@xe_exec_basic@multigpu-no-exec-rebind.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race-prefetch:
- shard-adlp: NOTRUN -> [SKIP][74] ([Intel XE#288] / [Intel XE#5561]) +5 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race-prefetch.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-adlp: [PASS][75] -> [DMESG-WARN][76] ([Intel XE#3876]) +1 other test dmesg-warn
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-2/igt@xe_exec_reset@parallel-gt-reset.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-1/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_system_allocator@many-large-execqueues-mmap-new-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#4943])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-lnl-8/igt@xe_exec_system_allocator@many-large-execqueues-mmap-new-huge-nomemset.html
* igt@xe_exec_system_allocator@many-stride-free:
- shard-adlp: NOTRUN -> [SKIP][78] ([Intel XE#4915]) +56 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@xe_exec_system_allocator@many-stride-free.html
* igt@xe_exec_system_allocator@process-many-large-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#4943]) +4 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-5/igt@xe_exec_system_allocator@process-many-large-mmap-huge-nomemset.html
* igt@xe_exec_threads@threads-hang-shared-vm-userptr-invalidate-race:
- shard-adlp: [PASS][80] -> [DMESG-FAIL][81] ([Intel XE#3876])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-2/igt@xe_exec_threads@threads-hang-shared-vm-userptr-invalidate-race.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-1/igt@xe_exec_threads@threads-hang-shared-vm-userptr-invalidate-race.html
* igt@xe_mmap@pci-membarrier-bad-object:
- shard-adlp: NOTRUN -> [SKIP][82] ([Intel XE#5100])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@xe_mmap@pci-membarrier-bad-object.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-adlp: NOTRUN -> [SKIP][83] ([Intel XE#3573]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-adlp: [PASS][84] -> [DMESG-WARN][85] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-3/igt@xe_pm@s2idle-vm-bind-prefetch.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-4/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pxp@pxp-termination-key-update-post-rpm:
- shard-adlp: NOTRUN -> [SKIP][86] ([Intel XE#4733] / [Intel XE#5594])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@xe_pxp@pxp-termination-key-update-post-rpm.html
* igt@xe_query@multigpu-query-invalid-query:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#944])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-5/igt@xe_query@multigpu-query-invalid-query.html
#### Possible fixes ####
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-adlp: [DMESG-FAIL][88] ([Intel XE#4543]) -> [PASS][89]
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic:
- shard-lnl: [INCOMPLETE][90] ([Intel XE#3226]) -> [PASS][91]
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-lnl-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-lnl-8/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [SKIP][92] ([Intel XE#2291]) -> [PASS][93] +2 other tests pass
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-bmg: [SKIP][94] ([Intel XE#2316]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-bmg: [SKIP][96] ([Intel XE#4596]) -> [PASS][97]
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-x.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_pm_rpm@universal-planes-dpms@plane-73:
- shard-adlp: [DMESG-WARN][98] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][99]
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-4/igt@kms_pm_rpm@universal-planes-dpms@plane-73.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-6/igt@kms_pm_rpm@universal-planes-dpms@plane-73.html
* igt@xe_exec_basic@many-execqueues-null-defer-mmap:
- shard-bmg: [DMESG-WARN][100] ([Intel XE#3876]) -> [PASS][101]
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-bmg-3/igt@xe_exec_basic@many-execqueues-null-defer-mmap.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-6/igt@xe_exec_basic@many-execqueues-null-defer-mmap.html
* igt@xe_exec_threads@threads-cm-shared-vm-basic:
- shard-bmg: [FAIL][102] -> [PASS][103]
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-bmg-3/igt@xe_exec_threads@threads-cm-shared-vm-basic.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-6/igt@xe_exec_threads@threads-cm-shared-vm-basic.html
* igt@xe_exec_threads@threads-hang-shared-vm-userptr-invalidate-race:
- shard-bmg: [DMESG-FAIL][104] ([Intel XE#3876]) -> [PASS][105]
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-bmg-3/igt@xe_exec_threads@threads-hang-shared-vm-userptr-invalidate-race.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-6/igt@xe_exec_threads@threads-hang-shared-vm-userptr-invalidate-race.html
* igt@xe_module_load@load:
- shard-adlp: ([PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [DMESG-WARN][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130]) ([Intel XE#2953] / [Intel XE#4173]) -> ([PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-3/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-4/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-9/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-9/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-1/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-1/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-6/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-4/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-4/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-3/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-3/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-2/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-2/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-8/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-8/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-1/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-2/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-8/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-1/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-6/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-6/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-3/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-9/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-6/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-9/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-1/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-1/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-1/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-4/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-4/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-4/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-4/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-3/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-3/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-3/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-3/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-2/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-8/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-8/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-8/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-9/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-9/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-9/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-9/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-6/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-6/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-6/igt@xe_module_load@load.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][155] ([Intel XE#2311]) -> [SKIP][156] ([Intel XE#2312]) +5 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: [SKIP][157] ([Intel XE#2312]) -> [SKIP][158] ([Intel XE#2311]) +4 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][159] ([Intel XE#2312]) -> [SKIP][160] ([Intel XE#5390]) +3 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][161] ([Intel XE#5390]) -> [SKIP][162] ([Intel XE#2312]) +2 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][163] ([Intel XE#2312]) -> [SKIP][164] ([Intel XE#2313]) +5 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][165] ([Intel XE#2313]) -> [SKIP][166] ([Intel XE#2312]) +6 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][167] ([Intel XE#4596]) -> [SKIP][168] ([Intel XE#5021])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: [ABORT][169] ([Intel XE#4760] / [Intel XE#5545]) -> [ABORT][170] ([Intel XE#6122])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-bmg-6/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-adlp: [ABORT][171] ([Intel XE#2953] / [Intel XE#6122]) -> [ABORT][172] ([Intel XE#6122])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-4/igt@kms_pm_rpm@universal-planes-dpms.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-6/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-lnl: [ABORT][173] ([Intel XE#4917] / [Intel XE#5466]) -> [ABORT][174] ([Intel XE#5466])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-lnl-7/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-lnl-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
- shard-adlp: [ABORT][175] ([Intel XE#4917] / [Intel XE#5530]) -> [ABORT][176] ([Intel XE#5530])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5563]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5563
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
[Intel XE#6084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6084
[Intel XE#6122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6122
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c -> xe-pw-153985v3
IGT_8536: 8536
xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c: 6d209e86cb298782b5afa278b7b0fc73cb433b4c
xe-pw-153985v3: 153985v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/index.html
[-- Attachment #2: Type: text/html, Size: 52250 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: ✗ Xe.CI.Full: failure for RFC: Add dedicated printk macros for tile and device (rev3)
2025-09-12 9:58 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-09-12 10:18 ` Michal Wajdeczko
0 siblings, 0 replies; 17+ messages in thread
From: Michal Wajdeczko @ 2025-09-12 10:18 UTC (permalink / raw)
To: intel-xe
On 9/12/2025 11:58 AM, Patchwork wrote:
> *Patch Details*
> *Series:* RFC: Add dedicated printk macros for tile and device (rev3)
> *URL:* https://patchwork.freedesktop.org/series/153985/ <https://patchwork.freedesktop.org/series/153985/>
> *State:* failure
> *Details:* https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/index.html <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/index.html>
>
>
> CI Bug Log - changes from xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c_FULL -> xe-pw-153985v3_FULL
>
>
> Summary
>
> *FAILURE*
>
> Serious unknown changes coming with xe-pw-153985v3_FULL absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in xe-pw-153985v3_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
> to document this new failure mode, which will reduce false positives in CI.
>
>
> Participating hosts (4 -> 4)
>
> No changes in participating hosts
>
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in xe-pw-153985v3_FULL:
>
>
> IGT changes
>
>
> Possible regressions
>
> * igt@xe_exec_threads@threads-cm-shared-vm-basic:
> o shard-adlp: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/xe-3732-6d209e86cb298782b5afa278b7b0fc73cb433b4c/shard-adlp-2/igt@xe_exec_threads@threads-cm-shared-vm-basic.html> -> FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153985v3/shard-adlp-1/igt@xe_exec_threads@threads-cm-shared-vm-basic.html>
>
unrelated:
(xe_exec_threads:3160) [thread:3166] xe/xe_ioctl-CRITICAL: Test assertion failure function xe_wait_ufence, file ../lib/xe/xe_ioctl.c:676:
(xe_exec_threads:3160) [thread:3166] xe/xe_ioctl-CRITICAL: Failed assertion: __xe_wait_ufence(fd, addr, value, exec_queue, &timeout) == 0
(xe_exec_threads:3160) [thread:3166] xe/xe_ioctl-CRITICAL: Last errno: 62, Timer expired
(xe_exec_threads:3160) [thread:3166] xe/xe_ioctl-CRITICAL: error: -62 != 0
and new messages look correct:
xe 0000:00:02.0: [drm:xe_guc_exec_queue_memory_cat_error_handler [xe]] Tile0: GT0: Engine memory CAT error: class=vcs, logical_mask: 0x2, guc_id=40
xe 0000:00:02.0: [drm] Tile0: GT0: Engine reset: engine_class=vcs, logical_mask: 0x1, guc_id=80
^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2025-09-12 10:18 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-09 16:59 [PATCH v2 0/5] RFC: Add dedicated printk macros for tile and device Michal Wajdeczko
2025-09-09 16:59 ` [PATCH v2 1/5] drm/xe: Keep xe_gt_err() macro definitions together Michal Wajdeczko
2025-09-09 16:59 ` [PATCH v2 2/5] drm/xe: Drop "gt_" prefix from xe_gt_WARN() macros Michal Wajdeczko
2025-09-09 16:59 ` [PATCH v2 3/5] drm/xe: Prepare format for GT-oriented messages in one place Michal Wajdeczko
2025-09-10 21:28 ` Rodrigo Vivi
2025-09-11 3:49 ` Lucas De Marchi
2025-09-09 16:59 ` [PATCH v2 4/5] drm/xe: Add dedicated printk macros for tile and device Michal Wajdeczko
2025-09-10 21:28 ` Rodrigo Vivi
2025-09-11 3:51 ` Lucas De Marchi
2025-09-09 16:59 ` [PATCH v2 5/5] drm/xe: Use tile-oriented messages in GGTT code Michal Wajdeczko
2025-09-09 17:52 ` ✗ CI.checkpatch: warning for RFC: Add dedicated printk macros for tile and device (rev2) Patchwork
2025-09-09 17:53 ` ✓ CI.KUnit: success " Patchwork
2025-09-12 7:25 ` ✗ CI.checkpatch: warning for RFC: Add dedicated printk macros for tile and device (rev3) Patchwork
2025-09-12 7:26 ` ✓ CI.KUnit: success " Patchwork
2025-09-12 8:08 ` ✓ Xe.CI.BAT: " Patchwork
2025-09-12 9:58 ` ✗ Xe.CI.Full: failure " Patchwork
2025-09-12 10:18 ` Michal Wajdeczko
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.