Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] Re-instate GuC logs in debugfs & devcoredump
@ 2025-01-22 21:45 John.C.Harrison
  2025-01-22 21:45 ` [PATCH 1/3] drm/xe/guc: Explicitly name each chunk of GuC log data in a dump John.C.Harrison
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: John.C.Harrison @ 2025-01-22 21:45 UTC (permalink / raw)
  To: Intel-Xe; +Cc: John Harrison

From: John Harrison <John.C.Harrison@Intel.com>

Remove the appareance of line wrapping in the GuC log output to
prevent confusing a mesa tool and re-instate GuC logs in both
devcoredump and debugfs.

Signed-off-by: John Harrison <John.C.Harrison@Intel.com>


John Harrison (3):
  drm/xe/guc: Explicitly name each chunk of GuC log data in a dump
  drm/xe/devcoredump: Temporarily disable the line wrapping of ASCII85
    output
  Partially revert "drm/xe: Revert some changes that break a mesa debug
    tool"

 drivers/gpu/drm/xe/xe_devcoredump.c | 12 ++----------
 drivers/gpu/drm/xe/xe_guc_log.c     |  4 +++-
 2 files changed, 5 insertions(+), 11 deletions(-)

-- 
2.47.0


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH 1/3] drm/xe/guc: Explicitly name each chunk of GuC log data in a dump
  2025-01-22 21:45 [PATCH 0/3] Re-instate GuC logs in debugfs & devcoredump John.C.Harrison
@ 2025-01-22 21:45 ` John.C.Harrison
  2025-01-22 21:46 ` [PATCH 2/3] drm/xe/devcoredump: Temporarily disable the line wrapping of ASCII85 output John.C.Harrison
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: John.C.Harrison @ 2025-01-22 21:45 UTC (permalink / raw)
  To: Intel-Xe; +Cc: John Harrison

From: John Harrison <John.C.Harrison@Intel.com>

A mesa devcoredump decoding tool does not cope with line wrapped
ASCII85 data. The GuC log is saved and printed in chunks. Only the
first chunk was named, thus subsequent chunks were effectively line
wrapped data. So add names to all the chunks instead.

Signed-off-by: John Harrison <John.C.Harrison@Intel.com>
---
 drivers/gpu/drm/xe/xe_guc_log.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/xe_guc_log.c b/drivers/gpu/drm/xe/xe_guc_log.c
index 80151ff6a71f..e3e3958b243a 100644
--- a/drivers/gpu/drm/xe/xe_guc_log.c
+++ b/drivers/gpu/drm/xe/xe_guc_log.c
@@ -207,8 +207,10 @@ void xe_guc_log_snapshot_print(struct xe_guc_log_snapshot *snapshot, struct drm_
 	remain = snapshot->size;
 	for (i = 0; i < snapshot->num_chunks; i++) {
 		size_t size = min(GUC_LOG_CHUNK_SIZE, remain);
+		char name[20];
 
-		xe_print_blob_ascii85(p, i ? NULL : "Log data", snapshot->copy[i], 0, size);
+		snprintf(name, sizeof(name), "Log data %d", i);
+		xe_print_blob_ascii85(p, name, snapshot->copy[i], 0, size);
 		remain -= size;
 	}
 }
-- 
2.47.0


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 2/3] drm/xe/devcoredump: Temporarily disable the line wrapping of ASCII85 output
  2025-01-22 21:45 [PATCH 0/3] Re-instate GuC logs in debugfs & devcoredump John.C.Harrison
  2025-01-22 21:45 ` [PATCH 1/3] drm/xe/guc: Explicitly name each chunk of GuC log data in a dump John.C.Harrison
@ 2025-01-22 21:46 ` John.C.Harrison
  2025-01-22 21:46 ` [PATCH 3/3] Partially revert "drm/xe: Revert some changes that break a mesa debug tool" John.C.Harrison
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: John.C.Harrison @ 2025-01-22 21:46 UTC (permalink / raw)
  To: Intel-Xe; +Cc: John Harrison

From: John Harrison <John.C.Harrison@Intel.com>

Line wrapping is required for doing emergency dumps to dmesg. However,
it currently breaks a mesa debug tool. So temporarily disable the wraps.

Signed-off-by: John Harrison <John.C.Harrison@Intel.com>
---
 drivers/gpu/drm/xe/xe_devcoredump.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/xe_devcoredump.c b/drivers/gpu/drm/xe/xe_devcoredump.c
index 81dc7795c065..18a7ddb561d8 100644
--- a/drivers/gpu/drm/xe/xe_devcoredump.c
+++ b/drivers/gpu/drm/xe/xe_devcoredump.c
@@ -462,7 +462,8 @@ void xe_print_blob_ascii85(struct drm_printer *p, const char *prefix,
 		line_pos += strlen(line_buff + line_pos);
 
 		if ((line_pos + MIN_SPACE) >= DMESG_MAX_LINE_LEN) {
-			line_buff[line_pos++] = '\n';
+			/* Line wrapping currently breaks a mesa debug tool. */
+			/* line_buff[line_pos++] = '\n'; */
 			line_buff[line_pos++] = 0;
 
 			drm_puts(p, line_buff);
-- 
2.47.0


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 3/3] Partially revert "drm/xe: Revert some changes that break a mesa debug tool"
  2025-01-22 21:45 [PATCH 0/3] Re-instate GuC logs in debugfs & devcoredump John.C.Harrison
  2025-01-22 21:45 ` [PATCH 1/3] drm/xe/guc: Explicitly name each chunk of GuC log data in a dump John.C.Harrison
  2025-01-22 21:46 ` [PATCH 2/3] drm/xe/devcoredump: Temporarily disable the line wrapping of ASCII85 output John.C.Harrison
@ 2025-01-22 21:46 ` John.C.Harrison
  2025-01-22 21:54 ` ✓ CI.Patch_applied: success for Re-instate GuC logs in debugfs & devcoredump Patchwork
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: John.C.Harrison @ 2025-01-22 21:46 UTC (permalink / raw)
  To: Intel-Xe; +Cc: John Harrison

From: John Harrison <John.C.Harrison@Intel.com>

This reverts part of commit a53da2fb25a31f4fb8eaeb93c7b1134fc14fd209.

The KMD has been updated to avoid the line wrapping issue of the mesa
tool. The section heading issue has not been fixed yet, however. So
that part of the original revert remains.

Signed-off-by: John Harrison <John.C.Harrison@Intel.com>
---
 drivers/gpu/drm/xe/xe_devcoredump.c | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_devcoredump.c b/drivers/gpu/drm/xe/xe_devcoredump.c
index 18a7ddb561d8..81a461d62770 100644
--- a/drivers/gpu/drm/xe/xe_devcoredump.c
+++ b/drivers/gpu/drm/xe/xe_devcoredump.c
@@ -420,15 +420,6 @@ void xe_print_blob_ascii85(struct drm_printer *p, const char *prefix,
 	char buff[ASCII85_BUFSZ], *line_buff;
 	size_t line_pos = 0;
 
-	/*
-	 * Splitting blobs across multiple lines is not compatible with the mesa
-	 * debug decoder tool. Note that even dropping the explicit '\n' below
-	 * doesn't help because the GuC log is so big some underlying implementation
-	 * still splits the lines at 512K characters. So just bail completely for
-	 * the moment.
-	 */
-	return;
-
 #define DMESG_MAX_LINE_LEN	800
 #define MIN_SPACE		(ASCII85_BUFSZ + 2)		/* 85 + "\n\0" */
 
-- 
2.47.0


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* ✓ CI.Patch_applied: success for Re-instate GuC logs in debugfs & devcoredump
  2025-01-22 21:45 [PATCH 0/3] Re-instate GuC logs in debugfs & devcoredump John.C.Harrison
                   ` (2 preceding siblings ...)
  2025-01-22 21:46 ` [PATCH 3/3] Partially revert "drm/xe: Revert some changes that break a mesa debug tool" John.C.Harrison
@ 2025-01-22 21:54 ` Patchwork
  2025-01-22 21:54 ` ✗ CI.checkpatch: warning " Patchwork
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-01-22 21:54 UTC (permalink / raw)
  To: john.c.harrison; +Cc: intel-xe

== Series Details ==

Series: Re-instate GuC logs in debugfs & devcoredump
URL   : https://patchwork.freedesktop.org/series/143864/
State : success

== Summary ==

=== Applying kernel patches on branch 'drm-tip' with base: ===
Base commit: d577d9e67e5a drm-tip: 2025y-01m-22d-17h-26m-51s UTC integration manifest
=== git am output follows ===
Applying: drm/xe/guc: Explicitly name each chunk of GuC log data in a dump
Applying: drm/xe/devcoredump: Temporarily disable the line wrapping of ASCII85 output
Applying: Partially revert "drm/xe: Revert some changes that break a mesa debug tool"



^ permalink raw reply	[flat|nested] 8+ messages in thread

* ✗ CI.checkpatch: warning for Re-instate GuC logs in debugfs & devcoredump
  2025-01-22 21:45 [PATCH 0/3] Re-instate GuC logs in debugfs & devcoredump John.C.Harrison
                   ` (3 preceding siblings ...)
  2025-01-22 21:54 ` ✓ CI.Patch_applied: success for Re-instate GuC logs in debugfs & devcoredump Patchwork
@ 2025-01-22 21:54 ` Patchwork
  2025-01-22 21:55 ` ✓ CI.KUnit: success " Patchwork
  2025-01-22 22:02 ` ✗ CI.Build: failure " Patchwork
  6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-01-22 21:54 UTC (permalink / raw)
  To: john.c.harrison; +Cc: intel-xe

== Series Details ==

Series: Re-instate GuC logs in debugfs & devcoredump
URL   : https://patchwork.freedesktop.org/series/143864/
State : warning

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
30ab6715fc09baee6cc14cb3c89ad8858688d474
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 55b915b580d11ee3631fc956d8cfe4122aef6b45
Author: John Harrison <John.C.Harrison@Intel.com>
Date:   Wed Jan 22 13:46:01 2025 -0800

    Partially revert "drm/xe: Revert some changes that break a mesa debug tool"
    
    This reverts part of commit a53da2fb25a31f4fb8eaeb93c7b1134fc14fd209.
    
    The KMD has been updated to avoid the line wrapping issue of the mesa
    tool. The section heading issue has not been fixed yet, however. So
    that part of the original revert remains.
    
    Signed-off-by: John Harrison <John.C.Harrison@Intel.com>
+ /mt/dim checkpatch d577d9e67e5ac149fcd4442327210b831cddb308 drm-intel
33f5ee1348b0 drm/xe/guc: Explicitly name each chunk of GuC log data in a dump
0c695f48abfa drm/xe/devcoredump: Temporarily disable the line wrapping of ASCII85 output
55b915b580d1 Partially revert "drm/xe: Revert some changes that break a mesa debug tool"
-:7: ERROR:GIT_COMMIT_ID: Please use git commit description style 'commit <12+ chars of sha1> ("<title line>")' - ie: 'commit a53da2fb25a3 ("drm/xe: Revert some changes that break a mesa debug tool")'
#7: 
This reverts part of commit a53da2fb25a31f4fb8eaeb93c7b1134fc14fd209.

total: 1 errors, 0 warnings, 0 checks, 15 lines checked



^ permalink raw reply	[flat|nested] 8+ messages in thread

* ✓ CI.KUnit: success for Re-instate GuC logs in debugfs & devcoredump
  2025-01-22 21:45 [PATCH 0/3] Re-instate GuC logs in debugfs & devcoredump John.C.Harrison
                   ` (4 preceding siblings ...)
  2025-01-22 21:54 ` ✗ CI.checkpatch: warning " Patchwork
@ 2025-01-22 21:55 ` Patchwork
  2025-01-22 22:02 ` ✗ CI.Build: failure " Patchwork
  6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-01-22 21:55 UTC (permalink / raw)
  To: john.c.harrison; +Cc: intel-xe

== Series Details ==

Series: Re-instate GuC logs in debugfs & devcoredump
URL   : https://patchwork.freedesktop.org/series/143864/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[21:54:48] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:54:52] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json ARCH=um O=.kunit --jobs=48
../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes]
  156 | u64 ioread64_lo_hi(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~
../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes]
  163 | u64 ioread64_hi_lo(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~
../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes]
  170 | u64 ioread64be_lo_hi(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~~~
../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes]
  178 | u64 ioread64be_hi_lo(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~~~
../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes]
  264 | void iowrite64_lo_hi(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~
../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes]
  272 | void iowrite64_hi_lo(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~
../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes]
  280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~~~
../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes]
  288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~~~

[21:55:18] Starting KUnit Kernel (1/1)...
[21:55:18] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:55:18] ================== guc_buf (11 subtests) ===================
[21:55:18] [PASSED] test_smallest
[21:55:18] [PASSED] test_largest
[21:55:18] [PASSED] test_granular
[21:55:18] [PASSED] test_unique
[21:55:18] [PASSED] test_overlap
[21:55:18] [PASSED] test_reusable
[21:55:18] [PASSED] test_too_big
[21:55:18] [PASSED] test_flush
[21:55:18] [PASSED] test_lookup
[21:55:18] [PASSED] test_data
[21:55:18] [PASSED] test_class
[21:55:18] ===================== [PASSED] guc_buf =====================
[21:55:18] =================== guc_dbm (7 subtests) ===================
[21:55:18] [PASSED] test_empty
[21:55:18] [PASSED] test_default
[21:55:18] ======================== test_size  ========================
[21:55:18] [PASSED] 4
[21:55:18] [PASSED] 8
[21:55:18] [PASSED] 32
[21:55:18] [PASSED] 256
[21:55:18] ==================== [PASSED] test_size ====================
[21:55:18] ======================= test_reuse  ========================
[21:55:18] [PASSED] 4
[21:55:18] [PASSED] 8
[21:55:18] [PASSED] 32
[21:55:18] [PASSED] 256
[21:55:18] =================== [PASSED] test_reuse ====================
[21:55:18] =================== test_range_overlap  ====================
[21:55:18] [PASSED] 4
[21:55:18] [PASSED] 8
[21:55:18] [PASSED] 32
[21:55:18] [PASSED] 256
[21:55:18] =============== [PASSED] test_range_overlap ================
[21:55:18] =================== test_range_compact  ====================
[21:55:18] [PASSED] 4
[21:55:18] [PASSED] 8
[21:55:18] [PASSED] 32
[21:55:18] [PASSED] 256
[21:55:18] =============== [PASSED] test_range_compact ================
[21:55:18] ==================== test_range_spare  =====================
[21:55:18] [PASSED] 4
[21:55:18] [PASSED] 8
[21:55:18] [PASSED] 32
[21:55:18] [PASSED] 256
[21:55:18] ================ [PASSED] test_range_spare =================
[21:55:18] ===================== [PASSED] guc_dbm =====================
[21:55:18] =================== guc_idm (6 subtests) ===================
[21:55:18] [PASSED] bad_init
[21:55:18] [PASSED] no_init
[21:55:18] [PASSED] init_fini
[21:55:18] [PASSED] check_used
[21:55:18] [PASSED] check_quota
[21:55:18] [PASSED] check_all
[21:55:18] ===================== [PASSED] guc_idm =====================
[21:55:18] ================== no_relay (3 subtests) ===================
[21:55:18] [PASSED] xe_drops_guc2pf_if_not_ready
[21:55:18] [PASSED] xe_drops_guc2vf_if_not_ready
[21:55:18] [PASSED] xe_rejects_send_if_not_ready
[21:55:18] ==================== [PASSED] no_relay =====================
[21:55:18] ================== pf_relay (14 subtests) ==================
[21:55:18] [PASSED] pf_rejects_guc2pf_too_short
[21:55:18] [PASSED] pf_rejects_guc2pf_too_long
[21:55:18] [PASSED] pf_rejects_guc2pf_no_payload
[21:55:18] [PASSED] pf_fails_no_payload
[21:55:18] [PASSED] pf_fails_bad_origin
[21:55:18] [PASSED] pf_fails_bad_type
[21:55:18] [PASSED] pf_txn_reports_error
[21:55:18] [PASSED] pf_txn_sends_pf2guc
[21:55:18] [PASSED] pf_sends_pf2guc
[21:55:18] [SKIPPED] pf_loopback_nop
[21:55:18] [SKIPPED] pf_loopback_echo
[21:55:18] [SKIPPED] pf_loopback_fail
[21:55:18] [SKIPPED] pf_loopback_busy
[21:55:18] [SKIPPED] pf_loopback_retry
[21:55:18] ==================== [PASSED] pf_relay =====================
[21:55:18] ================== vf_relay (3 subtests) ===================
[21:55:18] [PASSED] vf_rejects_guc2vf_too_short
[21:55:18] [PASSED] vf_rejects_guc2vf_too_long
[21:55:18] [PASSED] vf_rejects_guc2vf_no_payload
[21:55:18] ==================== [PASSED] vf_relay =====================
[21:55:18] ================= pf_service (11 subtests) =================
[21:55:18] [PASSED] pf_negotiate_any
[21:55:18] [PASSED] pf_negotiate_base_match
[21:55:18] [PASSED] pf_negotiate_base_newer
[21:55:18] [PASSED] pf_negotiate_base_next
[21:55:18] [SKIPPED] pf_negotiate_base_older
[21:55:18] [PASSED] pf_negotiate_base_prev
[21:55:18] [PASSED] pf_negotiate_latest_match
[21:55:18] [PASSED] pf_negotiate_latest_newer
[21:55:18] [PASSED] pf_negotiate_latest_next
[21:55:18] [SKIPPED] pf_negotiate_latest_older
[21:55:18] [SKIPPED] pf_negotiate_latest_prev
[21:55:18] =================== [PASSED] pf_service ====================
[21:55:18] ===================== lmtt (1 subtest) =====================
[21:55:18] ======================== test_ops  =========================
[21:55:18] [PASSED] 2-level
[21:55:18] [PASSED] multi-level
[21:55:18] ==================== [PASSED] test_ops =====================
[21:55:18] ====================== [PASSED] lmtt =======================
[21:55:18] =================== xe_mocs (2 subtests) ===================
[21:55:18] ================ xe_live_mocs_kernel_kunit  ================
[21:55:18] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[21:55:18] ================ xe_live_mocs_reset_kunit  =================
[21:55:18] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[21:55:18] ==================== [SKIPPED] xe_mocs =====================
[21:55:18] ================= xe_migrate (2 subtests) ==================
[21:55:18] ================= xe_migrate_sanity_kunit  =================
[21:55:18] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[21:55:18] ================== xe_validate_ccs_kunit  ==================
[21:55:18] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[21:55:18] =================== [SKIPPED] xe_migrate ===================
[21:55:18] ================== xe_dma_buf (1 subtest) ==================
[21:55:18] ==================== xe_dma_buf_kunit  =====================
[21:55:18] ================ [SKIPPED] xe_dma_buf_kunit ================
[21:55:18] =================== [SKIPPED] xe_dma_buf ===================
[21:55:18] ================= xe_bo_shrink (1 subtest) =================
[21:55:18] =================== xe_bo_shrink_kunit  ====================
[21:55:18] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[21:55:18] ================== [SKIPPED] xe_bo_shrink ==================
[21:55:18] ==================== xe_bo (2 subtests) ====================
[21:55:18] ================== xe_ccs_migrate_kunit  ===================
[21:55:18] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
stty: 'standard input': Inappropriate ioctl for device
[21:55:18] ==================== xe_bo_evict_kunit  ====================
[21:55:18] =============== [SKIPPED] xe_bo_evict_kunit ================
[21:55:18] ===================== [SKIPPED] xe_bo ======================
[21:55:18] ==================== args (11 subtests) ====================
[21:55:18] [PASSED] count_args_test
[21:55:18] [PASSED] call_args_example
[21:55:18] [PASSED] call_args_test
[21:55:18] [PASSED] drop_first_arg_example
[21:55:18] [PASSED] drop_first_arg_test
[21:55:18] [PASSED] first_arg_example
[21:55:18] [PASSED] first_arg_test
[21:55:18] [PASSED] last_arg_example
[21:55:18] [PASSED] last_arg_test
[21:55:18] [PASSED] pick_arg_example
[21:55:18] [PASSED] sep_comma_example
[21:55:18] ====================== [PASSED] args =======================
[21:55:18] =================== xe_pci (2 subtests) ====================
[21:55:18] [PASSED] xe_gmdid_graphics_ip
[21:55:18] [PASSED] xe_gmdid_media_ip
[21:55:18] ===================== [PASSED] xe_pci ======================
[21:55:18] =================== xe_rtp (2 subtests) ====================
[21:55:18] =============== xe_rtp_process_to_sr_tests  ================
[21:55:18] [PASSED] coalesce-same-reg
[21:55:18] [PASSED] no-match-no-add
[21:55:18] [PASSED] match-or
[21:55:18] [PASSED] match-or-xfail
[21:55:18] [PASSED] no-match-no-add-multiple-rules
[21:55:18] [PASSED] two-regs-two-entries
[21:55:18] [PASSED] clr-one-set-other
[21:55:18] [PASSED] set-field
[21:55:18] [PASSED] conflict-duplicate
[21:55:18] [PASSED] conflict-not-disjoint
[21:55:18] [PASSED] conflict-reg-type
[21:55:18] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[21:55:18] ================== xe_rtp_process_tests  ===================
[21:55:18] [PASSED] active1
[21:55:18] [PASSED] active2
[21:55:18] [PASSED] active-inactive
[21:55:18] [PASSED] inactive-active
[21:55:18] [PASSED] inactive-1st_or_active-inactive
[21:55:18] [PASSED] inactive-2nd_or_active-inactive
[21:55:18] [PASSED] inactive-last_or_active-inactive
[21:55:18] [PASSED] inactive-no_or_active-inactive
[21:55:18] ============== [PASSED] xe_rtp_process_tests ===============
[21:55:18] ===================== [PASSED] xe_rtp ======================
[21:55:18] ==================== xe_wa (1 subtest) =====================
[21:55:18] ======================== xe_wa_gt  =========================
[21:55:18] [PASSED] TIGERLAKE (B0)
[21:55:18] [PASSED] DG1 (A0)
[21:55:18] [PASSED] DG1 (B0)
[21:55:18] [PASSED] ALDERLAKE_S (A0)
[21:55:18] [PASSED] ALDERLAKE_S (B0)
[21:55:18] [PASSED] ALDERLAKE_S (C0)
[21:55:18] [PASSED] ALDERLAKE_S (D0)
[21:55:18] [PASSED] ALDERLAKE_P (A0)
[21:55:18] [PASSED] ALDERLAKE_P (B0)
[21:55:18] [PASSED] ALDERLAKE_P (C0)
[21:55:18] [PASSED] ALDERLAKE_S_RPLS (D0)
[21:55:18] [PASSED] ALDERLAKE_P_RPLU (E0)
[21:55:18] [PASSED] DG2_G10 (C0)
[21:55:18] [PASSED] DG2_G11 (B1)
[21:55:18] [PASSED] DG2_G12 (A1)
[21:55:18] [PASSED] METEORLAKE (g:A0, m:A0)
[21:55:18] [PASSED] METEORLAKE (g:A0, m:A0)
[21:55:18] [PASSED] METEORLAKE (g:A0, m:A0)
[21:55:18] [PASSED] LUNARLAKE (g:A0, m:A0)
[21:55:18] [PASSED] LUNARLAKE (g:B0, m:A0)
[21:55:18] [PASSED] BATTLEMAGE (g:A0, m:A1)
[21:55:18] ==================== [PASSED] xe_wa_gt =====================
[21:55:18] ====================== [PASSED] xe_wa ======================
[21:55:18] ============================================================
[21:55:18] Testing complete. Ran 133 tests: passed: 117, skipped: 16
[21:55:18] Elapsed time: 30.030s total, 4.215s configuring, 25.549s building, 0.251s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[21:55:18] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:55:20] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json ARCH=um O=.kunit --jobs=48
../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes]
  156 | u64 ioread64_lo_hi(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~
../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes]
  163 | u64 ioread64_hi_lo(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~
../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes]
  170 | u64 ioread64be_lo_hi(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~~~
../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes]
  178 | u64 ioread64be_hi_lo(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~~~
../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes]
  264 | void iowrite64_lo_hi(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~
../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes]
  272 | void iowrite64_hi_lo(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~
../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes]
  280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~~~
../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes]
  288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~~~

[21:55:41] Starting KUnit Kernel (1/1)...
[21:55:41] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:55:41] =========== drm_validate_clone_mode (2 subtests) ===========
[21:55:41] ============== drm_test_check_in_clone_mode  ===============
[21:55:41] [PASSED] in_clone_mode
[21:55:41] [PASSED] not_in_clone_mode
[21:55:41] ========== [PASSED] drm_test_check_in_clone_mode ===========
[21:55:41] =============== drm_test_check_valid_clones  ===============
[21:55:41] [PASSED] not_in_clone_mode
[21:55:41] [PASSED] valid_clone
[21:55:41] [PASSED] invalid_clone
[21:55:41] =========== [PASSED] drm_test_check_valid_clones ===========
[21:55:41] ============= [PASSED] drm_validate_clone_mode =============
[21:55:41] ============= drm_validate_modeset (1 subtest) =============
[21:55:41] [PASSED] drm_test_check_connector_changed_modeset
[21:55:41] ============== [PASSED] drm_validate_modeset ===============
[21:55:41] ================== drm_buddy (7 subtests) ==================
[21:55:41] [PASSED] drm_test_buddy_alloc_limit
[21:55:41] [PASSED] drm_test_buddy_alloc_optimistic
[21:55:41] [PASSED] drm_test_buddy_alloc_pessimistic
[21:55:41] [PASSED] drm_test_buddy_alloc_pathological
[21:55:41] [PASSED] drm_test_buddy_alloc_contiguous
[21:55:41] [PASSED] drm_test_buddy_alloc_clear
[21:55:41] [PASSED] drm_test_buddy_alloc_range_bias
[21:55:41] ==================== [PASSED] drm_buddy ====================
[21:55:41] ============= drm_cmdline_parser (40 subtests) =============
[21:55:41] [PASSED] drm_test_cmdline_force_d_only
[21:55:41] [PASSED] drm_test_cmdline_force_D_only_dvi
[21:55:41] [PASSED] drm_test_cmdline_force_D_only_hdmi
[21:55:41] [PASSED] drm_test_cmdline_force_D_only_not_digital
[21:55:41] [PASSED] drm_test_cmdline_force_e_only
[21:55:41] [PASSED] drm_test_cmdline_res
[21:55:41] [PASSED] drm_test_cmdline_res_vesa
[21:55:41] [PASSED] drm_test_cmdline_res_vesa_rblank
[21:55:41] [PASSED] drm_test_cmdline_res_rblank
[21:55:41] [PASSED] drm_test_cmdline_res_bpp
[21:55:41] [PASSED] drm_test_cmdline_res_refresh
[21:55:41] [PASSED] drm_test_cmdline_res_bpp_refresh
[21:55:41] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[21:55:41] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[21:55:41] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[21:55:41] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[21:55:41] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[21:55:41] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[21:55:41] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[21:55:41] [PASSED] drm_test_cmdline_res_margins_force_on
[21:55:41] [PASSED] drm_test_cmdline_res_vesa_margins
[21:55:41] [PASSED] drm_test_cmdline_name
[21:55:41] [PASSED] drm_test_cmdline_name_bpp
[21:55:41] [PASSED] drm_test_cmdline_name_option
[21:55:41] [PASSED] drm_test_cmdline_name_bpp_option
[21:55:41] [PASSED] drm_test_cmdline_rotate_0
[21:55:41] [PASSED] drm_test_cmdline_rotate_90
[21:55:41] [PASSED] drm_test_cmdline_rotate_180
[21:55:41] [PASSED] drm_test_cmdline_rotate_270
[21:55:41] [PASSED] drm_test_cmdline_hmirror
[21:55:41] [PASSED] drm_test_cmdline_vmirror
[21:55:41] [PASSED] drm_test_cmdline_margin_options
[21:55:41] [PASSED] drm_test_cmdline_multiple_options
[21:55:41] [PASSED] drm_test_cmdline_bpp_extra_and_option
[21:55:41] [PASSED] drm_test_cmdline_extra_and_option
[21:55:41] [PASSED] drm_test_cmdline_freestanding_options
[21:55:41] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[21:55:41] [PASSED] drm_test_cmdline_panel_orientation
[21:55:41] ================ drm_test_cmdline_invalid  =================
[21:55:41] [PASSED] margin_only
[21:55:41] [PASSED] interlace_only
[21:55:41] [PASSED] res_missing_x
[21:55:41] [PASSED] res_missing_y
[21:55:41] [PASSED] res_bad_y
[21:55:41] [PASSED] res_missing_y_bpp
[21:55:41] [PASSED] res_bad_bpp
[21:55:41] [PASSED] res_bad_refresh
[21:55:41] [PASSED] res_bpp_refresh_force_on_off
[21:55:41] [PASSED] res_invalid_mode
[21:55:41] [PASSED] res_bpp_wrong_place_mode
[21:55:41] [PASSED] name_bpp_refresh
[21:55:41] [PASSED] name_refresh
[21:55:41] [PASSED] name_refresh_wrong_mode
[21:55:41] [PASSED] name_refresh_invalid_mode
[21:55:41] [PASSED] rotate_multiple
[21:55:41] [PASSED] rotate_invalid_val
[21:55:41] [PASSED] rotate_truncated
[21:55:41] [PASSED] invalid_option
[21:55:41] [PASSED] invalid_tv_option
[21:55:41] [PASSED] truncated_tv_option
[21:55:41] ============ [PASSED] drm_test_cmdline_invalid =============
[21:55:41] =============== drm_test_cmdline_tv_options  ===============
[21:55:41] [PASSED] NTSC
[21:55:41] [PASSED] NTSC_443
[21:55:41] [PASSED] NTSC_J
[21:55:41] [PASSED] PAL
[21:55:41] [PASSED] PAL_M
[21:55:41] [PASSED] PAL_N
[21:55:41] [PASSED] SECAM
[21:55:41] [PASSED] MONO_525
[21:55:41] [PASSED] MONO_625
[21:55:41] =========== [PASSED] drm_test_cmdline_tv_options ===========
[21:55:41] =============== [PASSED] drm_cmdline_parser ================
[21:55:41] ========== drmm_connector_hdmi_init (20 subtests) ==========
[21:55:41] [PASSED] drm_test_connector_hdmi_init_valid
[21:55:41] [PASSED] drm_test_connector_hdmi_init_bpc_8
[21:55:41] [PASSED] drm_test_connector_hdmi_init_bpc_10
[21:55:41] [PASSED] drm_test_connector_hdmi_init_bpc_12
[21:55:41] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[21:55:41] [PASSED] drm_test_connector_hdmi_init_bpc_null
[21:55:41] [PASSED] drm_test_connector_hdmi_init_formats_empty
[21:55:41] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[21:55:41] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[21:55:41] [PASSED] supported_formats=0x9 yuv420_allowed=1
[21:55:41] [PASSED] supported_formats=0x9 yuv420_allowed=0
[21:55:41] [PASSED] supported_formats=0x3 yuv420_allowed=1
[21:55:41] [PASSED] supported_formats=0x3 yuv420_allowed=0
[21:55:41] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[21:55:41] [PASSED] drm_test_connector_hdmi_init_null_ddc
[21:55:41] [PASSED] drm_test_connector_hdmi_init_null_product
[21:55:41] [PASSED] drm_test_connector_hdmi_init_null_vendor
[21:55:41] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[21:55:41] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[21:55:41] [PASSED] drm_test_connector_hdmi_init_product_valid
[21:55:41] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[21:55:41] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[21:55:41] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[21:55:41] ========= drm_test_connector_hdmi_init_type_valid  =========
[21:55:41] [PASSED] HDMI-A
[21:55:41] [PASSED] HDMI-B
[21:55:41] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[21:55:41] ======== drm_test_connector_hdmi_init_type_invalid  ========
[21:55:41] [PASSED] Unknown
[21:55:41] [PASSED] VGA
[21:55:41] [PASSED] DVI-I
[21:55:41] [PASSED] DVI-D
[21:55:41] [PASSED] DVI-A
[21:55:41] [PASSED] Composite
[21:55:41] [PASSED] SVIDEO
[21:55:41] [PASSED] LVDS
[21:55:41] [PASSED] Component
[21:55:41] [PASSED] DIN
[21:55:41] [PASSED] DP
[21:55:41] [PASSED] TV
[21:55:41] [PASSED] eDP
[21:55:41] [PASSED] Virtual
[21:55:41] [PASSED] DSI
[21:55:41] [PASSED] DPI
[21:55:41] [PASSED] Writeback
[21:55:41] [PASSED] SPI
[21:55:41] [PASSED] USB
[21:55:41] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[21:55:41] ============ [PASSED] drmm_connector_hdmi_init =============
[21:55:41] ============= drmm_connector_init (3 subtests) =============
[21:55:41] [PASSED] drm_test_drmm_connector_init
[21:55:41] [PASSED] drm_test_drmm_connector_init_null_ddc
[21:55:41] ========= drm_test_drmm_connector_init_type_valid  =========
[21:55:41] [PASSED] Unknown
[21:55:41] [PASSED] VGA
[21:55:41] [PASSED] DVI-I
[21:55:41] [PASSED] DVI-D
[21:55:41] [PASSED] DVI-A
[21:55:41] [PASSED] Composite
[21:55:41] [PASSED] SVIDEO
[21:55:41] [PASSED] LVDS
[21:55:41] [PASSED] Component
[21:55:41] [PASSED] DIN
[21:55:41] [PASSED] DP
[21:55:41] [PASSED] HDMI-A
[21:55:41] [PASSED] HDMI-B
[21:55:41] [PASSED] TV
[21:55:41] [PASSED] eDP
[21:55:41] [PASSED] Virtual
[21:55:41] [PASSED] DSI
[21:55:41] [PASSED] DPI
[21:55:41] [PASSED] Writeback
[21:55:41] [PASSED] SPI
[21:55:41] [PASSED] USB
[21:55:41] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[21:55:41] =============== [PASSED] drmm_connector_init ===============
[21:55:41] ========= drm_connector_dynamic_init (6 subtests) ==========
[21:55:41] [PASSED] drm_test_drm_connector_dynamic_init
[21:55:41] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[21:55:41] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[21:55:41] [PASSED] drm_test_drm_connector_dynamic_init_properties
[21:55:41] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[21:55:41] [PASSED] Unknown
[21:55:41] [PASSED] VGA
[21:55:41] [PASSED] DVI-I
[21:55:41] [PASSED] DVI-D
[21:55:41] [PASSED] DVI-A
[21:55:41] [PASSED] Composite
[21:55:41] [PASSED] SVIDEO
[21:55:41] [PASSED] LVDS
[21:55:41] [PASSED] Component
[21:55:41] [PASSED] DIN
[21:55:41] [PASSED] DP
[21:55:41] [PASSED] HDMI-A
[21:55:41] [PASSED] HDMI-B
[21:55:41] [PASSED] TV
[21:55:41] [PASSED] eDP
[21:55:41] [PASSED] Virtual
[21:55:41] [PASSED] DSI
[21:55:41] [PASSED] DPI
[21:55:41] [PASSED] Writeback
[21:55:41] [PASSED] SPI
[21:55:41] [PASSED] USB
[21:55:41] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[21:55:41] ======== drm_test_drm_connector_dynamic_init_name  =========
[21:55:41] [PASSED] Unknown
[21:55:41] [PASSED] VGA
[21:55:41] [PASSED] DVI-I
[21:55:41] [PASSED] DVI-D
[21:55:41] [PASSED] DVI-A
[21:55:41] [PASSED] Composite
[21:55:41] [PASSED] SVIDEO
[21:55:41] [PASSED] LVDS
[21:55:41] [PASSED] Component
[21:55:41] [PASSED] DIN
[21:55:41] [PASSED] DP
[21:55:41] [PASSED] HDMI-A
[21:55:41] [PASSED] HDMI-B
[21:55:41] [PASSED] TV
[21:55:41] [PASSED] eDP
[21:55:41] [PASSED] Virtual
[21:55:41] [PASSED] DSI
[21:55:41] [PASSED] DPI
[21:55:41] [PASSED] Writeback
[21:55:41] [PASSED] SPI
[21:55:41] [PASSED] USB
[21:55:41] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[21:55:41] =========== [PASSED] drm_connector_dynamic_init ============
[21:55:41] ==== drm_connector_dynamic_register_early (4 subtests) =====
[21:55:41] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[21:55:41] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[21:55:41] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[21:55:41] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[21:55:41] ====== [PASSED] drm_connector_dynamic_register_early =======
[21:55:41] ======= drm_connector_dynamic_register (7 subtests) ========
[21:55:41] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[21:55:41] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[21:55:41] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[21:55:41] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[21:55:41] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[21:55:41] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[21:55:41] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[21:55:41] ========= [PASSED] drm_connector_dynamic_register ==========
[21:55:41] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[21:55:41] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[21:55:41] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[21:55:41] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[21:55:41] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[21:55:41] ========== drm_test_get_tv_mode_from_name_valid  ===========
[21:55:41] [PASSED] NTSC
[21:55:41] [PASSED] NTSC-443
[21:55:41] [PASSED] NTSC-J
[21:55:41] [PASSED] PAL
[21:55:41] [PASSED] PAL-M
[21:55:41] [PASSED] PAL-N
[21:55:41] [PASSED] SECAM
[21:55:41] [PASSED] Mono
[21:55:41] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[21:55:41] [PASSED] drm_test_get_tv_mode_from_name_truncated
[21:55:41] ============ [PASSED] drm_get_tv_mode_from_name ============
[21:55:41] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[21:55:41] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[21:55:41] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[21:55:41] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[21:55:41] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[21:55:41] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[21:55:41] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[21:55:41] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[21:55:41] [PASSED] VIC 96
[21:55:41] [PASSED] VIC 97
[21:55:41] [PASSED] VIC 101
[21:55:41] [PASSED] VIC 102
[21:55:41] [PASSED] VIC 106
[21:55:41] [PASSED] VIC 107
[21:55:41] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[21:55:41] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[21:55:41] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[21:55:41] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[21:55:41] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[21:55:41] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[21:55:41] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[21:55:41] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[21:55:41] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[21:55:41] [PASSED] Automatic
[21:55:41] [PASSED] Full
[21:55:41] [PASSED] Limited 16:235
[21:55:41] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[21:55:41] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[21:55:41] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[21:55:41] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[21:55:41] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[21:55:41] [PASSED] RGB
[21:55:41] [PASSED] YUV 4:2:0
[21:55:41] [PASSED] YUV 4:2:2
[21:55:41] [PASSED] YUV 4:4:4
[21:55:41] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[21:55:41] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[21:55:41] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[21:55:41] ============= drm_damage_helper (21 subtests) ==============
[21:55:41] [PASSED] drm_test_damage_iter_no_damage
[21:55:41] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[21:55:41] [PASSED] drm_test_damage_iter_no_damage_src_moved
[21:55:41] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[21:55:41] [PASSED] drm_test_damage_iter_no_damage_not_visible
[21:55:41] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[21:55:41] [PASSED] drm_test_damage_iter_no_damage_no_fb
[21:55:41] [PASSED] drm_test_damage_iter_simple_damage
[21:55:41] [PASSED] drm_test_damage_iter_single_damage
[21:55:41] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[21:55:41] [PASSED] drm_test_damage_iter_single_damage_outside_src
[21:55:41] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[21:55:41] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[21:55:41] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[21:55:41] [PASSED] drm_test_damage_iter_single_damage_src_moved
[21:55:41] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[21:55:41] [PASSED] drm_test_damage_iter_damage
[21:55:41] [PASSED] drm_test_damage_iter_damage_one_intersect
[21:55:41] [PASSED] drm_test_damage_iter_damage_one_outside
[21:55:41] [PASSED] drm_test_damage_iter_damage_src_moved
[21:55:41] [PASSED] drm_test_damage_iter_damage_not_visible
[21:55:41] ================ [PASSED] drm_damage_helper ================
[21:55:41] ============== drm_dp_mst_helper (3 subtests) ==============
[21:55:41] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[21:55:41] [PASSED] Clock 154000 BPP 30 DSC disabled
[21:55:41] [PASSED] Clock 234000 BPP 30 DSC disabled
[21:55:41] [PASSED] Clock 297000 BPP 24 DSC disabled
[21:55:41] [PASSED] Clock 332880 BPP 24 DSC enabled
[21:55:41] [PASSED] Clock 324540 BPP 24 DSC enabled
[21:55:41] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[21:55:41] ============== drm_test_dp_mst_calc_pbn_div  ===============
[21:55:41] [PASSED] Link rate 2000000 lane count 4
[21:55:41] [PASSED] Link rate 2000000 lane count 2
[21:55:41] [PASSED] Link rate 2000000 lane count 1
[21:55:41] [PASSED] Link rate 1350000 lane count 4
[21:55:41] [PASSED] Link rate 1350000 lane count 2
[21:55:41] [PASSED] Link rate 1350000 lane count 1
[21:55:41] [PASSED] Link rate 1000000 lane count 4
[21:55:41] [PASSED] Link rate 1000000 lane count 2
[21:55:41] [PASSED] Link rate 1000000 lane count 1
[21:55:41] [PASSED] Link rate 810000 lane count 4
[21:55:41] [PASSED] Link rate 810000 lane count 2
[21:55:41] [PASSED] Link rate 810000 lane count 1
[21:55:41] [PASSED] Link rate 540000 lane count 4
[21:55:41] [PASSED] Link rate 540000 lane count 2
[21:55:41] [PASSED] Link rate 540000 lane count 1
[21:55:41] [PASSED] Link rate 270000 lane count 4
[21:55:41] [PASSED] Link rate 270000 lane count 2
[21:55:41] [PASSED] Link rate 270000 lane count 1
[21:55:41] [PASSED] Link rate 162000 lane count 4
[21:55:41] [PASSED] Link rate 162000 lane count 2
[21:55:41] [PASSED] Link rate 162000 lane count 1
[21:55:41] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[21:55:41] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[21:55:41] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[21:55:41] [PASSED] DP_POWER_UP_PHY with port number
[21:55:41] [PASSED] DP_POWER_DOWN_PHY with port number
[21:55:41] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[21:55:41] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[21:55:41] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[21:55:41] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[21:55:41] [PASSED] DP_QUERY_PAYLOAD with port number
[21:55:41] [PASSED] DP_QUERY_PAYLOAD with VCPI
[21:55:41] [PASSED] DP_REMOTE_DPCD_READ with port number
[21:55:41] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[21:55:41] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[21:55:41] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[21:55:41] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[21:55:41] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[21:55:41] [PASSED] DP_REMOTE_I2C_READ with port number
[21:55:41] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[21:55:41] [PASSED] DP_REMOTE_I2C_READ with transactions array
[21:55:41] [PASSED] DP_REMOTE_I2C_WRITE with port number
[21:55:41] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[21:55:41] [PASSED] DP_REMOTE_I2C_WRITE with data array
[21:55:41] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[21:55:41] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[21:55:41] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[21:55:41] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[21:55:41] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[21:55:41] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[21:55:41] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[21:55:41] ================ [PASSED] drm_dp_mst_helper ================
[21:55:41] ================== drm_exec (7 subtests) ===================
[21:55:41] [PASSED] sanitycheck
[21:55:41] [PASSED] test_lock
[21:55:41] [PASSED] test_lock_unlock
[21:55:41] [PASSED] test_duplicates
[21:55:41] [PASSED] test_prepare
[21:55:41] [PASSED] test_prepare_array
[21:55:41] [PASSED] test_multiple_loops
[21:55:41] ==================== [PASSED] drm_exec =====================
[21:55:41] =========== drm_format_helper_test (17 subtests) ===========
[21:55:41] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[21:55:41] [PASSED] single_pixel_source_buffer
[21:55:41] [PASSED] single_pixel_clip_rectangle
[21:55:41] [PASSED] well_known_colors
[21:55:41] [PASSED] destination_pitch
[21:55:41] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[21:55:41] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[21:55:41] [PASSED] single_pixel_source_buffer
[21:55:41] [PASSED] single_pixel_clip_rectangle
[21:55:41] [PASSED] well_known_colors
[21:55:41] [PASSED] destination_pitch
[21:55:41] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[21:55:41] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[21:55:41] [PASSED] single_pixel_source_buffer
[21:55:41] [PASSED] single_pixel_clip_rectangle
[21:55:41] [PASSED] well_known_colors
[21:55:41] [PASSED] destination_pitch
[21:55:41] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[21:55:41] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[21:55:41] [PASSED] single_pixel_source_buffer
[21:55:41] [PASSED] single_pixel_clip_rectangle
[21:55:41] [PASSED] well_known_colors
[21:55:41] [PASSED] destination_pitch
[21:55:41] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[21:55:41] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[21:55:41] [PASSED] single_pixel_source_buffer
[21:55:41] [PASSED] single_pixel_clip_rectangle
[21:55:41] [PASSED] well_known_colors
[21:55:41] [PASSED] destination_pitch
[21:55:41] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[21:55:41] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[21:55:41] [PASSED] single_pixel_source_buffer
[21:55:41] [PASSED] single_pixel_clip_rectangle
[21:55:41] [PASSED] well_known_colors
[21:55:41] [PASSED] destination_pitch
[21:55:41] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[21:55:41] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[21:55:41] [PASSED] single_pixel_source_buffer
[21:55:41] [PASSED] single_pixel_clip_rectangle
[21:55:41] [PASSED] well_known_colors
[21:55:41] [PASSED] destination_pitch
[21:55:41] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[21:55:41] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[21:55:41] [PASSED] single_pixel_source_buffer
[21:55:41] [PASSED] single_pixel_clip_rectangle
[21:55:41] [PASSED] well_known_colors
[21:55:41] [PASSED] destination_pitch
[21:55:41] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[21:55:41] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[21:55:41] [PASSED] single_pixel_source_buffer
[21:55:41] [PASSED] single_pixel_clip_rectangle
[21:55:41] [PASSED] well_known_colors
[21:55:41] [PASSED] destination_pitch
[21:55:41] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[21:55:41] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[21:55:41] [PASSED] single_pixel_source_buffer
[21:55:41] [PASSED] single_pixel_clip_rectangle
[21:55:41] [PASSED] well_known_colors
[21:55:41] [PASSED] destination_pitch
[21:55:41] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[21:55:41] ============== drm_test_fb_xrgb8888_to_mono  ===============
[21:55:41] [PASSED] single_pixel_source_buffer
[21:55:41] [PASSED] single_pixel_clip_rectangle
[21:55:41] [PASSED] well_known_colors
[21:55:41] [PASSED] destination_pitch
[21:55:41] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[21:55:41] ==================== drm_test_fb_swab  =====================
[21:55:41] [PASSED] single_pixel_source_buffer
[21:55:41] [PASSED] single_pixel_clip_rectangle
[21:55:41] [PASSED] well_known_colors
[21:55:41] [PASSED] destination_pitch
[21:55:41] ================ [PASSED] drm_test_fb_swab =================
[21:55:41] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[21:55:41] [PASSED] single_pixel_source_buffer
[21:55:41] [PASSED] single_pixel_clip_rectangle
[21:55:41] [PASSED] well_known_colors
[21:55:41] [PASSED] destination_pitch
[21:55:41] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[21:55:41] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[21:55:41] [PASSED] single_pixel_source_buffer
[21:55:41] [PASSED] single_pixel_clip_rectangle
[21:55:41] [PASSED] well_known_colors
[21:55:41] [PASSED] destination_pitch
[21:55:41] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[21:55:41] ================= drm_test_fb_clip_offset  =================
[21:55:41] [PASSED] pass through
[21:55:41] [PASSED] horizontal offset
[21:55:41] [PASSED] vertical offset
[21:55:41] [PASSED] horizontal and vertical offset
[21:55:41] [PASSED] horizontal offset (custom pitch)
[21:55:41] [PASSED] vertical offset (custom pitch)
[21:55:41] [PASSED] horizontal and vertical offset (custom pitch)
[21:55:41] ============= [PASSED] drm_test_fb_clip_offset =============
[21:55:41] ============== drm_test_fb_build_fourcc_list  ==============
[21:55:41] [PASSED] no native formats
[21:55:41] [PASSED] XRGB8888 as native format
[21:55:41] [PASSED] remove duplicates
[21:55:41] [PASSED] convert alpha formats
[21:55:41] [PASSED] random formats
[21:55:41] ========== [PASSED] drm_test_fb_build_fourcc_list ==========
[21:55:41] =================== drm_test_fb_memcpy  ====================
[21:55:41] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[21:55:41] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[21:55:41] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[21:55:41] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[21:55:41] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[21:55:41] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[21:55:41] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[21:55:41] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[21:55:41] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[21:55:41] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[21:55:41] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[21:55:41] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[21:55:41] =============== [PASSED] drm_test_fb_memcpy ================
[21:55:41] ============= [PASSED] drm_format_helper_test ==============
[21:55:41] ================= drm_format (18 subtests) =================
[21:55:41] [PASSED] drm_test_format_block_width_invalid
[21:55:41] [PASSED] drm_test_format_block_width_one_plane
[21:55:41] [PASSED] drm_test_format_block_width_two_plane
[21:55:41] [PASSED] drm_test_format_block_width_three_plane
[21:55:41] [PASSED] drm_test_format_block_width_tiled
[21:55:41] [PASSED] drm_test_format_block_height_invalid
[21:55:41] [PASSED] drm_test_format_block_height_one_plane
[21:55:41] [PASSED] drm_test_format_block_height_two_plane
[21:55:41] [PASSED] drm_test_format_block_height_three_plane
[21:55:41] [PASSED] drm_test_format_block_height_tiled
[21:55:41] [PASSED] drm_test_format_min_pitch_invalid
[21:55:41] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[21:55:41] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[21:55:41] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[21:55:41] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[21:55:41] [PASSED] drm_test_format_min_pitch_two_plane
[21:55:41] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[21:55:41] [PASSED] drm_test_format_min_pitch_tiled
[21:55:41] =================== [PASSED] drm_format ====================
[21:55:41] ============== drm_framebuffer (10 subtests) ===============
[21:55:41] ========== drm_test_framebuffer_check_src_coords  ==========
[21:55:41] [PASSED] Success: source fits into fb
[21:55:41] [PASSED] Fail: overflowing fb with x-axis coordinate
[21:55:41] [PASSED] Fail: overflowing fb with y-axis coordinate
[21:55:41] [PASSED] Fail: overflowing fb with source width
[21:55:41] [PASSED] Fail: overflowing fb with source height
[21:55:41] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[21:55:41] [PASSED] drm_test_framebuffer_cleanup
[21:55:41] =============== drm_test_framebuffer_create  ===============
[21:55:41] [PASSED] ABGR8888 normal sizes
[21:55:41] [PASSED] ABGR8888 max sizes
[21:55:41] [PASSED] ABGR8888 pitch greater than min required
[21:55:41] [PASSED] ABGR8888 pitch less than min required
[21:55:41] [PASSED] ABGR8888 Invalid width
[21:55:41] [PASSED] ABGR8888 Invalid buffer handle
[21:55:41] [PASSED] No pixel format
[21:55:41] [PASSED] ABGR8888 Width 0
[21:55:41] [PASSED] ABGR8888 Height 0
[21:55:41] [PASSED] ABGR8888 Out of bound height * pitch combination
[21:55:41] [PASSED] ABGR8888 Large buffer offset
[21:55:41] [PASSED] ABGR8888 Buffer offset for inexistent plane
[21:55:41] [PASSED] ABGR8888 Invalid flag
[21:55:41] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[21:55:41] [PASSED] ABGR8888 Valid buffer modifier
[21:55:41] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[21:55:41] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[21:55:41] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[21:55:41] [PASSED] NV12 Normal sizes
[21:55:41] [PASSED] NV12 Max sizes
[21:55:41] [PASSED] NV12 Invalid pitch
[21:55:41] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[21:55:41] [PASSED] NV12 different  modifier per-plane
[21:55:41] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[21:55:41] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[21:55:41] [PASSED] NV12 Modifier for inexistent plane
[21:55:41] [PASSED] NV12 Handle for inexistent plane
[21:55:41] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[21:55:41] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[21:55:41] [PASSED] YVU420 Normal sizes
[21:55:41] [PASSED] YVU420 Max sizes
[21:55:41] [PASSED] YVU420 Invalid pitch
[21:55:41] [PASSED] YVU420 Different pitches
[21:55:41] [PASSED] YVU420 Different buffer offsets/pitches
[21:55:41] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[21:55:41] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[21:55:41] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[21:55:41] [PASSED] YVU420 Valid modifier
[21:55:41] [PASSED] YVU420 Different modifiers per plane
[21:55:41] [PASSED] YVU420 Modifier for inexistent plane
[21:55:41] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[21:55:41] [PASSED] X0L2 Normal sizes
[21:55:41] [PASSED] X0L2 Max sizes
[21:55:41] [PASSED] X0L2 Invalid pitch
[21:55:41] [PASSED] X0L2 Pitch greater than minimum required
[21:55:41] [PASSED] X0L2 Handle for inexistent plane
[21:55:41] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[21:55:41] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[21:55:41] [PASSED] X0L2 Valid modifier
[21:55:41] [PASSED] X0L2 Modifier for inexistent plane
[21:55:41] =========== [PASSED] drm_test_framebuffer_create ===========
[21:55:41] [PASSED] drm_test_framebuffer_free
[21:55:41] [PASSED] drm_test_framebuffer_init
[21:55:41] [PASSED] drm_test_framebuffer_init_bad_format
[21:55:41] [PASSED] drm_test_framebuffer_init_dev_mismatch
[21:55:41] [PASSED] drm_test_framebuffer_lookup
[21:55:41] [PASSED] drm_test_framebuffer_lookup_inexistent
[21:55:41] [PASSED] drm_test_framebuffer_modifiers_not_supported
[21:55:41] ================= [PASSED] drm_framebuffer =================
[21:55:41] ================ drm_gem_shmem (8 subtests) ================
[21:55:41] [PASSED] drm_gem_shmem_test_obj_create
[21:55:41] [PASSED] drm_gem_shmem_test_obj_create_private
[21:55:41] [PASSED] drm_gem_shmem_test_pin_pages
[21:55:41] [PASSED] drm_gem_shmem_test_vmap
[21:55:41] [PASSED] drm_gem_shmem_test_get_pages_sgt
[21:55:41] [PASSED] drm_gem_shmem_test_get_sg_table
[21:55:41] [PASSED] drm_gem_shmem_test_madvise
[21:55:41] [PASSED] drm_gem_shmem_test_purge
[21:55:41] ================== [PASSED] drm_gem_shmem ==================
[21:55:41] === drm_atomic_helper_connector_hdmi_check (23 subtests) ===
[21:55:41] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[21:55:41] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[21:55:41] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[21:55:41] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[21:55:41] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[21:55:41] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[21:55:41] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[21:55:41] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[21:55:41] [PASSED] drm_test_check_disable_connector
[21:55:41] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[21:55:41] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback
[21:55:41] [PASSED] drm_test_check_max_tmds_rate_format_fallback
[21:55:41] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[21:55:41] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[21:55:41] [PASSED] drm_test_check_output_bpc_dvi
[21:55:41] [PASSED] drm_test_check_output_bpc_format_vic_1
[21:55:41] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[21:55:41] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[21:55:41] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[21:55:41] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[21:55:41] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[21:55:41] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[21:55:41] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[21:55:41] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[21:55:41] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[21:55:41] [PASSED] drm_test_check_broadcast_rgb_value
[21:55:41] [PASSED] drm_test_check_bpc_8_value
[21:55:41] [PASSED] drm_test_check_bpc_10_value
[21:55:41] [PASSED] drm_test_check_bpc_12_value
[21:55:41] [PASSED] drm_test_check_format_value
[21:55:41] [PASSED] drm_test_check_tmds_char_value
[21:55:41] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[21:55:41] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[21:55:41] [PASSED] drm_test_check_mode_valid
[21:55:41] [PASSED] drm_test_check_mode_valid_reject
[21:55:41] [PASSED] drm_test_check_mode_valid_reject_rate
[21:55:41] [PASSED] drm_test_check_mode_valid_reject_max_clock
[21:55:41] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[21:55:41] ================= drm_managed (2 subtests) =================
[21:55:41] [PASSED] drm_test_managed_release_action
[21:55:41] [PASSED] drm_test_managed_run_action
[21:55:41] =================== [PASSED] drm_managed ===================
[21:55:41] =================== drm_mm (6 subtests) ====================
[21:55:41] [PASSED] drm_test_mm_init
[21:55:41] [PASSED] drm_test_mm_debug
[21:55:41] [PASSED] drm_test_mm_align32
[21:55:41] [PASSED] drm_test_mm_align64
[21:55:41] [PASSED] drm_test_mm_lowest
[21:55:41] [PASSED] drm_test_mm_highest
[21:55:41] ===================== [PASSED] drm_mm ======================
[21:55:41] ============= drm_modes_analog_tv (5 subtests) =============
[21:55:41] [PASSED] drm_test_modes_analog_tv_mono_576i
[21:55:41] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[21:55:41] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[21:55:41] [PASSED] drm_test_modes_analog_tv_pal_576i
[21:55:41] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[21:55:41] =============== [PASSED] drm_modes_analog_tv ===============
[21:55:41] ============== drm_plane_helper (2 subtests) ===============
[21:55:41] =============== drm_test_check_plane_state  ================
[21:55:41] [PASSED] clipping_simple
[21:55:41] [PASSED] clipping_rotate_reflect
[21:55:41] [PASSED] positioning_simple
[21:55:41] [PASSED] upscaling
[21:55:41] [PASSED] downscaling
[21:55:41] [PASSED] rounding1
[21:55:41] [PASSED] rounding2
[21:55:41] [PASSED] rounding3
[21:55:41] [PASSED] rounding4
[21:55:41] =========== [PASSED] drm_test_check_plane_state ============
[21:55:41] =========== drm_test_check_invalid_plane_state  ============
[21:55:41] [PASSED] positioning_invalid
[21:55:41] [PASSED] upscaling_invalid
[21:55:41] [PASSED] downscaling_invalid
[21:55:41] ======= [PASSED] drm_test_check_invalid_plane_state ========
[21:55:41] ================ [PASSED] drm_plane_helper =================
[21:55:41] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[21:55:41] ====== drm_test_connector_helper_tv_get_modes_check  =======
[21:55:41] [PASSED] None
[21:55:41] [PASSED] PAL
[21:55:41] [PASSED] NTSC
[21:55:41] [PASSED] Both, NTSC Default
[21:55:41] [PASSED] Both, PAL Default
[21:55:41] [PASSED] Both, NTSC Default, with PAL on command-line
[21:55:41] [PASSED] Both, PAL Default, with NTSC on command-line
[21:55:41] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[21:55:41] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[21:55:41] ================== drm_rect (9 subtests) ===================
[21:55:41] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[21:55:41] [PASSED] drm_test_rect_clip_scaled_not_clipped
[21:55:41] [PASSED] drm_test_rect_clip_scaled_clipped
[21:55:41] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[21:55:41] ================= drm_test_rect_intersect  =================
[21:55:41] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[21:55:41] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[21:55:41] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[21:55:41] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[21:55:41] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[21:55:41] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[21:55:41] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[21:55:41] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[21:55:41] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[21:55:41] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[21:55:41] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[21:55:41] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[21:55:41] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[21:55:41] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[21:55:41] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[21:55:41] ============= [PASSED] drm_test_rect_intersect =============
[21:55:41] ================ drm_test_rect_calc_hscale  ================
[21:55:41] [PASSED] normal use
[21:55:41] [PASSED] out of max range
[21:55:41] [PASSED] out of min range
[21:55:41] [PASSED] zero dst
[21:55:41] [PASSED] negative src
[21:55:41] [PASSED] negative dst
[21:55:41] ============ [PASSED] drm_test_rect_calc_hscale ============
[21:55:41] ================ drm_test_rect_calc_vscale  ================
[21:55:41] [PASSED] normal use
[21:55:41] [PASSED] out of max range
[21:55:41] [PASSED] out of min range
[21:55:41] [PASSED] zero dst
[21:55:41] [PASSED] negative src
[21:55:41] [PASSED] negative dst
[21:55:41] ============ [PASSED] drm_test_rect_calc_vscale ============
[21:55:41] ================== drm_test_rect_rotate  ===================
[21:55:41] [PASSED] reflect-x
[21:55:41] [PASSED] reflect-y
[21:55:41] [PASSED] rotate-0
[21:55:41] [PASSED] rotate-90
[21:55:41] [PASSED] rotate-180
[21:55:41] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[21:55:41] ============== [PASSED] drm_test_rect_rotate ===============
[21:55:41] ================ drm_test_rect_rotate_inv  =================
[21:55:41] [PASSED] reflect-x
[21:55:41] [PASSED] reflect-y
[21:55:41] [PASSED] rotate-0
[21:55:41] [PASSED] rotate-90
[21:55:41] [PASSED] rotate-180
[21:55:41] [PASSED] rotate-270
[21:55:41] ============ [PASSED] drm_test_rect_rotate_inv =============
[21:55:41] ==================== [PASSED] drm_rect =====================
[21:55:41] ============================================================
[21:55:41] Testing complete. Ran 598 tests: passed: 598
[21:55:41] Elapsed time: 22.824s total, 1.684s configuring, 20.970s building, 0.138s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[21:55:41] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:55:43] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json ARCH=um O=.kunit --jobs=48
[21:55:50] Starting KUnit Kernel (1/1)...
[21:55:50] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:55:50] ================= ttm_device (5 subtests) ==================
[21:55:50] [PASSED] ttm_device_init_basic
[21:55:50] [PASSED] ttm_device_init_multiple
[21:55:50] [PASSED] ttm_device_fini_basic
[21:55:50] [PASSED] ttm_device_init_no_vma_man
[21:55:50] ================== ttm_device_init_pools  ==================
[21:55:50] [PASSED] No DMA allocations, no DMA32 required
[21:55:50] [PASSED] DMA allocations, DMA32 required
[21:55:50] [PASSED] No DMA allocations, DMA32 required
[21:55:50] [PASSED] DMA allocations, no DMA32 required
[21:55:50] ============== [PASSED] ttm_device_init_pools ==============
[21:55:50] =================== [PASSED] ttm_device ====================
[21:55:50] ================== ttm_pool (8 subtests) ===================
[21:55:50] ================== ttm_pool_alloc_basic  ===================
[21:55:50] [PASSED] One page
[21:55:50] [PASSED] More than one page
[21:55:50] [PASSED] Above the allocation limit
[21:55:50] [PASSED] One page, with coherent DMA mappings enabled
[21:55:50] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[21:55:50] ============== [PASSED] ttm_pool_alloc_basic ===============
[21:55:50] ============== ttm_pool_alloc_basic_dma_addr  ==============
[21:55:50] [PASSED] One page
[21:55:50] [PASSED] More than one page
[21:55:50] [PASSED] Above the allocation limit
[21:55:50] [PASSED] One page, with coherent DMA mappings enabled
[21:55:50] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[21:55:50] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[21:55:50] [PASSED] ttm_pool_alloc_order_caching_match
[21:55:50] [PASSED] ttm_pool_alloc_caching_mismatch
[21:55:50] [PASSED] ttm_pool_alloc_order_mismatch
[21:55:50] [PASSED] ttm_pool_free_dma_alloc
[21:55:50] [PASSED] ttm_pool_free_no_dma_alloc
[21:55:50] [PASSED] ttm_pool_fini_basic
[21:55:50] ==================== [PASSED] ttm_pool =====================
[21:55:50] ================ ttm_resource (8 subtests) =================
[21:55:50] ================= ttm_resource_init_basic  =================
[21:55:50] [PASSED] Init resource in TTM_PL_SYSTEM
[21:55:50] [PASSED] Init resource in TTM_PL_VRAM
[21:55:50] [PASSED] Init resource in a private placement
[21:55:50] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[21:55:50] ============= [PASSED] ttm_resource_init_basic =============
[21:55:50] [PASSED] ttm_resource_init_pinned
[21:55:50] [PASSED] ttm_resource_fini_basic
[21:55:50] [PASSED] ttm_resource_manager_init_basic
[21:55:50] [PASSED] ttm_resource_manager_usage_basic
[21:55:50] [PASSED] ttm_resource_manager_set_used_basic
[21:55:50] [PASSED] ttm_sys_man_alloc_basic
[21:55:50] [PASSED] ttm_sys_man_free_basic
[21:55:50] ================== [PASSED] ttm_resource ===================
[21:55:50] =================== ttm_tt (15 subtests) ===================
[21:55:50] ==================== ttm_tt_init_basic  ====================
[21:55:50] [PASSED] Page-aligned size
[21:55:50] [PASSED] Extra pages requested
[21:55:50] ================ [PASSED] ttm_tt_init_basic ================
[21:55:50] [PASSED] ttm_tt_init_misaligned
[21:55:50] [PASSED] ttm_tt_fini_basic
[21:55:50] [PASSED] ttm_tt_fini_sg
[21:55:50] [PASSED] ttm_tt_fini_shmem
[21:55:50] [PASSED] ttm_tt_create_basic
[21:55:50] [PASSED] ttm_tt_create_invalid_bo_type
[21:55:50] [PASSED] ttm_tt_create_ttm_exists
[21:55:50] [PASSED] ttm_tt_create_failed
[21:55:50] [PASSED] ttm_tt_destroy_basic
[21:55:50] [PASSED] ttm_tt_populate_null_ttm
[21:55:50] [PASSED] ttm_tt_populate_populated_ttm
[21:55:50] [PASSED] ttm_tt_unpopulate_basic
[21:55:50] [PASSED] ttm_tt_unpopulate_empty_ttm
[21:55:50] [PASSED] ttm_tt_swapin_basic
[21:55:50] ===================== [PASSED] ttm_tt ======================
[21:55:50] =================== ttm_bo (14 subtests) ===================
[21:55:50] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[21:55:50] [PASSED] Cannot be interrupted and sleeps
[21:55:50] [PASSED] Cannot be interrupted, locks straight away
[21:55:50] [PASSED] Can be interrupted, sleeps
[21:55:50] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[21:55:50] [PASSED] ttm_bo_reserve_locked_no_sleep
[21:55:50] [PASSED] ttm_bo_reserve_no_wait_ticket
[21:55:50] [PASSED] ttm_bo_reserve_double_resv
[21:55:50] [PASSED] ttm_bo_reserve_interrupted
[21:55:50] [PASSED] ttm_bo_reserve_deadlock
[21:55:50] [PASSED] ttm_bo_unreserve_basic
[21:55:50] [PASSED] ttm_bo_unreserve_pinned
[21:55:50] [PASSED] ttm_bo_unreserve_bulk
[21:55:50] [PASSED] ttm_bo_put_basic
[21:55:50] [PASSED] ttm_bo_put_shared_resv
[21:55:50] [PASSED] ttm_bo_pin_basic
[21:55:50] [PASSED] ttm_bo_pin_unpin_resource
[21:55:50] [PASSED] ttm_bo_multiple_pin_one_unpin
[21:55:50] ===================== [PASSED] ttm_bo ======================
[21:55:50] ============== ttm_bo_validate (22 subtests) ===============
[21:55:50] ============== ttm_bo_init_reserved_sys_man  ===============
[21:55:50] [PASSED] Buffer object for userspace
[21:55:50] [PASSED] Kernel buffer object
[21:55:50] [PASSED] Shared buffer object
[21:55:50] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[21:55:50] ============== ttm_bo_init_reserved_mock_man  ==============
[21:55:50] [PASSED] Buffer object for userspace
[21:55:50] [PASSED] Kernel buffer object
[21:55:50] [PASSED] Shared buffer object
[21:55:50] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[21:55:50] [PASSED] ttm_bo_init_reserved_resv
[21:55:50] ================== ttm_bo_validate_basic  ==================
[21:55:50] [PASSED] Buffer object for userspace
[21:55:50] [PASSED] Kernel buffer object
[21:55:50] [PASSED] Shared buffer object
[21:55:50] ============== [PASSED] ttm_bo_validate_basic ==============
[21:55:50] [PASSED] ttm_bo_validate_invalid_placement
[21:55:50] ============= ttm_bo_validate_same_placement  ==============
[21:55:50] [PASSED] System manager
[21:55:50] [PASSED] VRAM manager
[21:55:50] ========= [PASSED] ttm_bo_validate_same_placement ==========
[21:55:50] [PASSED] ttm_bo_validate_failed_alloc
[21:55:50] [PASSED] ttm_bo_validate_pinned
[21:55:50] [PASSED] ttm_bo_validate_busy_placement
[21:55:50] ================ ttm_bo_validate_multihop  =================
[21:55:50] [PASSED] Buffer object for userspace
[21:55:50] [PASSED] Kernel buffer object
[21:55:50] [PASSED] Shared buffer object
[21:55:50] ============ [PASSED] ttm_bo_validate_multihop =============
[21:55:50] ========== ttm_bo_validate_no_placement_signaled  ==========
[21:55:50] [PASSED] Buffer object in system domain, no page vector
[21:55:50] [PASSED] Buffer object in system domain with an existing page vector
[21:55:50] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[21:55:50] ======== ttm_bo_validate_no_placement_not_signaled  ========
[21:55:50] [PASSED] Buffer object for userspace
[21:55:50] [PASSED] Kernel buffer object
[21:55:50] [PASSED] Shared buffer object
[21:55:50] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[21:55:50] [PASSED] ttm_bo_validate_move_fence_signaled
[21:55:51] ========= ttm_bo_validate_move_fence_not_signaled  =========
[21:55:51] [PASSED] Waits for GPU
[21:55:51] [PASSED] Tries to lock straight away
[21:55:51] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[21:55:51] [PASSED] ttm_bo_validate_swapout
[21:55:51] [PASSED] ttm_bo_validate_happy_evict
[21:55:51] [PASSED] ttm_bo_validate_all_pinned_evict
[21:55:51] [PASSED] ttm_bo_validate_allowed_only_evict
[21:55:51] [PASSED] ttm_bo_validate_deleted_evict
[21:55:51] [PASSED] ttm_bo_validate_busy_domain_evict
[21:55:51] [PASSED] ttm_bo_validate_evict_gutting
[21:55:51] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[21:55:51] ================= [PASSED] ttm_bo_validate =================
[21:55:51] ============================================================
[21:55:51] Testing complete. Ran 102 tests: passed: 102
[21:55:51] Elapsed time: 9.927s total, 1.683s configuring, 7.627s building, 0.529s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 8+ messages in thread

* ✗ CI.Build: failure for Re-instate GuC logs in debugfs & devcoredump
  2025-01-22 21:45 [PATCH 0/3] Re-instate GuC logs in debugfs & devcoredump John.C.Harrison
                   ` (5 preceding siblings ...)
  2025-01-22 21:55 ` ✓ CI.KUnit: success " Patchwork
@ 2025-01-22 22:02 ` Patchwork
  6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-01-22 22:02 UTC (permalink / raw)
  To: john.c.harrison; +Cc: intel-xe

== Series Details ==

Series: Re-instate GuC logs in debugfs & devcoredump
URL   : https://patchwork.freedesktop.org/series/143864/
State : failure

== Summary ==

CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dml2/dml_display_rq_dlg_calc.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dml2/dml21/src/dml2_top/dml2_top_interfaces.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dml2/dml21/src/dml2_top/dml2_top_soc15.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dml2/dml21/src/inc/dml2_debug.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dml2/dml21/src/dml2_core/dml2_core_dcn4.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dml2/dml21/src/dml2_core/dml2_core_factory.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dml2/dml21/src/dml2_core/dml2_core_dcn4_calcs.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dml2/dml21/src/dml2_dpmm/dml2_dpmm_dcn4.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dml2/dml21/src/dml2_dpmm/dml2_dpmm_factory.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dml2/dml21/src/dml2_mcg/dml2_mcg_dcn4.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dml2/dml21/src/dml2_mcg/dml2_mcg_factory.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dml2/dml21/src/dml2_pmo/dml2_pmo_dcn3.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dml2/dml21/src/dml2_pmo/dml2_pmo_factory.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dml2/dml21/src/dml2_pmo/dml2_pmo_dcn4_fams2.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dml2/dml21/src/dml2_standalone_libraries/lib_float_math.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dml2/dml21/dml21_translation_helper.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dml2/dml21/dml21_wrapper.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dml2/dml21/dml21_utils.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dce120/dce120_timing_generator.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dce112/dce112_compressor.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_timing_generator.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_compressor.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_opp_regamma_v.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_opp_csc_v.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_timing_generator_v.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_mem_input_v.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_opp_v.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_transform_v.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dce80/dce80_timing_generator.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dce60/dce60_timing_generator.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dce60/dce60_hw_sequencer.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dce60/dce60_resource.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/hdcp/hdcp_msg.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/spl/dc_spl.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/spl/dc_spl_scl_filters.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/spl/dc_spl_scl_easf_filters.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/spl/dc_spl_isharp_filters.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/spl/dc_spl_filters.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/spl/spl_fixpt31_32.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/spl/spl_custom_float.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_stat.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_resource.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_hw_sequencer.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_sink.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_surface.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_debug.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_stream.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_link_enc_cfg.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_link_exports.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_state.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_vm_helper.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dc_helper.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dc_dmub_srv.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dc_edid_parser.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dc/dc_spl_translate.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/modules/freesync/freesync.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/modules/color/color_gamma.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/modules/color/color_table.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/modules/info_packet/info_packet.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/modules/power/power_helpers.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_srv.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_srv_stat.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_reg.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_dcn20.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_dcn21.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_dcn30.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_dcn301.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_dcn302.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_dcn303.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_dcn31.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_dcn314.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_dcn315.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_dcn316.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_dcn32.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_dcn35.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_dcn351.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_dcn401.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp_ddc.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp_log.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp_psp.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp1_execution.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp1_transition.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp2_execution.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp2_transition.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/amdgpu_isp.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/isp_v4_1_0.o
  CC [M]  drivers/gpu/drm/amd/amdgpu/isp_v4_1_1.o
  LD [M]  drivers/gpu/drm/amd/amdgpu/amdgpu.o
make[5]: *** [../scripts/Makefile.build:440: drivers/gpu/drm] Error 2
make[4]: *** [../scripts/Makefile.build:440: drivers/gpu] Error 2
make[3]: *** [../scripts/Makefile.build:440: drivers] Error 2
make[2]: *** [/kernel/Makefile:1989: .] Error 2
make[1]: *** [/kernel/Makefile:251: __sub-make] Error 2
make[1]: Leaving directory '/kernel/build64-default'
make: *** [Makefile:251: __sub-make] Error 2
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2025-01-22 22:02 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-22 21:45 [PATCH 0/3] Re-instate GuC logs in debugfs & devcoredump John.C.Harrison
2025-01-22 21:45 ` [PATCH 1/3] drm/xe/guc: Explicitly name each chunk of GuC log data in a dump John.C.Harrison
2025-01-22 21:46 ` [PATCH 2/3] drm/xe/devcoredump: Temporarily disable the line wrapping of ASCII85 output John.C.Harrison
2025-01-22 21:46 ` [PATCH 3/3] Partially revert "drm/xe: Revert some changes that break a mesa debug tool" John.C.Harrison
2025-01-22 21:54 ` ✓ CI.Patch_applied: success for Re-instate GuC logs in debugfs & devcoredump Patchwork
2025-01-22 21:54 ` ✗ CI.checkpatch: warning " Patchwork
2025-01-22 21:55 ` ✓ CI.KUnit: success " Patchwork
2025-01-22 22:02 ` ✗ CI.Build: failure " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox