* [PATCH v7 0/9] drm/xe/sysctrl: Clean up error handling in
@ 2026-09-07 10:53 Mallesh Koujalagi
2026-09-07 10:53 ` [PATCH v7 1/9] drm/xe/sysctrl: Return error codes from sysctrl_wait_bit_clear() Mallesh Koujalagi
` (13 more replies)
0 siblings, 14 replies; 21+ messages in thread
From: Mallesh Koujalagi @ 2026-09-07 10:53 UTC (permalink / raw)
To: intel-xe, rodrigo.vivi, matthew.brost
Cc: anshuman.gupta, badal.nilawar, vinay.belgaumkar, riana.tauro,
karthik.poosa, sk.anirban, raag.jadav, michal.wajdeczko,
aravind.iddamsetty, umesh.nerlige.ramappa, dnyaneshwar.bhadane,
anoop.c.vijay, Mallesh Koujalagi
The patch series improves error handling in the System Controller mailbox
driver by making error propagation more consistent and using
xe_log_err() for structured error reporting.
It also removes a few redundant checks and simplifies helper
interfaces where no error path exists.
v2:
- Use -EOVERFLOW.
- Drop sysctrl in xe_log_err. (Michal)
- Drop redundant %pe.
- Print response->count.
v3:
- Rebase.
v4:
- Replace xe_warn to xe_log_err_info for. (Michal)
- Use xe_assert().
- Change sysctrl_wait_bit_* to return errno.
- Make sysctrl_write_frame return type as void.
- Log mismatched header info.
v5:
- Fix align issue. (Michal)
- Use %#x after REG_FIELD_GET change.
- Use REG_FIELD_GET instead of FIELD_GET.
- Modify logging message.
- Change Error as EXFULL.
- Update logging message.
v6:
- Move REG_FIELD_GET to different patch. (Michal)
- Update response message.
- Move all REG_FIELD_GET to single patch.
- Update log message. (Michal)
- Change correct errno. (Michal)
v7:
- Update FIELD_PREP to REG_FIELD_PREP. (Michal/Sashiko)
- Update FIELD_GET to REG_FIELD_GET.
- Remove le32_to_cpu. (Michal)
Mallesh Koujalagi (9):
drm/xe/sysctrl: Return error codes from sysctrl_wait_bit_clear()
drm/xe/sysctrl: Return error codes from sysctrl_wait_bit_set()
drm/xe/sysctrl: Make sysctrl_write_frame() void
drm/xe/sysctrl: Make sysctrl_read_frame() void
drm/xe/sysctrl: Use xe_assert() for payload size validation
drm/xe/sysctrl: Replace FIELD_GET() with REG_FIELD_GET()
drm/xe/sysctrl: Improve firmware response error logging
drm/xe/sysctrl: Log group and command ID on mailbox failure
drm/xe/sysctrl: Report 'System Controller event' error using SIGID
drivers/gpu/drm/xe/xe_sysctrl_event.c | 14 +--
drivers/gpu/drm/xe/xe_sysctrl_mailbox.c | 108 +++++++++++-------------
drivers/gpu/drm/xe/xe_sysctrl_mailbox.h | 6 +-
3 files changed, 60 insertions(+), 68 deletions(-)
--
2.48.1
^ permalink raw reply [flat|nested] 21+ messages in thread
* [PATCH v7 1/9] drm/xe/sysctrl: Return error codes from sysctrl_wait_bit_clear()
2026-09-07 10:53 [PATCH v7 0/9] drm/xe/sysctrl: Clean up error handling in Mallesh Koujalagi
@ 2026-09-07 10:53 ` Mallesh Koujalagi
2026-09-07 10:53 ` [PATCH v7 2/9] drm/xe/sysctrl: Return error codes from sysctrl_wait_bit_set() Mallesh Koujalagi
` (12 subsequent siblings)
13 siblings, 0 replies; 21+ messages in thread
From: Mallesh Koujalagi @ 2026-09-07 10:53 UTC (permalink / raw)
To: intel-xe, rodrigo.vivi, matthew.brost
Cc: anshuman.gupta, badal.nilawar, vinay.belgaumkar, riana.tauro,
karthik.poosa, sk.anirban, raag.jadav, michal.wajdeczko,
aravind.iddamsetty, umesh.nerlige.ramappa, dnyaneshwar.bhadane,
anoop.c.vijay, Mallesh Koujalagi
Make sysctrl_wait_bit_clear() return an error code rather than a bool
and update callers to use xe_log_err() with the propagated error code.
Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
v5:
- Fix align issue. (Michal)
---
drivers/gpu/drm/xe/xe_sysctrl_mailbox.c | 28 ++++++++++++-------------
1 file changed, 14 insertions(+), 14 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
index 72baf1aa4b3a..c36cac8c6288 100644
--- a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
+++ b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
@@ -11,6 +11,7 @@
#include "regs/xe_sysctrl_regs.h"
#include "xe_device.h"
+#include "xe_log.h"
#include "xe_mmio.h"
#include "xe_pm.h"
#include "xe_printk.h"
@@ -34,15 +35,11 @@ struct xe_sysctrl_mailbox_msg_hdr {
#define XE_SYSCTRL_HDR_RESULT(hdr) \
FIELD_GET(SYSCTRL_HDR_RESULT_MASK, le32_to_cpu((hdr)->data))
-static bool sysctrl_wait_bit_clear(struct xe_sysctrl *sc, u32 bit_mask,
- unsigned int timeout_ms)
+static int sysctrl_wait_bit_clear(struct xe_sysctrl *sc, u32 bit_mask,
+ unsigned int timeout_ms)
{
- int ret;
-
- ret = xe_mmio_wait32_not(sc->mmio, SYSCTRL_MB_CTRL, bit_mask, bit_mask,
- timeout_ms * 1000, NULL, false);
-
- return ret == 0;
+ return xe_mmio_wait32_not(sc->mmio, SYSCTRL_MB_CTRL, bit_mask, bit_mask,
+ timeout_ms * 1000, NULL, false);
}
static bool sysctrl_wait_bit_set(struct xe_sysctrl *sc, u32 bit_mask,
@@ -146,12 +143,14 @@ static int sysctrl_send_frames(struct xe_sysctrl *sc,
u32 ctrl_reg, total_frames, frame;
size_t bytes_sent, frame_size;
bool phase;
+ int ret;
total_frames = DIV_ROUND_UP(cmd_size, XE_SYSCTRL_MB_FRAME_SIZE);
- if (!sysctrl_wait_bit_clear(sc, SYSCTRL_MB_CTRL_RUN_BUSY, timeout_ms)) {
- xe_err(xe, "sysctrl: Mailbox busy\n");
- return -EBUSY;
+ ret = sysctrl_wait_bit_clear(sc, SYSCTRL_MB_CTRL_RUN_BUSY, timeout_ms);
+ if (ret) {
+ xe_log_err(xe, SYSCTRL, ret, "Mailbox busy\n");
+ return ret;
}
ctrl_reg = xe_mmio_read32(sc->mmio, SYSCTRL_MB_CTRL);
@@ -174,9 +173,10 @@ static int sysctrl_send_frames(struct xe_sysctrl *sc,
xe_mmio_write32(sc->mmio, SYSCTRL_MB_CTRL, ctrl_reg);
- if (!sysctrl_wait_bit_clear(sc, SYSCTRL_MB_CTRL_RUN_BUSY, timeout_ms)) {
- xe_err(xe, "sysctrl: Frame %u acknowledgment timeout\n", frame);
- return -ETIMEDOUT;
+ ret = sysctrl_wait_bit_clear(sc, SYSCTRL_MB_CTRL_RUN_BUSY, timeout_ms);
+ if (ret) {
+ xe_log_err(xe, SYSCTRL, ret, "Frame %u acknowledgment timeout\n", frame);
+ return ret;
}
bytes_sent += frame_size;
--
2.48.1
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v7 2/9] drm/xe/sysctrl: Return error codes from sysctrl_wait_bit_set()
2026-09-07 10:53 [PATCH v7 0/9] drm/xe/sysctrl: Clean up error handling in Mallesh Koujalagi
2026-09-07 10:53 ` [PATCH v7 1/9] drm/xe/sysctrl: Return error codes from sysctrl_wait_bit_clear() Mallesh Koujalagi
@ 2026-09-07 10:53 ` Mallesh Koujalagi
2026-09-07 10:53 ` [PATCH v7 3/9] drm/xe/sysctrl: Make sysctrl_write_frame() void Mallesh Koujalagi
` (11 subsequent siblings)
13 siblings, 0 replies; 21+ messages in thread
From: Mallesh Koujalagi @ 2026-09-07 10:53 UTC (permalink / raw)
To: intel-xe, rodrigo.vivi, matthew.brost
Cc: anshuman.gupta, badal.nilawar, vinay.belgaumkar, riana.tauro,
karthik.poosa, sk.anirban, raag.jadav, michal.wajdeczko,
aravind.iddamsetty, umesh.nerlige.ramappa, dnyaneshwar.bhadane,
anoop.c.vijay, Mallesh Koujalagi
Make sysctrl_wait_bit_set() return an error code rather than a bool
and update callers to use xe_log_err() with the propagated error code.
Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
v5:
- Fix align issue. (Michal)
---
drivers/gpu/drm/xe/xe_sysctrl_mailbox.c | 19 ++++++++-----------
1 file changed, 8 insertions(+), 11 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
index c36cac8c6288..b3d1538c8990 100644
--- a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
+++ b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
@@ -42,15 +42,11 @@ static int sysctrl_wait_bit_clear(struct xe_sysctrl *sc, u32 bit_mask,
timeout_ms * 1000, NULL, false);
}
-static bool sysctrl_wait_bit_set(struct xe_sysctrl *sc, u32 bit_mask,
- unsigned int timeout_ms)
+static int sysctrl_wait_bit_set(struct xe_sysctrl *sc, u32 bit_mask,
+ unsigned int timeout_ms)
{
- int ret;
-
- ret = xe_mmio_wait32(sc->mmio, SYSCTRL_MB_CTRL, bit_mask, bit_mask,
- timeout_ms * 1000, NULL, false);
-
- return ret == 0;
+ return xe_mmio_wait32(sc->mmio, SYSCTRL_MB_CTRL, bit_mask, bit_mask,
+ timeout_ms * 1000, NULL, false);
}
static int sysctrl_write_frame(struct xe_sysctrl *sc, const void *frame,
@@ -193,9 +189,10 @@ static int sysctrl_process_frame(struct xe_sysctrl *sc, void *out,
struct xe_device *xe = sc_to_xe(sc);
int ret;
- if (!sysctrl_wait_bit_set(sc, SYSCTRL_MB_CTRL_RUN_BUSY_OUT, timeout_ms)) {
- xe_err(xe, "sysctrl: Response frame timeout\n");
- return -ETIMEDOUT;
+ ret = sysctrl_wait_bit_set(sc, SYSCTRL_MB_CTRL_RUN_BUSY_OUT, timeout_ms);
+ if (ret) {
+ xe_log_err(xe, SYSCTRL, ret, "Response frame timeout\n");
+ return ret;
}
ctrl_reg = xe_mmio_read32(sc->mmio, SYSCTRL_MB_CTRL);
--
2.48.1
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v7 3/9] drm/xe/sysctrl: Make sysctrl_write_frame() void
2026-09-07 10:53 [PATCH v7 0/9] drm/xe/sysctrl: Clean up error handling in Mallesh Koujalagi
2026-09-07 10:53 ` [PATCH v7 1/9] drm/xe/sysctrl: Return error codes from sysctrl_wait_bit_clear() Mallesh Koujalagi
2026-09-07 10:53 ` [PATCH v7 2/9] drm/xe/sysctrl: Return error codes from sysctrl_wait_bit_set() Mallesh Koujalagi
@ 2026-09-07 10:53 ` Mallesh Koujalagi
2026-09-07 10:53 ` [PATCH v7 4/9] drm/xe/sysctrl: Make sysctrl_read_frame() void Mallesh Koujalagi
` (10 subsequent siblings)
13 siblings, 0 replies; 21+ messages in thread
From: Mallesh Koujalagi @ 2026-09-07 10:53 UTC (permalink / raw)
To: intel-xe, rodrigo.vivi, matthew.brost
Cc: anshuman.gupta, badal.nilawar, vinay.belgaumkar, riana.tauro,
karthik.poosa, sk.anirban, raag.jadav, michal.wajdeczko,
aravind.iddamsetty, umesh.nerlige.ramappa, dnyaneshwar.bhadane,
anoop.c.vijay, Mallesh Koujalagi
The function always returned 0, so the int return type is misleading.
Convert to void and drop the error handling in the caller.
Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
drivers/gpu/drm/xe/xe_sysctrl_mailbox.c | 11 +++--------
1 file changed, 3 insertions(+), 8 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
index b3d1538c8990..3ef60067e226 100644
--- a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
+++ b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
@@ -49,8 +49,8 @@ static int sysctrl_wait_bit_set(struct xe_sysctrl *sc, u32 bit_mask,
timeout_ms * 1000, NULL, false);
}
-static int sysctrl_write_frame(struct xe_sysctrl *sc, const void *frame,
- size_t len)
+static void sysctrl_write_frame(struct xe_sysctrl *sc, const void *frame,
+ size_t len)
{
static const struct xe_reg regs[] = {
SYSCTRL_MB_DATA0, SYSCTRL_MB_DATA1, SYSCTRL_MB_DATA2, SYSCTRL_MB_DATA3
@@ -66,8 +66,6 @@ static int sysctrl_write_frame(struct xe_sysctrl *sc, const void *frame,
for (i = 0; i < dw; i++)
xe_mmio_write32(sc->mmio, regs[i], val[i]);
-
- return 0;
}
static int sysctrl_read_frame(struct xe_sysctrl *sc, void *frame,
@@ -156,10 +154,7 @@ static int sysctrl_send_frames(struct xe_sysctrl *sc,
for (frame = 0; frame < total_frames; frame++) {
frame_size = min_t(size_t, cmd_size - bytes_sent, XE_SYSCTRL_MB_FRAME_SIZE);
- if (sysctrl_write_frame(sc, mbox_cmd + bytes_sent, frame_size)) {
- xe_err(xe, "sysctrl: Failed to write frame %u\n", frame);
- return -EIO;
- }
+ sysctrl_write_frame(sc, mbox_cmd + bytes_sent, frame_size);
ctrl_reg = SYSCTRL_MB_CTRL_RUN_BUSY |
REG_FIELD_PREP(SYSCTRL_FRAME_CURRENT_MASK, frame) |
--
2.48.1
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v7 4/9] drm/xe/sysctrl: Make sysctrl_read_frame() void
2026-09-07 10:53 [PATCH v7 0/9] drm/xe/sysctrl: Clean up error handling in Mallesh Koujalagi
` (2 preceding siblings ...)
2026-09-07 10:53 ` [PATCH v7 3/9] drm/xe/sysctrl: Make sysctrl_write_frame() void Mallesh Koujalagi
@ 2026-09-07 10:53 ` Mallesh Koujalagi
2026-09-07 10:53 ` [PATCH v7 5/9] drm/xe/sysctrl: Use xe_assert() for payload size validation Mallesh Koujalagi
` (9 subsequent siblings)
13 siblings, 0 replies; 21+ messages in thread
From: Mallesh Koujalagi @ 2026-09-07 10:53 UTC (permalink / raw)
To: intel-xe, rodrigo.vivi, matthew.brost
Cc: anshuman.gupta, badal.nilawar, vinay.belgaumkar, riana.tauro,
karthik.poosa, sk.anirban, raag.jadav, michal.wajdeczko,
aravind.iddamsetty, umesh.nerlige.ramappa, dnyaneshwar.bhadane,
anoop.c.vijay, Mallesh Koujalagi
Convert it to return void and remove the unnecessary error
handling in sysctrl_process_frame().
Suggested-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
drivers/gpu/drm/xe/xe_sysctrl_mailbox.c | 11 +++--------
1 file changed, 3 insertions(+), 8 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
index 3ef60067e226..4841dd7f2724 100644
--- a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
+++ b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
@@ -68,8 +68,8 @@ static void sysctrl_write_frame(struct xe_sysctrl *sc, const void *frame,
xe_mmio_write32(sc->mmio, regs[i], val[i]);
}
-static int sysctrl_read_frame(struct xe_sysctrl *sc, void *frame,
- size_t len)
+static void sysctrl_read_frame(struct xe_sysctrl *sc, void *frame,
+ size_t len)
{
static const struct xe_reg regs[] = {
SYSCTRL_MB_DATA0, SYSCTRL_MB_DATA1, SYSCTRL_MB_DATA2, SYSCTRL_MB_DATA3
@@ -85,8 +85,6 @@ static int sysctrl_read_frame(struct xe_sysctrl *sc, void *frame,
val[i] = xe_mmio_read32(sc->mmio, regs[i]);
memcpy(frame, val, len);
-
- return 0;
}
static void sysctrl_clear_response(struct xe_sysctrl *sc)
@@ -194,10 +192,7 @@ static int sysctrl_process_frame(struct xe_sysctrl *sc, void *out,
total_frames = FIELD_GET(SYSCTRL_FRAME_TOTAL_MASK, ctrl_reg);
curr_frame = FIELD_GET(SYSCTRL_FRAME_CURRENT_MASK, ctrl_reg);
- ret = sysctrl_read_frame(sc, out, frame_size);
- if (ret)
- return ret;
-
+ sysctrl_read_frame(sc, out, frame_size);
sysctrl_clear_response(sc);
if (curr_frame == total_frames)
--
2.48.1
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v7 5/9] drm/xe/sysctrl: Use xe_assert() for payload size validation
2026-09-07 10:53 [PATCH v7 0/9] drm/xe/sysctrl: Clean up error handling in Mallesh Koujalagi
` (3 preceding siblings ...)
2026-09-07 10:53 ` [PATCH v7 4/9] drm/xe/sysctrl: Make sysctrl_read_frame() void Mallesh Koujalagi
@ 2026-09-07 10:53 ` Mallesh Koujalagi
2026-09-07 10:53 ` [PATCH v7 6/9] drm/xe/sysctrl: Replace FIELD_GET() with REG_FIELD_GET() Mallesh Koujalagi
` (8 subsequent siblings)
13 siblings, 0 replies; 21+ messages in thread
From: Mallesh Koujalagi @ 2026-09-07 10:53 UTC (permalink / raw)
To: intel-xe, rodrigo.vivi, matthew.brost
Cc: anshuman.gupta, badal.nilawar, vinay.belgaumkar, riana.tauro,
karthik.poosa, sk.anirban, raag.jadav, michal.wajdeczko,
aravind.iddamsetty, umesh.nerlige.ramappa, dnyaneshwar.bhadane,
anoop.c.vijay, Mallesh Koujalagi
Replace the runtime payload length check with xe_assert(),
as oversized messages should never reach code path.
Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
drivers/gpu/drm/xe/xe_sysctrl_mailbox.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
index 4841dd7f2724..50bbdab072de 100644
--- a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
+++ b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
@@ -103,10 +103,7 @@ static int sysctrl_prepare_command(struct xe_device *xe,
xe_assert(xe, command <= SYSCTRL_HDR_COMMAND_MAX);
- if (data_in_len > XE_SYSCTRL_MB_MAX_MESSAGE_SIZE - sizeof(*hdr)) {
- xe_err(xe, "sysctrl: Input data too large: %zu bytes\n", data_in_len);
- return -EINVAL;
- }
+ xe_assert(xe, data_in_len <= XE_SYSCTRL_MB_MAX_MESSAGE_SIZE - sizeof(*hdr));
size = sizeof(*hdr) + data_in_len;
--
2.48.1
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v7 6/9] drm/xe/sysctrl: Replace FIELD_GET() with REG_FIELD_GET()
2026-09-07 10:53 [PATCH v7 0/9] drm/xe/sysctrl: Clean up error handling in Mallesh Koujalagi
` (4 preceding siblings ...)
2026-09-07 10:53 ` [PATCH v7 5/9] drm/xe/sysctrl: Use xe_assert() for payload size validation Mallesh Koujalagi
@ 2026-09-07 10:53 ` Mallesh Koujalagi
2026-09-07 11:04 ` sashiko-bot
2026-09-07 11:47 ` Michal Wajdeczko
2026-09-07 10:53 ` [PATCH v7 7/9] drm/xe/sysctrl: Improve firmware response error logging Mallesh Koujalagi
` (7 subsequent siblings)
13 siblings, 2 replies; 21+ messages in thread
From: Mallesh Koujalagi @ 2026-09-07 10:53 UTC (permalink / raw)
To: intel-xe, rodrigo.vivi, matthew.brost
Cc: anshuman.gupta, badal.nilawar, vinay.belgaumkar, riana.tauro,
karthik.poosa, sk.anirban, raag.jadav, michal.wajdeczko,
aravind.iddamsetty, umesh.nerlige.ramappa, dnyaneshwar.bhadane,
anoop.c.vijay, Mallesh Koujalagi
Use REG_FIELD_GET() when extracting fields from SysCtrl and
application headers. This better reflects that the masks
represent register-style bitfields and improves consistency.
Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
---
v7:
- Update FIELD_PREP to REG_FIELD_PREP. (Sashiko)
- Update FIELD_GET to REG_FIELD_GET.
---
drivers/gpu/drm/xe/xe_sysctrl_mailbox.c | 20 ++++++++++----------
drivers/gpu/drm/xe/xe_sysctrl_mailbox.h | 6 +++---
2 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
index 50bbdab072de..cdd929ebed4a 100644
--- a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
+++ b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
@@ -24,16 +24,16 @@ struct xe_sysctrl_mailbox_msg_hdr {
} __packed;
#define XE_SYSCTRL_HDR_GROUP_ID(hdr) \
- FIELD_GET(SYSCTRL_HDR_GROUP_ID_MASK, le32_to_cpu((hdr)->data))
+ REG_FIELD_GET(SYSCTRL_HDR_GROUP_ID_MASK, le32_to_cpu((hdr)->data))
#define XE_SYSCTRL_HDR_COMMAND(hdr) \
- FIELD_GET(SYSCTRL_HDR_COMMAND_MASK, le32_to_cpu((hdr)->data))
+ REG_FIELD_GET(SYSCTRL_HDR_COMMAND_MASK, le32_to_cpu((hdr)->data))
#define XE_SYSCTRL_HDR_IS_RESPONSE(hdr) \
- FIELD_GET(SYSCTRL_HDR_IS_RESPONSE, le32_to_cpu((hdr)->data))
+ REG_FIELD_GET(SYSCTRL_HDR_IS_RESPONSE, le32_to_cpu((hdr)->data))
#define XE_SYSCTRL_HDR_RESULT(hdr) \
- FIELD_GET(SYSCTRL_HDR_RESULT_MASK, le32_to_cpu((hdr)->data))
+ REG_FIELD_GET(SYSCTRL_HDR_RESULT_MASK, le32_to_cpu((hdr)->data))
static int sysctrl_wait_bit_clear(struct xe_sysctrl *sc, u32 bit_mask,
unsigned int timeout_ms)
@@ -112,8 +112,8 @@ static int sysctrl_prepare_command(struct xe_device *xe,
return -ENOMEM;
hdr = (struct xe_sysctrl_mailbox_msg_hdr *)buffer;
- hdr->data = cpu_to_le32(FIELD_PREP(SYSCTRL_HDR_GROUP_ID_MASK, group_id) |
- FIELD_PREP(SYSCTRL_HDR_COMMAND_MASK, command));
+ hdr->data = cpu_to_le32(REG_FIELD_PREP(SYSCTRL_HDR_GROUP_ID_MASK, group_id) |
+ REG_FIELD_PREP(SYSCTRL_HDR_COMMAND_MASK, command));
if (data_in && data_in_len)
memcpy(buffer + sizeof(*hdr), data_in, data_in_len);
@@ -186,8 +186,8 @@ static int sysctrl_process_frame(struct xe_sysctrl *sc, void *out,
}
ctrl_reg = xe_mmio_read32(sc->mmio, SYSCTRL_MB_CTRL);
- total_frames = FIELD_GET(SYSCTRL_FRAME_TOTAL_MASK, ctrl_reg);
- curr_frame = FIELD_GET(SYSCTRL_FRAME_CURRENT_MASK, ctrl_reg);
+ total_frames = REG_FIELD_GET(SYSCTRL_FRAME_TOTAL_MASK, ctrl_reg);
+ curr_frame = REG_FIELD_GET(SYSCTRL_FRAME_CURRENT_MASK, ctrl_reg);
sysctrl_read_frame(sc, out, frame_size);
sysctrl_clear_response(sc);
@@ -295,8 +295,8 @@ void xe_sysctrl_create_command(struct xe_sysctrl_mailbox_command *command, u8 gr
{
struct xe_sysctrl_app_msg_hdr header = {0};
- header.data = FIELD_PREP(APP_HDR_GROUP_ID_MASK, group_id) |
- FIELD_PREP(APP_HDR_COMMAND_MASK, cmd_id);
+ header.data = REG_FIELD_PREP(APP_HDR_GROUP_ID_MASK, group_id) |
+ REG_FIELD_PREP(APP_HDR_COMMAND_MASK, cmd_id);
command->header = header;
command->data_in = request;
diff --git a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.h b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.h
index f0d5e3d7f5e3..5a3dd14e3a11 100644
--- a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.h
+++ b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.h
@@ -15,13 +15,13 @@ struct xe_sysctrl;
struct xe_sysctrl_mailbox_command;
#define XE_SYSCTRL_APP_HDR_GROUP_ID(hdr) \
- FIELD_GET(APP_HDR_GROUP_ID_MASK, (hdr)->data)
+ REG_FIELD_GET(APP_HDR_GROUP_ID_MASK, (hdr)->data)
#define XE_SYSCTRL_APP_HDR_COMMAND(hdr) \
- FIELD_GET(APP_HDR_COMMAND_MASK, (hdr)->data)
+ REG_FIELD_GET(APP_HDR_COMMAND_MASK, (hdr)->data)
#define XE_SYSCTRL_APP_HDR_VERSION(hdr) \
- FIELD_GET(APP_HDR_VERSION_MASK, (hdr)->data)
+ REG_FIELD_GET(APP_HDR_VERSION_MASK, (hdr)->data)
void xe_sysctrl_create_command(struct xe_sysctrl_mailbox_command *command, u8 group_id, u8 cmd_id,
void *request, size_t request_len, void *response,
--
2.48.1
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v7 7/9] drm/xe/sysctrl: Improve firmware response error logging
2026-09-07 10:53 [PATCH v7 0/9] drm/xe/sysctrl: Clean up error handling in Mallesh Koujalagi
` (5 preceding siblings ...)
2026-09-07 10:53 ` [PATCH v7 6/9] drm/xe/sysctrl: Replace FIELD_GET() with REG_FIELD_GET() Mallesh Koujalagi
@ 2026-09-07 10:53 ` Mallesh Koujalagi
2026-09-07 11:03 ` sashiko-bot
2026-09-07 10:53 ` [PATCH v7 8/9] drm/xe/sysctrl: Log group and command ID on mailbox failure Mallesh Koujalagi
` (6 subsequent siblings)
13 siblings, 1 reply; 21+ messages in thread
From: Mallesh Koujalagi @ 2026-09-07 10:53 UTC (permalink / raw)
To: intel-xe, rodrigo.vivi, matthew.brost
Cc: anshuman.gupta, badal.nilawar, vinay.belgaumkar, riana.tauro,
karthik.poosa, sk.anirban, raag.jadav, michal.wajdeczko,
aravind.iddamsetty, umesh.nerlige.ramappa, dnyaneshwar.bhadane,
anoop.c.vijay, Mallesh Koujalagi
Use xe_log_err() helper and include additional details when a
response header mismatch occurs.
Suggested-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
v5:
- Use %#x after REG_FIELD_GET change. (Michal)
v6:
- Move REG_FIELD_GET to different patch. (Michal)
- Update response message.
v7:
- Remove le32_to_cpu. (Michal)
---
drivers/gpu/drm/xe/xe_sysctrl_mailbox.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
index cdd929ebed4a..94ed2d378b89 100644
--- a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
+++ b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
@@ -233,13 +233,15 @@ static int sysctrl_receive_frames(struct xe_sysctrl *sc,
if (!XE_SYSCTRL_HDR_IS_RESPONSE(hdr) ||
XE_SYSCTRL_HDR_GROUP_ID(hdr) != XE_SYSCTRL_HDR_GROUP_ID(req) ||
XE_SYSCTRL_HDR_COMMAND(hdr) != XE_SYSCTRL_HDR_COMMAND(req)) {
- xe_err(xe, "sysctrl: Response header mismatch\n");
+ xe_log_err(xe, SYSCTRL, -EPROTO,
+ "Response header mismatch: %#x != %#x\n",
+ hdr->data, req->data);
return -EPROTO;
}
if (XE_SYSCTRL_HDR_RESULT(hdr) != 0) {
- xe_err(xe, "sysctrl: Firmware error: 0x%02lx\n",
- XE_SYSCTRL_HDR_RESULT(hdr));
+ xe_log_err(xe, SYSCTRL, -EIO, "Firmware error: %#04x\n",
+ XE_SYSCTRL_HDR_RESULT(hdr));
return -EIO;
}
--
2.48.1
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v7 8/9] drm/xe/sysctrl: Log group and command ID on mailbox failure
2026-09-07 10:53 [PATCH v7 0/9] drm/xe/sysctrl: Clean up error handling in Mallesh Koujalagi
` (6 preceding siblings ...)
2026-09-07 10:53 ` [PATCH v7 7/9] drm/xe/sysctrl: Improve firmware response error logging Mallesh Koujalagi
@ 2026-09-07 10:53 ` Mallesh Koujalagi
2026-09-07 10:53 ` [PATCH v7 9/9] drm/xe/sysctrl: Report 'System Controller event' error using SIGID Mallesh Koujalagi
` (5 subsequent siblings)
13 siblings, 0 replies; 21+ messages in thread
From: Mallesh Koujalagi @ 2026-09-07 10:53 UTC (permalink / raw)
To: intel-xe, rodrigo.vivi, matthew.brost
Cc: anshuman.gupta, badal.nilawar, vinay.belgaumkar, riana.tauro,
karthik.poosa, sk.anirban, raag.jadav, michal.wajdeczko,
aravind.iddamsetty, umesh.nerlige.ramappa, dnyaneshwar.bhadane,
anoop.c.vijay, Mallesh Koujalagi
Include the mailbox group ID and command code in error logs
for command preparation and execution failures.
Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
v5:
- Use REG_FIELD_GET instead of FIELD_GET. (Michal)
- Modify logging message.
v6:
- Move all REG_FIELD_GET to single patch.
- Update log message. (Michal)
---
drivers/gpu/drm/xe/xe_sysctrl_mailbox.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
index 94ed2d378b89..9e86b87a07bf 100644
--- a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
+++ b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
@@ -353,7 +353,8 @@ int xe_sysctrl_send_command(struct xe_sysctrl *sc,
cmd->data_in, cmd->data_in_len,
&mbox_cmd, &cmd_size);
if (ret) {
- xe_err(xe, "sysctrl: Failed to prepare command: %pe\n", ERR_PTR(ret));
+ xe_log_err(xe, SYSCTRL, ret, "Failed to prepare command %#x.%#x\n",
+ group_id, command_code);
return ret;
}
@@ -363,7 +364,8 @@ int xe_sysctrl_send_command(struct xe_sysctrl *sc,
cmd->data_out, cmd->data_out_len, rdata_len,
XE_SYSCTRL_MB_DEFAULT_TIMEOUT_MS);
if (ret)
- xe_err(xe, "sysctrl: Mailbox command failed: %pe\n", ERR_PTR(ret));
+ xe_log_err(xe, SYSCTRL, ret, "Mailbox command failed to send %#x.%#x\n",
+ group_id, command_code);
kfree(mbox_cmd);
--
2.48.1
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v7 9/9] drm/xe/sysctrl: Report 'System Controller event' error using SIGID
2026-09-07 10:53 [PATCH v7 0/9] drm/xe/sysctrl: Clean up error handling in Mallesh Koujalagi
` (7 preceding siblings ...)
2026-09-07 10:53 ` [PATCH v7 8/9] drm/xe/sysctrl: Log group and command ID on mailbox failure Mallesh Koujalagi
@ 2026-09-07 10:53 ` Mallesh Koujalagi
2026-09-07 12:19 ` ✓ CI.KUnit: success for drm/xe/sysctrl: Clean up error handling in (rev4) Patchwork
` (4 subsequent siblings)
13 siblings, 0 replies; 21+ messages in thread
From: Mallesh Koujalagi @ 2026-09-07 10:53 UTC (permalink / raw)
To: intel-xe, rodrigo.vivi, matthew.brost
Cc: anshuman.gupta, badal.nilawar, vinay.belgaumkar, riana.tauro,
karthik.poosa, sk.anirban, raag.jadav, michal.wajdeczko,
aravind.iddamsetty, umesh.nerlige.ramappa, dnyaneshwar.bhadane,
anoop.c.vijay, Mallesh Koujalagi
Report 'System Controller event' error using xe_log() helpers.
Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
v5:
- Change Error as EXFULL. (Michal)
- Update logging message.
v6:
- Change correct errno. (Michal)
---
drivers/gpu/drm/xe/xe_sysctrl_event.c | 14 +++++++++-----
1 file changed, 9 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_sysctrl_event.c b/drivers/gpu/drm/xe/xe_sysctrl_event.c
index 15ddd2d8bc6d..3239c110a66a 100644
--- a/drivers/gpu/drm/xe/xe_sysctrl_event.c
+++ b/drivers/gpu/drm/xe/xe_sysctrl_event.c
@@ -5,6 +5,7 @@
#include "xe_device.h"
#include "xe_irq.h"
+#include "xe_log.h"
#include "xe_printk.h"
#include "xe_ras.h"
#include "xe_sysctrl.h"
@@ -25,23 +26,26 @@ static void get_pending_event(struct xe_sysctrl *sc, struct xe_sysctrl_mailbox_c
ret = xe_sysctrl_send_command(sc, command, &len);
if (ret) {
- xe_err(xe, "sysctrl: failed to get pending event %d\n", ret);
+ xe_log_err(xe, SYSCTRL, ret, "Failed to get pending event\n");
return;
}
if (len != sizeof(*response)) {
- xe_err(xe, "sysctrl: unexpected event response length %zu (expected %zu)\n",
- len, sizeof(*response));
+ xe_log_err(xe, SYSCTRL, -EPROTO,
+ "Unexpected event response length %zu (expected %zu)\n",
+ len, sizeof(*response));
return;
}
if (response->event == XE_SYSCTRL_EVENT_THRESHOLD_CROSSED)
xe_ras_counter_threshold_crossed(xe, response);
else
- xe_warn(xe, "sysctrl: unexpected event %#x\n", response->event);
+ xe_log_err_info(xe, SYSCTRL, -ENOPKG,
+ "Unexpected event %#x\n", response->event);
if (!--count) {
- xe_err(xe, "sysctrl: event flooding\n");
+ xe_log_err(xe, SYSCTRL, -EXFULL,
+ "Ignored %u events due to flooding\n", response->count);
return;
}
--
2.48.1
^ permalink raw reply related [flat|nested] 21+ messages in thread
* Re: [PATCH v7 7/9] drm/xe/sysctrl: Improve firmware response error logging
2026-09-07 10:53 ` [PATCH v7 7/9] drm/xe/sysctrl: Improve firmware response error logging Mallesh Koujalagi
@ 2026-09-07 11:03 ` sashiko-bot
0 siblings, 0 replies; 21+ messages in thread
From: sashiko-bot @ 2026-09-07 11:03 UTC (permalink / raw)
To: Mallesh Koujalagi; +Cc: intel-xe
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Low] Passing restricted `__le32` fields to the `%x` format specifier causes Sparse warnings and prints byte-swapped values on big-endian architectures.
--
commit 76127f4976105bb1328499efbd66f71de155b1ba
Author: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
drm/xe/sysctrl: Improve firmware response error logging
This commit updates the error logging in sysctrl_receive_frames() to use
the xe_log_err() helper. It also includes additional details such as the
response header values when a firmware response mismatch occurs.
> diff --git a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
> index cdd929ebed4a6..94ed2d378b89a 100644
> --- a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
> +++ b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
> @@ -233,13 +233,15 @@ static int sysctrl_receive_frames(struct xe_sysctrl *sc,
> if (!XE_SYSCTRL_HDR_IS_RESPONSE(hdr) ||
> XE_SYSCTRL_HDR_GROUP_ID(hdr) != XE_SYSCTRL_HDR_GROUP_ID(req) ||
> XE_SYSCTRL_HDR_COMMAND(hdr) != XE_SYSCTRL_HDR_COMMAND(req)) {
> - xe_err(xe, "sysctrl: Response header mismatch\n");
> + xe_log_err(xe, SYSCTRL, -EPROTO,
> + "Response header mismatch: %#x != %#x\n",
> + hdr->data, req->data);
[Severity: Low]
Does this code cause Sparse warnings and print byte-swapped values on big-endian
architectures?
In sysctrl_receive_frames() in xe_sysctrl_mailbox.c, hdr->data and req->data
appear to be restricted __le32 types (based on their use with le32_to_cpu() in
the XE_SYSCTRL_HDR_* macros). Passing them directly to the %#x format specifier
without endianness conversion or casting will cause Sparse to emit warnings
about type mismatches ("incorrect type in argument ... expected unsigned int,
got restricted __le32").
On big-endian systems, they will be interpreted as native integers by the
format string parser, printing byte-swapped values.
While the v7 changelog notes that le32_to_cpu() was explicitly removed, a
(__force u32) cast might still be needed if the raw value is intended to be
printed without triggering Sparse warnings.
> return -EPROTO;
> }
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260907105313.2208003-11-mallesh.koujalagi@intel.com?part=7
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [PATCH v7 6/9] drm/xe/sysctrl: Replace FIELD_GET() with REG_FIELD_GET()
2026-09-07 10:53 ` [PATCH v7 6/9] drm/xe/sysctrl: Replace FIELD_GET() with REG_FIELD_GET() Mallesh Koujalagi
@ 2026-09-07 11:04 ` sashiko-bot
2026-09-07 11:47 ` Michal Wajdeczko
1 sibling, 0 replies; 21+ messages in thread
From: sashiko-bot @ 2026-09-07 11:04 UTC (permalink / raw)
To: Mallesh Koujalagi; +Cc: intel-xe
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [High] Type-punning byte streams to a u32 array using memcpy() causes byte order reversal on big-endian systems during MMIO access.
--
commit 62065782d283be78ecb64ef05ff6080ad6f9d489
Author: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
drm/xe/sysctrl: Replace FIELD_GET() with REG_FIELD_GET()
This commit replaces the FIELD_GET() and FIELD_PREP() macros with
REG_FIELD_GET() and REG_FIELD_PREP() when extracting or preparing fields
from SysCtrl and application headers. This better reflects that the masks
represent register-style bitfields and improves consistency.
> diff --git a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
> index 50bbdab072de6..cdd929ebed4a6 100644
> --- a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
> +++ b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
[ ... ]
> @@ -186,8 +186,8 @@ static int sysctrl_process_frame(struct xe_sysctrl *sc, void *out,
> }
>
> ctrl_reg = xe_mmio_read32(sc->mmio, SYSCTRL_MB_CTRL);
> - total_frames = FIELD_GET(SYSCTRL_FRAME_TOTAL_MASK, ctrl_reg);
> - curr_frame = FIELD_GET(SYSCTRL_FRAME_CURRENT_MASK, ctrl_reg);
> + total_frames = REG_FIELD_GET(SYSCTRL_FRAME_TOTAL_MASK, ctrl_reg);
> + curr_frame = REG_FIELD_GET(SYSCTRL_FRAME_CURRENT_MASK, ctrl_reg);
>
> sysctrl_read_frame(sc, out, frame_size);
[Severity: High]
This isn't a bug introduced by this patch, but this is a pre-existing issue:
Does this code cause byte order reversal on big-endian systems during MMIO
access?
Looking at the implementation of sysctrl_read_frame() called here, the u32
value read via readl() (which already byte-swapped the little-endian PCI
register to CPU endianness) is incorrectly type-punned back into a byte
stream:
drivers/gpu/drm/xe/xe_sysctrl_mailbox.c:sysctrl_read_frame() {
...
for (i = 0; i < dw; i++)
val[i] = xe_mmio_read32(sc->mmio, regs[i]);
memcpy(frame, val, len);
}
This reverses the bytes on big-endian systems. A similar issue occurs in
sysctrl_write_frame() where the little-endian byte stream is type-punned
into a u32 array and undergoes an incorrect double byte-swap via writel().
Sending or receiving mailbox frames on a big-endian host through these
functions could lead to complete failure of the sysctrl mailbox
communication, resulting in driver initialization errors or missing
hardware control features.
> sysctrl_clear_response(sc);
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260907105313.2208003-11-mallesh.koujalagi@intel.com?part=6
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [PATCH v7 6/9] drm/xe/sysctrl: Replace FIELD_GET() with REG_FIELD_GET()
2026-09-07 10:53 ` [PATCH v7 6/9] drm/xe/sysctrl: Replace FIELD_GET() with REG_FIELD_GET() Mallesh Koujalagi
2026-09-07 11:04 ` sashiko-bot
@ 2026-09-07 11:47 ` Michal Wajdeczko
2026-09-07 12:07 ` Mallesh, Koujalagi
1 sibling, 1 reply; 21+ messages in thread
From: Michal Wajdeczko @ 2026-09-07 11:47 UTC (permalink / raw)
To: Mallesh Koujalagi, intel-xe, rodrigo.vivi, matthew.brost
Cc: anshuman.gupta, badal.nilawar, vinay.belgaumkar, riana.tauro,
karthik.poosa, sk.anirban, raag.jadav, aravind.iddamsetty,
umesh.nerlige.ramappa, dnyaneshwar.bhadane, anoop.c.vijay
On 9/7/2026 12:53 PM, Mallesh Koujalagi wrote:
> Use REG_FIELD_GET() when extracting fields from SysCtrl and
nit:
Use REG_FIELD_GET()and REG_FIELD_PREP() when working with fields
> application headers. This better reflects that the masks
> represent register-style bitfields and improves consistency.
>
> Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
> ---
> v7:
> - Update FIELD_PREP to REG_FIELD_PREP. (Sashiko)
> - Update FIELD_GET to REG_FIELD_GET.
> ---
> drivers/gpu/drm/xe/xe_sysctrl_mailbox.c | 20 ++++++++++----------
> drivers/gpu/drm/xe/xe_sysctrl_mailbox.h | 6 +++---
> 2 files changed, 13 insertions(+), 13 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
> index 50bbdab072de..cdd929ebed4a 100644
> --- a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
> +++ b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
> @@ -24,16 +24,16 @@ struct xe_sysctrl_mailbox_msg_hdr {
> } __packed;
>
> #define XE_SYSCTRL_HDR_GROUP_ID(hdr) \
> - FIELD_GET(SYSCTRL_HDR_GROUP_ID_MASK, le32_to_cpu((hdr)->data))
> + REG_FIELD_GET(SYSCTRL_HDR_GROUP_ID_MASK, le32_to_cpu((hdr)->data))
>
> #define XE_SYSCTRL_HDR_COMMAND(hdr) \
> - FIELD_GET(SYSCTRL_HDR_COMMAND_MASK, le32_to_cpu((hdr)->data))
> + REG_FIELD_GET(SYSCTRL_HDR_COMMAND_MASK, le32_to_cpu((hdr)->data))
>
> #define XE_SYSCTRL_HDR_IS_RESPONSE(hdr) \
> - FIELD_GET(SYSCTRL_HDR_IS_RESPONSE, le32_to_cpu((hdr)->data))
> + REG_FIELD_GET(SYSCTRL_HDR_IS_RESPONSE, le32_to_cpu((hdr)->data))
>
> #define XE_SYSCTRL_HDR_RESULT(hdr) \
> - FIELD_GET(SYSCTRL_HDR_RESULT_MASK, le32_to_cpu((hdr)->data))
> + REG_FIELD_GET(SYSCTRL_HDR_RESULT_MASK, le32_to_cpu((hdr)->data))
>
> static int sysctrl_wait_bit_clear(struct xe_sysctrl *sc, u32 bit_mask,
> unsigned int timeout_ms)
> @@ -112,8 +112,8 @@ static int sysctrl_prepare_command(struct xe_device *xe,
> return -ENOMEM;
>
> hdr = (struct xe_sysctrl_mailbox_msg_hdr *)buffer;
> - hdr->data = cpu_to_le32(FIELD_PREP(SYSCTRL_HDR_GROUP_ID_MASK, group_id) |
> - FIELD_PREP(SYSCTRL_HDR_COMMAND_MASK, command));
> + hdr->data = cpu_to_le32(REG_FIELD_PREP(SYSCTRL_HDR_GROUP_ID_MASK, group_id) |
> + REG_FIELD_PREP(SYSCTRL_HDR_COMMAND_MASK, command));
>
> if (data_in && data_in_len)
> memcpy(buffer + sizeof(*hdr), data_in, data_in_len);
> @@ -186,8 +186,8 @@ static int sysctrl_process_frame(struct xe_sysctrl *sc, void *out,
> }
>
> ctrl_reg = xe_mmio_read32(sc->mmio, SYSCTRL_MB_CTRL);
> - total_frames = FIELD_GET(SYSCTRL_FRAME_TOTAL_MASK, ctrl_reg);
> - curr_frame = FIELD_GET(SYSCTRL_FRAME_CURRENT_MASK, ctrl_reg);
> + total_frames = REG_FIELD_GET(SYSCTRL_FRAME_TOTAL_MASK, ctrl_reg);
> + curr_frame = REG_FIELD_GET(SYSCTRL_FRAME_CURRENT_MASK, ctrl_reg);
>
> sysctrl_read_frame(sc, out, frame_size);
> sysctrl_clear_response(sc);
> @@ -295,8 +295,8 @@ void xe_sysctrl_create_command(struct xe_sysctrl_mailbox_command *command, u8 gr
> {
> struct xe_sysctrl_app_msg_hdr header = {0};
>
> - header.data = FIELD_PREP(APP_HDR_GROUP_ID_MASK, group_id) |
> - FIELD_PREP(APP_HDR_COMMAND_MASK, cmd_id);
> + header.data = REG_FIELD_PREP(APP_HDR_GROUP_ID_MASK, group_id) |
> + REG_FIELD_PREP(APP_HDR_COMMAND_MASK, cmd_id);
hmm, shouldn't we use le32 conversion here?
other sysctrl cmd/hdr parsing/prep seems to use it
>
> command->header = header;
> command->data_in = request;
> diff --git a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.h b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.h
> index f0d5e3d7f5e3..5a3dd14e3a11 100644
> --- a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.h
> +++ b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.h
> @@ -15,13 +15,13 @@ struct xe_sysctrl;
> struct xe_sysctrl_mailbox_command;
>
> #define XE_SYSCTRL_APP_HDR_GROUP_ID(hdr) \
> - FIELD_GET(APP_HDR_GROUP_ID_MASK, (hdr)->data)
> + REG_FIELD_GET(APP_HDR_GROUP_ID_MASK, (hdr)->data)
>
> #define XE_SYSCTRL_APP_HDR_COMMAND(hdr) \
> - FIELD_GET(APP_HDR_COMMAND_MASK, (hdr)->data)
> + REG_FIELD_GET(APP_HDR_COMMAND_MASK, (hdr)->data)
>
> #define XE_SYSCTRL_APP_HDR_VERSION(hdr) \
> - FIELD_GET(APP_HDR_VERSION_MASK, (hdr)->data)
> + REG_FIELD_GET(APP_HDR_VERSION_MASK, (hdr)->data)
ditto
>
> void xe_sysctrl_create_command(struct xe_sysctrl_mailbox_command *command, u8 group_id, u8 cmd_id,
> void *request, size_t request_len, void *response,
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [PATCH v7 6/9] drm/xe/sysctrl: Replace FIELD_GET() with REG_FIELD_GET()
2026-09-07 11:47 ` Michal Wajdeczko
@ 2026-09-07 12:07 ` Mallesh, Koujalagi
2026-09-07 14:07 ` Michal Wajdeczko
0 siblings, 1 reply; 21+ messages in thread
From: Mallesh, Koujalagi @ 2026-09-07 12:07 UTC (permalink / raw)
To: Michal Wajdeczko, intel-xe, rodrigo.vivi, matthew.brost
Cc: anshuman.gupta, badal.nilawar, vinay.belgaumkar, riana.tauro,
karthik.poosa, sk.anirban, raag.jadav, aravind.iddamsetty,
umesh.nerlige.ramappa, dnyaneshwar.bhadane, anoop.c.vijay
On 07-09-2026 05:17 pm, Michal Wajdeczko wrote:
>
> On 9/7/2026 12:53 PM, Mallesh Koujalagi wrote:
>> Use REG_FIELD_GET() when extracting fields from SysCtrl and
> nit:
>
> Use REG_FIELD_GET()and REG_FIELD_PREP() when working with fields
Sure!
>
>> application headers. This better reflects that the masks
>> represent register-style bitfields and improves consistency.
>>
>> Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
>> ---
>> v7:
>> - Update FIELD_PREP to REG_FIELD_PREP. (Sashiko)
>> - Update FIELD_GET to REG_FIELD_GET.
>> ---
>> drivers/gpu/drm/xe/xe_sysctrl_mailbox.c | 20 ++++++++++----------
>> drivers/gpu/drm/xe/xe_sysctrl_mailbox.h | 6 +++---
>> 2 files changed, 13 insertions(+), 13 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
>> index 50bbdab072de..cdd929ebed4a 100644
>> --- a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
>> +++ b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
>> @@ -24,16 +24,16 @@ struct xe_sysctrl_mailbox_msg_hdr {
>> } __packed;
>>
>> #define XE_SYSCTRL_HDR_GROUP_ID(hdr) \
>> - FIELD_GET(SYSCTRL_HDR_GROUP_ID_MASK, le32_to_cpu((hdr)->data))
>> + REG_FIELD_GET(SYSCTRL_HDR_GROUP_ID_MASK, le32_to_cpu((hdr)->data))
>>
>> #define XE_SYSCTRL_HDR_COMMAND(hdr) \
>> - FIELD_GET(SYSCTRL_HDR_COMMAND_MASK, le32_to_cpu((hdr)->data))
>> + REG_FIELD_GET(SYSCTRL_HDR_COMMAND_MASK, le32_to_cpu((hdr)->data))
>>
>> #define XE_SYSCTRL_HDR_IS_RESPONSE(hdr) \
>> - FIELD_GET(SYSCTRL_HDR_IS_RESPONSE, le32_to_cpu((hdr)->data))
>> + REG_FIELD_GET(SYSCTRL_HDR_IS_RESPONSE, le32_to_cpu((hdr)->data))
>>
>> #define XE_SYSCTRL_HDR_RESULT(hdr) \
>> - FIELD_GET(SYSCTRL_HDR_RESULT_MASK, le32_to_cpu((hdr)->data))
>> + REG_FIELD_GET(SYSCTRL_HDR_RESULT_MASK, le32_to_cpu((hdr)->data))
>>
>> static int sysctrl_wait_bit_clear(struct xe_sysctrl *sc, u32 bit_mask,
>> unsigned int timeout_ms)
>> @@ -112,8 +112,8 @@ static int sysctrl_prepare_command(struct xe_device *xe,
>> return -ENOMEM;
>>
>> hdr = (struct xe_sysctrl_mailbox_msg_hdr *)buffer;
>> - hdr->data = cpu_to_le32(FIELD_PREP(SYSCTRL_HDR_GROUP_ID_MASK, group_id) |
>> - FIELD_PREP(SYSCTRL_HDR_COMMAND_MASK, command));
>> + hdr->data = cpu_to_le32(REG_FIELD_PREP(SYSCTRL_HDR_GROUP_ID_MASK, group_id) |
>> + REG_FIELD_PREP(SYSCTRL_HDR_COMMAND_MASK, command));
>>
>> if (data_in && data_in_len)
>> memcpy(buffer + sizeof(*hdr), data_in, data_in_len);
>> @@ -186,8 +186,8 @@ static int sysctrl_process_frame(struct xe_sysctrl *sc, void *out,
>> }
>>
>> ctrl_reg = xe_mmio_read32(sc->mmio, SYSCTRL_MB_CTRL);
>> - total_frames = FIELD_GET(SYSCTRL_FRAME_TOTAL_MASK, ctrl_reg);
>> - curr_frame = FIELD_GET(SYSCTRL_FRAME_CURRENT_MASK, ctrl_reg);
>> + total_frames = REG_FIELD_GET(SYSCTRL_FRAME_TOTAL_MASK, ctrl_reg);
>> + curr_frame = REG_FIELD_GET(SYSCTRL_FRAME_CURRENT_MASK, ctrl_reg);
>>
>> sysctrl_read_frame(sc, out, frame_size);
>> sysctrl_clear_response(sc);
>> @@ -295,8 +295,8 @@ void xe_sysctrl_create_command(struct xe_sysctrl_mailbox_command *command, u8 gr
>> {
>> struct xe_sysctrl_app_msg_hdr header = {0};
>>
>> - header.data = FIELD_PREP(APP_HDR_GROUP_ID_MASK, group_id) |
>> - FIELD_PREP(APP_HDR_COMMAND_MASK, cmd_id);
>> + header.data = REG_FIELD_PREP(APP_HDR_GROUP_ID_MASK, group_id) |
>> + REG_FIELD_PREP(APP_HDR_COMMAND_MASK, cmd_id);
> hmm, shouldn't we use le32 conversion here?
> other sysctrl cmd/hdr parsing/prep seems to use it
le32 conversion is not required.
le32 already removed in the code, find the change:
https://patchwork.freedesktop.org/patch/717045/?series=164526&rev=1
>
>>
>> command->header = header;
>> command->data_in = request;
>> diff --git a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.h b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.h
>> index f0d5e3d7f5e3..5a3dd14e3a11 100644
>> --- a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.h
>> +++ b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.h
>> @@ -15,13 +15,13 @@ struct xe_sysctrl;
>> struct xe_sysctrl_mailbox_command;
>>
>> #define XE_SYSCTRL_APP_HDR_GROUP_ID(hdr) \
>> - FIELD_GET(APP_HDR_GROUP_ID_MASK, (hdr)->data)
>> + REG_FIELD_GET(APP_HDR_GROUP_ID_MASK, (hdr)->data)
>>
>> #define XE_SYSCTRL_APP_HDR_COMMAND(hdr) \
>> - FIELD_GET(APP_HDR_COMMAND_MASK, (hdr)->data)
>> + REG_FIELD_GET(APP_HDR_COMMAND_MASK, (hdr)->data)
>>
>> #define XE_SYSCTRL_APP_HDR_VERSION(hdr) \
>> - FIELD_GET(APP_HDR_VERSION_MASK, (hdr)->data)
>> + REG_FIELD_GET(APP_HDR_VERSION_MASK, (hdr)->data)
> ditto
ditto
>>
>> void xe_sysctrl_create_command(struct xe_sysctrl_mailbox_command *command, u8 group_id, u8 cmd_id,
>> void *request, size_t request_len, void *response,
^ permalink raw reply [flat|nested] 21+ messages in thread
* ✓ CI.KUnit: success for drm/xe/sysctrl: Clean up error handling in (rev4)
2026-09-07 10:53 [PATCH v7 0/9] drm/xe/sysctrl: Clean up error handling in Mallesh Koujalagi
` (8 preceding siblings ...)
2026-09-07 10:53 ` [PATCH v7 9/9] drm/xe/sysctrl: Report 'System Controller event' error using SIGID Mallesh Koujalagi
@ 2026-09-07 12:19 ` Patchwork
2026-09-08 8:05 ` Patchwork
` (3 subsequent siblings)
13 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-09-07 12:19 UTC (permalink / raw)
To: Mallesh, Koujalagi; +Cc: intel-xe
== Series Details ==
Series: drm/xe/sysctrl: Clean up error handling in (rev4)
URL : https://patchwork.freedesktop.org/series/172513/
State : success
== Summary ==
+ trap cleanup EXIT
+ kunitconfigs=('/kernel/drivers/gpu/tests/.kunitconfig' '/kernel/drivers/gpu/drm/xe/.kunitconfig' '/kernel/drivers/gpu/drm/tests/.kunitconfig' '/kernel/drivers/gpu/drm/ttm/tests/.kunitconfig' '/kernel/drivers/dma-buf/.kunitconfig')
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/tests/.kunitconfig
[12:17:28] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:17:32] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:17:53] Starting KUnit Kernel (1/1)...
[12:17:53] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:17:53] ============= refcount_interrupt (4 subtests) ==============
[12:17:53] [PASSED] test_single_irq_change
[12:17:53] [PASSED] test_nested_irq_change
[12:17:53] [PASSED] test_multiple_irq_change
[12:17:53] [PASSED] test_irq_save
[12:17:53] =============== [PASSED] refcount_interrupt ================
[12:17:53] ================= gpu_buddy (14 subtests) ==================
[12:17:53] [PASSED] gpu_test_buddy_alloc_limit
[12:17:53] [PASSED] gpu_test_buddy_alloc_optimistic
[12:17:53] [PASSED] gpu_test_buddy_alloc_pessimistic
[12:17:53] [PASSED] gpu_test_buddy_alloc_pathological
[12:17:53] [PASSED] gpu_test_buddy_alloc_contiguous
[12:17:53] [PASSED] gpu_test_buddy_alloc_clear
[12:17:53] [PASSED] gpu_test_buddy_alloc_range
[12:17:53] [PASSED] gpu_test_buddy_alloc_range_bias
[12:17:54] [PASSED] gpu_test_buddy_fragmentation_performance
[12:17:54] [PASSED] gpu_test_buddy_dirty_tracker_performance
[12:17:54] [PASSED] gpu_test_buddy_alloc_exceeds_max_order
[12:17:54] [PASSED] gpu_test_buddy_offset_aligned_allocation
[12:17:54] [PASSED] gpu_test_buddy_subtree_offset_alignment_stress
[12:17:54] [PASSED] gpu_test_buddy_addr_to_block
[12:17:54] ==================== [PASSED] gpu_buddy ====================
[12:17:54] ============================================================
[12:17:54] Testing complete. Ran 18 tests: passed: 18
[12:17:55] Elapsed time: 26.623s total, 4.431s configuring, 20.275s building, 1.871s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/xe/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[12:17:55] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:17:57] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:18:30] Starting KUnit Kernel (1/1)...
[12:18:30] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:18:31] ============= refcount_interrupt (4 subtests) ==============
[12:18:31] [PASSED] test_single_irq_change
[12:18:31] [PASSED] test_nested_irq_change
[12:18:31] [PASSED] test_multiple_irq_change
[12:18:31] [PASSED] test_irq_save
[12:18:31] =============== [PASSED] refcount_interrupt ================
[12:18:31] ================== guc_buf (11 subtests) ===================
[12:18:31] [PASSED] test_smallest
[12:18:31] [PASSED] test_largest
[12:18:31] [PASSED] test_granular
[12:18:31] [PASSED] test_unique
[12:18:31] [PASSED] test_overlap
[12:18:31] [PASSED] test_reusable
[12:18:31] [PASSED] test_too_big
[12:18:31] [PASSED] test_flush
[12:18:31] [PASSED] test_lookup
[12:18:31] [PASSED] test_data
[12:18:31] [PASSED] test_class
[12:18:31] ===================== [PASSED] guc_buf =====================
[12:18:31] =================== guc_dbm (7 subtests) ===================
[12:18:31] [PASSED] test_empty
[12:18:31] [PASSED] test_default
[12:18:31] ======================== test_size ========================
[12:18:31] [PASSED] 4
[12:18:31] [PASSED] 8
[12:18:31] [PASSED] 32
[12:18:31] [PASSED] 256
[12:18:31] ==================== [PASSED] test_size ====================
[12:18:31] ======================= test_reuse ========================
[12:18:31] [PASSED] 4
[12:18:31] [PASSED] 8
[12:18:31] [PASSED] 32
[12:18:31] [PASSED] 256
[12:18:31] =================== [PASSED] test_reuse ====================
[12:18:31] =================== test_range_overlap ====================
[12:18:31] [PASSED] 4
[12:18:31] [PASSED] 8
[12:18:31] [PASSED] 32
[12:18:31] [PASSED] 256
[12:18:31] =============== [PASSED] test_range_overlap ================
[12:18:31] =================== test_range_compact ====================
[12:18:31] [PASSED] 4
[12:18:31] [PASSED] 8
[12:18:31] [PASSED] 32
[12:18:31] [PASSED] 256
[12:18:31] =============== [PASSED] test_range_compact ================
[12:18:31] ==================== test_range_spare =====================
[12:18:31] [PASSED] 4
[12:18:31] [PASSED] 8
[12:18:31] [PASSED] 32
[12:18:31] [PASSED] 256
[12:18:31] ================ [PASSED] test_range_spare =================
[12:18:31] ===================== [PASSED] guc_dbm =====================
[12:18:31] =================== guc_idm (6 subtests) ===================
[12:18:31] [PASSED] bad_init
[12:18:31] [PASSED] no_init
[12:18:31] [PASSED] init_fini
[12:18:31] [PASSED] check_used
[12:18:31] [PASSED] check_quota
[12:18:31] [PASSED] check_all
[12:18:31] ===================== [PASSED] guc_idm =====================
[12:18:31] =============== guc_klv_helpers (9 subtests) ===============
[12:18:31] [PASSED] test_count
[12:18:31] [PASSED] test_encode_u32
[12:18:31] [PASSED] test_encode_u64
[12:18:31] [PASSED] test_encode_string
[12:18:31] [PASSED] test_encode_object_raw
[12:18:31] [PASSED] test_encode_object_klv
[12:18:31] [PASSED] test_encode_object_nested
[12:18:31] [PASSED] test_encode_object_basic
[12:18:31] [PASSED] test_print
[12:18:31] ================= [PASSED] guc_klv_helpers =================
[12:18:31] =================== xe_log (4 subtests) ====================
[12:18:31] [PASSED] demo_cper
[12:18:31] [PASSED] demo_dmesg
[12:18:31] ======================= test_dmesg ========================
[12:18:31] [PASSED] test_fatal
[12:18:31] [PASSED] test_fatal_tile
[12:18:31] [PASSED] test_fatal_gt
[12:18:31] [PASSED] test_fatal_comp
[12:18:31] [PASSED] test_fatal_comp_tile
[12:18:31] [PASSED] test_fatal_comp_gt
[12:18:31] [PASSED] test_fatal_all
[12:18:31] [PASSED] test_recoverable
[12:18:31] [PASSED] test_recoverable_tile
[12:18:31] [PASSED] test_recoverable_gt
[12:18:31] [PASSED] test_recoverable_comp
[12:18:31] [PASSED] test_recoverable_comp_tile
[12:18:31] [PASSED] test_recoverable_comp_gt
[12:18:31] [PASSED] test_recoverable_all
[12:18:31] [PASSED] test_info
[12:18:31] [PASSED] test_info_tile
[12:18:31] [PASSED] test_info_gt
[12:18:31] [PASSED] test_info_err
[12:18:31] [PASSED] test_info_comp
[12:18:31] [PASSED] test_info_comp_tile
[12:18:31] [PASSED] test_info_comp_gt
[12:18:31] [PASSED] test_info_all
[12:18:31] [PASSED] test_hw_fatal
[12:18:31] [PASSED] test_hw_recoverable
[12:18:31] [PASSED] test_hw_corrected
[12:18:31] [PASSED] test_hw_informational
[12:18:31] =================== [PASSED] test_dmesg ====================
[12:18:31] ====================== test_invalid =======================
[12:18:31] [SKIPPED] no-component no-location no-warn (requires CONFIG_DRM_XE_DEBUG)
[12:18:31] [SKIPPED] reserved location (requires CONFIG_DRM_XE_DEBUG)
[12:18:31] [SKIPPED] unknown location (requires CONFIG_DRM_XE_DEBUG)
[12:18:31] [SKIPPED] nonzero-device-id location (requires CONFIG_DRM_XE_DEBUG)
[12:18:31] [SKIPPED] invalid-tile-id location (requires CONFIG_DRM_XE_DEBUG)
[12:18:31] [SKIPPED] invalid-gt-id location (requires CONFIG_DRM_XE_DEBUG)
[12:18:31] [SKIPPED] unknown component class (requires CONFIG_DRM_XE_DEBUG)
[12:18:31] [SKIPPED] unknown system component (requires CONFIG_DRM_XE_DEBUG)
[12:18:31] [SKIPPED] unknown hardware component (requires CONFIG_DRM_XE_DEBUG)
[12:18:31] [SKIPPED] unknown component and location (requires CONFIG_DRM_XE_DEBUG)
[12:18:31] ================== [SKIPPED] test_invalid ==================
[12:18:31] ===================== [PASSED] xe_log ======================
[12:18:31] ================== no_relay (3 subtests) ===================
[12:18:31] [PASSED] xe_drops_guc2pf_if_not_ready
[12:18:31] [PASSED] xe_drops_guc2vf_if_not_ready
[12:18:31] [PASSED] xe_rejects_send_if_not_ready
[12:18:31] ==================== [PASSED] no_relay =====================
[12:18:31] ================== pf_relay (14 subtests) ==================
[12:18:31] [PASSED] pf_rejects_guc2pf_too_short
[12:18:31] [PASSED] pf_rejects_guc2pf_too_long
[12:18:31] [PASSED] pf_rejects_guc2pf_no_payload
[12:18:31] [PASSED] pf_fails_no_payload
[12:18:31] [PASSED] pf_fails_bad_origin
[12:18:31] [PASSED] pf_fails_bad_type
[12:18:31] [PASSED] pf_txn_reports_error
[12:18:31] [PASSED] pf_txn_sends_pf2guc
[12:18:31] [PASSED] pf_sends_pf2guc
[12:18:31] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[12:18:31] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[12:18:31] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[12:18:31] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[12:18:31] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[12:18:31] ==================== [PASSED] pf_relay =====================
[12:18:31] ================== vf_relay (3 subtests) ===================
[12:18:31] [PASSED] vf_rejects_guc2vf_too_short
[12:18:31] [PASSED] vf_rejects_guc2vf_too_long
[12:18:31] [PASSED] vf_rejects_guc2vf_no_payload
[12:18:31] ==================== [PASSED] vf_relay =====================
[12:18:31] ================ pf_gt_config (9 subtests) =================
[12:18:31] [PASSED] fair_contexts_1vf
[12:18:31] [PASSED] fair_doorbells_1vf
[12:18:31] [PASSED] fair_ggtt_1vf
[12:18:31] ====================== fair_vram_1vf ======================
[12:18:31] [PASSED] 3.50 GiB
[12:18:31] [PASSED] 11.5 GiB
[12:18:31] [PASSED] 15.5 GiB
[12:18:31] [PASSED] 31.5 GiB
[12:18:31] [PASSED] 63.5 GiB
[12:18:31] [PASSED] 1.91 GiB
[12:18:31] ================== [PASSED] fair_vram_1vf ==================
[12:18:31] ================ fair_vram_1vf_admin_only =================
[12:18:31] [PASSED] 3.50 GiB
[12:18:31] [PASSED] 11.5 GiB
[12:18:31] [PASSED] 15.5 GiB
[12:18:31] [PASSED] 31.5 GiB
[12:18:31] [PASSED] 63.5 GiB
[12:18:31] [PASSED] 1.91 GiB
[12:18:31] ============ [PASSED] fair_vram_1vf_admin_only =============
[12:18:31] ====================== fair_contexts ======================
[12:18:31] [PASSED] 1 VF
[12:18:31] [PASSED] 2 VFs
[12:18:31] [PASSED] 3 VFs
[12:18:31] [PASSED] 4 VFs
[12:18:31] [PASSED] 5 VFs
[12:18:31] [PASSED] 6 VFs
[12:18:31] [PASSED] 7 VFs
[12:18:31] [PASSED] 8 VFs
[12:18:31] [PASSED] 9 VFs
[12:18:31] [PASSED] 10 VFs
[12:18:31] [PASSED] 11 VFs
[12:18:31] [PASSED] 12 VFs
[12:18:31] [PASSED] 13 VFs
[12:18:31] [PASSED] 14 VFs
[12:18:31] [PASSED] 15 VFs
[12:18:31] [PASSED] 16 VFs
[12:18:31] [PASSED] 17 VFs
[12:18:31] [PASSED] 18 VFs
[12:18:31] [PASSED] 19 VFs
[12:18:31] [PASSED] 20 VFs
[12:18:31] [PASSED] 21 VFs
[12:18:31] [PASSED] 22 VFs
[12:18:31] [PASSED] 23 VFs
[12:18:31] [PASSED] 24 VFs
[12:18:31] [PASSED] 25 VFs
[12:18:31] [PASSED] 26 VFs
[12:18:31] [PASSED] 27 VFs
[12:18:31] [PASSED] 28 VFs
[12:18:31] [PASSED] 29 VFs
[12:18:31] [PASSED] 30 VFs
[12:18:31] [PASSED] 31 VFs
[12:18:31] [PASSED] 32 VFs
[12:18:31] [PASSED] 33 VFs
[12:18:31] [PASSED] 34 VFs
[12:18:31] [PASSED] 35 VFs
[12:18:31] [PASSED] 36 VFs
[12:18:31] [PASSED] 37 VFs
[12:18:31] [PASSED] 38 VFs
[12:18:31] [PASSED] 39 VFs
[12:18:31] [PASSED] 40 VFs
[12:18:31] [PASSED] 41 VFs
[12:18:31] [PASSED] 42 VFs
[12:18:31] [PASSED] 43 VFs
[12:18:31] [PASSED] 44 VFs
[12:18:31] [PASSED] 45 VFs
[12:18:31] [PASSED] 46 VFs
[12:18:31] [PASSED] 47 VFs
[12:18:31] [PASSED] 48 VFs
[12:18:31] [PASSED] 49 VFs
[12:18:31] [PASSED] 50 VFs
[12:18:31] [PASSED] 51 VFs
[12:18:31] [PASSED] 52 VFs
[12:18:31] [PASSED] 53 VFs
[12:18:31] [PASSED] 54 VFs
[12:18:31] [PASSED] 55 VFs
[12:18:31] [PASSED] 56 VFs
[12:18:31] [PASSED] 57 VFs
[12:18:31] [PASSED] 58 VFs
[12:18:31] [PASSED] 59 VFs
[12:18:31] [PASSED] 60 VFs
[12:18:31] [PASSED] 61 VFs
[12:18:31] [PASSED] 62 VFs
[12:18:31] [PASSED] 63 VFs
[12:18:31] ================== [PASSED] fair_contexts ==================
[12:18:31] ===================== fair_doorbells ======================
[12:18:31] [PASSED] 1 VF
[12:18:31] [PASSED] 2 VFs
[12:18:31] [PASSED] 3 VFs
[12:18:31] [PASSED] 4 VFs
[12:18:31] [PASSED] 5 VFs
[12:18:31] [PASSED] 6 VFs
[12:18:31] [PASSED] 7 VFs
[12:18:31] [PASSED] 8 VFs
[12:18:31] [PASSED] 9 VFs
[12:18:31] [PASSED] 10 VFs
[12:18:31] [PASSED] 11 VFs
[12:18:31] [PASSED] 12 VFs
[12:18:31] [PASSED] 13 VFs
[12:18:31] [PASSED] 14 VFs
[12:18:31] [PASSED] 15 VFs
[12:18:31] [PASSED] 16 VFs
[12:18:31] [PASSED] 17 VFs
[12:18:31] [PASSED] 18 VFs
[12:18:31] [PASSED] 19 VFs
[12:18:31] [PASSED] 20 VFs
[12:18:31] [PASSED] 21 VFs
[12:18:31] [PASSED] 22 VFs
[12:18:31] [PASSED] 23 VFs
[12:18:31] [PASSED] 24 VFs
[12:18:31] [PASSED] 25 VFs
[12:18:31] [PASSED] 26 VFs
[12:18:31] [PASSED] 27 VFs
[12:18:31] [PASSED] 28 VFs
[12:18:31] [PASSED] 29 VFs
[12:18:31] [PASSED] 30 VFs
[12:18:31] [PASSED] 31 VFs
[12:18:31] [PASSED] 32 VFs
[12:18:31] [PASSED] 33 VFs
[12:18:31] [PASSED] 34 VFs
[12:18:31] [PASSED] 35 VFs
[12:18:31] [PASSED] 36 VFs
[12:18:31] [PASSED] 37 VFs
[12:18:31] [PASSED] 38 VFs
[12:18:31] [PASSED] 39 VFs
[12:18:31] [PASSED] 40 VFs
[12:18:31] [PASSED] 41 VFs
[12:18:31] [PASSED] 42 VFs
[12:18:31] [PASSED] 43 VFs
[12:18:31] [PASSED] 44 VFs
[12:18:31] [PASSED] 45 VFs
[12:18:31] [PASSED] 46 VFs
[12:18:31] [PASSED] 47 VFs
[12:18:31] [PASSED] 48 VFs
[12:18:31] [PASSED] 49 VFs
[12:18:31] [PASSED] 50 VFs
[12:18:31] [PASSED] 51 VFs
[12:18:31] [PASSED] 52 VFs
[12:18:31] [PASSED] 53 VFs
[12:18:31] [PASSED] 54 VFs
[12:18:31] [PASSED] 55 VFs
[12:18:31] [PASSED] 56 VFs
[12:18:31] [PASSED] 57 VFs
[12:18:31] [PASSED] 58 VFs
[12:18:31] [PASSED] 59 VFs
[12:18:31] [PASSED] 60 VFs
[12:18:31] [PASSED] 61 VFs
[12:18:31] [PASSED] 62 VFs
[12:18:31] [PASSED] 63 VFs
[12:18:31] ================= [PASSED] fair_doorbells ==================
[12:18:31] ======================== fair_ggtt ========================
[12:18:31] [PASSED] 1 VF
[12:18:31] [PASSED] 2 VFs
[12:18:31] [PASSED] 3 VFs
[12:18:31] [PASSED] 4 VFs
[12:18:31] [PASSED] 5 VFs
[12:18:31] [PASSED] 6 VFs
[12:18:31] [PASSED] 7 VFs
[12:18:31] [PASSED] 8 VFs
[12:18:31] [PASSED] 9 VFs
[12:18:31] [PASSED] 10 VFs
[12:18:31] [PASSED] 11 VFs
[12:18:31] [PASSED] 12 VFs
[12:18:31] [PASSED] 13 VFs
[12:18:31] [PASSED] 14 VFs
[12:18:31] [PASSED] 15 VFs
[12:18:31] [PASSED] 16 VFs
[12:18:31] [PASSED] 17 VFs
[12:18:31] [PASSED] 18 VFs
[12:18:31] [PASSED] 19 VFs
[12:18:31] [PASSED] 20 VFs
[12:18:31] [PASSED] 21 VFs
[12:18:31] [PASSED] 22 VFs
[12:18:31] [PASSED] 23 VFs
[12:18:31] [PASSED] 24 VFs
[12:18:31] [PASSED] 25 VFs
[12:18:31] [PASSED] 26 VFs
[12:18:31] [PASSED] 27 VFs
[12:18:31] [PASSED] 28 VFs
[12:18:31] [PASSED] 29 VFs
[12:18:31] [PASSED] 30 VFs
[12:18:31] [PASSED] 31 VFs
[12:18:31] [PASSED] 32 VFs
[12:18:31] [PASSED] 33 VFs
[12:18:31] [PASSED] 34 VFs
[12:18:31] [PASSED] 35 VFs
[12:18:31] [PASSED] 36 VFs
[12:18:31] [PASSED] 37 VFs
[12:18:31] [PASSED] 38 VFs
[12:18:31] [PASSED] 39 VFs
[12:18:31] [PASSED] 40 VFs
[12:18:31] [PASSED] 41 VFs
[12:18:31] [PASSED] 42 VFs
[12:18:31] [PASSED] 43 VFs
[12:18:31] [PASSED] 44 VFs
[12:18:31] [PASSED] 45 VFs
[12:18:31] [PASSED] 46 VFs
[12:18:31] [PASSED] 47 VFs
[12:18:31] [PASSED] 48 VFs
[12:18:31] [PASSED] 49 VFs
[12:18:31] [PASSED] 50 VFs
[12:18:31] [PASSED] 51 VFs
[12:18:31] [PASSED] 52 VFs
[12:18:31] [PASSED] 53 VFs
[12:18:31] [PASSED] 54 VFs
[12:18:31] [PASSED] 55 VFs
[12:18:31] [PASSED] 56 VFs
[12:18:31] [PASSED] 57 VFs
[12:18:31] [PASSED] 58 VFs
[12:18:31] [PASSED] 59 VFs
[12:18:31] [PASSED] 60 VFs
[12:18:31] [PASSED] 61 VFs
[12:18:31] [PASSED] 62 VFs
[12:18:31] [PASSED] 63 VFs
[12:18:31] ==================== [PASSED] fair_ggtt ====================
[12:18:31] ======================== fair_vram ========================
[12:18:31] [PASSED] 1 VF
[12:18:31] [PASSED] 2 VFs
[12:18:31] [PASSED] 3 VFs
[12:18:31] [PASSED] 4 VFs
[12:18:31] [PASSED] 5 VFs
[12:18:31] [PASSED] 6 VFs
[12:18:31] [PASSED] 7 VFs
[12:18:31] [PASSED] 8 VFs
[12:18:31] [PASSED] 9 VFs
[12:18:31] [PASSED] 10 VFs
[12:18:31] [PASSED] 11 VFs
[12:18:31] [PASSED] 12 VFs
[12:18:31] [PASSED] 13 VFs
[12:18:31] [PASSED] 14 VFs
[12:18:31] [PASSED] 15 VFs
[12:18:31] [PASSED] 16 VFs
[12:18:31] [PASSED] 17 VFs
[12:18:31] [PASSED] 18 VFs
[12:18:31] [PASSED] 19 VFs
[12:18:31] [PASSED] 20 VFs
[12:18:31] [PASSED] 21 VFs
[12:18:31] [PASSED] 22 VFs
[12:18:31] [PASSED] 23 VFs
[12:18:31] [PASSED] 24 VFs
[12:18:31] [PASSED] 25 VFs
[12:18:31] [PASSED] 26 VFs
[12:18:31] [PASSED] 27 VFs
[12:18:31] [PASSED] 28 VFs
[12:18:31] [PASSED] 29 VFs
[12:18:31] [PASSED] 30 VFs
[12:18:31] [PASSED] 31 VFs
[12:18:31] [PASSED] 32 VFs
[12:18:31] [PASSED] 33 VFs
[12:18:31] [PASSED] 34 VFs
[12:18:31] [PASSED] 35 VFs
[12:18:31] [PASSED] 36 VFs
[12:18:31] [PASSED] 37 VFs
[12:18:31] [PASSED] 38 VFs
[12:18:31] [PASSED] 39 VFs
[12:18:31] [PASSED] 40 VFs
[12:18:31] [PASSED] 41 VFs
[12:18:31] [PASSED] 42 VFs
[12:18:31] [PASSED] 43 VFs
[12:18:31] [PASSED] 44 VFs
[12:18:31] [PASSED] 45 VFs
[12:18:31] [PASSED] 46 VFs
[12:18:31] [PASSED] 47 VFs
[12:18:31] [PASSED] 48 VFs
[12:18:31] [PASSED] 49 VFs
[12:18:31] [PASSED] 50 VFs
[12:18:31] [PASSED] 51 VFs
[12:18:31] [PASSED] 52 VFs
[12:18:31] [PASSED] 53 VFs
[12:18:31] [PASSED] 54 VFs
[12:18:31] [PASSED] 55 VFs
[12:18:31] [PASSED] 56 VFs
[12:18:31] [PASSED] 57 VFs
[12:18:31] [PASSED] 58 VFs
[12:18:31] [PASSED] 59 VFs
[12:18:31] [PASSED] 60 VFs
[12:18:31] [PASSED] 61 VFs
[12:18:31] [PASSED] 62 VFs
[12:18:31] [PASSED] 63 VFs
[12:18:31] ==================== [PASSED] fair_vram ====================
[12:18:31] ================== [PASSED] pf_gt_config ===================
[12:18:31] ===================== lmtt (1 subtest) =====================
[12:18:31] ======================== test_ops =========================
[12:18:31] [PASSED] 2-level
[12:18:31] [PASSED] multi-level
[12:18:31] ==================== [PASSED] test_ops =====================
[12:18:31] ====================== [PASSED] lmtt =======================
[12:18:31] ================= sriov_packet (1 subtest) =================
[12:18:31] [PASSED] test_descriptor_init
[12:18:31] ================== [PASSED] sriov_packet ===================
[12:18:31] ================= pf_service (11 subtests) =================
[12:18:31] [PASSED] pf_negotiate_any
[12:18:31] [PASSED] pf_negotiate_base_match
[12:18:31] [PASSED] pf_negotiate_base_newer
[12:18:31] [PASSED] pf_negotiate_base_next
[12:18:31] [SKIPPED] pf_negotiate_base_older (no older minor)
[12:18:31] [PASSED] pf_negotiate_base_prev
[12:18:31] [PASSED] pf_negotiate_latest_match
[12:18:31] [PASSED] pf_negotiate_latest_newer
[12:18:31] [PASSED] pf_negotiate_latest_next
[12:18:31] [SKIPPED] pf_negotiate_latest_older (no older minor)
[12:18:31] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[12:18:31] =================== [PASSED] pf_service ====================
[12:18:31] ================= xe_guc_g2g (2 subtests) ==================
[12:18:31] ============== xe_live_guc_g2g_kunit_default ==============
[12:18:31] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[12:18:31] ============== xe_live_guc_g2g_kunit_allmem ===============
[12:18:31] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[12:18:31] =================== [SKIPPED] xe_guc_g2g ===================
[12:18:31] =================== xe_mocs (2 subtests) ===================
[12:18:31] ================ xe_live_mocs_kernel_kunit ================
[12:18:31] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[12:18:31] ================ xe_live_mocs_reset_kunit =================
[12:18:31] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[12:18:31] ==================== [SKIPPED] xe_mocs =====================
[12:18:31] ================= xe_migrate (2 subtests) ==================
[12:18:31] ================= xe_migrate_sanity_kunit =================
[12:18:31] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[12:18:31] ================== xe_validate_ccs_kunit ==================
[12:18:31] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[12:18:31] =================== [SKIPPED] xe_migrate ===================
[12:18:31] ================== xe_dma_buf (1 subtest) ==================
[12:18:31] ==================== xe_dma_buf_kunit =====================
[12:18:31] ================ [SKIPPED] xe_dma_buf_kunit ================
[12:18:31] =================== [SKIPPED] xe_dma_buf ===================
[12:18:31] ================= xe_bo_shrink (1 subtest) =================
[12:18:31] =================== xe_bo_shrink_kunit ====================
[12:18:31] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[12:18:31] ================== [SKIPPED] xe_bo_shrink ==================
[12:18:31] ==================== xe_bo (2 subtests) ====================
[12:18:31] ================== xe_ccs_migrate_kunit ===================
[12:18:31] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[12:18:31] ==================== xe_bo_evict_kunit ====================
[12:18:31] =============== [SKIPPED] xe_bo_evict_kunit ================
[12:18:31] ===================== [SKIPPED] xe_bo ======================
[12:18:31] =================== xe_any (9 subtests) ====================
[12:18:31] [PASSED] test_to_xe
[12:18:31] [PASSED] test_to_dev
[12:18:31] [PASSED] test_to_pdev
[12:18:31] [PASSED] test_to_drm
[12:18:31] [PASSED] test_if_pdev
[12:18:31] [PASSED] test_if_xe
[12:18:31] [PASSED] test_if_tile
[12:18:31] [PASSED] test_if_gt
[12:18:31] [PASSED] test_to_id
[12:18:31] ===================== [PASSED] xe_any ======================
[12:18:31] ==================== args (13 subtests) ====================
[12:18:31] [PASSED] count_args_test
[12:18:31] [PASSED] call_args_example
[12:18:31] [PASSED] call_args_test
[12:18:31] [PASSED] drop_first_arg_example
[12:18:31] [PASSED] drop_first_arg_test
[12:18:31] [PASSED] first_arg_example
[12:18:31] [PASSED] first_arg_test
[12:18:31] [PASSED] last_arg_example
[12:18:31] [PASSED] last_arg_test
[12:18:31] [PASSED] pick_arg_example
[12:18:31] [PASSED] if_args_example
[12:18:31] [PASSED] if_args_test
[12:18:31] [PASSED] sep_comma_example
[12:18:31] ====================== [PASSED] args =======================
[12:18:31] =================== xe_pci (3 subtests) ====================
[12:18:31] ==================== check_graphics_ip ====================
[12:18:31] [PASSED] 12.00 Xe_LP
[12:18:31] [PASSED] 12.10 Xe_LP+
[12:18:31] [PASSED] 12.55 Xe_HPG
[12:18:31] [PASSED] 12.60 Xe_HPC
[12:18:31] [PASSED] 12.70 Xe_LPG
[12:18:31] [PASSED] 12.71 Xe_LPG
[12:18:31] [PASSED] 12.74 Xe_LPG+
[12:18:31] [PASSED] 20.01 Xe2_HPG
[12:18:31] [PASSED] 20.02 Xe2_HPG
[12:18:31] [PASSED] 20.04 Xe2_LPG
[12:18:31] [PASSED] 30.00 Xe3_LPG
[12:18:31] [PASSED] 30.01 Xe3_LPG
[12:18:31] [PASSED] 30.03 Xe3_LPG
[12:18:31] [PASSED] 30.04 Xe3_LPG
[12:18:31] [PASSED] 30.05 Xe3_LPG
[12:18:31] [PASSED] 35.10 Xe3p_LPG
[12:18:31] [PASSED] 35.11 Xe3p_XPC
[12:18:31] ================ [PASSED] check_graphics_ip ================
[12:18:31] ===================== check_media_ip ======================
[12:18:31] [PASSED] 12.00 Xe_M
[12:18:31] [PASSED] 12.55 Xe_HPM
[12:18:31] [PASSED] 13.00 Xe_LPM+
[12:18:31] [PASSED] 13.01 Xe2_HPM
[12:18:31] [PASSED] 20.00 Xe2_LPM
[12:18:31] [PASSED] 30.00 Xe3_LPM
[12:18:31] [PASSED] 30.02 Xe3_LPM
[12:18:31] [PASSED] 35.00 Xe3p_LPM
[12:18:31] [PASSED] 35.03 Xe3p_HPM
[12:18:31] ================= [PASSED] check_media_ip ==================
[12:18:31] =================== check_platform_desc ===================
[12:18:31] [PASSED] 0x9A60 (TIGERLAKE)
[12:18:31] [PASSED] 0x9A68 (TIGERLAKE)
[12:18:31] [PASSED] 0x9A70 (TIGERLAKE)
[12:18:31] [PASSED] 0x9A40 (TIGERLAKE)
[12:18:31] [PASSED] 0x9A49 (TIGERLAKE)
[12:18:31] [PASSED] 0x9A59 (TIGERLAKE)
[12:18:31] [PASSED] 0x9A78 (TIGERLAKE)
[12:18:31] [PASSED] 0x9AC0 (TIGERLAKE)
[12:18:31] [PASSED] 0x9AC9 (TIGERLAKE)
[12:18:31] [PASSED] 0x9AD9 (TIGERLAKE)
[12:18:31] [PASSED] 0x9AF8 (TIGERLAKE)
[12:18:31] [PASSED] 0x4C80 (ROCKETLAKE)
[12:18:31] [PASSED] 0x4C8A (ROCKETLAKE)
[12:18:31] [PASSED] 0x4C8B (ROCKETLAKE)
[12:18:31] [PASSED] 0x4C8C (ROCKETLAKE)
[12:18:31] [PASSED] 0x4C90 (ROCKETLAKE)
[12:18:31] [PASSED] 0x4C9A (ROCKETLAKE)
[12:18:31] [PASSED] 0x4680 (ALDERLAKE_S)
[12:18:31] [PASSED] 0x4682 (ALDERLAKE_S)
[12:18:31] [PASSED] 0x4688 (ALDERLAKE_S)
[12:18:31] [PASSED] 0x468A (ALDERLAKE_S)
[12:18:31] [PASSED] 0x468B (ALDERLAKE_S)
[12:18:31] [PASSED] 0x4690 (ALDERLAKE_S)
[12:18:31] [PASSED] 0x4692 (ALDERLAKE_S)
[12:18:31] [PASSED] 0x4693 (ALDERLAKE_S)
[12:18:31] [PASSED] 0x46A0 (ALDERLAKE_P)
[12:18:31] [PASSED] 0x46A1 (ALDERLAKE_P)
[12:18:31] [PASSED] 0x46A2 (ALDERLAKE_P)
[12:18:31] [PASSED] 0x46A3 (ALDERLAKE_P)
[12:18:31] [PASSED] 0x46A6 (ALDERLAKE_P)
[12:18:31] [PASSED] 0x46A8 (ALDERLAKE_P)
[12:18:31] [PASSED] 0x46AA (ALDERLAKE_P)
[12:18:31] [PASSED] 0x462A (ALDERLAKE_P)
[12:18:31] [PASSED] 0x4626 (ALDERLAKE_P)
[12:18:31] [PASSED] 0x4628 (ALDERLAKE_P)
[12:18:31] [PASSED] 0x46B0 (ALDERLAKE_P)
[12:18:31] [PASSED] 0x46B1 (ALDERLAKE_P)
[12:18:31] [PASSED] 0x46B2 (ALDERLAKE_P)
[12:18:31] [PASSED] 0x46B3 (ALDERLAKE_P)
[12:18:31] [PASSED] 0x46C0 (ALDERLAKE_P)
[12:18:31] [PASSED] 0x46C1 (ALDERLAKE_P)
[12:18:31] [PASSED] 0x46C2 (ALDERLAKE_P)
[12:18:31] [PASSED] 0x46C3 (ALDERLAKE_P)
[12:18:31] [PASSED] 0x46D0 (ALDERLAKE_N)
[12:18:31] [PASSED] 0x46D1 (ALDERLAKE_N)
[12:18:31] [PASSED] 0x46D2 (ALDERLAKE_N)
[12:18:31] [PASSED] 0x46D3 (ALDERLAKE_N)
[12:18:31] [PASSED] 0x46D4 (ALDERLAKE_N)
[12:18:31] [PASSED] 0xA721 (ALDERLAKE_P)
[12:18:31] [PASSED] 0xA7A1 (ALDERLAKE_P)
[12:18:31] [PASSED] 0xA7A9 (ALDERLAKE_P)
[12:18:31] [PASSED] 0xA7AC (ALDERLAKE_P)
[12:18:31] [PASSED] 0xA7AD (ALDERLAKE_P)
[12:18:31] [PASSED] 0xA720 (ALDERLAKE_P)
[12:18:31] [PASSED] 0xA7A0 (ALDERLAKE_P)
[12:18:31] [PASSED] 0xA7A8 (ALDERLAKE_P)
[12:18:31] [PASSED] 0xA7AA (ALDERLAKE_P)
[12:18:31] [PASSED] 0xA7AB (ALDERLAKE_P)
[12:18:31] [PASSED] 0xA780 (ALDERLAKE_S)
[12:18:31] [PASSED] 0xA781 (ALDERLAKE_S)
[12:18:31] [PASSED] 0xA782 (ALDERLAKE_S)
[12:18:31] [PASSED] 0xA783 (ALDERLAKE_S)
[12:18:31] [PASSED] 0xA788 (ALDERLAKE_S)
[12:18:31] [PASSED] 0xA789 (ALDERLAKE_S)
[12:18:31] [PASSED] 0xA78A (ALDERLAKE_S)
[12:18:31] [PASSED] 0xA78B (ALDERLAKE_S)
[12:18:31] [PASSED] 0x4905 (DG1)
[12:18:31] [PASSED] 0x4906 (DG1)
[12:18:31] [PASSED] 0x4907 (DG1)
[12:18:31] [PASSED] 0x4908 (DG1)
[12:18:31] [PASSED] 0x4909 (DG1)
[12:18:31] [PASSED] 0x56C0 (DG2)
[12:18:31] [PASSED] 0x56C2 (DG2)
[12:18:31] [PASSED] 0x56C1 (DG2)
[12:18:31] [PASSED] 0x7D51 (METEORLAKE)
[12:18:31] [PASSED] 0x7DD1 (METEORLAKE)
[12:18:31] [PASSED] 0x7D41 (METEORLAKE)
[12:18:31] [PASSED] 0x7D67 (METEORLAKE)
[12:18:31] [PASSED] 0xB640 (METEORLAKE)
[12:18:31] [PASSED] 0x56A0 (DG2)
[12:18:31] [PASSED] 0x56A1 (DG2)
[12:18:31] [PASSED] 0x56A2 (DG2)
[12:18:31] [PASSED] 0x56BE (DG2)
[12:18:31] [PASSED] 0x56BF (DG2)
[12:18:31] [PASSED] 0x5690 (DG2)
[12:18:31] [PASSED] 0x5691 (DG2)
[12:18:31] [PASSED] 0x5692 (DG2)
[12:18:31] [PASSED] 0x56A5 (DG2)
[12:18:31] [PASSED] 0x56A6 (DG2)
[12:18:31] [PASSED] 0x56B0 (DG2)
[12:18:31] [PASSED] 0x56B1 (DG2)
[12:18:31] [PASSED] 0x56BA (DG2)
[12:18:31] [PASSED] 0x56BB (DG2)
[12:18:31] [PASSED] 0x56BC (DG2)
[12:18:31] [PASSED] 0x56BD (DG2)
[12:18:31] [PASSED] 0x5693 (DG2)
[12:18:31] [PASSED] 0x5694 (DG2)
[12:18:31] [PASSED] 0x5695 (DG2)
[12:18:31] [PASSED] 0x56A3 (DG2)
[12:18:31] [PASSED] 0x56A4 (DG2)
[12:18:31] [PASSED] 0x56B2 (DG2)
[12:18:31] [PASSED] 0x56B3 (DG2)
[12:18:31] [PASSED] 0x5696 (DG2)
[12:18:31] [PASSED] 0x5697 (DG2)
[12:18:31] [PASSED] 0xB69 (PVC)
[12:18:31] [PASSED] 0xB6E (PVC)
[12:18:31] [PASSED] 0xBD4 (PVC)
[12:18:31] [PASSED] 0xBD5 (PVC)
[12:18:31] [PASSED] 0xBD6 (PVC)
[12:18:31] [PASSED] 0xBD7 (PVC)
[12:18:31] [PASSED] 0xBD8 (PVC)
[12:18:31] [PASSED] 0xBD9 (PVC)
[12:18:31] [PASSED] 0xBDA (PVC)
[12:18:31] [PASSED] 0xBDB (PVC)
[12:18:31] [PASSED] 0xBE0 (PVC)
[12:18:31] [PASSED] 0xBE1 (PVC)
[12:18:31] [PASSED] 0xBE5 (PVC)
[12:18:31] [PASSED] 0x7D40 (METEORLAKE)
[12:18:31] [PASSED] 0x7D45 (METEORLAKE)
[12:18:31] [PASSED] 0x7D55 (METEORLAKE)
[12:18:31] [PASSED] 0x7D60 (METEORLAKE)
[12:18:31] [PASSED] 0x7DD5 (METEORLAKE)
[12:18:31] [PASSED] 0x6420 (LUNARLAKE)
[12:18:31] [PASSED] 0x64A0 (LUNARLAKE)
[12:18:31] [PASSED] 0x64B0 (LUNARLAKE)
[12:18:31] [PASSED] 0xE202 (BATTLEMAGE)
[12:18:31] [PASSED] 0xE209 (BATTLEMAGE)
[12:18:31] [PASSED] 0xE20B (BATTLEMAGE)
[12:18:31] [PASSED] 0xE20C (BATTLEMAGE)
[12:18:31] [PASSED] 0xE20D (BATTLEMAGE)
[12:18:31] [PASSED] 0xE210 (BATTLEMAGE)
[12:18:31] [PASSED] 0xE211 (BATTLEMAGE)
[12:18:31] [PASSED] 0xE212 (BATTLEMAGE)
[12:18:31] [PASSED] 0xE216 (BATTLEMAGE)
[12:18:31] [PASSED] 0xE220 (BATTLEMAGE)
[12:18:31] [PASSED] 0xE221 (BATTLEMAGE)
[12:18:31] [PASSED] 0xE222 (BATTLEMAGE)
[12:18:31] [PASSED] 0xE223 (BATTLEMAGE)
[12:18:31] [PASSED] 0xB080 (PANTHERLAKE)
[12:18:31] [PASSED] 0xB081 (PANTHERLAKE)
[12:18:31] [PASSED] 0xB082 (PANTHERLAKE)
[12:18:31] [PASSED] 0xB083 (PANTHERLAKE)
[12:18:31] [PASSED] 0xB084 (PANTHERLAKE)
[12:18:31] [PASSED] 0xB085 (PANTHERLAKE)
[12:18:31] [PASSED] 0xB086 (PANTHERLAKE)
[12:18:31] [PASSED] 0xB087 (PANTHERLAKE)
[12:18:31] [PASSED] 0xB08F (PANTHERLAKE)
[12:18:31] [PASSED] 0xB090 (PANTHERLAKE)
[12:18:31] [PASSED] 0xB0A0 (PANTHERLAKE)
[12:18:31] [PASSED] 0xB0B0 (PANTHERLAKE)
[12:18:31] [PASSED] 0xFD80 (PANTHERLAKE)
[12:18:31] [PASSED] 0xFD81 (PANTHERLAKE)
[12:18:31] [PASSED] 0xD740 (NOVALAKE_S)
[12:18:31] [PASSED] 0xD741 (NOVALAKE_S)
[12:18:31] [PASSED] 0xD742 (NOVALAKE_S)
[12:18:31] [PASSED] 0xD743 (NOVALAKE_S)
[12:18:31] [PASSED] 0xD745 (NOVALAKE_S)
[12:18:31] [PASSED] 0xD74A (NOVALAKE_S)
[12:18:31] [PASSED] 0xD74B (NOVALAKE_S)
[12:18:31] [PASSED] 0x674C (CRESCENTISLAND)
[12:18:31] [PASSED] 0x674D (CRESCENTISLAND)
[12:18:31] [PASSED] 0x674E (CRESCENTISLAND)
[12:18:31] [PASSED] 0x674F (CRESCENTISLAND)
[12:18:31] [PASSED] 0x6750 (CRESCENTISLAND)
[12:18:31] [PASSED] 0xD750 (NOVALAKE_P)
[12:18:31] [PASSED] 0xD751 (NOVALAKE_P)
[12:18:31] [PASSED] 0xD752 (NOVALAKE_P)
[12:18:31] [PASSED] 0xD753 (NOVALAKE_P)
[12:18:31] [PASSED] 0xD754 (NOVALAKE_P)
[12:18:31] [PASSED] 0xD755 (NOVALAKE_P)
[12:18:31] [PASSED] 0xD756 (NOVALAKE_P)
[12:18:31] [PASSED] 0xD757 (NOVALAKE_P)
[12:18:31] [PASSED] 0xD75F (NOVALAKE_P)
[12:18:31] =============== [PASSED] check_platform_desc ===============
[12:18:31] ===================== [PASSED] xe_pci ======================
[12:18:31] ============= xe_rtp_tables_test (5 subtests) ==============
[12:18:31] ================== xe_rtp_table_gt_test ===================
[12:18:31] [PASSED] gt_was/14011060649
[12:18:31] [PASSED] gt_was/14011059788
[12:18:31] [PASSED] gt_was/14015795083
[12:18:31] [PASSED] gt_was/16021867713
[12:18:31] [PASSED] gt_was/14019449301
[12:18:31] [PASSED] gt_was/16028005424
[12:18:31] [PASSED] gt_was/14026578760
[12:18:31] [PASSED] gt_was/1409420604
[12:18:31] [PASSED] gt_was/1408615072
[12:18:31] [PASSED] gt_was/22010523718
[12:18:31] [PASSED] gt_was/14011006942
[12:18:31] [PASSED] gt_was/14014830051
[12:18:31] [PASSED] gt_was/18018781329
[12:18:31] [PASSED] gt_was/1509235366
[12:18:31] [PASSED] gt_was/18018781329
[12:18:31] [PASSED] gt_was/16016694945
[12:18:31] [PASSED] gt_was/14018575942
[12:18:31] [PASSED] gt_was/22016670082
[12:18:31] [PASSED] gt_was/22016670082
[12:18:31] [PASSED] gt_was/14017421178
[12:18:31] [PASSED] gt_was/16025250150
[12:18:31] [PASSED] gt_was/14021871409
[12:18:31] [PASSED] gt_was/16021865536
[12:18:31] [PASSED] gt_was/14021486841
[12:18:31] [PASSED] gt_was/14025160223
[12:18:31] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[12:18:31] [PASSED] gt_was/14025635424
[12:18:31] [PASSED] gt_was/16028005424
[12:18:31] ============== [PASSED] xe_rtp_table_gt_test ===============
[12:18:31] ================== xe_rtp_table_gt_test ===================
[12:18:31] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[12:18:31] [PASSED] gt_tunings/Tuning: 32B Access Enable
[12:18:31] [PASSED] gt_tunings/Tuning: L3 cache
[12:18:31] [PASSED] gt_tunings/Tuning: L3 cache - media
[12:18:31] [PASSED] gt_tunings/Tuning: Compression Overfetch
[12:18:31] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[12:18:31] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[12:18:31] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[12:18:31] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[12:18:31] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[12:18:31] [PASSED] gt_tunings/Tuning: Stateless compression control
[12:18:31] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[12:18:31] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[12:18:31] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[12:18:31] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[12:18:31] ============== [PASSED] xe_rtp_table_gt_test ===============
[12:18:31] ================== xe_rtp_table_oob_test ==================
[12:18:31] [PASSED] oob_was/1607983814
[12:18:31] [PASSED] oob_was/16010904313
[12:18:31] [PASSED] oob_was/18022495364
[12:18:31] [PASSED] oob_was/22012773006
[12:18:31] [PASSED] oob_was/14014475959
[12:18:31] [PASSED] oob_was/22011391025
[12:18:31] [PASSED] oob_was/22012727170
[12:18:31] [PASSED] oob_was/22012727685
[12:18:31] [PASSED] oob_was/22016596838
[12:18:31] [PASSED] oob_was/18020744125
[12:18:31] [PASSED] oob_was/1409600907
[12:18:31] [PASSED] oob_was/22014953428
[12:18:31] [PASSED] oob_was/16017236439
[12:18:31] [PASSED] oob_was/14019821291
[12:18:31] [PASSED] oob_was/14015076503
[12:18:31] [PASSED] oob_was/14018913170
[12:18:31] [PASSED] oob_was/14018094691
[12:18:31] [PASSED] oob_was/18024947630
[12:18:31] [PASSED] oob_was/16022287689
[12:18:31] [PASSED] oob_was/13011645652
[12:18:31] [PASSED] oob_was/14022293748
[12:18:31] [PASSED] oob_was/22019794406
[12:18:31] [PASSED] oob_was/22019338487
[12:18:31] [PASSED] oob_was/16023588340
[12:18:31] [PASSED] oob_was/14019789679
[12:18:31] [PASSED] oob_was/14022866841
[12:18:31] [PASSED] oob_was/16021333562
[12:18:31] [PASSED] oob_was/14016712196
[12:18:31] [PASSED] oob_was/14015568240
[12:18:31] [PASSED] oob_was/18013179988
[12:18:31] [PASSED] oob_was/1508761755
[12:18:31] [PASSED] oob_was/16023105232
[12:18:31] [PASSED] oob_was/16026508708
[12:18:31] [PASSED] oob_was/14020001231
[12:18:31] [PASSED] oob_was/16023683509
[12:18:31] [PASSED] oob_was/14025515070
[12:18:31] [PASSED] oob_was/15015404425_disable
[12:18:31] [PASSED] oob_was/16026007364
[12:18:31] [PASSED] oob_was/14020316580
[12:18:31] [PASSED] oob_was/14025883347
[12:18:31] [PASSED] oob_was/16029380221
[12:18:31] [PASSED] oob_was/22022079272
[12:18:31] [PASSED] oob_was/16029897822
[12:18:31] [PASSED] oob_was/14027054324
[12:18:31] ============== [PASSED] xe_rtp_table_oob_test ==============
[12:18:31] ================ xe_rtp_table_dev_oob_test ================
[12:18:31] [PASSED] device_oob_was/22010954014
[12:18:31] [PASSED] device_oob_was/15015404425
[12:18:31] [PASSED] device_oob_was/22019338487_display
[12:18:31] [PASSED] device_oob_was/14022085890
[12:18:31] [PASSED] device_oob_was/14026539277
[12:18:31] [PASSED] device_oob_was/14026633728
[12:18:31] [PASSED] device_oob_was/14026746987
[12:18:31] [PASSED] device_oob_was/14026779378
[12:18:31] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[12:18:31] ========== xe_rtp_table_missing_upper_bound_test ==========
[12:18:31] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[12:18:31] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[12:18:31] [PASSED] register_whitelist/1806527549
[12:18:31] [PASSED] register_whitelist/allow_read_ctx_timestamp
[12:18:31] [PASSED] register_whitelist/allow_read_queue_timestamp
[12:18:31] [PASSED] register_whitelist/16014440446
[12:18:31] [PASSED] register_whitelist/16017236439
[12:18:31] [PASSED] register_whitelist/16020183090
[12:18:31] [PASSED] register_whitelist/14024997852
[12:18:31] [PASSED] register_whitelist/14024997852
[12:18:31] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[12:18:31] =============== [PASSED] xe_rtp_tables_test ================
[12:18:31] =================== xe_rtp (3 subtests) ====================
[12:18:31] =================== xe_rtp_rules_tests ====================
[12:18:31] [PASSED] no
[12:18:31] [PASSED] yes
[12:18:31] [PASSED] no-and-no
[12:18:31] [PASSED] no-and-yes
[12:18:31] [PASSED] yes-and-no
[12:18:31] [PASSED] yes-and-yes
[12:18:31] [PASSED] no-or-no
[12:18:31] [PASSED] no-or-yes
[12:18:31] [PASSED] yes-or-no
[12:18:31] [PASSED] yes-or-yes
[12:18:31] [PASSED] no-yes-or-yes-no
[12:18:31] [PASSED] no-yes-or-yes-yes
[12:18:31] [PASSED] yes-yes-or-no-yes
[12:18:31] [PASSED] yes-yes-or-yes-yes
[12:18:31] [PASSED] no-no-or-yes-or-no
[12:18:31] [PASSED] or
[12:18:31] [PASSED] or-yes
[12:18:31] [PASSED] or-no
[12:18:31] [PASSED] yes-or
[12:18:31] [PASSED] no-or
[12:18:31] [PASSED] no-or-or-yes
[12:18:31] [PASSED] yes-or-or-no
[12:18:31] [PASSED] no-or-or-no
[12:18:31] [PASSED] missing-context-engine-class
[12:18:31] [PASSED] missing-context-engine-class-or-yes
[12:18:31] [PASSED] missing-context-engine-class-or-or-yes
[12:18:31] =============== [PASSED] xe_rtp_rules_tests ================
[12:18:31] =============== xe_rtp_process_to_sr_tests ================
[12:18:31] [PASSED] coalesce-same-reg
[12:18:31] [PASSED] coalesce-same-reg-literal-and-func
[12:18:31] [PASSED] no-match-no-add
[12:18:31] [PASSED] two-regs-two-entries
[12:18:31] [PASSED] clr-one-set-other
[12:18:31] [PASSED] set-field
[12:18:31] [PASSED] conflict-duplicate
[12:18:31] [PASSED] conflict-not-disjoint
[12:18:31] [PASSED] conflict-not-disjoint-literal-and-func
[12:18:31] [PASSED] conflict-reg-type
[12:18:31] [PASSED] bad-mcr-reg-forced-to-regular
[12:18:31] [PASSED] bad-regular-reg-forced-to-mcr
[12:18:31] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[12:18:31] ================== xe_rtp_process_tests ===================
[12:18:31] [PASSED] active1
[12:18:31] [PASSED] active2
[12:18:31] [PASSED] active-inactive
[12:18:31] [PASSED] inactive-active
[12:18:31] [PASSED] inactive-active-inactive
[12:18:31] [PASSED] inactive-inactive-inactive
[12:18:31] ============== [PASSED] xe_rtp_process_tests ===============
[12:18:31] ===================== [PASSED] xe_rtp ======================
[12:18:31] ==================== xe_wa (1 subtest) =====================
[12:18:31] ======================== xe_wa_gt =========================
[12:18:31] [PASSED] TIGERLAKE B0
[12:18:31] [PASSED] DG1 A0
[12:18:31] [PASSED] DG1 B0
[12:18:31] [PASSED] ALDERLAKE_S A0
[12:18:31] [PASSED] ALDERLAKE_S B0
[12:18:31] [PASSED] ALDERLAKE_S C0
[12:18:31] [PASSED] ALDERLAKE_S D0
[12:18:31] [PASSED] ALDERLAKE_P A0
[12:18:31] [PASSED] ALDERLAKE_P B0
[12:18:31] [PASSED] ALDERLAKE_P C0
[12:18:31] [PASSED] ALDERLAKE_S RPLS D0
[12:18:31] [PASSED] ALDERLAKE_P RPLU E0
[12:18:31] [PASSED] DG2 G10 C0
[12:18:31] [PASSED] DG2 G11 B1
[12:18:31] [PASSED] DG2 G12 A1
[12:18:31] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:18:31] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:18:31] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[12:18:31] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[12:18:31] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[12:18:31] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[12:18:31] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[12:18:31] ==================== [PASSED] xe_wa_gt =====================
[12:18:31] ====================== [PASSED] xe_wa ======================
[12:18:31] ============================================================
[12:18:31] Testing complete. Ran 793 tests: passed: 765, skipped: 28
[12:18:31] Elapsed time: 36.357s total, 1.879s configuring, 33.762s building, 0.702s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[12:18:31] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:18:33] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:18:58] Starting KUnit Kernel (1/1)...
[12:18:58] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:18:58] ============= refcount_interrupt (4 subtests) ==============
[12:18:58] [PASSED] test_single_irq_change
[12:18:58] [PASSED] test_nested_irq_change
[12:18:58] [PASSED] test_multiple_irq_change
[12:18:58] [PASSED] test_irq_save
[12:18:58] =============== [PASSED] refcount_interrupt ================
[12:18:58] ============ drm_test_pick_cmdline (2 subtests) ============
[12:18:58] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[12:18:58] =============== drm_test_pick_cmdline_named ===============
[12:18:58] [PASSED] NTSC
[12:18:58] [PASSED] NTSC-J
[12:18:58] [PASSED] PAL
[12:18:58] [PASSED] PAL-M
[12:18:58] =========== [PASSED] drm_test_pick_cmdline_named ===========
[12:18:58] ============== [PASSED] drm_test_pick_cmdline ==============
[12:18:58] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[12:18:58] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[12:18:58] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[12:18:58] =========== drm_validate_clone_mode (2 subtests) ===========
[12:18:58] ============== drm_test_check_in_clone_mode ===============
[12:18:58] [PASSED] in_clone_mode
[12:18:58] [PASSED] not_in_clone_mode
[12:18:58] ========== [PASSED] drm_test_check_in_clone_mode ===========
[12:18:58] =============== drm_test_check_valid_clones ===============
[12:18:58] [PASSED] not_in_clone_mode
[12:18:58] [PASSED] valid_clone
[12:18:58] [PASSED] invalid_clone
[12:18:58] =========== [PASSED] drm_test_check_valid_clones ===========
[12:18:58] ============= [PASSED] drm_validate_clone_mode =============
[12:18:58] ============= drm_validate_modeset (1 subtest) =============
[12:18:58] [PASSED] drm_test_check_connector_changed_modeset
[12:18:58] ============== [PASSED] drm_validate_modeset ===============
[12:18:58] ====== drm_test_bridge_get_current_state (1 subtest) =======
[12:18:58] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[12:18:58] ======== [PASSED] drm_test_bridge_get_current_state ========
[12:18:58] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[12:18:58] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[12:18:58] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[12:18:58] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[12:18:58] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[12:18:58] ============== drm_bridge_alloc (2 subtests) ===============
[12:18:58] [PASSED] drm_test_drm_bridge_alloc_basic
[12:18:58] [PASSED] drm_test_drm_bridge_alloc_get_put
[12:18:58] ================ [PASSED] drm_bridge_alloc =================
[12:18:58] ============= drm_bridge_bus_fmt (5 subtests) ==============
[12:18:58] [PASSED] drm_test_bridge_rgb_yuv_rgb
[12:18:58] [PASSED] drm_test_bridge_must_convert_to_yuv444
[12:18:58] [PASSED] drm_test_bridge_hdmi_auto_rgb
[12:18:58] [PASSED] drm_test_bridge_auto_first
[12:18:58] [PASSED] drm_test_bridge_rgb_yuv_no_path
[12:18:58] =============== [PASSED] drm_bridge_bus_fmt ================
[12:18:58] ============= drm_cmdline_parser (40 subtests) =============
[12:18:58] [PASSED] drm_test_cmdline_force_d_only
[12:18:58] [PASSED] drm_test_cmdline_force_D_only_dvi
[12:18:58] [PASSED] drm_test_cmdline_force_D_only_hdmi
[12:18:58] [PASSED] drm_test_cmdline_force_D_only_not_digital
[12:18:58] [PASSED] drm_test_cmdline_force_e_only
[12:18:58] [PASSED] drm_test_cmdline_res
[12:18:58] [PASSED] drm_test_cmdline_res_vesa
[12:18:58] [PASSED] drm_test_cmdline_res_vesa_rblank
[12:18:58] [PASSED] drm_test_cmdline_res_rblank
[12:18:58] [PASSED] drm_test_cmdline_res_bpp
[12:18:58] [PASSED] drm_test_cmdline_res_refresh
[12:18:58] [PASSED] drm_test_cmdline_res_bpp_refresh
[12:18:58] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[12:18:58] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[12:18:58] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[12:18:58] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[12:18:58] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[12:18:58] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[12:18:58] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[12:18:58] [PASSED] drm_test_cmdline_res_margins_force_on
[12:18:58] [PASSED] drm_test_cmdline_res_vesa_margins
[12:18:58] [PASSED] drm_test_cmdline_name
[12:18:58] [PASSED] drm_test_cmdline_name_bpp
[12:18:58] [PASSED] drm_test_cmdline_name_option
[12:18:58] [PASSED] drm_test_cmdline_name_bpp_option
[12:18:58] [PASSED] drm_test_cmdline_rotate_0
[12:18:58] [PASSED] drm_test_cmdline_rotate_90
[12:18:58] [PASSED] drm_test_cmdline_rotate_180
[12:18:58] [PASSED] drm_test_cmdline_rotate_270
[12:18:58] [PASSED] drm_test_cmdline_hmirror
[12:18:58] [PASSED] drm_test_cmdline_vmirror
[12:18:58] [PASSED] drm_test_cmdline_margin_options
[12:18:58] [PASSED] drm_test_cmdline_multiple_options
[12:18:58] [PASSED] drm_test_cmdline_bpp_extra_and_option
[12:18:58] [PASSED] drm_test_cmdline_extra_and_option
[12:18:58] [PASSED] drm_test_cmdline_freestanding_options
[12:18:58] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[12:18:58] [PASSED] drm_test_cmdline_panel_orientation
[12:18:58] ================ drm_test_cmdline_invalid =================
[12:18:58] [PASSED] margin_only
[12:18:58] [PASSED] interlace_only
[12:18:58] [PASSED] res_missing_x
[12:18:58] [PASSED] res_missing_y
[12:18:58] [PASSED] res_bad_y
[12:18:58] [PASSED] res_missing_y_bpp
[12:18:58] [PASSED] res_bad_bpp
[12:18:58] [PASSED] res_bad_refresh
[12:18:58] [PASSED] res_bpp_refresh_force_on_off
[12:18:58] [PASSED] res_invalid_mode
[12:18:58] [PASSED] res_bpp_wrong_place_mode
[12:18:58] [PASSED] name_bpp_refresh
[12:18:58] [PASSED] name_refresh
[12:18:58] [PASSED] name_refresh_wrong_mode
[12:18:58] [PASSED] name_refresh_invalid_mode
[12:18:58] [PASSED] rotate_multiple
[12:18:58] [PASSED] rotate_invalid_val
[12:18:58] [PASSED] rotate_truncated
[12:18:58] [PASSED] invalid_option
[12:18:58] [PASSED] invalid_tv_option
[12:18:58] [PASSED] truncated_tv_option
[12:18:58] ============ [PASSED] drm_test_cmdline_invalid =============
[12:18:58] =============== drm_test_cmdline_tv_options ===============
[12:18:58] [PASSED] NTSC
[12:18:58] [PASSED] NTSC_443
[12:18:58] [PASSED] NTSC_J
[12:18:58] [PASSED] PAL
[12:18:58] [PASSED] PAL_M
[12:18:58] [PASSED] PAL_N
[12:18:58] [PASSED] SECAM
[12:18:58] [PASSED] MONO_525
[12:18:58] [PASSED] MONO_625
[12:18:58] =========== [PASSED] drm_test_cmdline_tv_options ===========
[12:18:58] =============== [PASSED] drm_cmdline_parser ================
[12:18:58] ========== drmm_connector_hdmi_init (20 subtests) ==========
[12:18:58] [PASSED] drm_test_connector_hdmi_init_valid
[12:18:58] [PASSED] drm_test_connector_hdmi_init_bpc_8
[12:18:58] [PASSED] drm_test_connector_hdmi_init_bpc_10
[12:18:58] [PASSED] drm_test_connector_hdmi_init_bpc_12
[12:18:58] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[12:18:58] [PASSED] drm_test_connector_hdmi_init_bpc_null
[12:18:58] [PASSED] drm_test_connector_hdmi_init_formats_empty
[12:18:58] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[12:18:58] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[12:18:58] [PASSED] supported_formats=0x9 yuv420_allowed=1
[12:18:58] [PASSED] supported_formats=0x9 yuv420_allowed=0
[12:18:58] [PASSED] supported_formats=0x5 yuv420_allowed=1
[12:18:58] [PASSED] supported_formats=0x5 yuv420_allowed=0
[12:18:58] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[12:18:58] [PASSED] drm_test_connector_hdmi_init_null_ddc
[12:18:58] [PASSED] drm_test_connector_hdmi_init_null_product
[12:18:58] [PASSED] drm_test_connector_hdmi_init_null_vendor
[12:18:58] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[12:18:58] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[12:18:58] [PASSED] drm_test_connector_hdmi_init_product_valid
[12:18:58] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[12:18:58] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[12:18:58] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[12:18:58] ========= drm_test_connector_hdmi_init_type_valid =========
[12:18:58] [PASSED] HDMI-A
[12:18:58] [PASSED] HDMI-B
[12:18:58] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[12:18:58] ======== drm_test_connector_hdmi_init_type_invalid ========
[12:18:58] [PASSED] Unknown
[12:18:58] [PASSED] VGA
[12:18:58] [PASSED] DVI-I
[12:18:58] [PASSED] DVI-D
[12:18:58] [PASSED] DVI-A
[12:18:58] [PASSED] Composite
[12:18:58] [PASSED] SVIDEO
[12:18:58] [PASSED] LVDS
[12:18:58] [PASSED] Component
[12:18:58] [PASSED] DIN
[12:18:58] [PASSED] DP
[12:18:58] [PASSED] TV
[12:18:58] [PASSED] eDP
[12:18:58] [PASSED] Virtual
[12:18:58] [PASSED] DSI
[12:18:58] [PASSED] DPI
[12:18:58] [PASSED] Writeback
[12:18:58] [PASSED] SPI
[12:18:58] [PASSED] USB
[12:18:58] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[12:18:58] ============ [PASSED] drmm_connector_hdmi_init =============
[12:18:58] ============= drmm_connector_init (3 subtests) =============
[12:18:58] [PASSED] drm_test_drmm_connector_init
[12:18:58] [PASSED] drm_test_drmm_connector_init_null_ddc
[12:18:58] ========= drm_test_drmm_connector_init_type_valid =========
[12:18:58] [PASSED] Unknown
[12:18:58] [PASSED] VGA
[12:18:58] [PASSED] DVI-I
[12:18:58] [PASSED] DVI-D
[12:18:58] [PASSED] DVI-A
[12:18:58] [PASSED] Composite
[12:18:58] [PASSED] SVIDEO
[12:18:58] [PASSED] LVDS
[12:18:58] [PASSED] Component
[12:18:58] [PASSED] DIN
[12:18:58] [PASSED] DP
[12:18:58] [PASSED] HDMI-A
[12:18:58] [PASSED] HDMI-B
[12:18:58] [PASSED] TV
[12:18:58] [PASSED] eDP
[12:18:58] [PASSED] Virtual
[12:18:58] [PASSED] DSI
[12:18:58] [PASSED] DPI
[12:18:58] [PASSED] Writeback
[12:18:58] [PASSED] SPI
[12:18:58] [PASSED] USB
[12:18:58] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[12:18:58] =============== [PASSED] drmm_connector_init ===============
[12:18:58] ========= drm_connector_dynamic_init (6 subtests) ==========
[12:18:58] [PASSED] drm_test_drm_connector_dynamic_init
[12:18:58] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[12:18:58] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[12:18:58] [PASSED] drm_test_drm_connector_dynamic_init_properties
[12:18:58] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[12:18:58] [PASSED] Unknown
[12:18:58] [PASSED] VGA
[12:18:58] [PASSED] DVI-I
[12:18:58] [PASSED] DVI-D
[12:18:58] [PASSED] DVI-A
[12:18:58] [PASSED] Composite
[12:18:58] [PASSED] SVIDEO
[12:18:58] [PASSED] LVDS
[12:18:58] [PASSED] Component
[12:18:58] [PASSED] DIN
[12:18:58] [PASSED] DP
[12:18:58] [PASSED] HDMI-A
[12:18:58] [PASSED] HDMI-B
[12:18:58] [PASSED] TV
[12:18:58] [PASSED] eDP
[12:18:58] [PASSED] Virtual
[12:18:58] [PASSED] DSI
[12:18:58] [PASSED] DPI
[12:18:58] [PASSED] Writeback
[12:18:58] [PASSED] SPI
[12:18:58] [PASSED] USB
[12:18:58] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[12:18:58] ======== drm_test_drm_connector_dynamic_init_name =========
[12:18:58] [PASSED] Unknown
[12:18:58] [PASSED] VGA
[12:18:58] [PASSED] DVI-I
[12:18:58] [PASSED] DVI-D
[12:18:58] [PASSED] DVI-A
[12:18:58] [PASSED] Composite
[12:18:58] [PASSED] SVIDEO
[12:18:58] [PASSED] LVDS
[12:18:58] [PASSED] Component
[12:18:58] [PASSED] DIN
[12:18:58] [PASSED] DP
[12:18:58] [PASSED] HDMI-A
[12:18:58] [PASSED] HDMI-B
[12:18:58] [PASSED] TV
[12:18:58] [PASSED] eDP
[12:18:58] [PASSED] Virtual
[12:18:58] [PASSED] DSI
[12:18:58] [PASSED] DPI
[12:18:58] [PASSED] Writeback
[12:18:58] [PASSED] SPI
[12:18:58] [PASSED] USB
[12:18:58] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[12:18:58] =========== [PASSED] drm_connector_dynamic_init ============
[12:18:58] ==== drm_connector_dynamic_register_early (4 subtests) =====
[12:18:58] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[12:18:58] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[12:18:58] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[12:18:58] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[12:18:58] ====== [PASSED] drm_connector_dynamic_register_early =======
[12:18:58] ======= drm_connector_dynamic_register (7 subtests) ========
[12:18:58] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[12:18:58] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[12:18:58] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[12:18:58] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[12:18:58] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[12:18:58] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[12:18:58] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[12:18:58] ========= [PASSED] drm_connector_dynamic_register ==========
[12:18:58] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[12:18:58] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[12:18:58] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[12:18:58] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[12:18:58] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[12:18:58] ========== drm_test_get_tv_mode_from_name_valid ===========
[12:18:58] [PASSED] NTSC
[12:18:58] [PASSED] NTSC-443
[12:18:58] [PASSED] NTSC-J
[12:18:58] [PASSED] PAL
[12:18:58] [PASSED] PAL-M
[12:18:58] [PASSED] PAL-N
[12:18:58] [PASSED] SECAM
[12:18:58] [PASSED] Mono
[12:18:58] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[12:18:58] [PASSED] drm_test_get_tv_mode_from_name_truncated
[12:18:58] ============ [PASSED] drm_get_tv_mode_from_name ============
[12:18:58] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[12:18:58] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[12:18:58] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[12:18:58] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[12:18:58] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[12:18:58] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[12:18:58] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[12:18:58] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[12:18:58] [PASSED] VIC 96
[12:18:58] [PASSED] VIC 97
[12:18:58] [PASSED] VIC 101
[12:18:58] [PASSED] VIC 102
[12:18:58] [PASSED] VIC 106
[12:18:58] [PASSED] VIC 107
[12:18:58] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[12:18:58] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[12:18:58] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[12:18:58] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[12:18:58] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[12:18:58] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[12:18:58] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[12:18:58] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[12:18:58] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[12:18:58] [PASSED] Automatic
[12:18:58] [PASSED] Full
[12:18:58] [PASSED] Limited 16:235
[12:18:58] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[12:18:58] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[12:18:58] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[12:18:58] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[12:18:58] === drm_test_drm_hdmi_connector_get_output_format_name ====
[12:18:58] [PASSED] RGB
[12:18:58] [PASSED] YUV 4:2:0
[12:18:58] [PASSED] YUV 4:2:2
[12:18:58] [PASSED] YUV 4:4:4
[12:18:58] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[12:18:58] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[12:18:58] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[12:18:58] ============= drm_damage_helper (21 subtests) ==============
[12:18:58] [PASSED] drm_test_damage_iter_no_damage
[12:18:58] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[12:18:58] [PASSED] drm_test_damage_iter_no_damage_src_moved
[12:18:58] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[12:18:58] [PASSED] drm_test_damage_iter_no_damage_not_visible
[12:18:58] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[12:18:58] [PASSED] drm_test_damage_iter_no_damage_no_fb
[12:18:58] [PASSED] drm_test_damage_iter_simple_damage
[12:18:58] [PASSED] drm_test_damage_iter_single_damage
[12:18:58] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[12:18:58] [PASSED] drm_test_damage_iter_single_damage_outside_src
[12:18:58] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[12:18:58] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[12:18:58] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[12:18:58] [PASSED] drm_test_damage_iter_single_damage_src_moved
[12:18:58] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[12:18:58] [PASSED] drm_test_damage_iter_damage
[12:18:58] [PASSED] drm_test_damage_iter_damage_one_intersect
[12:18:58] [PASSED] drm_test_damage_iter_damage_one_outside
[12:18:58] [PASSED] drm_test_damage_iter_damage_src_moved
[12:18:58] [PASSED] drm_test_damage_iter_damage_not_visible
[12:18:58] ================ [PASSED] drm_damage_helper ================
[12:18:58] ============== drm_dp_mst_helper (3 subtests) ==============
[12:18:58] ============== drm_test_dp_mst_calc_pbn_mode ==============
[12:18:58] [PASSED] Clock 154000 BPP 30 DSC disabled
[12:18:58] [PASSED] Clock 234000 BPP 30 DSC disabled
[12:18:58] [PASSED] Clock 297000 BPP 24 DSC disabled
[12:18:58] [PASSED] Clock 332880 BPP 24 DSC enabled
[12:18:58] [PASSED] Clock 324540 BPP 24 DSC enabled
[12:18:58] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[12:18:58] ============== drm_test_dp_mst_calc_pbn_div ===============
[12:18:58] [PASSED] Link rate 2000000 lane count 4
[12:18:58] [PASSED] Link rate 2000000 lane count 2
[12:18:58] [PASSED] Link rate 2000000 lane count 1
[12:18:58] [PASSED] Link rate 1350000 lane count 4
[12:18:58] [PASSED] Link rate 1350000 lane count 2
[12:18:58] [PASSED] Link rate 1350000 lane count 1
[12:18:58] [PASSED] Link rate 1000000 lane count 4
[12:18:58] [PASSED] Link rate 1000000 lane count 2
[12:18:58] [PASSED] Link rate 1000000 lane count 1
[12:18:58] [PASSED] Link rate 810000 lane count 4
[12:18:58] [PASSED] Link rate 810000 lane count 2
[12:18:58] [PASSED] Link rate 810000 lane count 1
[12:18:58] [PASSED] Link rate 540000 lane count 4
[12:18:58] [PASSED] Link rate 540000 lane count 2
[12:18:58] [PASSED] Link rate 540000 lane count 1
[12:18:58] [PASSED] Link rate 270000 lane count 4
[12:18:58] [PASSED] Link rate 270000 lane count 2
[12:18:58] [PASSED] Link rate 270000 lane count 1
[12:18:58] [PASSED] Link rate 162000 lane count 4
[12:18:58] [PASSED] Link rate 162000 lane count 2
[12:18:58] [PASSED] Link rate 162000 lane count 1
[12:18:58] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[12:18:58] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[12:18:58] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[12:18:58] [PASSED] DP_POWER_UP_PHY with port number
[12:18:58] [PASSED] DP_POWER_DOWN_PHY with port number
[12:18:58] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[12:18:58] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[12:18:58] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[12:18:58] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[12:18:58] [PASSED] DP_QUERY_PAYLOAD with port number
[12:18:58] [PASSED] DP_QUERY_PAYLOAD with VCPI
[12:18:58] [PASSED] DP_REMOTE_DPCD_READ with port number
[12:18:58] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[12:18:58] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[12:18:58] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[12:18:58] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[12:18:58] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[12:18:58] [PASSED] DP_REMOTE_I2C_READ with port number
[12:18:58] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[12:18:58] [PASSED] DP_REMOTE_I2C_READ with transactions array
[12:18:58] [PASSED] DP_REMOTE_I2C_WRITE with port number
[12:18:58] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[12:18:58] [PASSED] DP_REMOTE_I2C_WRITE with data array
[12:18:58] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[12:18:58] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[12:18:58] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[12:18:58] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[12:18:58] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[12:18:58] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[12:18:58] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[12:18:58] ================ [PASSED] drm_dp_mst_helper ================
[12:18:58] ================== drm_exec (7 subtests) ===================
[12:18:58] [PASSED] sanitycheck
[12:18:58] [PASSED] test_lock
[12:18:58] [PASSED] test_lock_unlock
[12:18:58] [PASSED] test_duplicates
[12:18:58] [PASSED] test_prepare
[12:18:58] [PASSED] test_prepare_array
[12:18:58] [PASSED] test_multiple_loops
[12:18:58] ==================== [PASSED] drm_exec =====================
[12:18:58] =========== drm_format_helper_test (17 subtests) ===========
[12:18:58] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[12:18:58] [PASSED] single_pixel_source_buffer
[12:18:58] [PASSED] single_pixel_clip_rectangle
[12:18:58] [PASSED] well_known_colors
[12:18:58] [PASSED] destination_pitch
[12:18:58] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[12:18:58] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[12:18:58] [PASSED] single_pixel_source_buffer
[12:18:58] [PASSED] single_pixel_clip_rectangle
[12:18:58] [PASSED] well_known_colors
[12:18:58] [PASSED] destination_pitch
[12:18:58] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[12:18:58] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[12:18:58] [PASSED] single_pixel_source_buffer
[12:18:58] [PASSED] single_pixel_clip_rectangle
[12:18:58] [PASSED] well_known_colors
[12:18:58] [PASSED] destination_pitch
[12:18:58] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[12:18:58] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[12:18:58] [PASSED] single_pixel_source_buffer
[12:18:58] [PASSED] single_pixel_clip_rectangle
[12:18:58] [PASSED] well_known_colors
[12:18:58] [PASSED] destination_pitch
[12:18:58] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[12:18:58] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[12:18:58] [PASSED] single_pixel_source_buffer
[12:18:58] [PASSED] single_pixel_clip_rectangle
[12:18:58] [PASSED] well_known_colors
[12:18:58] [PASSED] destination_pitch
[12:18:58] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[12:18:58] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[12:18:58] [PASSED] single_pixel_source_buffer
[12:18:58] [PASSED] single_pixel_clip_rectangle
[12:18:58] [PASSED] well_known_colors
[12:18:58] [PASSED] destination_pitch
[12:18:58] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[12:18:58] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[12:18:58] [PASSED] single_pixel_source_buffer
[12:18:58] [PASSED] single_pixel_clip_rectangle
[12:18:58] [PASSED] well_known_colors
[12:18:58] [PASSED] destination_pitch
[12:18:58] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[12:18:58] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[12:18:58] [PASSED] single_pixel_source_buffer
[12:18:58] [PASSED] single_pixel_clip_rectangle
[12:18:58] [PASSED] well_known_colors
[12:18:58] [PASSED] destination_pitch
[12:18:58] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[12:18:58] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[12:18:58] [PASSED] single_pixel_source_buffer
[12:18:58] [PASSED] single_pixel_clip_rectangle
[12:18:58] [PASSED] well_known_colors
[12:18:58] [PASSED] destination_pitch
[12:18:58] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[12:18:58] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[12:18:58] [PASSED] single_pixel_source_buffer
[12:18:58] [PASSED] single_pixel_clip_rectangle
[12:18:58] [PASSED] well_known_colors
[12:18:58] [PASSED] destination_pitch
[12:18:58] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[12:18:58] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[12:18:58] [PASSED] single_pixel_source_buffer
[12:18:58] [PASSED] single_pixel_clip_rectangle
[12:18:58] [PASSED] well_known_colors
[12:18:58] [PASSED] destination_pitch
[12:18:58] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[12:18:58] ============== drm_test_fb_xrgb8888_to_mono ===============
[12:18:58] [PASSED] single_pixel_source_buffer
[12:18:58] [PASSED] single_pixel_clip_rectangle
[12:18:58] [PASSED] well_known_colors
[12:18:58] [PASSED] destination_pitch
[12:18:58] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[12:18:58] ==================== drm_test_fb_swab =====================
[12:18:58] [PASSED] single_pixel_source_buffer
[12:18:58] [PASSED] single_pixel_clip_rectangle
[12:18:58] [PASSED] well_known_colors
[12:18:58] [PASSED] destination_pitch
[12:18:58] ================ [PASSED] drm_test_fb_swab =================
[12:18:58] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[12:18:58] [PASSED] single_pixel_source_buffer
[12:18:58] [PASSED] single_pixel_clip_rectangle
[12:18:58] [PASSED] well_known_colors
[12:18:58] [PASSED] destination_pitch
[12:18:58] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[12:18:58] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[12:18:58] [PASSED] single_pixel_source_buffer
[12:18:58] [PASSED] single_pixel_clip_rectangle
[12:18:58] [PASSED] well_known_colors
[12:18:58] [PASSED] destination_pitch
[12:18:58] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[12:18:58] ================= drm_test_fb_clip_offset =================
[12:18:58] [PASSED] pass through
[12:18:58] [PASSED] horizontal offset
[12:18:58] [PASSED] vertical offset
[12:18:58] [PASSED] horizontal and vertical offset
[12:18:58] [PASSED] horizontal offset (custom pitch)
[12:18:58] [PASSED] vertical offset (custom pitch)
[12:18:58] [PASSED] horizontal and vertical offset (custom pitch)
[12:18:58] ============= [PASSED] drm_test_fb_clip_offset =============
[12:18:58] =================== drm_test_fb_memcpy ====================
[12:18:58] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[12:18:58] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[12:18:58] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[12:18:58] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[12:18:58] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[12:18:58] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[12:18:58] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[12:18:58] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[12:18:58] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[12:18:58] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[12:18:58] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[12:18:58] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[12:18:58] =============== [PASSED] drm_test_fb_memcpy ================
[12:18:58] ============= [PASSED] drm_format_helper_test ==============
[12:18:58] ================= drm_format (18 subtests) =================
[12:18:58] [PASSED] drm_test_format_block_width_invalid
[12:18:58] [PASSED] drm_test_format_block_width_one_plane
[12:18:58] [PASSED] drm_test_format_block_width_two_plane
[12:18:58] [PASSED] drm_test_format_block_width_three_plane
[12:18:58] [PASSED] drm_test_format_block_width_tiled
[12:18:58] [PASSED] drm_test_format_block_height_invalid
[12:18:58] [PASSED] drm_test_format_block_height_one_plane
[12:18:58] [PASSED] drm_test_format_block_height_two_plane
[12:18:58] [PASSED] drm_test_format_block_height_three_plane
[12:18:58] [PASSED] drm_test_format_block_height_tiled
[12:18:58] [PASSED] drm_test_format_min_pitch_invalid
[12:18:58] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[12:18:58] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[12:18:58] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[12:18:58] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[12:18:58] [PASSED] drm_test_format_min_pitch_two_plane
[12:18:58] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[12:18:58] [PASSED] drm_test_format_min_pitch_tiled
[12:18:58] =================== [PASSED] drm_format ====================
[12:18:58] ============== drm_framebuffer (10 subtests) ===============
[12:18:58] ========== drm_test_framebuffer_check_src_coords ==========
[12:18:58] [PASSED] Success: source fits into fb
[12:18:58] [PASSED] Fail: overflowing fb with x-axis coordinate
[12:18:58] [PASSED] Fail: overflowing fb with y-axis coordinate
[12:18:58] [PASSED] Fail: overflowing fb with source width
[12:18:58] [PASSED] Fail: overflowing fb with source height
[12:18:58] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[12:18:58] [PASSED] drm_test_framebuffer_cleanup
[12:18:58] =============== drm_test_framebuffer_create ===============
[12:18:58] [PASSED] ABGR8888 normal sizes
[12:18:58] [PASSED] ABGR8888 max sizes
[12:18:58] [PASSED] ABGR8888 pitch greater than min required
[12:18:58] [PASSED] ABGR8888 pitch less than min required
[12:18:58] [PASSED] ABGR8888 Invalid width
[12:18:58] [PASSED] ABGR8888 Invalid buffer handle
[12:18:58] [PASSED] No pixel format
[12:18:58] [PASSED] ABGR8888 Width 0
[12:18:58] [PASSED] ABGR8888 Height 0
[12:18:58] [PASSED] ABGR8888 Out of bound height * pitch combination
[12:18:58] [PASSED] ABGR8888 Large buffer offset
[12:18:58] [PASSED] ABGR8888 Buffer offset for inexistent plane
[12:18:58] [PASSED] ABGR8888 Invalid flag
[12:18:58] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[12:18:58] [PASSED] ABGR8888 Valid buffer modifier
[12:18:58] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[12:18:58] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[12:18:58] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[12:18:58] [PASSED] NV12 Normal sizes
[12:18:58] [PASSED] NV12 Max sizes
[12:18:58] [PASSED] NV12 Invalid pitch
[12:18:58] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[12:18:58] [PASSED] NV12 different modifier per-plane
[12:18:58] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[12:18:58] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[12:18:58] [PASSED] NV12 Modifier for inexistent plane
[12:18:58] [PASSED] NV12 Handle for inexistent plane
[12:18:58] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[12:18:58] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[12:18:58] [PASSED] YVU420 Normal sizes
[12:18:58] [PASSED] YVU420 Max sizes
[12:18:58] [PASSED] YVU420 Invalid pitch
[12:18:58] [PASSED] YVU420 Different pitches
[12:18:58] [PASSED] YVU420 Different buffer offsets/pitches
[12:18:58] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[12:18:58] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[12:18:58] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[12:18:58] [PASSED] YVU420 Valid modifier
[12:18:58] [PASSED] YVU420 Different modifiers per plane
[12:18:58] [PASSED] YVU420 Modifier for inexistent plane
[12:18:58] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[12:18:58] [PASSED] X0L2 Normal sizes
[12:18:58] [PASSED] X0L2 Max sizes
[12:18:58] [PASSED] X0L2 Invalid pitch
[12:18:58] [PASSED] X0L2 Pitch greater than minimum required
[12:18:58] [PASSED] X0L2 Handle for inexistent plane
[12:18:58] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[12:18:58] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[12:18:58] [PASSED] X0L2 Valid modifier
[12:18:58] [PASSED] X0L2 Modifier for inexistent plane
[12:18:58] =========== [PASSED] drm_test_framebuffer_create ===========
[12:18:58] [PASSED] drm_test_framebuffer_free
[12:18:58] [PASSED] drm_test_framebuffer_init
[12:18:58] [PASSED] drm_test_framebuffer_init_bad_format
[12:18:58] [PASSED] drm_test_framebuffer_init_dev_mismatch
[12:18:58] [PASSED] drm_test_framebuffer_lookup
[12:18:58] [PASSED] drm_test_framebuffer_lookup_inexistent
[12:18:58] [PASSED] drm_test_framebuffer_modifiers_not_supported
[12:18:58] ================= [PASSED] drm_framebuffer =================
[12:18:58] ================ drm_gem_shmem (8 subtests) ================
[12:18:58] [PASSED] drm_gem_shmem_test_obj_create
[12:18:58] [PASSED] drm_gem_shmem_test_obj_create_private
[12:18:58] [PASSED] drm_gem_shmem_test_pin_pages
[12:18:58] [PASSED] drm_gem_shmem_test_vmap
[12:18:58] [PASSED] drm_gem_shmem_test_get_sg_table
[12:18:58] [PASSED] drm_gem_shmem_test_get_pages_sgt
[12:18:58] [PASSED] drm_gem_shmem_test_madvise
[12:18:58] [PASSED] drm_gem_shmem_test_purge
[12:18:58] ================== [PASSED] drm_gem_shmem ==================
[12:18:58] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[12:18:58] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[12:18:58] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[12:18:58] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[12:18:58] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[12:18:58] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[12:18:58] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[12:18:58] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[12:18:58] [PASSED] Automatic
[12:18:58] [PASSED] Full
[12:18:58] [PASSED] Limited 16:235
[12:18:58] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[12:18:58] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[12:18:58] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[12:18:58] [PASSED] drm_test_check_disable_connector
[12:18:58] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[12:18:58] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[12:18:58] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[12:18:58] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[12:18:58] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[12:18:58] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[12:18:58] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[12:18:58] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[12:18:58] [PASSED] drm_test_check_output_bpc_dvi
[12:18:58] [PASSED] drm_test_check_output_bpc_format_vic_1
[12:18:58] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[12:18:58] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[12:18:58] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[12:18:58] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[12:18:58] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[12:18:58] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[12:18:58] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[12:18:58] ============ drm_test_check_hdmi_color_format =============
[12:18:58] [PASSED] AUTO -> RGB
[12:18:58] [PASSED] YCBCR422 -> YUV422
[12:18:58] [PASSED] YCBCR420 -> YUV420
[12:18:58] [PASSED] YCBCR444 -> YUV444
[12:18:58] [PASSED] RGB -> RGB
[12:18:58] ======== [PASSED] drm_test_check_hdmi_color_format =========
[12:18:58] ======== drm_test_check_hdmi_color_format_420_only ========
[12:18:58] [PASSED] RGB should fail
[12:18:58] [PASSED] YUV444 should fail
[12:18:58] [PASSED] YUV422 should fail
[12:18:58] [PASSED] YUV420 should work
[12:18:58] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[12:18:58] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[12:18:58] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[12:18:58] [PASSED] drm_test_check_broadcast_rgb_value
[12:18:58] [PASSED] drm_test_check_bpc_8_value
[12:18:58] [PASSED] drm_test_check_bpc_10_value
[12:18:58] [PASSED] drm_test_check_bpc_12_value
[12:18:58] [PASSED] drm_test_check_format_value
[12:18:58] [PASSED] drm_test_check_tmds_char_value
[12:18:58] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[12:18:58] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[12:18:58] [PASSED] drm_test_check_mode_valid
[12:18:58] [PASSED] drm_test_check_mode_valid_reject
[12:18:58] [PASSED] drm_test_check_mode_valid_reject_rate
[12:18:58] [PASSED] drm_test_check_mode_valid_reject_max_clock
[12:18:58] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[12:18:58] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[12:18:58] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[12:18:58] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[12:18:58] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[12:18:58] [PASSED] drm_test_check_infoframes
[12:18:58] [PASSED] drm_test_check_reject_avi_infoframe
[12:18:58] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[12:18:58] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[12:18:58] [PASSED] drm_test_check_reject_audio_infoframe
[12:18:58] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[12:18:58] ================= drm_managed (2 subtests) =================
[12:18:58] [PASSED] drm_test_managed_release_action
[12:18:58] [PASSED] drm_test_managed_run_action
[12:18:58] =================== [PASSED] drm_managed ===================
[12:18:58] =================== drm_mm (6 subtests) ====================
[12:18:58] [PASSED] drm_test_mm_init
[12:18:58] [PASSED] drm_test_mm_debug
[12:18:58] [PASSED] drm_test_mm_align32
[12:18:58] [PASSED] drm_test_mm_align64
[12:18:58] [PASSED] drm_test_mm_lowest
[12:18:58] [PASSED] drm_test_mm_highest
[12:18:58] ===================== [PASSED] drm_mm ======================
[12:18:58] ============= drm_modes_analog_tv (5 subtests) =============
[12:18:58] [PASSED] drm_test_modes_analog_tv_mono_576i
[12:18:58] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[12:18:58] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[12:18:58] [PASSED] drm_test_modes_analog_tv_pal_576i
[12:18:58] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[12:18:58] =============== [PASSED] drm_modes_analog_tv ===============
[12:18:58] ============== drm_plane_helper (2 subtests) ===============
[12:18:58] =============== drm_test_check_plane_state ================
[12:18:58] [PASSED] clipping_simple
[12:18:58] [PASSED] clipping_rotate_reflect
[12:18:58] [PASSED] positioning_simple
[12:18:58] [PASSED] upscaling
[12:18:58] [PASSED] downscaling
[12:18:58] [PASSED] rounding1
[12:18:58] [PASSED] rounding2
[12:18:58] [PASSED] rounding3
[12:18:58] [PASSED] rounding4
[12:18:58] =========== [PASSED] drm_test_check_plane_state ============
[12:18:58] =========== drm_test_check_invalid_plane_state ============
[12:18:58] [PASSED] positioning_invalid
[12:18:58] [PASSED] upscaling_invalid
[12:18:58] [PASSED] downscaling_invalid
[12:18:58] ======= [PASSED] drm_test_check_invalid_plane_state ========
[12:18:58] ================ [PASSED] drm_plane_helper =================
[12:18:58] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[12:18:58] ====== drm_test_connector_helper_tv_get_modes_check =======
[12:18:58] [PASSED] None
[12:18:58] [PASSED] PAL
[12:18:58] [PASSED] NTSC
[12:18:58] [PASSED] Both, NTSC Default
[12:18:58] [PASSED] Both, PAL Default
[12:18:58] [PASSED] Both, NTSC Default, with PAL on command-line
[12:18:58] [PASSED] Both, PAL Default, with NTSC on command-line
[12:18:58] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[12:18:58] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[12:18:58] ================== drm_rect (9 subtests) ===================
[12:18:58] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[12:18:58] [PASSED] drm_test_rect_clip_scaled_not_clipped
[12:18:58] [PASSED] drm_test_rect_clip_scaled_clipped
[12:18:58] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[12:18:58] ================= drm_test_rect_intersect =================
[12:18:58] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[12:18:58] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[12:18:58] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[12:18:58] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[12:18:58] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[12:18:58] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[12:18:58] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[12:18:58] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[12:18:58] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[12:18:58] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[12:18:58] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[12:18:58] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[12:18:58] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[12:18:58] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[12:18:58] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[12:18:58] ============= [PASSED] drm_test_rect_intersect =============
[12:18:58] ================ drm_test_rect_calc_hscale ================
[12:18:58] [PASSED] normal use
[12:18:58] [PASSED] out of max range
[12:18:58] [PASSED] out of min range
[12:18:58] [PASSED] zero dst
[12:18:58] [PASSED] negative src
[12:18:58] [PASSED] negative dst
[12:18:58] ============ [PASSED] drm_test_rect_calc_hscale ============
[12:18:58] ================ drm_test_rect_calc_vscale ================
[12:18:58] [PASSED] normal use
[12:18:58] [PASSED] out of max range
[12:18:58] [PASSED] out of min range
[12:18:58] [PASSED] zero dst
[12:18:58] [PASSED] negative src
[12:18:58] [PASSED] negative dst
[12:18:58] ============ [PASSED] drm_test_rect_calc_vscale ============
[12:18:58] ================== drm_test_rect_rotate ===================
[12:18:58] [PASSED] reflect-x
[12:18:58] [PASSED] reflect-y
[12:18:58] [PASSED] rotate-0
[12:18:58] [PASSED] rotate-90
[12:18:58] [PASSED] rotate-180
[12:18:58] [PASSED] rotate-270
[12:18:58] ============== [PASSED] drm_test_rect_rotate ===============
[12:18:58] ================ drm_test_rect_rotate_inv =================
[12:18:58] [PASSED] reflect-x
[12:18:58] [PASSED] reflect-y
[12:18:58] [PASSED] rotate-0
[12:18:58] [PASSED] rotate-90
[12:18:58] [PASSED] rotate-180
[12:18:58] [PASSED] rotate-270
[12:18:58] ============ [PASSED] drm_test_rect_rotate_inv =============
[12:18:58] ==================== [PASSED] drm_rect =====================
[12:18:58] ============ drm_sysfb_modeset_test (1 subtest) ============
[12:18:58] ============ drm_test_sysfb_build_fourcc_list =============
[12:18:58] [PASSED] no native formats
[12:18:58] [PASSED] XRGB8888 as native format
[12:18:58] [PASSED] remove duplicates
[12:18:58] [PASSED] convert alpha formats
[12:18:58] [PASSED] random formats
[12:18:58] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[12:18:58] ============= [PASSED] drm_sysfb_modeset_test ==============
[12:18:58] ================== drm_fixp (2 subtests) ===================
[12:18:58] [PASSED] drm_test_int2fixp
[12:18:58] [PASSED] drm_test_sm2fixp
[12:18:58] ==================== [PASSED] drm_fixp =====================
[12:18:58] ============================================================
[12:18:58] Testing complete. Ran 641 tests: passed: 641
[12:18:58] Elapsed time: 27.036s total, 1.883s configuring, 24.988s building, 0.135s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[12:18:58] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:19:00] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:19:10] Starting KUnit Kernel (1/1)...
[12:19:10] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:19:10] ============= refcount_interrupt (4 subtests) ==============
[12:19:10] [PASSED] test_single_irq_change
[12:19:10] [PASSED] test_nested_irq_change
[12:19:10] [PASSED] test_multiple_irq_change
[12:19:10] [PASSED] test_irq_save
[12:19:10] =============== [PASSED] refcount_interrupt ================
[12:19:10] ================= ttm_device (5 subtests) ==================
[12:19:10] [PASSED] ttm_device_init_basic
[12:19:10] [PASSED] ttm_device_init_multiple
[12:19:10] [PASSED] ttm_device_fini_basic
[12:19:10] [PASSED] ttm_device_init_no_vma_man
[12:19:10] ================== ttm_device_init_pools ==================
[12:19:10] [PASSED] No DMA allocations, no DMA32 required
[12:19:10] [PASSED] DMA allocations, DMA32 required
[12:19:10] [PASSED] No DMA allocations, DMA32 required
[12:19:10] [PASSED] DMA allocations, no DMA32 required
[12:19:10] ============== [PASSED] ttm_device_init_pools ==============
[12:19:10] =================== [PASSED] ttm_device ====================
[12:19:10] ================== ttm_pool (8 subtests) ===================
[12:19:10] ================== ttm_pool_alloc_basic ===================
[12:19:10] [PASSED] One page
[12:19:10] [PASSED] More than one page
[12:19:10] [PASSED] Above the allocation limit
[12:19:10] [PASSED] One page, with coherent DMA mappings enabled
[12:19:10] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:19:10] ============== [PASSED] ttm_pool_alloc_basic ===============
[12:19:10] ============== ttm_pool_alloc_basic_dma_addr ==============
[12:19:10] [PASSED] One page
[12:19:10] [PASSED] More than one page
[12:19:10] [PASSED] Above the allocation limit
[12:19:10] [PASSED] One page, with coherent DMA mappings enabled
[12:19:10] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:19:10] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[12:19:10] [PASSED] ttm_pool_alloc_order_caching_match
[12:19:10] [PASSED] ttm_pool_alloc_caching_mismatch
[12:19:10] [PASSED] ttm_pool_alloc_order_mismatch
[12:19:10] [PASSED] ttm_pool_free_dma_alloc
[12:19:10] [PASSED] ttm_pool_free_no_dma_alloc
[12:19:10] [PASSED] ttm_pool_fini_basic
[12:19:10] ==================== [PASSED] ttm_pool =====================
[12:19:10] ================ ttm_resource (8 subtests) =================
[12:19:10] ================= ttm_resource_init_basic =================
[12:19:10] [PASSED] Init resource in TTM_PL_SYSTEM
[12:19:10] [PASSED] Init resource in TTM_PL_VRAM
[12:19:10] [PASSED] Init resource in a private placement
[12:19:10] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[12:19:10] ============= [PASSED] ttm_resource_init_basic =============
[12:19:10] [PASSED] ttm_resource_init_pinned
[12:19:10] [PASSED] ttm_resource_fini_basic
[12:19:10] [PASSED] ttm_resource_manager_init_basic
[12:19:10] [PASSED] ttm_resource_manager_usage_basic
[12:19:10] [PASSED] ttm_resource_manager_set_used_basic
[12:19:10] [PASSED] ttm_sys_man_alloc_basic
[12:19:10] [PASSED] ttm_sys_man_free_basic
[12:19:10] ================== [PASSED] ttm_resource ===================
[12:19:10] =================== ttm_tt (15 subtests) ===================
[12:19:10] ==================== ttm_tt_init_basic ====================
[12:19:10] [PASSED] Page-aligned size
[12:19:10] [PASSED] Extra pages requested
[12:19:10] ================ [PASSED] ttm_tt_init_basic ================
[12:19:10] [PASSED] ttm_tt_init_misaligned
[12:19:10] [PASSED] ttm_tt_fini_basic
[12:19:10] [PASSED] ttm_tt_fini_sg
[12:19:10] [PASSED] ttm_tt_fini_shmem
[12:19:10] [PASSED] ttm_tt_create_basic
[12:19:10] [PASSED] ttm_tt_create_invalid_bo_type
[12:19:10] [PASSED] ttm_tt_create_ttm_exists
[12:19:10] [PASSED] ttm_tt_create_failed
[12:19:10] [PASSED] ttm_tt_destroy_basic
[12:19:10] [PASSED] ttm_tt_populate_null_ttm
[12:19:10] [PASSED] ttm_tt_populate_populated_ttm
[12:19:10] [PASSED] ttm_tt_unpopulate_basic
[12:19:10] [PASSED] ttm_tt_unpopulate_empty_ttm
[12:19:10] [PASSED] ttm_tt_swapin_basic
[12:19:10] ===================== [PASSED] ttm_tt ======================
[12:19:10] =================== ttm_bo (14 subtests) ===================
[12:19:10] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[12:19:10] [PASSED] Cannot be interrupted and sleeps
[12:19:10] [PASSED] Cannot be interrupted, locks straight away
[12:19:10] [PASSED] Can be interrupted, sleeps
[12:19:10] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[12:19:10] [PASSED] ttm_bo_reserve_locked_no_sleep
[12:19:10] [PASSED] ttm_bo_reserve_no_wait_ticket
[12:19:10] [PASSED] ttm_bo_reserve_double_resv
[12:19:10] [PASSED] ttm_bo_reserve_interrupted
[12:19:10] [PASSED] ttm_bo_reserve_deadlock
[12:19:10] [PASSED] ttm_bo_unreserve_basic
[12:19:10] [PASSED] ttm_bo_unreserve_pinned
[12:19:10] [PASSED] ttm_bo_unreserve_bulk
[12:19:10] [PASSED] ttm_bo_fini_basic
[12:19:10] [PASSED] ttm_bo_fini_shared_resv
[12:19:10] [PASSED] ttm_bo_pin_basic
[12:19:10] [PASSED] ttm_bo_pin_unpin_resource
[12:19:10] [PASSED] ttm_bo_multiple_pin_one_unpin
[12:19:10] ===================== [PASSED] ttm_bo ======================
[12:19:10] ============== ttm_bo_validate (22 subtests) ===============
[12:19:10] ============== ttm_bo_init_reserved_sys_man ===============
[12:19:10] [PASSED] Buffer object for userspace
[12:19:10] [PASSED] Kernel buffer object
[12:19:10] [PASSED] Shared buffer object
[12:19:10] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[12:19:10] ============== ttm_bo_init_reserved_mock_man ==============
[12:19:10] [PASSED] Buffer object for userspace
[12:19:10] [PASSED] Kernel buffer object
[12:19:10] [PASSED] Shared buffer object
[12:19:10] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[12:19:10] [PASSED] ttm_bo_init_reserved_resv
[12:19:10] ================== ttm_bo_validate_basic ==================
[12:19:10] [PASSED] Buffer object for userspace
[12:19:10] [PASSED] Kernel buffer object
[12:19:10] [PASSED] Shared buffer object
[12:19:10] ============== [PASSED] ttm_bo_validate_basic ==============
[12:19:10] [PASSED] ttm_bo_validate_invalid_placement
[12:19:10] ============= ttm_bo_validate_same_placement ==============
[12:19:10] [PASSED] System manager
[12:19:10] [PASSED] VRAM manager
[12:19:10] ========= [PASSED] ttm_bo_validate_same_placement ==========
[12:19:10] [PASSED] ttm_bo_validate_failed_alloc
[12:19:10] [PASSED] ttm_bo_validate_pinned
[12:19:10] [PASSED] ttm_bo_validate_busy_placement
[12:19:10] ================ ttm_bo_validate_multihop =================
[12:19:10] [PASSED] Buffer object for userspace
[12:19:10] [PASSED] Kernel buffer object
[12:19:10] [PASSED] Shared buffer object
[12:19:10] ============ [PASSED] ttm_bo_validate_multihop =============
[12:19:10] ========== ttm_bo_validate_no_placement_signaled ==========
[12:19:10] [PASSED] Buffer object in system domain, no page vector
[12:19:10] [PASSED] Buffer object in system domain with an existing page vector
[12:19:10] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[12:19:10] ======== ttm_bo_validate_no_placement_not_signaled ========
[12:19:10] [PASSED] Buffer object for userspace
[12:19:10] [PASSED] Kernel buffer object
[12:19:10] [PASSED] Shared buffer object
[12:19:10] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[12:19:10] [PASSED] ttm_bo_validate_move_fence_signaled
[12:19:10] ========= ttm_bo_validate_move_fence_not_signaled =========
[12:19:10] [PASSED] Waits for GPU
[12:19:10] [PASSED] Tries to lock straight away
[12:19:10] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[12:19:10] [PASSED] ttm_bo_validate_swapout
[12:19:10] [PASSED] ttm_bo_validate_happy_evict
[12:19:10] [PASSED] ttm_bo_validate_all_pinned_evict
[12:19:10] [PASSED] ttm_bo_validate_allowed_only_evict
[12:19:10] [PASSED] ttm_bo_validate_deleted_evict
[12:19:10] [PASSED] ttm_bo_validate_busy_domain_evict
[12:19:10] [PASSED] ttm_bo_validate_evict_gutting
[12:19:10] [PASSED] ttm_bo_validate_recrusive_evict
[12:19:10] ================= [PASSED] ttm_bo_validate =================
[12:19:10] ============================================================
[12:19:10] Testing complete. Ran 106 tests: passed: 106
[12:19:10] Elapsed time: 12.086s total, 1.837s configuring, 10.034s building, 0.187s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/dma-buf/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/dma-buf/.kunitconfig
[12:19:11] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:19:12] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:19:21] Starting KUnit Kernel (1/1)...
[12:19:21] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:19:21] ============= refcount_interrupt (4 subtests) ==============
[12:19:21] [PASSED] test_single_irq_change
[12:19:21] [PASSED] test_nested_irq_change
[12:19:21] [PASSED] test_multiple_irq_change
[12:19:21] [PASSED] test_irq_save
[12:19:21] =============== [PASSED] refcount_interrupt ================
[12:19:21] =============== dma-buf-fence (12 subtests) ================
[12:19:21] [PASSED] test_sanitycheck
[12:19:21] [PASSED] test_signaling
[12:19:21] [PASSED] test_add_callback
[12:19:21] [PASSED] test_late_add_callback
[12:19:21] [PASSED] test_rm_callback
[12:19:21] [PASSED] test_late_rm_callback
[12:19:21] [PASSED] test_status
[12:19:21] [PASSED] test_error
[12:19:21] [PASSED] test_wait
[12:19:21] [PASSED] test_wait_timeout
[12:19:21] [PASSED] test_stub
[12:19:21] [SKIPPED] test_race_signal_callback (requires at least 2 CPUs)
[12:19:21] ================== [PASSED] dma-buf-fence ==================
[12:19:21] ============ dma-buf-fence-chain (11 subtests) =============
[12:19:21] [PASSED] test_sanitycheck
[12:19:21] [PASSED] test_find_seqno
[12:19:21] [PASSED] test_find_signaled
[12:19:21] [PASSED] test_find_out_of_order
[12:19:26] [PASSED] test_find_gap
[12:19:26] [PASSED] test_find_race
[12:19:26] [PASSED] test_signal_forward
[12:19:26] [PASSED] test_signal_backward
[12:19:27] [PASSED] test_wait_forward
[12:19:27] [PASSED] test_wait_backward
[12:19:27] [PASSED] test_wait_random
[12:19:27] =============== [PASSED] dma-buf-fence-chain ===============
[12:19:27] ============ dma-buf-fence-unwrap (10 subtests) ============
[12:19:27] [PASSED] test_sanitycheck
[12:19:27] [PASSED] test_unwrap_array
[12:19:27] [PASSED] test_unwrap_chain
[12:19:27] [PASSED] test_unwrap_chain_array
[12:19:27] [PASSED] test_unwrap_merge
[12:19:27] [PASSED] test_unwrap_merge_duplicate
[12:19:27] [PASSED] test_unwrap_merge_seqno
[12:19:27] [PASSED] test_unwrap_merge_order
[12:19:27] [PASSED] test_unwrap_merge_complex
[12:19:27] [PASSED] test_unwrap_merge_complex_seqno
[12:19:27] ============== [PASSED] dma-buf-fence-unwrap ===============
[12:19:27] ================ dma-buf-resv (5 subtests) =================
[12:19:27] [PASSED] test_sanitycheck
[12:19:27] ===================== test_signaling ======================
[12:19:27] [PASSED] kernel
[12:19:27] [PASSED] write
[12:19:27] [PASSED] read
[12:19:27] [PASSED] bookkeep
[12:19:27] ================= [PASSED] test_signaling ==================
[12:19:27] ====================== test_for_each ======================
[12:19:27] [PASSED] kernel
[12:19:27] [PASSED] write
[12:19:27] [PASSED] read
[12:19:27] [PASSED] bookkeep
[12:19:27] ================== [PASSED] test_for_each ==================
[12:19:27] ================= test_for_each_unlocked ==================
[12:19:27] [PASSED] kernel
[12:19:27] [PASSED] write
[12:19:27] [PASSED] read
[12:19:27] [PASSED] bookkeep
[12:19:27] ============= [PASSED] test_for_each_unlocked ==============
[12:19:27] ===================== test_get_fences =====================
[12:19:27] [PASSED] kernel
[12:19:27] [PASSED] write
[12:19:27] [PASSED] read
[12:19:27] [PASSED] bookkeep
[12:19:27] ================= [PASSED] test_get_fences =================
[12:19:27] ================== [PASSED] dma-buf-resv ===================
[12:19:27] ============================================================
[12:19:27] Testing complete. Ran 54 tests: passed: 53, skipped: 1
[12:19:27] Elapsed time: 16.028s total, 1.856s configuring, 8.850s building, 5.271s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [PATCH v7 6/9] drm/xe/sysctrl: Replace FIELD_GET() with REG_FIELD_GET()
2026-09-07 12:07 ` Mallesh, Koujalagi
@ 2026-09-07 14:07 ` Michal Wajdeczko
2026-09-08 7:36 ` Mallesh, Koujalagi
0 siblings, 1 reply; 21+ messages in thread
From: Michal Wajdeczko @ 2026-09-07 14:07 UTC (permalink / raw)
To: Mallesh, Koujalagi, intel-xe, rodrigo.vivi, matthew.brost
Cc: anshuman.gupta, badal.nilawar, vinay.belgaumkar, riana.tauro,
karthik.poosa, sk.anirban, raag.jadav, aravind.iddamsetty,
umesh.nerlige.ramappa, dnyaneshwar.bhadane, anoop.c.vijay
On 9/7/2026 2:07 PM, Mallesh, Koujalagi wrote:
>
> On 07-09-2026 05:17 pm, Michal Wajdeczko wrote:
>>
>> On 9/7/2026 12:53 PM, Mallesh Koujalagi wrote:
>>> Use REG_FIELD_GET() when extracting fields from SysCtrl and
>> nit:
>>
>> Use REG_FIELD_GET()and REG_FIELD_PREP() when working with fields
> Sure!
>>
>>> application headers. This better reflects that the masks
>>> represent register-style bitfields and improves consistency.
>>>
>>> Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
>>> ---
>>> v7:
>>> - Update FIELD_PREP to REG_FIELD_PREP. (Sashiko)
>>> - Update FIELD_GET to REG_FIELD_GET.
>>> ---
>>> drivers/gpu/drm/xe/xe_sysctrl_mailbox.c | 20 ++++++++++----------
>>> drivers/gpu/drm/xe/xe_sysctrl_mailbox.h | 6 +++---
>>> 2 files changed, 13 insertions(+), 13 deletions(-)
>>>
>>> diff --git a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
>>> index 50bbdab072de..cdd929ebed4a 100644
>>> --- a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
>>> +++ b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
>>> @@ -24,16 +24,16 @@ struct xe_sysctrl_mailbox_msg_hdr {
>>> } __packed;
>>> #define XE_SYSCTRL_HDR_GROUP_ID(hdr) \
>>> - FIELD_GET(SYSCTRL_HDR_GROUP_ID_MASK, le32_to_cpu((hdr)->data))
>>> + REG_FIELD_GET(SYSCTRL_HDR_GROUP_ID_MASK, le32_to_cpu((hdr)->data))
>>> #define XE_SYSCTRL_HDR_COMMAND(hdr) \
>>> - FIELD_GET(SYSCTRL_HDR_COMMAND_MASK, le32_to_cpu((hdr)->data))
>>> + REG_FIELD_GET(SYSCTRL_HDR_COMMAND_MASK, le32_to_cpu((hdr)->data))
>>> #define XE_SYSCTRL_HDR_IS_RESPONSE(hdr) \
>>> - FIELD_GET(SYSCTRL_HDR_IS_RESPONSE, le32_to_cpu((hdr)->data))
>>> + REG_FIELD_GET(SYSCTRL_HDR_IS_RESPONSE, le32_to_cpu((hdr)->data))
>>> #define XE_SYSCTRL_HDR_RESULT(hdr) \
>>> - FIELD_GET(SYSCTRL_HDR_RESULT_MASK, le32_to_cpu((hdr)->data))
>>> + REG_FIELD_GET(SYSCTRL_HDR_RESULT_MASK, le32_to_cpu((hdr)->data))
>>> static int sysctrl_wait_bit_clear(struct xe_sysctrl *sc, u32 bit_mask,
>>> unsigned int timeout_ms)
>>> @@ -112,8 +112,8 @@ static int sysctrl_prepare_command(struct xe_device *xe,
>>> return -ENOMEM;
>>> hdr = (struct xe_sysctrl_mailbox_msg_hdr *)buffer;
>>> - hdr->data = cpu_to_le32(FIELD_PREP(SYSCTRL_HDR_GROUP_ID_MASK, group_id) |
>>> - FIELD_PREP(SYSCTRL_HDR_COMMAND_MASK, command));
>>> + hdr->data = cpu_to_le32(REG_FIELD_PREP(SYSCTRL_HDR_GROUP_ID_MASK, group_id) |
>>> + REG_FIELD_PREP(SYSCTRL_HDR_COMMAND_MASK, command));
>>> if (data_in && data_in_len)
>>> memcpy(buffer + sizeof(*hdr), data_in, data_in_len);
>>> @@ -186,8 +186,8 @@ static int sysctrl_process_frame(struct xe_sysctrl *sc, void *out,
>>> }
>>> ctrl_reg = xe_mmio_read32(sc->mmio, SYSCTRL_MB_CTRL);
>>> - total_frames = FIELD_GET(SYSCTRL_FRAME_TOTAL_MASK, ctrl_reg);
>>> - curr_frame = FIELD_GET(SYSCTRL_FRAME_CURRENT_MASK, ctrl_reg);
>>> + total_frames = REG_FIELD_GET(SYSCTRL_FRAME_TOTAL_MASK, ctrl_reg);
>>> + curr_frame = REG_FIELD_GET(SYSCTRL_FRAME_CURRENT_MASK, ctrl_reg);
>>> sysctrl_read_frame(sc, out, frame_size);
>>> sysctrl_clear_response(sc);
>>> @@ -295,8 +295,8 @@ void xe_sysctrl_create_command(struct xe_sysctrl_mailbox_command *command, u8 gr
>>> {
>>> struct xe_sysctrl_app_msg_hdr header = {0};
>>> - header.data = FIELD_PREP(APP_HDR_GROUP_ID_MASK, group_id) |
>>> - FIELD_PREP(APP_HDR_COMMAND_MASK, cmd_id);
>>> + header.data = REG_FIELD_PREP(APP_HDR_GROUP_ID_MASK, group_id) |
>>> + REG_FIELD_PREP(APP_HDR_COMMAND_MASK, cmd_id);
>> hmm, shouldn't we use le32 conversion here?
>> other sysctrl cmd/hdr parsing/prep seems to use it
>
> le32 conversion is not required.
>
> le32 already removed in the code, find the change: https://patchwork.freedesktop.org/patch/717045/?series=164526&rev=1
hmm, but was this fix correct? maybe the problem is elsewhere?
today we have:
struct xe_sysctrl_mailbox_msg_hdr {
__le32 data;
} __packed;
and:
struct xe_sysctrl_app_msg_hdr {
u32 data;
} __packed;
both used during sysctrl communication but only one is using __le32
IMO either both or none should use __le32,
or I'm missing something?
>
>>
>>> command->header = header;
>>> command->data_in = request;
>>> diff --git a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.h b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.h
>>> index f0d5e3d7f5e3..5a3dd14e3a11 100644
>>> --- a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.h
>>> +++ b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.h
>>> @@ -15,13 +15,13 @@ struct xe_sysctrl;
>>> struct xe_sysctrl_mailbox_command;
>>> #define XE_SYSCTRL_APP_HDR_GROUP_ID(hdr) \
>>> - FIELD_GET(APP_HDR_GROUP_ID_MASK, (hdr)->data)
>>> + REG_FIELD_GET(APP_HDR_GROUP_ID_MASK, (hdr)->data)
>>> #define XE_SYSCTRL_APP_HDR_COMMAND(hdr) \
>>> - FIELD_GET(APP_HDR_COMMAND_MASK, (hdr)->data)
>>> + REG_FIELD_GET(APP_HDR_COMMAND_MASK, (hdr)->data)
>>> #define XE_SYSCTRL_APP_HDR_VERSION(hdr) \
>>> - FIELD_GET(APP_HDR_VERSION_MASK, (hdr)->data)
>>> + REG_FIELD_GET(APP_HDR_VERSION_MASK, (hdr)->data)
>> ditto
> ditto
>>> void xe_sysctrl_create_command(struct xe_sysctrl_mailbox_command *command, u8 group_id, u8 cmd_id,
>>> void *request, size_t request_len, void *response,
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [PATCH v7 6/9] drm/xe/sysctrl: Replace FIELD_GET() with REG_FIELD_GET()
2026-09-07 14:07 ` Michal Wajdeczko
@ 2026-09-08 7:36 ` Mallesh, Koujalagi
0 siblings, 0 replies; 21+ messages in thread
From: Mallesh, Koujalagi @ 2026-09-08 7:36 UTC (permalink / raw)
To: Michal Wajdeczko, intel-xe, rodrigo.vivi, matthew.brost
Cc: anshuman.gupta, badal.nilawar, vinay.belgaumkar, riana.tauro,
karthik.poosa, sk.anirban, raag.jadav, aravind.iddamsetty,
umesh.nerlige.ramappa, dnyaneshwar.bhadane, anoop.c.vijay
On 07-09-2026 07:37 pm, Michal Wajdeczko wrote:
>
> On 9/7/2026 2:07 PM, Mallesh, Koujalagi wrote:
>> On 07-09-2026 05:17 pm, Michal Wajdeczko wrote:
>>> On 9/7/2026 12:53 PM, Mallesh Koujalagi wrote:
>>>> Use REG_FIELD_GET() when extracting fields from SysCtrl and
>>> nit:
>>>
>>> Use REG_FIELD_GET()and REG_FIELD_PREP() when working with fields
>> Sure!
>>>> application headers. This better reflects that the masks
>>>> represent register-style bitfields and improves consistency.
>>>>
>>>> Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
>>>> ---
>>>> v7:
>>>> - Update FIELD_PREP to REG_FIELD_PREP. (Sashiko)
>>>> - Update FIELD_GET to REG_FIELD_GET.
>>>> ---
>>>> drivers/gpu/drm/xe/xe_sysctrl_mailbox.c | 20 ++++++++++----------
>>>> drivers/gpu/drm/xe/xe_sysctrl_mailbox.h | 6 +++---
>>>> 2 files changed, 13 insertions(+), 13 deletions(-)
>>>>
>>>> diff --git a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
>>>> index 50bbdab072de..cdd929ebed4a 100644
>>>> --- a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
>>>> +++ b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.c
>>>> @@ -24,16 +24,16 @@ struct xe_sysctrl_mailbox_msg_hdr {
>>>> } __packed;
>>>> #define XE_SYSCTRL_HDR_GROUP_ID(hdr) \
>>>> - FIELD_GET(SYSCTRL_HDR_GROUP_ID_MASK, le32_to_cpu((hdr)->data))
>>>> + REG_FIELD_GET(SYSCTRL_HDR_GROUP_ID_MASK, le32_to_cpu((hdr)->data))
>>>> #define XE_SYSCTRL_HDR_COMMAND(hdr) \
>>>> - FIELD_GET(SYSCTRL_HDR_COMMAND_MASK, le32_to_cpu((hdr)->data))
>>>> + REG_FIELD_GET(SYSCTRL_HDR_COMMAND_MASK, le32_to_cpu((hdr)->data))
>>>> #define XE_SYSCTRL_HDR_IS_RESPONSE(hdr) \
>>>> - FIELD_GET(SYSCTRL_HDR_IS_RESPONSE, le32_to_cpu((hdr)->data))
>>>> + REG_FIELD_GET(SYSCTRL_HDR_IS_RESPONSE, le32_to_cpu((hdr)->data))
>>>> #define XE_SYSCTRL_HDR_RESULT(hdr) \
>>>> - FIELD_GET(SYSCTRL_HDR_RESULT_MASK, le32_to_cpu((hdr)->data))
>>>> + REG_FIELD_GET(SYSCTRL_HDR_RESULT_MASK, le32_to_cpu((hdr)->data))
>>>> static int sysctrl_wait_bit_clear(struct xe_sysctrl *sc, u32 bit_mask,
>>>> unsigned int timeout_ms)
>>>> @@ -112,8 +112,8 @@ static int sysctrl_prepare_command(struct xe_device *xe,
>>>> return -ENOMEM;
>>>> hdr = (struct xe_sysctrl_mailbox_msg_hdr *)buffer;
>>>> - hdr->data = cpu_to_le32(FIELD_PREP(SYSCTRL_HDR_GROUP_ID_MASK, group_id) |
>>>> - FIELD_PREP(SYSCTRL_HDR_COMMAND_MASK, command));
>>>> + hdr->data = cpu_to_le32(REG_FIELD_PREP(SYSCTRL_HDR_GROUP_ID_MASK, group_id) |
>>>> + REG_FIELD_PREP(SYSCTRL_HDR_COMMAND_MASK, command));
>>>> if (data_in && data_in_len)
>>>> memcpy(buffer + sizeof(*hdr), data_in, data_in_len);
>>>> @@ -186,8 +186,8 @@ static int sysctrl_process_frame(struct xe_sysctrl *sc, void *out,
>>>> }
>>>> ctrl_reg = xe_mmio_read32(sc->mmio, SYSCTRL_MB_CTRL);
>>>> - total_frames = FIELD_GET(SYSCTRL_FRAME_TOTAL_MASK, ctrl_reg);
>>>> - curr_frame = FIELD_GET(SYSCTRL_FRAME_CURRENT_MASK, ctrl_reg);
>>>> + total_frames = REG_FIELD_GET(SYSCTRL_FRAME_TOTAL_MASK, ctrl_reg);
>>>> + curr_frame = REG_FIELD_GET(SYSCTRL_FRAME_CURRENT_MASK, ctrl_reg);
>>>> sysctrl_read_frame(sc, out, frame_size);
>>>> sysctrl_clear_response(sc);
>>>> @@ -295,8 +295,8 @@ void xe_sysctrl_create_command(struct xe_sysctrl_mailbox_command *command, u8 gr
>>>> {
>>>> struct xe_sysctrl_app_msg_hdr header = {0};
>>>> - header.data = FIELD_PREP(APP_HDR_GROUP_ID_MASK, group_id) |
>>>> - FIELD_PREP(APP_HDR_COMMAND_MASK, cmd_id);
>>>> + header.data = REG_FIELD_PREP(APP_HDR_GROUP_ID_MASK, group_id) |
>>>> + REG_FIELD_PREP(APP_HDR_COMMAND_MASK, cmd_id);
>>> hmm, shouldn't we use le32 conversion here?
>>> other sysctrl cmd/hdr parsing/prep seems to use it
>> le32 conversion is not required.
>>
>> le32 already removed in the code, find the change: https://patchwork.freedesktop.org/patch/717045/?series=164526&rev=1
> hmm, but was this fix correct? maybe the problem is elsewhere?
>
> today we have:
>
> struct xe_sysctrl_mailbox_msg_hdr {
> __le32 data;
If we change __l32 data to u32 data, no conversion required (le32_to_cpu
or cpu_to_le32) , it's cleaner one.
> } __packed;
>
> and:
>
> struct xe_sysctrl_app_msg_hdr {
> u32 data;
> } __packed;
>
> both used during sysctrl communication but only one is using __le32
>
> IMO either both or none should use __le32,
Agreed! IMO we can use both as u32, let me know you thoughts?
> or I'm missing something?
>
>>>> command->header = header;
>>>> command->data_in = request;
>>>> diff --git a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.h b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.h
>>>> index f0d5e3d7f5e3..5a3dd14e3a11 100644
>>>> --- a/drivers/gpu/drm/xe/xe_sysctrl_mailbox.h
>>>> +++ b/drivers/gpu/drm/xe/xe_sysctrl_mailbox.h
>>>> @@ -15,13 +15,13 @@ struct xe_sysctrl;
>>>> struct xe_sysctrl_mailbox_command;
>>>> #define XE_SYSCTRL_APP_HDR_GROUP_ID(hdr) \
>>>> - FIELD_GET(APP_HDR_GROUP_ID_MASK, (hdr)->data)
>>>> + REG_FIELD_GET(APP_HDR_GROUP_ID_MASK, (hdr)->data)
>>>> #define XE_SYSCTRL_APP_HDR_COMMAND(hdr) \
>>>> - FIELD_GET(APP_HDR_COMMAND_MASK, (hdr)->data)
>>>> + REG_FIELD_GET(APP_HDR_COMMAND_MASK, (hdr)->data)
>>>> #define XE_SYSCTRL_APP_HDR_VERSION(hdr) \
>>>> - FIELD_GET(APP_HDR_VERSION_MASK, (hdr)->data)
>>>> + REG_FIELD_GET(APP_HDR_VERSION_MASK, (hdr)->data)
>>> ditto
>> ditto
>>>> void xe_sysctrl_create_command(struct xe_sysctrl_mailbox_command *command, u8 group_id, u8 cmd_id,
>>>> void *request, size_t request_len, void *response,
^ permalink raw reply [flat|nested] 21+ messages in thread
* ✓ CI.KUnit: success for drm/xe/sysctrl: Clean up error handling in (rev4)
2026-09-07 10:53 [PATCH v7 0/9] drm/xe/sysctrl: Clean up error handling in Mallesh Koujalagi
` (9 preceding siblings ...)
2026-09-07 12:19 ` ✓ CI.KUnit: success for drm/xe/sysctrl: Clean up error handling in (rev4) Patchwork
@ 2026-09-08 8:05 ` Patchwork
2026-09-08 10:30 ` ✓ CI.KUnit: success for drm/xe/sysctrl: Clean up error handling in (rev5) Patchwork
` (2 subsequent siblings)
13 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-09-08 8:05 UTC (permalink / raw)
To: Mallesh, Koujalagi; +Cc: intel-xe
== Series Details ==
Series: drm/xe/sysctrl: Clean up error handling in (rev4)
URL : https://patchwork.freedesktop.org/series/172513/
State : success
== Summary ==
+ trap cleanup EXIT
+ kunitconfigs=('/kernel/drivers/gpu/tests/.kunitconfig' '/kernel/drivers/gpu/drm/xe/.kunitconfig' '/kernel/drivers/gpu/drm/tests/.kunitconfig' '/kernel/drivers/gpu/drm/ttm/tests/.kunitconfig' '/kernel/drivers/dma-buf/.kunitconfig')
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/tests/.kunitconfig
[08:03:24] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:03:29] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[08:03:49] Starting KUnit Kernel (1/1)...
[08:03:49] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:03:49] ============= refcount_interrupt (4 subtests) ==============
[08:03:49] [PASSED] test_single_irq_change
[08:03:49] [PASSED] test_nested_irq_change
[08:03:49] [PASSED] test_multiple_irq_change
[08:03:49] [PASSED] test_irq_save
[08:03:49] =============== [PASSED] refcount_interrupt ================
[08:03:49] ================= gpu_buddy (14 subtests) ==================
[08:03:49] [PASSED] gpu_test_buddy_alloc_limit
[08:03:49] [PASSED] gpu_test_buddy_alloc_optimistic
[08:03:49] [PASSED] gpu_test_buddy_alloc_pessimistic
[08:03:49] [PASSED] gpu_test_buddy_alloc_pathological
[08:03:49] [PASSED] gpu_test_buddy_alloc_contiguous
[08:03:49] [PASSED] gpu_test_buddy_alloc_clear
[08:03:49] [PASSED] gpu_test_buddy_alloc_range
[08:03:49] [PASSED] gpu_test_buddy_alloc_range_bias
[08:03:50] [PASSED] gpu_test_buddy_fragmentation_performance
[08:03:51] [PASSED] gpu_test_buddy_dirty_tracker_performance
[08:03:51] [PASSED] gpu_test_buddy_alloc_exceeds_max_order
[08:03:51] [PASSED] gpu_test_buddy_offset_aligned_allocation
[08:03:51] [PASSED] gpu_test_buddy_subtree_offset_alignment_stress
[08:03:51] [PASSED] gpu_test_buddy_addr_to_block
[08:03:51] ==================== [PASSED] gpu_buddy ====================
[08:03:51] ============================================================
[08:03:51] Testing complete. Ran 18 tests: passed: 18
[08:03:51] Elapsed time: 26.957s total, 4.452s configuring, 20.537s building, 1.924s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/xe/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[08:03:51] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:03:53] 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
[08:04:27] Starting KUnit Kernel (1/1)...
[08:04:27] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:04:27] ============= refcount_interrupt (4 subtests) ==============
[08:04:27] [PASSED] test_single_irq_change
[08:04:27] [PASSED] test_nested_irq_change
[08:04:27] [PASSED] test_multiple_irq_change
[08:04:27] [PASSED] test_irq_save
[08:04:27] =============== [PASSED] refcount_interrupt ================
[08:04:27] ================== guc_buf (11 subtests) ===================
[08:04:27] [PASSED] test_smallest
[08:04:27] [PASSED] test_largest
[08:04:27] [PASSED] test_granular
[08:04:27] [PASSED] test_unique
[08:04:27] [PASSED] test_overlap
[08:04:27] [PASSED] test_reusable
[08:04:27] [PASSED] test_too_big
[08:04:27] [PASSED] test_flush
[08:04:27] [PASSED] test_lookup
[08:04:27] [PASSED] test_data
[08:04:27] [PASSED] test_class
[08:04:27] ===================== [PASSED] guc_buf =====================
[08:04:27] =================== guc_dbm (7 subtests) ===================
[08:04:27] [PASSED] test_empty
[08:04:27] [PASSED] test_default
[08:04:27] ======================== test_size ========================
[08:04:27] [PASSED] 4
[08:04:27] [PASSED] 8
[08:04:27] [PASSED] 32
[08:04:27] [PASSED] 256
[08:04:27] ==================== [PASSED] test_size ====================
[08:04:27] ======================= test_reuse ========================
[08:04:27] [PASSED] 4
[08:04:27] [PASSED] 8
[08:04:27] [PASSED] 32
[08:04:27] [PASSED] 256
[08:04:27] =================== [PASSED] test_reuse ====================
[08:04:27] =================== test_range_overlap ====================
[08:04:27] [PASSED] 4
[08:04:27] [PASSED] 8
[08:04:27] [PASSED] 32
[08:04:27] [PASSED] 256
[08:04:27] =============== [PASSED] test_range_overlap ================
[08:04:27] =================== test_range_compact ====================
[08:04:27] [PASSED] 4
[08:04:27] [PASSED] 8
[08:04:27] [PASSED] 32
[08:04:27] [PASSED] 256
[08:04:27] =============== [PASSED] test_range_compact ================
[08:04:27] ==================== test_range_spare =====================
[08:04:27] [PASSED] 4
[08:04:27] [PASSED] 8
[08:04:27] [PASSED] 32
[08:04:27] [PASSED] 256
[08:04:27] ================ [PASSED] test_range_spare =================
[08:04:27] ===================== [PASSED] guc_dbm =====================
[08:04:27] =================== guc_idm (6 subtests) ===================
[08:04:27] [PASSED] bad_init
[08:04:27] [PASSED] no_init
[08:04:27] [PASSED] init_fini
[08:04:27] [PASSED] check_used
[08:04:27] [PASSED] check_quota
[08:04:27] [PASSED] check_all
[08:04:27] ===================== [PASSED] guc_idm =====================
[08:04:27] =============== guc_klv_helpers (9 subtests) ===============
[08:04:27] [PASSED] test_count
[08:04:27] [PASSED] test_encode_u32
[08:04:27] [PASSED] test_encode_u64
[08:04:27] [PASSED] test_encode_string
[08:04:27] [PASSED] test_encode_object_raw
[08:04:27] [PASSED] test_encode_object_klv
[08:04:27] [PASSED] test_encode_object_nested
[08:04:27] [PASSED] test_encode_object_basic
[08:04:27] [PASSED] test_print
[08:04:27] ================= [PASSED] guc_klv_helpers =================
[08:04:27] =================== xe_log (4 subtests) ====================
[08:04:27] [PASSED] demo_cper
[08:04:27] [PASSED] demo_dmesg
[08:04:27] ======================= test_dmesg ========================
[08:04:27] [PASSED] test_fatal
[08:04:27] [PASSED] test_fatal_tile
[08:04:27] [PASSED] test_fatal_gt
[08:04:27] [PASSED] test_fatal_comp
[08:04:27] [PASSED] test_fatal_comp_tile
[08:04:27] [PASSED] test_fatal_comp_gt
[08:04:27] [PASSED] test_fatal_all
[08:04:27] [PASSED] test_recoverable
[08:04:27] [PASSED] test_recoverable_tile
[08:04:27] [PASSED] test_recoverable_gt
[08:04:27] [PASSED] test_recoverable_comp
[08:04:27] [PASSED] test_recoverable_comp_tile
[08:04:27] [PASSED] test_recoverable_comp_gt
[08:04:27] [PASSED] test_recoverable_all
[08:04:27] [PASSED] test_info
[08:04:27] [PASSED] test_info_tile
[08:04:27] [PASSED] test_info_gt
[08:04:27] [PASSED] test_info_err
[08:04:27] [PASSED] test_info_comp
[08:04:27] [PASSED] test_info_comp_tile
[08:04:27] [PASSED] test_info_comp_gt
[08:04:27] [PASSED] test_info_all
[08:04:27] [PASSED] test_hw_fatal
[08:04:27] [PASSED] test_hw_recoverable
[08:04:27] [PASSED] test_hw_corrected
[08:04:27] [PASSED] test_hw_informational
[08:04:27] =================== [PASSED] test_dmesg ====================
[08:04:27] ====================== test_invalid =======================
[08:04:27] [SKIPPED] no-component no-location no-warn (requires CONFIG_DRM_XE_DEBUG)
[08:04:27] [SKIPPED] reserved location (requires CONFIG_DRM_XE_DEBUG)
[08:04:27] [SKIPPED] unknown location (requires CONFIG_DRM_XE_DEBUG)
[08:04:27] [SKIPPED] nonzero-device-id location (requires CONFIG_DRM_XE_DEBUG)
[08:04:27] [SKIPPED] invalid-tile-id location (requires CONFIG_DRM_XE_DEBUG)
[08:04:27] [SKIPPED] invalid-gt-id location (requires CONFIG_DRM_XE_DEBUG)
[08:04:27] [SKIPPED] unknown component class (requires CONFIG_DRM_XE_DEBUG)
[08:04:27] [SKIPPED] unknown system component (requires CONFIG_DRM_XE_DEBUG)
[08:04:27] [SKIPPED] unknown hardware component (requires CONFIG_DRM_XE_DEBUG)
[08:04:27] [SKIPPED] unknown component and location (requires CONFIG_DRM_XE_DEBUG)
[08:04:27] ================== [SKIPPED] test_invalid ==================
[08:04:27] ===================== [PASSED] xe_log ======================
[08:04:27] ================== no_relay (3 subtests) ===================
[08:04:27] [PASSED] xe_drops_guc2pf_if_not_ready
[08:04:27] [PASSED] xe_drops_guc2vf_if_not_ready
[08:04:27] [PASSED] xe_rejects_send_if_not_ready
[08:04:27] ==================== [PASSED] no_relay =====================
[08:04:27] ================== pf_relay (14 subtests) ==================
[08:04:27] [PASSED] pf_rejects_guc2pf_too_short
[08:04:27] [PASSED] pf_rejects_guc2pf_too_long
[08:04:27] [PASSED] pf_rejects_guc2pf_no_payload
[08:04:27] [PASSED] pf_fails_no_payload
[08:04:27] [PASSED] pf_fails_bad_origin
[08:04:27] [PASSED] pf_fails_bad_type
[08:04:27] [PASSED] pf_txn_reports_error
[08:04:27] [PASSED] pf_txn_sends_pf2guc
[08:04:27] [PASSED] pf_sends_pf2guc
[08:04:27] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[08:04:27] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[08:04:27] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[08:04:27] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[08:04:27] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[08:04:27] ==================== [PASSED] pf_relay =====================
[08:04:27] ================== vf_relay (3 subtests) ===================
[08:04:27] [PASSED] vf_rejects_guc2vf_too_short
[08:04:27] [PASSED] vf_rejects_guc2vf_too_long
[08:04:27] [PASSED] vf_rejects_guc2vf_no_payload
[08:04:27] ==================== [PASSED] vf_relay =====================
[08:04:27] ================ pf_gt_config (9 subtests) =================
[08:04:27] [PASSED] fair_contexts_1vf
[08:04:27] [PASSED] fair_doorbells_1vf
[08:04:27] [PASSED] fair_ggtt_1vf
[08:04:27] ====================== fair_vram_1vf ======================
[08:04:27] [PASSED] 3.50 GiB
[08:04:27] [PASSED] 11.5 GiB
[08:04:27] [PASSED] 15.5 GiB
[08:04:27] [PASSED] 31.5 GiB
[08:04:27] [PASSED] 63.5 GiB
[08:04:27] [PASSED] 1.91 GiB
[08:04:27] ================== [PASSED] fair_vram_1vf ==================
[08:04:27] ================ fair_vram_1vf_admin_only =================
[08:04:27] [PASSED] 3.50 GiB
[08:04:27] [PASSED] 11.5 GiB
[08:04:27] [PASSED] 15.5 GiB
[08:04:27] [PASSED] 31.5 GiB
[08:04:27] [PASSED] 63.5 GiB
[08:04:27] [PASSED] 1.91 GiB
[08:04:27] ============ [PASSED] fair_vram_1vf_admin_only =============
[08:04:27] ====================== fair_contexts ======================
[08:04:27] [PASSED] 1 VF
[08:04:27] [PASSED] 2 VFs
[08:04:27] [PASSED] 3 VFs
[08:04:27] [PASSED] 4 VFs
[08:04:27] [PASSED] 5 VFs
[08:04:27] [PASSED] 6 VFs
[08:04:27] [PASSED] 7 VFs
[08:04:27] [PASSED] 8 VFs
[08:04:27] [PASSED] 9 VFs
[08:04:27] [PASSED] 10 VFs
[08:04:27] [PASSED] 11 VFs
[08:04:27] [PASSED] 12 VFs
[08:04:27] [PASSED] 13 VFs
[08:04:27] [PASSED] 14 VFs
[08:04:27] [PASSED] 15 VFs
[08:04:27] [PASSED] 16 VFs
[08:04:27] [PASSED] 17 VFs
[08:04:27] [PASSED] 18 VFs
[08:04:27] [PASSED] 19 VFs
[08:04:27] [PASSED] 20 VFs
[08:04:27] [PASSED] 21 VFs
[08:04:27] [PASSED] 22 VFs
[08:04:27] [PASSED] 23 VFs
[08:04:27] [PASSED] 24 VFs
[08:04:27] [PASSED] 25 VFs
[08:04:27] [PASSED] 26 VFs
[08:04:27] [PASSED] 27 VFs
[08:04:27] [PASSED] 28 VFs
[08:04:27] [PASSED] 29 VFs
[08:04:27] [PASSED] 30 VFs
[08:04:27] [PASSED] 31 VFs
[08:04:27] [PASSED] 32 VFs
[08:04:27] [PASSED] 33 VFs
[08:04:27] [PASSED] 34 VFs
[08:04:27] [PASSED] 35 VFs
[08:04:27] [PASSED] 36 VFs
[08:04:27] [PASSED] 37 VFs
[08:04:27] [PASSED] 38 VFs
[08:04:27] [PASSED] 39 VFs
[08:04:27] [PASSED] 40 VFs
[08:04:27] [PASSED] 41 VFs
[08:04:27] [PASSED] 42 VFs
[08:04:27] [PASSED] 43 VFs
[08:04:27] [PASSED] 44 VFs
[08:04:27] [PASSED] 45 VFs
[08:04:27] [PASSED] 46 VFs
[08:04:27] [PASSED] 47 VFs
[08:04:27] [PASSED] 48 VFs
[08:04:27] [PASSED] 49 VFs
[08:04:27] [PASSED] 50 VFs
[08:04:27] [PASSED] 51 VFs
[08:04:27] [PASSED] 52 VFs
[08:04:27] [PASSED] 53 VFs
[08:04:27] [PASSED] 54 VFs
[08:04:27] [PASSED] 55 VFs
[08:04:27] [PASSED] 56 VFs
[08:04:27] [PASSED] 57 VFs
[08:04:27] [PASSED] 58 VFs
[08:04:27] [PASSED] 59 VFs
[08:04:27] [PASSED] 60 VFs
[08:04:27] [PASSED] 61 VFs
[08:04:27] [PASSED] 62 VFs
[08:04:27] [PASSED] 63 VFs
[08:04:27] ================== [PASSED] fair_contexts ==================
[08:04:27] ===================== fair_doorbells ======================
[08:04:27] [PASSED] 1 VF
[08:04:27] [PASSED] 2 VFs
[08:04:27] [PASSED] 3 VFs
[08:04:27] [PASSED] 4 VFs
[08:04:27] [PASSED] 5 VFs
[08:04:27] [PASSED] 6 VFs
[08:04:27] [PASSED] 7 VFs
[08:04:27] [PASSED] 8 VFs
[08:04:27] [PASSED] 9 VFs
[08:04:27] [PASSED] 10 VFs
[08:04:27] [PASSED] 11 VFs
[08:04:27] [PASSED] 12 VFs
[08:04:27] [PASSED] 13 VFs
[08:04:27] [PASSED] 14 VFs
[08:04:27] [PASSED] 15 VFs
[08:04:27] [PASSED] 16 VFs
[08:04:27] [PASSED] 17 VFs
[08:04:27] [PASSED] 18 VFs
[08:04:27] [PASSED] 19 VFs
[08:04:27] [PASSED] 20 VFs
[08:04:27] [PASSED] 21 VFs
[08:04:27] [PASSED] 22 VFs
[08:04:27] [PASSED] 23 VFs
[08:04:27] [PASSED] 24 VFs
[08:04:27] [PASSED] 25 VFs
[08:04:27] [PASSED] 26 VFs
[08:04:27] [PASSED] 27 VFs
[08:04:27] [PASSED] 28 VFs
[08:04:27] [PASSED] 29 VFs
[08:04:27] [PASSED] 30 VFs
[08:04:27] [PASSED] 31 VFs
[08:04:27] [PASSED] 32 VFs
[08:04:27] [PASSED] 33 VFs
[08:04:27] [PASSED] 34 VFs
[08:04:27] [PASSED] 35 VFs
[08:04:27] [PASSED] 36 VFs
[08:04:27] [PASSED] 37 VFs
[08:04:27] [PASSED] 38 VFs
[08:04:27] [PASSED] 39 VFs
[08:04:27] [PASSED] 40 VFs
[08:04:27] [PASSED] 41 VFs
[08:04:27] [PASSED] 42 VFs
[08:04:27] [PASSED] 43 VFs
[08:04:27] [PASSED] 44 VFs
[08:04:27] [PASSED] 45 VFs
[08:04:27] [PASSED] 46 VFs
[08:04:27] [PASSED] 47 VFs
[08:04:27] [PASSED] 48 VFs
[08:04:27] [PASSED] 49 VFs
[08:04:27] [PASSED] 50 VFs
[08:04:27] [PASSED] 51 VFs
[08:04:27] [PASSED] 52 VFs
[08:04:27] [PASSED] 53 VFs
[08:04:27] [PASSED] 54 VFs
[08:04:27] [PASSED] 55 VFs
[08:04:27] [PASSED] 56 VFs
[08:04:27] [PASSED] 57 VFs
[08:04:27] [PASSED] 58 VFs
[08:04:27] [PASSED] 59 VFs
[08:04:27] [PASSED] 60 VFs
[08:04:27] [PASSED] 61 VFs
[08:04:27] [PASSED] 62 VFs
[08:04:27] [PASSED] 63 VFs
[08:04:27] ================= [PASSED] fair_doorbells ==================
[08:04:27] ======================== fair_ggtt ========================
[08:04:27] [PASSED] 1 VF
[08:04:27] [PASSED] 2 VFs
[08:04:27] [PASSED] 3 VFs
[08:04:27] [PASSED] 4 VFs
[08:04:27] [PASSED] 5 VFs
[08:04:27] [PASSED] 6 VFs
[08:04:27] [PASSED] 7 VFs
[08:04:27] [PASSED] 8 VFs
[08:04:27] [PASSED] 9 VFs
[08:04:27] [PASSED] 10 VFs
[08:04:27] [PASSED] 11 VFs
[08:04:27] [PASSED] 12 VFs
[08:04:27] [PASSED] 13 VFs
[08:04:27] [PASSED] 14 VFs
[08:04:27] [PASSED] 15 VFs
[08:04:27] [PASSED] 16 VFs
[08:04:27] [PASSED] 17 VFs
[08:04:27] [PASSED] 18 VFs
[08:04:27] [PASSED] 19 VFs
[08:04:27] [PASSED] 20 VFs
[08:04:27] [PASSED] 21 VFs
[08:04:27] [PASSED] 22 VFs
[08:04:27] [PASSED] 23 VFs
[08:04:27] [PASSED] 24 VFs
[08:04:27] [PASSED] 25 VFs
[08:04:28] [PASSED] 26 VFs
[08:04:28] [PASSED] 27 VFs
[08:04:28] [PASSED] 28 VFs
[08:04:28] [PASSED] 29 VFs
[08:04:28] [PASSED] 30 VFs
[08:04:28] [PASSED] 31 VFs
[08:04:28] [PASSED] 32 VFs
[08:04:28] [PASSED] 33 VFs
[08:04:28] [PASSED] 34 VFs
[08:04:28] [PASSED] 35 VFs
[08:04:28] [PASSED] 36 VFs
[08:04:28] [PASSED] 37 VFs
[08:04:28] [PASSED] 38 VFs
[08:04:28] [PASSED] 39 VFs
[08:04:28] [PASSED] 40 VFs
[08:04:28] [PASSED] 41 VFs
[08:04:28] [PASSED] 42 VFs
[08:04:28] [PASSED] 43 VFs
[08:04:28] [PASSED] 44 VFs
[08:04:28] [PASSED] 45 VFs
[08:04:28] [PASSED] 46 VFs
[08:04:28] [PASSED] 47 VFs
[08:04:28] [PASSED] 48 VFs
[08:04:28] [PASSED] 49 VFs
[08:04:28] [PASSED] 50 VFs
[08:04:28] [PASSED] 51 VFs
[08:04:28] [PASSED] 52 VFs
[08:04:28] [PASSED] 53 VFs
[08:04:28] [PASSED] 54 VFs
[08:04:28] [PASSED] 55 VFs
[08:04:28] [PASSED] 56 VFs
[08:04:28] [PASSED] 57 VFs
[08:04:28] [PASSED] 58 VFs
[08:04:28] [PASSED] 59 VFs
[08:04:28] [PASSED] 60 VFs
[08:04:28] [PASSED] 61 VFs
[08:04:28] [PASSED] 62 VFs
[08:04:28] [PASSED] 63 VFs
[08:04:28] ==================== [PASSED] fair_ggtt ====================
[08:04:28] ======================== fair_vram ========================
[08:04:28] [PASSED] 1 VF
[08:04:28] [PASSED] 2 VFs
[08:04:28] [PASSED] 3 VFs
[08:04:28] [PASSED] 4 VFs
[08:04:28] [PASSED] 5 VFs
[08:04:28] [PASSED] 6 VFs
[08:04:28] [PASSED] 7 VFs
[08:04:28] [PASSED] 8 VFs
[08:04:28] [PASSED] 9 VFs
[08:04:28] [PASSED] 10 VFs
[08:04:28] [PASSED] 11 VFs
[08:04:28] [PASSED] 12 VFs
[08:04:28] [PASSED] 13 VFs
[08:04:28] [PASSED] 14 VFs
[08:04:28] [PASSED] 15 VFs
[08:04:28] [PASSED] 16 VFs
[08:04:28] [PASSED] 17 VFs
[08:04:28] [PASSED] 18 VFs
[08:04:28] [PASSED] 19 VFs
[08:04:28] [PASSED] 20 VFs
[08:04:28] [PASSED] 21 VFs
[08:04:28] [PASSED] 22 VFs
[08:04:28] [PASSED] 23 VFs
[08:04:28] [PASSED] 24 VFs
[08:04:28] [PASSED] 25 VFs
[08:04:28] [PASSED] 26 VFs
[08:04:28] [PASSED] 27 VFs
[08:04:28] [PASSED] 28 VFs
[08:04:28] [PASSED] 29 VFs
[08:04:28] [PASSED] 30 VFs
[08:04:28] [PASSED] 31 VFs
[08:04:28] [PASSED] 32 VFs
[08:04:28] [PASSED] 33 VFs
[08:04:28] [PASSED] 34 VFs
[08:04:28] [PASSED] 35 VFs
[08:04:28] [PASSED] 36 VFs
[08:04:28] [PASSED] 37 VFs
[08:04:28] [PASSED] 38 VFs
[08:04:28] [PASSED] 39 VFs
[08:04:28] [PASSED] 40 VFs
[08:04:28] [PASSED] 41 VFs
[08:04:28] [PASSED] 42 VFs
[08:04:28] [PASSED] 43 VFs
[08:04:28] [PASSED] 44 VFs
[08:04:28] [PASSED] 45 VFs
[08:04:28] [PASSED] 46 VFs
[08:04:28] [PASSED] 47 VFs
[08:04:28] [PASSED] 48 VFs
[08:04:28] [PASSED] 49 VFs
[08:04:28] [PASSED] 50 VFs
[08:04:28] [PASSED] 51 VFs
[08:04:28] [PASSED] 52 VFs
[08:04:28] [PASSED] 53 VFs
[08:04:28] [PASSED] 54 VFs
[08:04:28] [PASSED] 55 VFs
[08:04:28] [PASSED] 56 VFs
[08:04:28] [PASSED] 57 VFs
[08:04:28] [PASSED] 58 VFs
[08:04:28] [PASSED] 59 VFs
[08:04:28] [PASSED] 60 VFs
[08:04:28] [PASSED] 61 VFs
[08:04:28] [PASSED] 62 VFs
[08:04:28] [PASSED] 63 VFs
[08:04:28] ==================== [PASSED] fair_vram ====================
[08:04:28] ================== [PASSED] pf_gt_config ===================
[08:04:28] ===================== lmtt (1 subtest) =====================
[08:04:28] ======================== test_ops =========================
[08:04:28] [PASSED] 2-level
[08:04:28] [PASSED] multi-level
[08:04:28] ==================== [PASSED] test_ops =====================
[08:04:28] ====================== [PASSED] lmtt =======================
[08:04:28] ================= sriov_packet (1 subtest) =================
[08:04:28] [PASSED] test_descriptor_init
[08:04:28] ================== [PASSED] sriov_packet ===================
[08:04:28] ================= pf_service (11 subtests) =================
[08:04:28] [PASSED] pf_negotiate_any
[08:04:28] [PASSED] pf_negotiate_base_match
[08:04:28] [PASSED] pf_negotiate_base_newer
[08:04:28] [PASSED] pf_negotiate_base_next
[08:04:28] [SKIPPED] pf_negotiate_base_older (no older minor)
[08:04:28] [PASSED] pf_negotiate_base_prev
[08:04:28] [PASSED] pf_negotiate_latest_match
[08:04:28] [PASSED] pf_negotiate_latest_newer
[08:04:28] [PASSED] pf_negotiate_latest_next
[08:04:28] [SKIPPED] pf_negotiate_latest_older (no older minor)
[08:04:28] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[08:04:28] =================== [PASSED] pf_service ====================
[08:04:28] ================= xe_guc_g2g (2 subtests) ==================
[08:04:28] ============== xe_live_guc_g2g_kunit_default ==============
[08:04:28] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[08:04:28] ============== xe_live_guc_g2g_kunit_allmem ===============
[08:04:28] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[08:04:28] =================== [SKIPPED] xe_guc_g2g ===================
[08:04:28] =================== xe_mocs (2 subtests) ===================
[08:04:28] ================ xe_live_mocs_kernel_kunit ================
[08:04:28] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[08:04:28] ================ xe_live_mocs_reset_kunit =================
[08:04:28] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[08:04:28] ==================== [SKIPPED] xe_mocs =====================
[08:04:28] ================= xe_migrate (2 subtests) ==================
[08:04:28] ================= xe_migrate_sanity_kunit =================
[08:04:28] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[08:04:28] ================== xe_validate_ccs_kunit ==================
[08:04:28] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[08:04:28] =================== [SKIPPED] xe_migrate ===================
[08:04:28] ================== xe_dma_buf (1 subtest) ==================
[08:04:28] ==================== xe_dma_buf_kunit =====================
[08:04:28] ================ [SKIPPED] xe_dma_buf_kunit ================
[08:04:28] =================== [SKIPPED] xe_dma_buf ===================
[08:04:28] ================= xe_bo_shrink (1 subtest) =================
[08:04:28] =================== xe_bo_shrink_kunit ====================
[08:04:28] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[08:04:28] ================== [SKIPPED] xe_bo_shrink ==================
[08:04:28] ==================== xe_bo (2 subtests) ====================
[08:04:28] ================== xe_ccs_migrate_kunit ===================
[08:04:28] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[08:04:28] ==================== xe_bo_evict_kunit ====================
[08:04:28] =============== [SKIPPED] xe_bo_evict_kunit ================
[08:04:28] ===================== [SKIPPED] xe_bo ======================
[08:04:28] =================== xe_any (9 subtests) ====================
[08:04:28] [PASSED] test_to_xe
[08:04:28] [PASSED] test_to_dev
[08:04:28] [PASSED] test_to_pdev
[08:04:28] [PASSED] test_to_drm
[08:04:28] [PASSED] test_if_pdev
[08:04:28] [PASSED] test_if_xe
[08:04:28] [PASSED] test_if_tile
[08:04:28] [PASSED] test_if_gt
[08:04:28] [PASSED] test_to_id
[08:04:28] ===================== [PASSED] xe_any ======================
[08:04:28] ==================== args (13 subtests) ====================
[08:04:28] [PASSED] count_args_test
[08:04:28] [PASSED] call_args_example
[08:04:28] [PASSED] call_args_test
[08:04:28] [PASSED] drop_first_arg_example
[08:04:28] [PASSED] drop_first_arg_test
[08:04:28] [PASSED] first_arg_example
[08:04:28] [PASSED] first_arg_test
[08:04:28] [PASSED] last_arg_example
[08:04:28] [PASSED] last_arg_test
[08:04:28] [PASSED] pick_arg_example
[08:04:28] [PASSED] if_args_example
[08:04:28] [PASSED] if_args_test
[08:04:28] [PASSED] sep_comma_example
[08:04:28] ====================== [PASSED] args =======================
[08:04:28] =================== xe_pci (3 subtests) ====================
[08:04:28] ==================== check_graphics_ip ====================
[08:04:28] [PASSED] 12.00 Xe_LP
[08:04:28] [PASSED] 12.10 Xe_LP+
[08:04:28] [PASSED] 12.55 Xe_HPG
[08:04:28] [PASSED] 12.60 Xe_HPC
[08:04:28] [PASSED] 12.70 Xe_LPG
[08:04:28] [PASSED] 12.71 Xe_LPG
[08:04:28] [PASSED] 12.74 Xe_LPG+
[08:04:28] [PASSED] 20.01 Xe2_HPG
[08:04:28] [PASSED] 20.02 Xe2_HPG
[08:04:28] [PASSED] 20.04 Xe2_LPG
[08:04:28] [PASSED] 30.00 Xe3_LPG
[08:04:28] [PASSED] 30.01 Xe3_LPG
[08:04:28] [PASSED] 30.03 Xe3_LPG
[08:04:28] [PASSED] 30.04 Xe3_LPG
[08:04:28] [PASSED] 30.05 Xe3_LPG
[08:04:28] [PASSED] 35.10 Xe3p_LPG
[08:04:28] [PASSED] 35.11 Xe3p_XPC
[08:04:28] ================ [PASSED] check_graphics_ip ================
[08:04:28] ===================== check_media_ip ======================
[08:04:28] [PASSED] 12.00 Xe_M
[08:04:28] [PASSED] 12.55 Xe_HPM
[08:04:28] [PASSED] 13.00 Xe_LPM+
[08:04:28] [PASSED] 13.01 Xe2_HPM
[08:04:28] [PASSED] 20.00 Xe2_LPM
[08:04:28] [PASSED] 30.00 Xe3_LPM
[08:04:28] [PASSED] 30.02 Xe3_LPM
[08:04:28] [PASSED] 35.00 Xe3p_LPM
[08:04:28] [PASSED] 35.03 Xe3p_HPM
[08:04:28] ================= [PASSED] check_media_ip ==================
[08:04:28] =================== check_platform_desc ===================
[08:04:28] [PASSED] 0x9A60 (TIGERLAKE)
[08:04:28] [PASSED] 0x9A68 (TIGERLAKE)
[08:04:28] [PASSED] 0x9A70 (TIGERLAKE)
[08:04:28] [PASSED] 0x9A40 (TIGERLAKE)
[08:04:28] [PASSED] 0x9A49 (TIGERLAKE)
[08:04:28] [PASSED] 0x9A59 (TIGERLAKE)
[08:04:28] [PASSED] 0x9A78 (TIGERLAKE)
[08:04:28] [PASSED] 0x9AC0 (TIGERLAKE)
[08:04:28] [PASSED] 0x9AC9 (TIGERLAKE)
[08:04:28] [PASSED] 0x9AD9 (TIGERLAKE)
[08:04:28] [PASSED] 0x9AF8 (TIGERLAKE)
[08:04:28] [PASSED] 0x4C80 (ROCKETLAKE)
[08:04:28] [PASSED] 0x4C8A (ROCKETLAKE)
[08:04:28] [PASSED] 0x4C8B (ROCKETLAKE)
[08:04:28] [PASSED] 0x4C8C (ROCKETLAKE)
[08:04:28] [PASSED] 0x4C90 (ROCKETLAKE)
[08:04:28] [PASSED] 0x4C9A (ROCKETLAKE)
[08:04:28] [PASSED] 0x4680 (ALDERLAKE_S)
[08:04:28] [PASSED] 0x4682 (ALDERLAKE_S)
[08:04:28] [PASSED] 0x4688 (ALDERLAKE_S)
[08:04:28] [PASSED] 0x468A (ALDERLAKE_S)
[08:04:28] [PASSED] 0x468B (ALDERLAKE_S)
[08:04:28] [PASSED] 0x4690 (ALDERLAKE_S)
[08:04:28] [PASSED] 0x4692 (ALDERLAKE_S)
[08:04:28] [PASSED] 0x4693 (ALDERLAKE_S)
[08:04:28] [PASSED] 0x46A0 (ALDERLAKE_P)
[08:04:28] [PASSED] 0x46A1 (ALDERLAKE_P)
[08:04:28] [PASSED] 0x46A2 (ALDERLAKE_P)
[08:04:28] [PASSED] 0x46A3 (ALDERLAKE_P)
[08:04:28] [PASSED] 0x46A6 (ALDERLAKE_P)
[08:04:28] [PASSED] 0x46A8 (ALDERLAKE_P)
[08:04:28] [PASSED] 0x46AA (ALDERLAKE_P)
[08:04:28] [PASSED] 0x462A (ALDERLAKE_P)
[08:04:28] [PASSED] 0x4626 (ALDERLAKE_P)
[08:04:28] [PASSED] 0x4628 (ALDERLAKE_P)
[08:04:28] [PASSED] 0x46B0 (ALDERLAKE_P)
[08:04:28] [PASSED] 0x46B1 (ALDERLAKE_P)
[08:04:28] [PASSED] 0x46B2 (ALDERLAKE_P)
[08:04:28] [PASSED] 0x46B3 (ALDERLAKE_P)
[08:04:28] [PASSED] 0x46C0 (ALDERLAKE_P)
[08:04:28] [PASSED] 0x46C1 (ALDERLAKE_P)
[08:04:28] [PASSED] 0x46C2 (ALDERLAKE_P)
[08:04:28] [PASSED] 0x46C3 (ALDERLAKE_P)
[08:04:28] [PASSED] 0x46D0 (ALDERLAKE_N)
[08:04:28] [PASSED] 0x46D1 (ALDERLAKE_N)
[08:04:28] [PASSED] 0x46D2 (ALDERLAKE_N)
[08:04:28] [PASSED] 0x46D3 (ALDERLAKE_N)
[08:04:28] [PASSED] 0x46D4 (ALDERLAKE_N)
[08:04:28] [PASSED] 0xA721 (ALDERLAKE_P)
[08:04:28] [PASSED] 0xA7A1 (ALDERLAKE_P)
[08:04:28] [PASSED] 0xA7A9 (ALDERLAKE_P)
[08:04:28] [PASSED] 0xA7AC (ALDERLAKE_P)
[08:04:28] [PASSED] 0xA7AD (ALDERLAKE_P)
[08:04:28] [PASSED] 0xA720 (ALDERLAKE_P)
[08:04:28] [PASSED] 0xA7A0 (ALDERLAKE_P)
[08:04:28] [PASSED] 0xA7A8 (ALDERLAKE_P)
[08:04:28] [PASSED] 0xA7AA (ALDERLAKE_P)
[08:04:28] [PASSED] 0xA7AB (ALDERLAKE_P)
[08:04:28] [PASSED] 0xA780 (ALDERLAKE_S)
[08:04:28] [PASSED] 0xA781 (ALDERLAKE_S)
[08:04:28] [PASSED] 0xA782 (ALDERLAKE_S)
[08:04:28] [PASSED] 0xA783 (ALDERLAKE_S)
[08:04:28] [PASSED] 0xA788 (ALDERLAKE_S)
[08:04:28] [PASSED] 0xA789 (ALDERLAKE_S)
[08:04:28] [PASSED] 0xA78A (ALDERLAKE_S)
[08:04:28] [PASSED] 0xA78B (ALDERLAKE_S)
[08:04:28] [PASSED] 0x4905 (DG1)
[08:04:28] [PASSED] 0x4906 (DG1)
[08:04:28] [PASSED] 0x4907 (DG1)
[08:04:28] [PASSED] 0x4908 (DG1)
[08:04:28] [PASSED] 0x4909 (DG1)
[08:04:28] [PASSED] 0x56C0 (DG2)
[08:04:28] [PASSED] 0x56C2 (DG2)
[08:04:28] [PASSED] 0x56C1 (DG2)
[08:04:28] [PASSED] 0x7D51 (METEORLAKE)
[08:04:28] [PASSED] 0x7DD1 (METEORLAKE)
[08:04:28] [PASSED] 0x7D41 (METEORLAKE)
[08:04:28] [PASSED] 0x7D67 (METEORLAKE)
[08:04:28] [PASSED] 0xB640 (METEORLAKE)
[08:04:28] [PASSED] 0x56A0 (DG2)
[08:04:28] [PASSED] 0x56A1 (DG2)
[08:04:28] [PASSED] 0x56A2 (DG2)
[08:04:28] [PASSED] 0x56BE (DG2)
[08:04:28] [PASSED] 0x56BF (DG2)
[08:04:28] [PASSED] 0x5690 (DG2)
[08:04:28] [PASSED] 0x5691 (DG2)
[08:04:28] [PASSED] 0x5692 (DG2)
[08:04:28] [PASSED] 0x56A5 (DG2)
[08:04:28] [PASSED] 0x56A6 (DG2)
[08:04:28] [PASSED] 0x56B0 (DG2)
[08:04:28] [PASSED] 0x56B1 (DG2)
[08:04:28] [PASSED] 0x56BA (DG2)
[08:04:28] [PASSED] 0x56BB (DG2)
[08:04:28] [PASSED] 0x56BC (DG2)
[08:04:28] [PASSED] 0x56BD (DG2)
[08:04:28] [PASSED] 0x5693 (DG2)
[08:04:28] [PASSED] 0x5694 (DG2)
[08:04:28] [PASSED] 0x5695 (DG2)
[08:04:28] [PASSED] 0x56A3 (DG2)
[08:04:28] [PASSED] 0x56A4 (DG2)
[08:04:28] [PASSED] 0x56B2 (DG2)
[08:04:28] [PASSED] 0x56B3 (DG2)
[08:04:28] [PASSED] 0x5696 (DG2)
[08:04:28] [PASSED] 0x5697 (DG2)
[08:04:28] [PASSED] 0xB69 (PVC)
[08:04:28] [PASSED] 0xB6E (PVC)
[08:04:28] [PASSED] 0xBD4 (PVC)
[08:04:28] [PASSED] 0xBD5 (PVC)
[08:04:28] [PASSED] 0xBD6 (PVC)
[08:04:28] [PASSED] 0xBD7 (PVC)
[08:04:28] [PASSED] 0xBD8 (PVC)
[08:04:28] [PASSED] 0xBD9 (PVC)
[08:04:28] [PASSED] 0xBDA (PVC)
[08:04:28] [PASSED] 0xBDB (PVC)
[08:04:28] [PASSED] 0xBE0 (PVC)
[08:04:28] [PASSED] 0xBE1 (PVC)
[08:04:28] [PASSED] 0xBE5 (PVC)
[08:04:28] [PASSED] 0x7D40 (METEORLAKE)
[08:04:28] [PASSED] 0x7D45 (METEORLAKE)
[08:04:28] [PASSED] 0x7D55 (METEORLAKE)
[08:04:28] [PASSED] 0x7D60 (METEORLAKE)
[08:04:28] [PASSED] 0x7DD5 (METEORLAKE)
[08:04:28] [PASSED] 0x6420 (LUNARLAKE)
[08:04:28] [PASSED] 0x64A0 (LUNARLAKE)
[08:04:28] [PASSED] 0x64B0 (LUNARLAKE)
[08:04:28] [PASSED] 0xE202 (BATTLEMAGE)
[08:04:28] [PASSED] 0xE209 (BATTLEMAGE)
[08:04:28] [PASSED] 0xE20B (BATTLEMAGE)
[08:04:28] [PASSED] 0xE20C (BATTLEMAGE)
[08:04:28] [PASSED] 0xE20D (BATTLEMAGE)
[08:04:28] [PASSED] 0xE210 (BATTLEMAGE)
[08:04:28] [PASSED] 0xE211 (BATTLEMAGE)
[08:04:28] [PASSED] 0xE212 (BATTLEMAGE)
[08:04:28] [PASSED] 0xE216 (BATTLEMAGE)
[08:04:28] [PASSED] 0xE220 (BATTLEMAGE)
[08:04:28] [PASSED] 0xE221 (BATTLEMAGE)
[08:04:28] [PASSED] 0xE222 (BATTLEMAGE)
[08:04:28] [PASSED] 0xE223 (BATTLEMAGE)
[08:04:28] [PASSED] 0xB080 (PANTHERLAKE)
[08:04:28] [PASSED] 0xB081 (PANTHERLAKE)
[08:04:28] [PASSED] 0xB082 (PANTHERLAKE)
[08:04:28] [PASSED] 0xB083 (PANTHERLAKE)
[08:04:28] [PASSED] 0xB084 (PANTHERLAKE)
[08:04:28] [PASSED] 0xB085 (PANTHERLAKE)
[08:04:28] [PASSED] 0xB086 (PANTHERLAKE)
[08:04:28] [PASSED] 0xB087 (PANTHERLAKE)
[08:04:28] [PASSED] 0xB08F (PANTHERLAKE)
[08:04:28] [PASSED] 0xB090 (PANTHERLAKE)
[08:04:28] [PASSED] 0xB0A0 (PANTHERLAKE)
[08:04:28] [PASSED] 0xB0B0 (PANTHERLAKE)
[08:04:28] [PASSED] 0xFD80 (PANTHERLAKE)
[08:04:28] [PASSED] 0xFD81 (PANTHERLAKE)
[08:04:28] [PASSED] 0xD740 (NOVALAKE_S)
[08:04:28] [PASSED] 0xD741 (NOVALAKE_S)
[08:04:28] [PASSED] 0xD742 (NOVALAKE_S)
[08:04:28] [PASSED] 0xD743 (NOVALAKE_S)
[08:04:28] [PASSED] 0xD745 (NOVALAKE_S)
[08:04:28] [PASSED] 0xD74A (NOVALAKE_S)
[08:04:28] [PASSED] 0xD74B (NOVALAKE_S)
[08:04:28] [PASSED] 0x674C (CRESCENTISLAND)
[08:04:28] [PASSED] 0x674D (CRESCENTISLAND)
[08:04:28] [PASSED] 0x674E (CRESCENTISLAND)
[08:04:28] [PASSED] 0x674F (CRESCENTISLAND)
[08:04:28] [PASSED] 0x6750 (CRESCENTISLAND)
[08:04:28] [PASSED] 0xD750 (NOVALAKE_P)
[08:04:28] [PASSED] 0xD751 (NOVALAKE_P)
[08:04:28] [PASSED] 0xD752 (NOVALAKE_P)
[08:04:28] [PASSED] 0xD753 (NOVALAKE_P)
[08:04:28] [PASSED] 0xD754 (NOVALAKE_P)
[08:04:28] [PASSED] 0xD755 (NOVALAKE_P)
[08:04:28] [PASSED] 0xD756 (NOVALAKE_P)
[08:04:28] [PASSED] 0xD757 (NOVALAKE_P)
[08:04:28] [PASSED] 0xD75F (NOVALAKE_P)
[08:04:28] =============== [PASSED] check_platform_desc ===============
[08:04:28] ===================== [PASSED] xe_pci ======================
[08:04:28] ============= xe_rtp_tables_test (5 subtests) ==============
[08:04:28] ================== xe_rtp_table_gt_test ===================
[08:04:28] [PASSED] gt_was/14011060649
[08:04:28] [PASSED] gt_was/14011059788
[08:04:28] [PASSED] gt_was/14015795083
[08:04:28] [PASSED] gt_was/16021867713
[08:04:28] [PASSED] gt_was/14019449301
[08:04:28] [PASSED] gt_was/16028005424
[08:04:28] [PASSED] gt_was/14026578760
[08:04:28] [PASSED] gt_was/1409420604
[08:04:28] [PASSED] gt_was/1408615072
[08:04:28] [PASSED] gt_was/22010523718
[08:04:28] [PASSED] gt_was/14011006942
[08:04:28] [PASSED] gt_was/14014830051
[08:04:28] [PASSED] gt_was/18018781329
[08:04:28] [PASSED] gt_was/1509235366
[08:04:28] [PASSED] gt_was/18018781329
[08:04:28] [PASSED] gt_was/16016694945
[08:04:28] [PASSED] gt_was/14018575942
[08:04:28] [PASSED] gt_was/22016670082
[08:04:28] [PASSED] gt_was/22016670082
[08:04:28] [PASSED] gt_was/14017421178
[08:04:28] [PASSED] gt_was/16025250150
[08:04:28] [PASSED] gt_was/14021871409
[08:04:28] [PASSED] gt_was/16021865536
[08:04:28] [PASSED] gt_was/14021486841
[08:04:28] [PASSED] gt_was/14025160223
[08:04:28] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[08:04:28] [PASSED] gt_was/14025635424
[08:04:28] [PASSED] gt_was/16028005424
[08:04:28] ============== [PASSED] xe_rtp_table_gt_test ===============
[08:04:28] ================== xe_rtp_table_gt_test ===================
[08:04:28] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[08:04:28] [PASSED] gt_tunings/Tuning: 32B Access Enable
[08:04:28] [PASSED] gt_tunings/Tuning: L3 cache
[08:04:28] [PASSED] gt_tunings/Tuning: L3 cache - media
[08:04:28] [PASSED] gt_tunings/Tuning: Compression Overfetch
[08:04:28] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[08:04:28] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[08:04:28] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[08:04:28] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[08:04:28] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[08:04:28] [PASSED] gt_tunings/Tuning: Stateless compression control
[08:04:28] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[08:04:28] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[08:04:28] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[08:04:28] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[08:04:28] ============== [PASSED] xe_rtp_table_gt_test ===============
[08:04:28] ================== xe_rtp_table_oob_test ==================
[08:04:28] [PASSED] oob_was/1607983814
[08:04:28] [PASSED] oob_was/16010904313
[08:04:28] [PASSED] oob_was/18022495364
[08:04:28] [PASSED] oob_was/22012773006
[08:04:28] [PASSED] oob_was/14014475959
[08:04:28] [PASSED] oob_was/22011391025
[08:04:28] [PASSED] oob_was/22012727170
[08:04:28] [PASSED] oob_was/22012727685
[08:04:28] [PASSED] oob_was/22016596838
[08:04:28] [PASSED] oob_was/18020744125
[08:04:28] [PASSED] oob_was/1409600907
[08:04:28] [PASSED] oob_was/22014953428
[08:04:28] [PASSED] oob_was/16017236439
[08:04:28] [PASSED] oob_was/14019821291
[08:04:28] [PASSED] oob_was/14015076503
[08:04:28] [PASSED] oob_was/14018913170
[08:04:28] [PASSED] oob_was/14018094691
[08:04:28] [PASSED] oob_was/18024947630
[08:04:28] [PASSED] oob_was/16022287689
[08:04:28] [PASSED] oob_was/13011645652
[08:04:28] [PASSED] oob_was/14022293748
[08:04:28] [PASSED] oob_was/22019794406
[08:04:28] [PASSED] oob_was/22019338487
[08:04:28] [PASSED] oob_was/16023588340
[08:04:28] [PASSED] oob_was/14019789679
[08:04:28] [PASSED] oob_was/14022866841
[08:04:28] [PASSED] oob_was/16021333562
[08:04:28] [PASSED] oob_was/14016712196
[08:04:28] [PASSED] oob_was/14015568240
[08:04:28] [PASSED] oob_was/18013179988
[08:04:28] [PASSED] oob_was/1508761755
[08:04:28] [PASSED] oob_was/16023105232
[08:04:28] [PASSED] oob_was/16026508708
[08:04:28] [PASSED] oob_was/14020001231
[08:04:28] [PASSED] oob_was/16023683509
[08:04:28] [PASSED] oob_was/14025515070
[08:04:28] [PASSED] oob_was/15015404425_disable
[08:04:28] [PASSED] oob_was/16026007364
[08:04:28] [PASSED] oob_was/14020316580
[08:04:28] [PASSED] oob_was/14025883347
[08:04:28] [PASSED] oob_was/16029380221
[08:04:28] [PASSED] oob_was/22022079272
[08:04:28] [PASSED] oob_was/16029897822
[08:04:28] [PASSED] oob_was/14027054324
[08:04:28] ============== [PASSED] xe_rtp_table_oob_test ==============
[08:04:28] ================ xe_rtp_table_dev_oob_test ================
[08:04:28] [PASSED] device_oob_was/22010954014
[08:04:28] [PASSED] device_oob_was/15015404425
[08:04:28] [PASSED] device_oob_was/22019338487_display
[08:04:28] [PASSED] device_oob_was/14022085890
[08:04:28] [PASSED] device_oob_was/14026539277
[08:04:28] [PASSED] device_oob_was/14026633728
[08:04:28] [PASSED] device_oob_was/14026746987
[08:04:28] [PASSED] device_oob_was/14026779378
[08:04:28] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[08:04:28] ========== xe_rtp_table_missing_upper_bound_test ==========
[08:04:28] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[08:04:28] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[08:04:28] [PASSED] register_whitelist/1806527549
[08:04:28] [PASSED] register_whitelist/allow_read_ctx_timestamp
[08:04:28] [PASSED] register_whitelist/allow_read_queue_timestamp
[08:04:28] [PASSED] register_whitelist/16014440446
[08:04:28] [PASSED] register_whitelist/16017236439
[08:04:28] [PASSED] register_whitelist/16020183090
[08:04:28] [PASSED] register_whitelist/14024997852
[08:04:28] [PASSED] register_whitelist/14024997852
[08:04:28] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[08:04:28] =============== [PASSED] xe_rtp_tables_test ================
[08:04:28] =================== xe_rtp (3 subtests) ====================
[08:04:28] =================== xe_rtp_rules_tests ====================
[08:04:28] [PASSED] no
[08:04:28] [PASSED] yes
[08:04:28] [PASSED] no-and-no
[08:04:28] [PASSED] no-and-yes
[08:04:28] [PASSED] yes-and-no
[08:04:28] [PASSED] yes-and-yes
[08:04:28] [PASSED] no-or-no
[08:04:28] [PASSED] no-or-yes
[08:04:28] [PASSED] yes-or-no
[08:04:28] [PASSED] yes-or-yes
[08:04:28] [PASSED] no-yes-or-yes-no
[08:04:28] [PASSED] no-yes-or-yes-yes
[08:04:28] [PASSED] yes-yes-or-no-yes
[08:04:28] [PASSED] yes-yes-or-yes-yes
[08:04:28] [PASSED] no-no-or-yes-or-no
[08:04:28] [PASSED] or
[08:04:28] [PASSED] or-yes
[08:04:28] [PASSED] or-no
[08:04:28] [PASSED] yes-or
[08:04:28] [PASSED] no-or
[08:04:28] [PASSED] no-or-or-yes
[08:04:28] [PASSED] yes-or-or-no
[08:04:28] [PASSED] no-or-or-no
[08:04:28] [PASSED] missing-context-engine-class
[08:04:28] [PASSED] missing-context-engine-class-or-yes
[08:04:28] [PASSED] missing-context-engine-class-or-or-yes
[08:04:28] =============== [PASSED] xe_rtp_rules_tests ================
[08:04:28] =============== xe_rtp_process_to_sr_tests ================
[08:04:28] [PASSED] coalesce-same-reg
[08:04:28] [PASSED] coalesce-same-reg-literal-and-func
[08:04:28] [PASSED] no-match-no-add
[08:04:28] [PASSED] two-regs-two-entries
[08:04:28] [PASSED] clr-one-set-other
[08:04:28] [PASSED] set-field
[08:04:28] [PASSED] conflict-duplicate
[08:04:28] [PASSED] conflict-not-disjoint
[08:04:28] [PASSED] conflict-not-disjoint-literal-and-func
[08:04:28] [PASSED] conflict-reg-type
[08:04:28] [PASSED] bad-mcr-reg-forced-to-regular
[08:04:28] [PASSED] bad-regular-reg-forced-to-mcr
[08:04:28] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[08:04:28] ================== xe_rtp_process_tests ===================
[08:04:28] [PASSED] active1
[08:04:28] [PASSED] active2
[08:04:28] [PASSED] active-inactive
[08:04:28] [PASSED] inactive-active
[08:04:28] [PASSED] inactive-active-inactive
[08:04:28] [PASSED] inactive-inactive-inactive
[08:04:28] ============== [PASSED] xe_rtp_process_tests ===============
[08:04:28] ===================== [PASSED] xe_rtp ======================
[08:04:28] ==================== xe_wa (1 subtest) =====================
[08:04:28] ======================== xe_wa_gt =========================
[08:04:28] [PASSED] TIGERLAKE B0
[08:04:28] [PASSED] DG1 A0
[08:04:28] [PASSED] DG1 B0
[08:04:28] [PASSED] ALDERLAKE_S A0
[08:04:28] [PASSED] ALDERLAKE_S B0
[08:04:28] [PASSED] ALDERLAKE_S C0
[08:04:28] [PASSED] ALDERLAKE_S D0
[08:04:28] [PASSED] ALDERLAKE_P A0
[08:04:28] [PASSED] ALDERLAKE_P B0
[08:04:28] [PASSED] ALDERLAKE_P C0
[08:04:28] [PASSED] ALDERLAKE_S RPLS D0
[08:04:28] [PASSED] ALDERLAKE_P RPLU E0
[08:04:28] [PASSED] DG2 G10 C0
[08:04:28] [PASSED] DG2 G11 B1
[08:04:28] [PASSED] DG2 G12 A1
[08:04:28] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[08:04:28] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[08:04:28] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[08:04:28] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[08:04:28] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[08:04:28] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[08:04:28] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[08:04:28] ==================== [PASSED] xe_wa_gt =====================
[08:04:28] ====================== [PASSED] xe_wa ======================
[08:04:28] ============================================================
[08:04:28] Testing complete. Ran 793 tests: passed: 765, skipped: 28
[08:04:28] Elapsed time: 36.549s total, 1.864s configuring, 33.918s building, 0.716s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[08:04:28] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:04:30] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[08:04:55] Starting KUnit Kernel (1/1)...
[08:04:55] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:04:55] ============= refcount_interrupt (4 subtests) ==============
[08:04:55] [PASSED] test_single_irq_change
[08:04:55] [PASSED] test_nested_irq_change
[08:04:55] [PASSED] test_multiple_irq_change
[08:04:55] [PASSED] test_irq_save
[08:04:55] =============== [PASSED] refcount_interrupt ================
[08:04:55] ============ drm_test_pick_cmdline (2 subtests) ============
[08:04:55] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[08:04:55] =============== drm_test_pick_cmdline_named ===============
[08:04:55] [PASSED] NTSC
[08:04:55] [PASSED] NTSC-J
[08:04:55] [PASSED] PAL
[08:04:55] [PASSED] PAL-M
[08:04:55] =========== [PASSED] drm_test_pick_cmdline_named ===========
[08:04:55] ============== [PASSED] drm_test_pick_cmdline ==============
[08:04:55] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[08:04:55] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[08:04:55] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[08:04:55] =========== drm_validate_clone_mode (2 subtests) ===========
[08:04:55] ============== drm_test_check_in_clone_mode ===============
[08:04:55] [PASSED] in_clone_mode
[08:04:55] [PASSED] not_in_clone_mode
[08:04:55] ========== [PASSED] drm_test_check_in_clone_mode ===========
[08:04:55] =============== drm_test_check_valid_clones ===============
[08:04:55] [PASSED] not_in_clone_mode
[08:04:55] [PASSED] valid_clone
[08:04:55] [PASSED] invalid_clone
[08:04:55] =========== [PASSED] drm_test_check_valid_clones ===========
[08:04:55] ============= [PASSED] drm_validate_clone_mode =============
[08:04:55] ============= drm_validate_modeset (1 subtest) =============
[08:04:55] [PASSED] drm_test_check_connector_changed_modeset
[08:04:55] ============== [PASSED] drm_validate_modeset ===============
[08:04:55] ====== drm_test_bridge_get_current_state (1 subtest) =======
[08:04:55] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[08:04:55] ======== [PASSED] drm_test_bridge_get_current_state ========
[08:04:55] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[08:04:55] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[08:04:55] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[08:04:55] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[08:04:55] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[08:04:55] ============== drm_bridge_alloc (2 subtests) ===============
[08:04:55] [PASSED] drm_test_drm_bridge_alloc_basic
[08:04:55] [PASSED] drm_test_drm_bridge_alloc_get_put
[08:04:55] ================ [PASSED] drm_bridge_alloc =================
[08:04:55] ============= drm_bridge_bus_fmt (5 subtests) ==============
[08:04:55] [PASSED] drm_test_bridge_rgb_yuv_rgb
[08:04:55] [PASSED] drm_test_bridge_must_convert_to_yuv444
[08:04:55] [PASSED] drm_test_bridge_hdmi_auto_rgb
[08:04:55] [PASSED] drm_test_bridge_auto_first
[08:04:55] [PASSED] drm_test_bridge_rgb_yuv_no_path
[08:04:55] =============== [PASSED] drm_bridge_bus_fmt ================
[08:04:55] ============= drm_cmdline_parser (40 subtests) =============
[08:04:55] [PASSED] drm_test_cmdline_force_d_only
[08:04:55] [PASSED] drm_test_cmdline_force_D_only_dvi
[08:04:55] [PASSED] drm_test_cmdline_force_D_only_hdmi
[08:04:55] [PASSED] drm_test_cmdline_force_D_only_not_digital
[08:04:55] [PASSED] drm_test_cmdline_force_e_only
[08:04:55] [PASSED] drm_test_cmdline_res
[08:04:55] [PASSED] drm_test_cmdline_res_vesa
[08:04:55] [PASSED] drm_test_cmdline_res_vesa_rblank
[08:04:55] [PASSED] drm_test_cmdline_res_rblank
[08:04:55] [PASSED] drm_test_cmdline_res_bpp
[08:04:55] [PASSED] drm_test_cmdline_res_refresh
[08:04:55] [PASSED] drm_test_cmdline_res_bpp_refresh
[08:04:55] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[08:04:55] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[08:04:55] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[08:04:55] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[08:04:55] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[08:04:55] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[08:04:55] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[08:04:55] [PASSED] drm_test_cmdline_res_margins_force_on
[08:04:55] [PASSED] drm_test_cmdline_res_vesa_margins
[08:04:55] [PASSED] drm_test_cmdline_name
[08:04:55] [PASSED] drm_test_cmdline_name_bpp
[08:04:55] [PASSED] drm_test_cmdline_name_option
[08:04:55] [PASSED] drm_test_cmdline_name_bpp_option
[08:04:55] [PASSED] drm_test_cmdline_rotate_0
[08:04:55] [PASSED] drm_test_cmdline_rotate_90
[08:04:55] [PASSED] drm_test_cmdline_rotate_180
[08:04:55] [PASSED] drm_test_cmdline_rotate_270
[08:04:55] [PASSED] drm_test_cmdline_hmirror
[08:04:55] [PASSED] drm_test_cmdline_vmirror
[08:04:55] [PASSED] drm_test_cmdline_margin_options
[08:04:55] [PASSED] drm_test_cmdline_multiple_options
[08:04:55] [PASSED] drm_test_cmdline_bpp_extra_and_option
[08:04:55] [PASSED] drm_test_cmdline_extra_and_option
[08:04:55] [PASSED] drm_test_cmdline_freestanding_options
[08:04:55] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[08:04:55] [PASSED] drm_test_cmdline_panel_orientation
[08:04:55] ================ drm_test_cmdline_invalid =================
[08:04:55] [PASSED] margin_only
[08:04:55] [PASSED] interlace_only
[08:04:55] [PASSED] res_missing_x
[08:04:55] [PASSED] res_missing_y
[08:04:55] [PASSED] res_bad_y
[08:04:55] [PASSED] res_missing_y_bpp
[08:04:55] [PASSED] res_bad_bpp
[08:04:55] [PASSED] res_bad_refresh
[08:04:55] [PASSED] res_bpp_refresh_force_on_off
[08:04:55] [PASSED] res_invalid_mode
[08:04:55] [PASSED] res_bpp_wrong_place_mode
[08:04:55] [PASSED] name_bpp_refresh
[08:04:55] [PASSED] name_refresh
[08:04:55] [PASSED] name_refresh_wrong_mode
[08:04:55] [PASSED] name_refresh_invalid_mode
[08:04:55] [PASSED] rotate_multiple
[08:04:55] [PASSED] rotate_invalid_val
[08:04:55] [PASSED] rotate_truncated
[08:04:55] [PASSED] invalid_option
[08:04:55] [PASSED] invalid_tv_option
[08:04:55] [PASSED] truncated_tv_option
[08:04:55] ============ [PASSED] drm_test_cmdline_invalid =============
[08:04:55] =============== drm_test_cmdline_tv_options ===============
[08:04:55] [PASSED] NTSC
[08:04:55] [PASSED] NTSC_443
[08:04:55] [PASSED] NTSC_J
[08:04:55] [PASSED] PAL
[08:04:55] [PASSED] PAL_M
[08:04:55] [PASSED] PAL_N
[08:04:55] [PASSED] SECAM
[08:04:55] [PASSED] MONO_525
[08:04:55] [PASSED] MONO_625
[08:04:55] =========== [PASSED] drm_test_cmdline_tv_options ===========
[08:04:55] =============== [PASSED] drm_cmdline_parser ================
[08:04:55] ========== drmm_connector_hdmi_init (20 subtests) ==========
[08:04:55] [PASSED] drm_test_connector_hdmi_init_valid
[08:04:55] [PASSED] drm_test_connector_hdmi_init_bpc_8
[08:04:55] [PASSED] drm_test_connector_hdmi_init_bpc_10
[08:04:55] [PASSED] drm_test_connector_hdmi_init_bpc_12
[08:04:55] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[08:04:55] [PASSED] drm_test_connector_hdmi_init_bpc_null
[08:04:55] [PASSED] drm_test_connector_hdmi_init_formats_empty
[08:04:55] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[08:04:55] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[08:04:55] [PASSED] supported_formats=0x9 yuv420_allowed=1
[08:04:55] [PASSED] supported_formats=0x9 yuv420_allowed=0
[08:04:55] [PASSED] supported_formats=0x5 yuv420_allowed=1
[08:04:55] [PASSED] supported_formats=0x5 yuv420_allowed=0
[08:04:55] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[08:04:55] [PASSED] drm_test_connector_hdmi_init_null_ddc
[08:04:55] [PASSED] drm_test_connector_hdmi_init_null_product
[08:04:55] [PASSED] drm_test_connector_hdmi_init_null_vendor
[08:04:55] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[08:04:55] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[08:04:55] [PASSED] drm_test_connector_hdmi_init_product_valid
[08:04:55] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[08:04:55] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[08:04:55] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[08:04:55] ========= drm_test_connector_hdmi_init_type_valid =========
[08:04:55] [PASSED] HDMI-A
[08:04:55] [PASSED] HDMI-B
[08:04:55] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[08:04:55] ======== drm_test_connector_hdmi_init_type_invalid ========
[08:04:55] [PASSED] Unknown
[08:04:55] [PASSED] VGA
[08:04:55] [PASSED] DVI-I
[08:04:55] [PASSED] DVI-D
[08:04:55] [PASSED] DVI-A
[08:04:55] [PASSED] Composite
[08:04:55] [PASSED] SVIDEO
[08:04:55] [PASSED] LVDS
[08:04:55] [PASSED] Component
[08:04:55] [PASSED] DIN
[08:04:55] [PASSED] DP
[08:04:55] [PASSED] TV
[08:04:55] [PASSED] eDP
[08:04:55] [PASSED] Virtual
[08:04:55] [PASSED] DSI
[08:04:55] [PASSED] DPI
[08:04:55] [PASSED] Writeback
[08:04:55] [PASSED] SPI
[08:04:55] [PASSED] USB
[08:04:55] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[08:04:55] ============ [PASSED] drmm_connector_hdmi_init =============
[08:04:55] ============= drmm_connector_init (3 subtests) =============
[08:04:55] [PASSED] drm_test_drmm_connector_init
[08:04:55] [PASSED] drm_test_drmm_connector_init_null_ddc
[08:04:55] ========= drm_test_drmm_connector_init_type_valid =========
[08:04:55] [PASSED] Unknown
[08:04:55] [PASSED] VGA
[08:04:55] [PASSED] DVI-I
[08:04:55] [PASSED] DVI-D
[08:04:55] [PASSED] DVI-A
[08:04:55] [PASSED] Composite
[08:04:55] [PASSED] SVIDEO
[08:04:55] [PASSED] LVDS
[08:04:55] [PASSED] Component
[08:04:55] [PASSED] DIN
[08:04:55] [PASSED] DP
[08:04:55] [PASSED] HDMI-A
[08:04:55] [PASSED] HDMI-B
[08:04:55] [PASSED] TV
[08:04:55] [PASSED] eDP
[08:04:55] [PASSED] Virtual
[08:04:55] [PASSED] DSI
[08:04:55] [PASSED] DPI
[08:04:55] [PASSED] Writeback
[08:04:55] [PASSED] SPI
[08:04:55] [PASSED] USB
[08:04:55] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[08:04:55] =============== [PASSED] drmm_connector_init ===============
[08:04:55] ========= drm_connector_dynamic_init (6 subtests) ==========
[08:04:55] [PASSED] drm_test_drm_connector_dynamic_init
[08:04:55] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[08:04:55] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[08:04:55] [PASSED] drm_test_drm_connector_dynamic_init_properties
[08:04:55] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[08:04:55] [PASSED] Unknown
[08:04:55] [PASSED] VGA
[08:04:55] [PASSED] DVI-I
[08:04:55] [PASSED] DVI-D
[08:04:55] [PASSED] DVI-A
[08:04:55] [PASSED] Composite
[08:04:55] [PASSED] SVIDEO
[08:04:55] [PASSED] LVDS
[08:04:55] [PASSED] Component
[08:04:55] [PASSED] DIN
[08:04:55] [PASSED] DP
[08:04:55] [PASSED] HDMI-A
[08:04:55] [PASSED] HDMI-B
[08:04:55] [PASSED] TV
[08:04:55] [PASSED] eDP
[08:04:55] [PASSED] Virtual
[08:04:55] [PASSED] DSI
[08:04:55] [PASSED] DPI
[08:04:55] [PASSED] Writeback
[08:04:55] [PASSED] SPI
[08:04:55] [PASSED] USB
[08:04:55] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[08:04:55] ======== drm_test_drm_connector_dynamic_init_name =========
[08:04:55] [PASSED] Unknown
[08:04:55] [PASSED] VGA
[08:04:55] [PASSED] DVI-I
[08:04:55] [PASSED] DVI-D
[08:04:55] [PASSED] DVI-A
[08:04:55] [PASSED] Composite
[08:04:55] [PASSED] SVIDEO
[08:04:55] [PASSED] LVDS
[08:04:55] [PASSED] Component
[08:04:55] [PASSED] DIN
[08:04:55] [PASSED] DP
[08:04:55] [PASSED] HDMI-A
[08:04:55] [PASSED] HDMI-B
[08:04:55] [PASSED] TV
[08:04:55] [PASSED] eDP
[08:04:55] [PASSED] Virtual
[08:04:55] [PASSED] DSI
[08:04:55] [PASSED] DPI
[08:04:55] [PASSED] Writeback
[08:04:55] [PASSED] SPI
[08:04:55] [PASSED] USB
[08:04:55] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[08:04:55] =========== [PASSED] drm_connector_dynamic_init ============
[08:04:55] ==== drm_connector_dynamic_register_early (4 subtests) =====
[08:04:55] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[08:04:55] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[08:04:55] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[08:04:55] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[08:04:55] ====== [PASSED] drm_connector_dynamic_register_early =======
[08:04:55] ======= drm_connector_dynamic_register (7 subtests) ========
[08:04:55] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[08:04:55] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[08:04:55] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[08:04:55] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[08:04:55] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[08:04:55] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[08:04:55] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[08:04:55] ========= [PASSED] drm_connector_dynamic_register ==========
[08:04:55] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[08:04:55] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[08:04:55] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[08:04:55] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[08:04:55] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[08:04:55] ========== drm_test_get_tv_mode_from_name_valid ===========
[08:04:55] [PASSED] NTSC
[08:04:55] [PASSED] NTSC-443
[08:04:55] [PASSED] NTSC-J
[08:04:55] [PASSED] PAL
[08:04:55] [PASSED] PAL-M
[08:04:55] [PASSED] PAL-N
[08:04:55] [PASSED] SECAM
[08:04:55] [PASSED] Mono
[08:04:55] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[08:04:55] [PASSED] drm_test_get_tv_mode_from_name_truncated
[08:04:55] ============ [PASSED] drm_get_tv_mode_from_name ============
[08:04:55] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[08:04:55] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[08:04:55] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[08:04:55] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[08:04:55] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[08:04:55] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[08:04:55] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[08:04:55] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[08:04:55] [PASSED] VIC 96
[08:04:55] [PASSED] VIC 97
[08:04:55] [PASSED] VIC 101
[08:04:55] [PASSED] VIC 102
[08:04:55] [PASSED] VIC 106
[08:04:55] [PASSED] VIC 107
[08:04:55] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[08:04:55] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[08:04:55] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[08:04:55] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[08:04:55] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[08:04:55] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[08:04:55] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[08:04:55] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[08:04:55] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[08:04:55] [PASSED] Automatic
[08:04:55] [PASSED] Full
[08:04:55] [PASSED] Limited 16:235
[08:04:55] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[08:04:55] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[08:04:55] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[08:04:55] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[08:04:55] === drm_test_drm_hdmi_connector_get_output_format_name ====
[08:04:55] [PASSED] RGB
[08:04:55] [PASSED] YUV 4:2:0
[08:04:55] [PASSED] YUV 4:2:2
[08:04:55] [PASSED] YUV 4:4:4
[08:04:55] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[08:04:55] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[08:04:55] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[08:04:55] ============= drm_damage_helper (21 subtests) ==============
[08:04:55] [PASSED] drm_test_damage_iter_no_damage
[08:04:55] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[08:04:55] [PASSED] drm_test_damage_iter_no_damage_src_moved
[08:04:55] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[08:04:55] [PASSED] drm_test_damage_iter_no_damage_not_visible
[08:04:55] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[08:04:55] [PASSED] drm_test_damage_iter_no_damage_no_fb
[08:04:55] [PASSED] drm_test_damage_iter_simple_damage
[08:04:55] [PASSED] drm_test_damage_iter_single_damage
[08:04:55] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[08:04:55] [PASSED] drm_test_damage_iter_single_damage_outside_src
[08:04:55] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[08:04:55] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[08:04:55] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[08:04:55] [PASSED] drm_test_damage_iter_single_damage_src_moved
[08:04:55] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[08:04:55] [PASSED] drm_test_damage_iter_damage
[08:04:55] [PASSED] drm_test_damage_iter_damage_one_intersect
[08:04:55] [PASSED] drm_test_damage_iter_damage_one_outside
[08:04:55] [PASSED] drm_test_damage_iter_damage_src_moved
[08:04:55] [PASSED] drm_test_damage_iter_damage_not_visible
[08:04:55] ================ [PASSED] drm_damage_helper ================
[08:04:55] ============== drm_dp_mst_helper (3 subtests) ==============
[08:04:55] ============== drm_test_dp_mst_calc_pbn_mode ==============
[08:04:55] [PASSED] Clock 154000 BPP 30 DSC disabled
[08:04:55] [PASSED] Clock 234000 BPP 30 DSC disabled
[08:04:55] [PASSED] Clock 297000 BPP 24 DSC disabled
[08:04:55] [PASSED] Clock 332880 BPP 24 DSC enabled
[08:04:55] [PASSED] Clock 324540 BPP 24 DSC enabled
[08:04:55] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[08:04:55] ============== drm_test_dp_mst_calc_pbn_div ===============
[08:04:55] [PASSED] Link rate 2000000 lane count 4
[08:04:55] [PASSED] Link rate 2000000 lane count 2
[08:04:55] [PASSED] Link rate 2000000 lane count 1
[08:04:55] [PASSED] Link rate 1350000 lane count 4
[08:04:55] [PASSED] Link rate 1350000 lane count 2
[08:04:55] [PASSED] Link rate 1350000 lane count 1
[08:04:55] [PASSED] Link rate 1000000 lane count 4
[08:04:55] [PASSED] Link rate 1000000 lane count 2
[08:04:55] [PASSED] Link rate 1000000 lane count 1
[08:04:55] [PASSED] Link rate 810000 lane count 4
[08:04:55] [PASSED] Link rate 810000 lane count 2
[08:04:55] [PASSED] Link rate 810000 lane count 1
[08:04:55] [PASSED] Link rate 540000 lane count 4
[08:04:55] [PASSED] Link rate 540000 lane count 2
[08:04:55] [PASSED] Link rate 540000 lane count 1
[08:04:55] [PASSED] Link rate 270000 lane count 4
[08:04:55] [PASSED] Link rate 270000 lane count 2
[08:04:55] [PASSED] Link rate 270000 lane count 1
[08:04:55] [PASSED] Link rate 162000 lane count 4
[08:04:55] [PASSED] Link rate 162000 lane count 2
[08:04:55] [PASSED] Link rate 162000 lane count 1
[08:04:55] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[08:04:55] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[08:04:55] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[08:04:55] [PASSED] DP_POWER_UP_PHY with port number
[08:04:55] [PASSED] DP_POWER_DOWN_PHY with port number
[08:04:55] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[08:04:55] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[08:04:55] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[08:04:55] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[08:04:55] [PASSED] DP_QUERY_PAYLOAD with port number
[08:04:55] [PASSED] DP_QUERY_PAYLOAD with VCPI
[08:04:55] [PASSED] DP_REMOTE_DPCD_READ with port number
[08:04:55] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[08:04:55] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[08:04:55] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[08:04:55] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[08:04:55] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[08:04:55] [PASSED] DP_REMOTE_I2C_READ with port number
[08:04:55] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[08:04:55] [PASSED] DP_REMOTE_I2C_READ with transactions array
[08:04:55] [PASSED] DP_REMOTE_I2C_WRITE with port number
[08:04:55] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[08:04:55] [PASSED] DP_REMOTE_I2C_WRITE with data array
[08:04:55] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[08:04:55] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[08:04:55] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[08:04:55] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[08:04:55] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[08:04:55] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[08:04:55] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[08:04:55] ================ [PASSED] drm_dp_mst_helper ================
[08:04:55] ================== drm_exec (7 subtests) ===================
[08:04:55] [PASSED] sanitycheck
[08:04:55] [PASSED] test_lock
[08:04:55] [PASSED] test_lock_unlock
[08:04:55] [PASSED] test_duplicates
[08:04:55] [PASSED] test_prepare
[08:04:55] [PASSED] test_prepare_array
[08:04:55] [PASSED] test_multiple_loops
[08:04:55] ==================== [PASSED] drm_exec =====================
[08:04:55] =========== drm_format_helper_test (17 subtests) ===========
[08:04:55] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[08:04:55] [PASSED] single_pixel_source_buffer
[08:04:55] [PASSED] single_pixel_clip_rectangle
[08:04:55] [PASSED] well_known_colors
[08:04:55] [PASSED] destination_pitch
[08:04:55] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[08:04:55] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[08:04:55] [PASSED] single_pixel_source_buffer
[08:04:55] [PASSED] single_pixel_clip_rectangle
[08:04:55] [PASSED] well_known_colors
[08:04:55] [PASSED] destination_pitch
[08:04:55] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[08:04:55] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[08:04:55] [PASSED] single_pixel_source_buffer
[08:04:55] [PASSED] single_pixel_clip_rectangle
[08:04:55] [PASSED] well_known_colors
[08:04:55] [PASSED] destination_pitch
[08:04:55] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[08:04:55] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[08:04:55] [PASSED] single_pixel_source_buffer
[08:04:55] [PASSED] single_pixel_clip_rectangle
[08:04:55] [PASSED] well_known_colors
[08:04:55] [PASSED] destination_pitch
[08:04:55] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[08:04:55] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[08:04:55] [PASSED] single_pixel_source_buffer
[08:04:55] [PASSED] single_pixel_clip_rectangle
[08:04:55] [PASSED] well_known_colors
[08:04:55] [PASSED] destination_pitch
[08:04:55] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[08:04:55] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[08:04:55] [PASSED] single_pixel_source_buffer
[08:04:55] [PASSED] single_pixel_clip_rectangle
[08:04:55] [PASSED] well_known_colors
[08:04:55] [PASSED] destination_pitch
[08:04:55] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[08:04:55] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[08:04:55] [PASSED] single_pixel_source_buffer
[08:04:55] [PASSED] single_pixel_clip_rectangle
[08:04:55] [PASSED] well_known_colors
[08:04:55] [PASSED] destination_pitch
[08:04:55] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[08:04:55] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[08:04:55] [PASSED] single_pixel_source_buffer
[08:04:55] [PASSED] single_pixel_clip_rectangle
[08:04:55] [PASSED] well_known_colors
[08:04:55] [PASSED] destination_pitch
[08:04:55] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[08:04:55] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[08:04:55] [PASSED] single_pixel_source_buffer
[08:04:55] [PASSED] single_pixel_clip_rectangle
[08:04:55] [PASSED] well_known_colors
[08:04:55] [PASSED] destination_pitch
[08:04:55] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[08:04:55] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[08:04:55] [PASSED] single_pixel_source_buffer
[08:04:55] [PASSED] single_pixel_clip_rectangle
[08:04:55] [PASSED] well_known_colors
[08:04:55] [PASSED] destination_pitch
[08:04:55] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[08:04:55] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[08:04:55] [PASSED] single_pixel_source_buffer
[08:04:55] [PASSED] single_pixel_clip_rectangle
[08:04:55] [PASSED] well_known_colors
[08:04:55] [PASSED] destination_pitch
[08:04:55] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[08:04:55] ============== drm_test_fb_xrgb8888_to_mono ===============
[08:04:55] [PASSED] single_pixel_source_buffer
[08:04:55] [PASSED] single_pixel_clip_rectangle
[08:04:55] [PASSED] well_known_colors
[08:04:55] [PASSED] destination_pitch
[08:04:55] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[08:04:55] ==================== drm_test_fb_swab =====================
[08:04:55] [PASSED] single_pixel_source_buffer
[08:04:55] [PASSED] single_pixel_clip_rectangle
[08:04:55] [PASSED] well_known_colors
[08:04:55] [PASSED] destination_pitch
[08:04:55] ================ [PASSED] drm_test_fb_swab =================
[08:04:55] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[08:04:55] [PASSED] single_pixel_source_buffer
[08:04:55] [PASSED] single_pixel_clip_rectangle
[08:04:55] [PASSED] well_known_colors
[08:04:55] [PASSED] destination_pitch
[08:04:55] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[08:04:55] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[08:04:55] [PASSED] single_pixel_source_buffer
[08:04:55] [PASSED] single_pixel_clip_rectangle
[08:04:55] [PASSED] well_known_colors
[08:04:55] [PASSED] destination_pitch
[08:04:55] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[08:04:55] ================= drm_test_fb_clip_offset =================
[08:04:55] [PASSED] pass through
[08:04:55] [PASSED] horizontal offset
[08:04:55] [PASSED] vertical offset
[08:04:55] [PASSED] horizontal and vertical offset
[08:04:55] [PASSED] horizontal offset (custom pitch)
[08:04:55] [PASSED] vertical offset (custom pitch)
[08:04:55] [PASSED] horizontal and vertical offset (custom pitch)
[08:04:55] ============= [PASSED] drm_test_fb_clip_offset =============
[08:04:55] =================== drm_test_fb_memcpy ====================
[08:04:55] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[08:04:55] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[08:04:55] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[08:04:55] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[08:04:55] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[08:04:55] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[08:04:55] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[08:04:55] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[08:04:55] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[08:04:55] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[08:04:55] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[08:04:55] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[08:04:55] =============== [PASSED] drm_test_fb_memcpy ================
[08:04:55] ============= [PASSED] drm_format_helper_test ==============
[08:04:55] ================= drm_format (18 subtests) =================
[08:04:55] [PASSED] drm_test_format_block_width_invalid
[08:04:55] [PASSED] drm_test_format_block_width_one_plane
[08:04:55] [PASSED] drm_test_format_block_width_two_plane
[08:04:55] [PASSED] drm_test_format_block_width_three_plane
[08:04:55] [PASSED] drm_test_format_block_width_tiled
[08:04:55] [PASSED] drm_test_format_block_height_invalid
[08:04:55] [PASSED] drm_test_format_block_height_one_plane
[08:04:55] [PASSED] drm_test_format_block_height_two_plane
[08:04:55] [PASSED] drm_test_format_block_height_three_plane
[08:04:55] [PASSED] drm_test_format_block_height_tiled
[08:04:55] [PASSED] drm_test_format_min_pitch_invalid
[08:04:55] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[08:04:55] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[08:04:55] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[08:04:55] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[08:04:55] [PASSED] drm_test_format_min_pitch_two_plane
[08:04:55] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[08:04:55] [PASSED] drm_test_format_min_pitch_tiled
[08:04:55] =================== [PASSED] drm_format ====================
[08:04:55] ============== drm_framebuffer (10 subtests) ===============
[08:04:55] ========== drm_test_framebuffer_check_src_coords ==========
[08:04:55] [PASSED] Success: source fits into fb
[08:04:55] [PASSED] Fail: overflowing fb with x-axis coordinate
[08:04:55] [PASSED] Fail: overflowing fb with y-axis coordinate
[08:04:55] [PASSED] Fail: overflowing fb with source width
[08:04:55] [PASSED] Fail: overflowing fb with source height
[08:04:55] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[08:04:55] [PASSED] drm_test_framebuffer_cleanup
[08:04:55] =============== drm_test_framebuffer_create ===============
[08:04:55] [PASSED] ABGR8888 normal sizes
[08:04:55] [PASSED] ABGR8888 max sizes
[08:04:55] [PASSED] ABGR8888 pitch greater than min required
[08:04:55] [PASSED] ABGR8888 pitch less than min required
[08:04:55] [PASSED] ABGR8888 Invalid width
[08:04:55] [PASSED] ABGR8888 Invalid buffer handle
[08:04:55] [PASSED] No pixel format
[08:04:55] [PASSED] ABGR8888 Width 0
[08:04:55] [PASSED] ABGR8888 Height 0
[08:04:55] [PASSED] ABGR8888 Out of bound height * pitch combination
[08:04:55] [PASSED] ABGR8888 Large buffer offset
[08:04:55] [PASSED] ABGR8888 Buffer offset for inexistent plane
[08:04:55] [PASSED] ABGR8888 Invalid flag
[08:04:55] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[08:04:55] [PASSED] ABGR8888 Valid buffer modifier
[08:04:55] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[08:04:55] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[08:04:55] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[08:04:55] [PASSED] NV12 Normal sizes
[08:04:55] [PASSED] NV12 Max sizes
[08:04:55] [PASSED] NV12 Invalid pitch
[08:04:55] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[08:04:55] [PASSED] NV12 different modifier per-plane
[08:04:55] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[08:04:55] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[08:04:55] [PASSED] NV12 Modifier for inexistent plane
[08:04:55] [PASSED] NV12 Handle for inexistent plane
[08:04:55] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[08:04:55] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[08:04:55] [PASSED] YVU420 Normal sizes
[08:04:55] [PASSED] YVU420 Max sizes
[08:04:55] [PASSED] YVU420 Invalid pitch
[08:04:55] [PASSED] YVU420 Different pitches
[08:04:55] [PASSED] YVU420 Different buffer offsets/pitches
[08:04:55] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[08:04:55] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[08:04:55] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[08:04:55] [PASSED] YVU420 Valid modifier
[08:04:55] [PASSED] YVU420 Different modifiers per plane
[08:04:55] [PASSED] YVU420 Modifier for inexistent plane
[08:04:55] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[08:04:55] [PASSED] X0L2 Normal sizes
[08:04:55] [PASSED] X0L2 Max sizes
[08:04:55] [PASSED] X0L2 Invalid pitch
[08:04:55] [PASSED] X0L2 Pitch greater than minimum required
[08:04:55] [PASSED] X0L2 Handle for inexistent plane
[08:04:55] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[08:04:55] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[08:04:55] [PASSED] X0L2 Valid modifier
[08:04:55] [PASSED] X0L2 Modifier for inexistent plane
[08:04:55] =========== [PASSED] drm_test_framebuffer_create ===========
[08:04:55] [PASSED] drm_test_framebuffer_free
[08:04:55] [PASSED] drm_test_framebuffer_init
[08:04:55] [PASSED] drm_test_framebuffer_init_bad_format
[08:04:55] [PASSED] drm_test_framebuffer_init_dev_mismatch
[08:04:55] [PASSED] drm_test_framebuffer_lookup
[08:04:55] [PASSED] drm_test_framebuffer_lookup_inexistent
[08:04:55] [PASSED] drm_test_framebuffer_modifiers_not_supported
[08:04:55] ================= [PASSED] drm_framebuffer =================
[08:04:55] ================ drm_gem_shmem (8 subtests) ================
[08:04:55] [PASSED] drm_gem_shmem_test_obj_create
[08:04:55] [PASSED] drm_gem_shmem_test_obj_create_private
[08:04:55] [PASSED] drm_gem_shmem_test_pin_pages
[08:04:55] [PASSED] drm_gem_shmem_test_vmap
[08:04:55] [PASSED] drm_gem_shmem_test_get_sg_table
[08:04:55] [PASSED] drm_gem_shmem_test_get_pages_sgt
[08:04:55] [PASSED] drm_gem_shmem_test_madvise
[08:04:55] [PASSED] drm_gem_shmem_test_purge
[08:04:55] ================== [PASSED] drm_gem_shmem ==================
[08:04:55] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[08:04:55] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[08:04:55] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[08:04:55] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[08:04:55] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[08:04:55] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[08:04:55] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[08:04:55] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[08:04:55] [PASSED] Automatic
[08:04:55] [PASSED] Full
[08:04:55] [PASSED] Limited 16:235
[08:04:55] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[08:04:55] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[08:04:55] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[08:04:55] [PASSED] drm_test_check_disable_connector
[08:04:55] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[08:04:55] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[08:04:55] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[08:04:55] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[08:04:55] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[08:04:55] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[08:04:55] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[08:04:55] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[08:04:55] [PASSED] drm_test_check_output_bpc_dvi
[08:04:55] [PASSED] drm_test_check_output_bpc_format_vic_1
[08:04:55] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[08:04:55] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[08:04:55] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[08:04:55] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[08:04:55] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[08:04:55] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[08:04:55] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[08:04:55] ============ drm_test_check_hdmi_color_format =============
[08:04:55] [PASSED] AUTO -> RGB
[08:04:55] [PASSED] YCBCR422 -> YUV422
[08:04:55] [PASSED] YCBCR420 -> YUV420
[08:04:55] [PASSED] YCBCR444 -> YUV444
[08:04:55] [PASSED] RGB -> RGB
[08:04:55] ======== [PASSED] drm_test_check_hdmi_color_format =========
[08:04:55] ======== drm_test_check_hdmi_color_format_420_only ========
[08:04:55] [PASSED] RGB should fail
[08:04:55] [PASSED] YUV444 should fail
[08:04:55] [PASSED] YUV422 should fail
[08:04:55] [PASSED] YUV420 should work
[08:04:55] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[08:04:55] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[08:04:55] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[08:04:55] [PASSED] drm_test_check_broadcast_rgb_value
[08:04:55] [PASSED] drm_test_check_bpc_8_value
[08:04:55] [PASSED] drm_test_check_bpc_10_value
[08:04:55] [PASSED] drm_test_check_bpc_12_value
[08:04:55] [PASSED] drm_test_check_format_value
[08:04:55] [PASSED] drm_test_check_tmds_char_value
[08:04:55] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[08:04:55] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[08:04:55] [PASSED] drm_test_check_mode_valid
[08:04:55] [PASSED] drm_test_check_mode_valid_reject
[08:04:55] [PASSED] drm_test_check_mode_valid_reject_rate
[08:04:55] [PASSED] drm_test_check_mode_valid_reject_max_clock
[08:04:55] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[08:04:55] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[08:04:55] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[08:04:55] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[08:04:55] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[08:04:55] [PASSED] drm_test_check_infoframes
[08:04:55] [PASSED] drm_test_check_reject_avi_infoframe
[08:04:55] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[08:04:55] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[08:04:55] [PASSED] drm_test_check_reject_audio_infoframe
[08:04:55] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[08:04:55] ================= drm_managed (2 subtests) =================
[08:04:55] [PASSED] drm_test_managed_release_action
[08:04:55] [PASSED] drm_test_managed_run_action
[08:04:55] =================== [PASSED] drm_managed ===================
[08:04:55] =================== drm_mm (6 subtests) ====================
[08:04:55] [PASSED] drm_test_mm_init
[08:04:55] [PASSED] drm_test_mm_debug
[08:04:55] [PASSED] drm_test_mm_align32
[08:04:55] [PASSED] drm_test_mm_align64
[08:04:55] [PASSED] drm_test_mm_lowest
[08:04:55] [PASSED] drm_test_mm_highest
[08:04:55] ===================== [PASSED] drm_mm ======================
[08:04:55] ============= drm_modes_analog_tv (5 subtests) =============
[08:04:55] [PASSED] drm_test_modes_analog_tv_mono_576i
[08:04:55] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[08:04:55] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[08:04:55] [PASSED] drm_test_modes_analog_tv_pal_576i
[08:04:55] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[08:04:55] =============== [PASSED] drm_modes_analog_tv ===============
[08:04:55] ============== drm_plane_helper (2 subtests) ===============
[08:04:55] =============== drm_test_check_plane_state ================
[08:04:55] [PASSED] clipping_simple
[08:04:55] [PASSED] clipping_rotate_reflect
[08:04:55] [PASSED] positioning_simple
[08:04:55] [PASSED] upscaling
[08:04:55] [PASSED] downscaling
[08:04:55] [PASSED] rounding1
[08:04:55] [PASSED] rounding2
[08:04:55] [PASSED] rounding3
[08:04:55] [PASSED] rounding4
[08:04:55] =========== [PASSED] drm_test_check_plane_state ============
[08:04:55] =========== drm_test_check_invalid_plane_state ============
[08:04:55] [PASSED] positioning_invalid
[08:04:55] [PASSED] upscaling_invalid
[08:04:55] [PASSED] downscaling_invalid
[08:04:55] ======= [PASSED] drm_test_check_invalid_plane_state ========
[08:04:55] ================ [PASSED] drm_plane_helper =================
[08:04:55] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[08:04:55] ====== drm_test_connector_helper_tv_get_modes_check =======
[08:04:55] [PASSED] None
[08:04:55] [PASSED] PAL
[08:04:55] [PASSED] NTSC
[08:04:55] [PASSED] Both, NTSC Default
[08:04:55] [PASSED] Both, PAL Default
[08:04:55] [PASSED] Both, NTSC Default, with PAL on command-line
[08:04:55] [PASSED] Both, PAL Default, with NTSC on command-line
[08:04:55] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[08:04:55] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[08:04:55] ================== drm_rect (9 subtests) ===================
[08:04:55] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[08:04:55] [PASSED] drm_test_rect_clip_scaled_not_clipped
[08:04:55] [PASSED] drm_test_rect_clip_scaled_clipped
[08:04:55] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[08:04:55] ================= drm_test_rect_intersect =================
[08:04:55] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[08:04:55] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[08:04:55] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[08:04:55] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[08:04:55] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[08:04:55] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[08:04:55] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[08:04:55] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[08:04:55] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[08:04:55] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[08:04:55] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[08:04:55] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[08:04:55] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[08:04:55] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[08:04:55] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[08:04:55] ============= [PASSED] drm_test_rect_intersect =============
[08:04:55] ================ drm_test_rect_calc_hscale ================
[08:04:55] [PASSED] normal use
[08:04:55] [PASSED] out of max range
[08:04:55] [PASSED] out of min range
[08:04:55] [PASSED] zero dst
[08:04:55] [PASSED] negative src
[08:04:55] [PASSED] negative dst
[08:04:55] ============ [PASSED] drm_test_rect_calc_hscale ============
[08:04:55] ================ drm_test_rect_calc_vscale ================
[08:04:55] [PASSED] normal use
[08:04:55] [PASSED] out of max range
[08:04:55] [PASSED] out of min range
[08:04:55] [PASSED] zero dst
[08:04:55] [PASSED] negative src
[08:04:55] [PASSED] negative dst
[08:04:55] ============ [PASSED] drm_test_rect_calc_vscale ============
[08:04:55] ================== drm_test_rect_rotate ===================
[08:04:55] [PASSED] reflect-x
[08:04:55] [PASSED] reflect-y
[08:04:55] [PASSED] rotate-0
[08:04:55] [PASSED] rotate-90
[08:04:55] [PASSED] rotate-180
[08:04:55] [PASSED] rotate-270
[08:04:55] ============== [PASSED] drm_test_rect_rotate ===============
[08:04:55] ================ drm_test_rect_rotate_inv =================
[08:04:55] [PASSED] reflect-x
[08:04:55] [PASSED] reflect-y
[08:04:55] [PASSED] rotate-0
[08:04:55] [PASSED] rotate-90
[08:04:55] [PASSED] rotate-180
[08:04:55] [PASSED] rotate-270
[08:04:55] ============ [PASSED] drm_test_rect_rotate_inv =============
[08:04:55] ==================== [PASSED] drm_rect =====================
[08:04:55] ============ drm_sysfb_modeset_test (1 subtest) ============
[08:04:55] ============ drm_test_sysfb_build_fourcc_list =============
[08:04:55] [PASSED] no native formats
[08:04:55] [PASSED] XRGB8888 as native format
[08:04:55] [PASSED] remove duplicates
[08:04:55] [PASSED] convert alpha formats
[08:04:55] [PASSED] random formats
[08:04:55] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[08:04:55] ============= [PASSED] drm_sysfb_modeset_test ==============
[08:04:55] ================== drm_fixp (2 subtests) ===================
[08:04:55] [PASSED] drm_test_int2fixp
[08:04:55] [PASSED] drm_test_sm2fixp
[08:04:55] ==================== [PASSED] drm_fixp =====================
[08:04:55] ============================================================
[08:04:55] Testing complete. Ran 641 tests: passed: 641
[08:04:55] Elapsed time: 26.837s total, 1.864s configuring, 24.801s building, 0.151s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[08:04:55] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:04:57] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[08:05:07] Starting KUnit Kernel (1/1)...
[08:05:07] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:05:07] ============= refcount_interrupt (4 subtests) ==============
[08:05:07] [PASSED] test_single_irq_change
[08:05:07] [PASSED] test_nested_irq_change
[08:05:07] [PASSED] test_multiple_irq_change
[08:05:07] [PASSED] test_irq_save
[08:05:07] =============== [PASSED] refcount_interrupt ================
[08:05:07] ================= ttm_device (5 subtests) ==================
[08:05:07] [PASSED] ttm_device_init_basic
[08:05:07] [PASSED] ttm_device_init_multiple
[08:05:07] [PASSED] ttm_device_fini_basic
[08:05:07] [PASSED] ttm_device_init_no_vma_man
[08:05:07] ================== ttm_device_init_pools ==================
[08:05:07] [PASSED] No DMA allocations, no DMA32 required
[08:05:07] [PASSED] DMA allocations, DMA32 required
[08:05:07] [PASSED] No DMA allocations, DMA32 required
[08:05:07] [PASSED] DMA allocations, no DMA32 required
[08:05:07] ============== [PASSED] ttm_device_init_pools ==============
[08:05:07] =================== [PASSED] ttm_device ====================
[08:05:07] ================== ttm_pool (8 subtests) ===================
[08:05:07] ================== ttm_pool_alloc_basic ===================
[08:05:07] [PASSED] One page
[08:05:07] [PASSED] More than one page
[08:05:07] [PASSED] Above the allocation limit
[08:05:07] [PASSED] One page, with coherent DMA mappings enabled
[08:05:07] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[08:05:07] ============== [PASSED] ttm_pool_alloc_basic ===============
[08:05:07] ============== ttm_pool_alloc_basic_dma_addr ==============
[08:05:07] [PASSED] One page
[08:05:07] [PASSED] More than one page
[08:05:07] [PASSED] Above the allocation limit
[08:05:07] [PASSED] One page, with coherent DMA mappings enabled
[08:05:07] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[08:05:07] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[08:05:07] [PASSED] ttm_pool_alloc_order_caching_match
[08:05:07] [PASSED] ttm_pool_alloc_caching_mismatch
[08:05:07] [PASSED] ttm_pool_alloc_order_mismatch
[08:05:07] [PASSED] ttm_pool_free_dma_alloc
[08:05:07] [PASSED] ttm_pool_free_no_dma_alloc
[08:05:07] [PASSED] ttm_pool_fini_basic
[08:05:07] ==================== [PASSED] ttm_pool =====================
[08:05:07] ================ ttm_resource (8 subtests) =================
[08:05:07] ================= ttm_resource_init_basic =================
[08:05:07] [PASSED] Init resource in TTM_PL_SYSTEM
[08:05:07] [PASSED] Init resource in TTM_PL_VRAM
[08:05:07] [PASSED] Init resource in a private placement
[08:05:07] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[08:05:07] ============= [PASSED] ttm_resource_init_basic =============
[08:05:07] [PASSED] ttm_resource_init_pinned
[08:05:07] [PASSED] ttm_resource_fini_basic
[08:05:07] [PASSED] ttm_resource_manager_init_basic
[08:05:07] [PASSED] ttm_resource_manager_usage_basic
[08:05:07] [PASSED] ttm_resource_manager_set_used_basic
[08:05:07] [PASSED] ttm_sys_man_alloc_basic
[08:05:07] [PASSED] ttm_sys_man_free_basic
[08:05:07] ================== [PASSED] ttm_resource ===================
[08:05:07] =================== ttm_tt (15 subtests) ===================
[08:05:07] ==================== ttm_tt_init_basic ====================
[08:05:07] [PASSED] Page-aligned size
[08:05:07] [PASSED] Extra pages requested
[08:05:07] ================ [PASSED] ttm_tt_init_basic ================
[08:05:07] [PASSED] ttm_tt_init_misaligned
[08:05:07] [PASSED] ttm_tt_fini_basic
[08:05:07] [PASSED] ttm_tt_fini_sg
[08:05:07] [PASSED] ttm_tt_fini_shmem
[08:05:07] [PASSED] ttm_tt_create_basic
[08:05:07] [PASSED] ttm_tt_create_invalid_bo_type
[08:05:07] [PASSED] ttm_tt_create_ttm_exists
[08:05:07] [PASSED] ttm_tt_create_failed
[08:05:07] [PASSED] ttm_tt_destroy_basic
[08:05:07] [PASSED] ttm_tt_populate_null_ttm
[08:05:07] [PASSED] ttm_tt_populate_populated_ttm
[08:05:07] [PASSED] ttm_tt_unpopulate_basic
[08:05:07] [PASSED] ttm_tt_unpopulate_empty_ttm
[08:05:07] [PASSED] ttm_tt_swapin_basic
[08:05:07] ===================== [PASSED] ttm_tt ======================
[08:05:07] =================== ttm_bo (14 subtests) ===================
[08:05:07] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[08:05:07] [PASSED] Cannot be interrupted and sleeps
[08:05:07] [PASSED] Cannot be interrupted, locks straight away
[08:05:07] [PASSED] Can be interrupted, sleeps
[08:05:07] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[08:05:07] [PASSED] ttm_bo_reserve_locked_no_sleep
[08:05:07] [PASSED] ttm_bo_reserve_no_wait_ticket
[08:05:07] [PASSED] ttm_bo_reserve_double_resv
[08:05:07] [PASSED] ttm_bo_reserve_interrupted
[08:05:07] [PASSED] ttm_bo_reserve_deadlock
[08:05:07] [PASSED] ttm_bo_unreserve_basic
[08:05:07] [PASSED] ttm_bo_unreserve_pinned
[08:05:07] [PASSED] ttm_bo_unreserve_bulk
[08:05:07] [PASSED] ttm_bo_fini_basic
[08:05:07] [PASSED] ttm_bo_fini_shared_resv
[08:05:07] [PASSED] ttm_bo_pin_basic
[08:05:07] [PASSED] ttm_bo_pin_unpin_resource
[08:05:07] [PASSED] ttm_bo_multiple_pin_one_unpin
[08:05:07] ===================== [PASSED] ttm_bo ======================
[08:05:07] ============== ttm_bo_validate (22 subtests) ===============
[08:05:07] ============== ttm_bo_init_reserved_sys_man ===============
[08:05:07] [PASSED] Buffer object for userspace
[08:05:07] [PASSED] Kernel buffer object
[08:05:07] [PASSED] Shared buffer object
[08:05:07] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[08:05:07] ============== ttm_bo_init_reserved_mock_man ==============
[08:05:07] [PASSED] Buffer object for userspace
[08:05:07] [PASSED] Kernel buffer object
[08:05:07] [PASSED] Shared buffer object
[08:05:07] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[08:05:07] [PASSED] ttm_bo_init_reserved_resv
[08:05:07] ================== ttm_bo_validate_basic ==================
[08:05:07] [PASSED] Buffer object for userspace
[08:05:07] [PASSED] Kernel buffer object
[08:05:07] [PASSED] Shared buffer object
[08:05:07] ============== [PASSED] ttm_bo_validate_basic ==============
[08:05:07] [PASSED] ttm_bo_validate_invalid_placement
[08:05:07] ============= ttm_bo_validate_same_placement ==============
[08:05:07] [PASSED] System manager
[08:05:07] [PASSED] VRAM manager
[08:05:07] ========= [PASSED] ttm_bo_validate_same_placement ==========
[08:05:07] [PASSED] ttm_bo_validate_failed_alloc
[08:05:07] [PASSED] ttm_bo_validate_pinned
[08:05:07] [PASSED] ttm_bo_validate_busy_placement
[08:05:07] ================ ttm_bo_validate_multihop =================
[08:05:07] [PASSED] Buffer object for userspace
[08:05:07] [PASSED] Kernel buffer object
[08:05:07] [PASSED] Shared buffer object
[08:05:07] ============ [PASSED] ttm_bo_validate_multihop =============
[08:05:07] ========== ttm_bo_validate_no_placement_signaled ==========
[08:05:07] [PASSED] Buffer object in system domain, no page vector
[08:05:07] [PASSED] Buffer object in system domain with an existing page vector
[08:05:07] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[08:05:07] ======== ttm_bo_validate_no_placement_not_signaled ========
[08:05:07] [PASSED] Buffer object for userspace
[08:05:07] [PASSED] Kernel buffer object
[08:05:07] [PASSED] Shared buffer object
[08:05:07] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[08:05:07] [PASSED] ttm_bo_validate_move_fence_signaled
[08:05:07] ========= ttm_bo_validate_move_fence_not_signaled =========
[08:05:07] [PASSED] Waits for GPU
[08:05:07] [PASSED] Tries to lock straight away
[08:05:07] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[08:05:07] [PASSED] ttm_bo_validate_swapout
[08:05:07] [PASSED] ttm_bo_validate_happy_evict
[08:05:07] [PASSED] ttm_bo_validate_all_pinned_evict
[08:05:07] [PASSED] ttm_bo_validate_allowed_only_evict
[08:05:07] [PASSED] ttm_bo_validate_deleted_evict
[08:05:07] [PASSED] ttm_bo_validate_busy_domain_evict
[08:05:07] [PASSED] ttm_bo_validate_evict_gutting
[08:05:07] [PASSED] ttm_bo_validate_recrusive_evict
[08:05:07] ================= [PASSED] ttm_bo_validate =================
[08:05:07] ============================================================
[08:05:07] Testing complete. Ran 106 tests: passed: 106
[08:05:07] Elapsed time: 12.264s total, 1.834s configuring, 10.216s building, 0.180s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/dma-buf/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/dma-buf/.kunitconfig
[08:05:07] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:05:09] 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
[08:05:18] Starting KUnit Kernel (1/1)...
[08:05:18] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:05:18] ============= refcount_interrupt (4 subtests) ==============
[08:05:18] [PASSED] test_single_irq_change
[08:05:18] [PASSED] test_nested_irq_change
[08:05:18] [PASSED] test_multiple_irq_change
[08:05:18] [PASSED] test_irq_save
[08:05:18] =============== [PASSED] refcount_interrupt ================
[08:05:18] =============== dma-buf-fence (12 subtests) ================
[08:05:18] [PASSED] test_sanitycheck
[08:05:18] [PASSED] test_signaling
[08:05:18] [PASSED] test_add_callback
[08:05:18] [PASSED] test_late_add_callback
[08:05:18] [PASSED] test_rm_callback
[08:05:18] [PASSED] test_late_rm_callback
[08:05:18] [PASSED] test_status
[08:05:18] [PASSED] test_error
[08:05:18] [PASSED] test_wait
[08:05:18] [PASSED] test_wait_timeout
[08:05:18] [PASSED] test_stub
[08:05:18] [SKIPPED] test_race_signal_callback (requires at least 2 CPUs)
[08:05:18] ================== [PASSED] dma-buf-fence ==================
[08:05:18] ============ dma-buf-fence-chain (11 subtests) =============
[08:05:18] [PASSED] test_sanitycheck
[08:05:18] [PASSED] test_find_seqno
[08:05:18] [PASSED] test_find_signaled
[08:05:18] [PASSED] test_find_out_of_order
[08:05:23] [PASSED] test_find_gap
[08:05:23] [PASSED] test_find_race
[08:05:23] [PASSED] test_signal_forward
[08:05:23] [PASSED] test_signal_backward
[08:05:23] [PASSED] test_wait_forward
[08:05:23] [PASSED] test_wait_backward
[08:05:23] [PASSED] test_wait_random
[08:05:23] =============== [PASSED] dma-buf-fence-chain ===============
[08:05:23] ============ dma-buf-fence-unwrap (10 subtests) ============
[08:05:23] [PASSED] test_sanitycheck
[08:05:23] [PASSED] test_unwrap_array
[08:05:23] [PASSED] test_unwrap_chain
[08:05:23] [PASSED] test_unwrap_chain_array
[08:05:23] [PASSED] test_unwrap_merge
[08:05:23] [PASSED] test_unwrap_merge_duplicate
[08:05:23] [PASSED] test_unwrap_merge_seqno
[08:05:23] [PASSED] test_unwrap_merge_order
[08:05:23] [PASSED] test_unwrap_merge_complex
[08:05:23] [PASSED] test_unwrap_merge_complex_seqno
[08:05:23] ============== [PASSED] dma-buf-fence-unwrap ===============
[08:05:23] ================ dma-buf-resv (5 subtests) =================
[08:05:23] [PASSED] test_sanitycheck
[08:05:23] ===================== test_signaling ======================
[08:05:23] [PASSED] kernel
[08:05:23] [PASSED] write
[08:05:23] [PASSED] read
[08:05:23] [PASSED] bookkeep
[08:05:23] ================= [PASSED] test_signaling ==================
[08:05:23] ====================== test_for_each ======================
[08:05:23] [PASSED] kernel
[08:05:23] [PASSED] write
[08:05:23] [PASSED] read
[08:05:23] [PASSED] bookkeep
[08:05:23] ================== [PASSED] test_for_each ==================
[08:05:23] ================= test_for_each_unlocked ==================
[08:05:23] [PASSED] kernel
[08:05:23] [PASSED] write
[08:05:23] [PASSED] read
[08:05:23] [PASSED] bookkeep
[08:05:23] ============= [PASSED] test_for_each_unlocked ==============
[08:05:23] ===================== test_get_fences =====================
[08:05:23] [PASSED] kernel
[08:05:23] [PASSED] write
[08:05:23] [PASSED] read
[08:05:23] [PASSED] bookkeep
[08:05:23] ================= [PASSED] test_get_fences =================
[08:05:23] ================== [PASSED] dma-buf-resv ===================
[08:05:23] ============================================================
[08:05:23] Testing complete. Ran 54 tests: passed: 53, skipped: 1
[08:05:23] Elapsed time: 15.869s total, 1.821s configuring, 8.776s building, 5.263s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 21+ messages in thread
* ✓ CI.KUnit: success for drm/xe/sysctrl: Clean up error handling in (rev5)
2026-09-07 10:53 [PATCH v7 0/9] drm/xe/sysctrl: Clean up error handling in Mallesh Koujalagi
` (10 preceding siblings ...)
2026-09-08 8:05 ` Patchwork
@ 2026-09-08 10:30 ` Patchwork
2026-09-08 11:28 ` ✓ Xe.CI.BAT: " Patchwork
2026-09-08 14:15 ` ✓ Xe.CI.FULL: " Patchwork
13 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-09-08 10:30 UTC (permalink / raw)
To: Mallesh, Koujalagi; +Cc: intel-xe
== Series Details ==
Series: drm/xe/sysctrl: Clean up error handling in (rev5)
URL : https://patchwork.freedesktop.org/series/172513/
State : success
== Summary ==
+ trap cleanup EXIT
+ kunitconfigs=('/kernel/drivers/gpu/tests/.kunitconfig' '/kernel/drivers/gpu/drm/xe/.kunitconfig' '/kernel/drivers/gpu/drm/tests/.kunitconfig' '/kernel/drivers/gpu/drm/ttm/tests/.kunitconfig' '/kernel/drivers/dma-buf/.kunitconfig')
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/tests/.kunitconfig
[10:27:59] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:28:04] 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
[10:28:24] Starting KUnit Kernel (1/1)...
[10:28:24] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:28:24] ============= refcount_interrupt (4 subtests) ==============
[10:28:24] [PASSED] test_single_irq_change
[10:28:24] [PASSED] test_nested_irq_change
[10:28:24] [PASSED] test_multiple_irq_change
[10:28:24] [PASSED] test_irq_save
[10:28:24] =============== [PASSED] refcount_interrupt ================
[10:28:24] ================= gpu_buddy (14 subtests) ==================
[10:28:24] [PASSED] gpu_test_buddy_alloc_limit
[10:28:24] [PASSED] gpu_test_buddy_alloc_optimistic
[10:28:24] [PASSED] gpu_test_buddy_alloc_pessimistic
[10:28:24] [PASSED] gpu_test_buddy_alloc_pathological
[10:28:24] [PASSED] gpu_test_buddy_alloc_contiguous
[10:28:24] [PASSED] gpu_test_buddy_alloc_clear
[10:28:24] [PASSED] gpu_test_buddy_alloc_range
[10:28:24] [PASSED] gpu_test_buddy_alloc_range_bias
[10:28:25] [PASSED] gpu_test_buddy_fragmentation_performance
[10:28:26] [PASSED] gpu_test_buddy_dirty_tracker_performance
[10:28:26] [PASSED] gpu_test_buddy_alloc_exceeds_max_order
[10:28:26] [PASSED] gpu_test_buddy_offset_aligned_allocation
[10:28:26] [PASSED] gpu_test_buddy_subtree_offset_alignment_stress
[10:28:26] [PASSED] gpu_test_buddy_addr_to_block
[10:28:26] ==================== [PASSED] gpu_buddy ====================
[10:28:26] ============================================================
[10:28:26] Testing complete. Ran 18 tests: passed: 18
[10:28:26] Elapsed time: 26.581s total, 4.354s configuring, 20.260s building, 1.917s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/xe/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[10:28:26] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:28:28] 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
[10:29:02] Starting KUnit Kernel (1/1)...
[10:29:02] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:29:02] ============= refcount_interrupt (4 subtests) ==============
[10:29:02] [PASSED] test_single_irq_change
[10:29:02] [PASSED] test_nested_irq_change
[10:29:02] [PASSED] test_multiple_irq_change
[10:29:02] [PASSED] test_irq_save
[10:29:02] =============== [PASSED] refcount_interrupt ================
[10:29:02] ================== guc_buf (11 subtests) ===================
[10:29:02] [PASSED] test_smallest
[10:29:02] [PASSED] test_largest
[10:29:02] [PASSED] test_granular
[10:29:02] [PASSED] test_unique
[10:29:02] [PASSED] test_overlap
[10:29:02] [PASSED] test_reusable
[10:29:02] [PASSED] test_too_big
[10:29:02] [PASSED] test_flush
[10:29:02] [PASSED] test_lookup
[10:29:02] [PASSED] test_data
[10:29:02] [PASSED] test_class
[10:29:02] ===================== [PASSED] guc_buf =====================
[10:29:02] =================== guc_dbm (7 subtests) ===================
[10:29:02] [PASSED] test_empty
[10:29:02] [PASSED] test_default
[10:29:02] ======================== test_size ========================
[10:29:02] [PASSED] 4
[10:29:02] [PASSED] 8
[10:29:02] [PASSED] 32
[10:29:02] [PASSED] 256
[10:29:02] ==================== [PASSED] test_size ====================
[10:29:02] ======================= test_reuse ========================
[10:29:02] [PASSED] 4
[10:29:02] [PASSED] 8
[10:29:02] [PASSED] 32
[10:29:02] [PASSED] 256
[10:29:02] =================== [PASSED] test_reuse ====================
[10:29:02] =================== test_range_overlap ====================
[10:29:02] [PASSED] 4
[10:29:02] [PASSED] 8
[10:29:02] [PASSED] 32
[10:29:02] [PASSED] 256
[10:29:02] =============== [PASSED] test_range_overlap ================
[10:29:02] =================== test_range_compact ====================
[10:29:02] [PASSED] 4
[10:29:02] [PASSED] 8
[10:29:02] [PASSED] 32
[10:29:02] [PASSED] 256
[10:29:02] =============== [PASSED] test_range_compact ================
[10:29:02] ==================== test_range_spare =====================
[10:29:02] [PASSED] 4
[10:29:02] [PASSED] 8
[10:29:02] [PASSED] 32
[10:29:02] [PASSED] 256
[10:29:02] ================ [PASSED] test_range_spare =================
[10:29:02] ===================== [PASSED] guc_dbm =====================
[10:29:02] =================== guc_idm (6 subtests) ===================
[10:29:02] [PASSED] bad_init
[10:29:02] [PASSED] no_init
[10:29:02] [PASSED] init_fini
[10:29:02] [PASSED] check_used
[10:29:02] [PASSED] check_quota
[10:29:02] [PASSED] check_all
[10:29:02] ===================== [PASSED] guc_idm =====================
[10:29:02] =============== guc_klv_helpers (9 subtests) ===============
[10:29:02] [PASSED] test_count
[10:29:02] [PASSED] test_encode_u32
[10:29:02] [PASSED] test_encode_u64
[10:29:02] [PASSED] test_encode_string
[10:29:02] [PASSED] test_encode_object_raw
[10:29:02] [PASSED] test_encode_object_klv
[10:29:02] [PASSED] test_encode_object_nested
[10:29:02] [PASSED] test_encode_object_basic
[10:29:02] [PASSED] test_print
[10:29:02] ================= [PASSED] guc_klv_helpers =================
[10:29:02] =================== xe_log (4 subtests) ====================
[10:29:02] [PASSED] demo_cper
[10:29:02] [PASSED] demo_dmesg
[10:29:02] ======================= test_dmesg ========================
[10:29:02] [PASSED] test_fatal
[10:29:02] [PASSED] test_fatal_tile
[10:29:02] [PASSED] test_fatal_gt
[10:29:02] [PASSED] test_fatal_comp
[10:29:02] [PASSED] test_fatal_comp_tile
[10:29:02] [PASSED] test_fatal_comp_gt
[10:29:02] [PASSED] test_fatal_all
[10:29:02] [PASSED] test_recoverable
[10:29:02] [PASSED] test_recoverable_tile
[10:29:02] [PASSED] test_recoverable_gt
[10:29:02] [PASSED] test_recoverable_comp
[10:29:02] [PASSED] test_recoverable_comp_tile
[10:29:02] [PASSED] test_recoverable_comp_gt
[10:29:02] [PASSED] test_recoverable_all
[10:29:02] [PASSED] test_info
[10:29:02] [PASSED] test_info_tile
[10:29:02] [PASSED] test_info_gt
[10:29:02] [PASSED] test_info_err
[10:29:02] [PASSED] test_info_comp
[10:29:02] [PASSED] test_info_comp_tile
[10:29:02] [PASSED] test_info_comp_gt
[10:29:02] [PASSED] test_info_all
[10:29:02] [PASSED] test_hw_fatal
[10:29:02] [PASSED] test_hw_recoverable
[10:29:02] [PASSED] test_hw_corrected
[10:29:02] [PASSED] test_hw_informational
[10:29:02] =================== [PASSED] test_dmesg ====================
[10:29:02] ====================== test_invalid =======================
[10:29:02] [SKIPPED] no-component no-location no-warn (requires CONFIG_DRM_XE_DEBUG)
[10:29:02] [SKIPPED] reserved location (requires CONFIG_DRM_XE_DEBUG)
[10:29:02] [SKIPPED] unknown location (requires CONFIG_DRM_XE_DEBUG)
[10:29:02] [SKIPPED] nonzero-device-id location (requires CONFIG_DRM_XE_DEBUG)
[10:29:02] [SKIPPED] invalid-tile-id location (requires CONFIG_DRM_XE_DEBUG)
[10:29:02] [SKIPPED] invalid-gt-id location (requires CONFIG_DRM_XE_DEBUG)
[10:29:02] [SKIPPED] unknown component class (requires CONFIG_DRM_XE_DEBUG)
[10:29:02] [SKIPPED] unknown system component (requires CONFIG_DRM_XE_DEBUG)
[10:29:02] [SKIPPED] unknown hardware component (requires CONFIG_DRM_XE_DEBUG)
[10:29:02] [SKIPPED] unknown component and location (requires CONFIG_DRM_XE_DEBUG)
[10:29:02] ================== [SKIPPED] test_invalid ==================
[10:29:02] ===================== [PASSED] xe_log ======================
[10:29:02] ================== no_relay (3 subtests) ===================
[10:29:02] [PASSED] xe_drops_guc2pf_if_not_ready
[10:29:02] [PASSED] xe_drops_guc2vf_if_not_ready
[10:29:02] [PASSED] xe_rejects_send_if_not_ready
[10:29:02] ==================== [PASSED] no_relay =====================
[10:29:02] ================== pf_relay (14 subtests) ==================
[10:29:02] [PASSED] pf_rejects_guc2pf_too_short
[10:29:02] [PASSED] pf_rejects_guc2pf_too_long
[10:29:02] [PASSED] pf_rejects_guc2pf_no_payload
[10:29:02] [PASSED] pf_fails_no_payload
[10:29:02] [PASSED] pf_fails_bad_origin
[10:29:02] [PASSED] pf_fails_bad_type
[10:29:02] [PASSED] pf_txn_reports_error
[10:29:02] [PASSED] pf_txn_sends_pf2guc
[10:29:02] [PASSED] pf_sends_pf2guc
[10:29:02] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[10:29:02] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[10:29:02] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[10:29:02] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[10:29:02] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[10:29:02] ==================== [PASSED] pf_relay =====================
[10:29:02] ================== vf_relay (3 subtests) ===================
[10:29:02] [PASSED] vf_rejects_guc2vf_too_short
[10:29:02] [PASSED] vf_rejects_guc2vf_too_long
[10:29:02] [PASSED] vf_rejects_guc2vf_no_payload
[10:29:02] ==================== [PASSED] vf_relay =====================
[10:29:02] ================ pf_gt_config (9 subtests) =================
[10:29:02] [PASSED] fair_contexts_1vf
[10:29:02] [PASSED] fair_doorbells_1vf
[10:29:02] [PASSED] fair_ggtt_1vf
[10:29:02] ====================== fair_vram_1vf ======================
[10:29:02] [PASSED] 3.50 GiB
[10:29:02] [PASSED] 11.5 GiB
[10:29:02] [PASSED] 15.5 GiB
[10:29:02] [PASSED] 31.5 GiB
[10:29:02] [PASSED] 63.5 GiB
[10:29:02] [PASSED] 1.91 GiB
[10:29:02] ================== [PASSED] fair_vram_1vf ==================
[10:29:02] ================ fair_vram_1vf_admin_only =================
[10:29:02] [PASSED] 3.50 GiB
[10:29:02] [PASSED] 11.5 GiB
[10:29:02] [PASSED] 15.5 GiB
[10:29:02] [PASSED] 31.5 GiB
[10:29:02] [PASSED] 63.5 GiB
[10:29:02] [PASSED] 1.91 GiB
[10:29:02] ============ [PASSED] fair_vram_1vf_admin_only =============
[10:29:02] ====================== fair_contexts ======================
[10:29:02] [PASSED] 1 VF
[10:29:02] [PASSED] 2 VFs
[10:29:02] [PASSED] 3 VFs
[10:29:02] [PASSED] 4 VFs
[10:29:02] [PASSED] 5 VFs
[10:29:02] [PASSED] 6 VFs
[10:29:02] [PASSED] 7 VFs
[10:29:02] [PASSED] 8 VFs
[10:29:02] [PASSED] 9 VFs
[10:29:02] [PASSED] 10 VFs
[10:29:02] [PASSED] 11 VFs
[10:29:02] [PASSED] 12 VFs
[10:29:02] [PASSED] 13 VFs
[10:29:02] [PASSED] 14 VFs
[10:29:02] [PASSED] 15 VFs
[10:29:02] [PASSED] 16 VFs
[10:29:02] [PASSED] 17 VFs
[10:29:02] [PASSED] 18 VFs
[10:29:02] [PASSED] 19 VFs
[10:29:02] [PASSED] 20 VFs
[10:29:02] [PASSED] 21 VFs
[10:29:02] [PASSED] 22 VFs
[10:29:02] [PASSED] 23 VFs
[10:29:02] [PASSED] 24 VFs
[10:29:02] [PASSED] 25 VFs
[10:29:02] [PASSED] 26 VFs
[10:29:02] [PASSED] 27 VFs
[10:29:02] [PASSED] 28 VFs
[10:29:02] [PASSED] 29 VFs
[10:29:02] [PASSED] 30 VFs
[10:29:02] [PASSED] 31 VFs
[10:29:02] [PASSED] 32 VFs
[10:29:02] [PASSED] 33 VFs
[10:29:02] [PASSED] 34 VFs
[10:29:02] [PASSED] 35 VFs
[10:29:02] [PASSED] 36 VFs
[10:29:02] [PASSED] 37 VFs
[10:29:02] [PASSED] 38 VFs
[10:29:02] [PASSED] 39 VFs
[10:29:02] [PASSED] 40 VFs
[10:29:02] [PASSED] 41 VFs
[10:29:02] [PASSED] 42 VFs
[10:29:02] [PASSED] 43 VFs
[10:29:02] [PASSED] 44 VFs
[10:29:02] [PASSED] 45 VFs
[10:29:02] [PASSED] 46 VFs
[10:29:02] [PASSED] 47 VFs
[10:29:02] [PASSED] 48 VFs
[10:29:02] [PASSED] 49 VFs
[10:29:02] [PASSED] 50 VFs
[10:29:02] [PASSED] 51 VFs
[10:29:02] [PASSED] 52 VFs
[10:29:02] [PASSED] 53 VFs
[10:29:02] [PASSED] 54 VFs
[10:29:02] [PASSED] 55 VFs
[10:29:02] [PASSED] 56 VFs
[10:29:02] [PASSED] 57 VFs
[10:29:02] [PASSED] 58 VFs
[10:29:02] [PASSED] 59 VFs
[10:29:02] [PASSED] 60 VFs
[10:29:02] [PASSED] 61 VFs
[10:29:02] [PASSED] 62 VFs
[10:29:02] [PASSED] 63 VFs
[10:29:02] ================== [PASSED] fair_contexts ==================
[10:29:02] ===================== fair_doorbells ======================
[10:29:02] [PASSED] 1 VF
[10:29:02] [PASSED] 2 VFs
[10:29:02] [PASSED] 3 VFs
[10:29:02] [PASSED] 4 VFs
[10:29:02] [PASSED] 5 VFs
[10:29:02] [PASSED] 6 VFs
[10:29:02] [PASSED] 7 VFs
[10:29:02] [PASSED] 8 VFs
[10:29:02] [PASSED] 9 VFs
[10:29:02] [PASSED] 10 VFs
[10:29:02] [PASSED] 11 VFs
[10:29:02] [PASSED] 12 VFs
[10:29:02] [PASSED] 13 VFs
[10:29:02] [PASSED] 14 VFs
[10:29:02] [PASSED] 15 VFs
[10:29:02] [PASSED] 16 VFs
[10:29:02] [PASSED] 17 VFs
[10:29:02] [PASSED] 18 VFs
[10:29:02] [PASSED] 19 VFs
[10:29:02] [PASSED] 20 VFs
[10:29:02] [PASSED] 21 VFs
[10:29:02] [PASSED] 22 VFs
[10:29:02] [PASSED] 23 VFs
[10:29:02] [PASSED] 24 VFs
[10:29:02] [PASSED] 25 VFs
[10:29:02] [PASSED] 26 VFs
[10:29:02] [PASSED] 27 VFs
[10:29:02] [PASSED] 28 VFs
[10:29:02] [PASSED] 29 VFs
[10:29:02] [PASSED] 30 VFs
[10:29:02] [PASSED] 31 VFs
[10:29:02] [PASSED] 32 VFs
[10:29:02] [PASSED] 33 VFs
[10:29:02] [PASSED] 34 VFs
[10:29:02] [PASSED] 35 VFs
[10:29:02] [PASSED] 36 VFs
[10:29:02] [PASSED] 37 VFs
[10:29:02] [PASSED] 38 VFs
[10:29:02] [PASSED] 39 VFs
[10:29:02] [PASSED] 40 VFs
[10:29:02] [PASSED] 41 VFs
[10:29:02] [PASSED] 42 VFs
[10:29:02] [PASSED] 43 VFs
[10:29:02] [PASSED] 44 VFs
[10:29:02] [PASSED] 45 VFs
[10:29:02] [PASSED] 46 VFs
[10:29:02] [PASSED] 47 VFs
[10:29:02] [PASSED] 48 VFs
[10:29:02] [PASSED] 49 VFs
[10:29:02] [PASSED] 50 VFs
[10:29:02] [PASSED] 51 VFs
[10:29:02] [PASSED] 52 VFs
[10:29:02] [PASSED] 53 VFs
[10:29:02] [PASSED] 54 VFs
[10:29:02] [PASSED] 55 VFs
[10:29:02] [PASSED] 56 VFs
[10:29:02] [PASSED] 57 VFs
[10:29:02] [PASSED] 58 VFs
[10:29:02] [PASSED] 59 VFs
[10:29:02] [PASSED] 60 VFs
[10:29:02] [PASSED] 61 VFs
[10:29:02] [PASSED] 62 VFs
[10:29:02] [PASSED] 63 VFs
[10:29:02] ================= [PASSED] fair_doorbells ==================
[10:29:02] ======================== fair_ggtt ========================
[10:29:02] [PASSED] 1 VF
[10:29:02] [PASSED] 2 VFs
[10:29:02] [PASSED] 3 VFs
[10:29:02] [PASSED] 4 VFs
[10:29:02] [PASSED] 5 VFs
[10:29:02] [PASSED] 6 VFs
[10:29:02] [PASSED] 7 VFs
[10:29:02] [PASSED] 8 VFs
[10:29:02] [PASSED] 9 VFs
[10:29:02] [PASSED] 10 VFs
[10:29:02] [PASSED] 11 VFs
[10:29:02] [PASSED] 12 VFs
[10:29:02] [PASSED] 13 VFs
[10:29:02] [PASSED] 14 VFs
[10:29:02] [PASSED] 15 VFs
[10:29:02] [PASSED] 16 VFs
[10:29:02] [PASSED] 17 VFs
[10:29:02] [PASSED] 18 VFs
[10:29:02] [PASSED] 19 VFs
[10:29:02] [PASSED] 20 VFs
[10:29:02] [PASSED] 21 VFs
[10:29:02] [PASSED] 22 VFs
[10:29:02] [PASSED] 23 VFs
[10:29:02] [PASSED] 24 VFs
[10:29:02] [PASSED] 25 VFs
[10:29:02] [PASSED] 26 VFs
[10:29:02] [PASSED] 27 VFs
[10:29:02] [PASSED] 28 VFs
[10:29:02] [PASSED] 29 VFs
[10:29:02] [PASSED] 30 VFs
[10:29:02] [PASSED] 31 VFs
[10:29:02] [PASSED] 32 VFs
[10:29:02] [PASSED] 33 VFs
[10:29:02] [PASSED] 34 VFs
[10:29:02] [PASSED] 35 VFs
[10:29:02] [PASSED] 36 VFs
[10:29:02] [PASSED] 37 VFs
[10:29:02] [PASSED] 38 VFs
[10:29:02] [PASSED] 39 VFs
[10:29:02] [PASSED] 40 VFs
[10:29:02] [PASSED] 41 VFs
[10:29:02] [PASSED] 42 VFs
[10:29:02] [PASSED] 43 VFs
[10:29:02] [PASSED] 44 VFs
[10:29:02] [PASSED] 45 VFs
[10:29:02] [PASSED] 46 VFs
[10:29:02] [PASSED] 47 VFs
[10:29:02] [PASSED] 48 VFs
[10:29:02] [PASSED] 49 VFs
[10:29:02] [PASSED] 50 VFs
[10:29:02] [PASSED] 51 VFs
[10:29:02] [PASSED] 52 VFs
[10:29:02] [PASSED] 53 VFs
[10:29:02] [PASSED] 54 VFs
[10:29:02] [PASSED] 55 VFs
[10:29:02] [PASSED] 56 VFs
[10:29:02] [PASSED] 57 VFs
[10:29:02] [PASSED] 58 VFs
[10:29:02] [PASSED] 59 VFs
[10:29:02] [PASSED] 60 VFs
[10:29:02] [PASSED] 61 VFs
[10:29:02] [PASSED] 62 VFs
[10:29:02] [PASSED] 63 VFs
[10:29:02] ==================== [PASSED] fair_ggtt ====================
[10:29:02] ======================== fair_vram ========================
[10:29:02] [PASSED] 1 VF
[10:29:02] [PASSED] 2 VFs
[10:29:02] [PASSED] 3 VFs
[10:29:02] [PASSED] 4 VFs
[10:29:02] [PASSED] 5 VFs
[10:29:02] [PASSED] 6 VFs
[10:29:02] [PASSED] 7 VFs
[10:29:02] [PASSED] 8 VFs
[10:29:02] [PASSED] 9 VFs
[10:29:02] [PASSED] 10 VFs
[10:29:02] [PASSED] 11 VFs
[10:29:02] [PASSED] 12 VFs
[10:29:02] [PASSED] 13 VFs
[10:29:02] [PASSED] 14 VFs
[10:29:02] [PASSED] 15 VFs
[10:29:02] [PASSED] 16 VFs
[10:29:02] [PASSED] 17 VFs
[10:29:02] [PASSED] 18 VFs
[10:29:02] [PASSED] 19 VFs
[10:29:02] [PASSED] 20 VFs
[10:29:02] [PASSED] 21 VFs
[10:29:02] [PASSED] 22 VFs
[10:29:02] [PASSED] 23 VFs
[10:29:02] [PASSED] 24 VFs
[10:29:02] [PASSED] 25 VFs
[10:29:02] [PASSED] 26 VFs
[10:29:02] [PASSED] 27 VFs
[10:29:02] [PASSED] 28 VFs
[10:29:02] [PASSED] 29 VFs
[10:29:02] [PASSED] 30 VFs
[10:29:02] [PASSED] 31 VFs
[10:29:02] [PASSED] 32 VFs
[10:29:02] [PASSED] 33 VFs
[10:29:02] [PASSED] 34 VFs
[10:29:02] [PASSED] 35 VFs
[10:29:02] [PASSED] 36 VFs
[10:29:02] [PASSED] 37 VFs
[10:29:02] [PASSED] 38 VFs
[10:29:02] [PASSED] 39 VFs
[10:29:02] [PASSED] 40 VFs
[10:29:02] [PASSED] 41 VFs
[10:29:02] [PASSED] 42 VFs
[10:29:02] [PASSED] 43 VFs
[10:29:02] [PASSED] 44 VFs
[10:29:02] [PASSED] 45 VFs
[10:29:02] [PASSED] 46 VFs
[10:29:02] [PASSED] 47 VFs
[10:29:02] [PASSED] 48 VFs
[10:29:02] [PASSED] 49 VFs
[10:29:02] [PASSED] 50 VFs
[10:29:02] [PASSED] 51 VFs
[10:29:02] [PASSED] 52 VFs
[10:29:02] [PASSED] 53 VFs
[10:29:02] [PASSED] 54 VFs
[10:29:02] [PASSED] 55 VFs
[10:29:02] [PASSED] 56 VFs
[10:29:02] [PASSED] 57 VFs
[10:29:02] [PASSED] 58 VFs
[10:29:02] [PASSED] 59 VFs
[10:29:02] [PASSED] 60 VFs
[10:29:02] [PASSED] 61 VFs
[10:29:02] [PASSED] 62 VFs
[10:29:02] [PASSED] 63 VFs
[10:29:02] ==================== [PASSED] fair_vram ====================
[10:29:02] ================== [PASSED] pf_gt_config ===================
[10:29:02] ===================== lmtt (1 subtest) =====================
[10:29:02] ======================== test_ops =========================
[10:29:02] [PASSED] 2-level
[10:29:02] [PASSED] multi-level
[10:29:02] ==================== [PASSED] test_ops =====================
[10:29:02] ====================== [PASSED] lmtt =======================
[10:29:02] ================= sriov_packet (1 subtest) =================
[10:29:02] [PASSED] test_descriptor_init
[10:29:02] ================== [PASSED] sriov_packet ===================
[10:29:02] ================= pf_service (11 subtests) =================
[10:29:02] [PASSED] pf_negotiate_any
[10:29:02] [PASSED] pf_negotiate_base_match
[10:29:02] [PASSED] pf_negotiate_base_newer
[10:29:02] [PASSED] pf_negotiate_base_next
[10:29:02] [SKIPPED] pf_negotiate_base_older (no older minor)
[10:29:02] [PASSED] pf_negotiate_base_prev
[10:29:02] [PASSED] pf_negotiate_latest_match
[10:29:02] [PASSED] pf_negotiate_latest_newer
[10:29:02] [PASSED] pf_negotiate_latest_next
[10:29:02] [SKIPPED] pf_negotiate_latest_older (no older minor)
[10:29:02] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[10:29:02] =================== [PASSED] pf_service ====================
[10:29:02] ================= xe_guc_g2g (2 subtests) ==================
[10:29:02] ============== xe_live_guc_g2g_kunit_default ==============
[10:29:02] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[10:29:02] ============== xe_live_guc_g2g_kunit_allmem ===============
[10:29:02] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[10:29:02] =================== [SKIPPED] xe_guc_g2g ===================
[10:29:02] =================== xe_mocs (2 subtests) ===================
[10:29:02] ================ xe_live_mocs_kernel_kunit ================
[10:29:02] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[10:29:02] ================ xe_live_mocs_reset_kunit =================
[10:29:02] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[10:29:02] ==================== [SKIPPED] xe_mocs =====================
[10:29:02] ================= xe_migrate (2 subtests) ==================
[10:29:02] ================= xe_migrate_sanity_kunit =================
[10:29:02] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[10:29:02] ================== xe_validate_ccs_kunit ==================
[10:29:02] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[10:29:02] =================== [SKIPPED] xe_migrate ===================
[10:29:02] ================== xe_dma_buf (1 subtest) ==================
[10:29:02] ==================== xe_dma_buf_kunit =====================
[10:29:02] ================ [SKIPPED] xe_dma_buf_kunit ================
[10:29:02] =================== [SKIPPED] xe_dma_buf ===================
[10:29:02] ================= xe_bo_shrink (1 subtest) =================
[10:29:02] =================== xe_bo_shrink_kunit ====================
[10:29:02] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[10:29:02] ================== [SKIPPED] xe_bo_shrink ==================
[10:29:02] ==================== xe_bo (2 subtests) ====================
[10:29:02] ================== xe_ccs_migrate_kunit ===================
[10:29:02] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[10:29:02] ==================== xe_bo_evict_kunit ====================
[10:29:02] =============== [SKIPPED] xe_bo_evict_kunit ================
[10:29:02] ===================== [SKIPPED] xe_bo ======================
[10:29:02] =================== xe_any (9 subtests) ====================
[10:29:02] [PASSED] test_to_xe
[10:29:02] [PASSED] test_to_dev
[10:29:02] [PASSED] test_to_pdev
[10:29:02] [PASSED] test_to_drm
[10:29:02] [PASSED] test_if_pdev
[10:29:02] [PASSED] test_if_xe
[10:29:02] [PASSED] test_if_tile
[10:29:02] [PASSED] test_if_gt
[10:29:02] [PASSED] test_to_id
[10:29:02] ===================== [PASSED] xe_any ======================
[10:29:02] ==================== args (13 subtests) ====================
[10:29:02] [PASSED] count_args_test
[10:29:02] [PASSED] call_args_example
[10:29:02] [PASSED] call_args_test
[10:29:02] [PASSED] drop_first_arg_example
[10:29:02] [PASSED] drop_first_arg_test
[10:29:02] [PASSED] first_arg_example
[10:29:02] [PASSED] first_arg_test
[10:29:02] [PASSED] last_arg_example
[10:29:02] [PASSED] last_arg_test
[10:29:02] [PASSED] pick_arg_example
[10:29:02] [PASSED] if_args_example
[10:29:02] [PASSED] if_args_test
[10:29:02] [PASSED] sep_comma_example
[10:29:02] ====================== [PASSED] args =======================
[10:29:02] =================== xe_pci (3 subtests) ====================
[10:29:02] ==================== check_graphics_ip ====================
[10:29:02] [PASSED] 12.00 Xe_LP
[10:29:02] [PASSED] 12.10 Xe_LP+
[10:29:02] [PASSED] 12.55 Xe_HPG
[10:29:02] [PASSED] 12.60 Xe_HPC
[10:29:02] [PASSED] 12.70 Xe_LPG
[10:29:02] [PASSED] 12.71 Xe_LPG
[10:29:02] [PASSED] 12.74 Xe_LPG+
[10:29:02] [PASSED] 20.01 Xe2_HPG
[10:29:02] [PASSED] 20.02 Xe2_HPG
[10:29:02] [PASSED] 20.04 Xe2_LPG
[10:29:02] [PASSED] 30.00 Xe3_LPG
[10:29:02] [PASSED] 30.01 Xe3_LPG
[10:29:02] [PASSED] 30.03 Xe3_LPG
[10:29:02] [PASSED] 30.04 Xe3_LPG
[10:29:02] [PASSED] 30.05 Xe3_LPG
[10:29:02] [PASSED] 35.10 Xe3p_LPG
[10:29:02] [PASSED] 35.11 Xe3p_XPC
[10:29:02] ================ [PASSED] check_graphics_ip ================
[10:29:02] ===================== check_media_ip ======================
[10:29:02] [PASSED] 12.00 Xe_M
[10:29:02] [PASSED] 12.55 Xe_HPM
[10:29:02] [PASSED] 13.00 Xe_LPM+
[10:29:02] [PASSED] 13.01 Xe2_HPM
[10:29:02] [PASSED] 20.00 Xe2_LPM
[10:29:02] [PASSED] 30.00 Xe3_LPM
[10:29:02] [PASSED] 30.02 Xe3_LPM
[10:29:02] [PASSED] 35.00 Xe3p_LPM
[10:29:02] [PASSED] 35.03 Xe3p_HPM
[10:29:02] ================= [PASSED] check_media_ip ==================
[10:29:02] =================== check_platform_desc ===================
[10:29:02] [PASSED] 0x9A60 (TIGERLAKE)
[10:29:02] [PASSED] 0x9A68 (TIGERLAKE)
[10:29:02] [PASSED] 0x9A70 (TIGERLAKE)
[10:29:02] [PASSED] 0x9A40 (TIGERLAKE)
[10:29:02] [PASSED] 0x9A49 (TIGERLAKE)
[10:29:02] [PASSED] 0x9A59 (TIGERLAKE)
[10:29:02] [PASSED] 0x9A78 (TIGERLAKE)
[10:29:02] [PASSED] 0x9AC0 (TIGERLAKE)
[10:29:02] [PASSED] 0x9AC9 (TIGERLAKE)
[10:29:02] [PASSED] 0x9AD9 (TIGERLAKE)
[10:29:02] [PASSED] 0x9AF8 (TIGERLAKE)
[10:29:02] [PASSED] 0x4C80 (ROCKETLAKE)
[10:29:02] [PASSED] 0x4C8A (ROCKETLAKE)
[10:29:02] [PASSED] 0x4C8B (ROCKETLAKE)
[10:29:02] [PASSED] 0x4C8C (ROCKETLAKE)
[10:29:02] [PASSED] 0x4C90 (ROCKETLAKE)
[10:29:02] [PASSED] 0x4C9A (ROCKETLAKE)
[10:29:02] [PASSED] 0x4680 (ALDERLAKE_S)
[10:29:02] [PASSED] 0x4682 (ALDERLAKE_S)
[10:29:02] [PASSED] 0x4688 (ALDERLAKE_S)
[10:29:02] [PASSED] 0x468A (ALDERLAKE_S)
[10:29:02] [PASSED] 0x468B (ALDERLAKE_S)
[10:29:02] [PASSED] 0x4690 (ALDERLAKE_S)
[10:29:02] [PASSED] 0x4692 (ALDERLAKE_S)
[10:29:02] [PASSED] 0x4693 (ALDERLAKE_S)
[10:29:02] [PASSED] 0x46A0 (ALDERLAKE_P)
[10:29:02] [PASSED] 0x46A1 (ALDERLAKE_P)
[10:29:02] [PASSED] 0x46A2 (ALDERLAKE_P)
[10:29:02] [PASSED] 0x46A3 (ALDERLAKE_P)
[10:29:02] [PASSED] 0x46A6 (ALDERLAKE_P)
[10:29:02] [PASSED] 0x46A8 (ALDERLAKE_P)
[10:29:02] [PASSED] 0x46AA (ALDERLAKE_P)
[10:29:02] [PASSED] 0x462A (ALDERLAKE_P)
[10:29:02] [PASSED] 0x4626 (ALDERLAKE_P)
[10:29:02] [PASSED] 0x4628 (ALDERLAKE_P)
[10:29:02] [PASSED] 0x46B0 (ALDERLAKE_P)
[10:29:02] [PASSED] 0x46B1 (ALDERLAKE_P)
[10:29:02] [PASSED] 0x46B2 (ALDERLAKE_P)
[10:29:02] [PASSED] 0x46B3 (ALDERLAKE_P)
[10:29:02] [PASSED] 0x46C0 (ALDERLAKE_P)
[10:29:02] [PASSED] 0x46C1 (ALDERLAKE_P)
[10:29:02] [PASSED] 0x46C2 (ALDERLAKE_P)
[10:29:02] [PASSED] 0x46C3 (ALDERLAKE_P)
[10:29:02] [PASSED] 0x46D0 (ALDERLAKE_N)
[10:29:02] [PASSED] 0x46D1 (ALDERLAKE_N)
[10:29:02] [PASSED] 0x46D2 (ALDERLAKE_N)
[10:29:02] [PASSED] 0x46D3 (ALDERLAKE_N)
[10:29:02] [PASSED] 0x46D4 (ALDERLAKE_N)
[10:29:02] [PASSED] 0xA721 (ALDERLAKE_P)
[10:29:02] [PASSED] 0xA7A1 (ALDERLAKE_P)
[10:29:02] [PASSED] 0xA7A9 (ALDERLAKE_P)
[10:29:02] [PASSED] 0xA7AC (ALDERLAKE_P)
[10:29:02] [PASSED] 0xA7AD (ALDERLAKE_P)
[10:29:02] [PASSED] 0xA720 (ALDERLAKE_P)
[10:29:02] [PASSED] 0xA7A0 (ALDERLAKE_P)
[10:29:02] [PASSED] 0xA7A8 (ALDERLAKE_P)
[10:29:02] [PASSED] 0xA7AA (ALDERLAKE_P)
[10:29:02] [PASSED] 0xA7AB (ALDERLAKE_P)
[10:29:02] [PASSED] 0xA780 (ALDERLAKE_S)
[10:29:02] [PASSED] 0xA781 (ALDERLAKE_S)
[10:29:02] [PASSED] 0xA782 (ALDERLAKE_S)
[10:29:02] [PASSED] 0xA783 (ALDERLAKE_S)
[10:29:02] [PASSED] 0xA788 (ALDERLAKE_S)
[10:29:02] [PASSED] 0xA789 (ALDERLAKE_S)
[10:29:02] [PASSED] 0xA78A (ALDERLAKE_S)
[10:29:02] [PASSED] 0xA78B (ALDERLAKE_S)
[10:29:02] [PASSED] 0x4905 (DG1)
[10:29:02] [PASSED] 0x4906 (DG1)
[10:29:02] [PASSED] 0x4907 (DG1)
[10:29:02] [PASSED] 0x4908 (DG1)
[10:29:02] [PASSED] 0x4909 (DG1)
[10:29:02] [PASSED] 0x56C0 (DG2)
[10:29:02] [PASSED] 0x56C2 (DG2)
[10:29:02] [PASSED] 0x56C1 (DG2)
[10:29:02] [PASSED] 0x7D51 (METEORLAKE)
[10:29:02] [PASSED] 0x7DD1 (METEORLAKE)
[10:29:02] [PASSED] 0x7D41 (METEORLAKE)
[10:29:02] [PASSED] 0x7D67 (METEORLAKE)
[10:29:02] [PASSED] 0xB640 (METEORLAKE)
[10:29:02] [PASSED] 0x56A0 (DG2)
[10:29:02] [PASSED] 0x56A1 (DG2)
[10:29:02] [PASSED] 0x56A2 (DG2)
[10:29:02] [PASSED] 0x56BE (DG2)
[10:29:02] [PASSED] 0x56BF (DG2)
[10:29:02] [PASSED] 0x5690 (DG2)
[10:29:02] [PASSED] 0x5691 (DG2)
[10:29:02] [PASSED] 0x5692 (DG2)
[10:29:02] [PASSED] 0x56A5 (DG2)
[10:29:02] [PASSED] 0x56A6 (DG2)
[10:29:02] [PASSED] 0x56B0 (DG2)
[10:29:02] [PASSED] 0x56B1 (DG2)
[10:29:02] [PASSED] 0x56BA (DG2)
[10:29:02] [PASSED] 0x56BB (DG2)
[10:29:02] [PASSED] 0x56BC (DG2)
[10:29:02] [PASSED] 0x56BD (DG2)
[10:29:02] [PASSED] 0x5693 (DG2)
[10:29:02] [PASSED] 0x5694 (DG2)
[10:29:02] [PASSED] 0x5695 (DG2)
[10:29:02] [PASSED] 0x56A3 (DG2)
[10:29:02] [PASSED] 0x56A4 (DG2)
[10:29:02] [PASSED] 0x56B2 (DG2)
[10:29:02] [PASSED] 0x56B3 (DG2)
[10:29:02] [PASSED] 0x5696 (DG2)
[10:29:02] [PASSED] 0x5697 (DG2)
[10:29:02] [PASSED] 0xB69 (PVC)
[10:29:02] [PASSED] 0xB6E (PVC)
[10:29:02] [PASSED] 0xBD4 (PVC)
[10:29:02] [PASSED] 0xBD5 (PVC)
[10:29:02] [PASSED] 0xBD6 (PVC)
[10:29:02] [PASSED] 0xBD7 (PVC)
[10:29:02] [PASSED] 0xBD8 (PVC)
[10:29:02] [PASSED] 0xBD9 (PVC)
[10:29:02] [PASSED] 0xBDA (PVC)
[10:29:02] [PASSED] 0xBDB (PVC)
[10:29:02] [PASSED] 0xBE0 (PVC)
[10:29:02] [PASSED] 0xBE1 (PVC)
[10:29:02] [PASSED] 0xBE5 (PVC)
[10:29:02] [PASSED] 0x7D40 (METEORLAKE)
[10:29:02] [PASSED] 0x7D45 (METEORLAKE)
[10:29:02] [PASSED] 0x7D55 (METEORLAKE)
[10:29:02] [PASSED] 0x7D60 (METEORLAKE)
[10:29:02] [PASSED] 0x7DD5 (METEORLAKE)
[10:29:02] [PASSED] 0x6420 (LUNARLAKE)
[10:29:02] [PASSED] 0x64A0 (LUNARLAKE)
[10:29:02] [PASSED] 0x64B0 (LUNARLAKE)
[10:29:02] [PASSED] 0xE202 (BATTLEMAGE)
[10:29:02] [PASSED] 0xE209 (BATTLEMAGE)
[10:29:02] [PASSED] 0xE20B (BATTLEMAGE)
[10:29:02] [PASSED] 0xE20C (BATTLEMAGE)
[10:29:02] [PASSED] 0xE20D (BATTLEMAGE)
[10:29:02] [PASSED] 0xE210 (BATTLEMAGE)
[10:29:02] [PASSED] 0xE211 (BATTLEMAGE)
[10:29:02] [PASSED] 0xE212 (BATTLEMAGE)
[10:29:02] [PASSED] 0xE216 (BATTLEMAGE)
[10:29:02] [PASSED] 0xE220 (BATTLEMAGE)
[10:29:02] [PASSED] 0xE221 (BATTLEMAGE)
[10:29:02] [PASSED] 0xE222 (BATTLEMAGE)
[10:29:02] [PASSED] 0xE223 (BATTLEMAGE)
[10:29:02] [PASSED] 0xB080 (PANTHERLAKE)
[10:29:02] [PASSED] 0xB081 (PANTHERLAKE)
[10:29:02] [PASSED] 0xB082 (PANTHERLAKE)
[10:29:02] [PASSED] 0xB083 (PANTHERLAKE)
[10:29:02] [PASSED] 0xB084 (PANTHERLAKE)
[10:29:02] [PASSED] 0xB085 (PANTHERLAKE)
[10:29:02] [PASSED] 0xB086 (PANTHERLAKE)
[10:29:02] [PASSED] 0xB087 (PANTHERLAKE)
[10:29:02] [PASSED] 0xB08F (PANTHERLAKE)
[10:29:02] [PASSED] 0xB090 (PANTHERLAKE)
[10:29:02] [PASSED] 0xB0A0 (PANTHERLAKE)
[10:29:02] [PASSED] 0xB0B0 (PANTHERLAKE)
[10:29:02] [PASSED] 0xFD80 (PANTHERLAKE)
[10:29:02] [PASSED] 0xFD81 (PANTHERLAKE)
[10:29:02] [PASSED] 0xD740 (NOVALAKE_S)
[10:29:02] [PASSED] 0xD741 (NOVALAKE_S)
[10:29:02] [PASSED] 0xD742 (NOVALAKE_S)
[10:29:02] [PASSED] 0xD743 (NOVALAKE_S)
[10:29:02] [PASSED] 0xD745 (NOVALAKE_S)
[10:29:02] [PASSED] 0xD74A (NOVALAKE_S)
[10:29:02] [PASSED] 0xD74B (NOVALAKE_S)
[10:29:02] [PASSED] 0x674C (CRESCENTISLAND)
[10:29:02] [PASSED] 0x674D (CRESCENTISLAND)
[10:29:02] [PASSED] 0x674E (CRESCENTISLAND)
[10:29:02] [PASSED] 0x674F (CRESCENTISLAND)
[10:29:02] [PASSED] 0x6750 (CRESCENTISLAND)
[10:29:02] [PASSED] 0xD750 (NOVALAKE_P)
[10:29:02] [PASSED] 0xD751 (NOVALAKE_P)
[10:29:02] [PASSED] 0xD752 (NOVALAKE_P)
[10:29:02] [PASSED] 0xD753 (NOVALAKE_P)
[10:29:02] [PASSED] 0xD754 (NOVALAKE_P)
[10:29:02] [PASSED] 0xD755 (NOVALAKE_P)
[10:29:02] [PASSED] 0xD756 (NOVALAKE_P)
[10:29:02] [PASSED] 0xD757 (NOVALAKE_P)
[10:29:02] [PASSED] 0xD75F (NOVALAKE_P)
[10:29:02] =============== [PASSED] check_platform_desc ===============
[10:29:02] ===================== [PASSED] xe_pci ======================
[10:29:02] ============= xe_rtp_tables_test (5 subtests) ==============
[10:29:02] ================== xe_rtp_table_gt_test ===================
[10:29:02] [PASSED] gt_was/14011060649
[10:29:02] [PASSED] gt_was/14011059788
[10:29:02] [PASSED] gt_was/14015795083
[10:29:02] [PASSED] gt_was/16021867713
[10:29:02] [PASSED] gt_was/14019449301
[10:29:02] [PASSED] gt_was/16028005424
[10:29:02] [PASSED] gt_was/14026578760
[10:29:02] [PASSED] gt_was/1409420604
[10:29:02] [PASSED] gt_was/1408615072
[10:29:02] [PASSED] gt_was/22010523718
[10:29:02] [PASSED] gt_was/14011006942
[10:29:02] [PASSED] gt_was/14014830051
[10:29:02] [PASSED] gt_was/18018781329
[10:29:02] [PASSED] gt_was/1509235366
[10:29:02] [PASSED] gt_was/18018781329
[10:29:02] [PASSED] gt_was/16016694945
[10:29:02] [PASSED] gt_was/14018575942
[10:29:02] [PASSED] gt_was/22016670082
[10:29:02] [PASSED] gt_was/22016670082
[10:29:02] [PASSED] gt_was/14017421178
[10:29:02] [PASSED] gt_was/16025250150
[10:29:02] [PASSED] gt_was/14021871409
[10:29:02] [PASSED] gt_was/16021865536
[10:29:02] [PASSED] gt_was/14021486841
[10:29:02] [PASSED] gt_was/14025160223
[10:29:02] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[10:29:02] [PASSED] gt_was/14025635424
[10:29:02] [PASSED] gt_was/16028005424
[10:29:02] ============== [PASSED] xe_rtp_table_gt_test ===============
[10:29:02] ================== xe_rtp_table_gt_test ===================
[10:29:02] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[10:29:02] [PASSED] gt_tunings/Tuning: 32B Access Enable
[10:29:02] [PASSED] gt_tunings/Tuning: L3 cache
[10:29:02] [PASSED] gt_tunings/Tuning: L3 cache - media
[10:29:02] [PASSED] gt_tunings/Tuning: Compression Overfetch
[10:29:02] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[10:29:02] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[10:29:02] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[10:29:02] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[10:29:02] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[10:29:02] [PASSED] gt_tunings/Tuning: Stateless compression control
[10:29:02] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[10:29:02] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[10:29:02] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[10:29:02] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[10:29:02] ============== [PASSED] xe_rtp_table_gt_test ===============
[10:29:02] ================== xe_rtp_table_oob_test ==================
[10:29:02] [PASSED] oob_was/1607983814
[10:29:02] [PASSED] oob_was/16010904313
[10:29:02] [PASSED] oob_was/18022495364
[10:29:02] [PASSED] oob_was/22012773006
[10:29:02] [PASSED] oob_was/14014475959
[10:29:02] [PASSED] oob_was/22011391025
[10:29:02] [PASSED] oob_was/22012727170
[10:29:02] [PASSED] oob_was/22012727685
[10:29:02] [PASSED] oob_was/22016596838
[10:29:02] [PASSED] oob_was/18020744125
[10:29:02] [PASSED] oob_was/1409600907
[10:29:02] [PASSED] oob_was/22014953428
[10:29:02] [PASSED] oob_was/16017236439
[10:29:02] [PASSED] oob_was/14019821291
[10:29:02] [PASSED] oob_was/14015076503
[10:29:02] [PASSED] oob_was/14018913170
[10:29:02] [PASSED] oob_was/14018094691
[10:29:02] [PASSED] oob_was/18024947630
[10:29:02] [PASSED] oob_was/16022287689
[10:29:02] [PASSED] oob_was/13011645652
[10:29:02] [PASSED] oob_was/14022293748
[10:29:02] [PASSED] oob_was/22019794406
[10:29:02] [PASSED] oob_was/22019338487
[10:29:02] [PASSED] oob_was/16023588340
[10:29:02] [PASSED] oob_was/14019789679
[10:29:02] [PASSED] oob_was/14022866841
[10:29:02] [PASSED] oob_was/16021333562
[10:29:02] [PASSED] oob_was/14016712196
[10:29:02] [PASSED] oob_was/14015568240
[10:29:02] [PASSED] oob_was/18013179988
[10:29:02] [PASSED] oob_was/1508761755
[10:29:02] [PASSED] oob_was/16023105232
[10:29:02] [PASSED] oob_was/16026508708
[10:29:02] [PASSED] oob_was/14020001231
[10:29:02] [PASSED] oob_was/16023683509
[10:29:02] [PASSED] oob_was/14025515070
[10:29:02] [PASSED] oob_was/15015404425_disable
[10:29:02] [PASSED] oob_was/16026007364
[10:29:02] [PASSED] oob_was/14020316580
[10:29:02] [PASSED] oob_was/14025883347
[10:29:02] [PASSED] oob_was/16029380221
[10:29:02] [PASSED] oob_was/22022079272
[10:29:02] [PASSED] oob_was/16029897822
[10:29:02] [PASSED] oob_was/14027054324
[10:29:02] ============== [PASSED] xe_rtp_table_oob_test ==============
[10:29:02] ================ xe_rtp_table_dev_oob_test ================
[10:29:02] [PASSED] device_oob_was/22010954014
[10:29:02] [PASSED] device_oob_was/15015404425
[10:29:02] [PASSED] device_oob_was/22019338487_display
[10:29:02] [PASSED] device_oob_was/14022085890
[10:29:02] [PASSED] device_oob_was/14026539277
[10:29:02] [PASSED] device_oob_was/14026633728
[10:29:02] [PASSED] device_oob_was/14026746987
[10:29:02] [PASSED] device_oob_was/14026779378
[10:29:02] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[10:29:02] ========== xe_rtp_table_missing_upper_bound_test ==========
[10:29:02] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[10:29:02] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[10:29:02] [PASSED] register_whitelist/1806527549
[10:29:02] [PASSED] register_whitelist/allow_read_ctx_timestamp
[10:29:02] [PASSED] register_whitelist/allow_read_queue_timestamp
[10:29:02] [PASSED] register_whitelist/16014440446
[10:29:02] [PASSED] register_whitelist/16017236439
[10:29:02] [PASSED] register_whitelist/16020183090
[10:29:02] [PASSED] register_whitelist/14024997852
[10:29:02] [PASSED] register_whitelist/14024997852
[10:29:02] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[10:29:02] =============== [PASSED] xe_rtp_tables_test ================
[10:29:02] =================== xe_rtp (3 subtests) ====================
[10:29:02] =================== xe_rtp_rules_tests ====================
[10:29:02] [PASSED] no
[10:29:02] [PASSED] yes
[10:29:02] [PASSED] no-and-no
[10:29:02] [PASSED] no-and-yes
[10:29:02] [PASSED] yes-and-no
[10:29:02] [PASSED] yes-and-yes
[10:29:02] [PASSED] no-or-no
[10:29:02] [PASSED] no-or-yes
[10:29:02] [PASSED] yes-or-no
[10:29:02] [PASSED] yes-or-yes
[10:29:02] [PASSED] no-yes-or-yes-no
[10:29:02] [PASSED] no-yes-or-yes-yes
[10:29:02] [PASSED] yes-yes-or-no-yes
[10:29:02] [PASSED] yes-yes-or-yes-yes
[10:29:02] [PASSED] no-no-or-yes-or-no
[10:29:02] [PASSED] or
[10:29:02] [PASSED] or-yes
[10:29:02] [PASSED] or-no
[10:29:02] [PASSED] yes-or
[10:29:02] [PASSED] no-or
[10:29:02] [PASSED] no-or-or-yes
[10:29:02] [PASSED] yes-or-or-no
[10:29:02] [PASSED] no-or-or-no
[10:29:02] [PASSED] missing-context-engine-class
[10:29:02] [PASSED] missing-context-engine-class-or-yes
[10:29:02] [PASSED] missing-context-engine-class-or-or-yes
[10:29:02] =============== [PASSED] xe_rtp_rules_tests ================
[10:29:02] =============== xe_rtp_process_to_sr_tests ================
[10:29:02] [PASSED] coalesce-same-reg
[10:29:02] [PASSED] coalesce-same-reg-literal-and-func
[10:29:02] [PASSED] no-match-no-add
[10:29:02] [PASSED] two-regs-two-entries
[10:29:02] [PASSED] clr-one-set-other
[10:29:02] [PASSED] set-field
[10:29:02] [PASSED] conflict-duplicate
[10:29:02] [PASSED] conflict-not-disjoint
[10:29:02] [PASSED] conflict-not-disjoint-literal-and-func
[10:29:02] [PASSED] conflict-reg-type
[10:29:02] [PASSED] bad-mcr-reg-forced-to-regular
[10:29:02] [PASSED] bad-regular-reg-forced-to-mcr
[10:29:02] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[10:29:02] ================== xe_rtp_process_tests ===================
[10:29:02] [PASSED] active1
[10:29:02] [PASSED] active2
[10:29:02] [PASSED] active-inactive
[10:29:02] [PASSED] inactive-active
[10:29:02] [PASSED] inactive-active-inactive
[10:29:02] [PASSED] inactive-inactive-inactive
[10:29:02] ============== [PASSED] xe_rtp_process_tests ===============
[10:29:02] ===================== [PASSED] xe_rtp ======================
[10:29:02] ==================== xe_wa (1 subtest) =====================
[10:29:02] ======================== xe_wa_gt =========================
[10:29:02] [PASSED] TIGERLAKE B0
[10:29:02] [PASSED] DG1 A0
[10:29:02] [PASSED] DG1 B0
[10:29:02] [PASSED] ALDERLAKE_S A0
[10:29:02] [PASSED] ALDERLAKE_S B0
[10:29:02] [PASSED] ALDERLAKE_S C0
[10:29:02] [PASSED] ALDERLAKE_S D0
[10:29:02] [PASSED] ALDERLAKE_P A0
[10:29:02] [PASSED] ALDERLAKE_P B0
[10:29:02] [PASSED] ALDERLAKE_P C0
[10:29:02] [PASSED] ALDERLAKE_S RPLS D0
[10:29:02] [PASSED] ALDERLAKE_P RPLU E0
[10:29:02] [PASSED] DG2 G10 C0
[10:29:02] [PASSED] DG2 G11 B1
[10:29:02] [PASSED] DG2 G12 A1
[10:29:02] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[10:29:02] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[10:29:02] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[10:29:02] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[10:29:02] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[10:29:02] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[10:29:02] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[10:29:02] ==================== [PASSED] xe_wa_gt =====================
[10:29:02] ====================== [PASSED] xe_wa ======================
[10:29:02] ============================================================
[10:29:02] Testing complete. Ran 793 tests: passed: 765, skipped: 28
[10:29:02] Elapsed time: 36.444s total, 1.869s configuring, 33.808s building, 0.713s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[10:29:03] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:29:04] 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
[10:29:29] Starting KUnit Kernel (1/1)...
[10:29:29] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:29:29] ============= refcount_interrupt (4 subtests) ==============
[10:29:29] [PASSED] test_single_irq_change
[10:29:29] [PASSED] test_nested_irq_change
[10:29:29] [PASSED] test_multiple_irq_change
[10:29:29] [PASSED] test_irq_save
[10:29:29] =============== [PASSED] refcount_interrupt ================
[10:29:29] ============ drm_test_pick_cmdline (2 subtests) ============
[10:29:29] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[10:29:29] =============== drm_test_pick_cmdline_named ===============
[10:29:29] [PASSED] NTSC
[10:29:29] [PASSED] NTSC-J
[10:29:29] [PASSED] PAL
[10:29:29] [PASSED] PAL-M
[10:29:29] =========== [PASSED] drm_test_pick_cmdline_named ===========
[10:29:29] ============== [PASSED] drm_test_pick_cmdline ==============
[10:29:29] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[10:29:29] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[10:29:29] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[10:29:29] =========== drm_validate_clone_mode (2 subtests) ===========
[10:29:29] ============== drm_test_check_in_clone_mode ===============
[10:29:29] [PASSED] in_clone_mode
[10:29:29] [PASSED] not_in_clone_mode
[10:29:29] ========== [PASSED] drm_test_check_in_clone_mode ===========
[10:29:29] =============== drm_test_check_valid_clones ===============
[10:29:29] [PASSED] not_in_clone_mode
[10:29:29] [PASSED] valid_clone
[10:29:29] [PASSED] invalid_clone
[10:29:29] =========== [PASSED] drm_test_check_valid_clones ===========
[10:29:29] ============= [PASSED] drm_validate_clone_mode =============
[10:29:29] ============= drm_validate_modeset (1 subtest) =============
[10:29:29] [PASSED] drm_test_check_connector_changed_modeset
[10:29:29] ============== [PASSED] drm_validate_modeset ===============
[10:29:29] ====== drm_test_bridge_get_current_state (1 subtest) =======
[10:29:29] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[10:29:29] ======== [PASSED] drm_test_bridge_get_current_state ========
[10:29:29] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[10:29:29] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[10:29:29] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[10:29:29] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[10:29:29] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[10:29:29] ============== drm_bridge_alloc (2 subtests) ===============
[10:29:29] [PASSED] drm_test_drm_bridge_alloc_basic
[10:29:29] [PASSED] drm_test_drm_bridge_alloc_get_put
[10:29:29] ================ [PASSED] drm_bridge_alloc =================
[10:29:29] ============= drm_bridge_bus_fmt (5 subtests) ==============
[10:29:29] [PASSED] drm_test_bridge_rgb_yuv_rgb
[10:29:29] [PASSED] drm_test_bridge_must_convert_to_yuv444
[10:29:29] [PASSED] drm_test_bridge_hdmi_auto_rgb
[10:29:29] [PASSED] drm_test_bridge_auto_first
[10:29:29] [PASSED] drm_test_bridge_rgb_yuv_no_path
[10:29:29] =============== [PASSED] drm_bridge_bus_fmt ================
[10:29:29] ============= drm_cmdline_parser (40 subtests) =============
[10:29:29] [PASSED] drm_test_cmdline_force_d_only
[10:29:29] [PASSED] drm_test_cmdline_force_D_only_dvi
[10:29:29] [PASSED] drm_test_cmdline_force_D_only_hdmi
[10:29:29] [PASSED] drm_test_cmdline_force_D_only_not_digital
[10:29:29] [PASSED] drm_test_cmdline_force_e_only
[10:29:29] [PASSED] drm_test_cmdline_res
[10:29:29] [PASSED] drm_test_cmdline_res_vesa
[10:29:29] [PASSED] drm_test_cmdline_res_vesa_rblank
[10:29:29] [PASSED] drm_test_cmdline_res_rblank
[10:29:29] [PASSED] drm_test_cmdline_res_bpp
[10:29:29] [PASSED] drm_test_cmdline_res_refresh
[10:29:29] [PASSED] drm_test_cmdline_res_bpp_refresh
[10:29:29] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[10:29:29] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[10:29:29] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[10:29:29] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[10:29:29] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[10:29:29] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[10:29:29] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[10:29:29] [PASSED] drm_test_cmdline_res_margins_force_on
[10:29:29] [PASSED] drm_test_cmdline_res_vesa_margins
[10:29:29] [PASSED] drm_test_cmdline_name
[10:29:29] [PASSED] drm_test_cmdline_name_bpp
[10:29:29] [PASSED] drm_test_cmdline_name_option
[10:29:29] [PASSED] drm_test_cmdline_name_bpp_option
[10:29:29] [PASSED] drm_test_cmdline_rotate_0
[10:29:29] [PASSED] drm_test_cmdline_rotate_90
[10:29:29] [PASSED] drm_test_cmdline_rotate_180
[10:29:29] [PASSED] drm_test_cmdline_rotate_270
[10:29:29] [PASSED] drm_test_cmdline_hmirror
[10:29:29] [PASSED] drm_test_cmdline_vmirror
[10:29:29] [PASSED] drm_test_cmdline_margin_options
[10:29:29] [PASSED] drm_test_cmdline_multiple_options
[10:29:29] [PASSED] drm_test_cmdline_bpp_extra_and_option
[10:29:29] [PASSED] drm_test_cmdline_extra_and_option
[10:29:29] [PASSED] drm_test_cmdline_freestanding_options
[10:29:29] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[10:29:29] [PASSED] drm_test_cmdline_panel_orientation
[10:29:29] ================ drm_test_cmdline_invalid =================
[10:29:29] [PASSED] margin_only
[10:29:29] [PASSED] interlace_only
[10:29:29] [PASSED] res_missing_x
[10:29:29] [PASSED] res_missing_y
[10:29:29] [PASSED] res_bad_y
[10:29:29] [PASSED] res_missing_y_bpp
[10:29:29] [PASSED] res_bad_bpp
[10:29:29] [PASSED] res_bad_refresh
[10:29:29] [PASSED] res_bpp_refresh_force_on_off
[10:29:29] [PASSED] res_invalid_mode
[10:29:29] [PASSED] res_bpp_wrong_place_mode
[10:29:29] [PASSED] name_bpp_refresh
[10:29:29] [PASSED] name_refresh
[10:29:29] [PASSED] name_refresh_wrong_mode
[10:29:29] [PASSED] name_refresh_invalid_mode
[10:29:29] [PASSED] rotate_multiple
[10:29:29] [PASSED] rotate_invalid_val
[10:29:29] [PASSED] rotate_truncated
[10:29:29] [PASSED] invalid_option
[10:29:29] [PASSED] invalid_tv_option
[10:29:29] [PASSED] truncated_tv_option
[10:29:29] ============ [PASSED] drm_test_cmdline_invalid =============
[10:29:29] =============== drm_test_cmdline_tv_options ===============
[10:29:29] [PASSED] NTSC
[10:29:29] [PASSED] NTSC_443
[10:29:29] [PASSED] NTSC_J
[10:29:29] [PASSED] PAL
[10:29:29] [PASSED] PAL_M
[10:29:29] [PASSED] PAL_N
[10:29:29] [PASSED] SECAM
[10:29:29] [PASSED] MONO_525
[10:29:29] [PASSED] MONO_625
[10:29:29] =========== [PASSED] drm_test_cmdline_tv_options ===========
[10:29:29] =============== [PASSED] drm_cmdline_parser ================
[10:29:29] ========== drmm_connector_hdmi_init (20 subtests) ==========
[10:29:29] [PASSED] drm_test_connector_hdmi_init_valid
[10:29:29] [PASSED] drm_test_connector_hdmi_init_bpc_8
[10:29:29] [PASSED] drm_test_connector_hdmi_init_bpc_10
[10:29:29] [PASSED] drm_test_connector_hdmi_init_bpc_12
[10:29:29] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[10:29:29] [PASSED] drm_test_connector_hdmi_init_bpc_null
[10:29:29] [PASSED] drm_test_connector_hdmi_init_formats_empty
[10:29:29] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[10:29:29] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[10:29:29] [PASSED] supported_formats=0x9 yuv420_allowed=1
[10:29:29] [PASSED] supported_formats=0x9 yuv420_allowed=0
[10:29:29] [PASSED] supported_formats=0x5 yuv420_allowed=1
[10:29:29] [PASSED] supported_formats=0x5 yuv420_allowed=0
[10:29:29] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[10:29:29] [PASSED] drm_test_connector_hdmi_init_null_ddc
[10:29:29] [PASSED] drm_test_connector_hdmi_init_null_product
[10:29:29] [PASSED] drm_test_connector_hdmi_init_null_vendor
[10:29:29] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[10:29:29] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[10:29:29] [PASSED] drm_test_connector_hdmi_init_product_valid
[10:29:29] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[10:29:29] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[10:29:29] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[10:29:29] ========= drm_test_connector_hdmi_init_type_valid =========
[10:29:29] [PASSED] HDMI-A
[10:29:29] [PASSED] HDMI-B
[10:29:29] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[10:29:29] ======== drm_test_connector_hdmi_init_type_invalid ========
[10:29:29] [PASSED] Unknown
[10:29:29] [PASSED] VGA
[10:29:29] [PASSED] DVI-I
[10:29:29] [PASSED] DVI-D
[10:29:29] [PASSED] DVI-A
[10:29:29] [PASSED] Composite
[10:29:29] [PASSED] SVIDEO
[10:29:29] [PASSED] LVDS
[10:29:29] [PASSED] Component
[10:29:29] [PASSED] DIN
[10:29:29] [PASSED] DP
[10:29:29] [PASSED] TV
[10:29:29] [PASSED] eDP
[10:29:29] [PASSED] Virtual
[10:29:29] [PASSED] DSI
[10:29:29] [PASSED] DPI
[10:29:29] [PASSED] Writeback
[10:29:29] [PASSED] SPI
[10:29:29] [PASSED] USB
[10:29:29] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[10:29:29] ============ [PASSED] drmm_connector_hdmi_init =============
[10:29:29] ============= drmm_connector_init (3 subtests) =============
[10:29:29] [PASSED] drm_test_drmm_connector_init
[10:29:29] [PASSED] drm_test_drmm_connector_init_null_ddc
[10:29:29] ========= drm_test_drmm_connector_init_type_valid =========
[10:29:29] [PASSED] Unknown
[10:29:29] [PASSED] VGA
[10:29:29] [PASSED] DVI-I
[10:29:29] [PASSED] DVI-D
[10:29:29] [PASSED] DVI-A
[10:29:29] [PASSED] Composite
[10:29:29] [PASSED] SVIDEO
[10:29:29] [PASSED] LVDS
[10:29:29] [PASSED] Component
[10:29:29] [PASSED] DIN
[10:29:29] [PASSED] DP
[10:29:29] [PASSED] HDMI-A
[10:29:29] [PASSED] HDMI-B
[10:29:29] [PASSED] TV
[10:29:29] [PASSED] eDP
[10:29:29] [PASSED] Virtual
[10:29:29] [PASSED] DSI
[10:29:29] [PASSED] DPI
[10:29:29] [PASSED] Writeback
[10:29:29] [PASSED] SPI
[10:29:29] [PASSED] USB
[10:29:29] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[10:29:29] =============== [PASSED] drmm_connector_init ===============
[10:29:29] ========= drm_connector_dynamic_init (6 subtests) ==========
[10:29:29] [PASSED] drm_test_drm_connector_dynamic_init
[10:29:29] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[10:29:29] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[10:29:29] [PASSED] drm_test_drm_connector_dynamic_init_properties
[10:29:29] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[10:29:29] [PASSED] Unknown
[10:29:29] [PASSED] VGA
[10:29:29] [PASSED] DVI-I
[10:29:29] [PASSED] DVI-D
[10:29:29] [PASSED] DVI-A
[10:29:29] [PASSED] Composite
[10:29:29] [PASSED] SVIDEO
[10:29:29] [PASSED] LVDS
[10:29:29] [PASSED] Component
[10:29:29] [PASSED] DIN
[10:29:29] [PASSED] DP
[10:29:29] [PASSED] HDMI-A
[10:29:29] [PASSED] HDMI-B
[10:29:29] [PASSED] TV
[10:29:29] [PASSED] eDP
[10:29:29] [PASSED] Virtual
[10:29:29] [PASSED] DSI
[10:29:29] [PASSED] DPI
[10:29:29] [PASSED] Writeback
[10:29:29] [PASSED] SPI
[10:29:29] [PASSED] USB
[10:29:29] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[10:29:29] ======== drm_test_drm_connector_dynamic_init_name =========
[10:29:29] [PASSED] Unknown
[10:29:29] [PASSED] VGA
[10:29:29] [PASSED] DVI-I
[10:29:29] [PASSED] DVI-D
[10:29:29] [PASSED] DVI-A
[10:29:29] [PASSED] Composite
[10:29:29] [PASSED] SVIDEO
[10:29:29] [PASSED] LVDS
[10:29:29] [PASSED] Component
[10:29:29] [PASSED] DIN
[10:29:29] [PASSED] DP
[10:29:29] [PASSED] HDMI-A
[10:29:29] [PASSED] HDMI-B
[10:29:29] [PASSED] TV
[10:29:29] [PASSED] eDP
[10:29:29] [PASSED] Virtual
[10:29:29] [PASSED] DSI
[10:29:29] [PASSED] DPI
[10:29:29] [PASSED] Writeback
[10:29:29] [PASSED] SPI
[10:29:29] [PASSED] USB
[10:29:29] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[10:29:29] =========== [PASSED] drm_connector_dynamic_init ============
[10:29:29] ==== drm_connector_dynamic_register_early (4 subtests) =====
[10:29:29] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[10:29:29] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[10:29:29] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[10:29:29] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[10:29:29] ====== [PASSED] drm_connector_dynamic_register_early =======
[10:29:29] ======= drm_connector_dynamic_register (7 subtests) ========
[10:29:29] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[10:29:29] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[10:29:29] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[10:29:29] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[10:29:29] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[10:29:29] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[10:29:29] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[10:29:29] ========= [PASSED] drm_connector_dynamic_register ==========
[10:29:29] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[10:29:29] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[10:29:29] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[10:29:29] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[10:29:29] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[10:29:29] ========== drm_test_get_tv_mode_from_name_valid ===========
[10:29:29] [PASSED] NTSC
[10:29:29] [PASSED] NTSC-443
[10:29:29] [PASSED] NTSC-J
[10:29:29] [PASSED] PAL
[10:29:29] [PASSED] PAL-M
[10:29:29] [PASSED] PAL-N
[10:29:29] [PASSED] SECAM
[10:29:29] [PASSED] Mono
[10:29:29] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[10:29:29] [PASSED] drm_test_get_tv_mode_from_name_truncated
[10:29:29] ============ [PASSED] drm_get_tv_mode_from_name ============
[10:29:29] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[10:29:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[10:29:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[10:29:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[10:29:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[10:29:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[10:29:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[10:29:29] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[10:29:29] [PASSED] VIC 96
[10:29:29] [PASSED] VIC 97
[10:29:29] [PASSED] VIC 101
[10:29:29] [PASSED] VIC 102
[10:29:29] [PASSED] VIC 106
[10:29:29] [PASSED] VIC 107
[10:29:29] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[10:29:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[10:29:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[10:29:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[10:29:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[10:29:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[10:29:29] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[10:29:29] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[10:29:29] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[10:29:29] [PASSED] Automatic
[10:29:29] [PASSED] Full
[10:29:29] [PASSED] Limited 16:235
[10:29:29] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[10:29:29] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[10:29:29] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[10:29:29] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[10:29:29] === drm_test_drm_hdmi_connector_get_output_format_name ====
[10:29:29] [PASSED] RGB
[10:29:29] [PASSED] YUV 4:2:0
[10:29:29] [PASSED] YUV 4:2:2
[10:29:29] [PASSED] YUV 4:4:4
[10:29:29] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[10:29:29] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[10:29:29] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[10:29:29] ============= drm_damage_helper (21 subtests) ==============
[10:29:29] [PASSED] drm_test_damage_iter_no_damage
[10:29:29] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[10:29:29] [PASSED] drm_test_damage_iter_no_damage_src_moved
[10:29:29] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[10:29:29] [PASSED] drm_test_damage_iter_no_damage_not_visible
[10:29:29] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[10:29:29] [PASSED] drm_test_damage_iter_no_damage_no_fb
[10:29:29] [PASSED] drm_test_damage_iter_simple_damage
[10:29:29] [PASSED] drm_test_damage_iter_single_damage
[10:29:29] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[10:29:29] [PASSED] drm_test_damage_iter_single_damage_outside_src
[10:29:29] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[10:29:29] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[10:29:29] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[10:29:29] [PASSED] drm_test_damage_iter_single_damage_src_moved
[10:29:29] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[10:29:29] [PASSED] drm_test_damage_iter_damage
[10:29:29] [PASSED] drm_test_damage_iter_damage_one_intersect
[10:29:29] [PASSED] drm_test_damage_iter_damage_one_outside
[10:29:29] [PASSED] drm_test_damage_iter_damage_src_moved
[10:29:29] [PASSED] drm_test_damage_iter_damage_not_visible
[10:29:29] ================ [PASSED] drm_damage_helper ================
[10:29:29] ============== drm_dp_mst_helper (3 subtests) ==============
[10:29:29] ============== drm_test_dp_mst_calc_pbn_mode ==============
[10:29:29] [PASSED] Clock 154000 BPP 30 DSC disabled
[10:29:29] [PASSED] Clock 234000 BPP 30 DSC disabled
[10:29:29] [PASSED] Clock 297000 BPP 24 DSC disabled
[10:29:29] [PASSED] Clock 332880 BPP 24 DSC enabled
[10:29:29] [PASSED] Clock 324540 BPP 24 DSC enabled
[10:29:29] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[10:29:29] ============== drm_test_dp_mst_calc_pbn_div ===============
[10:29:29] [PASSED] Link rate 2000000 lane count 4
[10:29:29] [PASSED] Link rate 2000000 lane count 2
[10:29:29] [PASSED] Link rate 2000000 lane count 1
[10:29:29] [PASSED] Link rate 1350000 lane count 4
[10:29:29] [PASSED] Link rate 1350000 lane count 2
[10:29:29] [PASSED] Link rate 1350000 lane count 1
[10:29:29] [PASSED] Link rate 1000000 lane count 4
[10:29:29] [PASSED] Link rate 1000000 lane count 2
[10:29:29] [PASSED] Link rate 1000000 lane count 1
[10:29:29] [PASSED] Link rate 810000 lane count 4
[10:29:29] [PASSED] Link rate 810000 lane count 2
[10:29:29] [PASSED] Link rate 810000 lane count 1
[10:29:29] [PASSED] Link rate 540000 lane count 4
[10:29:29] [PASSED] Link rate 540000 lane count 2
[10:29:29] [PASSED] Link rate 540000 lane count 1
[10:29:29] [PASSED] Link rate 270000 lane count 4
[10:29:29] [PASSED] Link rate 270000 lane count 2
[10:29:29] [PASSED] Link rate 270000 lane count 1
[10:29:29] [PASSED] Link rate 162000 lane count 4
[10:29:29] [PASSED] Link rate 162000 lane count 2
[10:29:29] [PASSED] Link rate 162000 lane count 1
[10:29:29] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[10:29:29] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[10:29:29] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[10:29:29] [PASSED] DP_POWER_UP_PHY with port number
[10:29:29] [PASSED] DP_POWER_DOWN_PHY with port number
[10:29:29] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[10:29:29] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[10:29:29] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[10:29:29] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[10:29:29] [PASSED] DP_QUERY_PAYLOAD with port number
[10:29:29] [PASSED] DP_QUERY_PAYLOAD with VCPI
[10:29:29] [PASSED] DP_REMOTE_DPCD_READ with port number
[10:29:29] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[10:29:29] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[10:29:29] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[10:29:29] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[10:29:29] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[10:29:29] [PASSED] DP_REMOTE_I2C_READ with port number
[10:29:29] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[10:29:29] [PASSED] DP_REMOTE_I2C_READ with transactions array
[10:29:29] [PASSED] DP_REMOTE_I2C_WRITE with port number
[10:29:29] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[10:29:29] [PASSED] DP_REMOTE_I2C_WRITE with data array
[10:29:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[10:29:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[10:29:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[10:29:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[10:29:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[10:29:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[10:29:29] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[10:29:29] ================ [PASSED] drm_dp_mst_helper ================
[10:29:29] ================== drm_exec (7 subtests) ===================
[10:29:29] [PASSED] sanitycheck
[10:29:29] [PASSED] test_lock
[10:29:29] [PASSED] test_lock_unlock
[10:29:29] [PASSED] test_duplicates
[10:29:29] [PASSED] test_prepare
[10:29:29] [PASSED] test_prepare_array
[10:29:29] [PASSED] test_multiple_loops
[10:29:29] ==================== [PASSED] drm_exec =====================
[10:29:29] =========== drm_format_helper_test (17 subtests) ===========
[10:29:29] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[10:29:29] [PASSED] single_pixel_source_buffer
[10:29:29] [PASSED] single_pixel_clip_rectangle
[10:29:29] [PASSED] well_known_colors
[10:29:29] [PASSED] destination_pitch
[10:29:29] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[10:29:29] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[10:29:29] [PASSED] single_pixel_source_buffer
[10:29:29] [PASSED] single_pixel_clip_rectangle
[10:29:29] [PASSED] well_known_colors
[10:29:29] [PASSED] destination_pitch
[10:29:29] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[10:29:29] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[10:29:29] [PASSED] single_pixel_source_buffer
[10:29:29] [PASSED] single_pixel_clip_rectangle
[10:29:29] [PASSED] well_known_colors
[10:29:29] [PASSED] destination_pitch
[10:29:29] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[10:29:29] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[10:29:29] [PASSED] single_pixel_source_buffer
[10:29:29] [PASSED] single_pixel_clip_rectangle
[10:29:29] [PASSED] well_known_colors
[10:29:29] [PASSED] destination_pitch
[10:29:29] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[10:29:29] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[10:29:29] [PASSED] single_pixel_source_buffer
[10:29:29] [PASSED] single_pixel_clip_rectangle
[10:29:29] [PASSED] well_known_colors
[10:29:29] [PASSED] destination_pitch
[10:29:29] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[10:29:29] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[10:29:29] [PASSED] single_pixel_source_buffer
[10:29:29] [PASSED] single_pixel_clip_rectangle
[10:29:29] [PASSED] well_known_colors
[10:29:29] [PASSED] destination_pitch
[10:29:29] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[10:29:29] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[10:29:29] [PASSED] single_pixel_source_buffer
[10:29:29] [PASSED] single_pixel_clip_rectangle
[10:29:29] [PASSED] well_known_colors
[10:29:29] [PASSED] destination_pitch
[10:29:29] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[10:29:29] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[10:29:29] [PASSED] single_pixel_source_buffer
[10:29:29] [PASSED] single_pixel_clip_rectangle
[10:29:29] [PASSED] well_known_colors
[10:29:29] [PASSED] destination_pitch
[10:29:29] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[10:29:29] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[10:29:29] [PASSED] single_pixel_source_buffer
[10:29:29] [PASSED] single_pixel_clip_rectangle
[10:29:29] [PASSED] well_known_colors
[10:29:29] [PASSED] destination_pitch
[10:29:29] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[10:29:29] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[10:29:29] [PASSED] single_pixel_source_buffer
[10:29:29] [PASSED] single_pixel_clip_rectangle
[10:29:29] [PASSED] well_known_colors
[10:29:29] [PASSED] destination_pitch
[10:29:29] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[10:29:29] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[10:29:29] [PASSED] single_pixel_source_buffer
[10:29:29] [PASSED] single_pixel_clip_rectangle
[10:29:29] [PASSED] well_known_colors
[10:29:29] [PASSED] destination_pitch
[10:29:29] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[10:29:29] ============== drm_test_fb_xrgb8888_to_mono ===============
[10:29:29] [PASSED] single_pixel_source_buffer
[10:29:29] [PASSED] single_pixel_clip_rectangle
[10:29:29] [PASSED] well_known_colors
[10:29:29] [PASSED] destination_pitch
[10:29:29] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[10:29:29] ==================== drm_test_fb_swab =====================
[10:29:29] [PASSED] single_pixel_source_buffer
[10:29:29] [PASSED] single_pixel_clip_rectangle
[10:29:29] [PASSED] well_known_colors
[10:29:29] [PASSED] destination_pitch
[10:29:29] ================ [PASSED] drm_test_fb_swab =================
[10:29:29] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[10:29:29] [PASSED] single_pixel_source_buffer
[10:29:29] [PASSED] single_pixel_clip_rectangle
[10:29:29] [PASSED] well_known_colors
[10:29:29] [PASSED] destination_pitch
[10:29:29] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[10:29:29] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[10:29:29] [PASSED] single_pixel_source_buffer
[10:29:29] [PASSED] single_pixel_clip_rectangle
[10:29:29] [PASSED] well_known_colors
[10:29:29] [PASSED] destination_pitch
[10:29:29] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[10:29:29] ================= drm_test_fb_clip_offset =================
[10:29:29] [PASSED] pass through
[10:29:29] [PASSED] horizontal offset
[10:29:29] [PASSED] vertical offset
[10:29:29] [PASSED] horizontal and vertical offset
[10:29:29] [PASSED] horizontal offset (custom pitch)
[10:29:29] [PASSED] vertical offset (custom pitch)
[10:29:29] [PASSED] horizontal and vertical offset (custom pitch)
[10:29:29] ============= [PASSED] drm_test_fb_clip_offset =============
[10:29:29] =================== drm_test_fb_memcpy ====================
[10:29:29] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[10:29:29] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[10:29:29] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[10:29:29] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[10:29:29] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[10:29:29] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[10:29:29] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[10:29:29] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[10:29:29] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[10:29:29] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[10:29:29] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[10:29:29] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[10:29:29] =============== [PASSED] drm_test_fb_memcpy ================
[10:29:29] ============= [PASSED] drm_format_helper_test ==============
[10:29:29] ================= drm_format (18 subtests) =================
[10:29:29] [PASSED] drm_test_format_block_width_invalid
[10:29:29] [PASSED] drm_test_format_block_width_one_plane
[10:29:29] [PASSED] drm_test_format_block_width_two_plane
[10:29:29] [PASSED] drm_test_format_block_width_three_plane
[10:29:29] [PASSED] drm_test_format_block_width_tiled
[10:29:29] [PASSED] drm_test_format_block_height_invalid
[10:29:29] [PASSED] drm_test_format_block_height_one_plane
[10:29:29] [PASSED] drm_test_format_block_height_two_plane
[10:29:29] [PASSED] drm_test_format_block_height_three_plane
[10:29:29] [PASSED] drm_test_format_block_height_tiled
[10:29:29] [PASSED] drm_test_format_min_pitch_invalid
[10:29:29] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[10:29:29] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[10:29:29] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[10:29:29] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[10:29:29] [PASSED] drm_test_format_min_pitch_two_plane
[10:29:29] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[10:29:29] [PASSED] drm_test_format_min_pitch_tiled
[10:29:29] =================== [PASSED] drm_format ====================
[10:29:29] ============== drm_framebuffer (10 subtests) ===============
[10:29:29] ========== drm_test_framebuffer_check_src_coords ==========
[10:29:29] [PASSED] Success: source fits into fb
[10:29:29] [PASSED] Fail: overflowing fb with x-axis coordinate
[10:29:29] [PASSED] Fail: overflowing fb with y-axis coordinate
[10:29:29] [PASSED] Fail: overflowing fb with source width
[10:29:29] [PASSED] Fail: overflowing fb with source height
[10:29:29] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[10:29:29] [PASSED] drm_test_framebuffer_cleanup
[10:29:29] =============== drm_test_framebuffer_create ===============
[10:29:29] [PASSED] ABGR8888 normal sizes
[10:29:29] [PASSED] ABGR8888 max sizes
[10:29:29] [PASSED] ABGR8888 pitch greater than min required
[10:29:29] [PASSED] ABGR8888 pitch less than min required
[10:29:29] [PASSED] ABGR8888 Invalid width
[10:29:29] [PASSED] ABGR8888 Invalid buffer handle
[10:29:29] [PASSED] No pixel format
[10:29:29] [PASSED] ABGR8888 Width 0
[10:29:29] [PASSED] ABGR8888 Height 0
[10:29:29] [PASSED] ABGR8888 Out of bound height * pitch combination
[10:29:29] [PASSED] ABGR8888 Large buffer offset
[10:29:29] [PASSED] ABGR8888 Buffer offset for inexistent plane
[10:29:29] [PASSED] ABGR8888 Invalid flag
[10:29:29] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[10:29:29] [PASSED] ABGR8888 Valid buffer modifier
[10:29:29] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[10:29:29] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[10:29:29] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[10:29:29] [PASSED] NV12 Normal sizes
[10:29:29] [PASSED] NV12 Max sizes
[10:29:29] [PASSED] NV12 Invalid pitch
[10:29:29] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[10:29:29] [PASSED] NV12 different modifier per-plane
[10:29:29] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[10:29:29] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[10:29:29] [PASSED] NV12 Modifier for inexistent plane
[10:29:29] [PASSED] NV12 Handle for inexistent plane
[10:29:29] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[10:29:29] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[10:29:29] [PASSED] YVU420 Normal sizes
[10:29:29] [PASSED] YVU420 Max sizes
[10:29:29] [PASSED] YVU420 Invalid pitch
[10:29:29] [PASSED] YVU420 Different pitches
[10:29:29] [PASSED] YVU420 Different buffer offsets/pitches
[10:29:29] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[10:29:29] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[10:29:29] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[10:29:29] [PASSED] YVU420 Valid modifier
[10:29:29] [PASSED] YVU420 Different modifiers per plane
[10:29:29] [PASSED] YVU420 Modifier for inexistent plane
[10:29:29] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[10:29:29] [PASSED] X0L2 Normal sizes
[10:29:29] [PASSED] X0L2 Max sizes
[10:29:29] [PASSED] X0L2 Invalid pitch
[10:29:29] [PASSED] X0L2 Pitch greater than minimum required
[10:29:29] [PASSED] X0L2 Handle for inexistent plane
[10:29:29] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[10:29:29] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[10:29:29] [PASSED] X0L2 Valid modifier
[10:29:29] [PASSED] X0L2 Modifier for inexistent plane
[10:29:29] =========== [PASSED] drm_test_framebuffer_create ===========
[10:29:29] [PASSED] drm_test_framebuffer_free
[10:29:29] [PASSED] drm_test_framebuffer_init
[10:29:29] [PASSED] drm_test_framebuffer_init_bad_format
[10:29:29] [PASSED] drm_test_framebuffer_init_dev_mismatch
[10:29:29] [PASSED] drm_test_framebuffer_lookup
[10:29:29] [PASSED] drm_test_framebuffer_lookup_inexistent
[10:29:29] [PASSED] drm_test_framebuffer_modifiers_not_supported
[10:29:29] ================= [PASSED] drm_framebuffer =================
[10:29:29] ================ drm_gem_shmem (8 subtests) ================
[10:29:29] [PASSED] drm_gem_shmem_test_obj_create
[10:29:29] [PASSED] drm_gem_shmem_test_obj_create_private
[10:29:29] [PASSED] drm_gem_shmem_test_pin_pages
[10:29:29] [PASSED] drm_gem_shmem_test_vmap
[10:29:29] [PASSED] drm_gem_shmem_test_get_sg_table
[10:29:29] [PASSED] drm_gem_shmem_test_get_pages_sgt
[10:29:29] [PASSED] drm_gem_shmem_test_madvise
[10:29:29] [PASSED] drm_gem_shmem_test_purge
[10:29:29] ================== [PASSED] drm_gem_shmem ==================
[10:29:29] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[10:29:29] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[10:29:29] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[10:29:29] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[10:29:29] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[10:29:29] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[10:29:29] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[10:29:29] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[10:29:29] [PASSED] Automatic
[10:29:29] [PASSED] Full
[10:29:29] [PASSED] Limited 16:235
[10:29:29] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[10:29:29] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[10:29:29] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[10:29:29] [PASSED] drm_test_check_disable_connector
[10:29:29] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[10:29:29] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[10:29:29] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[10:29:29] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[10:29:29] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[10:29:29] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[10:29:29] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[10:29:29] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[10:29:29] [PASSED] drm_test_check_output_bpc_dvi
[10:29:29] [PASSED] drm_test_check_output_bpc_format_vic_1
[10:29:29] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[10:29:29] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[10:29:29] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[10:29:29] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[10:29:29] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[10:29:29] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[10:29:29] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[10:29:29] ============ drm_test_check_hdmi_color_format =============
[10:29:29] [PASSED] AUTO -> RGB
[10:29:29] [PASSED] YCBCR422 -> YUV422
[10:29:29] [PASSED] YCBCR420 -> YUV420
[10:29:29] [PASSED] YCBCR444 -> YUV444
[10:29:29] [PASSED] RGB -> RGB
[10:29:29] ======== [PASSED] drm_test_check_hdmi_color_format =========
[10:29:29] ======== drm_test_check_hdmi_color_format_420_only ========
[10:29:29] [PASSED] RGB should fail
[10:29:29] [PASSED] YUV444 should fail
[10:29:29] [PASSED] YUV422 should fail
[10:29:29] [PASSED] YUV420 should work
[10:29:29] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[10:29:29] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[10:29:29] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[10:29:29] [PASSED] drm_test_check_broadcast_rgb_value
[10:29:29] [PASSED] drm_test_check_bpc_8_value
[10:29:29] [PASSED] drm_test_check_bpc_10_value
[10:29:29] [PASSED] drm_test_check_bpc_12_value
[10:29:29] [PASSED] drm_test_check_format_value
[10:29:29] [PASSED] drm_test_check_tmds_char_value
[10:29:29] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[10:29:29] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[10:29:29] [PASSED] drm_test_check_mode_valid
[10:29:29] [PASSED] drm_test_check_mode_valid_reject
[10:29:29] [PASSED] drm_test_check_mode_valid_reject_rate
[10:29:29] [PASSED] drm_test_check_mode_valid_reject_max_clock
[10:29:29] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[10:29:29] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[10:29:29] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[10:29:29] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[10:29:29] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[10:29:29] [PASSED] drm_test_check_infoframes
[10:29:29] [PASSED] drm_test_check_reject_avi_infoframe
[10:29:29] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[10:29:29] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[10:29:29] [PASSED] drm_test_check_reject_audio_infoframe
[10:29:29] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[10:29:29] ================= drm_managed (2 subtests) =================
[10:29:29] [PASSED] drm_test_managed_release_action
[10:29:29] [PASSED] drm_test_managed_run_action
[10:29:29] =================== [PASSED] drm_managed ===================
[10:29:29] =================== drm_mm (6 subtests) ====================
[10:29:29] [PASSED] drm_test_mm_init
[10:29:29] [PASSED] drm_test_mm_debug
[10:29:29] [PASSED] drm_test_mm_align32
[10:29:29] [PASSED] drm_test_mm_align64
[10:29:29] [PASSED] drm_test_mm_lowest
[10:29:29] [PASSED] drm_test_mm_highest
[10:29:29] ===================== [PASSED] drm_mm ======================
[10:29:29] ============= drm_modes_analog_tv (5 subtests) =============
[10:29:29] [PASSED] drm_test_modes_analog_tv_mono_576i
[10:29:29] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[10:29:29] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[10:29:29] [PASSED] drm_test_modes_analog_tv_pal_576i
[10:29:29] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[10:29:29] =============== [PASSED] drm_modes_analog_tv ===============
[10:29:29] ============== drm_plane_helper (2 subtests) ===============
[10:29:29] =============== drm_test_check_plane_state ================
[10:29:29] [PASSED] clipping_simple
[10:29:29] [PASSED] clipping_rotate_reflect
[10:29:29] [PASSED] positioning_simple
[10:29:29] [PASSED] upscaling
[10:29:29] [PASSED] downscaling
[10:29:29] [PASSED] rounding1
[10:29:29] [PASSED] rounding2
[10:29:29] [PASSED] rounding3
[10:29:29] [PASSED] rounding4
[10:29:29] =========== [PASSED] drm_test_check_plane_state ============
[10:29:29] =========== drm_test_check_invalid_plane_state ============
[10:29:29] [PASSED] positioning_invalid
[10:29:29] [PASSED] upscaling_invalid
[10:29:29] [PASSED] downscaling_invalid
[10:29:29] ======= [PASSED] drm_test_check_invalid_plane_state ========
[10:29:29] ================ [PASSED] drm_plane_helper =================
[10:29:29] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[10:29:29] ====== drm_test_connector_helper_tv_get_modes_check =======
[10:29:29] [PASSED] None
[10:29:29] [PASSED] PAL
[10:29:29] [PASSED] NTSC
[10:29:29] [PASSED] Both, NTSC Default
[10:29:29] [PASSED] Both, PAL Default
[10:29:29] [PASSED] Both, NTSC Default, with PAL on command-line
[10:29:29] [PASSED] Both, PAL Default, with NTSC on command-line
[10:29:29] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[10:29:29] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[10:29:29] ================== drm_rect (9 subtests) ===================
[10:29:29] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[10:29:29] [PASSED] drm_test_rect_clip_scaled_not_clipped
[10:29:29] [PASSED] drm_test_rect_clip_scaled_clipped
[10:29:29] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[10:29:29] ================= drm_test_rect_intersect =================
[10:29:29] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[10:29:29] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[10:29:29] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[10:29:29] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[10:29:29] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[10:29:29] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[10:29:29] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[10:29:29] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[10:29:29] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[10:29:29] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[10:29:29] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[10:29:29] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[10:29:29] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[10:29:29] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[10:29:29] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[10:29:29] ============= [PASSED] drm_test_rect_intersect =============
[10:29:29] ================ drm_test_rect_calc_hscale ================
[10:29:29] [PASSED] normal use
[10:29:29] [PASSED] out of max range
[10:29:29] [PASSED] out of min range
[10:29:29] [PASSED] zero dst
[10:29:29] [PASSED] negative src
[10:29:29] [PASSED] negative dst
[10:29:29] ============ [PASSED] drm_test_rect_calc_hscale ============
[10:29:29] ================ drm_test_rect_calc_vscale ================
[10:29:29] [PASSED] normal use
[10:29:29] [PASSED] out of max range
[10:29:29] [PASSED] out of min range
[10:29:29] [PASSED] zero dst
[10:29:29] [PASSED] negative src
[10:29:29] [PASSED] negative dst
[10:29:29] ============ [PASSED] drm_test_rect_calc_vscale ============
[10:29:29] ================== drm_test_rect_rotate ===================
[10:29:29] [PASSED] reflect-x
[10:29:29] [PASSED] reflect-y
[10:29:29] [PASSED] rotate-0
[10:29:29] [PASSED] rotate-90
[10:29:29] [PASSED] rotate-180
[10:29:29] [PASSED] rotate-270
[10:29:29] ============== [PASSED] drm_test_rect_rotate ===============
[10:29:29] ================ drm_test_rect_rotate_inv =================
[10:29:29] [PASSED] reflect-x
[10:29:29] [PASSED] reflect-y
[10:29:29] [PASSED] rotate-0
[10:29:29] [PASSED] rotate-90
[10:29:29] [PASSED] rotate-180
[10:29:29] [PASSED] rotate-270
[10:29:29] ============ [PASSED] drm_test_rect_rotate_inv =============
[10:29:29] ==================== [PASSED] drm_rect =====================
[10:29:29] ============ drm_sysfb_modeset_test (1 subtest) ============
[10:29:29] ============ drm_test_sysfb_build_fourcc_list =============
[10:29:29] [PASSED] no native formats
[10:29:29] [PASSED] XRGB8888 as native format
[10:29:29] [PASSED] remove duplicates
[10:29:29] [PASSED] convert alpha formats
[10:29:29] [PASSED] random formats
[10:29:29] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[10:29:29] ============= [PASSED] drm_sysfb_modeset_test ==============
[10:29:29] ================== drm_fixp (2 subtests) ===================
[10:29:29] [PASSED] drm_test_int2fixp
[10:29:29] [PASSED] drm_test_sm2fixp
[10:29:29] ==================== [PASSED] drm_fixp =====================
[10:29:29] ============================================================
[10:29:29] Testing complete. Ran 641 tests: passed: 641
[10:29:29] Elapsed time: 26.764s total, 1.758s configuring, 24.790s building, 0.181s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[10:29:29] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:29:31] 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
[10:29:41] Starting KUnit Kernel (1/1)...
[10:29:41] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:29:41] ============= refcount_interrupt (4 subtests) ==============
[10:29:41] [PASSED] test_single_irq_change
[10:29:41] [PASSED] test_nested_irq_change
[10:29:41] [PASSED] test_multiple_irq_change
[10:29:41] [PASSED] test_irq_save
[10:29:41] =============== [PASSED] refcount_interrupt ================
[10:29:41] ================= ttm_device (5 subtests) ==================
[10:29:41] [PASSED] ttm_device_init_basic
[10:29:41] [PASSED] ttm_device_init_multiple
[10:29:41] [PASSED] ttm_device_fini_basic
[10:29:41] [PASSED] ttm_device_init_no_vma_man
[10:29:41] ================== ttm_device_init_pools ==================
[10:29:41] [PASSED] No DMA allocations, no DMA32 required
[10:29:41] [PASSED] DMA allocations, DMA32 required
[10:29:41] [PASSED] No DMA allocations, DMA32 required
[10:29:41] [PASSED] DMA allocations, no DMA32 required
[10:29:41] ============== [PASSED] ttm_device_init_pools ==============
[10:29:41] =================== [PASSED] ttm_device ====================
[10:29:41] ================== ttm_pool (8 subtests) ===================
[10:29:41] ================== ttm_pool_alloc_basic ===================
[10:29:41] [PASSED] One page
[10:29:41] [PASSED] More than one page
[10:29:41] [PASSED] Above the allocation limit
[10:29:41] [PASSED] One page, with coherent DMA mappings enabled
[10:29:41] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[10:29:41] ============== [PASSED] ttm_pool_alloc_basic ===============
[10:29:41] ============== ttm_pool_alloc_basic_dma_addr ==============
[10:29:41] [PASSED] One page
[10:29:41] [PASSED] More than one page
[10:29:41] [PASSED] Above the allocation limit
[10:29:41] [PASSED] One page, with coherent DMA mappings enabled
[10:29:41] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[10:29:41] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[10:29:41] [PASSED] ttm_pool_alloc_order_caching_match
[10:29:41] [PASSED] ttm_pool_alloc_caching_mismatch
[10:29:41] [PASSED] ttm_pool_alloc_order_mismatch
[10:29:41] [PASSED] ttm_pool_free_dma_alloc
[10:29:41] [PASSED] ttm_pool_free_no_dma_alloc
[10:29:41] [PASSED] ttm_pool_fini_basic
[10:29:41] ==================== [PASSED] ttm_pool =====================
[10:29:41] ================ ttm_resource (8 subtests) =================
[10:29:41] ================= ttm_resource_init_basic =================
[10:29:41] [PASSED] Init resource in TTM_PL_SYSTEM
[10:29:41] [PASSED] Init resource in TTM_PL_VRAM
[10:29:41] [PASSED] Init resource in a private placement
[10:29:41] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[10:29:41] ============= [PASSED] ttm_resource_init_basic =============
[10:29:41] [PASSED] ttm_resource_init_pinned
[10:29:41] [PASSED] ttm_resource_fini_basic
[10:29:41] [PASSED] ttm_resource_manager_init_basic
[10:29:41] [PASSED] ttm_resource_manager_usage_basic
[10:29:41] [PASSED] ttm_resource_manager_set_used_basic
[10:29:41] [PASSED] ttm_sys_man_alloc_basic
[10:29:41] [PASSED] ttm_sys_man_free_basic
[10:29:41] ================== [PASSED] ttm_resource ===================
[10:29:41] =================== ttm_tt (15 subtests) ===================
[10:29:41] ==================== ttm_tt_init_basic ====================
[10:29:41] [PASSED] Page-aligned size
[10:29:41] [PASSED] Extra pages requested
[10:29:41] ================ [PASSED] ttm_tt_init_basic ================
[10:29:41] [PASSED] ttm_tt_init_misaligned
[10:29:41] [PASSED] ttm_tt_fini_basic
[10:29:41] [PASSED] ttm_tt_fini_sg
[10:29:41] [PASSED] ttm_tt_fini_shmem
[10:29:41] [PASSED] ttm_tt_create_basic
[10:29:41] [PASSED] ttm_tt_create_invalid_bo_type
[10:29:41] [PASSED] ttm_tt_create_ttm_exists
[10:29:41] [PASSED] ttm_tt_create_failed
[10:29:41] [PASSED] ttm_tt_destroy_basic
[10:29:41] [PASSED] ttm_tt_populate_null_ttm
[10:29:41] [PASSED] ttm_tt_populate_populated_ttm
[10:29:41] [PASSED] ttm_tt_unpopulate_basic
[10:29:41] [PASSED] ttm_tt_unpopulate_empty_ttm
[10:29:41] [PASSED] ttm_tt_swapin_basic
[10:29:41] ===================== [PASSED] ttm_tt ======================
[10:29:41] =================== ttm_bo (14 subtests) ===================
[10:29:41] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[10:29:41] [PASSED] Cannot be interrupted and sleeps
[10:29:41] [PASSED] Cannot be interrupted, locks straight away
[10:29:41] [PASSED] Can be interrupted, sleeps
[10:29:41] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[10:29:41] [PASSED] ttm_bo_reserve_locked_no_sleep
[10:29:41] [PASSED] ttm_bo_reserve_no_wait_ticket
[10:29:41] [PASSED] ttm_bo_reserve_double_resv
[10:29:41] [PASSED] ttm_bo_reserve_interrupted
[10:29:41] [PASSED] ttm_bo_reserve_deadlock
[10:29:41] [PASSED] ttm_bo_unreserve_basic
[10:29:41] [PASSED] ttm_bo_unreserve_pinned
[10:29:41] [PASSED] ttm_bo_unreserve_bulk
[10:29:41] [PASSED] ttm_bo_fini_basic
[10:29:41] [PASSED] ttm_bo_fini_shared_resv
[10:29:41] [PASSED] ttm_bo_pin_basic
[10:29:41] [PASSED] ttm_bo_pin_unpin_resource
[10:29:41] [PASSED] ttm_bo_multiple_pin_one_unpin
[10:29:41] ===================== [PASSED] ttm_bo ======================
[10:29:41] ============== ttm_bo_validate (22 subtests) ===============
[10:29:41] ============== ttm_bo_init_reserved_sys_man ===============
[10:29:41] [PASSED] Buffer object for userspace
[10:29:41] [PASSED] Kernel buffer object
[10:29:41] [PASSED] Shared buffer object
[10:29:41] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[10:29:41] ============== ttm_bo_init_reserved_mock_man ==============
[10:29:41] [PASSED] Buffer object for userspace
[10:29:41] [PASSED] Kernel buffer object
[10:29:41] [PASSED] Shared buffer object
[10:29:41] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[10:29:41] [PASSED] ttm_bo_init_reserved_resv
[10:29:41] ================== ttm_bo_validate_basic ==================
[10:29:41] [PASSED] Buffer object for userspace
[10:29:41] [PASSED] Kernel buffer object
[10:29:41] [PASSED] Shared buffer object
[10:29:41] ============== [PASSED] ttm_bo_validate_basic ==============
[10:29:41] [PASSED] ttm_bo_validate_invalid_placement
[10:29:41] ============= ttm_bo_validate_same_placement ==============
[10:29:41] [PASSED] System manager
[10:29:41] [PASSED] VRAM manager
[10:29:41] ========= [PASSED] ttm_bo_validate_same_placement ==========
[10:29:41] [PASSED] ttm_bo_validate_failed_alloc
[10:29:41] [PASSED] ttm_bo_validate_pinned
[10:29:41] [PASSED] ttm_bo_validate_busy_placement
[10:29:41] ================ ttm_bo_validate_multihop =================
[10:29:41] [PASSED] Buffer object for userspace
[10:29:41] [PASSED] Kernel buffer object
[10:29:41] [PASSED] Shared buffer object
[10:29:41] ============ [PASSED] ttm_bo_validate_multihop =============
[10:29:41] ========== ttm_bo_validate_no_placement_signaled ==========
[10:29:41] [PASSED] Buffer object in system domain, no page vector
[10:29:41] [PASSED] Buffer object in system domain with an existing page vector
[10:29:41] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[10:29:41] ======== ttm_bo_validate_no_placement_not_signaled ========
[10:29:41] [PASSED] Buffer object for userspace
[10:29:41] [PASSED] Kernel buffer object
[10:29:41] [PASSED] Shared buffer object
[10:29:41] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[10:29:41] [PASSED] ttm_bo_validate_move_fence_signaled
[10:29:41] ========= ttm_bo_validate_move_fence_not_signaled =========
[10:29:41] [PASSED] Waits for GPU
[10:29:41] [PASSED] Tries to lock straight away
[10:29:41] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[10:29:41] [PASSED] ttm_bo_validate_swapout
[10:29:41] [PASSED] ttm_bo_validate_happy_evict
[10:29:41] [PASSED] ttm_bo_validate_all_pinned_evict
[10:29:41] [PASSED] ttm_bo_validate_allowed_only_evict
[10:29:41] [PASSED] ttm_bo_validate_deleted_evict
[10:29:41] [PASSED] ttm_bo_validate_busy_domain_evict
[10:29:41] [PASSED] ttm_bo_validate_evict_gutting
[10:29:41] [PASSED] ttm_bo_validate_recrusive_evict
[10:29:41] ================= [PASSED] ttm_bo_validate =================
[10:29:41] ============================================================
[10:29:41] Testing complete. Ran 106 tests: passed: 106
[10:29:41] Elapsed time: 11.993s total, 1.859s configuring, 9.919s building, 0.177s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/dma-buf/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/dma-buf/.kunitconfig
[10:29:42] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:29:43] 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
[10:29:52] Starting KUnit Kernel (1/1)...
[10:29:52] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:29:52] ============= refcount_interrupt (4 subtests) ==============
[10:29:52] [PASSED] test_single_irq_change
[10:29:52] [PASSED] test_nested_irq_change
[10:29:52] [PASSED] test_multiple_irq_change
[10:29:52] [PASSED] test_irq_save
[10:29:52] =============== [PASSED] refcount_interrupt ================
[10:29:52] =============== dma-buf-fence (12 subtests) ================
[10:29:52] [PASSED] test_sanitycheck
[10:29:52] [PASSED] test_signaling
[10:29:52] [PASSED] test_add_callback
[10:29:52] [PASSED] test_late_add_callback
[10:29:52] [PASSED] test_rm_callback
[10:29:52] [PASSED] test_late_rm_callback
[10:29:52] [PASSED] test_status
[10:29:52] [PASSED] test_error
[10:29:52] [PASSED] test_wait
[10:29:52] [PASSED] test_wait_timeout
[10:29:52] [PASSED] test_stub
[10:29:52] [SKIPPED] test_race_signal_callback (requires at least 2 CPUs)
[10:29:52] ================== [PASSED] dma-buf-fence ==================
[10:29:52] ============ dma-buf-fence-chain (11 subtests) =============
[10:29:52] [PASSED] test_sanitycheck
[10:29:52] [PASSED] test_find_seqno
[10:29:52] [PASSED] test_find_signaled
[10:29:52] [PASSED] test_find_out_of_order
[10:29:57] [PASSED] test_find_gap
[10:29:57] [PASSED] test_find_race
[10:29:57] [PASSED] test_signal_forward
[10:29:57] [PASSED] test_signal_backward
[10:29:57] [PASSED] test_wait_forward
[10:29:57] [PASSED] test_wait_backward
[10:29:57] [PASSED] test_wait_random
[10:29:57] =============== [PASSED] dma-buf-fence-chain ===============
[10:29:57] ============ dma-buf-fence-unwrap (10 subtests) ============
[10:29:57] [PASSED] test_sanitycheck
[10:29:57] [PASSED] test_unwrap_array
[10:29:57] [PASSED] test_unwrap_chain
[10:29:57] [PASSED] test_unwrap_chain_array
[10:29:57] [PASSED] test_unwrap_merge
[10:29:57] [PASSED] test_unwrap_merge_duplicate
[10:29:57] [PASSED] test_unwrap_merge_seqno
[10:29:57] [PASSED] test_unwrap_merge_order
[10:29:57] [PASSED] test_unwrap_merge_complex
[10:29:57] [PASSED] test_unwrap_merge_complex_seqno
[10:29:57] ============== [PASSED] dma-buf-fence-unwrap ===============
[10:29:57] ================ dma-buf-resv (5 subtests) =================
[10:29:57] [PASSED] test_sanitycheck
[10:29:57] ===================== test_signaling ======================
[10:29:57] [PASSED] kernel
[10:29:57] [PASSED] write
[10:29:57] [PASSED] read
[10:29:57] [PASSED] bookkeep
[10:29:57] ================= [PASSED] test_signaling ==================
[10:29:57] ====================== test_for_each ======================
[10:29:57] [PASSED] kernel
[10:29:57] [PASSED] write
[10:29:57] [PASSED] read
[10:29:57] [PASSED] bookkeep
[10:29:57] ================== [PASSED] test_for_each ==================
[10:29:57] ================= test_for_each_unlocked ==================
[10:29:57] [PASSED] kernel
[10:29:57] [PASSED] write
[10:29:57] [PASSED] read
[10:29:57] [PASSED] bookkeep
[10:29:57] ============= [PASSED] test_for_each_unlocked ==============
[10:29:57] ===================== test_get_fences =====================
[10:29:57] [PASSED] kernel
[10:29:57] [PASSED] write
[10:29:57] [PASSED] read
[10:29:57] [PASSED] bookkeep
[10:29:57] ================= [PASSED] test_get_fences =================
[10:29:57] ================== [PASSED] dma-buf-resv ===================
[10:29:57] ============================================================
[10:29:57] Testing complete. Ran 54 tests: passed: 53, skipped: 1
[10:29:57] Elapsed time: 15.952s total, 1.823s configuring, 8.808s building, 5.283s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 21+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe/sysctrl: Clean up error handling in (rev5)
2026-09-07 10:53 [PATCH v7 0/9] drm/xe/sysctrl: Clean up error handling in Mallesh Koujalagi
` (11 preceding siblings ...)
2026-09-08 10:30 ` ✓ CI.KUnit: success for drm/xe/sysctrl: Clean up error handling in (rev5) Patchwork
@ 2026-09-08 11:28 ` Patchwork
2026-09-08 14:15 ` ✓ Xe.CI.FULL: " Patchwork
13 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-09-08 11:28 UTC (permalink / raw)
To: Mallesh, Koujalagi; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 6565 bytes --]
== Series Details ==
Series: drm/xe/sysctrl: Clean up error handling in (rev5)
URL : https://patchwork.freedesktop.org/series/172513/
State : success
== Summary ==
CI Bug Log - changes from xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e_BAT -> xe-pw-172513v5_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-172513v5_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-lnl-1: NOTRUN -> [SKIP][1] ([Intel XE#1466])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/bat-lnl-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-lnl-1: NOTRUN -> [SKIP][2] ([Intel XE#8265])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/bat-lnl-1/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-connector-state:
- bat-lnl-1: NOTRUN -> [SKIP][3] ([Intel XE#352]) +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/bat-lnl-1/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_hdmi_inject@inject-audio:
- bat-lnl-1: NOTRUN -> [SKIP][4] ([Intel XE#1470] / [Intel XE#2853])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/bat-lnl-1/igt@kms_hdmi_inject@inject-audio.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- bat-lnl-1: NOTRUN -> [SKIP][5] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/bat-lnl-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@xe_evict@evict-beng-small-cm:
- bat-lnl-1: NOTRUN -> [SKIP][6] ([Intel XE#6540] / [Intel XE#688]) +11 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/bat-lnl-1/igt@xe_evict@evict-beng-small-cm.html
* igt@xe_exec_balancer@no-exec-parallel-basic:
- bat-lnl-1: NOTRUN -> [SKIP][7] ([Intel XE#7482]) +17 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/bat-lnl-1/igt@xe_exec_balancer@no-exec-parallel-basic.html
* igt@xe_exec_multi_queue@priority:
- bat-lnl-1: NOTRUN -> [SKIP][8] ([Intel XE#8364]) +13 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/bat-lnl-1/igt@xe_exec_multi_queue@priority.html
* igt@xe_live_ktest@xe_bo:
- bat-lnl-1: NOTRUN -> [SKIP][9] ([Intel XE#2229]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/bat-lnl-1/igt@xe_live_ktest@xe_bo.html
* igt@xe_mmap@vram:
- bat-lnl-1: NOTRUN -> [SKIP][10] ([Intel XE#1416])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/bat-lnl-1/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xehpc:
- bat-lnl-1: NOTRUN -> [SKIP][11] ([Intel XE#1420] / [Intel XE#2838] / [Intel XE#7590])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/bat-lnl-1/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-lnl-1: NOTRUN -> [SKIP][12] ([Intel XE#7590] / [Intel XE#977])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/bat-lnl-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-lnl-1: NOTRUN -> [SKIP][13] ([Intel XE#7590] / [Intel XE#979])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/bat-lnl-1/igt@xe_pat@pat-index-xelpg.html
* igt@xe_sriov_flr@flr-vf1-clear:
- bat-lnl-1: NOTRUN -> [SKIP][14] ([Intel XE#3342])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/bat-lnl-1/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@xe_waitfence@engine:
- bat-ptl-2: [FAIL][15] ([Intel XE#9109]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/bat-ptl-2/igt@xe_waitfence@engine.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/bat-ptl-2/igt@xe_waitfence@engine.html
* igt@xe_waitfence@reltime:
- bat-ptl-2: [FAIL][17] ([Intel XE#9115]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/bat-ptl-2/igt@xe_waitfence@reltime.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/bat-ptl-2/igt@xe_waitfence@reltime.html
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#9109]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9109
[Intel XE#9115]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9115
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* Linux: xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e -> xe-pw-172513v5
IGT_9085: 9085
xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e: 06602b51786b6c2a0f97e58f0e0f168be1ada27e
xe-pw-172513v5: 172513v5
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/index.html
[-- Attachment #2: Type: text/html, Size: 7595 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread
* ✓ Xe.CI.FULL: success for drm/xe/sysctrl: Clean up error handling in (rev5)
2026-09-07 10:53 [PATCH v7 0/9] drm/xe/sysctrl: Clean up error handling in Mallesh Koujalagi
` (12 preceding siblings ...)
2026-09-08 11:28 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-09-08 14:15 ` Patchwork
13 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-09-08 14:15 UTC (permalink / raw)
To: Mallesh, Koujalagi; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 75627 bytes --]
== Series Details ==
Series: drm/xe/sysctrl: Clean up error handling in (rev5)
URL : https://patchwork.freedesktop.org/series/172513/
State : success
== Summary ==
CI Bug Log - changes from xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e_FULL -> xe-pw-172513v5_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-172513v5_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@info:
- shard-lnl: [PASS][1] -> [SKIP][2] ([Intel XE#2134]) +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-7/igt@fbdev@info.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@fbdev@info.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-2/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#1124]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_bw@linear-tiling-4-displays-target-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#367]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-1/igt@kms_bw@linear-tiling-4-displays-target-3840x2160p.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#3432])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2887]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-2/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2252])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-4/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_color@ctm-0-75:
- shard-lnl: [PASS][9] -> [SKIP][10] ([Intel XE#3297])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-7/igt@kms_color@ctm-0-75.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_color@ctm-0-75.html
* igt@kms_color_pipeline@plane-lut1d-lut1d:
- shard-lnl: [PASS][11] -> [SKIP][12] ([Intel XE#7006])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-5/igt@kms_color_pipeline@plane-lut1d-lut1d.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_color_pipeline@plane-lut1d-lut1d.html
* igt@kms_content_protection@suspend-resume@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][13] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-2/igt@kms_content_protection@suspend-resume@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2320])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_dsc@dsc-basic-ultrajoiner:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#8265])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-2/igt@kms_dsc@dsc-basic-ultrajoiner.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-lnl: [PASS][16] -> [SKIP][17] ([Intel XE#8680]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-7/igt@kms_fbcon_fbt@psr-suspend.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@psr2:
- shard-lnl: [PASS][18] -> [SKIP][19] ([Intel XE#1135] / [Intel XE#6128])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-7/igt@kms_feature_discovery@psr2.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [PASS][20] -> [FAIL][21] ([Intel XE#301]) +2 other tests fail
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@plain-flip-ts-check:
- shard-lnl: [PASS][22] -> [SKIP][23] ([Intel XE#2482]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-5/igt@kms_flip@plain-flip-ts-check.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_flip@plain-flip-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#7178] / [Intel XE#7351])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1397] / [Intel XE#7385] / [Intel XE#9144]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling:
- shard-lnl: [PASS][26] -> [SKIP][27] ([Intel XE#1745] / [Intel XE#9144])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html
* igt@kms_flip_scaled_crc@flip-p010-4tile-to-p016-4tile:
- shard-lnl: [PASS][28] -> [SKIP][29] ([Intel XE#9144])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-7/igt@kms_flip_scaled_crc@flip-p010-4tile-to-p016-4tile.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_flip_scaled_crc@flip-p010-4tile-to-p016-4tile.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#4141]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2352] / [Intel XE#7399])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2311]) +18 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7061])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render:
- shard-lnl: [PASS][34] -> [SKIP][35] ([Intel XE#7779]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-lnl: [PASS][36] -> [SKIP][37] ([Intel XE#2548] / [Intel XE#7779]) +6 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2313]) +18 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_invalid_mode@uint-max-clock:
- shard-lnl: [PASS][39] -> [SKIP][40] ([Intel XE#2568]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-5/igt@kms_invalid_mode@uint-max-clock.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_invalid_mode@uint-max-clock.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#6911] / [Intel XE#7466])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2486])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-2/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7283])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-4/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_plane_cursor@primary:
- shard-lnl: [PASS][44] -> [SKIP][45] ([Intel XE#9125]) +26 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-7/igt@kms_plane_cursor@primary.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_plane_cursor@primary.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#5021] / [Intel XE#7377])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers:
- shard-lnl: [PASS][47] -> [SKIP][48] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) +5 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-b:
- shard-lnl: [PASS][49] -> [SKIP][50] ([Intel XE#2763] / [Intel XE#6886]) +5 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-b.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2763] / [Intel XE#6886]) +9 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#1489]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#4608])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#4608] / [Intel XE#7304])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1.html
* igt@kms_psr@fbc-psr2-dpms@edp-1:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1406] / [Intel XE#4609] / [Intel XE#7345])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_psr@fbc-psr2-dpms@edp-1.html
* igt@kms_psr@psr-no-drrs:
- shard-lnl: [PASS][56] -> [SKIP][57] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-5/igt@kms_psr@psr-no-drrs.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_psr@psr-no-drrs.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-2/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2330] / [Intel XE#5813])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_setmode@basic:
- shard-lnl: [PASS][60] -> [SKIP][61] ([Intel XE#1435] / [Intel XE#9142])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-5/igt@kms_setmode@basic.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_setmode@basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#1499]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-4/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#6599])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-4/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][64] -> [INCOMPLETE][65] ([Intel XE#6321] / [Intel XE#8355])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue.html
* igt@xe_exec_fault_mode@atomic-many:
- shard-bmg: [PASS][67] -> [FAIL][68] ([Intel XE#8578])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-5/igt@xe_exec_fault_mode@atomic-many.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-6/igt@xe_exec_fault_mode@atomic-many.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#8374]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-1/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-dyn-priority-smem:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#8364]) +12 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-dyn-priority-smem.html
* igt@xe_exec_threads@threads-hang-userptr-invalidate-race:
- shard-lnl: [PASS][71] -> [FAIL][72] ([Intel XE#9096])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-7/igt@xe_exec_threads@threads-hang-userptr-invalidate-race.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@xe_exec_threads@threads-hang-userptr-invalidate-race.html
* igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#8378]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early:
- shard-bmg: [PASS][74] -> [ABORT][75] ([Intel XE#8007]) +1 other test abort
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
* igt@xe_multigpu_svm@mgpu-pagefault-prefetch:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#6964])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-1/igt@xe_multigpu_svm@mgpu-pagefault-prefetch.html
* igt@xe_page_reclaim@basic-mixed:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#7793]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-2/igt@xe_page_reclaim@basic-mixed.html
* igt@xe_pat@pat-index-xehpc:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#1420] / [Intel XE#7590])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-2/igt@xe_pat@pat-index-xehpc.html
#### Possible fixes ####
* igt@fbdev@unaligned-write:
- shard-lnl: [SKIP][79] ([Intel XE#2134]) -> [PASS][80]
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@fbdev@unaligned-write.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@fbdev@unaligned-write.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][81] ([Intel XE#7084] / [Intel XE#8150]) -> [PASS][82] +1 other test pass
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_color@ctm-green-to-red:
- shard-lnl: [SKIP][83] ([Intel XE#3297]) -> [PASS][84] +1 other test pass
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_color@ctm-green-to-red.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_color@ctm-green-to-red.html
* igt@kms_color_pipeline@plane-ctm3x4-lut1d:
- shard-lnl: [SKIP][85] ([Intel XE#7006]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_color_pipeline@plane-ctm3x4-lut1d.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_color_pipeline@plane-ctm3x4-lut1d.html
* igt@kms_feature_discovery@psr1:
- shard-lnl: [SKIP][87] ([Intel XE#1135]) -> [PASS][88]
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_feature_discovery@psr1.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-lnl: [SKIP][89] ([Intel XE#2482]) -> [PASS][90] +3 other tests pass
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_flip@basic-flip-vs-wf_vblank.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [FAIL][91] ([Intel XE#301]) -> [PASS][92]
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-lnl: [SKIP][93] ([Intel XE#7779]) -> [PASS][94] +2 other tests pass
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw:
- shard-lnl: [SKIP][95] ([Intel XE#2548] / [Intel XE#7779]) -> [PASS][96] +10 other tests pass
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
* igt@kms_invalid_mode@int-max-clock:
- shard-lnl: [SKIP][97] ([Intel XE#2568]) -> [PASS][98]
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_invalid_mode@int-max-clock.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_invalid_mode@int-max-clock.html
* igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping:
- shard-lnl: [SKIP][99] ([Intel XE#7250] / [Intel XE#9128]) -> [PASS][100]
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping.html
* igt@kms_plane@plane-panning-top-left:
- shard-lnl: [SKIP][101] ([Intel XE#9128]) -> [PASS][102]
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_plane@plane-panning-top-left.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_plane@plane-panning-top-left.html
* igt@kms_plane_scaling@invalid-num-scalers:
- shard-lnl: [SKIP][103] ([Intel XE#3307] / [Intel XE#7687] / [Intel XE#9125]) -> [PASS][104]
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_plane_scaling@invalid-num-scalers.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_plane_scaling@invalid-num-scalers.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-lnl: [SKIP][105] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) -> [PASS][106] +3 other tests pass
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a:
- shard-lnl: [SKIP][107] ([Intel XE#2763] / [Intel XE#6886]) -> [PASS][108] +3 other tests pass
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-lnl: [SKIP][109] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) -> [PASS][110]
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_pm_rpm@dpms-lpsp.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-lnl: [SKIP][111] ([Intel XE#2850] / [Intel XE#929]) -> [PASS][112] +3 other tests pass
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_psr@fbc-psr-sprite-render.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_setmode@basic-no-cpu-idle:
- shard-lnl: [SKIP][113] ([Intel XE#9142]) -> [PASS][114]
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_setmode@basic-no-cpu-idle.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_setmode@basic-no-cpu-idle.html
* igt@kms_vblank@query-forked:
- shard-lnl: [SKIP][115] ([Intel XE#9125]) -> [PASS][116] +21 other tests pass
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_vblank@query-forked.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_vblank@query-forked.html
* igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race:
- shard-lnl: [FAIL][117] ([Intel XE#9096]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-8/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-4/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- shard-bmg: [ABORT][119] ([Intel XE#8007]) -> [PASS][120]
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [SKIP][145], [PASS][146]) ([Intel XE#2457] / [Intel XE#7405]) -> ([PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-8/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-6/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-10/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-2/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-10/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-3/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-8/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-1/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-4/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-7/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-5/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-5/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-9/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-9/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-4/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-8/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-6/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-5/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-3/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-3/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-2/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-7/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-2/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-1/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-10/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-1/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-4/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-4/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-8/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-8/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-10/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-10/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-1/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-1/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-1/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-7/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-7/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-9/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-9/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-9/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-2/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-2/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-2/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-6/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-6/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-6/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-3/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-3/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-3/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-5/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-5/igt@xe_module_load@load.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-lnl: [SKIP][172] ([Intel XE#9125]) -> [SKIP][173] ([Intel XE#1407]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-lnl: [SKIP][174] ([Intel XE#1407]) -> [SKIP][175] ([Intel XE#9125])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-lnl: [SKIP][176] ([Intel XE#7059] / [Intel XE#7085]) -> [SKIP][177] ([Intel XE#9125])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
- shard-lnl: [SKIP][178] ([Intel XE#9125]) -> [SKIP][179] ([Intel XE#1124]) +5 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-lnl: [SKIP][180] ([Intel XE#1124]) -> [SKIP][181] ([Intel XE#9125]) +5 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_bw@linear-tiling-2-displays-target-2160x1440p:
- shard-lnl: [SKIP][182] ([Intel XE#367]) -> [SKIP][183] ([Intel XE#9125])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-7/igt@kms_bw@linear-tiling-2-displays-target-2160x1440p.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_bw@linear-tiling-2-displays-target-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-target-2560x1440p:
- shard-lnl: [SKIP][184] ([Intel XE#9125]) -> [SKIP][185] ([Intel XE#8365])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_bw@linear-tiling-4-displays-target-2560x1440p.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_bw@linear-tiling-4-displays-target-2560x1440p.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs:
- shard-lnl: [SKIP][186] ([Intel XE#9125]) -> [SKIP][187] ([Intel XE#2887]) +7 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-lnl: [SKIP][188] ([Intel XE#9125]) -> [SKIP][189] ([Intel XE#3432])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-lnl: [SKIP][190] ([Intel XE#3432]) -> [SKIP][191] ([Intel XE#9125])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-lnl: [SKIP][192] ([Intel XE#2887]) -> [SKIP][193] ([Intel XE#9125]) +7 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-lnl: [SKIP][194] ([Intel XE#7008]) -> [SKIP][195] ([Intel XE#9125])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-7/igt@kms_cdclk@mode-transition-all-outputs.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_content_protection@atomic-dpms:
- shard-lnl: [SKIP][196] ([Intel XE#7642]) -> [SKIP][197] ([Intel XE#9125]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-7/igt@kms_content_protection@atomic-dpms.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-lnl: [SKIP][198] ([Intel XE#6974]) -> [SKIP][199] ([Intel XE#9125])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-5/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-lnl: [SKIP][200] ([Intel XE#9125]) -> [SKIP][201] ([Intel XE#307] / [Intel XE#6974])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_content_protection@dp-mst-type-1.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-lnl: [SKIP][202] ([Intel XE#9125]) -> [SKIP][203] ([Intel XE#7642])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_content_protection@uevent-hdcp14.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-lnl: [SKIP][204] ([Intel XE#2321] / [Intel XE#7355]) -> [SKIP][205] ([Intel XE#9125])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-lnl: [SKIP][206] ([Intel XE#9125]) -> [SKIP][207] ([Intel XE#1424]) +2 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_cursor_crc@cursor-random-64x21.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-lnl: [SKIP][208] ([Intel XE#9125]) -> [SKIP][209] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-lnl: [SKIP][210] ([Intel XE#1424]) -> [SKIP][211] ([Intel XE#9125]) +3 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-64x21.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-lnl: [SKIP][212] ([Intel XE#9125]) -> [SKIP][213] ([Intel XE#309] / [Intel XE#7343])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-lnl: [SKIP][214] ([Intel XE#309] / [Intel XE#7343]) -> [SKIP][215] ([Intel XE#9125])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-lnl: [SKIP][216] ([Intel XE#9125]) -> [SKIP][217] ([Intel XE#323] / [Intel XE#6035])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_display_modes@extended-mode-basic:
- shard-lnl: [SKIP][218] ([Intel XE#4302]) -> [SKIP][219] ([Intel XE#9125])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-5/igt@kms_display_modes@extended-mode-basic.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback:
- shard-lnl: [SKIP][220] ([Intel XE#9125]) -> [SKIP][221] ([Intel XE#9009])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-lnl: [SKIP][222] ([Intel XE#9125]) -> [SKIP][223] ([Intel XE#8265]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner:
- shard-lnl: [SKIP][224] ([Intel XE#8265]) -> [SKIP][225] ([Intel XE#9125]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-7/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-lnl: [SKIP][226] ([Intel XE#1745] / [Intel XE#9144]) -> [SKIP][227] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385] / [Intel XE#9144]) +2 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move:
- shard-lnl: [SKIP][228] ([Intel XE#6312] / [Intel XE#651]) -> [SKIP][229] ([Intel XE#2548] / [Intel XE#7779]) +6 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-lnl: [SKIP][230] ([Intel XE#2548] / [Intel XE#7779]) -> [SKIP][231] ([Intel XE#6312] / [Intel XE#651]) +4 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-lnl: [SKIP][232] ([Intel XE#656] / [Intel XE#7905]) -> [SKIP][233] ([Intel XE#2548] / [Intel XE#7779]) +18 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
- shard-lnl: [SKIP][234] ([Intel XE#2548] / [Intel XE#7779]) -> [SKIP][235] ([Intel XE#656] / [Intel XE#7905]) +21 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt:
- shard-lnl: [SKIP][236] ([Intel XE#7779]) -> [SKIP][237] ([Intel XE#6312]) +5 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-onoff:
- shard-lnl: [SKIP][238] ([Intel XE#6312]) -> [SKIP][239] ([Intel XE#7779]) +7 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-onoff.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-mmap-wc:
- shard-lnl: [SKIP][240] ([Intel XE#7779]) -> [SKIP][241] ([Intel XE#7061]) +4 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-mmap-wc.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y:
- shard-lnl: [SKIP][242] ([Intel XE#7779]) -> [SKIP][243] ([Intel XE#7399])
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-pgflip-blt:
- shard-lnl: [SKIP][244] ([Intel XE#7779]) -> [SKIP][245] ([Intel XE#7865]) +11 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-pgflip-blt.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-suspend:
- shard-lnl: [SKIP][246] ([Intel XE#7865]) -> [SKIP][247] ([Intel XE#7779]) +13 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-suspend.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-suspend.html
* igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-lnl: [SKIP][248] ([Intel XE#7905]) -> [SKIP][249] ([Intel XE#7779]) +22 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-5/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-mmap-wc:
- shard-lnl: [SKIP][250] ([Intel XE#7061]) -> [SKIP][251] ([Intel XE#7779]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-7/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-mmap-wc.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-wc:
- shard-lnl: [SKIP][252] ([Intel XE#7779]) -> [SKIP][253] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-wc.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move:
- shard-lnl: [SKIP][254] ([Intel XE#7779]) -> [SKIP][255] ([Intel XE#7905]) +20 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html
* igt@kms_hdr@brightness-with-hdr:
- shard-lnl: [SKIP][256] ([Intel XE#9125]) -> [SKIP][257] ([Intel XE#3374] / [Intel XE#3544])
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_hdr@brightness-with-hdr.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-lnl: [SKIP][258] ([Intel XE#1503]) -> [SKIP][259] ([Intel XE#9125])
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-7/igt@kms_hdr@invalid-metadata-sizes.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-lnl: [SKIP][260] ([Intel XE#9125]) -> [SKIP][261] ([Intel XE#4596] / [Intel XE#5854])
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_plane_multiple@2x-tiling-4.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-lnl: [SKIP][262] ([Intel XE#4596] / [Intel XE#5854]) -> [SKIP][263] ([Intel XE#9125])
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-5/igt@kms_plane_multiple@2x-tiling-y.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-lnl: [SKIP][264] ([Intel XE#9125]) -> [SKIP][265] ([Intel XE#5020] / [Intel XE#7348])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_plane_multiple@tiling-yf.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-lnl: [SKIP][266] ([Intel XE#309] / [Intel XE#7343]) -> [SKIP][267] ([Intel XE#7343] / [Intel XE#7687] / [Intel XE#9125])
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-lnl: [SKIP][268] ([Intel XE#2763] / [Intel XE#6886]) -> [SKIP][269] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) +1 other test skip
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-lnl: [SKIP][270] ([Intel XE#2893] / [Intel XE#7304]) -> [SKIP][271] ([Intel XE#1489]) +2 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-lnl: [SKIP][272] ([Intel XE#1489]) -> [SKIP][273] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304])
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-lnl: [SKIP][274] ([Intel XE#1489]) -> [SKIP][275] ([Intel XE#2893] / [Intel XE#7304]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: [SKIP][276] ([Intel XE#1128] / [Intel XE#7413]) -> [SKIP][277] ([Intel XE#1122] / [Intel XE#7429])
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-lnl: [SKIP][278] ([Intel XE#1122] / [Intel XE#7429]) -> [SKIP][279] ([Intel XE#1128] / [Intel XE#7413])
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_psr2_su@page_flip-xrgb8888.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-sprite-blt:
- shard-lnl: [SKIP][280] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][281] ([Intel XE#1406])
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_psr@fbc-pr-sprite-blt.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_psr@fbc-pr-sprite-blt.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-lnl: [SKIP][282] ([Intel XE#1406]) -> [SKIP][283] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-5/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-lnl: [SKIP][284] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][285] ([Intel XE#1406] / [Intel XE#7345])
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_psr@fbc-psr2-dpms.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-lnl: [SKIP][286] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) -> [SKIP][287] ([Intel XE#9125]) +3 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-lnl: [SKIP][288] ([Intel XE#9125]) -> [SKIP][289] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_rotation_crc@primary-rotation-90.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-1/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-lnl: [SKIP][290] ([Intel XE#9125]) -> [SKIP][291] ([Intel XE#1127] / [Intel XE#5813])
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-lnl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-lnl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][292] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][293] ([Intel XE#2426] / [Intel XE#5848])
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][294] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][295] ([Intel XE#2509] / [Intel XE#7437])
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_wedged@basic-wedged:
- shard-bmg: [ABORT][296] ([Intel XE#8591] / [Intel XE#8963]) -> [DMESG-WARN][297] ([Intel XE#8963])
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e/shard-bmg-2/igt@xe_wedged@basic-wedged.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/shard-bmg-2/igt@xe_wedged@basic-wedged.html
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
[Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3297]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3297
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006
[Intel XE#7008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7008
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7250]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7250
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7413
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7687
[Intel XE#7779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7779
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8365]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8365
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8578
[Intel XE#8591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8591
[Intel XE#8680]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8680
[Intel XE#8963]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8963
[Intel XE#9009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9009
[Intel XE#9096]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9096
[Intel XE#9125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9125
[Intel XE#9128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9128
[Intel XE#9142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9142
[Intel XE#9144]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9144
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
Build changes
-------------
* Linux: xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e -> xe-pw-172513v5
IGT_9085: 9085
xe-5704-06602b51786b6c2a0f97e58f0e0f168be1ada27e: 06602b51786b6c2a0f97e58f0e0f168be1ada27e
xe-pw-172513v5: 172513v5
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-172513v5/index.html
[-- Attachment #2: Type: text/html, Size: 91282 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread
end of thread, other threads:[~2026-09-08 14:15 UTC | newest]
Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-07 10:53 [PATCH v7 0/9] drm/xe/sysctrl: Clean up error handling in Mallesh Koujalagi
2026-09-07 10:53 ` [PATCH v7 1/9] drm/xe/sysctrl: Return error codes from sysctrl_wait_bit_clear() Mallesh Koujalagi
2026-09-07 10:53 ` [PATCH v7 2/9] drm/xe/sysctrl: Return error codes from sysctrl_wait_bit_set() Mallesh Koujalagi
2026-09-07 10:53 ` [PATCH v7 3/9] drm/xe/sysctrl: Make sysctrl_write_frame() void Mallesh Koujalagi
2026-09-07 10:53 ` [PATCH v7 4/9] drm/xe/sysctrl: Make sysctrl_read_frame() void Mallesh Koujalagi
2026-09-07 10:53 ` [PATCH v7 5/9] drm/xe/sysctrl: Use xe_assert() for payload size validation Mallesh Koujalagi
2026-09-07 10:53 ` [PATCH v7 6/9] drm/xe/sysctrl: Replace FIELD_GET() with REG_FIELD_GET() Mallesh Koujalagi
2026-09-07 11:04 ` sashiko-bot
2026-09-07 11:47 ` Michal Wajdeczko
2026-09-07 12:07 ` Mallesh, Koujalagi
2026-09-07 14:07 ` Michal Wajdeczko
2026-09-08 7:36 ` Mallesh, Koujalagi
2026-09-07 10:53 ` [PATCH v7 7/9] drm/xe/sysctrl: Improve firmware response error logging Mallesh Koujalagi
2026-09-07 11:03 ` sashiko-bot
2026-09-07 10:53 ` [PATCH v7 8/9] drm/xe/sysctrl: Log group and command ID on mailbox failure Mallesh Koujalagi
2026-09-07 10:53 ` [PATCH v7 9/9] drm/xe/sysctrl: Report 'System Controller event' error using SIGID Mallesh Koujalagi
2026-09-07 12:19 ` ✓ CI.KUnit: success for drm/xe/sysctrl: Clean up error handling in (rev4) Patchwork
2026-09-08 8:05 ` Patchwork
2026-09-08 10:30 ` ✓ CI.KUnit: success for drm/xe/sysctrl: Clean up error handling in (rev5) Patchwork
2026-09-08 11:28 ` ✓ Xe.CI.BAT: " Patchwork
2026-09-08 14:15 ` ✓ Xe.CI.FULL: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox