* [PATCH 0/5] drm/xe/mert: Minor improvements to MERT code
@ 2026-01-09 15:12 Michal Wajdeczko
2026-01-09 15:12 ` [PATCH 1/5] drm/xe/mert: Normalize xe_mert.h include guards Michal Wajdeczko
` (11 more replies)
0 siblings, 12 replies; 19+ messages in thread
From: Michal Wajdeczko @ 2026-01-09 15:12 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Lukasz Laguna
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Michal Wajdeczko (5):
drm/xe/mert: Normalize xe_mert.h include guards
drm/xe/mert: Fix kernel-doc for struct xe_mert
drm/xe/mert: Always refer to MERT using xe_device
drm/xe/mert: Use local mert variable to simplify the code
drm/xe/mert: Move MERT initialization to xe_mert.c
drivers/gpu/drm/xe/xe_lmtt.c | 2 +-
drivers/gpu/drm/xe/xe_mert.c | 32 +++++++++++++++++++++++---------
drivers/gpu/drm/xe/xe_mert.h | 15 +++++++++------
drivers/gpu/drm/xe/xe_sriov_pf.c | 4 +---
4 files changed, 34 insertions(+), 19 deletions(-)
--
2.47.1
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH 1/5] drm/xe/mert: Normalize xe_mert.h include guards
2026-01-09 15:12 [PATCH 0/5] drm/xe/mert: Minor improvements to MERT code Michal Wajdeczko
@ 2026-01-09 15:12 ` Michal Wajdeczko
2026-01-09 15:59 ` Laguna, Lukasz
2026-01-09 15:12 ` [PATCH 2/5] drm/xe/mert: Fix kernel-doc for struct xe_mert Michal Wajdeczko
` (10 subsequent siblings)
11 siblings, 1 reply; 19+ messages in thread
From: Michal Wajdeczko @ 2026-01-09 15:12 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Lukasz Laguna
Most of our header files are using include guard names with single
underscore and we don't use trailing comments on final #endif.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
---
drivers/gpu/drm/xe/xe_mert.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_mert.h b/drivers/gpu/drm/xe/xe_mert.h
index 2e14c5dec008..0de8243e46bd 100644
--- a/drivers/gpu/drm/xe/xe_mert.h
+++ b/drivers/gpu/drm/xe/xe_mert.h
@@ -3,8 +3,8 @@
* Copyright(c) 2025, Intel Corporation. All rights reserved.
*/
-#ifndef __XE_MERT_H__
-#define __XE_MERT_H__
+#ifndef _XE_MERT_H_
+#define _XE_MERT_H_
#include <linux/completion.h>
#include <linux/spinlock.h>
@@ -29,4 +29,4 @@ void xe_mert_irq_handler(struct xe_device *xe, u32 master_ctl);
static inline void xe_mert_irq_handler(struct xe_device *xe, u32 master_ctl) { }
#endif
-#endif /* __XE_MERT_H__ */
+#endif
--
2.47.1
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH 2/5] drm/xe/mert: Fix kernel-doc for struct xe_mert
2026-01-09 15:12 [PATCH 0/5] drm/xe/mert: Minor improvements to MERT code Michal Wajdeczko
2026-01-09 15:12 ` [PATCH 1/5] drm/xe/mert: Normalize xe_mert.h include guards Michal Wajdeczko
@ 2026-01-09 15:12 ` Michal Wajdeczko
2026-01-09 16:00 ` Laguna, Lukasz
2026-01-09 15:12 ` [PATCH 3/5] drm/xe/mert: Always refer to MERT using xe_device Michal Wajdeczko
` (9 subsequent siblings)
11 siblings, 1 reply; 19+ messages in thread
From: Michal Wajdeczko @ 2026-01-09 15:12 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Lukasz Laguna
Add simple top level kernel-doc for the struct itself to allow the
script recognize that and fix tag of the one member.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
---
drivers/gpu/drm/xe/xe_mert.h | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_mert.h b/drivers/gpu/drm/xe/xe_mert.h
index 0de8243e46bd..0e27f9fa24bb 100644
--- a/drivers/gpu/drm/xe/xe_mert.h
+++ b/drivers/gpu/drm/xe/xe_mert.h
@@ -13,12 +13,15 @@
struct xe_device;
struct xe_tile;
+/**
+ * struct xe_mert - MERT related data
+ */
struct xe_mert {
/** @lock: protects the TLB invalidation status */
spinlock_t lock;
/** @tlb_inv_triggered: indicates if TLB invalidation was triggered */
bool tlb_inv_triggered;
- /** @mert.tlb_inv_done: completion of TLB invalidation */
+ /** @tlb_inv_done: completion of TLB invalidation */
struct completion tlb_inv_done;
};
--
2.47.1
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH 3/5] drm/xe/mert: Always refer to MERT using xe_device
2026-01-09 15:12 [PATCH 0/5] drm/xe/mert: Minor improvements to MERT code Michal Wajdeczko
2026-01-09 15:12 ` [PATCH 1/5] drm/xe/mert: Normalize xe_mert.h include guards Michal Wajdeczko
2026-01-09 15:12 ` [PATCH 2/5] drm/xe/mert: Fix kernel-doc for struct xe_mert Michal Wajdeczko
@ 2026-01-09 15:12 ` Michal Wajdeczko
2026-01-09 17:04 ` Laguna, Lukasz
2026-01-11 21:38 ` [PATCH v2 " Michal Wajdeczko
2026-01-09 15:12 ` [PATCH 4/5] drm/xe/mert: Use local mert variable to simplify the code Michal Wajdeczko
` (8 subsequent siblings)
11 siblings, 2 replies; 19+ messages in thread
From: Michal Wajdeczko @ 2026-01-09 15:12 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Lukasz Laguna
There is only one MERT instance and while it is located on the root
tile, it is safer to refer to it using xe_device rather than xe_tile.
This will also allow to align signature with other MERT function.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
---
drivers/gpu/drm/xe/xe_lmtt.c | 2 +-
drivers/gpu/drm/xe/xe_mert.c | 8 ++++----
drivers/gpu/drm/xe/xe_mert.h | 3 +--
3 files changed, 6 insertions(+), 7 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_lmtt.c b/drivers/gpu/drm/xe/xe_lmtt.c
index 3059ea6525bc..2077e1ef8b43 100644
--- a/drivers/gpu/drm/xe/xe_lmtt.c
+++ b/drivers/gpu/drm/xe/xe_lmtt.c
@@ -289,7 +289,7 @@ void xe_lmtt_invalidate_hw(struct xe_lmtt *lmtt)
ERR_PTR(err));
if (xe_device_has_mert(xe) && xe_tile_is_root(tile)) {
- err = xe_mert_invalidate_lmtt(tile);
+ err = xe_mert_invalidate_lmtt(xe);
if (err)
xe_tile_sriov_err(tile, "MERT LMTT invalidation failed (%pe)",
ERR_PTR(err));
diff --git a/drivers/gpu/drm/xe/xe_mert.c b/drivers/gpu/drm/xe/xe_mert.c
index f7689e922953..5aea6f082bc0 100644
--- a/drivers/gpu/drm/xe/xe_mert.c
+++ b/drivers/gpu/drm/xe/xe_mert.c
@@ -12,16 +12,16 @@
#include "xe_tile.h"
/**
- * xe_mert_invalidate_lmtt - Invalidate MERT LMTT
- * @tile: the &xe_tile
+ * xe_mert_invalidate_lmtt() - Invalidate MERT LMTT
+ * @xe: the &xe_device with MERT
*
* Trigger invalidation of the MERT LMTT and wait for completion.
*
* Return: 0 on success or -ETIMEDOUT in case of a timeout.
*/
-int xe_mert_invalidate_lmtt(struct xe_tile *tile)
+int xe_mert_invalidate_lmtt(struct xe_device *xe)
{
- struct xe_device *xe = tile_to_xe(tile);
+ struct xe_tile *tile = xe_device_get_root_tile(xe);
struct xe_mert *mert = &tile->mert;
const long timeout = HZ / 4;
unsigned long flags;
diff --git a/drivers/gpu/drm/xe/xe_mert.h b/drivers/gpu/drm/xe/xe_mert.h
index 0e27f9fa24bb..44daeca094bd 100644
--- a/drivers/gpu/drm/xe/xe_mert.h
+++ b/drivers/gpu/drm/xe/xe_mert.h
@@ -11,7 +11,6 @@
#include <linux/types.h>
struct xe_device;
-struct xe_tile;
/**
* struct xe_mert - MERT related data
@@ -26,7 +25,7 @@ struct xe_mert {
};
#ifdef CONFIG_PCI_IOV
-int xe_mert_invalidate_lmtt(struct xe_tile *tile);
+int xe_mert_invalidate_lmtt(struct xe_device *xe);
void xe_mert_irq_handler(struct xe_device *xe, u32 master_ctl);
#else
static inline void xe_mert_irq_handler(struct xe_device *xe, u32 master_ctl) { }
--
2.47.1
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH 4/5] drm/xe/mert: Use local mert variable to simplify the code
2026-01-09 15:12 [PATCH 0/5] drm/xe/mert: Minor improvements to MERT code Michal Wajdeczko
` (2 preceding siblings ...)
2026-01-09 15:12 ` [PATCH 3/5] drm/xe/mert: Always refer to MERT using xe_device Michal Wajdeczko
@ 2026-01-09 15:12 ` Michal Wajdeczko
2026-01-09 16:21 ` Laguna, Lukasz
2026-01-09 15:12 ` [PATCH 5/5] drm/xe/mert: Move MERT initialization to xe_mert.c Michal Wajdeczko
` (7 subsequent siblings)
11 siblings, 1 reply; 19+ messages in thread
From: Michal Wajdeczko @ 2026-01-09 15:12 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Lukasz Laguna
There is no need to always refer to MERT data using tile pointer.
Use of local mert pointer will simplify the code and make it look
like other existing MERT function.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
---
drivers/gpu/drm/xe/xe_mert.c | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_mert.c b/drivers/gpu/drm/xe/xe_mert.c
index 5aea6f082bc0..d139663c45ce 100644
--- a/drivers/gpu/drm/xe/xe_mert.c
+++ b/drivers/gpu/drm/xe/xe_mert.c
@@ -53,6 +53,7 @@ int xe_mert_invalidate_lmtt(struct xe_device *xe)
void xe_mert_irq_handler(struct xe_device *xe, u32 master_ctl)
{
struct xe_tile *tile = xe_device_get_root_tile(xe);
+ struct xe_mert *mert = &tile->mert;
unsigned long flags;
u32 reg_val;
u8 err;
@@ -70,13 +71,13 @@ void xe_mert_irq_handler(struct xe_device *xe, u32 master_ctl)
else if (err)
drm_dbg(&xe->drm, "MERT catastrophic error: Unexpected fault (0x%x)\n", err);
- spin_lock_irqsave(&tile->mert.lock, flags);
- if (tile->mert.tlb_inv_triggered) {
+ spin_lock_irqsave(&mert->lock, flags);
+ if (mert->tlb_inv_triggered) {
reg_val = xe_mmio_read32(&tile->mmio, MERT_TLB_INV_DESC_A);
if (!(reg_val & MERT_TLB_INV_DESC_A_VALID)) {
- tile->mert.tlb_inv_triggered = false;
- complete_all(&tile->mert.tlb_inv_done);
+ mert->tlb_inv_triggered = false;
+ complete_all(&mert->tlb_inv_done);
}
}
- spin_unlock_irqrestore(&tile->mert.lock, flags);
+ spin_unlock_irqrestore(&mert->lock, flags);
}
--
2.47.1
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH 5/5] drm/xe/mert: Move MERT initialization to xe_mert.c
2026-01-09 15:12 [PATCH 0/5] drm/xe/mert: Minor improvements to MERT code Michal Wajdeczko
` (3 preceding siblings ...)
2026-01-09 15:12 ` [PATCH 4/5] drm/xe/mert: Use local mert variable to simplify the code Michal Wajdeczko
@ 2026-01-09 15:12 ` Michal Wajdeczko
2026-01-09 17:07 ` Laguna, Lukasz
2026-01-09 15:19 ` ✓ CI.KUnit: success for drm/xe/mert: Minor improvements to MERT code Patchwork
` (6 subsequent siblings)
11 siblings, 1 reply; 19+ messages in thread
From: Michal Wajdeczko @ 2026-01-09 15:12 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Lukasz Laguna
Most of the MERT code is already in dedicated file, no reason to
keep internal MERT data structure initialization elsewhere.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
---
drivers/gpu/drm/xe/xe_mert.c | 13 +++++++++++++
drivers/gpu/drm/xe/xe_mert.h | 1 +
drivers/gpu/drm/xe/xe_sriov_pf.c | 4 +---
3 files changed, 15 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_mert.c b/drivers/gpu/drm/xe/xe_mert.c
index d139663c45ce..8ad6aa7f4e24 100644
--- a/drivers/gpu/drm/xe/xe_mert.c
+++ b/drivers/gpu/drm/xe/xe_mert.c
@@ -11,6 +11,19 @@
#include "xe_mmio.h"
#include "xe_tile.h"
+/**
+ * xe_mert_init_early() - Initialize MERT data
+ * @xe: the &xe_device with MERT to init
+ */
+void xe_mert_init_early(struct xe_device *xe)
+{
+ struct xe_tile *tile = xe_device_get_root_tile(xe);
+ struct xe_mert *mert = &tile->mert;
+
+ spin_lock_init(&mert->lock);
+ init_completion(&mert->tlb_inv_done);
+}
+
/**
* xe_mert_invalidate_lmtt() - Invalidate MERT LMTT
* @xe: the &xe_device with MERT
diff --git a/drivers/gpu/drm/xe/xe_mert.h b/drivers/gpu/drm/xe/xe_mert.h
index 44daeca094bd..fc977203692d 100644
--- a/drivers/gpu/drm/xe/xe_mert.h
+++ b/drivers/gpu/drm/xe/xe_mert.h
@@ -25,6 +25,7 @@ struct xe_mert {
};
#ifdef CONFIG_PCI_IOV
+void xe_mert_init_early(struct xe_device *xe);
int xe_mert_invalidate_lmtt(struct xe_device *xe);
void xe_mert_irq_handler(struct xe_device *xe, u32 master_ctl);
#else
diff --git a/drivers/gpu/drm/xe/xe_sriov_pf.c b/drivers/gpu/drm/xe/xe_sriov_pf.c
index 72423bb17e6f..6ce3c58e003c 100644
--- a/drivers/gpu/drm/xe/xe_sriov_pf.c
+++ b/drivers/gpu/drm/xe/xe_sriov_pf.c
@@ -90,7 +90,6 @@ bool xe_sriov_pf_readiness(struct xe_device *xe)
*/
int xe_sriov_pf_init_early(struct xe_device *xe)
{
- struct xe_mert *mert = &xe_device_get_root_tile(xe)->mert;
int err;
xe_assert(xe, IS_SRIOV_PF(xe));
@@ -112,8 +111,7 @@ int xe_sriov_pf_init_early(struct xe_device *xe)
xe_sriov_pf_service_init(xe);
- spin_lock_init(&mert->lock);
- init_completion(&mert->tlb_inv_done);
+ xe_mert_init_early(xe);
return 0;
}
--
2.47.1
^ permalink raw reply related [flat|nested] 19+ messages in thread
* ✓ CI.KUnit: success for drm/xe/mert: Minor improvements to MERT code
2026-01-09 15:12 [PATCH 0/5] drm/xe/mert: Minor improvements to MERT code Michal Wajdeczko
` (4 preceding siblings ...)
2026-01-09 15:12 ` [PATCH 5/5] drm/xe/mert: Move MERT initialization to xe_mert.c Michal Wajdeczko
@ 2026-01-09 15:19 ` Patchwork
2026-01-09 16:01 ` ✓ Xe.CI.BAT: " Patchwork
` (5 subsequent siblings)
11 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-01-09 15:19 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: drm/xe/mert: Minor improvements to MERT code
URL : https://patchwork.freedesktop.org/series/159880/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[15:17:59] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:18:03] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[15:18:35] Starting KUnit Kernel (1/1)...
[15:18:35] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:18:35] ================== guc_buf (11 subtests) ===================
[15:18:35] [PASSED] test_smallest
[15:18:35] [PASSED] test_largest
[15:18:35] [PASSED] test_granular
[15:18:35] [PASSED] test_unique
[15:18:35] [PASSED] test_overlap
[15:18:35] [PASSED] test_reusable
[15:18:35] [PASSED] test_too_big
[15:18:35] [PASSED] test_flush
[15:18:35] [PASSED] test_lookup
[15:18:35] [PASSED] test_data
[15:18:35] [PASSED] test_class
[15:18:35] ===================== [PASSED] guc_buf =====================
[15:18:35] =================== guc_dbm (7 subtests) ===================
[15:18:35] [PASSED] test_empty
[15:18:35] [PASSED] test_default
[15:18:35] ======================== test_size ========================
[15:18:35] [PASSED] 4
[15:18:35] [PASSED] 8
[15:18:35] [PASSED] 32
[15:18:35] [PASSED] 256
[15:18:35] ==================== [PASSED] test_size ====================
[15:18:35] ======================= test_reuse ========================
[15:18:35] [PASSED] 4
[15:18:35] [PASSED] 8
[15:18:35] [PASSED] 32
[15:18:35] [PASSED] 256
[15:18:35] =================== [PASSED] test_reuse ====================
[15:18:35] =================== test_range_overlap ====================
[15:18:35] [PASSED] 4
[15:18:35] [PASSED] 8
[15:18:35] [PASSED] 32
[15:18:35] [PASSED] 256
[15:18:35] =============== [PASSED] test_range_overlap ================
[15:18:35] =================== test_range_compact ====================
[15:18:35] [PASSED] 4
[15:18:35] [PASSED] 8
[15:18:35] [PASSED] 32
[15:18:35] [PASSED] 256
[15:18:35] =============== [PASSED] test_range_compact ================
[15:18:35] ==================== test_range_spare =====================
[15:18:35] [PASSED] 4
[15:18:35] [PASSED] 8
[15:18:35] [PASSED] 32
[15:18:35] [PASSED] 256
[15:18:35] ================ [PASSED] test_range_spare =================
[15:18:35] ===================== [PASSED] guc_dbm =====================
[15:18:35] =================== guc_idm (6 subtests) ===================
[15:18:35] [PASSED] bad_init
[15:18:35] [PASSED] no_init
[15:18:35] [PASSED] init_fini
[15:18:35] [PASSED] check_used
[15:18:35] [PASSED] check_quota
[15:18:35] [PASSED] check_all
[15:18:35] ===================== [PASSED] guc_idm =====================
[15:18:35] ================== no_relay (3 subtests) ===================
[15:18:35] [PASSED] xe_drops_guc2pf_if_not_ready
[15:18:35] [PASSED] xe_drops_guc2vf_if_not_ready
[15:18:35] [PASSED] xe_rejects_send_if_not_ready
[15:18:35] ==================== [PASSED] no_relay =====================
[15:18:35] ================== pf_relay (14 subtests) ==================
[15:18:35] [PASSED] pf_rejects_guc2pf_too_short
[15:18:35] [PASSED] pf_rejects_guc2pf_too_long
[15:18:35] [PASSED] pf_rejects_guc2pf_no_payload
[15:18:35] [PASSED] pf_fails_no_payload
[15:18:35] [PASSED] pf_fails_bad_origin
[15:18:35] [PASSED] pf_fails_bad_type
[15:18:35] [PASSED] pf_txn_reports_error
[15:18:35] [PASSED] pf_txn_sends_pf2guc
[15:18:35] [PASSED] pf_sends_pf2guc
[15:18:35] [SKIPPED] pf_loopback_nop
[15:18:35] [SKIPPED] pf_loopback_echo
[15:18:35] [SKIPPED] pf_loopback_fail
[15:18:35] [SKIPPED] pf_loopback_busy
[15:18:35] [SKIPPED] pf_loopback_retry
[15:18:35] ==================== [PASSED] pf_relay =====================
[15:18:35] ================== vf_relay (3 subtests) ===================
[15:18:35] [PASSED] vf_rejects_guc2vf_too_short
[15:18:35] [PASSED] vf_rejects_guc2vf_too_long
[15:18:35] [PASSED] vf_rejects_guc2vf_no_payload
[15:18:35] ==================== [PASSED] vf_relay =====================
[15:18:35] ================ pf_gt_config (6 subtests) =================
[15:18:35] [PASSED] fair_contexts_1vf
[15:18:35] [PASSED] fair_doorbells_1vf
[15:18:35] [PASSED] fair_ggtt_1vf
[15:18:35] ====================== fair_contexts ======================
[15:18:35] [PASSED] 1 VF
[15:18:35] [PASSED] 2 VFs
[15:18:35] [PASSED] 3 VFs
[15:18:35] [PASSED] 4 VFs
[15:18:35] [PASSED] 5 VFs
[15:18:35] [PASSED] 6 VFs
[15:18:35] [PASSED] 7 VFs
[15:18:35] [PASSED] 8 VFs
[15:18:35] [PASSED] 9 VFs
[15:18:35] [PASSED] 10 VFs
[15:18:35] [PASSED] 11 VFs
[15:18:35] [PASSED] 12 VFs
[15:18:35] [PASSED] 13 VFs
[15:18:35] [PASSED] 14 VFs
[15:18:35] [PASSED] 15 VFs
[15:18:35] [PASSED] 16 VFs
[15:18:35] [PASSED] 17 VFs
[15:18:35] [PASSED] 18 VFs
[15:18:35] [PASSED] 19 VFs
[15:18:35] [PASSED] 20 VFs
[15:18:35] [PASSED] 21 VFs
[15:18:35] [PASSED] 22 VFs
[15:18:35] [PASSED] 23 VFs
[15:18:35] [PASSED] 24 VFs
[15:18:35] [PASSED] 25 VFs
[15:18:35] [PASSED] 26 VFs
[15:18:35] [PASSED] 27 VFs
[15:18:35] [PASSED] 28 VFs
[15:18:35] [PASSED] 29 VFs
[15:18:35] [PASSED] 30 VFs
[15:18:35] [PASSED] 31 VFs
[15:18:35] [PASSED] 32 VFs
[15:18:35] [PASSED] 33 VFs
[15:18:35] [PASSED] 34 VFs
[15:18:35] [PASSED] 35 VFs
[15:18:35] [PASSED] 36 VFs
[15:18:35] [PASSED] 37 VFs
[15:18:35] [PASSED] 38 VFs
[15:18:35] [PASSED] 39 VFs
[15:18:35] [PASSED] 40 VFs
[15:18:35] [PASSED] 41 VFs
[15:18:35] [PASSED] 42 VFs
[15:18:35] [PASSED] 43 VFs
[15:18:35] [PASSED] 44 VFs
[15:18:35] [PASSED] 45 VFs
[15:18:35] [PASSED] 46 VFs
[15:18:35] [PASSED] 47 VFs
[15:18:35] [PASSED] 48 VFs
[15:18:35] [PASSED] 49 VFs
[15:18:35] [PASSED] 50 VFs
[15:18:35] [PASSED] 51 VFs
[15:18:35] [PASSED] 52 VFs
[15:18:35] [PASSED] 53 VFs
[15:18:35] [PASSED] 54 VFs
[15:18:35] [PASSED] 55 VFs
[15:18:35] [PASSED] 56 VFs
[15:18:35] [PASSED] 57 VFs
[15:18:35] [PASSED] 58 VFs
[15:18:35] [PASSED] 59 VFs
[15:18:35] [PASSED] 60 VFs
[15:18:35] [PASSED] 61 VFs
[15:18:35] [PASSED] 62 VFs
[15:18:35] [PASSED] 63 VFs
[15:18:35] ================== [PASSED] fair_contexts ==================
[15:18:35] ===================== fair_doorbells ======================
[15:18:35] [PASSED] 1 VF
[15:18:35] [PASSED] 2 VFs
[15:18:35] [PASSED] 3 VFs
[15:18:35] [PASSED] 4 VFs
[15:18:35] [PASSED] 5 VFs
[15:18:35] [PASSED] 6 VFs
[15:18:35] [PASSED] 7 VFs
[15:18:35] [PASSED] 8 VFs
[15:18:35] [PASSED] 9 VFs
[15:18:35] [PASSED] 10 VFs
[15:18:35] [PASSED] 11 VFs
[15:18:35] [PASSED] 12 VFs
[15:18:35] [PASSED] 13 VFs
[15:18:35] [PASSED] 14 VFs
[15:18:35] [PASSED] 15 VFs
[15:18:35] [PASSED] 16 VFs
[15:18:35] [PASSED] 17 VFs
[15:18:35] [PASSED] 18 VFs
[15:18:35] [PASSED] 19 VFs
[15:18:35] [PASSED] 20 VFs
[15:18:35] [PASSED] 21 VFs
[15:18:35] [PASSED] 22 VFs
[15:18:35] [PASSED] 23 VFs
[15:18:35] [PASSED] 24 VFs
[15:18:35] [PASSED] 25 VFs
[15:18:35] [PASSED] 26 VFs
[15:18:35] [PASSED] 27 VFs
[15:18:35] [PASSED] 28 VFs
[15:18:35] [PASSED] 29 VFs
[15:18:35] [PASSED] 30 VFs
[15:18:35] [PASSED] 31 VFs
[15:18:35] [PASSED] 32 VFs
[15:18:35] [PASSED] 33 VFs
[15:18:35] [PASSED] 34 VFs
[15:18:35] [PASSED] 35 VFs
[15:18:35] [PASSED] 36 VFs
[15:18:35] [PASSED] 37 VFs
[15:18:35] [PASSED] 38 VFs
[15:18:35] [PASSED] 39 VFs
[15:18:35] [PASSED] 40 VFs
[15:18:35] [PASSED] 41 VFs
[15:18:35] [PASSED] 42 VFs
[15:18:35] [PASSED] 43 VFs
[15:18:35] [PASSED] 44 VFs
[15:18:35] [PASSED] 45 VFs
[15:18:35] [PASSED] 46 VFs
[15:18:35] [PASSED] 47 VFs
[15:18:35] [PASSED] 48 VFs
[15:18:35] [PASSED] 49 VFs
[15:18:35] [PASSED] 50 VFs
[15:18:35] [PASSED] 51 VFs
[15:18:35] [PASSED] 52 VFs
[15:18:35] [PASSED] 53 VFs
[15:18:35] [PASSED] 54 VFs
[15:18:35] [PASSED] 55 VFs
[15:18:35] [PASSED] 56 VFs
[15:18:35] [PASSED] 57 VFs
[15:18:35] [PASSED] 58 VFs
[15:18:35] [PASSED] 59 VFs
[15:18:35] [PASSED] 60 VFs
[15:18:35] [PASSED] 61 VFs
[15:18:35] [PASSED] 62 VFs
[15:18:35] [PASSED] 63 VFs
[15:18:35] ================= [PASSED] fair_doorbells ==================
[15:18:35] ======================== fair_ggtt ========================
[15:18:35] [PASSED] 1 VF
[15:18:35] [PASSED] 2 VFs
[15:18:35] [PASSED] 3 VFs
[15:18:35] [PASSED] 4 VFs
[15:18:35] [PASSED] 5 VFs
[15:18:35] [PASSED] 6 VFs
[15:18:35] [PASSED] 7 VFs
[15:18:35] [PASSED] 8 VFs
[15:18:35] [PASSED] 9 VFs
[15:18:35] [PASSED] 10 VFs
[15:18:35] [PASSED] 11 VFs
[15:18:35] [PASSED] 12 VFs
[15:18:35] [PASSED] 13 VFs
[15:18:35] [PASSED] 14 VFs
[15:18:35] [PASSED] 15 VFs
[15:18:35] [PASSED] 16 VFs
[15:18:35] [PASSED] 17 VFs
[15:18:35] [PASSED] 18 VFs
[15:18:35] [PASSED] 19 VFs
[15:18:35] [PASSED] 20 VFs
[15:18:35] [PASSED] 21 VFs
[15:18:35] [PASSED] 22 VFs
[15:18:35] [PASSED] 23 VFs
[15:18:35] [PASSED] 24 VFs
[15:18:35] [PASSED] 25 VFs
[15:18:35] [PASSED] 26 VFs
[15:18:35] [PASSED] 27 VFs
[15:18:35] [PASSED] 28 VFs
[15:18:35] [PASSED] 29 VFs
[15:18:35] [PASSED] 30 VFs
[15:18:35] [PASSED] 31 VFs
[15:18:35] [PASSED] 32 VFs
[15:18:35] [PASSED] 33 VFs
[15:18:35] [PASSED] 34 VFs
[15:18:35] [PASSED] 35 VFs
[15:18:35] [PASSED] 36 VFs
[15:18:35] [PASSED] 37 VFs
[15:18:35] [PASSED] 38 VFs
[15:18:35] [PASSED] 39 VFs
[15:18:35] [PASSED] 40 VFs
[15:18:35] [PASSED] 41 VFs
[15:18:35] [PASSED] 42 VFs
[15:18:35] [PASSED] 43 VFs
[15:18:35] [PASSED] 44 VFs
[15:18:35] [PASSED] 45 VFs
[15:18:35] [PASSED] 46 VFs
[15:18:35] [PASSED] 47 VFs
[15:18:35] [PASSED] 48 VFs
[15:18:35] [PASSED] 49 VFs
[15:18:35] [PASSED] 50 VFs
[15:18:35] [PASSED] 51 VFs
[15:18:35] [PASSED] 52 VFs
[15:18:35] [PASSED] 53 VFs
[15:18:35] [PASSED] 54 VFs
[15:18:35] [PASSED] 55 VFs
[15:18:35] [PASSED] 56 VFs
[15:18:35] [PASSED] 57 VFs
[15:18:35] [PASSED] 58 VFs
[15:18:35] [PASSED] 59 VFs
[15:18:35] [PASSED] 60 VFs
[15:18:35] [PASSED] 61 VFs
[15:18:35] [PASSED] 62 VFs
[15:18:35] [PASSED] 63 VFs
[15:18:35] ==================== [PASSED] fair_ggtt ====================
[15:18:35] ================== [PASSED] pf_gt_config ===================
[15:18:35] ===================== lmtt (1 subtest) =====================
[15:18:35] ======================== test_ops =========================
[15:18:35] [PASSED] 2-level
[15:18:35] [PASSED] multi-level
[15:18:35] ==================== [PASSED] test_ops =====================
[15:18:35] ====================== [PASSED] lmtt =======================
[15:18:35] ================= pf_service (11 subtests) =================
[15:18:35] [PASSED] pf_negotiate_any
[15:18:35] [PASSED] pf_negotiate_base_match
[15:18:35] [PASSED] pf_negotiate_base_newer
[15:18:35] [PASSED] pf_negotiate_base_next
[15:18:35] [SKIPPED] pf_negotiate_base_older
[15:18:35] [PASSED] pf_negotiate_base_prev
[15:18:35] [PASSED] pf_negotiate_latest_match
[15:18:35] [PASSED] pf_negotiate_latest_newer
[15:18:35] [PASSED] pf_negotiate_latest_next
[15:18:35] [SKIPPED] pf_negotiate_latest_older
[15:18:35] [SKIPPED] pf_negotiate_latest_prev
[15:18:35] =================== [PASSED] pf_service ====================
[15:18:35] ================= xe_guc_g2g (2 subtests) ==================
[15:18:35] ============== xe_live_guc_g2g_kunit_default ==============
[15:18:35] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[15:18:35] ============== xe_live_guc_g2g_kunit_allmem ===============
[15:18:35] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[15:18:35] =================== [SKIPPED] xe_guc_g2g ===================
[15:18:35] =================== xe_mocs (2 subtests) ===================
[15:18:35] ================ xe_live_mocs_kernel_kunit ================
[15:18:35] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[15:18:35] ================ xe_live_mocs_reset_kunit =================
[15:18:35] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[15:18:35] ==================== [SKIPPED] xe_mocs =====================
[15:18:35] ================= xe_migrate (2 subtests) ==================
[15:18:35] ================= xe_migrate_sanity_kunit =================
[15:18:35] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[15:18:35] ================== xe_validate_ccs_kunit ==================
[15:18:35] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[15:18:35] =================== [SKIPPED] xe_migrate ===================
[15:18:35] ================== xe_dma_buf (1 subtest) ==================
[15:18:35] ==================== xe_dma_buf_kunit =====================
[15:18:35] ================ [SKIPPED] xe_dma_buf_kunit ================
[15:18:35] =================== [SKIPPED] xe_dma_buf ===================
[15:18:35] ================= xe_bo_shrink (1 subtest) =================
[15:18:35] =================== xe_bo_shrink_kunit ====================
[15:18:35] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[15:18:35] ================== [SKIPPED] xe_bo_shrink ==================
[15:18:35] ==================== xe_bo (2 subtests) ====================
[15:18:35] ================== xe_ccs_migrate_kunit ===================
[15:18:35] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[15:18:35] ==================== xe_bo_evict_kunit ====================
[15:18:35] =============== [SKIPPED] xe_bo_evict_kunit ================
[15:18:35] ===================== [SKIPPED] xe_bo ======================
[15:18:35] ==================== args (13 subtests) ====================
[15:18:35] [PASSED] count_args_test
[15:18:35] [PASSED] call_args_example
[15:18:35] [PASSED] call_args_test
[15:18:35] [PASSED] drop_first_arg_example
[15:18:35] [PASSED] drop_first_arg_test
[15:18:35] [PASSED] first_arg_example
[15:18:35] [PASSED] first_arg_test
[15:18:35] [PASSED] last_arg_example
[15:18:35] [PASSED] last_arg_test
[15:18:35] [PASSED] pick_arg_example
[15:18:35] [PASSED] if_args_example
[15:18:35] [PASSED] if_args_test
[15:18:35] [PASSED] sep_comma_example
[15:18:35] ====================== [PASSED] args =======================
[15:18:35] =================== xe_pci (3 subtests) ====================
[15:18:35] ==================== check_graphics_ip ====================
[15:18:35] [PASSED] 12.00 Xe_LP
[15:18:35] [PASSED] 12.10 Xe_LP+
[15:18:35] [PASSED] 12.55 Xe_HPG
[15:18:35] [PASSED] 12.60 Xe_HPC
[15:18:35] [PASSED] 12.70 Xe_LPG
[15:18:35] [PASSED] 12.71 Xe_LPG
[15:18:35] [PASSED] 12.74 Xe_LPG+
[15:18:35] [PASSED] 20.01 Xe2_HPG
[15:18:35] [PASSED] 20.02 Xe2_HPG
[15:18:35] [PASSED] 20.04 Xe2_LPG
[15:18:35] [PASSED] 30.00 Xe3_LPG
[15:18:35] [PASSED] 30.01 Xe3_LPG
[15:18:35] [PASSED] 30.03 Xe3_LPG
[15:18:35] [PASSED] 30.04 Xe3_LPG
[15:18:35] [PASSED] 30.05 Xe3_LPG
[15:18:35] [PASSED] 35.11 Xe3p_XPC
[15:18:35] ================ [PASSED] check_graphics_ip ================
[15:18:35] ===================== check_media_ip ======================
[15:18:35] [PASSED] 12.00 Xe_M
[15:18:35] [PASSED] 12.55 Xe_HPM
[15:18:35] [PASSED] 13.00 Xe_LPM+
[15:18:35] [PASSED] 13.01 Xe2_HPM
[15:18:35] [PASSED] 20.00 Xe2_LPM
[15:18:35] [PASSED] 30.00 Xe3_LPM
[15:18:35] [PASSED] 30.02 Xe3_LPM
[15:18:35] [PASSED] 35.00 Xe3p_LPM
[15:18:35] [PASSED] 35.03 Xe3p_HPM
[15:18:35] ================= [PASSED] check_media_ip ==================
[15:18:35] =================== check_platform_desc ===================
[15:18:35] [PASSED] 0x9A60 (TIGERLAKE)
[15:18:35] [PASSED] 0x9A68 (TIGERLAKE)
[15:18:35] [PASSED] 0x9A70 (TIGERLAKE)
[15:18:35] [PASSED] 0x9A40 (TIGERLAKE)
[15:18:35] [PASSED] 0x9A49 (TIGERLAKE)
[15:18:35] [PASSED] 0x9A59 (TIGERLAKE)
[15:18:35] [PASSED] 0x9A78 (TIGERLAKE)
[15:18:35] [PASSED] 0x9AC0 (TIGERLAKE)
[15:18:35] [PASSED] 0x9AC9 (TIGERLAKE)
[15:18:35] [PASSED] 0x9AD9 (TIGERLAKE)
[15:18:35] [PASSED] 0x9AF8 (TIGERLAKE)
[15:18:35] [PASSED] 0x4C80 (ROCKETLAKE)
[15:18:35] [PASSED] 0x4C8A (ROCKETLAKE)
[15:18:35] [PASSED] 0x4C8B (ROCKETLAKE)
[15:18:35] [PASSED] 0x4C8C (ROCKETLAKE)
[15:18:35] [PASSED] 0x4C90 (ROCKETLAKE)
[15:18:35] [PASSED] 0x4C9A (ROCKETLAKE)
[15:18:35] [PASSED] 0x4680 (ALDERLAKE_S)
[15:18:35] [PASSED] 0x4682 (ALDERLAKE_S)
[15:18:35] [PASSED] 0x4688 (ALDERLAKE_S)
[15:18:35] [PASSED] 0x468A (ALDERLAKE_S)
[15:18:35] [PASSED] 0x468B (ALDERLAKE_S)
[15:18:35] [PASSED] 0x4690 (ALDERLAKE_S)
[15:18:35] [PASSED] 0x4692 (ALDERLAKE_S)
[15:18:35] [PASSED] 0x4693 (ALDERLAKE_S)
[15:18:35] [PASSED] 0x46A0 (ALDERLAKE_P)
[15:18:35] [PASSED] 0x46A1 (ALDERLAKE_P)
[15:18:35] [PASSED] 0x46A2 (ALDERLAKE_P)
[15:18:35] [PASSED] 0x46A3 (ALDERLAKE_P)
[15:18:35] [PASSED] 0x46A6 (ALDERLAKE_P)
[15:18:35] [PASSED] 0x46A8 (ALDERLAKE_P)
[15:18:35] [PASSED] 0x46AA (ALDERLAKE_P)
[15:18:35] [PASSED] 0x462A (ALDERLAKE_P)
[15:18:35] [PASSED] 0x4626 (ALDERLAKE_P)
[15:18:35] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[15:18:35] [PASSED] 0x46B0 (ALDERLAKE_P)
[15:18:35] [PASSED] 0x46B1 (ALDERLAKE_P)
[15:18:35] [PASSED] 0x46B2 (ALDERLAKE_P)
[15:18:35] [PASSED] 0x46B3 (ALDERLAKE_P)
[15:18:35] [PASSED] 0x46C0 (ALDERLAKE_P)
[15:18:35] [PASSED] 0x46C1 (ALDERLAKE_P)
[15:18:35] [PASSED] 0x46C2 (ALDERLAKE_P)
[15:18:35] [PASSED] 0x46C3 (ALDERLAKE_P)
[15:18:35] [PASSED] 0x46D0 (ALDERLAKE_N)
[15:18:35] [PASSED] 0x46D1 (ALDERLAKE_N)
[15:18:35] [PASSED] 0x46D2 (ALDERLAKE_N)
[15:18:35] [PASSED] 0x46D3 (ALDERLAKE_N)
[15:18:35] [PASSED] 0x46D4 (ALDERLAKE_N)
[15:18:35] [PASSED] 0xA721 (ALDERLAKE_P)
[15:18:35] [PASSED] 0xA7A1 (ALDERLAKE_P)
[15:18:35] [PASSED] 0xA7A9 (ALDERLAKE_P)
[15:18:35] [PASSED] 0xA7AC (ALDERLAKE_P)
[15:18:35] [PASSED] 0xA7AD (ALDERLAKE_P)
[15:18:35] [PASSED] 0xA720 (ALDERLAKE_P)
[15:18:35] [PASSED] 0xA7A0 (ALDERLAKE_P)
[15:18:35] [PASSED] 0xA7A8 (ALDERLAKE_P)
[15:18:35] [PASSED] 0xA7AA (ALDERLAKE_P)
[15:18:35] [PASSED] 0xA7AB (ALDERLAKE_P)
[15:18:35] [PASSED] 0xA780 (ALDERLAKE_S)
[15:18:35] [PASSED] 0xA781 (ALDERLAKE_S)
[15:18:35] [PASSED] 0xA782 (ALDERLAKE_S)
[15:18:35] [PASSED] 0xA783 (ALDERLAKE_S)
[15:18:35] [PASSED] 0xA788 (ALDERLAKE_S)
[15:18:35] [PASSED] 0xA789 (ALDERLAKE_S)
[15:18:35] [PASSED] 0xA78A (ALDERLAKE_S)
[15:18:35] [PASSED] 0xA78B (ALDERLAKE_S)
[15:18:35] [PASSED] 0x4905 (DG1)
[15:18:35] [PASSED] 0x4906 (DG1)
[15:18:35] [PASSED] 0x4907 (DG1)
[15:18:35] [PASSED] 0x4908 (DG1)
[15:18:35] [PASSED] 0x4909 (DG1)
[15:18:35] [PASSED] 0x56C0 (DG2)
[15:18:35] [PASSED] 0x56C2 (DG2)
[15:18:35] [PASSED] 0x56C1 (DG2)
[15:18:35] [PASSED] 0x7D51 (METEORLAKE)
[15:18:35] [PASSED] 0x7DD1 (METEORLAKE)
[15:18:35] [PASSED] 0x7D41 (METEORLAKE)
[15:18:35] [PASSED] 0x7D67 (METEORLAKE)
[15:18:35] [PASSED] 0xB640 (METEORLAKE)
[15:18:35] [PASSED] 0x56A0 (DG2)
[15:18:35] [PASSED] 0x56A1 (DG2)
[15:18:35] [PASSED] 0x56A2 (DG2)
[15:18:35] [PASSED] 0x56BE (DG2)
[15:18:35] [PASSED] 0x56BF (DG2)
[15:18:35] [PASSED] 0x5690 (DG2)
[15:18:35] [PASSED] 0x5691 (DG2)
[15:18:35] [PASSED] 0x5692 (DG2)
[15:18:35] [PASSED] 0x56A5 (DG2)
[15:18:35] [PASSED] 0x56A6 (DG2)
[15:18:35] [PASSED] 0x56B0 (DG2)
[15:18:35] [PASSED] 0x56B1 (DG2)
[15:18:35] [PASSED] 0x56BA (DG2)
[15:18:35] [PASSED] 0x56BB (DG2)
[15:18:35] [PASSED] 0x56BC (DG2)
[15:18:35] [PASSED] 0x56BD (DG2)
[15:18:35] [PASSED] 0x5693 (DG2)
[15:18:35] [PASSED] 0x5694 (DG2)
[15:18:35] [PASSED] 0x5695 (DG2)
[15:18:35] [PASSED] 0x56A3 (DG2)
[15:18:35] [PASSED] 0x56A4 (DG2)
[15:18:35] [PASSED] 0x56B2 (DG2)
[15:18:35] [PASSED] 0x56B3 (DG2)
[15:18:35] [PASSED] 0x5696 (DG2)
[15:18:35] [PASSED] 0x5697 (DG2)
[15:18:35] [PASSED] 0xB69 (PVC)
[15:18:35] [PASSED] 0xB6E (PVC)
[15:18:35] [PASSED] 0xBD4 (PVC)
[15:18:35] [PASSED] 0xBD5 (PVC)
[15:18:35] [PASSED] 0xBD6 (PVC)
[15:18:35] [PASSED] 0xBD7 (PVC)
[15:18:35] [PASSED] 0xBD8 (PVC)
[15:18:35] [PASSED] 0xBD9 (PVC)
[15:18:35] [PASSED] 0xBDA (PVC)
[15:18:35] [PASSED] 0xBDB (PVC)
[15:18:35] [PASSED] 0xBE0 (PVC)
[15:18:35] [PASSED] 0xBE1 (PVC)
[15:18:35] [PASSED] 0xBE5 (PVC)
[15:18:35] [PASSED] 0x7D40 (METEORLAKE)
[15:18:35] [PASSED] 0x7D45 (METEORLAKE)
[15:18:35] [PASSED] 0x7D55 (METEORLAKE)
[15:18:35] [PASSED] 0x7D60 (METEORLAKE)
[15:18:35] [PASSED] 0x7DD5 (METEORLAKE)
[15:18:35] [PASSED] 0x6420 (LUNARLAKE)
[15:18:35] [PASSED] 0x64A0 (LUNARLAKE)
[15:18:35] [PASSED] 0x64B0 (LUNARLAKE)
[15:18:35] [PASSED] 0xE202 (BATTLEMAGE)
[15:18:35] [PASSED] 0xE209 (BATTLEMAGE)
[15:18:35] [PASSED] 0xE20B (BATTLEMAGE)
[15:18:35] [PASSED] 0xE20C (BATTLEMAGE)
[15:18:35] [PASSED] 0xE20D (BATTLEMAGE)
[15:18:35] [PASSED] 0xE210 (BATTLEMAGE)
[15:18:35] [PASSED] 0xE211 (BATTLEMAGE)
[15:18:35] [PASSED] 0xE212 (BATTLEMAGE)
[15:18:35] [PASSED] 0xE216 (BATTLEMAGE)
[15:18:35] [PASSED] 0xE220 (BATTLEMAGE)
[15:18:35] [PASSED] 0xE221 (BATTLEMAGE)
[15:18:35] [PASSED] 0xE222 (BATTLEMAGE)
[15:18:35] [PASSED] 0xE223 (BATTLEMAGE)
[15:18:35] [PASSED] 0xB080 (PANTHERLAKE)
[15:18:35] [PASSED] 0xB081 (PANTHERLAKE)
[15:18:35] [PASSED] 0xB082 (PANTHERLAKE)
[15:18:35] [PASSED] 0xB083 (PANTHERLAKE)
[15:18:35] [PASSED] 0xB084 (PANTHERLAKE)
[15:18:35] [PASSED] 0xB085 (PANTHERLAKE)
[15:18:35] [PASSED] 0xB086 (PANTHERLAKE)
[15:18:35] [PASSED] 0xB087 (PANTHERLAKE)
[15:18:35] [PASSED] 0xB08F (PANTHERLAKE)
[15:18:35] [PASSED] 0xB090 (PANTHERLAKE)
[15:18:35] [PASSED] 0xB0A0 (PANTHERLAKE)
[15:18:35] [PASSED] 0xB0B0 (PANTHERLAKE)
[15:18:35] [PASSED] 0xFD80 (PANTHERLAKE)
[15:18:35] [PASSED] 0xFD81 (PANTHERLAKE)
[15:18:35] [PASSED] 0xD740 (NOVALAKE_S)
[15:18:35] [PASSED] 0xD741 (NOVALAKE_S)
[15:18:35] [PASSED] 0xD742 (NOVALAKE_S)
[15:18:35] [PASSED] 0xD743 (NOVALAKE_S)
[15:18:35] [PASSED] 0xD744 (NOVALAKE_S)
[15:18:35] [PASSED] 0xD745 (NOVALAKE_S)
[15:18:35] [PASSED] 0x674C (CRESCENTISLAND)
[15:18:35] =============== [PASSED] check_platform_desc ===============
[15:18:35] ===================== [PASSED] xe_pci ======================
[15:18:35] =================== xe_rtp (2 subtests) ====================
[15:18:35] =============== xe_rtp_process_to_sr_tests ================
[15:18:35] [PASSED] coalesce-same-reg
[15:18:35] [PASSED] no-match-no-add
[15:18:35] [PASSED] match-or
[15:18:35] [PASSED] match-or-xfail
[15:18:35] [PASSED] no-match-no-add-multiple-rules
[15:18:35] [PASSED] two-regs-two-entries
[15:18:35] [PASSED] clr-one-set-other
[15:18:35] [PASSED] set-field
[15:18:35] [PASSED] conflict-duplicate
[15:18:35] [PASSED] conflict-not-disjoint
[15:18:35] [PASSED] conflict-reg-type
[15:18:35] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[15:18:35] ================== xe_rtp_process_tests ===================
[15:18:35] [PASSED] active1
[15:18:35] [PASSED] active2
[15:18:35] [PASSED] active-inactive
[15:18:35] [PASSED] inactive-active
[15:18:35] [PASSED] inactive-1st_or_active-inactive
[15:18:35] [PASSED] inactive-2nd_or_active-inactive
[15:18:35] [PASSED] inactive-last_or_active-inactive
[15:18:35] [PASSED] inactive-no_or_active-inactive
[15:18:35] ============== [PASSED] xe_rtp_process_tests ===============
[15:18:35] ===================== [PASSED] xe_rtp ======================
[15:18:35] ==================== xe_wa (1 subtest) =====================
[15:18:35] ======================== xe_wa_gt =========================
[15:18:35] [PASSED] TIGERLAKE B0
[15:18:35] [PASSED] DG1 A0
[15:18:35] [PASSED] DG1 B0
[15:18:35] [PASSED] ALDERLAKE_S A0
[15:18:35] [PASSED] ALDERLAKE_S B0
[15:18:35] [PASSED] ALDERLAKE_S C0
[15:18:35] [PASSED] ALDERLAKE_S D0
[15:18:35] [PASSED] ALDERLAKE_P A0
[15:18:35] [PASSED] ALDERLAKE_P B0
[15:18:35] [PASSED] ALDERLAKE_P C0
[15:18:35] [PASSED] ALDERLAKE_S RPLS D0
[15:18:35] [PASSED] ALDERLAKE_P RPLU E0
[15:18:35] [PASSED] DG2 G10 C0
[15:18:35] [PASSED] DG2 G11 B1
[15:18:35] [PASSED] DG2 G12 A1
[15:18:35] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[15:18:35] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[15:18:35] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[15:18:35] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[15:18:35] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[15:18:35] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[15:18:35] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[15:18:35] ==================== [PASSED] xe_wa_gt =====================
[15:18:35] ====================== [PASSED] xe_wa ======================
[15:18:35] ============================================================
[15:18:35] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[15:18:35] Elapsed time: 36.254s total, 4.231s configuring, 31.556s building, 0.434s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[15:18:35] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:18:37] 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
[15:19:03] Starting KUnit Kernel (1/1)...
[15:19:03] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:19:03] ============ drm_test_pick_cmdline (2 subtests) ============
[15:19:03] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[15:19:03] =============== drm_test_pick_cmdline_named ===============
[15:19:03] [PASSED] NTSC
[15:19:03] [PASSED] NTSC-J
[15:19:03] [PASSED] PAL
[15:19:03] [PASSED] PAL-M
[15:19:03] =========== [PASSED] drm_test_pick_cmdline_named ===========
[15:19:03] ============== [PASSED] drm_test_pick_cmdline ==============
[15:19:03] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[15:19:03] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[15:19:03] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[15:19:03] =========== drm_validate_clone_mode (2 subtests) ===========
[15:19:03] ============== drm_test_check_in_clone_mode ===============
[15:19:03] [PASSED] in_clone_mode
[15:19:03] [PASSED] not_in_clone_mode
[15:19:03] ========== [PASSED] drm_test_check_in_clone_mode ===========
[15:19:03] =============== drm_test_check_valid_clones ===============
[15:19:03] [PASSED] not_in_clone_mode
[15:19:03] [PASSED] valid_clone
[15:19:03] [PASSED] invalid_clone
[15:19:03] =========== [PASSED] drm_test_check_valid_clones ===========
[15:19:03] ============= [PASSED] drm_validate_clone_mode =============
[15:19:03] ============= drm_validate_modeset (1 subtest) =============
[15:19:03] [PASSED] drm_test_check_connector_changed_modeset
[15:19:03] ============== [PASSED] drm_validate_modeset ===============
[15:19:03] ====== drm_test_bridge_get_current_state (2 subtests) ======
[15:19:03] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[15:19:03] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[15:19:03] ======== [PASSED] drm_test_bridge_get_current_state ========
[15:19:03] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[15:19:03] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[15:19:03] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[15:19:03] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[15:19:03] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[15:19:03] ============== drm_bridge_alloc (2 subtests) ===============
[15:19:03] [PASSED] drm_test_drm_bridge_alloc_basic
[15:19:03] [PASSED] drm_test_drm_bridge_alloc_get_put
[15:19:03] ================ [PASSED] drm_bridge_alloc =================
[15:19:03] ================== drm_buddy (8 subtests) ==================
[15:19:03] [PASSED] drm_test_buddy_alloc_limit
[15:19:03] [PASSED] drm_test_buddy_alloc_optimistic
[15:19:03] [PASSED] drm_test_buddy_alloc_pessimistic
[15:19:03] [PASSED] drm_test_buddy_alloc_pathological
[15:19:03] [PASSED] drm_test_buddy_alloc_contiguous
[15:19:03] [PASSED] drm_test_buddy_alloc_clear
[15:19:03] [PASSED] drm_test_buddy_alloc_range_bias
[15:19:03] [PASSED] drm_test_buddy_fragmentation_performance
[15:19:03] ==================== [PASSED] drm_buddy ====================
[15:19:03] ============= drm_cmdline_parser (40 subtests) =============
[15:19:03] [PASSED] drm_test_cmdline_force_d_only
[15:19:03] [PASSED] drm_test_cmdline_force_D_only_dvi
[15:19:03] [PASSED] drm_test_cmdline_force_D_only_hdmi
[15:19:03] [PASSED] drm_test_cmdline_force_D_only_not_digital
[15:19:03] [PASSED] drm_test_cmdline_force_e_only
[15:19:03] [PASSED] drm_test_cmdline_res
[15:19:03] [PASSED] drm_test_cmdline_res_vesa
[15:19:03] [PASSED] drm_test_cmdline_res_vesa_rblank
[15:19:03] [PASSED] drm_test_cmdline_res_rblank
[15:19:03] [PASSED] drm_test_cmdline_res_bpp
[15:19:03] [PASSED] drm_test_cmdline_res_refresh
[15:19:03] [PASSED] drm_test_cmdline_res_bpp_refresh
[15:19:03] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[15:19:03] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[15:19:03] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[15:19:03] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[15:19:03] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[15:19:03] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[15:19:03] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[15:19:03] [PASSED] drm_test_cmdline_res_margins_force_on
[15:19:03] [PASSED] drm_test_cmdline_res_vesa_margins
[15:19:03] [PASSED] drm_test_cmdline_name
[15:19:03] [PASSED] drm_test_cmdline_name_bpp
[15:19:03] [PASSED] drm_test_cmdline_name_option
[15:19:03] [PASSED] drm_test_cmdline_name_bpp_option
[15:19:03] [PASSED] drm_test_cmdline_rotate_0
[15:19:03] [PASSED] drm_test_cmdline_rotate_90
[15:19:03] [PASSED] drm_test_cmdline_rotate_180
[15:19:03] [PASSED] drm_test_cmdline_rotate_270
[15:19:03] [PASSED] drm_test_cmdline_hmirror
[15:19:03] [PASSED] drm_test_cmdline_vmirror
[15:19:03] [PASSED] drm_test_cmdline_margin_options
[15:19:03] [PASSED] drm_test_cmdline_multiple_options
[15:19:03] [PASSED] drm_test_cmdline_bpp_extra_and_option
[15:19:03] [PASSED] drm_test_cmdline_extra_and_option
[15:19:03] [PASSED] drm_test_cmdline_freestanding_options
[15:19:03] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[15:19:03] [PASSED] drm_test_cmdline_panel_orientation
[15:19:03] ================ drm_test_cmdline_invalid =================
[15:19:03] [PASSED] margin_only
[15:19:03] [PASSED] interlace_only
[15:19:03] [PASSED] res_missing_x
[15:19:03] [PASSED] res_missing_y
[15:19:03] [PASSED] res_bad_y
[15:19:03] [PASSED] res_missing_y_bpp
[15:19:03] [PASSED] res_bad_bpp
[15:19:03] [PASSED] res_bad_refresh
[15:19:03] [PASSED] res_bpp_refresh_force_on_off
[15:19:03] [PASSED] res_invalid_mode
[15:19:03] [PASSED] res_bpp_wrong_place_mode
[15:19:03] [PASSED] name_bpp_refresh
[15:19:03] [PASSED] name_refresh
[15:19:03] [PASSED] name_refresh_wrong_mode
[15:19:03] [PASSED] name_refresh_invalid_mode
[15:19:03] [PASSED] rotate_multiple
[15:19:03] [PASSED] rotate_invalid_val
[15:19:03] [PASSED] rotate_truncated
[15:19:03] [PASSED] invalid_option
[15:19:03] [PASSED] invalid_tv_option
[15:19:03] [PASSED] truncated_tv_option
[15:19:03] ============ [PASSED] drm_test_cmdline_invalid =============
[15:19:03] =============== drm_test_cmdline_tv_options ===============
[15:19:03] [PASSED] NTSC
[15:19:03] [PASSED] NTSC_443
[15:19:03] [PASSED] NTSC_J
[15:19:03] [PASSED] PAL
[15:19:03] [PASSED] PAL_M
[15:19:03] [PASSED] PAL_N
[15:19:03] [PASSED] SECAM
[15:19:03] [PASSED] MONO_525
[15:19:03] [PASSED] MONO_625
[15:19:03] =========== [PASSED] drm_test_cmdline_tv_options ===========
[15:19:03] =============== [PASSED] drm_cmdline_parser ================
[15:19:03] ========== drmm_connector_hdmi_init (20 subtests) ==========
[15:19:03] [PASSED] drm_test_connector_hdmi_init_valid
[15:19:03] [PASSED] drm_test_connector_hdmi_init_bpc_8
[15:19:03] [PASSED] drm_test_connector_hdmi_init_bpc_10
[15:19:03] [PASSED] drm_test_connector_hdmi_init_bpc_12
[15:19:03] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[15:19:03] [PASSED] drm_test_connector_hdmi_init_bpc_null
[15:19:03] [PASSED] drm_test_connector_hdmi_init_formats_empty
[15:19:03] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[15:19:03] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[15:19:03] [PASSED] supported_formats=0x9 yuv420_allowed=1
[15:19:03] [PASSED] supported_formats=0x9 yuv420_allowed=0
[15:19:03] [PASSED] supported_formats=0x3 yuv420_allowed=1
[15:19:03] [PASSED] supported_formats=0x3 yuv420_allowed=0
[15:19:03] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[15:19:03] [PASSED] drm_test_connector_hdmi_init_null_ddc
[15:19:03] [PASSED] drm_test_connector_hdmi_init_null_product
[15:19:03] [PASSED] drm_test_connector_hdmi_init_null_vendor
[15:19:03] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[15:19:03] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[15:19:03] [PASSED] drm_test_connector_hdmi_init_product_valid
[15:19:03] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[15:19:03] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[15:19:03] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[15:19:03] ========= drm_test_connector_hdmi_init_type_valid =========
[15:19:03] [PASSED] HDMI-A
[15:19:03] [PASSED] HDMI-B
[15:19:03] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[15:19:03] ======== drm_test_connector_hdmi_init_type_invalid ========
[15:19:03] [PASSED] Unknown
[15:19:03] [PASSED] VGA
[15:19:03] [PASSED] DVI-I
[15:19:03] [PASSED] DVI-D
[15:19:03] [PASSED] DVI-A
[15:19:03] [PASSED] Composite
[15:19:03] [PASSED] SVIDEO
[15:19:03] [PASSED] LVDS
[15:19:03] [PASSED] Component
[15:19:03] [PASSED] DIN
[15:19:03] [PASSED] DP
[15:19:03] [PASSED] TV
[15:19:03] [PASSED] eDP
[15:19:03] [PASSED] Virtual
[15:19:03] [PASSED] DSI
[15:19:03] [PASSED] DPI
[15:19:03] [PASSED] Writeback
[15:19:03] [PASSED] SPI
[15:19:03] [PASSED] USB
[15:19:03] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[15:19:03] ============ [PASSED] drmm_connector_hdmi_init =============
[15:19:03] ============= drmm_connector_init (3 subtests) =============
[15:19:03] [PASSED] drm_test_drmm_connector_init
[15:19:03] [PASSED] drm_test_drmm_connector_init_null_ddc
[15:19:03] ========= drm_test_drmm_connector_init_type_valid =========
[15:19:03] [PASSED] Unknown
[15:19:03] [PASSED] VGA
[15:19:03] [PASSED] DVI-I
[15:19:03] [PASSED] DVI-D
[15:19:03] [PASSED] DVI-A
[15:19:03] [PASSED] Composite
[15:19:03] [PASSED] SVIDEO
[15:19:03] [PASSED] LVDS
[15:19:03] [PASSED] Component
[15:19:03] [PASSED] DIN
[15:19:03] [PASSED] DP
[15:19:03] [PASSED] HDMI-A
[15:19:03] [PASSED] HDMI-B
[15:19:03] [PASSED] TV
[15:19:03] [PASSED] eDP
[15:19:03] [PASSED] Virtual
[15:19:03] [PASSED] DSI
[15:19:03] [PASSED] DPI
[15:19:03] [PASSED] Writeback
[15:19:03] [PASSED] SPI
[15:19:03] [PASSED] USB
[15:19:03] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[15:19:03] =============== [PASSED] drmm_connector_init ===============
[15:19:03] ========= drm_connector_dynamic_init (6 subtests) ==========
[15:19:03] [PASSED] drm_test_drm_connector_dynamic_init
[15:19:03] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[15:19:03] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[15:19:03] [PASSED] drm_test_drm_connector_dynamic_init_properties
[15:19:03] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[15:19:03] [PASSED] Unknown
[15:19:03] [PASSED] VGA
[15:19:03] [PASSED] DVI-I
[15:19:03] [PASSED] DVI-D
[15:19:03] [PASSED] DVI-A
[15:19:03] [PASSED] Composite
[15:19:03] [PASSED] SVIDEO
[15:19:03] [PASSED] LVDS
[15:19:03] [PASSED] Component
[15:19:03] [PASSED] DIN
[15:19:03] [PASSED] DP
[15:19:03] [PASSED] HDMI-A
[15:19:03] [PASSED] HDMI-B
[15:19:03] [PASSED] TV
[15:19:03] [PASSED] eDP
[15:19:03] [PASSED] Virtual
[15:19:03] [PASSED] DSI
[15:19:03] [PASSED] DPI
[15:19:03] [PASSED] Writeback
[15:19:03] [PASSED] SPI
[15:19:03] [PASSED] USB
[15:19:03] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[15:19:03] ======== drm_test_drm_connector_dynamic_init_name =========
[15:19:03] [PASSED] Unknown
[15:19:03] [PASSED] VGA
[15:19:03] [PASSED] DVI-I
[15:19:03] [PASSED] DVI-D
[15:19:03] [PASSED] DVI-A
[15:19:03] [PASSED] Composite
[15:19:03] [PASSED] SVIDEO
[15:19:03] [PASSED] LVDS
[15:19:03] [PASSED] Component
[15:19:03] [PASSED] DIN
[15:19:03] [PASSED] DP
[15:19:03] [PASSED] HDMI-A
[15:19:03] [PASSED] HDMI-B
[15:19:03] [PASSED] TV
[15:19:03] [PASSED] eDP
[15:19:03] [PASSED] Virtual
[15:19:03] [PASSED] DSI
[15:19:03] [PASSED] DPI
[15:19:03] [PASSED] Writeback
[15:19:03] [PASSED] SPI
[15:19:03] [PASSED] USB
[15:19:03] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[15:19:03] =========== [PASSED] drm_connector_dynamic_init ============
[15:19:03] ==== drm_connector_dynamic_register_early (4 subtests) =====
[15:19:03] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[15:19:03] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[15:19:03] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[15:19:03] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[15:19:03] ====== [PASSED] drm_connector_dynamic_register_early =======
[15:19:03] ======= drm_connector_dynamic_register (7 subtests) ========
[15:19:03] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[15:19:03] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[15:19:03] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[15:19:03] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[15:19:03] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[15:19:03] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[15:19:03] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[15:19:03] ========= [PASSED] drm_connector_dynamic_register ==========
[15:19:03] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[15:19:03] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[15:19:03] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[15:19:03] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[15:19:03] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[15:19:03] ========== drm_test_get_tv_mode_from_name_valid ===========
[15:19:03] [PASSED] NTSC
[15:19:03] [PASSED] NTSC-443
[15:19:03] [PASSED] NTSC-J
[15:19:03] [PASSED] PAL
[15:19:03] [PASSED] PAL-M
[15:19:03] [PASSED] PAL-N
[15:19:03] [PASSED] SECAM
[15:19:03] [PASSED] Mono
[15:19:03] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[15:19:03] [PASSED] drm_test_get_tv_mode_from_name_truncated
[15:19:03] ============ [PASSED] drm_get_tv_mode_from_name ============
[15:19:03] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[15:19:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[15:19:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[15:19:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[15:19:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[15:19:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[15:19:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[15:19:03] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[15:19:03] [PASSED] VIC 96
[15:19:03] [PASSED] VIC 97
[15:19:03] [PASSED] VIC 101
[15:19:03] [PASSED] VIC 102
[15:19:03] [PASSED] VIC 106
[15:19:03] [PASSED] VIC 107
[15:19:03] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[15:19:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[15:19:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[15:19:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[15:19:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[15:19:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[15:19:03] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[15:19:03] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[15:19:03] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[15:19:03] [PASSED] Automatic
[15:19:03] [PASSED] Full
[15:19:03] [PASSED] Limited 16:235
[15:19:03] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[15:19:03] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[15:19:03] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[15:19:03] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[15:19:03] === drm_test_drm_hdmi_connector_get_output_format_name ====
[15:19:03] [PASSED] RGB
[15:19:03] [PASSED] YUV 4:2:0
[15:19:03] [PASSED] YUV 4:2:2
[15:19:03] [PASSED] YUV 4:4:4
[15:19:03] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[15:19:03] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[15:19:03] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[15:19:03] ============= drm_damage_helper (21 subtests) ==============
[15:19:03] [PASSED] drm_test_damage_iter_no_damage
[15:19:03] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[15:19:03] [PASSED] drm_test_damage_iter_no_damage_src_moved
[15:19:03] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[15:19:03] [PASSED] drm_test_damage_iter_no_damage_not_visible
[15:19:03] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[15:19:03] [PASSED] drm_test_damage_iter_no_damage_no_fb
[15:19:03] [PASSED] drm_test_damage_iter_simple_damage
[15:19:03] [PASSED] drm_test_damage_iter_single_damage
[15:19:03] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[15:19:03] [PASSED] drm_test_damage_iter_single_damage_outside_src
[15:19:03] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[15:19:03] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[15:19:03] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[15:19:03] [PASSED] drm_test_damage_iter_single_damage_src_moved
[15:19:03] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[15:19:03] [PASSED] drm_test_damage_iter_damage
[15:19:03] [PASSED] drm_test_damage_iter_damage_one_intersect
[15:19:03] [PASSED] drm_test_damage_iter_damage_one_outside
[15:19:03] [PASSED] drm_test_damage_iter_damage_src_moved
[15:19:03] [PASSED] drm_test_damage_iter_damage_not_visible
[15:19:03] ================ [PASSED] drm_damage_helper ================
[15:19:03] ============== drm_dp_mst_helper (3 subtests) ==============
[15:19:03] ============== drm_test_dp_mst_calc_pbn_mode ==============
[15:19:03] [PASSED] Clock 154000 BPP 30 DSC disabled
[15:19:03] [PASSED] Clock 234000 BPP 30 DSC disabled
[15:19:03] [PASSED] Clock 297000 BPP 24 DSC disabled
[15:19:03] [PASSED] Clock 332880 BPP 24 DSC enabled
[15:19:03] [PASSED] Clock 324540 BPP 24 DSC enabled
[15:19:03] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[15:19:03] ============== drm_test_dp_mst_calc_pbn_div ===============
[15:19:03] [PASSED] Link rate 2000000 lane count 4
[15:19:03] [PASSED] Link rate 2000000 lane count 2
[15:19:03] [PASSED] Link rate 2000000 lane count 1
[15:19:03] [PASSED] Link rate 1350000 lane count 4
[15:19:03] [PASSED] Link rate 1350000 lane count 2
[15:19:03] [PASSED] Link rate 1350000 lane count 1
[15:19:03] [PASSED] Link rate 1000000 lane count 4
[15:19:03] [PASSED] Link rate 1000000 lane count 2
[15:19:03] [PASSED] Link rate 1000000 lane count 1
[15:19:03] [PASSED] Link rate 810000 lane count 4
[15:19:03] [PASSED] Link rate 810000 lane count 2
[15:19:03] [PASSED] Link rate 810000 lane count 1
[15:19:03] [PASSED] Link rate 540000 lane count 4
[15:19:03] [PASSED] Link rate 540000 lane count 2
[15:19:03] [PASSED] Link rate 540000 lane count 1
[15:19:03] [PASSED] Link rate 270000 lane count 4
[15:19:03] [PASSED] Link rate 270000 lane count 2
[15:19:03] [PASSED] Link rate 270000 lane count 1
[15:19:03] [PASSED] Link rate 162000 lane count 4
[15:19:03] [PASSED] Link rate 162000 lane count 2
[15:19:03] [PASSED] Link rate 162000 lane count 1
[15:19:03] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[15:19:03] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[15:19:03] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[15:19:03] [PASSED] DP_POWER_UP_PHY with port number
[15:19:03] [PASSED] DP_POWER_DOWN_PHY with port number
[15:19:03] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[15:19:03] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[15:19:03] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[15:19:03] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[15:19:03] [PASSED] DP_QUERY_PAYLOAD with port number
[15:19:03] [PASSED] DP_QUERY_PAYLOAD with VCPI
[15:19:03] [PASSED] DP_REMOTE_DPCD_READ with port number
[15:19:03] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[15:19:03] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[15:19:03] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[15:19:03] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[15:19:03] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[15:19:03] [PASSED] DP_REMOTE_I2C_READ with port number
[15:19:03] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[15:19:03] [PASSED] DP_REMOTE_I2C_READ with transactions array
[15:19:03] [PASSED] DP_REMOTE_I2C_WRITE with port number
[15:19:03] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[15:19:03] [PASSED] DP_REMOTE_I2C_WRITE with data array
[15:19:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[15:19:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[15:19:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[15:19:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[15:19:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[15:19:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[15:19:03] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[15:19:03] ================ [PASSED] drm_dp_mst_helper ================
[15:19:03] ================== drm_exec (7 subtests) ===================
[15:19:03] [PASSED] sanitycheck
[15:19:03] [PASSED] test_lock
[15:19:03] [PASSED] test_lock_unlock
[15:19:03] [PASSED] test_duplicates
[15:19:03] [PASSED] test_prepare
[15:19:03] [PASSED] test_prepare_array
[15:19:03] [PASSED] test_multiple_loops
[15:19:03] ==================== [PASSED] drm_exec =====================
[15:19:03] =========== drm_format_helper_test (17 subtests) ===========
[15:19:03] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[15:19:03] [PASSED] single_pixel_source_buffer
[15:19:03] [PASSED] single_pixel_clip_rectangle
[15:19:03] [PASSED] well_known_colors
[15:19:03] [PASSED] destination_pitch
[15:19:03] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[15:19:03] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[15:19:03] [PASSED] single_pixel_source_buffer
[15:19:03] [PASSED] single_pixel_clip_rectangle
[15:19:03] [PASSED] well_known_colors
[15:19:03] [PASSED] destination_pitch
[15:19:03] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[15:19:03] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[15:19:03] [PASSED] single_pixel_source_buffer
[15:19:03] [PASSED] single_pixel_clip_rectangle
[15:19:03] [PASSED] well_known_colors
[15:19:03] [PASSED] destination_pitch
[15:19:03] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[15:19:03] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[15:19:03] [PASSED] single_pixel_source_buffer
[15:19:03] [PASSED] single_pixel_clip_rectangle
[15:19:03] [PASSED] well_known_colors
[15:19:03] [PASSED] destination_pitch
[15:19:03] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[15:19:03] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[15:19:03] [PASSED] single_pixel_source_buffer
[15:19:03] [PASSED] single_pixel_clip_rectangle
[15:19:03] [PASSED] well_known_colors
[15:19:03] [PASSED] destination_pitch
[15:19:03] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[15:19:03] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[15:19:03] [PASSED] single_pixel_source_buffer
[15:19:03] [PASSED] single_pixel_clip_rectangle
[15:19:03] [PASSED] well_known_colors
[15:19:03] [PASSED] destination_pitch
[15:19:03] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[15:19:03] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[15:19:03] [PASSED] single_pixel_source_buffer
[15:19:03] [PASSED] single_pixel_clip_rectangle
[15:19:03] [PASSED] well_known_colors
[15:19:03] [PASSED] destination_pitch
[15:19:03] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[15:19:03] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[15:19:03] [PASSED] single_pixel_source_buffer
[15:19:03] [PASSED] single_pixel_clip_rectangle
[15:19:03] [PASSED] well_known_colors
[15:19:03] [PASSED] destination_pitch
[15:19:03] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[15:19:03] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[15:19:03] [PASSED] single_pixel_source_buffer
[15:19:03] [PASSED] single_pixel_clip_rectangle
[15:19:03] [PASSED] well_known_colors
[15:19:03] [PASSED] destination_pitch
[15:19:03] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[15:19:03] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[15:19:03] [PASSED] single_pixel_source_buffer
[15:19:03] [PASSED] single_pixel_clip_rectangle
[15:19:03] [PASSED] well_known_colors
[15:19:03] [PASSED] destination_pitch
[15:19:03] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[15:19:03] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[15:19:03] [PASSED] single_pixel_source_buffer
[15:19:03] [PASSED] single_pixel_clip_rectangle
[15:19:03] [PASSED] well_known_colors
[15:19:03] [PASSED] destination_pitch
[15:19:03] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[15:19:03] ============== drm_test_fb_xrgb8888_to_mono ===============
[15:19:03] [PASSED] single_pixel_source_buffer
[15:19:03] [PASSED] single_pixel_clip_rectangle
[15:19:03] [PASSED] well_known_colors
[15:19:03] [PASSED] destination_pitch
[15:19:03] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[15:19:03] ==================== drm_test_fb_swab =====================
[15:19:03] [PASSED] single_pixel_source_buffer
[15:19:03] [PASSED] single_pixel_clip_rectangle
[15:19:03] [PASSED] well_known_colors
[15:19:03] [PASSED] destination_pitch
[15:19:03] ================ [PASSED] drm_test_fb_swab =================
[15:19:03] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[15:19:03] [PASSED] single_pixel_source_buffer
[15:19:03] [PASSED] single_pixel_clip_rectangle
[15:19:03] [PASSED] well_known_colors
[15:19:03] [PASSED] destination_pitch
[15:19:03] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[15:19:03] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[15:19:03] [PASSED] single_pixel_source_buffer
[15:19:03] [PASSED] single_pixel_clip_rectangle
[15:19:03] [PASSED] well_known_colors
[15:19:03] [PASSED] destination_pitch
[15:19:03] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[15:19:03] ================= drm_test_fb_clip_offset =================
[15:19:03] [PASSED] pass through
[15:19:03] [PASSED] horizontal offset
[15:19:03] [PASSED] vertical offset
[15:19:03] [PASSED] horizontal and vertical offset
[15:19:03] [PASSED] horizontal offset (custom pitch)
[15:19:03] [PASSED] vertical offset (custom pitch)
[15:19:03] [PASSED] horizontal and vertical offset (custom pitch)
[15:19:03] ============= [PASSED] drm_test_fb_clip_offset =============
[15:19:03] =================== drm_test_fb_memcpy ====================
[15:19:03] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[15:19:03] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[15:19:03] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[15:19:03] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[15:19:03] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[15:19:03] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[15:19:03] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[15:19:03] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[15:19:03] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[15:19:03] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[15:19:03] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[15:19:03] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[15:19:03] =============== [PASSED] drm_test_fb_memcpy ================
[15:19:03] ============= [PASSED] drm_format_helper_test ==============
[15:19:03] ================= drm_format (18 subtests) =================
[15:19:03] [PASSED] drm_test_format_block_width_invalid
[15:19:03] [PASSED] drm_test_format_block_width_one_plane
[15:19:03] [PASSED] drm_test_format_block_width_two_plane
[15:19:03] [PASSED] drm_test_format_block_width_three_plane
[15:19:03] [PASSED] drm_test_format_block_width_tiled
[15:19:03] [PASSED] drm_test_format_block_height_invalid
[15:19:03] [PASSED] drm_test_format_block_height_one_plane
[15:19:03] [PASSED] drm_test_format_block_height_two_plane
[15:19:03] [PASSED] drm_test_format_block_height_three_plane
[15:19:03] [PASSED] drm_test_format_block_height_tiled
[15:19:03] [PASSED] drm_test_format_min_pitch_invalid
[15:19:03] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[15:19:03] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[15:19:03] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[15:19:03] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[15:19:03] [PASSED] drm_test_format_min_pitch_two_plane
[15:19:03] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[15:19:03] [PASSED] drm_test_format_min_pitch_tiled
[15:19:03] =================== [PASSED] drm_format ====================
[15:19:03] ============== drm_framebuffer (10 subtests) ===============
[15:19:03] ========== drm_test_framebuffer_check_src_coords ==========
[15:19:03] [PASSED] Success: source fits into fb
[15:19:03] [PASSED] Fail: overflowing fb with x-axis coordinate
[15:19:03] [PASSED] Fail: overflowing fb with y-axis coordinate
[15:19:03] [PASSED] Fail: overflowing fb with source width
[15:19:03] [PASSED] Fail: overflowing fb with source height
[15:19:03] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[15:19:03] [PASSED] drm_test_framebuffer_cleanup
[15:19:03] =============== drm_test_framebuffer_create ===============
[15:19:03] [PASSED] ABGR8888 normal sizes
[15:19:03] [PASSED] ABGR8888 max sizes
[15:19:03] [PASSED] ABGR8888 pitch greater than min required
[15:19:03] [PASSED] ABGR8888 pitch less than min required
[15:19:03] [PASSED] ABGR8888 Invalid width
[15:19:03] [PASSED] ABGR8888 Invalid buffer handle
[15:19:03] [PASSED] No pixel format
[15:19:03] [PASSED] ABGR8888 Width 0
[15:19:03] [PASSED] ABGR8888 Height 0
[15:19:03] [PASSED] ABGR8888 Out of bound height * pitch combination
[15:19:03] [PASSED] ABGR8888 Large buffer offset
[15:19:03] [PASSED] ABGR8888 Buffer offset for inexistent plane
[15:19:03] [PASSED] ABGR8888 Invalid flag
[15:19:03] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[15:19:03] [PASSED] ABGR8888 Valid buffer modifier
[15:19:03] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[15:19:03] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[15:19:03] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[15:19:03] [PASSED] NV12 Normal sizes
[15:19:03] [PASSED] NV12 Max sizes
[15:19:03] [PASSED] NV12 Invalid pitch
[15:19:03] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[15:19:03] [PASSED] NV12 different modifier per-plane
[15:19:03] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[15:19:03] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[15:19:03] [PASSED] NV12 Modifier for inexistent plane
[15:19:03] [PASSED] NV12 Handle for inexistent plane
[15:19:03] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[15:19:03] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[15:19:03] [PASSED] YVU420 Normal sizes
[15:19:03] [PASSED] YVU420 Max sizes
[15:19:03] [PASSED] YVU420 Invalid pitch
[15:19:03] [PASSED] YVU420 Different pitches
[15:19:03] [PASSED] YVU420 Different buffer offsets/pitches
[15:19:03] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[15:19:03] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[15:19:03] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[15:19:03] [PASSED] YVU420 Valid modifier
[15:19:03] [PASSED] YVU420 Different modifiers per plane
[15:19:03] [PASSED] YVU420 Modifier for inexistent plane
[15:19:03] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[15:19:03] [PASSED] X0L2 Normal sizes
[15:19:03] [PASSED] X0L2 Max sizes
[15:19:03] [PASSED] X0L2 Invalid pitch
[15:19:03] [PASSED] X0L2 Pitch greater than minimum required
[15:19:03] [PASSED] X0L2 Handle for inexistent plane
[15:19:03] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[15:19:03] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[15:19:03] [PASSED] X0L2 Valid modifier
[15:19:03] [PASSED] X0L2 Modifier for inexistent plane
[15:19:03] =========== [PASSED] drm_test_framebuffer_create ===========
[15:19:03] [PASSED] drm_test_framebuffer_free
[15:19:03] [PASSED] drm_test_framebuffer_init
[15:19:03] [PASSED] drm_test_framebuffer_init_bad_format
[15:19:03] [PASSED] drm_test_framebuffer_init_dev_mismatch
[15:19:03] [PASSED] drm_test_framebuffer_lookup
[15:19:03] [PASSED] drm_test_framebuffer_lookup_inexistent
[15:19:03] [PASSED] drm_test_framebuffer_modifiers_not_supported
[15:19:03] ================= [PASSED] drm_framebuffer =================
[15:19:03] ================ drm_gem_shmem (8 subtests) ================
[15:19:03] [PASSED] drm_gem_shmem_test_obj_create
[15:19:03] [PASSED] drm_gem_shmem_test_obj_create_private
[15:19:03] [PASSED] drm_gem_shmem_test_pin_pages
[15:19:03] [PASSED] drm_gem_shmem_test_vmap
[15:19:03] [PASSED] drm_gem_shmem_test_get_sg_table
[15:19:03] [PASSED] drm_gem_shmem_test_get_pages_sgt
[15:19:03] [PASSED] drm_gem_shmem_test_madvise
[15:19:03] [PASSED] drm_gem_shmem_test_purge
[15:19:03] ================== [PASSED] drm_gem_shmem ==================
[15:19:03] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[15:19:03] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[15:19:03] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[15:19:03] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[15:19:03] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[15:19:03] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[15:19:03] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[15:19:03] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[15:19:03] [PASSED] Automatic
[15:19:03] [PASSED] Full
[15:19:03] [PASSED] Limited 16:235
[15:19:03] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[15:19:03] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[15:19:03] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[15:19:03] [PASSED] drm_test_check_disable_connector
[15:19:03] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[15:19:03] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[15:19:03] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[15:19:03] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[15:19:03] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[15:19:03] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[15:19:03] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[15:19:03] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[15:19:03] [PASSED] drm_test_check_output_bpc_dvi
[15:19:03] [PASSED] drm_test_check_output_bpc_format_vic_1
[15:19:03] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[15:19:03] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[15:19:03] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[15:19:03] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[15:19:03] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[15:19:03] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[15:19:03] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[15:19:03] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[15:19:03] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[15:19:03] [PASSED] drm_test_check_broadcast_rgb_value
[15:19:03] [PASSED] drm_test_check_bpc_8_value
[15:19:03] [PASSED] drm_test_check_bpc_10_value
[15:19:03] [PASSED] drm_test_check_bpc_12_value
[15:19:03] [PASSED] drm_test_check_format_value
[15:19:03] [PASSED] drm_test_check_tmds_char_value
[15:19:03] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[15:19:03] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[15:19:03] [PASSED] drm_test_check_mode_valid
[15:19:03] [PASSED] drm_test_check_mode_valid_reject
[15:19:03] [PASSED] drm_test_check_mode_valid_reject_rate
[15:19:03] [PASSED] drm_test_check_mode_valid_reject_max_clock
[15:19:03] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[15:19:03] ================= drm_managed (2 subtests) =================
[15:19:03] [PASSED] drm_test_managed_release_action
[15:19:03] [PASSED] drm_test_managed_run_action
[15:19:03] =================== [PASSED] drm_managed ===================
[15:19:03] =================== drm_mm (6 subtests) ====================
[15:19:03] [PASSED] drm_test_mm_init
[15:19:03] [PASSED] drm_test_mm_debug
[15:19:03] [PASSED] drm_test_mm_align32
[15:19:03] [PASSED] drm_test_mm_align64
[15:19:03] [PASSED] drm_test_mm_lowest
[15:19:03] [PASSED] drm_test_mm_highest
[15:19:03] ===================== [PASSED] drm_mm ======================
[15:19:03] ============= drm_modes_analog_tv (5 subtests) =============
[15:19:03] [PASSED] drm_test_modes_analog_tv_mono_576i
[15:19:03] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[15:19:03] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[15:19:03] [PASSED] drm_test_modes_analog_tv_pal_576i
[15:19:03] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[15:19:03] =============== [PASSED] drm_modes_analog_tv ===============
[15:19:03] ============== drm_plane_helper (2 subtests) ===============
[15:19:03] =============== drm_test_check_plane_state ================
[15:19:03] [PASSED] clipping_simple
[15:19:03] [PASSED] clipping_rotate_reflect
[15:19:03] [PASSED] positioning_simple
[15:19:03] [PASSED] upscaling
[15:19:03] [PASSED] downscaling
[15:19:03] [PASSED] rounding1
[15:19:03] [PASSED] rounding2
[15:19:03] [PASSED] rounding3
[15:19:03] [PASSED] rounding4
[15:19:03] =========== [PASSED] drm_test_check_plane_state ============
[15:19:03] =========== drm_test_check_invalid_plane_state ============
[15:19:03] [PASSED] positioning_invalid
[15:19:03] [PASSED] upscaling_invalid
[15:19:03] [PASSED] downscaling_invalid
[15:19:03] ======= [PASSED] drm_test_check_invalid_plane_state ========
[15:19:03] ================ [PASSED] drm_plane_helper =================
[15:19:03] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[15:19:03] ====== drm_test_connector_helper_tv_get_modes_check =======
[15:19:03] [PASSED] None
[15:19:03] [PASSED] PAL
[15:19:03] [PASSED] NTSC
[15:19:03] [PASSED] Both, NTSC Default
[15:19:03] [PASSED] Both, PAL Default
[15:19:03] [PASSED] Both, NTSC Default, with PAL on command-line
[15:19:03] [PASSED] Both, PAL Default, with NTSC on command-line
[15:19:03] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[15:19:03] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[15:19:03] ================== drm_rect (9 subtests) ===================
[15:19:03] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[15:19:03] [PASSED] drm_test_rect_clip_scaled_not_clipped
[15:19:03] [PASSED] drm_test_rect_clip_scaled_clipped
[15:19:03] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[15:19:03] ================= drm_test_rect_intersect =================
[15:19:03] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[15:19:03] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[15:19:03] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[15:19:03] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[15:19:03] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[15:19:03] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[15:19:03] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[15:19:03] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[15:19:03] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[15:19:03] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[15:19:03] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[15:19:03] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[15:19:03] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[15:19:03] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[15:19:03] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[15:19:03] ============= [PASSED] drm_test_rect_intersect =============
[15:19:03] ================ drm_test_rect_calc_hscale ================
[15:19:03] [PASSED] normal use
[15:19:03] [PASSED] out of max range
[15:19:03] [PASSED] out of min range
[15:19:03] [PASSED] zero dst
[15:19:03] [PASSED] negative src
[15:19:03] [PASSED] negative dst
[15:19:03] ============ [PASSED] drm_test_rect_calc_hscale ============
[15:19:03] ================ drm_test_rect_calc_vscale ================
[15:19:03] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[15:19:03] [PASSED] out of max range
[15:19:03] [PASSED] out of min range
[15:19:03] [PASSED] zero dst
[15:19:03] [PASSED] negative src
[15:19:03] [PASSED] negative dst
[15:19:03] ============ [PASSED] drm_test_rect_calc_vscale ============
[15:19:03] ================== drm_test_rect_rotate ===================
[15:19:03] [PASSED] reflect-x
[15:19:03] [PASSED] reflect-y
[15:19:03] [PASSED] rotate-0
[15:19:03] [PASSED] rotate-90
[15:19:03] [PASSED] rotate-180
[15:19:03] [PASSED] rotate-270
[15:19:03] ============== [PASSED] drm_test_rect_rotate ===============
[15:19:03] ================ drm_test_rect_rotate_inv =================
[15:19:03] [PASSED] reflect-x
[15:19:03] [PASSED] reflect-y
[15:19:03] [PASSED] rotate-0
[15:19:03] [PASSED] rotate-90
[15:19:03] [PASSED] rotate-180
[15:19:03] [PASSED] rotate-270
[15:19:03] ============ [PASSED] drm_test_rect_rotate_inv =============
[15:19:03] ==================== [PASSED] drm_rect =====================
[15:19:03] ============ drm_sysfb_modeset_test (1 subtest) ============
[15:19:03] ============ drm_test_sysfb_build_fourcc_list =============
[15:19:03] [PASSED] no native formats
[15:19:03] [PASSED] XRGB8888 as native format
[15:19:03] [PASSED] remove duplicates
[15:19:03] [PASSED] convert alpha formats
[15:19:03] [PASSED] random formats
[15:19:03] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[15:19:03] ============= [PASSED] drm_sysfb_modeset_test ==============
[15:19:03] ================== drm_fixp (2 subtests) ===================
[15:19:03] [PASSED] drm_test_int2fixp
[15:19:03] [PASSED] drm_test_sm2fixp
[15:19:03] ==================== [PASSED] drm_fixp =====================
[15:19:03] ============================================================
[15:19:03] Testing complete. Ran 624 tests: passed: 624
[15:19:03] Elapsed time: 27.503s total, 1.695s configuring, 25.389s building, 0.376s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[15:19:03] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:19:05] 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
[15:19:14] Starting KUnit Kernel (1/1)...
[15:19:14] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:19:14] ================= ttm_device (5 subtests) ==================
[15:19:14] [PASSED] ttm_device_init_basic
[15:19:14] [PASSED] ttm_device_init_multiple
[15:19:14] [PASSED] ttm_device_fini_basic
[15:19:14] [PASSED] ttm_device_init_no_vma_man
[15:19:14] ================== ttm_device_init_pools ==================
[15:19:14] [PASSED] No DMA allocations, no DMA32 required
[15:19:14] [PASSED] DMA allocations, DMA32 required
[15:19:14] [PASSED] No DMA allocations, DMA32 required
[15:19:14] [PASSED] DMA allocations, no DMA32 required
[15:19:14] ============== [PASSED] ttm_device_init_pools ==============
[15:19:14] =================== [PASSED] ttm_device ====================
[15:19:14] ================== ttm_pool (8 subtests) ===================
[15:19:14] ================== ttm_pool_alloc_basic ===================
[15:19:14] [PASSED] One page
[15:19:14] [PASSED] More than one page
[15:19:14] [PASSED] Above the allocation limit
[15:19:14] [PASSED] One page, with coherent DMA mappings enabled
[15:19:14] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[15:19:14] ============== [PASSED] ttm_pool_alloc_basic ===============
[15:19:14] ============== ttm_pool_alloc_basic_dma_addr ==============
[15:19:14] [PASSED] One page
[15:19:14] [PASSED] More than one page
[15:19:14] [PASSED] Above the allocation limit
[15:19:14] [PASSED] One page, with coherent DMA mappings enabled
[15:19:14] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[15:19:14] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[15:19:14] [PASSED] ttm_pool_alloc_order_caching_match
[15:19:14] [PASSED] ttm_pool_alloc_caching_mismatch
[15:19:14] [PASSED] ttm_pool_alloc_order_mismatch
[15:19:14] [PASSED] ttm_pool_free_dma_alloc
[15:19:14] [PASSED] ttm_pool_free_no_dma_alloc
[15:19:14] [PASSED] ttm_pool_fini_basic
[15:19:14] ==================== [PASSED] ttm_pool =====================
[15:19:14] ================ ttm_resource (8 subtests) =================
[15:19:14] ================= ttm_resource_init_basic =================
[15:19:14] [PASSED] Init resource in TTM_PL_SYSTEM
[15:19:14] [PASSED] Init resource in TTM_PL_VRAM
[15:19:14] [PASSED] Init resource in a private placement
[15:19:14] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[15:19:14] ============= [PASSED] ttm_resource_init_basic =============
[15:19:14] [PASSED] ttm_resource_init_pinned
[15:19:14] [PASSED] ttm_resource_fini_basic
[15:19:14] [PASSED] ttm_resource_manager_init_basic
[15:19:14] [PASSED] ttm_resource_manager_usage_basic
[15:19:14] [PASSED] ttm_resource_manager_set_used_basic
[15:19:14] [PASSED] ttm_sys_man_alloc_basic
[15:19:14] [PASSED] ttm_sys_man_free_basic
[15:19:14] ================== [PASSED] ttm_resource ===================
[15:19:14] =================== ttm_tt (15 subtests) ===================
[15:19:14] ==================== ttm_tt_init_basic ====================
[15:19:14] [PASSED] Page-aligned size
[15:19:14] [PASSED] Extra pages requested
[15:19:14] ================ [PASSED] ttm_tt_init_basic ================
[15:19:14] [PASSED] ttm_tt_init_misaligned
[15:19:14] [PASSED] ttm_tt_fini_basic
[15:19:14] [PASSED] ttm_tt_fini_sg
[15:19:14] [PASSED] ttm_tt_fini_shmem
[15:19:14] [PASSED] ttm_tt_create_basic
[15:19:14] [PASSED] ttm_tt_create_invalid_bo_type
[15:19:14] [PASSED] ttm_tt_create_ttm_exists
[15:19:14] [PASSED] ttm_tt_create_failed
[15:19:14] [PASSED] ttm_tt_destroy_basic
[15:19:14] [PASSED] ttm_tt_populate_null_ttm
[15:19:14] [PASSED] ttm_tt_populate_populated_ttm
[15:19:14] [PASSED] ttm_tt_unpopulate_basic
[15:19:14] [PASSED] ttm_tt_unpopulate_empty_ttm
[15:19:14] [PASSED] ttm_tt_swapin_basic
[15:19:14] ===================== [PASSED] ttm_tt ======================
[15:19:14] =================== ttm_bo (14 subtests) ===================
[15:19:14] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[15:19:14] [PASSED] Cannot be interrupted and sleeps
[15:19:14] [PASSED] Cannot be interrupted, locks straight away
[15:19:14] [PASSED] Can be interrupted, sleeps
[15:19:14] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[15:19:14] [PASSED] ttm_bo_reserve_locked_no_sleep
[15:19:14] [PASSED] ttm_bo_reserve_no_wait_ticket
[15:19:14] [PASSED] ttm_bo_reserve_double_resv
[15:19:14] [PASSED] ttm_bo_reserve_interrupted
[15:19:14] [PASSED] ttm_bo_reserve_deadlock
[15:19:14] [PASSED] ttm_bo_unreserve_basic
[15:19:14] [PASSED] ttm_bo_unreserve_pinned
[15:19:14] [PASSED] ttm_bo_unreserve_bulk
[15:19:14] [PASSED] ttm_bo_fini_basic
[15:19:14] [PASSED] ttm_bo_fini_shared_resv
[15:19:14] [PASSED] ttm_bo_pin_basic
[15:19:14] [PASSED] ttm_bo_pin_unpin_resource
[15:19:14] [PASSED] ttm_bo_multiple_pin_one_unpin
[15:19:14] ===================== [PASSED] ttm_bo ======================
[15:19:14] ============== ttm_bo_validate (21 subtests) ===============
[15:19:14] ============== ttm_bo_init_reserved_sys_man ===============
[15:19:14] [PASSED] Buffer object for userspace
[15:19:14] [PASSED] Kernel buffer object
[15:19:14] [PASSED] Shared buffer object
[15:19:14] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[15:19:14] ============== ttm_bo_init_reserved_mock_man ==============
[15:19:14] [PASSED] Buffer object for userspace
[15:19:14] [PASSED] Kernel buffer object
[15:19:14] [PASSED] Shared buffer object
[15:19:14] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[15:19:14] [PASSED] ttm_bo_init_reserved_resv
[15:19:14] ================== ttm_bo_validate_basic ==================
[15:19:14] [PASSED] Buffer object for userspace
[15:19:14] [PASSED] Kernel buffer object
[15:19:14] [PASSED] Shared buffer object
[15:19:14] ============== [PASSED] ttm_bo_validate_basic ==============
[15:19:14] [PASSED] ttm_bo_validate_invalid_placement
[15:19:14] ============= ttm_bo_validate_same_placement ==============
[15:19:14] [PASSED] System manager
[15:19:14] [PASSED] VRAM manager
[15:19:14] ========= [PASSED] ttm_bo_validate_same_placement ==========
[15:19:14] [PASSED] ttm_bo_validate_failed_alloc
[15:19:14] [PASSED] ttm_bo_validate_pinned
[15:19:14] [PASSED] ttm_bo_validate_busy_placement
[15:19:14] ================ ttm_bo_validate_multihop =================
[15:19:14] [PASSED] Buffer object for userspace
[15:19:14] [PASSED] Kernel buffer object
[15:19:14] [PASSED] Shared buffer object
[15:19:14] ============ [PASSED] ttm_bo_validate_multihop =============
[15:19:14] ========== ttm_bo_validate_no_placement_signaled ==========
[15:19:14] [PASSED] Buffer object in system domain, no page vector
[15:19:14] [PASSED] Buffer object in system domain with an existing page vector
[15:19:14] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[15:19:14] ======== ttm_bo_validate_no_placement_not_signaled ========
[15:19:14] [PASSED] Buffer object for userspace
[15:19:14] [PASSED] Kernel buffer object
[15:19:14] [PASSED] Shared buffer object
[15:19:14] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[15:19:14] [PASSED] ttm_bo_validate_move_fence_signaled
[15:19:14] ========= ttm_bo_validate_move_fence_not_signaled =========
[15:19:14] [PASSED] Waits for GPU
[15:19:14] [PASSED] Tries to lock straight away
[15:19:14] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[15:19:14] [PASSED] ttm_bo_validate_happy_evict
[15:19:14] [PASSED] ttm_bo_validate_all_pinned_evict
[15:19:14] [PASSED] ttm_bo_validate_allowed_only_evict
[15:19:14] [PASSED] ttm_bo_validate_deleted_evict
[15:19:14] [PASSED] ttm_bo_validate_busy_domain_evict
[15:19:14] [PASSED] ttm_bo_validate_evict_gutting
[15:19:14] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[15:19:14] ================= [PASSED] ttm_bo_validate =================
[15:19:14] ============================================================
[15:19:14] Testing complete. Ran 101 tests: passed: 101
[15:19:15] Elapsed time: 11.475s total, 1.677s configuring, 9.582s building, 0.181s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH 1/5] drm/xe/mert: Normalize xe_mert.h include guards
2026-01-09 15:12 ` [PATCH 1/5] drm/xe/mert: Normalize xe_mert.h include guards Michal Wajdeczko
@ 2026-01-09 15:59 ` Laguna, Lukasz
0 siblings, 0 replies; 19+ messages in thread
From: Laguna, Lukasz @ 2026-01-09 15:59 UTC (permalink / raw)
To: Michal Wajdeczko, intel-xe
On 1/9/2026 16:12, Michal Wajdeczko wrote:
> Most of our header files are using include guard names with single
> underscore and we don't use trailing comments on final #endif.
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Reviewed-by: Lukasz Laguna <lukasz.laguna@intel.com>
> ---
> drivers/gpu/drm/xe/xe_mert.h | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_mert.h b/drivers/gpu/drm/xe/xe_mert.h
> index 2e14c5dec008..0de8243e46bd 100644
> --- a/drivers/gpu/drm/xe/xe_mert.h
> +++ b/drivers/gpu/drm/xe/xe_mert.h
> @@ -3,8 +3,8 @@
> * Copyright(c) 2025, Intel Corporation. All rights reserved.
> */
>
> -#ifndef __XE_MERT_H__
> -#define __XE_MERT_H__
> +#ifndef _XE_MERT_H_
> +#define _XE_MERT_H_
>
> #include <linux/completion.h>
> #include <linux/spinlock.h>
> @@ -29,4 +29,4 @@ void xe_mert_irq_handler(struct xe_device *xe, u32 master_ctl);
> static inline void xe_mert_irq_handler(struct xe_device *xe, u32 master_ctl) { }
> #endif
>
> -#endif /* __XE_MERT_H__ */
> +#endif
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH 2/5] drm/xe/mert: Fix kernel-doc for struct xe_mert
2026-01-09 15:12 ` [PATCH 2/5] drm/xe/mert: Fix kernel-doc for struct xe_mert Michal Wajdeczko
@ 2026-01-09 16:00 ` Laguna, Lukasz
0 siblings, 0 replies; 19+ messages in thread
From: Laguna, Lukasz @ 2026-01-09 16:00 UTC (permalink / raw)
To: Michal Wajdeczko, intel-xe
On 1/9/2026 16:12, Michal Wajdeczko wrote:
> Add simple top level kernel-doc for the struct itself to allow the
> script recognize that and fix tag of the one member.
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Reviewed-by: Lukasz Laguna <lukasz.laguna@intel.com>
> ---
> drivers/gpu/drm/xe/xe_mert.h | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_mert.h b/drivers/gpu/drm/xe/xe_mert.h
> index 0de8243e46bd..0e27f9fa24bb 100644
> --- a/drivers/gpu/drm/xe/xe_mert.h
> +++ b/drivers/gpu/drm/xe/xe_mert.h
> @@ -13,12 +13,15 @@
> struct xe_device;
> struct xe_tile;
>
> +/**
> + * struct xe_mert - MERT related data
> + */
> struct xe_mert {
> /** @lock: protects the TLB invalidation status */
> spinlock_t lock;
> /** @tlb_inv_triggered: indicates if TLB invalidation was triggered */
> bool tlb_inv_triggered;
> - /** @mert.tlb_inv_done: completion of TLB invalidation */
> + /** @tlb_inv_done: completion of TLB invalidation */
> struct completion tlb_inv_done;
> };
>
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe/mert: Minor improvements to MERT code
2026-01-09 15:12 [PATCH 0/5] drm/xe/mert: Minor improvements to MERT code Michal Wajdeczko
` (5 preceding siblings ...)
2026-01-09 15:19 ` ✓ CI.KUnit: success for drm/xe/mert: Minor improvements to MERT code Patchwork
@ 2026-01-09 16:01 ` Patchwork
2026-01-09 16:49 ` [PATCH 0/5] " Laguna, Lukasz
` (4 subsequent siblings)
11 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-01-09 16:01 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 2278 bytes --]
== Series Details ==
Series: drm/xe/mert: Minor improvements to MERT code
URL : https://patchwork.freedesktop.org/series/159880/
State : success
== Summary ==
CI Bug Log - changes from xe-4357-6e61fdbd134b4b3157ecee3a34141c24f41a057a_BAT -> xe-pw-159880v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 11)
------------------------------
Missing (1): bat-bmg-3
Known issues
------------
Here are the changes found in xe-pw-159880v1_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_waitfence@reltime:
- bat-dg2-oem2: [PASS][1] -> [FAIL][2] ([Intel XE#6520])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4357-6e61fdbd134b4b3157ecee3a34141c24f41a057a/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/bat-dg2-oem2/igt@xe_waitfence@reltime.html
#### Possible fixes ####
* igt@xe_waitfence@abstime:
- bat-dg2-oem2: [TIMEOUT][3] ([Intel XE#6506]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4357-6e61fdbd134b4b3157ecee3a34141c24f41a057a/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/bat-dg2-oem2/igt@xe_waitfence@abstime.html
* igt@xe_waitfence@engine:
- bat-dg2-oem2: [FAIL][5] ([Intel XE#6519]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4357-6e61fdbd134b4b3157ecee3a34141c24f41a057a/bat-dg2-oem2/igt@xe_waitfence@engine.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/bat-dg2-oem2/igt@xe_waitfence@engine.html
[Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506
[Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519
[Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
Build changes
-------------
* Linux: xe-4357-6e61fdbd134b4b3157ecee3a34141c24f41a057a -> xe-pw-159880v1
IGT_8693: 8693
xe-4357-6e61fdbd134b4b3157ecee3a34141c24f41a057a: 6e61fdbd134b4b3157ecee3a34141c24f41a057a
xe-pw-159880v1: 159880v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/index.html
[-- Attachment #2: Type: text/html, Size: 2899 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH 4/5] drm/xe/mert: Use local mert variable to simplify the code
2026-01-09 15:12 ` [PATCH 4/5] drm/xe/mert: Use local mert variable to simplify the code Michal Wajdeczko
@ 2026-01-09 16:21 ` Laguna, Lukasz
0 siblings, 0 replies; 19+ messages in thread
From: Laguna, Lukasz @ 2026-01-09 16:21 UTC (permalink / raw)
To: Michal Wajdeczko, intel-xe
On 1/9/2026 16:12, Michal Wajdeczko wrote:
> There is no need to always refer to MERT data using tile pointer.
> Use of local mert pointer will simplify the code and make it look
> like other existing MERT function.
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Reviewed-by: Lukasz Laguna <lukasz.laguna@intel.com>
> ---
> drivers/gpu/drm/xe/xe_mert.c | 11 ++++++-----
> 1 file changed, 6 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_mert.c b/drivers/gpu/drm/xe/xe_mert.c
> index 5aea6f082bc0..d139663c45ce 100644
> --- a/drivers/gpu/drm/xe/xe_mert.c
> +++ b/drivers/gpu/drm/xe/xe_mert.c
> @@ -53,6 +53,7 @@ int xe_mert_invalidate_lmtt(struct xe_device *xe)
> void xe_mert_irq_handler(struct xe_device *xe, u32 master_ctl)
> {
> struct xe_tile *tile = xe_device_get_root_tile(xe);
> + struct xe_mert *mert = &tile->mert;
> unsigned long flags;
> u32 reg_val;
> u8 err;
> @@ -70,13 +71,13 @@ void xe_mert_irq_handler(struct xe_device *xe, u32 master_ctl)
> else if (err)
> drm_dbg(&xe->drm, "MERT catastrophic error: Unexpected fault (0x%x)\n", err);
>
> - spin_lock_irqsave(&tile->mert.lock, flags);
> - if (tile->mert.tlb_inv_triggered) {
> + spin_lock_irqsave(&mert->lock, flags);
> + if (mert->tlb_inv_triggered) {
> reg_val = xe_mmio_read32(&tile->mmio, MERT_TLB_INV_DESC_A);
> if (!(reg_val & MERT_TLB_INV_DESC_A_VALID)) {
> - tile->mert.tlb_inv_triggered = false;
> - complete_all(&tile->mert.tlb_inv_done);
> + mert->tlb_inv_triggered = false;
> + complete_all(&mert->tlb_inv_done);
> }
> }
> - spin_unlock_irqrestore(&tile->mert.lock, flags);
> + spin_unlock_irqrestore(&mert->lock, flags);
> }
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH 0/5] drm/xe/mert: Minor improvements to MERT code
2026-01-09 15:12 [PATCH 0/5] drm/xe/mert: Minor improvements to MERT code Michal Wajdeczko
` (6 preceding siblings ...)
2026-01-09 16:01 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-01-09 16:49 ` Laguna, Lukasz
2026-01-09 20:02 ` ✓ Xe.CI.Full: success for " Patchwork
` (3 subsequent siblings)
11 siblings, 0 replies; 19+ messages in thread
From: Laguna, Lukasz @ 2026-01-09 16:49 UTC (permalink / raw)
To: Michal Wajdeczko, intel-xe
As you are making MERT code improvements, could you consider changing
the log level of the message below on the occasion?
drm_dbg(&xe->drm, "MERT catastrophic error: Unexpected fault
(0x%x)\n", err);
This error is not expected and may indicate a hardware issue, so it
seems to be more appropriate to log it as a warning or error rather than
using dbg.
Thanks,
Lukasz
On 1/9/2026 16:12, Michal Wajdeczko wrote:
> Cc: Lukasz Laguna <lukasz.laguna@intel.com>
>
> Michal Wajdeczko (5):
> drm/xe/mert: Normalize xe_mert.h include guards
> drm/xe/mert: Fix kernel-doc for struct xe_mert
> drm/xe/mert: Always refer to MERT using xe_device
> drm/xe/mert: Use local mert variable to simplify the code
> drm/xe/mert: Move MERT initialization to xe_mert.c
>
> drivers/gpu/drm/xe/xe_lmtt.c | 2 +-
> drivers/gpu/drm/xe/xe_mert.c | 32 +++++++++++++++++++++++---------
> drivers/gpu/drm/xe/xe_mert.h | 15 +++++++++------
> drivers/gpu/drm/xe/xe_sriov_pf.c | 4 +---
> 4 files changed, 34 insertions(+), 19 deletions(-)
>
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH 3/5] drm/xe/mert: Always refer to MERT using xe_device
2026-01-09 15:12 ` [PATCH 3/5] drm/xe/mert: Always refer to MERT using xe_device Michal Wajdeczko
@ 2026-01-09 17:04 ` Laguna, Lukasz
2026-01-11 21:38 ` [PATCH v2 " Michal Wajdeczko
1 sibling, 0 replies; 19+ messages in thread
From: Laguna, Lukasz @ 2026-01-09 17:04 UTC (permalink / raw)
To: Michal Wajdeczko, intel-xe
On 1/9/2026 16:12, Michal Wajdeczko wrote:
> There is only one MERT instance and while it is located on the root
> tile, it is safer to refer to it using xe_device rather than xe_tile.
> This will also allow to align signature with other MERT function.
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Lukasz Laguna <lukasz.laguna@intel.com>
> ---
> drivers/gpu/drm/xe/xe_lmtt.c | 2 +-
> drivers/gpu/drm/xe/xe_mert.c | 8 ++++----
> drivers/gpu/drm/xe/xe_mert.h | 3 +--
> 3 files changed, 6 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_lmtt.c b/drivers/gpu/drm/xe/xe_lmtt.c
> index 3059ea6525bc..2077e1ef8b43 100644
> --- a/drivers/gpu/drm/xe/xe_lmtt.c
> +++ b/drivers/gpu/drm/xe/xe_lmtt.c
> @@ -289,7 +289,7 @@ void xe_lmtt_invalidate_hw(struct xe_lmtt *lmtt)
> ERR_PTR(err));
>
> if (xe_device_has_mert(xe) && xe_tile_is_root(tile)) {
> - err = xe_mert_invalidate_lmtt(tile);
> + err = xe_mert_invalidate_lmtt(xe);
> if (err)
> xe_tile_sriov_err(tile, "MERT LMTT invalidation failed (%pe)",
> ERR_PTR(err));
> diff --git a/drivers/gpu/drm/xe/xe_mert.c b/drivers/gpu/drm/xe/xe_mert.c
> index f7689e922953..5aea6f082bc0 100644
> --- a/drivers/gpu/drm/xe/xe_mert.c
> +++ b/drivers/gpu/drm/xe/xe_mert.c
> @@ -12,16 +12,16 @@
> #include "xe_tile.h"
>
> /**
> - * xe_mert_invalidate_lmtt - Invalidate MERT LMTT
> - * @tile: the &xe_tile
> + * xe_mert_invalidate_lmtt() - Invalidate MERT LMTT
> + * @xe: the &xe_device with MERT
> *
> * Trigger invalidation of the MERT LMTT and wait for completion.
> *
> * Return: 0 on success or -ETIMEDOUT in case of a timeout.
> */
> -int xe_mert_invalidate_lmtt(struct xe_tile *tile)
> +int xe_mert_invalidate_lmtt(struct xe_device *xe)
> {
> - struct xe_device *xe = tile_to_xe(tile);
> + struct xe_tile *tile = xe_device_get_root_tile(xe);
As tile is always the root tile now, the xe_tile_is_root() assertion
doesn't seem to be needed anymore.
But you can remove it before merge:
Reviewed-by: Lukasz Laguna <lukasz.laguna@intel.com>
> struct xe_mert *mert = &tile->mert;
> const long timeout = HZ / 4;
> unsigned long flags;
> diff --git a/drivers/gpu/drm/xe/xe_mert.h b/drivers/gpu/drm/xe/xe_mert.h
> index 0e27f9fa24bb..44daeca094bd 100644
> --- a/drivers/gpu/drm/xe/xe_mert.h
> +++ b/drivers/gpu/drm/xe/xe_mert.h
> @@ -11,7 +11,6 @@
> #include <linux/types.h>
>
> struct xe_device;
> -struct xe_tile;
>
> /**
> * struct xe_mert - MERT related data
> @@ -26,7 +25,7 @@ struct xe_mert {
> };
>
> #ifdef CONFIG_PCI_IOV
> -int xe_mert_invalidate_lmtt(struct xe_tile *tile);
> +int xe_mert_invalidate_lmtt(struct xe_device *xe);
> void xe_mert_irq_handler(struct xe_device *xe, u32 master_ctl);
> #else
> static inline void xe_mert_irq_handler(struct xe_device *xe, u32 master_ctl) { }
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH 5/5] drm/xe/mert: Move MERT initialization to xe_mert.c
2026-01-09 15:12 ` [PATCH 5/5] drm/xe/mert: Move MERT initialization to xe_mert.c Michal Wajdeczko
@ 2026-01-09 17:07 ` Laguna, Lukasz
0 siblings, 0 replies; 19+ messages in thread
From: Laguna, Lukasz @ 2026-01-09 17:07 UTC (permalink / raw)
To: Michal Wajdeczko, intel-xe
On 1/9/2026 16:12, Michal Wajdeczko wrote:
> Most of the MERT code is already in dedicated file, no reason to
> keep internal MERT data structure initialization elsewhere.
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Reviewed-by: Lukasz Laguna <lukasz.laguna@intel.com>
> ---
> drivers/gpu/drm/xe/xe_mert.c | 13 +++++++++++++
> drivers/gpu/drm/xe/xe_mert.h | 1 +
> drivers/gpu/drm/xe/xe_sriov_pf.c | 4 +---
> 3 files changed, 15 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_mert.c b/drivers/gpu/drm/xe/xe_mert.c
> index d139663c45ce..8ad6aa7f4e24 100644
> --- a/drivers/gpu/drm/xe/xe_mert.c
> +++ b/drivers/gpu/drm/xe/xe_mert.c
> @@ -11,6 +11,19 @@
> #include "xe_mmio.h"
> #include "xe_tile.h"
>
> +/**
> + * xe_mert_init_early() - Initialize MERT data
> + * @xe: the &xe_device with MERT to init
> + */
> +void xe_mert_init_early(struct xe_device *xe)
> +{
> + struct xe_tile *tile = xe_device_get_root_tile(xe);
> + struct xe_mert *mert = &tile->mert;
> +
> + spin_lock_init(&mert->lock);
> + init_completion(&mert->tlb_inv_done);
> +}
> +
> /**
> * xe_mert_invalidate_lmtt() - Invalidate MERT LMTT
> * @xe: the &xe_device with MERT
> diff --git a/drivers/gpu/drm/xe/xe_mert.h b/drivers/gpu/drm/xe/xe_mert.h
> index 44daeca094bd..fc977203692d 100644
> --- a/drivers/gpu/drm/xe/xe_mert.h
> +++ b/drivers/gpu/drm/xe/xe_mert.h
> @@ -25,6 +25,7 @@ struct xe_mert {
> };
>
> #ifdef CONFIG_PCI_IOV
> +void xe_mert_init_early(struct xe_device *xe);
> int xe_mert_invalidate_lmtt(struct xe_device *xe);
> void xe_mert_irq_handler(struct xe_device *xe, u32 master_ctl);
> #else
> diff --git a/drivers/gpu/drm/xe/xe_sriov_pf.c b/drivers/gpu/drm/xe/xe_sriov_pf.c
> index 72423bb17e6f..6ce3c58e003c 100644
> --- a/drivers/gpu/drm/xe/xe_sriov_pf.c
> +++ b/drivers/gpu/drm/xe/xe_sriov_pf.c
> @@ -90,7 +90,6 @@ bool xe_sriov_pf_readiness(struct xe_device *xe)
> */
> int xe_sriov_pf_init_early(struct xe_device *xe)
> {
> - struct xe_mert *mert = &xe_device_get_root_tile(xe)->mert;
> int err;
>
> xe_assert(xe, IS_SRIOV_PF(xe));
> @@ -112,8 +111,7 @@ int xe_sriov_pf_init_early(struct xe_device *xe)
>
> xe_sriov_pf_service_init(xe);
>
> - spin_lock_init(&mert->lock);
> - init_completion(&mert->tlb_inv_done);
> + xe_mert_init_early(xe);
>
> return 0;
> }
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ Xe.CI.Full: success for drm/xe/mert: Minor improvements to MERT code
2026-01-09 15:12 [PATCH 0/5] drm/xe/mert: Minor improvements to MERT code Michal Wajdeczko
` (7 preceding siblings ...)
2026-01-09 16:49 ` [PATCH 0/5] " Laguna, Lukasz
@ 2026-01-09 20:02 ` Patchwork
2026-01-11 21:50 ` ✓ CI.KUnit: success for drm/xe/mert: Minor improvements to MERT code (rev2) Patchwork
` (2 subsequent siblings)
11 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-01-09 20:02 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 19462 bytes --]
== Series Details ==
Series: drm/xe/mert: Minor improvements to MERT code
URL : https://patchwork.freedesktop.org/series/159880/
State : success
== Summary ==
CI Bug Log - changes from xe-4357-6e61fdbd134b4b3157ecee3a34141c24f41a057a_FULL -> xe-pw-159880v1_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-159880v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: NOTRUN -> [FAIL][1] ([Intel XE#3718] / [Intel XE#6078]) +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@async-flip-with-page-flip-events-linear:
- shard-lnl: [PASS][2] -> [FAIL][3] ([Intel XE#5993]) +3 other tests fail
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4357-6e61fdbd134b4b3157ecee3a34141c24f41a057a/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#1124]) +5 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#367])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-1/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#3432]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2887]) +6 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#2887])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-lnl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2252]) +3 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#373])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-lnl-3/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#6507])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-1/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2341])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-1/igt@kms_content_protection@content-type-change.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2320]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-1/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#4354])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-lnl-3/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [PASS][15] -> [FAIL][16] ([Intel XE#301] / [Intel XE#3149])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4357-6e61fdbd134b4b3157ecee3a34141c24f41a057a/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2293]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2311]) +15 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#656]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-shrfb-scaledprimary:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#651]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#4141]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2313]) +15 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1131])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-lnl-3/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#1406] / [Intel XE#2387])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-1/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@psr-basic:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +7 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-10/igt@kms_psr@psr-basic.html
* igt@kms_sharpness_filter@invalid-filter-with-scaler:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#6503]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-1/igt@kms_sharpness_filter@invalid-filter-with-scaler.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2168])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-10/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#1499])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-1/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [PASS][31] -> [FAIL][32] ([Intel XE#2142]) +1 other test fail
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4357-6e61fdbd134b4b3157ecee3a34141c24f41a057a/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-lnl-4/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_eudebug@basic-exec-queues-enable:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#4837])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-lnl-3/igt@xe_eudebug@basic-exec-queues-enable.html
* igt@xe_eudebug@vm-bind-clear:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#4837]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-1/igt@xe_eudebug@vm-bind-clear.html
* igt@xe_eudebug_online@breakpoint-not-in-debug-mode:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-1/igt@xe_eudebug_online@breakpoint-not-in-debug-mode.html
* igt@xe_evict@evict-cm-threads-large:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#688])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-lnl-3/igt@xe_evict@evict-cm-threads-large.html
* igt@xe_exec_basic@multigpu-no-exec-rebind:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2322]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-rebind.html
* igt@xe_exec_basic@multigpu-once-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1392])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-lnl-3/igt@xe_exec_basic@multigpu-once-userptr-invalidate-race.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-priority-smem:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#6874]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-lnl-3/igt@xe_exec_multi_queue@many-execs-preempt-mode-priority-smem.html
* igt@xe_exec_multi_queue@two-queues-basic-smem:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#6874]) +11 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-1/igt@xe_exec_multi_queue@two-queues-basic-smem.html
* igt@xe_exec_system_allocator@madvise-no-range-invalidate-same-attr:
- shard-lnl: NOTRUN -> [WARN][41] ([Intel XE#5786])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-lnl-3/igt@xe_exec_system_allocator@madvise-no-range-invalidate-same-attr.html
* igt@xe_exec_system_allocator@many-execqueues-mmap-free-huge:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#4943]) +13 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-10/igt@xe_exec_system_allocator@many-execqueues-mmap-free-huge.html
* igt@xe_media_fill@media-fill:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2459] / [Intel XE#2596])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-1/igt@xe_media_fill@media-fill.html
* igt@xe_multigpu_svm@mgpu-pagefault-basic:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#6964]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-1/igt@xe_multigpu_svm@mgpu-pagefault-basic.html
* igt@xe_pxp@pxp-stale-queue-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#4733]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-1/igt@xe_pxp@pxp-stale-queue-post-suspend.html
#### Possible fixes ####
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][46] ([Intel XE#4633]) -> [PASS][47]
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4357-6e61fdbd134b4b3157ecee3a34141c24f41a057a/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
- shard-lnl: [FAIL][48] ([Intel XE#301]) -> [PASS][49]
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4357-6e61fdbd134b4b3157ecee3a34141c24f41a057a/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
* igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-2:
- shard-bmg: [ABORT][50] ([Intel XE#6740]) -> [PASS][51] +1 other test pass
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4357-6e61fdbd134b4b3157ecee3a34141c24f41a057a/shard-bmg-1/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-2.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-10/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-2.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][52] ([Intel XE#4459]) -> [PASS][53] +1 other test pass
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4357-6e61fdbd134b4b3157ecee3a34141c24f41a057a/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_exec_system_allocator@many-stride-malloc-prefetch:
- shard-bmg: [WARN][54] ([Intel XE#5786]) -> [PASS][55]
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4357-6e61fdbd134b4b3157ecee3a34141c24f41a057a/shard-bmg-2/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-bmg-2/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
- shard-lnl: [FAIL][56] ([Intel XE#5625]) -> [PASS][57]
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4357-6e61fdbd134b4b3157ecee3a34141c24f41a057a/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
#### Warnings ####
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][58] ([Intel XE#301]) -> [FAIL][59] ([Intel XE#301] / [Intel XE#3149])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4357-6e61fdbd134b4b3157ecee3a34141c24f41a057a/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[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#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[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#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
[Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
Build changes
-------------
* Linux: xe-4357-6e61fdbd134b4b3157ecee3a34141c24f41a057a -> xe-pw-159880v1
IGT_8693: 8693
xe-4357-6e61fdbd134b4b3157ecee3a34141c24f41a057a: 6e61fdbd134b4b3157ecee3a34141c24f41a057a
xe-pw-159880v1: 159880v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v1/index.html
[-- Attachment #2: Type: text/html, Size: 21938 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v2 3/5] drm/xe/mert: Always refer to MERT using xe_device
2026-01-09 15:12 ` [PATCH 3/5] drm/xe/mert: Always refer to MERT using xe_device Michal Wajdeczko
2026-01-09 17:04 ` Laguna, Lukasz
@ 2026-01-11 21:38 ` Michal Wajdeczko
1 sibling, 0 replies; 19+ messages in thread
From: Michal Wajdeczko @ 2026-01-11 21:38 UTC (permalink / raw)
To: intel-xe
There is only one MERT instance and while it is located on the root
tile, it is safer to refer to it using xe_device rather than xe_tile.
This will also allow to align signature with other MERT function.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Reviewed-by: Lukasz Laguna <lukasz.laguna@intel.com>
---
v2: drop redundant assert (Lukasz)
---
drivers/gpu/drm/xe/xe_lmtt.c | 2 +-
drivers/gpu/drm/xe/xe_mert.c | 9 ++++-----
drivers/gpu/drm/xe/xe_mert.h | 3 +--
3 files changed, 6 insertions(+), 8 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_lmtt.c b/drivers/gpu/drm/xe/xe_lmtt.c
index 3059ea6525bc..2077e1ef8b43 100644
--- a/drivers/gpu/drm/xe/xe_lmtt.c
+++ b/drivers/gpu/drm/xe/xe_lmtt.c
@@ -289,7 +289,7 @@ void xe_lmtt_invalidate_hw(struct xe_lmtt *lmtt)
ERR_PTR(err));
if (xe_device_has_mert(xe) && xe_tile_is_root(tile)) {
- err = xe_mert_invalidate_lmtt(tile);
+ err = xe_mert_invalidate_lmtt(xe);
if (err)
xe_tile_sriov_err(tile, "MERT LMTT invalidation failed (%pe)",
ERR_PTR(err));
diff --git a/drivers/gpu/drm/xe/xe_mert.c b/drivers/gpu/drm/xe/xe_mert.c
index f7689e922953..598b039dfe25 100644
--- a/drivers/gpu/drm/xe/xe_mert.c
+++ b/drivers/gpu/drm/xe/xe_mert.c
@@ -12,22 +12,21 @@
#include "xe_tile.h"
/**
- * xe_mert_invalidate_lmtt - Invalidate MERT LMTT
- * @tile: the &xe_tile
+ * xe_mert_invalidate_lmtt() - Invalidate MERT LMTT
+ * @xe: the &xe_device with MERT
*
* Trigger invalidation of the MERT LMTT and wait for completion.
*
* Return: 0 on success or -ETIMEDOUT in case of a timeout.
*/
-int xe_mert_invalidate_lmtt(struct xe_tile *tile)
+int xe_mert_invalidate_lmtt(struct xe_device *xe)
{
- struct xe_device *xe = tile_to_xe(tile);
+ struct xe_tile *tile = xe_device_get_root_tile(xe);
struct xe_mert *mert = &tile->mert;
const long timeout = HZ / 4;
unsigned long flags;
xe_assert(xe, xe_device_has_mert(xe));
- xe_assert(xe, xe_tile_is_root(tile));
spin_lock_irqsave(&mert->lock, flags);
if (!mert->tlb_inv_triggered) {
diff --git a/drivers/gpu/drm/xe/xe_mert.h b/drivers/gpu/drm/xe/xe_mert.h
index 0e27f9fa24bb..44daeca094bd 100644
--- a/drivers/gpu/drm/xe/xe_mert.h
+++ b/drivers/gpu/drm/xe/xe_mert.h
@@ -11,7 +11,6 @@
#include <linux/types.h>
struct xe_device;
-struct xe_tile;
/**
* struct xe_mert - MERT related data
@@ -26,7 +25,7 @@ struct xe_mert {
};
#ifdef CONFIG_PCI_IOV
-int xe_mert_invalidate_lmtt(struct xe_tile *tile);
+int xe_mert_invalidate_lmtt(struct xe_device *xe);
void xe_mert_irq_handler(struct xe_device *xe, u32 master_ctl);
#else
static inline void xe_mert_irq_handler(struct xe_device *xe, u32 master_ctl) { }
--
2.47.1
^ permalink raw reply related [flat|nested] 19+ messages in thread
* ✓ CI.KUnit: success for drm/xe/mert: Minor improvements to MERT code (rev2)
2026-01-09 15:12 [PATCH 0/5] drm/xe/mert: Minor improvements to MERT code Michal Wajdeczko
` (8 preceding siblings ...)
2026-01-09 20:02 ` ✓ Xe.CI.Full: success for " Patchwork
@ 2026-01-11 21:50 ` Patchwork
2026-01-11 22:25 ` ✓ Xe.CI.BAT: " Patchwork
2026-01-11 23:18 ` ✗ Xe.CI.Full: failure " Patchwork
11 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-01-11 21:50 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: drm/xe/mert: Minor improvements to MERT code (rev2)
URL : https://patchwork.freedesktop.org/series/159880/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[21:49:18] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:49:22] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[21:49:54] Starting KUnit Kernel (1/1)...
[21:49:54] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:49:54] ================== guc_buf (11 subtests) ===================
[21:49:54] [PASSED] test_smallest
[21:49:54] [PASSED] test_largest
[21:49:54] [PASSED] test_granular
[21:49:54] [PASSED] test_unique
[21:49:54] [PASSED] test_overlap
[21:49:54] [PASSED] test_reusable
[21:49:54] [PASSED] test_too_big
[21:49:54] [PASSED] test_flush
[21:49:54] [PASSED] test_lookup
[21:49:54] [PASSED] test_data
[21:49:54] [PASSED] test_class
[21:49:54] ===================== [PASSED] guc_buf =====================
[21:49:54] =================== guc_dbm (7 subtests) ===================
[21:49:54] [PASSED] test_empty
[21:49:54] [PASSED] test_default
[21:49:54] ======================== test_size ========================
[21:49:54] [PASSED] 4
[21:49:54] [PASSED] 8
[21:49:54] [PASSED] 32
[21:49:54] [PASSED] 256
[21:49:54] ==================== [PASSED] test_size ====================
[21:49:54] ======================= test_reuse ========================
[21:49:54] [PASSED] 4
[21:49:54] [PASSED] 8
[21:49:54] [PASSED] 32
[21:49:54] [PASSED] 256
[21:49:54] =================== [PASSED] test_reuse ====================
[21:49:54] =================== test_range_overlap ====================
[21:49:54] [PASSED] 4
[21:49:54] [PASSED] 8
[21:49:54] [PASSED] 32
[21:49:54] [PASSED] 256
[21:49:54] =============== [PASSED] test_range_overlap ================
[21:49:54] =================== test_range_compact ====================
[21:49:54] [PASSED] 4
[21:49:54] [PASSED] 8
[21:49:54] [PASSED] 32
[21:49:54] [PASSED] 256
[21:49:54] =============== [PASSED] test_range_compact ================
[21:49:54] ==================== test_range_spare =====================
[21:49:54] [PASSED] 4
[21:49:54] [PASSED] 8
[21:49:54] [PASSED] 32
[21:49:54] [PASSED] 256
[21:49:54] ================ [PASSED] test_range_spare =================
[21:49:54] ===================== [PASSED] guc_dbm =====================
[21:49:54] =================== guc_idm (6 subtests) ===================
[21:49:54] [PASSED] bad_init
[21:49:54] [PASSED] no_init
[21:49:54] [PASSED] init_fini
[21:49:54] [PASSED] check_used
[21:49:54] [PASSED] check_quota
[21:49:54] [PASSED] check_all
[21:49:54] ===================== [PASSED] guc_idm =====================
[21:49:54] ================== no_relay (3 subtests) ===================
[21:49:54] [PASSED] xe_drops_guc2pf_if_not_ready
[21:49:54] [PASSED] xe_drops_guc2vf_if_not_ready
[21:49:54] [PASSED] xe_rejects_send_if_not_ready
[21:49:54] ==================== [PASSED] no_relay =====================
[21:49:54] ================== pf_relay (14 subtests) ==================
[21:49:54] [PASSED] pf_rejects_guc2pf_too_short
[21:49:54] [PASSED] pf_rejects_guc2pf_too_long
[21:49:54] [PASSED] pf_rejects_guc2pf_no_payload
[21:49:54] [PASSED] pf_fails_no_payload
[21:49:54] [PASSED] pf_fails_bad_origin
[21:49:54] [PASSED] pf_fails_bad_type
[21:49:54] [PASSED] pf_txn_reports_error
[21:49:54] [PASSED] pf_txn_sends_pf2guc
[21:49:54] [PASSED] pf_sends_pf2guc
[21:49:54] [SKIPPED] pf_loopback_nop
[21:49:54] [SKIPPED] pf_loopback_echo
[21:49:54] [SKIPPED] pf_loopback_fail
[21:49:54] [SKIPPED] pf_loopback_busy
[21:49:54] [SKIPPED] pf_loopback_retry
[21:49:54] ==================== [PASSED] pf_relay =====================
[21:49:54] ================== vf_relay (3 subtests) ===================
[21:49:54] [PASSED] vf_rejects_guc2vf_too_short
[21:49:54] [PASSED] vf_rejects_guc2vf_too_long
[21:49:54] [PASSED] vf_rejects_guc2vf_no_payload
[21:49:54] ==================== [PASSED] vf_relay =====================
[21:49:54] ================ pf_gt_config (6 subtests) =================
[21:49:54] [PASSED] fair_contexts_1vf
[21:49:54] [PASSED] fair_doorbells_1vf
[21:49:54] [PASSED] fair_ggtt_1vf
[21:49:54] ====================== fair_contexts ======================
[21:49:54] [PASSED] 1 VF
[21:49:54] [PASSED] 2 VFs
[21:49:54] [PASSED] 3 VFs
[21:49:54] [PASSED] 4 VFs
[21:49:54] [PASSED] 5 VFs
[21:49:54] [PASSED] 6 VFs
[21:49:54] [PASSED] 7 VFs
[21:49:54] [PASSED] 8 VFs
[21:49:54] [PASSED] 9 VFs
[21:49:54] [PASSED] 10 VFs
[21:49:54] [PASSED] 11 VFs
[21:49:54] [PASSED] 12 VFs
[21:49:54] [PASSED] 13 VFs
[21:49:54] [PASSED] 14 VFs
[21:49:54] [PASSED] 15 VFs
[21:49:54] [PASSED] 16 VFs
[21:49:54] [PASSED] 17 VFs
[21:49:54] [PASSED] 18 VFs
[21:49:54] [PASSED] 19 VFs
[21:49:54] [PASSED] 20 VFs
[21:49:54] [PASSED] 21 VFs
[21:49:54] [PASSED] 22 VFs
[21:49:54] [PASSED] 23 VFs
[21:49:54] [PASSED] 24 VFs
[21:49:54] [PASSED] 25 VFs
[21:49:54] [PASSED] 26 VFs
[21:49:54] [PASSED] 27 VFs
[21:49:54] [PASSED] 28 VFs
[21:49:54] [PASSED] 29 VFs
[21:49:54] [PASSED] 30 VFs
[21:49:54] [PASSED] 31 VFs
[21:49:54] [PASSED] 32 VFs
[21:49:54] [PASSED] 33 VFs
[21:49:54] [PASSED] 34 VFs
[21:49:54] [PASSED] 35 VFs
[21:49:54] [PASSED] 36 VFs
[21:49:54] [PASSED] 37 VFs
[21:49:54] [PASSED] 38 VFs
[21:49:54] [PASSED] 39 VFs
[21:49:54] [PASSED] 40 VFs
[21:49:54] [PASSED] 41 VFs
[21:49:54] [PASSED] 42 VFs
[21:49:54] [PASSED] 43 VFs
[21:49:54] [PASSED] 44 VFs
[21:49:54] [PASSED] 45 VFs
[21:49:54] [PASSED] 46 VFs
[21:49:54] [PASSED] 47 VFs
[21:49:54] [PASSED] 48 VFs
[21:49:54] [PASSED] 49 VFs
[21:49:54] [PASSED] 50 VFs
[21:49:54] [PASSED] 51 VFs
[21:49:54] [PASSED] 52 VFs
[21:49:54] [PASSED] 53 VFs
[21:49:54] [PASSED] 54 VFs
[21:49:54] [PASSED] 55 VFs
[21:49:54] [PASSED] 56 VFs
[21:49:54] [PASSED] 57 VFs
[21:49:54] [PASSED] 58 VFs
[21:49:54] [PASSED] 59 VFs
[21:49:54] [PASSED] 60 VFs
[21:49:54] [PASSED] 61 VFs
[21:49:54] [PASSED] 62 VFs
[21:49:54] [PASSED] 63 VFs
[21:49:54] ================== [PASSED] fair_contexts ==================
[21:49:54] ===================== fair_doorbells ======================
[21:49:54] [PASSED] 1 VF
[21:49:54] [PASSED] 2 VFs
[21:49:54] [PASSED] 3 VFs
[21:49:54] [PASSED] 4 VFs
[21:49:54] [PASSED] 5 VFs
[21:49:54] [PASSED] 6 VFs
[21:49:54] [PASSED] 7 VFs
[21:49:54] [PASSED] 8 VFs
[21:49:54] [PASSED] 9 VFs
[21:49:54] [PASSED] 10 VFs
[21:49:54] [PASSED] 11 VFs
[21:49:54] [PASSED] 12 VFs
[21:49:54] [PASSED] 13 VFs
[21:49:54] [PASSED] 14 VFs
[21:49:54] [PASSED] 15 VFs
[21:49:54] [PASSED] 16 VFs
[21:49:54] [PASSED] 17 VFs
[21:49:54] [PASSED] 18 VFs
[21:49:54] [PASSED] 19 VFs
[21:49:54] [PASSED] 20 VFs
[21:49:54] [PASSED] 21 VFs
[21:49:54] [PASSED] 22 VFs
[21:49:54] [PASSED] 23 VFs
[21:49:54] [PASSED] 24 VFs
[21:49:54] [PASSED] 25 VFs
[21:49:54] [PASSED] 26 VFs
[21:49:54] [PASSED] 27 VFs
[21:49:54] [PASSED] 28 VFs
[21:49:54] [PASSED] 29 VFs
[21:49:54] [PASSED] 30 VFs
[21:49:54] [PASSED] 31 VFs
[21:49:54] [PASSED] 32 VFs
[21:49:54] [PASSED] 33 VFs
[21:49:54] [PASSED] 34 VFs
[21:49:54] [PASSED] 35 VFs
[21:49:54] [PASSED] 36 VFs
[21:49:54] [PASSED] 37 VFs
[21:49:54] [PASSED] 38 VFs
[21:49:54] [PASSED] 39 VFs
[21:49:54] [PASSED] 40 VFs
[21:49:54] [PASSED] 41 VFs
[21:49:54] [PASSED] 42 VFs
[21:49:54] [PASSED] 43 VFs
[21:49:54] [PASSED] 44 VFs
[21:49:54] [PASSED] 45 VFs
[21:49:54] [PASSED] 46 VFs
[21:49:54] [PASSED] 47 VFs
[21:49:54] [PASSED] 48 VFs
[21:49:54] [PASSED] 49 VFs
[21:49:54] [PASSED] 50 VFs
[21:49:54] [PASSED] 51 VFs
[21:49:54] [PASSED] 52 VFs
[21:49:54] [PASSED] 53 VFs
[21:49:54] [PASSED] 54 VFs
[21:49:54] [PASSED] 55 VFs
[21:49:54] [PASSED] 56 VFs
[21:49:54] [PASSED] 57 VFs
[21:49:54] [PASSED] 58 VFs
[21:49:54] [PASSED] 59 VFs
[21:49:54] [PASSED] 60 VFs
[21:49:54] [PASSED] 61 VFs
[21:49:54] [PASSED] 62 VFs
[21:49:54] [PASSED] 63 VFs
[21:49:54] ================= [PASSED] fair_doorbells ==================
[21:49:54] ======================== fair_ggtt ========================
[21:49:54] [PASSED] 1 VF
[21:49:54] [PASSED] 2 VFs
[21:49:54] [PASSED] 3 VFs
[21:49:54] [PASSED] 4 VFs
[21:49:54] [PASSED] 5 VFs
[21:49:54] [PASSED] 6 VFs
[21:49:54] [PASSED] 7 VFs
[21:49:54] [PASSED] 8 VFs
[21:49:54] [PASSED] 9 VFs
[21:49:54] [PASSED] 10 VFs
[21:49:54] [PASSED] 11 VFs
[21:49:54] [PASSED] 12 VFs
[21:49:54] [PASSED] 13 VFs
[21:49:54] [PASSED] 14 VFs
[21:49:54] [PASSED] 15 VFs
[21:49:54] [PASSED] 16 VFs
[21:49:54] [PASSED] 17 VFs
[21:49:54] [PASSED] 18 VFs
[21:49:54] [PASSED] 19 VFs
[21:49:54] [PASSED] 20 VFs
[21:49:54] [PASSED] 21 VFs
[21:49:54] [PASSED] 22 VFs
[21:49:54] [PASSED] 23 VFs
[21:49:54] [PASSED] 24 VFs
[21:49:54] [PASSED] 25 VFs
[21:49:54] [PASSED] 26 VFs
[21:49:54] [PASSED] 27 VFs
[21:49:54] [PASSED] 28 VFs
[21:49:54] [PASSED] 29 VFs
[21:49:54] [PASSED] 30 VFs
[21:49:54] [PASSED] 31 VFs
[21:49:54] [PASSED] 32 VFs
[21:49:54] [PASSED] 33 VFs
[21:49:54] [PASSED] 34 VFs
[21:49:54] [PASSED] 35 VFs
[21:49:54] [PASSED] 36 VFs
[21:49:54] [PASSED] 37 VFs
[21:49:54] [PASSED] 38 VFs
[21:49:54] [PASSED] 39 VFs
[21:49:54] [PASSED] 40 VFs
[21:49:54] [PASSED] 41 VFs
[21:49:54] [PASSED] 42 VFs
[21:49:54] [PASSED] 43 VFs
[21:49:54] [PASSED] 44 VFs
[21:49:54] [PASSED] 45 VFs
[21:49:54] [PASSED] 46 VFs
[21:49:54] [PASSED] 47 VFs
[21:49:54] [PASSED] 48 VFs
[21:49:54] [PASSED] 49 VFs
[21:49:54] [PASSED] 50 VFs
[21:49:54] [PASSED] 51 VFs
[21:49:54] [PASSED] 52 VFs
[21:49:54] [PASSED] 53 VFs
[21:49:54] [PASSED] 54 VFs
[21:49:54] [PASSED] 55 VFs
[21:49:54] [PASSED] 56 VFs
[21:49:54] [PASSED] 57 VFs
[21:49:54] [PASSED] 58 VFs
[21:49:54] [PASSED] 59 VFs
[21:49:54] [PASSED] 60 VFs
[21:49:54] [PASSED] 61 VFs
[21:49:54] [PASSED] 62 VFs
[21:49:54] [PASSED] 63 VFs
[21:49:54] ==================== [PASSED] fair_ggtt ====================
[21:49:54] ================== [PASSED] pf_gt_config ===================
[21:49:54] ===================== lmtt (1 subtest) =====================
[21:49:54] ======================== test_ops =========================
[21:49:54] [PASSED] 2-level
[21:49:54] [PASSED] multi-level
[21:49:54] ==================== [PASSED] test_ops =====================
[21:49:54] ====================== [PASSED] lmtt =======================
[21:49:54] ================= pf_service (11 subtests) =================
[21:49:54] [PASSED] pf_negotiate_any
[21:49:54] [PASSED] pf_negotiate_base_match
[21:49:54] [PASSED] pf_negotiate_base_newer
[21:49:54] [PASSED] pf_negotiate_base_next
[21:49:54] [SKIPPED] pf_negotiate_base_older
[21:49:54] [PASSED] pf_negotiate_base_prev
[21:49:54] [PASSED] pf_negotiate_latest_match
[21:49:54] [PASSED] pf_negotiate_latest_newer
[21:49:54] [PASSED] pf_negotiate_latest_next
[21:49:54] [SKIPPED] pf_negotiate_latest_older
[21:49:54] [SKIPPED] pf_negotiate_latest_prev
[21:49:54] =================== [PASSED] pf_service ====================
[21:49:54] ================= xe_guc_g2g (2 subtests) ==================
[21:49:54] ============== xe_live_guc_g2g_kunit_default ==============
[21:49:54] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[21:49:54] ============== xe_live_guc_g2g_kunit_allmem ===============
[21:49:54] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[21:49:54] =================== [SKIPPED] xe_guc_g2g ===================
[21:49:54] =================== xe_mocs (2 subtests) ===================
[21:49:54] ================ xe_live_mocs_kernel_kunit ================
[21:49:54] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[21:49:54] ================ xe_live_mocs_reset_kunit =================
[21:49:54] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[21:49:54] ==================== [SKIPPED] xe_mocs =====================
[21:49:54] ================= xe_migrate (2 subtests) ==================
[21:49:54] ================= xe_migrate_sanity_kunit =================
[21:49:54] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[21:49:54] ================== xe_validate_ccs_kunit ==================
[21:49:54] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[21:49:54] =================== [SKIPPED] xe_migrate ===================
[21:49:54] ================== xe_dma_buf (1 subtest) ==================
[21:49:54] ==================== xe_dma_buf_kunit =====================
[21:49:54] ================ [SKIPPED] xe_dma_buf_kunit ================
[21:49:54] =================== [SKIPPED] xe_dma_buf ===================
[21:49:54] ================= xe_bo_shrink (1 subtest) =================
[21:49:54] =================== xe_bo_shrink_kunit ====================
[21:49:54] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[21:49:54] ================== [SKIPPED] xe_bo_shrink ==================
[21:49:54] ==================== xe_bo (2 subtests) ====================
[21:49:54] ================== xe_ccs_migrate_kunit ===================
[21:49:54] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[21:49:54] ==================== xe_bo_evict_kunit ====================
[21:49:54] =============== [SKIPPED] xe_bo_evict_kunit ================
[21:49:54] ===================== [SKIPPED] xe_bo ======================
[21:49:54] ==================== args (13 subtests) ====================
[21:49:54] [PASSED] count_args_test
[21:49:54] [PASSED] call_args_example
[21:49:54] [PASSED] call_args_test
[21:49:54] [PASSED] drop_first_arg_example
[21:49:54] [PASSED] drop_first_arg_test
[21:49:54] [PASSED] first_arg_example
[21:49:54] [PASSED] first_arg_test
[21:49:54] [PASSED] last_arg_example
[21:49:54] [PASSED] last_arg_test
[21:49:54] [PASSED] pick_arg_example
[21:49:54] [PASSED] if_args_example
[21:49:54] [PASSED] if_args_test
[21:49:54] [PASSED] sep_comma_example
[21:49:54] ====================== [PASSED] args =======================
[21:49:54] =================== xe_pci (3 subtests) ====================
[21:49:54] ==================== check_graphics_ip ====================
[21:49:54] [PASSED] 12.00 Xe_LP
[21:49:54] [PASSED] 12.10 Xe_LP+
[21:49:54] [PASSED] 12.55 Xe_HPG
[21:49:54] [PASSED] 12.60 Xe_HPC
[21:49:54] [PASSED] 12.70 Xe_LPG
[21:49:54] [PASSED] 12.71 Xe_LPG
[21:49:54] [PASSED] 12.74 Xe_LPG+
[21:49:54] [PASSED] 20.01 Xe2_HPG
[21:49:54] [PASSED] 20.02 Xe2_HPG
[21:49:54] [PASSED] 20.04 Xe2_LPG
[21:49:54] [PASSED] 30.00 Xe3_LPG
[21:49:54] [PASSED] 30.01 Xe3_LPG
[21:49:54] [PASSED] 30.03 Xe3_LPG
[21:49:54] [PASSED] 30.04 Xe3_LPG
[21:49:54] [PASSED] 30.05 Xe3_LPG
[21:49:54] [PASSED] 35.11 Xe3p_XPC
[21:49:54] ================ [PASSED] check_graphics_ip ================
[21:49:54] ===================== check_media_ip ======================
[21:49:54] [PASSED] 12.00 Xe_M
[21:49:54] [PASSED] 12.55 Xe_HPM
[21:49:54] [PASSED] 13.00 Xe_LPM+
[21:49:54] [PASSED] 13.01 Xe2_HPM
[21:49:54] [PASSED] 20.00 Xe2_LPM
[21:49:54] [PASSED] 30.00 Xe3_LPM
[21:49:54] [PASSED] 30.02 Xe3_LPM
[21:49:54] [PASSED] 35.00 Xe3p_LPM
[21:49:54] [PASSED] 35.03 Xe3p_HPM
[21:49:54] ================= [PASSED] check_media_ip ==================
[21:49:54] =================== check_platform_desc ===================
[21:49:54] [PASSED] 0x9A60 (TIGERLAKE)
[21:49:54] [PASSED] 0x9A68 (TIGERLAKE)
[21:49:54] [PASSED] 0x9A70 (TIGERLAKE)
[21:49:54] [PASSED] 0x9A40 (TIGERLAKE)
[21:49:54] [PASSED] 0x9A49 (TIGERLAKE)
[21:49:54] [PASSED] 0x9A59 (TIGERLAKE)
[21:49:54] [PASSED] 0x9A78 (TIGERLAKE)
[21:49:54] [PASSED] 0x9AC0 (TIGERLAKE)
[21:49:54] [PASSED] 0x9AC9 (TIGERLAKE)
[21:49:54] [PASSED] 0x9AD9 (TIGERLAKE)
[21:49:54] [PASSED] 0x9AF8 (TIGERLAKE)
[21:49:54] [PASSED] 0x4C80 (ROCKETLAKE)
[21:49:54] [PASSED] 0x4C8A (ROCKETLAKE)
[21:49:54] [PASSED] 0x4C8B (ROCKETLAKE)
[21:49:54] [PASSED] 0x4C8C (ROCKETLAKE)
[21:49:54] [PASSED] 0x4C90 (ROCKETLAKE)
[21:49:54] [PASSED] 0x4C9A (ROCKETLAKE)
[21:49:54] [PASSED] 0x4680 (ALDERLAKE_S)
[21:49:54] [PASSED] 0x4682 (ALDERLAKE_S)
[21:49:54] [PASSED] 0x4688 (ALDERLAKE_S)
[21:49:54] [PASSED] 0x468A (ALDERLAKE_S)
[21:49:54] [PASSED] 0x468B (ALDERLAKE_S)
[21:49:54] [PASSED] 0x4690 (ALDERLAKE_S)
[21:49:54] [PASSED] 0x4692 (ALDERLAKE_S)
[21:49:54] [PASSED] 0x4693 (ALDERLAKE_S)
[21:49:54] [PASSED] 0x46A0 (ALDERLAKE_P)
[21:49:54] [PASSED] 0x46A1 (ALDERLAKE_P)
[21:49:54] [PASSED] 0x46A2 (ALDERLAKE_P)
[21:49:54] [PASSED] 0x46A3 (ALDERLAKE_P)
[21:49:54] [PASSED] 0x46A6 (ALDERLAKE_P)
[21:49:54] [PASSED] 0x46A8 (ALDERLAKE_P)
[21:49:54] [PASSED] 0x46AA (ALDERLAKE_P)
[21:49:54] [PASSED] 0x462A (ALDERLAKE_P)
[21:49:54] [PASSED] 0x4626 (ALDERLAKE_P)
[21:49:54] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[21:49:54] [PASSED] 0x46B0 (ALDERLAKE_P)
[21:49:54] [PASSED] 0x46B1 (ALDERLAKE_P)
[21:49:54] [PASSED] 0x46B2 (ALDERLAKE_P)
[21:49:54] [PASSED] 0x46B3 (ALDERLAKE_P)
[21:49:54] [PASSED] 0x46C0 (ALDERLAKE_P)
[21:49:54] [PASSED] 0x46C1 (ALDERLAKE_P)
[21:49:54] [PASSED] 0x46C2 (ALDERLAKE_P)
[21:49:54] [PASSED] 0x46C3 (ALDERLAKE_P)
[21:49:54] [PASSED] 0x46D0 (ALDERLAKE_N)
[21:49:54] [PASSED] 0x46D1 (ALDERLAKE_N)
[21:49:54] [PASSED] 0x46D2 (ALDERLAKE_N)
[21:49:54] [PASSED] 0x46D3 (ALDERLAKE_N)
[21:49:54] [PASSED] 0x46D4 (ALDERLAKE_N)
[21:49:54] [PASSED] 0xA721 (ALDERLAKE_P)
[21:49:54] [PASSED] 0xA7A1 (ALDERLAKE_P)
[21:49:54] [PASSED] 0xA7A9 (ALDERLAKE_P)
[21:49:54] [PASSED] 0xA7AC (ALDERLAKE_P)
[21:49:54] [PASSED] 0xA7AD (ALDERLAKE_P)
[21:49:54] [PASSED] 0xA720 (ALDERLAKE_P)
[21:49:54] [PASSED] 0xA7A0 (ALDERLAKE_P)
[21:49:54] [PASSED] 0xA7A8 (ALDERLAKE_P)
[21:49:54] [PASSED] 0xA7AA (ALDERLAKE_P)
[21:49:54] [PASSED] 0xA7AB (ALDERLAKE_P)
[21:49:54] [PASSED] 0xA780 (ALDERLAKE_S)
[21:49:54] [PASSED] 0xA781 (ALDERLAKE_S)
[21:49:54] [PASSED] 0xA782 (ALDERLAKE_S)
[21:49:54] [PASSED] 0xA783 (ALDERLAKE_S)
[21:49:54] [PASSED] 0xA788 (ALDERLAKE_S)
[21:49:54] [PASSED] 0xA789 (ALDERLAKE_S)
[21:49:54] [PASSED] 0xA78A (ALDERLAKE_S)
[21:49:54] [PASSED] 0xA78B (ALDERLAKE_S)
[21:49:54] [PASSED] 0x4905 (DG1)
[21:49:54] [PASSED] 0x4906 (DG1)
[21:49:54] [PASSED] 0x4907 (DG1)
[21:49:54] [PASSED] 0x4908 (DG1)
[21:49:54] [PASSED] 0x4909 (DG1)
[21:49:54] [PASSED] 0x56C0 (DG2)
[21:49:54] [PASSED] 0x56C2 (DG2)
[21:49:54] [PASSED] 0x56C1 (DG2)
[21:49:54] [PASSED] 0x7D51 (METEORLAKE)
[21:49:54] [PASSED] 0x7DD1 (METEORLAKE)
[21:49:54] [PASSED] 0x7D41 (METEORLAKE)
[21:49:54] [PASSED] 0x7D67 (METEORLAKE)
[21:49:54] [PASSED] 0xB640 (METEORLAKE)
[21:49:54] [PASSED] 0x56A0 (DG2)
[21:49:54] [PASSED] 0x56A1 (DG2)
[21:49:54] [PASSED] 0x56A2 (DG2)
[21:49:54] [PASSED] 0x56BE (DG2)
[21:49:54] [PASSED] 0x56BF (DG2)
[21:49:54] [PASSED] 0x5690 (DG2)
[21:49:54] [PASSED] 0x5691 (DG2)
[21:49:54] [PASSED] 0x5692 (DG2)
[21:49:54] [PASSED] 0x56A5 (DG2)
[21:49:54] [PASSED] 0x56A6 (DG2)
[21:49:54] [PASSED] 0x56B0 (DG2)
[21:49:54] [PASSED] 0x56B1 (DG2)
[21:49:54] [PASSED] 0x56BA (DG2)
[21:49:54] [PASSED] 0x56BB (DG2)
[21:49:54] [PASSED] 0x56BC (DG2)
[21:49:54] [PASSED] 0x56BD (DG2)
[21:49:54] [PASSED] 0x5693 (DG2)
[21:49:54] [PASSED] 0x5694 (DG2)
[21:49:54] [PASSED] 0x5695 (DG2)
[21:49:54] [PASSED] 0x56A3 (DG2)
[21:49:54] [PASSED] 0x56A4 (DG2)
[21:49:54] [PASSED] 0x56B2 (DG2)
[21:49:54] [PASSED] 0x56B3 (DG2)
[21:49:54] [PASSED] 0x5696 (DG2)
[21:49:54] [PASSED] 0x5697 (DG2)
[21:49:54] [PASSED] 0xB69 (PVC)
[21:49:54] [PASSED] 0xB6E (PVC)
[21:49:54] [PASSED] 0xBD4 (PVC)
[21:49:54] [PASSED] 0xBD5 (PVC)
[21:49:54] [PASSED] 0xBD6 (PVC)
[21:49:54] [PASSED] 0xBD7 (PVC)
[21:49:54] [PASSED] 0xBD8 (PVC)
[21:49:54] [PASSED] 0xBD9 (PVC)
[21:49:54] [PASSED] 0xBDA (PVC)
[21:49:54] [PASSED] 0xBDB (PVC)
[21:49:54] [PASSED] 0xBE0 (PVC)
[21:49:54] [PASSED] 0xBE1 (PVC)
[21:49:54] [PASSED] 0xBE5 (PVC)
[21:49:54] [PASSED] 0x7D40 (METEORLAKE)
[21:49:54] [PASSED] 0x7D45 (METEORLAKE)
[21:49:54] [PASSED] 0x7D55 (METEORLAKE)
[21:49:54] [PASSED] 0x7D60 (METEORLAKE)
[21:49:54] [PASSED] 0x7DD5 (METEORLAKE)
[21:49:54] [PASSED] 0x6420 (LUNARLAKE)
[21:49:54] [PASSED] 0x64A0 (LUNARLAKE)
[21:49:54] [PASSED] 0x64B0 (LUNARLAKE)
[21:49:54] [PASSED] 0xE202 (BATTLEMAGE)
[21:49:54] [PASSED] 0xE209 (BATTLEMAGE)
[21:49:54] [PASSED] 0xE20B (BATTLEMAGE)
[21:49:54] [PASSED] 0xE20C (BATTLEMAGE)
[21:49:54] [PASSED] 0xE20D (BATTLEMAGE)
[21:49:54] [PASSED] 0xE210 (BATTLEMAGE)
[21:49:54] [PASSED] 0xE211 (BATTLEMAGE)
[21:49:54] [PASSED] 0xE212 (BATTLEMAGE)
[21:49:54] [PASSED] 0xE216 (BATTLEMAGE)
[21:49:54] [PASSED] 0xE220 (BATTLEMAGE)
[21:49:54] [PASSED] 0xE221 (BATTLEMAGE)
[21:49:54] [PASSED] 0xE222 (BATTLEMAGE)
[21:49:54] [PASSED] 0xE223 (BATTLEMAGE)
[21:49:54] [PASSED] 0xB080 (PANTHERLAKE)
[21:49:54] [PASSED] 0xB081 (PANTHERLAKE)
[21:49:54] [PASSED] 0xB082 (PANTHERLAKE)
[21:49:54] [PASSED] 0xB083 (PANTHERLAKE)
[21:49:54] [PASSED] 0xB084 (PANTHERLAKE)
[21:49:54] [PASSED] 0xB085 (PANTHERLAKE)
[21:49:54] [PASSED] 0xB086 (PANTHERLAKE)
[21:49:54] [PASSED] 0xB087 (PANTHERLAKE)
[21:49:54] [PASSED] 0xB08F (PANTHERLAKE)
[21:49:54] [PASSED] 0xB090 (PANTHERLAKE)
[21:49:54] [PASSED] 0xB0A0 (PANTHERLAKE)
[21:49:54] [PASSED] 0xB0B0 (PANTHERLAKE)
[21:49:54] [PASSED] 0xFD80 (PANTHERLAKE)
[21:49:54] [PASSED] 0xFD81 (PANTHERLAKE)
[21:49:54] [PASSED] 0xD740 (NOVALAKE_S)
[21:49:54] [PASSED] 0xD741 (NOVALAKE_S)
[21:49:54] [PASSED] 0xD742 (NOVALAKE_S)
[21:49:54] [PASSED] 0xD743 (NOVALAKE_S)
[21:49:54] [PASSED] 0xD744 (NOVALAKE_S)
[21:49:54] [PASSED] 0xD745 (NOVALAKE_S)
[21:49:54] [PASSED] 0x674C (CRESCENTISLAND)
[21:49:54] =============== [PASSED] check_platform_desc ===============
[21:49:54] ===================== [PASSED] xe_pci ======================
[21:49:54] =================== xe_rtp (2 subtests) ====================
[21:49:54] =============== xe_rtp_process_to_sr_tests ================
[21:49:54] [PASSED] coalesce-same-reg
[21:49:54] [PASSED] no-match-no-add
[21:49:54] [PASSED] match-or
[21:49:54] [PASSED] match-or-xfail
[21:49:54] [PASSED] no-match-no-add-multiple-rules
[21:49:54] [PASSED] two-regs-two-entries
[21:49:54] [PASSED] clr-one-set-other
[21:49:54] [PASSED] set-field
[21:49:54] [PASSED] conflict-duplicate
[21:49:54] [PASSED] conflict-not-disjoint
[21:49:54] [PASSED] conflict-reg-type
[21:49:54] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[21:49:54] ================== xe_rtp_process_tests ===================
[21:49:54] [PASSED] active1
[21:49:54] [PASSED] active2
[21:49:54] [PASSED] active-inactive
[21:49:54] [PASSED] inactive-active
[21:49:54] [PASSED] inactive-1st_or_active-inactive
[21:49:54] [PASSED] inactive-2nd_or_active-inactive
[21:49:54] [PASSED] inactive-last_or_active-inactive
[21:49:54] [PASSED] inactive-no_or_active-inactive
[21:49:54] ============== [PASSED] xe_rtp_process_tests ===============
[21:49:54] ===================== [PASSED] xe_rtp ======================
[21:49:54] ==================== xe_wa (1 subtest) =====================
[21:49:54] ======================== xe_wa_gt =========================
[21:49:54] [PASSED] TIGERLAKE B0
[21:49:54] [PASSED] DG1 A0
[21:49:54] [PASSED] DG1 B0
[21:49:54] [PASSED] ALDERLAKE_S A0
[21:49:54] [PASSED] ALDERLAKE_S B0
[21:49:54] [PASSED] ALDERLAKE_S C0
[21:49:54] [PASSED] ALDERLAKE_S D0
[21:49:54] [PASSED] ALDERLAKE_P A0
[21:49:54] [PASSED] ALDERLAKE_P B0
[21:49:54] [PASSED] ALDERLAKE_P C0
[21:49:54] [PASSED] ALDERLAKE_S RPLS D0
[21:49:54] [PASSED] ALDERLAKE_P RPLU E0
[21:49:54] [PASSED] DG2 G10 C0
[21:49:54] [PASSED] DG2 G11 B1
[21:49:54] [PASSED] DG2 G12 A1
[21:49:54] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[21:49:54] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[21:49:54] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[21:49:54] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[21:49:54] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[21:49:54] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[21:49:54] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[21:49:54] ==================== [PASSED] xe_wa_gt =====================
[21:49:54] ====================== [PASSED] xe_wa ======================
[21:49:54] ============================================================
[21:49:54] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[21:49:54] Elapsed time: 36.125s total, 4.216s configuring, 31.438s building, 0.458s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[21:49:54] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:49:56] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[21:50:21] Starting KUnit Kernel (1/1)...
[21:50:21] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:50:21] ============ drm_test_pick_cmdline (2 subtests) ============
[21:50:21] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[21:50:21] =============== drm_test_pick_cmdline_named ===============
[21:50:21] [PASSED] NTSC
[21:50:21] [PASSED] NTSC-J
[21:50:21] [PASSED] PAL
[21:50:21] [PASSED] PAL-M
[21:50:21] =========== [PASSED] drm_test_pick_cmdline_named ===========
[21:50:21] ============== [PASSED] drm_test_pick_cmdline ==============
[21:50:21] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[21:50:21] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[21:50:21] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[21:50:21] =========== drm_validate_clone_mode (2 subtests) ===========
[21:50:21] ============== drm_test_check_in_clone_mode ===============
[21:50:21] [PASSED] in_clone_mode
[21:50:21] [PASSED] not_in_clone_mode
[21:50:21] ========== [PASSED] drm_test_check_in_clone_mode ===========
[21:50:21] =============== drm_test_check_valid_clones ===============
[21:50:21] [PASSED] not_in_clone_mode
[21:50:21] [PASSED] valid_clone
[21:50:21] [PASSED] invalid_clone
[21:50:21] =========== [PASSED] drm_test_check_valid_clones ===========
[21:50:21] ============= [PASSED] drm_validate_clone_mode =============
[21:50:21] ============= drm_validate_modeset (1 subtest) =============
[21:50:21] [PASSED] drm_test_check_connector_changed_modeset
[21:50:21] ============== [PASSED] drm_validate_modeset ===============
[21:50:21] ====== drm_test_bridge_get_current_state (2 subtests) ======
[21:50:21] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[21:50:21] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[21:50:21] ======== [PASSED] drm_test_bridge_get_current_state ========
[21:50:21] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[21:50:21] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[21:50:21] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[21:50:21] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[21:50:21] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[21:50:21] ============== drm_bridge_alloc (2 subtests) ===============
[21:50:21] [PASSED] drm_test_drm_bridge_alloc_basic
[21:50:21] [PASSED] drm_test_drm_bridge_alloc_get_put
[21:50:21] ================ [PASSED] drm_bridge_alloc =================
[21:50:21] ================== drm_buddy (8 subtests) ==================
[21:50:21] [PASSED] drm_test_buddy_alloc_limit
[21:50:21] [PASSED] drm_test_buddy_alloc_optimistic
[21:50:21] [PASSED] drm_test_buddy_alloc_pessimistic
[21:50:21] [PASSED] drm_test_buddy_alloc_pathological
[21:50:21] [PASSED] drm_test_buddy_alloc_contiguous
[21:50:21] [PASSED] drm_test_buddy_alloc_clear
[21:50:22] [PASSED] drm_test_buddy_alloc_range_bias
[21:50:22] [PASSED] drm_test_buddy_fragmentation_performance
[21:50:22] ==================== [PASSED] drm_buddy ====================
[21:50:22] ============= drm_cmdline_parser (40 subtests) =============
[21:50:22] [PASSED] drm_test_cmdline_force_d_only
[21:50:22] [PASSED] drm_test_cmdline_force_D_only_dvi
[21:50:22] [PASSED] drm_test_cmdline_force_D_only_hdmi
[21:50:22] [PASSED] drm_test_cmdline_force_D_only_not_digital
[21:50:22] [PASSED] drm_test_cmdline_force_e_only
[21:50:22] [PASSED] drm_test_cmdline_res
[21:50:22] [PASSED] drm_test_cmdline_res_vesa
[21:50:22] [PASSED] drm_test_cmdline_res_vesa_rblank
[21:50:22] [PASSED] drm_test_cmdline_res_rblank
[21:50:22] [PASSED] drm_test_cmdline_res_bpp
[21:50:22] [PASSED] drm_test_cmdline_res_refresh
[21:50:22] [PASSED] drm_test_cmdline_res_bpp_refresh
[21:50:22] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[21:50:22] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[21:50:22] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[21:50:22] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[21:50:22] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[21:50:22] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[21:50:22] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[21:50:22] [PASSED] drm_test_cmdline_res_margins_force_on
[21:50:22] [PASSED] drm_test_cmdline_res_vesa_margins
[21:50:22] [PASSED] drm_test_cmdline_name
[21:50:22] [PASSED] drm_test_cmdline_name_bpp
[21:50:22] [PASSED] drm_test_cmdline_name_option
[21:50:22] [PASSED] drm_test_cmdline_name_bpp_option
[21:50:22] [PASSED] drm_test_cmdline_rotate_0
[21:50:22] [PASSED] drm_test_cmdline_rotate_90
[21:50:22] [PASSED] drm_test_cmdline_rotate_180
[21:50:22] [PASSED] drm_test_cmdline_rotate_270
[21:50:22] [PASSED] drm_test_cmdline_hmirror
[21:50:22] [PASSED] drm_test_cmdline_vmirror
[21:50:22] [PASSED] drm_test_cmdline_margin_options
[21:50:22] [PASSED] drm_test_cmdline_multiple_options
[21:50:22] [PASSED] drm_test_cmdline_bpp_extra_and_option
[21:50:22] [PASSED] drm_test_cmdline_extra_and_option
[21:50:22] [PASSED] drm_test_cmdline_freestanding_options
[21:50:22] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[21:50:22] [PASSED] drm_test_cmdline_panel_orientation
[21:50:22] ================ drm_test_cmdline_invalid =================
[21:50:22] [PASSED] margin_only
[21:50:22] [PASSED] interlace_only
[21:50:22] [PASSED] res_missing_x
[21:50:22] [PASSED] res_missing_y
[21:50:22] [PASSED] res_bad_y
[21:50:22] [PASSED] res_missing_y_bpp
[21:50:22] [PASSED] res_bad_bpp
[21:50:22] [PASSED] res_bad_refresh
[21:50:22] [PASSED] res_bpp_refresh_force_on_off
[21:50:22] [PASSED] res_invalid_mode
[21:50:22] [PASSED] res_bpp_wrong_place_mode
[21:50:22] [PASSED] name_bpp_refresh
[21:50:22] [PASSED] name_refresh
[21:50:22] [PASSED] name_refresh_wrong_mode
[21:50:22] [PASSED] name_refresh_invalid_mode
[21:50:22] [PASSED] rotate_multiple
[21:50:22] [PASSED] rotate_invalid_val
[21:50:22] [PASSED] rotate_truncated
[21:50:22] [PASSED] invalid_option
[21:50:22] [PASSED] invalid_tv_option
[21:50:22] [PASSED] truncated_tv_option
[21:50:22] ============ [PASSED] drm_test_cmdline_invalid =============
[21:50:22] =============== drm_test_cmdline_tv_options ===============
[21:50:22] [PASSED] NTSC
[21:50:22] [PASSED] NTSC_443
[21:50:22] [PASSED] NTSC_J
[21:50:22] [PASSED] PAL
[21:50:22] [PASSED] PAL_M
[21:50:22] [PASSED] PAL_N
[21:50:22] [PASSED] SECAM
[21:50:22] [PASSED] MONO_525
[21:50:22] [PASSED] MONO_625
[21:50:22] =========== [PASSED] drm_test_cmdline_tv_options ===========
[21:50:22] =============== [PASSED] drm_cmdline_parser ================
[21:50:22] ========== drmm_connector_hdmi_init (20 subtests) ==========
[21:50:22] [PASSED] drm_test_connector_hdmi_init_valid
[21:50:22] [PASSED] drm_test_connector_hdmi_init_bpc_8
[21:50:22] [PASSED] drm_test_connector_hdmi_init_bpc_10
[21:50:22] [PASSED] drm_test_connector_hdmi_init_bpc_12
[21:50:22] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[21:50:22] [PASSED] drm_test_connector_hdmi_init_bpc_null
[21:50:22] [PASSED] drm_test_connector_hdmi_init_formats_empty
[21:50:22] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[21:50:22] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[21:50:22] [PASSED] supported_formats=0x9 yuv420_allowed=1
[21:50:22] [PASSED] supported_formats=0x9 yuv420_allowed=0
[21:50:22] [PASSED] supported_formats=0x3 yuv420_allowed=1
[21:50:22] [PASSED] supported_formats=0x3 yuv420_allowed=0
[21:50:22] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[21:50:22] [PASSED] drm_test_connector_hdmi_init_null_ddc
[21:50:22] [PASSED] drm_test_connector_hdmi_init_null_product
[21:50:22] [PASSED] drm_test_connector_hdmi_init_null_vendor
[21:50:22] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[21:50:22] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[21:50:22] [PASSED] drm_test_connector_hdmi_init_product_valid
[21:50:22] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[21:50:22] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[21:50:22] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[21:50:22] ========= drm_test_connector_hdmi_init_type_valid =========
[21:50:22] [PASSED] HDMI-A
[21:50:22] [PASSED] HDMI-B
[21:50:22] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[21:50:22] ======== drm_test_connector_hdmi_init_type_invalid ========
[21:50:22] [PASSED] Unknown
[21:50:22] [PASSED] VGA
[21:50:22] [PASSED] DVI-I
[21:50:22] [PASSED] DVI-D
[21:50:22] [PASSED] DVI-A
[21:50:22] [PASSED] Composite
[21:50:22] [PASSED] SVIDEO
[21:50:22] [PASSED] LVDS
[21:50:22] [PASSED] Component
[21:50:22] [PASSED] DIN
[21:50:22] [PASSED] DP
[21:50:22] [PASSED] TV
[21:50:22] [PASSED] eDP
[21:50:22] [PASSED] Virtual
[21:50:22] [PASSED] DSI
[21:50:22] [PASSED] DPI
[21:50:22] [PASSED] Writeback
[21:50:22] [PASSED] SPI
[21:50:22] [PASSED] USB
[21:50:22] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[21:50:22] ============ [PASSED] drmm_connector_hdmi_init =============
[21:50:22] ============= drmm_connector_init (3 subtests) =============
[21:50:22] [PASSED] drm_test_drmm_connector_init
[21:50:22] [PASSED] drm_test_drmm_connector_init_null_ddc
[21:50:22] ========= drm_test_drmm_connector_init_type_valid =========
[21:50:22] [PASSED] Unknown
[21:50:22] [PASSED] VGA
[21:50:22] [PASSED] DVI-I
[21:50:22] [PASSED] DVI-D
[21:50:22] [PASSED] DVI-A
[21:50:22] [PASSED] Composite
[21:50:22] [PASSED] SVIDEO
[21:50:22] [PASSED] LVDS
[21:50:22] [PASSED] Component
[21:50:22] [PASSED] DIN
[21:50:22] [PASSED] DP
[21:50:22] [PASSED] HDMI-A
[21:50:22] [PASSED] HDMI-B
[21:50:22] [PASSED] TV
[21:50:22] [PASSED] eDP
[21:50:22] [PASSED] Virtual
[21:50:22] [PASSED] DSI
[21:50:22] [PASSED] DPI
[21:50:22] [PASSED] Writeback
[21:50:22] [PASSED] SPI
[21:50:22] [PASSED] USB
[21:50:22] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[21:50:22] =============== [PASSED] drmm_connector_init ===============
[21:50:22] ========= drm_connector_dynamic_init (6 subtests) ==========
[21:50:22] [PASSED] drm_test_drm_connector_dynamic_init
[21:50:22] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[21:50:22] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[21:50:22] [PASSED] drm_test_drm_connector_dynamic_init_properties
[21:50:22] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[21:50:22] [PASSED] Unknown
[21:50:22] [PASSED] VGA
[21:50:22] [PASSED] DVI-I
[21:50:22] [PASSED] DVI-D
[21:50:22] [PASSED] DVI-A
[21:50:22] [PASSED] Composite
[21:50:22] [PASSED] SVIDEO
[21:50:22] [PASSED] LVDS
[21:50:22] [PASSED] Component
[21:50:22] [PASSED] DIN
[21:50:22] [PASSED] DP
[21:50:22] [PASSED] HDMI-A
[21:50:22] [PASSED] HDMI-B
[21:50:22] [PASSED] TV
[21:50:22] [PASSED] eDP
[21:50:22] [PASSED] Virtual
[21:50:22] [PASSED] DSI
[21:50:22] [PASSED] DPI
[21:50:22] [PASSED] Writeback
[21:50:22] [PASSED] SPI
[21:50:22] [PASSED] USB
[21:50:22] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[21:50:22] ======== drm_test_drm_connector_dynamic_init_name =========
[21:50:22] [PASSED] Unknown
[21:50:22] [PASSED] VGA
[21:50:22] [PASSED] DVI-I
[21:50:22] [PASSED] DVI-D
[21:50:22] [PASSED] DVI-A
[21:50:22] [PASSED] Composite
[21:50:22] [PASSED] SVIDEO
[21:50:22] [PASSED] LVDS
[21:50:22] [PASSED] Component
[21:50:22] [PASSED] DIN
[21:50:22] [PASSED] DP
[21:50:22] [PASSED] HDMI-A
[21:50:22] [PASSED] HDMI-B
[21:50:22] [PASSED] TV
[21:50:22] [PASSED] eDP
[21:50:22] [PASSED] Virtual
[21:50:22] [PASSED] DSI
[21:50:22] [PASSED] DPI
[21:50:22] [PASSED] Writeback
[21:50:22] [PASSED] SPI
[21:50:22] [PASSED] USB
[21:50:22] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[21:50:22] =========== [PASSED] drm_connector_dynamic_init ============
[21:50:22] ==== drm_connector_dynamic_register_early (4 subtests) =====
[21:50:22] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[21:50:22] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[21:50:22] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[21:50:22] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[21:50:22] ====== [PASSED] drm_connector_dynamic_register_early =======
[21:50:22] ======= drm_connector_dynamic_register (7 subtests) ========
[21:50:22] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[21:50:22] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[21:50:22] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[21:50:22] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[21:50:22] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[21:50:22] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[21:50:22] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[21:50:22] ========= [PASSED] drm_connector_dynamic_register ==========
[21:50:22] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[21:50:22] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[21:50:22] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[21:50:22] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[21:50:22] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[21:50:22] ========== drm_test_get_tv_mode_from_name_valid ===========
[21:50:22] [PASSED] NTSC
[21:50:22] [PASSED] NTSC-443
[21:50:22] [PASSED] NTSC-J
[21:50:22] [PASSED] PAL
[21:50:22] [PASSED] PAL-M
[21:50:22] [PASSED] PAL-N
[21:50:22] [PASSED] SECAM
[21:50:22] [PASSED] Mono
[21:50:22] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[21:50:22] [PASSED] drm_test_get_tv_mode_from_name_truncated
[21:50:22] ============ [PASSED] drm_get_tv_mode_from_name ============
[21:50:22] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[21:50:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[21:50:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[21:50:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[21:50:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[21:50:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[21:50:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[21:50:22] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[21:50:22] [PASSED] VIC 96
[21:50:22] [PASSED] VIC 97
[21:50:22] [PASSED] VIC 101
[21:50:22] [PASSED] VIC 102
[21:50:22] [PASSED] VIC 106
[21:50:22] [PASSED] VIC 107
[21:50:22] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[21:50:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[21:50:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[21:50:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[21:50:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[21:50:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[21:50:22] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[21:50:22] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[21:50:22] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[21:50:22] [PASSED] Automatic
[21:50:22] [PASSED] Full
[21:50:22] [PASSED] Limited 16:235
[21:50:22] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[21:50:22] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[21:50:22] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[21:50:22] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[21:50:22] === drm_test_drm_hdmi_connector_get_output_format_name ====
[21:50:22] [PASSED] RGB
[21:50:22] [PASSED] YUV 4:2:0
[21:50:22] [PASSED] YUV 4:2:2
[21:50:22] [PASSED] YUV 4:4:4
[21:50:22] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[21:50:22] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[21:50:22] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[21:50:22] ============= drm_damage_helper (21 subtests) ==============
[21:50:22] [PASSED] drm_test_damage_iter_no_damage
[21:50:22] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[21:50:22] [PASSED] drm_test_damage_iter_no_damage_src_moved
[21:50:22] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[21:50:22] [PASSED] drm_test_damage_iter_no_damage_not_visible
[21:50:22] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[21:50:22] [PASSED] drm_test_damage_iter_no_damage_no_fb
[21:50:22] [PASSED] drm_test_damage_iter_simple_damage
[21:50:22] [PASSED] drm_test_damage_iter_single_damage
[21:50:22] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[21:50:22] [PASSED] drm_test_damage_iter_single_damage_outside_src
[21:50:22] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[21:50:22] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[21:50:22] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[21:50:22] [PASSED] drm_test_damage_iter_single_damage_src_moved
[21:50:22] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[21:50:22] [PASSED] drm_test_damage_iter_damage
[21:50:22] [PASSED] drm_test_damage_iter_damage_one_intersect
[21:50:22] [PASSED] drm_test_damage_iter_damage_one_outside
[21:50:22] [PASSED] drm_test_damage_iter_damage_src_moved
[21:50:22] [PASSED] drm_test_damage_iter_damage_not_visible
[21:50:22] ================ [PASSED] drm_damage_helper ================
[21:50:22] ============== drm_dp_mst_helper (3 subtests) ==============
[21:50:22] ============== drm_test_dp_mst_calc_pbn_mode ==============
[21:50:22] [PASSED] Clock 154000 BPP 30 DSC disabled
[21:50:22] [PASSED] Clock 234000 BPP 30 DSC disabled
[21:50:22] [PASSED] Clock 297000 BPP 24 DSC disabled
[21:50:22] [PASSED] Clock 332880 BPP 24 DSC enabled
[21:50:22] [PASSED] Clock 324540 BPP 24 DSC enabled
[21:50:22] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[21:50:22] ============== drm_test_dp_mst_calc_pbn_div ===============
[21:50:22] [PASSED] Link rate 2000000 lane count 4
[21:50:22] [PASSED] Link rate 2000000 lane count 2
[21:50:22] [PASSED] Link rate 2000000 lane count 1
[21:50:22] [PASSED] Link rate 1350000 lane count 4
[21:50:22] [PASSED] Link rate 1350000 lane count 2
[21:50:22] [PASSED] Link rate 1350000 lane count 1
[21:50:22] [PASSED] Link rate 1000000 lane count 4
[21:50:22] [PASSED] Link rate 1000000 lane count 2
[21:50:22] [PASSED] Link rate 1000000 lane count 1
[21:50:22] [PASSED] Link rate 810000 lane count 4
[21:50:22] [PASSED] Link rate 810000 lane count 2
[21:50:22] [PASSED] Link rate 810000 lane count 1
[21:50:22] [PASSED] Link rate 540000 lane count 4
[21:50:22] [PASSED] Link rate 540000 lane count 2
[21:50:22] [PASSED] Link rate 540000 lane count 1
[21:50:22] [PASSED] Link rate 270000 lane count 4
[21:50:22] [PASSED] Link rate 270000 lane count 2
[21:50:22] [PASSED] Link rate 270000 lane count 1
[21:50:22] [PASSED] Link rate 162000 lane count 4
[21:50:22] [PASSED] Link rate 162000 lane count 2
[21:50:22] [PASSED] Link rate 162000 lane count 1
[21:50:22] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[21:50:22] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[21:50:22] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[21:50:22] [PASSED] DP_POWER_UP_PHY with port number
[21:50:22] [PASSED] DP_POWER_DOWN_PHY with port number
[21:50:22] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[21:50:22] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[21:50:22] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[21:50:22] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[21:50:22] [PASSED] DP_QUERY_PAYLOAD with port number
[21:50:22] [PASSED] DP_QUERY_PAYLOAD with VCPI
[21:50:22] [PASSED] DP_REMOTE_DPCD_READ with port number
[21:50:22] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[21:50:22] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[21:50:22] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[21:50:22] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[21:50:22] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[21:50:22] [PASSED] DP_REMOTE_I2C_READ with port number
[21:50:22] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[21:50:22] [PASSED] DP_REMOTE_I2C_READ with transactions array
[21:50:22] [PASSED] DP_REMOTE_I2C_WRITE with port number
[21:50:22] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[21:50:22] [PASSED] DP_REMOTE_I2C_WRITE with data array
[21:50:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[21:50:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[21:50:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[21:50:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[21:50:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[21:50:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[21:50:22] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[21:50:22] ================ [PASSED] drm_dp_mst_helper ================
[21:50:22] ================== drm_exec (7 subtests) ===================
[21:50:22] [PASSED] sanitycheck
[21:50:22] [PASSED] test_lock
[21:50:22] [PASSED] test_lock_unlock
[21:50:22] [PASSED] test_duplicates
[21:50:22] [PASSED] test_prepare
[21:50:22] [PASSED] test_prepare_array
[21:50:22] [PASSED] test_multiple_loops
[21:50:22] ==================== [PASSED] drm_exec =====================
[21:50:22] =========== drm_format_helper_test (17 subtests) ===========
[21:50:22] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[21:50:22] [PASSED] single_pixel_source_buffer
[21:50:22] [PASSED] single_pixel_clip_rectangle
[21:50:22] [PASSED] well_known_colors
[21:50:22] [PASSED] destination_pitch
[21:50:22] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[21:50:22] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[21:50:22] [PASSED] single_pixel_source_buffer
[21:50:22] [PASSED] single_pixel_clip_rectangle
[21:50:22] [PASSED] well_known_colors
[21:50:22] [PASSED] destination_pitch
[21:50:22] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[21:50:22] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[21:50:22] [PASSED] single_pixel_source_buffer
[21:50:22] [PASSED] single_pixel_clip_rectangle
[21:50:22] [PASSED] well_known_colors
[21:50:22] [PASSED] destination_pitch
[21:50:22] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[21:50:22] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[21:50:22] [PASSED] single_pixel_source_buffer
[21:50:22] [PASSED] single_pixel_clip_rectangle
[21:50:22] [PASSED] well_known_colors
[21:50:22] [PASSED] destination_pitch
[21:50:22] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[21:50:22] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[21:50:22] [PASSED] single_pixel_source_buffer
[21:50:22] [PASSED] single_pixel_clip_rectangle
[21:50:22] [PASSED] well_known_colors
[21:50:22] [PASSED] destination_pitch
[21:50:22] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[21:50:22] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[21:50:22] [PASSED] single_pixel_source_buffer
[21:50:22] [PASSED] single_pixel_clip_rectangle
[21:50:22] [PASSED] well_known_colors
[21:50:22] [PASSED] destination_pitch
[21:50:22] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[21:50:22] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[21:50:22] [PASSED] single_pixel_source_buffer
[21:50:22] [PASSED] single_pixel_clip_rectangle
[21:50:22] [PASSED] well_known_colors
[21:50:22] [PASSED] destination_pitch
[21:50:22] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[21:50:22] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[21:50:22] [PASSED] single_pixel_source_buffer
[21:50:22] [PASSED] single_pixel_clip_rectangle
[21:50:22] [PASSED] well_known_colors
[21:50:22] [PASSED] destination_pitch
[21:50:22] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[21:50:22] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[21:50:22] [PASSED] single_pixel_source_buffer
[21:50:22] [PASSED] single_pixel_clip_rectangle
[21:50:22] [PASSED] well_known_colors
[21:50:22] [PASSED] destination_pitch
[21:50:22] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[21:50:22] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[21:50:22] [PASSED] single_pixel_source_buffer
[21:50:22] [PASSED] single_pixel_clip_rectangle
[21:50:22] [PASSED] well_known_colors
[21:50:22] [PASSED] destination_pitch
[21:50:22] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[21:50:22] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[21:50:22] [PASSED] single_pixel_source_buffer
[21:50:22] [PASSED] single_pixel_clip_rectangle
[21:50:22] [PASSED] well_known_colors
[21:50:22] [PASSED] destination_pitch
[21:50:22] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[21:50:22] ============== drm_test_fb_xrgb8888_to_mono ===============
[21:50:22] [PASSED] single_pixel_source_buffer
[21:50:22] [PASSED] single_pixel_clip_rectangle
[21:50:22] [PASSED] well_known_colors
[21:50:22] [PASSED] destination_pitch
[21:50:22] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[21:50:22] ==================== drm_test_fb_swab =====================
[21:50:22] [PASSED] single_pixel_source_buffer
[21:50:22] [PASSED] single_pixel_clip_rectangle
[21:50:22] [PASSED] well_known_colors
[21:50:22] [PASSED] destination_pitch
[21:50:22] ================ [PASSED] drm_test_fb_swab =================
[21:50:22] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[21:50:22] [PASSED] single_pixel_source_buffer
[21:50:22] [PASSED] single_pixel_clip_rectangle
[21:50:22] [PASSED] well_known_colors
[21:50:22] [PASSED] destination_pitch
[21:50:22] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[21:50:22] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[21:50:22] [PASSED] single_pixel_source_buffer
[21:50:22] [PASSED] single_pixel_clip_rectangle
[21:50:22] [PASSED] well_known_colors
[21:50:22] [PASSED] destination_pitch
[21:50:22] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[21:50:22] ================= drm_test_fb_clip_offset =================
[21:50:22] [PASSED] pass through
[21:50:22] [PASSED] horizontal offset
[21:50:22] [PASSED] vertical offset
[21:50:22] [PASSED] horizontal and vertical offset
[21:50:22] [PASSED] horizontal offset (custom pitch)
[21:50:22] [PASSED] vertical offset (custom pitch)
[21:50:22] [PASSED] horizontal and vertical offset (custom pitch)
[21:50:22] ============= [PASSED] drm_test_fb_clip_offset =============
[21:50:22] =================== drm_test_fb_memcpy ====================
[21:50:22] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[21:50:22] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[21:50:22] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[21:50:22] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[21:50:22] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[21:50:22] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[21:50:22] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[21:50:22] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[21:50:22] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[21:50:22] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[21:50:22] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[21:50:22] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[21:50:22] =============== [PASSED] drm_test_fb_memcpy ================
[21:50:22] ============= [PASSED] drm_format_helper_test ==============
[21:50:22] ================= drm_format (18 subtests) =================
[21:50:22] [PASSED] drm_test_format_block_width_invalid
[21:50:22] [PASSED] drm_test_format_block_width_one_plane
[21:50:22] [PASSED] drm_test_format_block_width_two_plane
[21:50:22] [PASSED] drm_test_format_block_width_three_plane
[21:50:22] [PASSED] drm_test_format_block_width_tiled
[21:50:22] [PASSED] drm_test_format_block_height_invalid
[21:50:22] [PASSED] drm_test_format_block_height_one_plane
[21:50:22] [PASSED] drm_test_format_block_height_two_plane
[21:50:22] [PASSED] drm_test_format_block_height_three_plane
[21:50:22] [PASSED] drm_test_format_block_height_tiled
[21:50:22] [PASSED] drm_test_format_min_pitch_invalid
[21:50:22] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[21:50:22] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[21:50:22] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[21:50:22] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[21:50:22] [PASSED] drm_test_format_min_pitch_two_plane
[21:50:22] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[21:50:22] [PASSED] drm_test_format_min_pitch_tiled
[21:50:22] =================== [PASSED] drm_format ====================
[21:50:22] ============== drm_framebuffer (10 subtests) ===============
[21:50:22] ========== drm_test_framebuffer_check_src_coords ==========
[21:50:22] [PASSED] Success: source fits into fb
[21:50:22] [PASSED] Fail: overflowing fb with x-axis coordinate
[21:50:22] [PASSED] Fail: overflowing fb with y-axis coordinate
[21:50:22] [PASSED] Fail: overflowing fb with source width
[21:50:22] [PASSED] Fail: overflowing fb with source height
[21:50:22] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[21:50:22] [PASSED] drm_test_framebuffer_cleanup
[21:50:22] =============== drm_test_framebuffer_create ===============
[21:50:22] [PASSED] ABGR8888 normal sizes
[21:50:22] [PASSED] ABGR8888 max sizes
[21:50:22] [PASSED] ABGR8888 pitch greater than min required
[21:50:22] [PASSED] ABGR8888 pitch less than min required
[21:50:22] [PASSED] ABGR8888 Invalid width
[21:50:22] [PASSED] ABGR8888 Invalid buffer handle
[21:50:22] [PASSED] No pixel format
[21:50:22] [PASSED] ABGR8888 Width 0
[21:50:22] [PASSED] ABGR8888 Height 0
[21:50:22] [PASSED] ABGR8888 Out of bound height * pitch combination
[21:50:22] [PASSED] ABGR8888 Large buffer offset
[21:50:22] [PASSED] ABGR8888 Buffer offset for inexistent plane
[21:50:22] [PASSED] ABGR8888 Invalid flag
[21:50:22] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[21:50:22] [PASSED] ABGR8888 Valid buffer modifier
[21:50:22] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[21:50:22] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[21:50:22] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[21:50:22] [PASSED] NV12 Normal sizes
[21:50:22] [PASSED] NV12 Max sizes
[21:50:22] [PASSED] NV12 Invalid pitch
[21:50:22] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[21:50:22] [PASSED] NV12 different modifier per-plane
[21:50:22] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[21:50:22] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[21:50:22] [PASSED] NV12 Modifier for inexistent plane
[21:50:22] [PASSED] NV12 Handle for inexistent plane
[21:50:22] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[21:50:22] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[21:50:22] [PASSED] YVU420 Normal sizes
[21:50:22] [PASSED] YVU420 Max sizes
[21:50:22] [PASSED] YVU420 Invalid pitch
[21:50:22] [PASSED] YVU420 Different pitches
[21:50:22] [PASSED] YVU420 Different buffer offsets/pitches
[21:50:22] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[21:50:22] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[21:50:22] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[21:50:22] [PASSED] YVU420 Valid modifier
[21:50:22] [PASSED] YVU420 Different modifiers per plane
[21:50:22] [PASSED] YVU420 Modifier for inexistent plane
[21:50:22] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[21:50:22] [PASSED] X0L2 Normal sizes
[21:50:22] [PASSED] X0L2 Max sizes
[21:50:22] [PASSED] X0L2 Invalid pitch
[21:50:22] [PASSED] X0L2 Pitch greater than minimum required
[21:50:22] [PASSED] X0L2 Handle for inexistent plane
[21:50:22] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[21:50:22] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[21:50:22] [PASSED] X0L2 Valid modifier
[21:50:22] [PASSED] X0L2 Modifier for inexistent plane
[21:50:22] =========== [PASSED] drm_test_framebuffer_create ===========
[21:50:22] [PASSED] drm_test_framebuffer_free
[21:50:22] [PASSED] drm_test_framebuffer_init
[21:50:22] [PASSED] drm_test_framebuffer_init_bad_format
[21:50:22] [PASSED] drm_test_framebuffer_init_dev_mismatch
[21:50:22] [PASSED] drm_test_framebuffer_lookup
[21:50:22] [PASSED] drm_test_framebuffer_lookup_inexistent
[21:50:22] [PASSED] drm_test_framebuffer_modifiers_not_supported
[21:50:22] ================= [PASSED] drm_framebuffer =================
[21:50:22] ================ drm_gem_shmem (8 subtests) ================
[21:50:22] [PASSED] drm_gem_shmem_test_obj_create
[21:50:22] [PASSED] drm_gem_shmem_test_obj_create_private
[21:50:22] [PASSED] drm_gem_shmem_test_pin_pages
[21:50:22] [PASSED] drm_gem_shmem_test_vmap
[21:50:22] [PASSED] drm_gem_shmem_test_get_sg_table
[21:50:22] [PASSED] drm_gem_shmem_test_get_pages_sgt
[21:50:22] [PASSED] drm_gem_shmem_test_madvise
[21:50:22] [PASSED] drm_gem_shmem_test_purge
[21:50:22] ================== [PASSED] drm_gem_shmem ==================
[21:50:22] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[21:50:22] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[21:50:22] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[21:50:22] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[21:50:22] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[21:50:22] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[21:50:22] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[21:50:22] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[21:50:22] [PASSED] Automatic
[21:50:22] [PASSED] Full
[21:50:22] [PASSED] Limited 16:235
[21:50:22] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[21:50:22] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[21:50:22] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[21:50:22] [PASSED] drm_test_check_disable_connector
[21:50:22] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[21:50:22] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[21:50:22] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[21:50:22] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[21:50:22] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[21:50:22] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[21:50:22] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[21:50:22] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[21:50:22] [PASSED] drm_test_check_output_bpc_dvi
[21:50:22] [PASSED] drm_test_check_output_bpc_format_vic_1
[21:50:22] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[21:50:22] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[21:50:22] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[21:50:22] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[21:50:22] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[21:50:22] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[21:50:22] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[21:50:22] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[21:50:22] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[21:50:22] [PASSED] drm_test_check_broadcast_rgb_value
[21:50:22] [PASSED] drm_test_check_bpc_8_value
[21:50:22] [PASSED] drm_test_check_bpc_10_value
[21:50:22] [PASSED] drm_test_check_bpc_12_value
[21:50:22] [PASSED] drm_test_check_format_value
[21:50:22] [PASSED] drm_test_check_tmds_char_value
[21:50:22] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[21:50:22] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[21:50:22] [PASSED] drm_test_check_mode_valid
[21:50:22] [PASSED] drm_test_check_mode_valid_reject
[21:50:22] [PASSED] drm_test_check_mode_valid_reject_rate
[21:50:22] [PASSED] drm_test_check_mode_valid_reject_max_clock
[21:50:22] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[21:50:22] ================= drm_managed (2 subtests) =================
[21:50:22] [PASSED] drm_test_managed_release_action
[21:50:22] [PASSED] drm_test_managed_run_action
[21:50:22] =================== [PASSED] drm_managed ===================
[21:50:22] =================== drm_mm (6 subtests) ====================
[21:50:22] [PASSED] drm_test_mm_init
[21:50:22] [PASSED] drm_test_mm_debug
[21:50:22] [PASSED] drm_test_mm_align32
[21:50:22] [PASSED] drm_test_mm_align64
[21:50:22] [PASSED] drm_test_mm_lowest
[21:50:22] [PASSED] drm_test_mm_highest
[21:50:22] ===================== [PASSED] drm_mm ======================
[21:50:22] ============= drm_modes_analog_tv (5 subtests) =============
[21:50:22] [PASSED] drm_test_modes_analog_tv_mono_576i
[21:50:22] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[21:50:22] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[21:50:22] [PASSED] drm_test_modes_analog_tv_pal_576i
[21:50:22] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[21:50:22] =============== [PASSED] drm_modes_analog_tv ===============
[21:50:22] ============== drm_plane_helper (2 subtests) ===============
[21:50:22] =============== drm_test_check_plane_state ================
[21:50:22] [PASSED] clipping_simple
[21:50:22] [PASSED] clipping_rotate_reflect
[21:50:22] [PASSED] positioning_simple
[21:50:22] [PASSED] upscaling
[21:50:22] [PASSED] downscaling
[21:50:22] [PASSED] rounding1
[21:50:22] [PASSED] rounding2
[21:50:22] [PASSED] rounding3
[21:50:22] [PASSED] rounding4
[21:50:22] =========== [PASSED] drm_test_check_plane_state ============
[21:50:22] =========== drm_test_check_invalid_plane_state ============
[21:50:22] [PASSED] positioning_invalid
[21:50:22] [PASSED] upscaling_invalid
[21:50:22] [PASSED] downscaling_invalid
[21:50:22] ======= [PASSED] drm_test_check_invalid_plane_state ========
[21:50:22] ================ [PASSED] drm_plane_helper =================
[21:50:22] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[21:50:22] ====== drm_test_connector_helper_tv_get_modes_check =======
[21:50:22] [PASSED] None
[21:50:22] [PASSED] PAL
[21:50:22] [PASSED] NTSC
[21:50:22] [PASSED] Both, NTSC Default
[21:50:22] [PASSED] Both, PAL Default
[21:50:22] [PASSED] Both, NTSC Default, with PAL on command-line
[21:50:22] [PASSED] Both, PAL Default, with NTSC on command-line
[21:50:22] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[21:50:22] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[21:50:22] ================== drm_rect (9 subtests) ===================
[21:50:22] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[21:50:22] [PASSED] drm_test_rect_clip_scaled_not_clipped
[21:50:22] [PASSED] drm_test_rect_clip_scaled_clipped
[21:50:22] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[21:50:22] ================= drm_test_rect_intersect =================
[21:50:22] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[21:50:22] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[21:50:22] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[21:50:22] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[21:50:22] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[21:50:22] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[21:50:22] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[21:50:22] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[21:50:22] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[21:50:22] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[21:50:22] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[21:50:22] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[21:50:22] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[21:50:22] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[21:50:22] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[21:50:22] ============= [PASSED] drm_test_rect_intersect =============
[21:50:22] ================ drm_test_rect_calc_hscale ================
[21:50:22] [PASSED] normal use
[21:50:22] [PASSED] out of max range
[21:50:22] [PASSED] out of min range
[21:50:22] [PASSED] zero dst
[21:50:22] [PASSED] negative src
[21:50:22] [PASSED] negative dst
[21:50:22] ============ [PASSED] drm_test_rect_calc_hscale ============
[21:50:22] ================ drm_test_rect_calc_vscale ================
[21:50:22] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[21:50:22] [PASSED] out of max range
[21:50:22] [PASSED] out of min range
[21:50:22] [PASSED] zero dst
[21:50:22] [PASSED] negative src
[21:50:22] [PASSED] negative dst
[21:50:22] ============ [PASSED] drm_test_rect_calc_vscale ============
[21:50:22] ================== drm_test_rect_rotate ===================
[21:50:22] [PASSED] reflect-x
[21:50:22] [PASSED] reflect-y
[21:50:22] [PASSED] rotate-0
[21:50:22] [PASSED] rotate-90
[21:50:22] [PASSED] rotate-180
[21:50:22] [PASSED] rotate-270
[21:50:22] ============== [PASSED] drm_test_rect_rotate ===============
[21:50:22] ================ drm_test_rect_rotate_inv =================
[21:50:22] [PASSED] reflect-x
[21:50:22] [PASSED] reflect-y
[21:50:22] [PASSED] rotate-0
[21:50:22] [PASSED] rotate-90
[21:50:22] [PASSED] rotate-180
[21:50:22] [PASSED] rotate-270
[21:50:22] ============ [PASSED] drm_test_rect_rotate_inv =============
[21:50:22] ==================== [PASSED] drm_rect =====================
[21:50:22] ============ drm_sysfb_modeset_test (1 subtest) ============
[21:50:22] ============ drm_test_sysfb_build_fourcc_list =============
[21:50:22] [PASSED] no native formats
[21:50:22] [PASSED] XRGB8888 as native format
[21:50:22] [PASSED] remove duplicates
[21:50:22] [PASSED] convert alpha formats
[21:50:22] [PASSED] random formats
[21:50:22] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[21:50:22] ============= [PASSED] drm_sysfb_modeset_test ==============
[21:50:22] ================== drm_fixp (2 subtests) ===================
[21:50:22] [PASSED] drm_test_int2fixp
[21:50:22] [PASSED] drm_test_sm2fixp
[21:50:22] ==================== [PASSED] drm_fixp =====================
[21:50:22] ============================================================
[21:50:22] Testing complete. Ran 624 tests: passed: 624
[21:50:22] Elapsed time: 27.510s total, 1.710s configuring, 25.383s building, 0.377s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[21:50:22] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:50:23] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[21:50:33] Starting KUnit Kernel (1/1)...
[21:50:33] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:50:33] ================= ttm_device (5 subtests) ==================
[21:50:33] [PASSED] ttm_device_init_basic
[21:50:33] [PASSED] ttm_device_init_multiple
[21:50:33] [PASSED] ttm_device_fini_basic
[21:50:33] [PASSED] ttm_device_init_no_vma_man
[21:50:33] ================== ttm_device_init_pools ==================
[21:50:33] [PASSED] No DMA allocations, no DMA32 required
[21:50:33] [PASSED] DMA allocations, DMA32 required
[21:50:33] [PASSED] No DMA allocations, DMA32 required
[21:50:33] [PASSED] DMA allocations, no DMA32 required
[21:50:33] ============== [PASSED] ttm_device_init_pools ==============
[21:50:33] =================== [PASSED] ttm_device ====================
[21:50:33] ================== ttm_pool (8 subtests) ===================
[21:50:33] ================== ttm_pool_alloc_basic ===================
[21:50:33] [PASSED] One page
[21:50:33] [PASSED] More than one page
[21:50:33] [PASSED] Above the allocation limit
[21:50:33] [PASSED] One page, with coherent DMA mappings enabled
[21:50:33] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[21:50:33] ============== [PASSED] ttm_pool_alloc_basic ===============
[21:50:33] ============== ttm_pool_alloc_basic_dma_addr ==============
[21:50:33] [PASSED] One page
[21:50:33] [PASSED] More than one page
[21:50:33] [PASSED] Above the allocation limit
[21:50:33] [PASSED] One page, with coherent DMA mappings enabled
[21:50:33] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[21:50:33] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[21:50:33] [PASSED] ttm_pool_alloc_order_caching_match
[21:50:33] [PASSED] ttm_pool_alloc_caching_mismatch
[21:50:33] [PASSED] ttm_pool_alloc_order_mismatch
[21:50:33] [PASSED] ttm_pool_free_dma_alloc
[21:50:33] [PASSED] ttm_pool_free_no_dma_alloc
[21:50:33] [PASSED] ttm_pool_fini_basic
[21:50:33] ==================== [PASSED] ttm_pool =====================
[21:50:33] ================ ttm_resource (8 subtests) =================
[21:50:33] ================= ttm_resource_init_basic =================
[21:50:33] [PASSED] Init resource in TTM_PL_SYSTEM
[21:50:33] [PASSED] Init resource in TTM_PL_VRAM
[21:50:33] [PASSED] Init resource in a private placement
[21:50:33] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[21:50:33] ============= [PASSED] ttm_resource_init_basic =============
[21:50:33] [PASSED] ttm_resource_init_pinned
[21:50:33] [PASSED] ttm_resource_fini_basic
[21:50:33] [PASSED] ttm_resource_manager_init_basic
[21:50:33] [PASSED] ttm_resource_manager_usage_basic
[21:50:33] [PASSED] ttm_resource_manager_set_used_basic
[21:50:33] [PASSED] ttm_sys_man_alloc_basic
[21:50:33] [PASSED] ttm_sys_man_free_basic
[21:50:33] ================== [PASSED] ttm_resource ===================
[21:50:33] =================== ttm_tt (15 subtests) ===================
[21:50:33] ==================== ttm_tt_init_basic ====================
[21:50:33] [PASSED] Page-aligned size
[21:50:33] [PASSED] Extra pages requested
[21:50:33] ================ [PASSED] ttm_tt_init_basic ================
[21:50:33] [PASSED] ttm_tt_init_misaligned
[21:50:33] [PASSED] ttm_tt_fini_basic
[21:50:33] [PASSED] ttm_tt_fini_sg
[21:50:33] [PASSED] ttm_tt_fini_shmem
[21:50:33] [PASSED] ttm_tt_create_basic
[21:50:33] [PASSED] ttm_tt_create_invalid_bo_type
[21:50:33] [PASSED] ttm_tt_create_ttm_exists
[21:50:33] [PASSED] ttm_tt_create_failed
[21:50:33] [PASSED] ttm_tt_destroy_basic
[21:50:33] [PASSED] ttm_tt_populate_null_ttm
[21:50:33] [PASSED] ttm_tt_populate_populated_ttm
[21:50:33] [PASSED] ttm_tt_unpopulate_basic
[21:50:33] [PASSED] ttm_tt_unpopulate_empty_ttm
[21:50:33] [PASSED] ttm_tt_swapin_basic
[21:50:33] ===================== [PASSED] ttm_tt ======================
[21:50:33] =================== ttm_bo (14 subtests) ===================
[21:50:33] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[21:50:33] [PASSED] Cannot be interrupted and sleeps
[21:50:33] [PASSED] Cannot be interrupted, locks straight away
[21:50:33] [PASSED] Can be interrupted, sleeps
[21:50:33] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[21:50:33] [PASSED] ttm_bo_reserve_locked_no_sleep
[21:50:33] [PASSED] ttm_bo_reserve_no_wait_ticket
[21:50:33] [PASSED] ttm_bo_reserve_double_resv
[21:50:33] [PASSED] ttm_bo_reserve_interrupted
[21:50:33] [PASSED] ttm_bo_reserve_deadlock
[21:50:33] [PASSED] ttm_bo_unreserve_basic
[21:50:33] [PASSED] ttm_bo_unreserve_pinned
[21:50:33] [PASSED] ttm_bo_unreserve_bulk
[21:50:33] [PASSED] ttm_bo_fini_basic
[21:50:33] [PASSED] ttm_bo_fini_shared_resv
[21:50:33] [PASSED] ttm_bo_pin_basic
[21:50:33] [PASSED] ttm_bo_pin_unpin_resource
[21:50:33] [PASSED] ttm_bo_multiple_pin_one_unpin
[21:50:33] ===================== [PASSED] ttm_bo ======================
[21:50:33] ============== ttm_bo_validate (21 subtests) ===============
[21:50:33] ============== ttm_bo_init_reserved_sys_man ===============
[21:50:33] [PASSED] Buffer object for userspace
[21:50:33] [PASSED] Kernel buffer object
[21:50:33] [PASSED] Shared buffer object
[21:50:33] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[21:50:33] ============== ttm_bo_init_reserved_mock_man ==============
[21:50:33] [PASSED] Buffer object for userspace
[21:50:33] [PASSED] Kernel buffer object
[21:50:33] [PASSED] Shared buffer object
[21:50:33] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[21:50:33] [PASSED] ttm_bo_init_reserved_resv
[21:50:33] ================== ttm_bo_validate_basic ==================
[21:50:33] [PASSED] Buffer object for userspace
[21:50:33] [PASSED] Kernel buffer object
[21:50:33] [PASSED] Shared buffer object
[21:50:33] ============== [PASSED] ttm_bo_validate_basic ==============
[21:50:33] [PASSED] ttm_bo_validate_invalid_placement
[21:50:33] ============= ttm_bo_validate_same_placement ==============
[21:50:33] [PASSED] System manager
[21:50:33] [PASSED] VRAM manager
[21:50:33] ========= [PASSED] ttm_bo_validate_same_placement ==========
[21:50:33] [PASSED] ttm_bo_validate_failed_alloc
[21:50:33] [PASSED] ttm_bo_validate_pinned
[21:50:33] [PASSED] ttm_bo_validate_busy_placement
[21:50:33] ================ ttm_bo_validate_multihop =================
[21:50:33] [PASSED] Buffer object for userspace
[21:50:33] [PASSED] Kernel buffer object
[21:50:33] [PASSED] Shared buffer object
[21:50:33] ============ [PASSED] ttm_bo_validate_multihop =============
[21:50:33] ========== ttm_bo_validate_no_placement_signaled ==========
[21:50:33] [PASSED] Buffer object in system domain, no page vector
[21:50:33] [PASSED] Buffer object in system domain with an existing page vector
[21:50:33] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[21:50:33] ======== ttm_bo_validate_no_placement_not_signaled ========
[21:50:33] [PASSED] Buffer object for userspace
[21:50:33] [PASSED] Kernel buffer object
[21:50:33] [PASSED] Shared buffer object
[21:50:33] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[21:50:33] [PASSED] ttm_bo_validate_move_fence_signaled
[21:50:33] ========= ttm_bo_validate_move_fence_not_signaled =========
[21:50:33] [PASSED] Waits for GPU
[21:50:33] [PASSED] Tries to lock straight away
[21:50:33] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[21:50:33] [PASSED] ttm_bo_validate_happy_evict
[21:50:33] [PASSED] ttm_bo_validate_all_pinned_evict
[21:50:33] [PASSED] ttm_bo_validate_allowed_only_evict
[21:50:33] [PASSED] ttm_bo_validate_deleted_evict
[21:50:33] [PASSED] ttm_bo_validate_busy_domain_evict
[21:50:33] [PASSED] ttm_bo_validate_evict_gutting
[21:50:33] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[21:50:33] ================= [PASSED] ttm_bo_validate =================
[21:50:33] ============================================================
[21:50:33] Testing complete. Ran 101 tests: passed: 101
[21:50:33] Elapsed time: 11.382s total, 1.632s configuring, 9.534s building, 0.184s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe/mert: Minor improvements to MERT code (rev2)
2026-01-09 15:12 [PATCH 0/5] drm/xe/mert: Minor improvements to MERT code Michal Wajdeczko
` (9 preceding siblings ...)
2026-01-11 21:50 ` ✓ CI.KUnit: success for drm/xe/mert: Minor improvements to MERT code (rev2) Patchwork
@ 2026-01-11 22:25 ` Patchwork
2026-01-11 23:18 ` ✗ Xe.CI.Full: failure " Patchwork
11 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-01-11 22:25 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1415 bytes --]
== Series Details ==
Series: drm/xe/mert: Minor improvements to MERT code (rev2)
URL : https://patchwork.freedesktop.org/series/159880/
State : success
== Summary ==
CI Bug Log - changes from xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39_BAT -> xe-pw-159880v2_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-159880v2_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_waitfence@reltime:
- bat-dg2-oem2: [PASS][1] -> [FAIL][2] ([Intel XE#6520])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
Build changes
-------------
* Linux: xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39 -> xe-pw-159880v2
IGT_8694: 8694
xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39: 629c8a9146d75c96e2704592f8764f9553b5fd39
xe-pw-159880v2: 159880v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/index.html
[-- Attachment #2: Type: text/html, Size: 1980 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ Xe.CI.Full: failure for drm/xe/mert: Minor improvements to MERT code (rev2)
2026-01-09 15:12 [PATCH 0/5] drm/xe/mert: Minor improvements to MERT code Michal Wajdeczko
` (10 preceding siblings ...)
2026-01-11 22:25 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-01-11 23:18 ` Patchwork
11 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-01-11 23:18 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 28699 bytes --]
== Series Details ==
Series: drm/xe/mert: Minor improvements to MERT code (rev2)
URL : https://patchwork.freedesktop.org/series/159880/
State : failure
== Summary ==
CI Bug Log - changes from xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39_FULL -> xe-pw-159880v2_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-159880v2_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-159880v2_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 (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-159880v2_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-system:
- shard-lnl: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39/shard-lnl-1/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-system.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-lnl-1/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-system.html
Known issues
------------
Here are the changes found in xe-pw-159880v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-3/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#607])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +9 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#610])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2314] / [Intel XE#2894])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-3/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#367]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-9/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2652] / [Intel XE#787]) +26 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#3432])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2887]) +14 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2325])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-3/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2252]) +6 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-dp-2:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#6969]) +4 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-3/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-dp-2.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2390]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-9/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#6974])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-3/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][17] ([Intel XE#3304]) +1 other test fail
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][18] ([Intel XE#1178] / [Intel XE#3304]) +1 other test fail
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-9/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2321]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2320]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-sliding-256x256:
- shard-bmg: NOTRUN -> [FAIL][21] ([Intel XE#6747]) +1 other test fail
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-256x256.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2286])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#4354]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2375])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-9/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2293]) +4 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#4141]) +14 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2352])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2311]) +29 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2313]) +26 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_hdr@static-toggle@pipe-a-dp-2:
- shard-bmg: [PASS][31] -> [ABORT][32] ([Intel XE#6740]) +1 other test abort
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39/shard-bmg-2/igt@kms_hdr@static-toggle@pipe-a-dp-2.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-9/igt@kms_hdr@static-toggle@pipe-a-dp-2.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#6911])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2501])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#4329] / [Intel XE#6912])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0:
- shard-lnl: [PASS][36] -> [FAIL][37] ([Intel XE#5195]) +1 other test fail
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39/shard-lnl-2/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-lnl-5/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html
* igt@kms_plane_multiple@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#5020])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-9/igt@kms_plane_multiple@tiling-y.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2505])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-10/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@package-g7:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#6814])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-9/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#1406] / [Intel XE#1489]) +7 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +11 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-9/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#1406] / [Intel XE#2414])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-9/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2330])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2413])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#6503]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_vrr@flipline:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#1499])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-9/igt@kms_vrr@flipline.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2168])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-3/igt@kms_vrr@lobf.html
* igt@xe_eudebug@vma-ufence:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#4837]) +7 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-3/igt@xe_eudebug@vma-ufence.html
* igt@xe_eudebug_online@pagefault-write:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-3/igt@xe_eudebug_online@pagefault-write.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2322]) +5 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
* igt@xe_exec_multi_queue@two-queues-basic-smem:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#6874]) +29 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-basic-smem.html
* igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#4943]) +22 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-3/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@many-stride-new-prefetch:
- shard-bmg: NOTRUN -> [INCOMPLETE][56] ([Intel XE#6480])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-bmg: NOTRUN -> [ABORT][57] ([Intel XE#5466])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-10/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70]) -> ([PASS][71], [PASS][72], [SKIP][73], [PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83]) ([Intel XE#2457])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39/shard-bmg-10/igt@xe_module_load@load.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39/shard-bmg-3/igt@xe_module_load@load.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39/shard-bmg-3/igt@xe_module_load@load.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39/shard-bmg-1/igt@xe_module_load@load.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39/shard-bmg-2/igt@xe_module_load@load.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39/shard-bmg-2/igt@xe_module_load@load.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39/shard-bmg-1/igt@xe_module_load@load.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39/shard-bmg-3/igt@xe_module_load@load.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39/shard-bmg-9/igt@xe_module_load@load.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39/shard-bmg-10/igt@xe_module_load@load.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39/shard-bmg-10/igt@xe_module_load@load.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39/shard-bmg-1/igt@xe_module_load@load.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39/shard-bmg-9/igt@xe_module_load@load.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-10/igt@xe_module_load@load.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-3/igt@xe_module_load@load.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@xe_module_load@load.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-3/igt@xe_module_load@load.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-1/igt@xe_module_load@load.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@xe_module_load@load.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@xe_module_load@load.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-9/igt@xe_module_load@load.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-1/igt@xe_module_load@load.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-10/igt@xe_module_load@load.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-9/igt@xe_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-10/igt@xe_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-9/igt@xe_module_load@load.html
* igt@xe_multigpu_svm@mgpu-latency-prefetch:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#6964]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-3/igt@xe_multigpu_svm@mgpu-latency-prefetch.html
* igt@xe_pxp@pxp-stale-queue-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#4733])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@xe_pxp@pxp-stale-queue-post-termination-irq.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#944]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-3/igt@xe_query@multigpu-query-invalid-cs-cycles.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [FAIL][87] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][88] +1 other test pass
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39/shard-bmg-10/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-10/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a3:
- shard-bmg: [ABORT][89] ([Intel XE#3970]) -> [PASS][90] +1 other test pass
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39/shard-bmg-1/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a3.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a3.html
* igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3:
- shard-bmg: [DMESG-WARN][91] ([Intel XE#3970]) -> [PASS][92] +2 other tests pass
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39/shard-bmg-1/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
* igt@kms_setmode@basic@pipe-a-edp-1:
- shard-lnl: [FAIL][93] ([Intel XE#6361]) -> [PASS][94] +1 other test pass
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39/shard-lnl-1/igt@kms_setmode@basic@pipe-a-edp-1.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-lnl-4/igt@kms_setmode@basic@pipe-a-edp-1.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][95] ([Intel XE#4459]) -> [PASS][96] +1 other test pass
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@testdisplay:
- shard-bmg: [ABORT][97] ([Intel XE#6740] / [Intel XE#6976]) -> [PASS][98]
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39/shard-bmg-3/igt@testdisplay.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/shard-bmg-2/igt@testdisplay.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[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#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5195
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
[Intel XE#6480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6480
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740
[Intel XE#6747]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6747
[Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#6976]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6976
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39 -> xe-pw-159880v2
IGT_8694: 8694
xe-4364-629c8a9146d75c96e2704592f8764f9553b5fd39: 629c8a9146d75c96e2704592f8764f9553b5fd39
xe-pw-159880v2: 159880v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159880v2/index.html
[-- Attachment #2: Type: text/html, Size: 31536 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
end of thread, other threads:[~2026-01-11 23:18 UTC | newest]
Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-09 15:12 [PATCH 0/5] drm/xe/mert: Minor improvements to MERT code Michal Wajdeczko
2026-01-09 15:12 ` [PATCH 1/5] drm/xe/mert: Normalize xe_mert.h include guards Michal Wajdeczko
2026-01-09 15:59 ` Laguna, Lukasz
2026-01-09 15:12 ` [PATCH 2/5] drm/xe/mert: Fix kernel-doc for struct xe_mert Michal Wajdeczko
2026-01-09 16:00 ` Laguna, Lukasz
2026-01-09 15:12 ` [PATCH 3/5] drm/xe/mert: Always refer to MERT using xe_device Michal Wajdeczko
2026-01-09 17:04 ` Laguna, Lukasz
2026-01-11 21:38 ` [PATCH v2 " Michal Wajdeczko
2026-01-09 15:12 ` [PATCH 4/5] drm/xe/mert: Use local mert variable to simplify the code Michal Wajdeczko
2026-01-09 16:21 ` Laguna, Lukasz
2026-01-09 15:12 ` [PATCH 5/5] drm/xe/mert: Move MERT initialization to xe_mert.c Michal Wajdeczko
2026-01-09 17:07 ` Laguna, Lukasz
2026-01-09 15:19 ` ✓ CI.KUnit: success for drm/xe/mert: Minor improvements to MERT code Patchwork
2026-01-09 16:01 ` ✓ Xe.CI.BAT: " Patchwork
2026-01-09 16:49 ` [PATCH 0/5] " Laguna, Lukasz
2026-01-09 20:02 ` ✓ Xe.CI.Full: success for " Patchwork
2026-01-11 21:50 ` ✓ CI.KUnit: success for drm/xe/mert: Minor improvements to MERT code (rev2) Patchwork
2026-01-11 22:25 ` ✓ Xe.CI.BAT: " Patchwork
2026-01-11 23:18 ` ✗ Xe.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox