Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] drm/i915/guc/slpc: Allow GuC SLPC default strategies on MTL+
@ 2025-01-09 22:57 Rodrigo Vivi
  2025-01-09 22:57 ` [PATCH 2/2] drm/i915/guc/slpc: Print more SLPC debug status information Rodrigo Vivi
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Rodrigo Vivi @ 2025-01-09 22:57 UTC (permalink / raw)
  To: intel-xe; +Cc: Rodrigo Vivi, Vinay Belgaumkar

The Balancer and DCC strategies were left off on a fear that
these strategies would conflict with the i915's waitboost.

However, on MTL and Beyond these strategies are only active in
certain conditions where the system is TDP limited.
So, they don't conflict, but help the
waitboost by guaranteeing a bit more of GT frequency.

Without these strategies we were likely leaving some performance
behind on some scenarios.

With this change in place, the enabling/disabling of DCC and Balancer
will now be chosen by GuC, on a platform/GT basis.

v2: - Fix typos and be clear on GuC decision on platform basis (Vinay)
    - Limit change to MTL and beyond, where GuC started to take
      TDP limit into consideration.

Reviewed-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com> #v1
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
 drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
index 706fffca698b..f05c92e08d9b 100644
--- a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
+++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
@@ -367,11 +367,17 @@ static void slpc_shared_data_reset(struct slpc_shared_data *data)
 	slpc_mem_set_enabled(data, SLPC_PARAM_TASK_ENABLE_GTPERF,
 			     SLPC_PARAM_TASK_DISABLE_GTPERF);
 
-	slpc_mem_set_disabled(data, SLPC_PARAM_TASK_ENABLE_BALANCER,
-			      SLPC_PARAM_TASK_DISABLE_BALANCER);
+	/*
+	 * Don't allow balancer related algorithms on platforms before
+	 * Xe_LPG, where GuC started to restrict it to TDP limited scenarios.
+	 */
+	if (GRAPHICS_VER_FULL(gt->i915) < IP_VER(12, 70)) {
+		slpc_mem_set_disabled(data, SLPC_PARAM_TASK_ENABLE_BALANCER,
+				      SLPC_PARAM_TASK_DISABLE_BALANCER);
 
-	slpc_mem_set_disabled(data, SLPC_PARAM_TASK_ENABLE_DCC,
-			      SLPC_PARAM_TASK_DISABLE_DCC);
+		slpc_mem_set_disabled(data, SLPC_PARAM_TASK_ENABLE_DCC,
+				      SLPC_PARAM_TASK_DISABLE_DCC);
+	}
 }
 
 /**
-- 
2.47.1


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

* [PATCH 2/2] drm/i915/guc/slpc: Print more SLPC debug status information
  2025-01-09 22:57 [PATCH 1/2] drm/i915/guc/slpc: Allow GuC SLPC default strategies on MTL+ Rodrigo Vivi
@ 2025-01-09 22:57 ` Rodrigo Vivi
  2025-01-09 23:38 ` ✓ CI.Patch_applied: success for series starting with [1/2] drm/i915/guc/slpc: Allow GuC SLPC default strategies on MTL+ Patchwork
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Rodrigo Vivi @ 2025-01-09 22:57 UTC (permalink / raw)
  To: intel-xe; +Cc: Rodrigo Vivi, Vinay Belgaumkar

Let's peek on the Balancer and DCC status, now that we
are using the default strategies.

v2: fix identation
v3: fix typo (Vinay)

Reviewed-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
 drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
index f05c92e08d9b..341f9f8a7404 100644
--- a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
+++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
@@ -797,6 +797,23 @@ int intel_guc_slpc_print_info(struct intel_guc_slpc *slpc, struct drm_printer *p
 			drm_printf(p, "\tSLPC state: %s\n", slpc_get_state_string(slpc));
 			drm_printf(p, "\tGTPERF task active: %s\n",
 				   str_yes_no(slpc_tasks->status & SLPC_GTPERF_TASK_ENABLED));
+			drm_printf(p, "\tDCC enabled: %s\n",
+				   str_yes_no(slpc_tasks->status &
+					      SLPC_DCC_TASK_ENABLED));
+			drm_printf(p, "\tDCC in: %s\n",
+				   str_yes_no(slpc_tasks->status & SLPC_IN_DCC));
+			drm_printf(p, "\tBalancer enabled: %s\n",
+				   str_yes_no(slpc_tasks->status &
+					      SLPC_BALANCER_ENABLED));
+			drm_printf(p, "\tIBC enabled: %s\n",
+				   str_yes_no(slpc_tasks->status &
+					      SLPC_IBC_TASK_ENABLED));
+			drm_printf(p, "\tBalancer IA LMT enabled: %s\n",
+				   str_yes_no(slpc_tasks->status &
+					      SLPC_BALANCER_IA_LMT_ENABLED));
+			drm_printf(p, "\tBalancer IA LMT active: %s\n",
+				   str_yes_no(slpc_tasks->status &
+					      SLPC_BALANCER_IA_LMT_ACTIVE));
 			drm_printf(p, "\tMax freq: %u MHz\n",
 				   slpc_decode_max_freq(slpc));
 			drm_printf(p, "\tMin freq: %u MHz\n",
-- 
2.47.1


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

* ✓ CI.Patch_applied: success for series starting with [1/2] drm/i915/guc/slpc: Allow GuC SLPC default strategies on MTL+
  2025-01-09 22:57 [PATCH 1/2] drm/i915/guc/slpc: Allow GuC SLPC default strategies on MTL+ Rodrigo Vivi
  2025-01-09 22:57 ` [PATCH 2/2] drm/i915/guc/slpc: Print more SLPC debug status information Rodrigo Vivi
@ 2025-01-09 23:38 ` Patchwork
  2025-01-09 23:38 ` ✓ CI.checkpatch: " Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-01-09 23:38 UTC (permalink / raw)
  To: Rodrigo Vivi; +Cc: intel-xe

== Series Details ==

Series: series starting with [1/2] drm/i915/guc/slpc: Allow GuC SLPC default strategies on MTL+
URL   : https://patchwork.freedesktop.org/series/143358/
State : success

== Summary ==

=== Applying kernel patches on branch 'drm-tip' with base: ===
Base commit: 2184d2634141 drm-tip: 2025y-01m-09d-23h-34m-28s UTC integration manifest
=== git am output follows ===
Applying: drm/i915/guc/slpc: Allow GuC SLPC default strategies on MTL+
Applying: drm/i915/guc/slpc: Print more SLPC debug status information



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

* ✓ CI.checkpatch: success for series starting with [1/2] drm/i915/guc/slpc: Allow GuC SLPC default strategies on MTL+
  2025-01-09 22:57 [PATCH 1/2] drm/i915/guc/slpc: Allow GuC SLPC default strategies on MTL+ Rodrigo Vivi
  2025-01-09 22:57 ` [PATCH 2/2] drm/i915/guc/slpc: Print more SLPC debug status information Rodrigo Vivi
  2025-01-09 23:38 ` ✓ CI.Patch_applied: success for series starting with [1/2] drm/i915/guc/slpc: Allow GuC SLPC default strategies on MTL+ Patchwork
@ 2025-01-09 23:38 ` Patchwork
  2025-01-09 23:39 ` ✓ CI.KUnit: " Patchwork
  2025-01-09 23:46 ` ✗ CI.Build: failure " Patchwork
  4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-01-09 23:38 UTC (permalink / raw)
  To: Rodrigo Vivi; +Cc: intel-xe

== Series Details ==

Series: series starting with [1/2] drm/i915/guc/slpc: Allow GuC SLPC default strategies on MTL+
URL   : https://patchwork.freedesktop.org/series/143358/
State : success

== 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 fb7d3fffeb9ed731f4381f0543d39513691f102c
Author: Rodrigo Vivi <rodrigo.vivi@intel.com>
Date:   Thu Jan 9 17:57:55 2025 -0500

    drm/i915/guc/slpc: Print more SLPC debug status information
    
    Let's peek on the Balancer and DCC status, now that we
    are using the default strategies.
    
    v2: fix identation
    v3: fix typo (Vinay)
    
    Reviewed-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
    Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
+ /mt/dim checkpatch 2184d26341419e5318ba5284fe00646d2d1d4d27 drm-intel
ac9e9d28f820 drm/i915/guc/slpc: Allow GuC SLPC default strategies on MTL+
fb7d3fffeb9e drm/i915/guc/slpc: Print more SLPC debug status information



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

* ✓ CI.KUnit: success for series starting with [1/2] drm/i915/guc/slpc: Allow GuC SLPC default strategies on MTL+
  2025-01-09 22:57 [PATCH 1/2] drm/i915/guc/slpc: Allow GuC SLPC default strategies on MTL+ Rodrigo Vivi
                   ` (2 preceding siblings ...)
  2025-01-09 23:38 ` ✓ CI.checkpatch: " Patchwork
@ 2025-01-09 23:39 ` Patchwork
  2025-01-09 23:46 ` ✗ CI.Build: failure " Patchwork
  4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-01-09 23:39 UTC (permalink / raw)
  To: Rodrigo Vivi; +Cc: intel-xe

== Series Details ==

Series: series starting with [1/2] drm/i915/guc/slpc: Allow GuC SLPC default strategies on MTL+
URL   : https://patchwork.freedesktop.org/series/143358/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[23:38:42] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:38:47] 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)
      |      ^~~~~~~~~~~~~~~~~

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

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[23:39:16] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:39:17] 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)
      |      ^~~~~~~~~~~~~~~~~

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

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

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



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

* ✗ CI.Build: failure for series starting with [1/2] drm/i915/guc/slpc: Allow GuC SLPC default strategies on MTL+
  2025-01-09 22:57 [PATCH 1/2] drm/i915/guc/slpc: Allow GuC SLPC default strategies on MTL+ Rodrigo Vivi
                   ` (3 preceding siblings ...)
  2025-01-09 23:39 ` ✓ CI.KUnit: " Patchwork
@ 2025-01-09 23:46 ` Patchwork
  4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-01-09 23:46 UTC (permalink / raw)
  To: Rodrigo Vivi; +Cc: intel-xe

== Series Details ==

Series: series starting with [1/2] drm/i915/guc/slpc: Allow GuC SLPC default strategies on MTL+
URL   : https://patchwork.freedesktop.org/series/143358/
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] 6+ messages in thread

end of thread, other threads:[~2025-01-09 23:46 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-09 22:57 [PATCH 1/2] drm/i915/guc/slpc: Allow GuC SLPC default strategies on MTL+ Rodrigo Vivi
2025-01-09 22:57 ` [PATCH 2/2] drm/i915/guc/slpc: Print more SLPC debug status information Rodrigo Vivi
2025-01-09 23:38 ` ✓ CI.Patch_applied: success for series starting with [1/2] drm/i915/guc/slpc: Allow GuC SLPC default strategies on MTL+ Patchwork
2025-01-09 23:38 ` ✓ CI.checkpatch: " Patchwork
2025-01-09 23:39 ` ✓ CI.KUnit: " Patchwork
2025-01-09 23:46 ` ✗ 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