* [PATCH 0/3] Enable GSC loading and PXP for PTL
@ 2026-01-08 1:13 Daniele Ceraolo Spurio
2026-01-08 1:13 ` [PATCH 1/3] drm/xe/gsc: Make GSC FW load optional for newer platforms Daniele Ceraolo Spurio
` (12 more replies)
0 siblings, 13 replies; 21+ messages in thread
From: Daniele Ceraolo Spurio @ 2026-01-08 1:13 UTC (permalink / raw)
To: intel-xe; +Cc: Daniele Ceraolo Spurio, Rodrigo Vivi, Julia Filipchuk
GSC loading is required for content protection features (PXP, HDCP).
Since PTL force_probe was removed before we added the FW, the driver
needs to keep working if the FW is not found. Therefore, the code has
been modified to allow the GSC FW to be missing for BMG and newer HW
(older HW platforms require GSC for power management, so on those we
don't want to continue if the FW is missing).
Note that I haven't pushed the FW yet. This is on purpose, as I want to
get CI with the FW missing to test that case. Once the patches have been
reviewed and tested without the FW, I'll push the FW to intel-staging
and re-trigger CI to make sure everything works with the FW as well.
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Julia Filipchuk <julia.filipchuk@intel.com>
Daniele Ceraolo Spurio (3):
drm/xe/gsc: Make GSC FW load optional for newer platforms
drm/xe/ptl: Define GSC for PTL
drm/xe/ptl: Enable PXP for PTL
drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 2 +-
drivers/gpu/drm/xe/xe_gsc.c | 13 +++++++------
drivers/gpu/drm/xe/xe_pci.c | 1 +
drivers/gpu/drm/xe/xe_uc_fw.c | 11 ++++++++---
4 files changed, 17 insertions(+), 10 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 21+ messages in thread
* [PATCH 1/3] drm/xe/gsc: Make GSC FW load optional for newer platforms
2026-01-08 1:13 [PATCH 0/3] Enable GSC loading and PXP for PTL Daniele Ceraolo Spurio
@ 2026-01-08 1:13 ` Daniele Ceraolo Spurio
2026-01-08 14:35 ` Rodrigo Vivi
2026-01-09 15:52 ` Julia Filipchuk
2026-01-08 1:13 ` [PATCH 2/3] drm/xe/ptl: Define GSC for PTL Daniele Ceraolo Spurio
` (11 subsequent siblings)
12 siblings, 2 replies; 21+ messages in thread
From: Daniele Ceraolo Spurio @ 2026-01-08 1:13 UTC (permalink / raw)
To: intel-xe; +Cc: Daniele Ceraolo Spurio, Rodrigo Vivi, Julia Filipchuk
On newer platforms GSC FW is only required for content protection
features, so the core driver features work perfectly fine without it
(and we did in fact not enable it to start with on PTL). Therefore, we
can selectively enable the GSC only if the FW is found on disk, without
failing if it is not found.
Note that this means that the FW can now be enabled (i.e., we're looking
for it) but not available (i.e., we haven't found it), so checks on FW
support should use the latter state to decide whether to go on or not.
As part of the rework, the message for FW not found has been cleaned up
to be more readable.
While at it, drop the comment about xe_uc_fw_init() since the code has
been reworked and the statement no longer applies.
Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Julia Filipchuk <julia.filipchuk@intel.com>
---
drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 2 +-
drivers/gpu/drm/xe/xe_gsc.c | 13 +++++++------
drivers/gpu/drm/xe/xe_uc_fw.c | 10 +++++++---
3 files changed, 15 insertions(+), 10 deletions(-)
diff --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
index 07acae121aa7..ed1f65f5ef4d 100644
--- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
+++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
@@ -39,7 +39,7 @@ static bool intel_hdcp_gsc_check_status(struct drm_device *drm)
struct xe_gt *gt = tile->media_gt;
struct xe_gsc *gsc = >->uc.gsc;
- if (!gsc || !xe_uc_fw_is_enabled(&gsc->fw)) {
+ if (!gsc || !xe_uc_fw_is_available(&gsc->fw)) {
drm_dbg_kms(&xe->drm,
"GSC Components not ready for HDCP2.x\n");
return false;
diff --git a/drivers/gpu/drm/xe/xe_gsc.c b/drivers/gpu/drm/xe/xe_gsc.c
index a3157b0fe791..8ad27c884f68 100644
--- a/drivers/gpu/drm/xe/xe_gsc.c
+++ b/drivers/gpu/drm/xe/xe_gsc.c
@@ -414,15 +414,16 @@ int xe_gsc_init(struct xe_gsc *gsc)
}
/*
- * Some platforms can have GuC but not GSC. That would cause
- * xe_uc_fw_init(gsc) to return a "not supported" failure code and abort
- * all firmware loading. So check for GSC being enabled before
- * propagating the failure back up. That way the higher level will keep
- * going and load GuC as appropriate.
+ * Starting from BMG the GSC is no longer needed for MC6 entry, so the
+ * only missing features if the FW is lacking would be the content
+ * protection ones. This is acceptable, si we allow the driver load to
+ * continue if the GSC FW is missing.
*/
ret = xe_uc_fw_init(&gsc->fw);
if (!xe_uc_fw_is_enabled(&gsc->fw))
return 0;
+ else if (gt_to_xe(gt)->info.platform >= XE_BATTLEMAGE && !xe_uc_fw_is_available(&gsc->fw))
+ return 0;
else if (ret)
goto out;
@@ -614,7 +615,7 @@ void xe_gsc_print_info(struct xe_gsc *gsc, struct drm_printer *p)
drm_printf(p, "\tfound security version %u\n", gsc->security_version);
- if (!xe_uc_fw_is_enabled(&gsc->fw))
+ if (!xe_uc_fw_is_available(&gsc->fw))
return;
CLASS(xe_force_wake, fw_ref)(gt_to_fw(gt), XE_FW_GSC);
diff --git a/drivers/gpu/drm/xe/xe_uc_fw.c b/drivers/gpu/drm/xe/xe_uc_fw.c
index 50458d3bdc7d..b1a9ef3f6195 100644
--- a/drivers/gpu/drm/xe/xe_uc_fw.c
+++ b/drivers/gpu/drm/xe/xe_uc_fw.c
@@ -741,7 +741,7 @@ static int uc_fw_request(struct xe_uc_fw *uc_fw, const struct firmware **firmwar
return 0;
}
- err = request_firmware(&fw, uc_fw->path, dev);
+ err = firmware_request_nowarn(&fw, uc_fw->path, dev);
if (err)
goto fail;
@@ -770,8 +770,12 @@ static int uc_fw_request(struct xe_uc_fw *uc_fw, const struct firmware **firmwar
XE_UC_FIRMWARE_MISSING :
XE_UC_FIRMWARE_ERROR);
- xe_gt_notice(gt, "%s firmware %s: fetch failed with error %pe\n",
- xe_uc_fw_type_repr(uc_fw->type), uc_fw->path, ERR_PTR(err));
+ if (err == -ENOENT)
+ xe_gt_info(gt, "%s firmware %s not found\n",
+ xe_uc_fw_type_repr(uc_fw->type), uc_fw->path);
+ else
+ xe_gt_notice(gt, "%s firmware %s: fetch failed with error %pe\n",
+ xe_uc_fw_type_repr(uc_fw->type), uc_fw->path, ERR_PTR(err));
xe_gt_info(gt, "%s firmware(s) can be downloaded from %s\n",
xe_uc_fw_type_repr(uc_fw->type), XE_UC_FIRMWARE_URL);
--
2.43.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH 2/3] drm/xe/ptl: Define GSC for PTL
2026-01-08 1:13 [PATCH 0/3] Enable GSC loading and PXP for PTL Daniele Ceraolo Spurio
2026-01-08 1:13 ` [PATCH 1/3] drm/xe/gsc: Make GSC FW load optional for newer platforms Daniele Ceraolo Spurio
@ 2026-01-08 1:13 ` Daniele Ceraolo Spurio
2026-01-09 15:41 ` Julia Filipchuk
2026-01-08 1:13 ` [PATCH 3/3] drm/xe/ptl: Enable PXP " Daniele Ceraolo Spurio
` (10 subsequent siblings)
12 siblings, 1 reply; 21+ messages in thread
From: Daniele Ceraolo Spurio @ 2026-01-08 1:13 UTC (permalink / raw)
To: intel-xe; +Cc: Daniele Ceraolo Spurio, Rodrigo Vivi, Julia Filipchuk
PTL is identified by GSC major version 105. The compatibility version is
still 1.0.
Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Julia Filipchuk <julia.filipchuk@intel.com>
---
drivers/gpu/drm/xe/xe_uc_fw.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/xe/xe_uc_fw.c b/drivers/gpu/drm/xe/xe_uc_fw.c
index b1a9ef3f6195..1ce357d204c5 100644
--- a/drivers/gpu/drm/xe/xe_uc_fw.c
+++ b/drivers/gpu/drm/xe/xe_uc_fw.c
@@ -143,6 +143,7 @@ struct fw_blobs_by_type {
/* for the GSC FW we match the compatibility version and not the release one */
#define XE_GSC_FIRMWARE_DEFS(fw_def, major_ver) \
+ fw_def(PANTHERLAKE, GT_TYPE_ANY, major_ver(xe, gsc, ptl, 105, 1, 0)) \
fw_def(LUNARLAKE, GT_TYPE_ANY, major_ver(xe, gsc, lnl, 104, 1, 0)) \
fw_def(METEORLAKE, GT_TYPE_ANY, major_ver(i915, gsc, mtl, 102, 1, 0))
--
2.43.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH 3/3] drm/xe/ptl: Enable PXP for PTL
2026-01-08 1:13 [PATCH 0/3] Enable GSC loading and PXP for PTL Daniele Ceraolo Spurio
2026-01-08 1:13 ` [PATCH 1/3] drm/xe/gsc: Make GSC FW load optional for newer platforms Daniele Ceraolo Spurio
2026-01-08 1:13 ` [PATCH 2/3] drm/xe/ptl: Define GSC for PTL Daniele Ceraolo Spurio
@ 2026-01-08 1:13 ` Daniele Ceraolo Spurio
2026-01-08 14:35 ` Rodrigo Vivi
2026-01-08 1:20 ` ✓ CI.KUnit: success for Enable GSC loading and " Patchwork
` (9 subsequent siblings)
12 siblings, 1 reply; 21+ messages in thread
From: Daniele Ceraolo Spurio @ 2026-01-08 1:13 UTC (permalink / raw)
To: intel-xe; +Cc: Daniele Ceraolo Spurio, Rodrigo Vivi, Julia Filipchuk
Now that the GSC FW is defined, we can enable PXP for PTL. The feature
will only be turned on if the binary is found on disk.
Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Julia Filipchuk <julia.filipchuk@intel.com>
---
drivers/gpu/drm/xe/xe_pci.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
index 91e0553a8163..38dd6ee9db12 100644
--- a/drivers/gpu/drm/xe/xe_pci.c
+++ b/drivers/gpu/drm/xe/xe_pci.c
@@ -392,6 +392,7 @@ static const struct xe_device_desc ptl_desc = {
.has_sriov = true,
.has_mem_copy_instr = true,
.has_pre_prod_wa = 1,
+ .has_pxp = true,
.max_gt_per_tile = 2,
.needs_scratch = true,
.needs_shared_vf_gt_wq = true,
--
2.43.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* ✓ CI.KUnit: success for Enable GSC loading and PXP for PTL
2026-01-08 1:13 [PATCH 0/3] Enable GSC loading and PXP for PTL Daniele Ceraolo Spurio
` (2 preceding siblings ...)
2026-01-08 1:13 ` [PATCH 3/3] drm/xe/ptl: Enable PXP " Daniele Ceraolo Spurio
@ 2026-01-08 1:20 ` Patchwork
2026-01-08 1:53 ` ✓ Xe.CI.BAT: " Patchwork
` (8 subsequent siblings)
12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-01-08 1:20 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-xe
== Series Details ==
Series: Enable GSC loading and PXP for PTL
URL : https://patchwork.freedesktop.org/series/159774/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[01:19:18] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:19:22] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[01:19:54] Starting KUnit Kernel (1/1)...
[01:19:54] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:19:54] ================== guc_buf (11 subtests) ===================
[01:19:54] [PASSED] test_smallest
[01:19:54] [PASSED] test_largest
[01:19:54] [PASSED] test_granular
[01:19:54] [PASSED] test_unique
[01:19:54] [PASSED] test_overlap
[01:19:54] [PASSED] test_reusable
[01:19:54] [PASSED] test_too_big
[01:19:54] [PASSED] test_flush
[01:19:54] [PASSED] test_lookup
[01:19:54] [PASSED] test_data
[01:19:54] [PASSED] test_class
[01:19:54] ===================== [PASSED] guc_buf =====================
[01:19:54] =================== guc_dbm (7 subtests) ===================
[01:19:54] [PASSED] test_empty
[01:19:54] [PASSED] test_default
[01:19:54] ======================== test_size ========================
[01:19:54] [PASSED] 4
[01:19:54] [PASSED] 8
[01:19:54] [PASSED] 32
[01:19:54] [PASSED] 256
[01:19:54] ==================== [PASSED] test_size ====================
[01:19:54] ======================= test_reuse ========================
[01:19:54] [PASSED] 4
[01:19:54] [PASSED] 8
[01:19:54] [PASSED] 32
[01:19:54] [PASSED] 256
[01:19:54] =================== [PASSED] test_reuse ====================
[01:19:54] =================== test_range_overlap ====================
[01:19:54] [PASSED] 4
[01:19:54] [PASSED] 8
[01:19:54] [PASSED] 32
[01:19:54] [PASSED] 256
[01:19:54] =============== [PASSED] test_range_overlap ================
[01:19:54] =================== test_range_compact ====================
[01:19:54] [PASSED] 4
[01:19:54] [PASSED] 8
[01:19:54] [PASSED] 32
[01:19:54] [PASSED] 256
[01:19:54] =============== [PASSED] test_range_compact ================
[01:19:54] ==================== test_range_spare =====================
[01:19:54] [PASSED] 4
[01:19:54] [PASSED] 8
[01:19:54] [PASSED] 32
[01:19:54] [PASSED] 256
[01:19:54] ================ [PASSED] test_range_spare =================
[01:19:54] ===================== [PASSED] guc_dbm =====================
[01:19:54] =================== guc_idm (6 subtests) ===================
[01:19:54] [PASSED] bad_init
[01:19:54] [PASSED] no_init
[01:19:54] [PASSED] init_fini
[01:19:54] [PASSED] check_used
[01:19:54] [PASSED] check_quota
[01:19:54] [PASSED] check_all
[01:19:54] ===================== [PASSED] guc_idm =====================
[01:19:54] ================== no_relay (3 subtests) ===================
[01:19:54] [PASSED] xe_drops_guc2pf_if_not_ready
[01:19:54] [PASSED] xe_drops_guc2vf_if_not_ready
[01:19:54] [PASSED] xe_rejects_send_if_not_ready
[01:19:54] ==================== [PASSED] no_relay =====================
[01:19:54] ================== pf_relay (14 subtests) ==================
[01:19:54] [PASSED] pf_rejects_guc2pf_too_short
[01:19:54] [PASSED] pf_rejects_guc2pf_too_long
[01:19:54] [PASSED] pf_rejects_guc2pf_no_payload
[01:19:54] [PASSED] pf_fails_no_payload
[01:19:54] [PASSED] pf_fails_bad_origin
[01:19:54] [PASSED] pf_fails_bad_type
[01:19:54] [PASSED] pf_txn_reports_error
[01:19:54] [PASSED] pf_txn_sends_pf2guc
[01:19:54] [PASSED] pf_sends_pf2guc
[01:19:54] [SKIPPED] pf_loopback_nop
[01:19:54] [SKIPPED] pf_loopback_echo
[01:19:54] [SKIPPED] pf_loopback_fail
[01:19:54] [SKIPPED] pf_loopback_busy
[01:19:54] [SKIPPED] pf_loopback_retry
[01:19:54] ==================== [PASSED] pf_relay =====================
[01:19:54] ================== vf_relay (3 subtests) ===================
[01:19:54] [PASSED] vf_rejects_guc2vf_too_short
[01:19:54] [PASSED] vf_rejects_guc2vf_too_long
[01:19:54] [PASSED] vf_rejects_guc2vf_no_payload
[01:19:54] ==================== [PASSED] vf_relay =====================
[01:19:54] ================ pf_gt_config (6 subtests) =================
[01:19:54] [PASSED] fair_contexts_1vf
[01:19:54] [PASSED] fair_doorbells_1vf
[01:19:54] [PASSED] fair_ggtt_1vf
[01:19:54] ====================== fair_contexts ======================
[01:19:54] [PASSED] 1 VF
[01:19:54] [PASSED] 2 VFs
[01:19:54] [PASSED] 3 VFs
[01:19:54] [PASSED] 4 VFs
[01:19:54] [PASSED] 5 VFs
[01:19:54] [PASSED] 6 VFs
[01:19:54] [PASSED] 7 VFs
[01:19:54] [PASSED] 8 VFs
[01:19:54] [PASSED] 9 VFs
[01:19:54] [PASSED] 10 VFs
[01:19:54] [PASSED] 11 VFs
[01:19:54] [PASSED] 12 VFs
[01:19:54] [PASSED] 13 VFs
[01:19:54] [PASSED] 14 VFs
[01:19:54] [PASSED] 15 VFs
[01:19:54] [PASSED] 16 VFs
[01:19:54] [PASSED] 17 VFs
[01:19:54] [PASSED] 18 VFs
[01:19:54] [PASSED] 19 VFs
[01:19:54] [PASSED] 20 VFs
[01:19:54] [PASSED] 21 VFs
[01:19:54] [PASSED] 22 VFs
[01:19:54] [PASSED] 23 VFs
[01:19:54] [PASSED] 24 VFs
[01:19:54] [PASSED] 25 VFs
[01:19:54] [PASSED] 26 VFs
[01:19:54] [PASSED] 27 VFs
[01:19:54] [PASSED] 28 VFs
[01:19:54] [PASSED] 29 VFs
[01:19:54] [PASSED] 30 VFs
[01:19:54] [PASSED] 31 VFs
[01:19:54] [PASSED] 32 VFs
[01:19:54] [PASSED] 33 VFs
[01:19:54] [PASSED] 34 VFs
[01:19:54] [PASSED] 35 VFs
[01:19:54] [PASSED] 36 VFs
[01:19:54] [PASSED] 37 VFs
[01:19:54] [PASSED] 38 VFs
[01:19:54] [PASSED] 39 VFs
[01:19:54] [PASSED] 40 VFs
[01:19:54] [PASSED] 41 VFs
[01:19:54] [PASSED] 42 VFs
[01:19:54] [PASSED] 43 VFs
[01:19:54] [PASSED] 44 VFs
[01:19:54] [PASSED] 45 VFs
[01:19:54] [PASSED] 46 VFs
[01:19:54] [PASSED] 47 VFs
[01:19:54] [PASSED] 48 VFs
[01:19:54] [PASSED] 49 VFs
[01:19:54] [PASSED] 50 VFs
[01:19:54] [PASSED] 51 VFs
[01:19:54] [PASSED] 52 VFs
[01:19:54] [PASSED] 53 VFs
[01:19:54] [PASSED] 54 VFs
[01:19:54] [PASSED] 55 VFs
[01:19:54] [PASSED] 56 VFs
[01:19:54] [PASSED] 57 VFs
[01:19:54] [PASSED] 58 VFs
[01:19:54] [PASSED] 59 VFs
[01:19:54] [PASSED] 60 VFs
[01:19:54] [PASSED] 61 VFs
[01:19:54] [PASSED] 62 VFs
[01:19:54] [PASSED] 63 VFs
[01:19:54] ================== [PASSED] fair_contexts ==================
[01:19:54] ===================== fair_doorbells ======================
[01:19:54] [PASSED] 1 VF
[01:19:54] [PASSED] 2 VFs
[01:19:54] [PASSED] 3 VFs
[01:19:54] [PASSED] 4 VFs
[01:19:54] [PASSED] 5 VFs
[01:19:54] [PASSED] 6 VFs
[01:19:54] [PASSED] 7 VFs
[01:19:54] [PASSED] 8 VFs
[01:19:54] [PASSED] 9 VFs
[01:19:54] [PASSED] 10 VFs
[01:19:54] [PASSED] 11 VFs
[01:19:54] [PASSED] 12 VFs
[01:19:54] [PASSED] 13 VFs
[01:19:54] [PASSED] 14 VFs
[01:19:54] [PASSED] 15 VFs
[01:19:54] [PASSED] 16 VFs
[01:19:54] [PASSED] 17 VFs
[01:19:54] [PASSED] 18 VFs
[01:19:54] [PASSED] 19 VFs
[01:19:54] [PASSED] 20 VFs
[01:19:54] [PASSED] 21 VFs
[01:19:54] [PASSED] 22 VFs
[01:19:54] [PASSED] 23 VFs
[01:19:54] [PASSED] 24 VFs
[01:19:54] [PASSED] 25 VFs
[01:19:54] [PASSED] 26 VFs
[01:19:54] [PASSED] 27 VFs
[01:19:54] [PASSED] 28 VFs
[01:19:54] [PASSED] 29 VFs
[01:19:54] [PASSED] 30 VFs
[01:19:54] [PASSED] 31 VFs
[01:19:54] [PASSED] 32 VFs
[01:19:54] [PASSED] 33 VFs
[01:19:54] [PASSED] 34 VFs
[01:19:54] [PASSED] 35 VFs
[01:19:54] [PASSED] 36 VFs
[01:19:54] [PASSED] 37 VFs
[01:19:54] [PASSED] 38 VFs
[01:19:54] [PASSED] 39 VFs
[01:19:54] [PASSED] 40 VFs
[01:19:54] [PASSED] 41 VFs
[01:19:54] [PASSED] 42 VFs
[01:19:54] [PASSED] 43 VFs
[01:19:54] [PASSED] 44 VFs
[01:19:54] [PASSED] 45 VFs
[01:19:54] [PASSED] 46 VFs
[01:19:54] [PASSED] 47 VFs
[01:19:54] [PASSED] 48 VFs
[01:19:54] [PASSED] 49 VFs
[01:19:54] [PASSED] 50 VFs
[01:19:54] [PASSED] 51 VFs
[01:19:54] [PASSED] 52 VFs
[01:19:54] [PASSED] 53 VFs
[01:19:54] [PASSED] 54 VFs
[01:19:54] [PASSED] 55 VFs
[01:19:54] [PASSED] 56 VFs
[01:19:54] [PASSED] 57 VFs
[01:19:54] [PASSED] 58 VFs
[01:19:54] [PASSED] 59 VFs
[01:19:54] [PASSED] 60 VFs
[01:19:54] [PASSED] 61 VFs
[01:19:54] [PASSED] 62 VFs
[01:19:54] [PASSED] 63 VFs
[01:19:54] ================= [PASSED] fair_doorbells ==================
[01:19:54] ======================== fair_ggtt ========================
[01:19:54] [PASSED] 1 VF
[01:19:54] [PASSED] 2 VFs
[01:19:54] [PASSED] 3 VFs
[01:19:54] [PASSED] 4 VFs
[01:19:54] [PASSED] 5 VFs
[01:19:54] [PASSED] 6 VFs
[01:19:54] [PASSED] 7 VFs
[01:19:54] [PASSED] 8 VFs
[01:19:54] [PASSED] 9 VFs
[01:19:54] [PASSED] 10 VFs
[01:19:54] [PASSED] 11 VFs
[01:19:54] [PASSED] 12 VFs
[01:19:54] [PASSED] 13 VFs
[01:19:54] [PASSED] 14 VFs
[01:19:54] [PASSED] 15 VFs
[01:19:54] [PASSED] 16 VFs
[01:19:54] [PASSED] 17 VFs
[01:19:54] [PASSED] 18 VFs
[01:19:54] [PASSED] 19 VFs
[01:19:54] [PASSED] 20 VFs
[01:19:54] [PASSED] 21 VFs
[01:19:54] [PASSED] 22 VFs
[01:19:54] [PASSED] 23 VFs
[01:19:54] [PASSED] 24 VFs
[01:19:54] [PASSED] 25 VFs
[01:19:54] [PASSED] 26 VFs
[01:19:54] [PASSED] 27 VFs
[01:19:54] [PASSED] 28 VFs
[01:19:54] [PASSED] 29 VFs
[01:19:54] [PASSED] 30 VFs
[01:19:54] [PASSED] 31 VFs
[01:19:54] [PASSED] 32 VFs
[01:19:54] [PASSED] 33 VFs
[01:19:54] [PASSED] 34 VFs
[01:19:54] [PASSED] 35 VFs
[01:19:54] [PASSED] 36 VFs
[01:19:54] [PASSED] 37 VFs
[01:19:54] [PASSED] 38 VFs
[01:19:54] [PASSED] 39 VFs
[01:19:54] [PASSED] 40 VFs
[01:19:54] [PASSED] 41 VFs
[01:19:54] [PASSED] 42 VFs
[01:19:54] [PASSED] 43 VFs
[01:19:54] [PASSED] 44 VFs
[01:19:54] [PASSED] 45 VFs
[01:19:54] [PASSED] 46 VFs
[01:19:54] [PASSED] 47 VFs
[01:19:54] [PASSED] 48 VFs
[01:19:54] [PASSED] 49 VFs
[01:19:54] [PASSED] 50 VFs
[01:19:54] [PASSED] 51 VFs
[01:19:54] [PASSED] 52 VFs
[01:19:54] [PASSED] 53 VFs
[01:19:54] [PASSED] 54 VFs
[01:19:54] [PASSED] 55 VFs
[01:19:54] [PASSED] 56 VFs
[01:19:54] [PASSED] 57 VFs
[01:19:54] [PASSED] 58 VFs
[01:19:54] [PASSED] 59 VFs
[01:19:54] [PASSED] 60 VFs
[01:19:54] [PASSED] 61 VFs
[01:19:54] [PASSED] 62 VFs
[01:19:54] [PASSED] 63 VFs
[01:19:54] ==================== [PASSED] fair_ggtt ====================
[01:19:54] ================== [PASSED] pf_gt_config ===================
[01:19:54] ===================== lmtt (1 subtest) =====================
[01:19:54] ======================== test_ops =========================
[01:19:54] [PASSED] 2-level
[01:19:54] [PASSED] multi-level
[01:19:54] ==================== [PASSED] test_ops =====================
[01:19:54] ====================== [PASSED] lmtt =======================
[01:19:54] ================= pf_service (11 subtests) =================
[01:19:54] [PASSED] pf_negotiate_any
[01:19:54] [PASSED] pf_negotiate_base_match
[01:19:54] [PASSED] pf_negotiate_base_newer
[01:19:54] [PASSED] pf_negotiate_base_next
[01:19:54] [SKIPPED] pf_negotiate_base_older
[01:19:54] [PASSED] pf_negotiate_base_prev
[01:19:54] [PASSED] pf_negotiate_latest_match
[01:19:54] [PASSED] pf_negotiate_latest_newer
[01:19:54] [PASSED] pf_negotiate_latest_next
[01:19:54] [SKIPPED] pf_negotiate_latest_older
[01:19:54] [SKIPPED] pf_negotiate_latest_prev
[01:19:54] =================== [PASSED] pf_service ====================
[01:19:54] ================= xe_guc_g2g (2 subtests) ==================
[01:19:54] ============== xe_live_guc_g2g_kunit_default ==============
[01:19:54] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[01:19:54] ============== xe_live_guc_g2g_kunit_allmem ===============
[01:19:54] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[01:19:54] =================== [SKIPPED] xe_guc_g2g ===================
[01:19:54] =================== xe_mocs (2 subtests) ===================
[01:19:54] ================ xe_live_mocs_kernel_kunit ================
[01:19:54] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[01:19:54] ================ xe_live_mocs_reset_kunit =================
[01:19:54] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[01:19:54] ==================== [SKIPPED] xe_mocs =====================
[01:19:54] ================= xe_migrate (2 subtests) ==================
[01:19:54] ================= xe_migrate_sanity_kunit =================
[01:19:54] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[01:19:54] ================== xe_validate_ccs_kunit ==================
[01:19:54] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[01:19:54] =================== [SKIPPED] xe_migrate ===================
[01:19:54] ================== xe_dma_buf (1 subtest) ==================
[01:19:54] ==================== xe_dma_buf_kunit =====================
[01:19:54] ================ [SKIPPED] xe_dma_buf_kunit ================
[01:19:54] =================== [SKIPPED] xe_dma_buf ===================
[01:19:54] ================= xe_bo_shrink (1 subtest) =================
[01:19:54] =================== xe_bo_shrink_kunit ====================
[01:19:54] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[01:19:54] ================== [SKIPPED] xe_bo_shrink ==================
[01:19:54] ==================== xe_bo (2 subtests) ====================
[01:19:54] ================== xe_ccs_migrate_kunit ===================
[01:19:54] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[01:19:54] ==================== xe_bo_evict_kunit ====================
[01:19:54] =============== [SKIPPED] xe_bo_evict_kunit ================
[01:19:54] ===================== [SKIPPED] xe_bo ======================
[01:19:54] ==================== args (13 subtests) ====================
[01:19:54] [PASSED] count_args_test
[01:19:54] [PASSED] call_args_example
[01:19:54] [PASSED] call_args_test
[01:19:54] [PASSED] drop_first_arg_example
[01:19:54] [PASSED] drop_first_arg_test
[01:19:54] [PASSED] first_arg_example
[01:19:54] [PASSED] first_arg_test
[01:19:54] [PASSED] last_arg_example
[01:19:54] [PASSED] last_arg_test
[01:19:54] [PASSED] pick_arg_example
[01:19:54] [PASSED] if_args_example
[01:19:54] [PASSED] if_args_test
[01:19:54] [PASSED] sep_comma_example
[01:19:54] ====================== [PASSED] args =======================
[01:19:54] =================== xe_pci (3 subtests) ====================
[01:19:54] ==================== check_graphics_ip ====================
[01:19:54] [PASSED] 12.00 Xe_LP
[01:19:54] [PASSED] 12.10 Xe_LP+
[01:19:54] [PASSED] 12.55 Xe_HPG
[01:19:54] [PASSED] 12.60 Xe_HPC
[01:19:54] [PASSED] 12.70 Xe_LPG
[01:19:54] [PASSED] 12.71 Xe_LPG
[01:19:54] [PASSED] 12.74 Xe_LPG+
[01:19:54] [PASSED] 20.01 Xe2_HPG
[01:19:54] [PASSED] 20.02 Xe2_HPG
[01:19:54] [PASSED] 20.04 Xe2_LPG
[01:19:54] [PASSED] 30.00 Xe3_LPG
[01:19:54] [PASSED] 30.01 Xe3_LPG
[01:19:54] [PASSED] 30.03 Xe3_LPG
[01:19:54] [PASSED] 30.04 Xe3_LPG
[01:19:54] [PASSED] 30.05 Xe3_LPG
[01:19:54] [PASSED] 35.11 Xe3p_XPC
[01:19:54] ================ [PASSED] check_graphics_ip ================
[01:19:54] ===================== check_media_ip ======================
[01:19:54] [PASSED] 12.00 Xe_M
[01:19:54] [PASSED] 12.55 Xe_HPM
[01:19:54] [PASSED] 13.00 Xe_LPM+
[01:19:54] [PASSED] 13.01 Xe2_HPM
[01:19:54] [PASSED] 20.00 Xe2_LPM
[01:19:54] [PASSED] 30.00 Xe3_LPM
[01:19:54] [PASSED] 30.02 Xe3_LPM
[01:19:54] [PASSED] 35.00 Xe3p_LPM
[01:19:54] [PASSED] 35.03 Xe3p_HPM
[01:19:54] ================= [PASSED] check_media_ip ==================
[01:19:54] =================== check_platform_desc ===================
[01:19:54] [PASSED] 0x9A60 (TIGERLAKE)
[01:19:54] [PASSED] 0x9A68 (TIGERLAKE)
[01:19:54] [PASSED] 0x9A70 (TIGERLAKE)
[01:19:54] [PASSED] 0x9A40 (TIGERLAKE)
[01:19:54] [PASSED] 0x9A49 (TIGERLAKE)
[01:19:54] [PASSED] 0x9A59 (TIGERLAKE)
[01:19:54] [PASSED] 0x9A78 (TIGERLAKE)
[01:19:54] [PASSED] 0x9AC0 (TIGERLAKE)
[01:19:54] [PASSED] 0x9AC9 (TIGERLAKE)
[01:19:54] [PASSED] 0x9AD9 (TIGERLAKE)
[01:19:54] [PASSED] 0x9AF8 (TIGERLAKE)
[01:19:54] [PASSED] 0x4C80 (ROCKETLAKE)
[01:19:54] [PASSED] 0x4C8A (ROCKETLAKE)
[01:19:54] [PASSED] 0x4C8B (ROCKETLAKE)
[01:19:54] [PASSED] 0x4C8C (ROCKETLAKE)
[01:19:54] [PASSED] 0x4C90 (ROCKETLAKE)
[01:19:54] [PASSED] 0x4C9A (ROCKETLAKE)
[01:19:54] [PASSED] 0x4680 (ALDERLAKE_S)
[01:19:54] [PASSED] 0x4682 (ALDERLAKE_S)
[01:19:54] [PASSED] 0x4688 (ALDERLAKE_S)
[01:19:54] [PASSED] 0x468A (ALDERLAKE_S)
[01:19:54] [PASSED] 0x468B (ALDERLAKE_S)
[01:19:54] [PASSED] 0x4690 (ALDERLAKE_S)
[01:19:54] [PASSED] 0x4692 (ALDERLAKE_S)
[01:19:54] [PASSED] 0x4693 (ALDERLAKE_S)
[01:19:54] [PASSED] 0x46A0 (ALDERLAKE_P)
[01:19:54] [PASSED] 0x46A1 (ALDERLAKE_P)
[01:19:54] [PASSED] 0x46A2 (ALDERLAKE_P)
[01:19:54] [PASSED] 0x46A3 (ALDERLAKE_P)
[01:19:54] [PASSED] 0x46A6 (ALDERLAKE_P)
[01:19:54] [PASSED] 0x46A8 (ALDERLAKE_P)
[01:19:54] [PASSED] 0x46AA (ALDERLAKE_P)
[01:19:54] [PASSED] 0x462A (ALDERLAKE_P)
[01:19:54] [PASSED] 0x4626 (ALDERLAKE_P)
[01:19:54] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[01:19:54] [PASSED] 0x46B0 (ALDERLAKE_P)
[01:19:54] [PASSED] 0x46B1 (ALDERLAKE_P)
[01:19:54] [PASSED] 0x46B2 (ALDERLAKE_P)
[01:19:54] [PASSED] 0x46B3 (ALDERLAKE_P)
[01:19:54] [PASSED] 0x46C0 (ALDERLAKE_P)
[01:19:54] [PASSED] 0x46C1 (ALDERLAKE_P)
[01:19:54] [PASSED] 0x46C2 (ALDERLAKE_P)
[01:19:54] [PASSED] 0x46C3 (ALDERLAKE_P)
[01:19:54] [PASSED] 0x46D0 (ALDERLAKE_N)
[01:19:54] [PASSED] 0x46D1 (ALDERLAKE_N)
[01:19:54] [PASSED] 0x46D2 (ALDERLAKE_N)
[01:19:54] [PASSED] 0x46D3 (ALDERLAKE_N)
[01:19:54] [PASSED] 0x46D4 (ALDERLAKE_N)
[01:19:54] [PASSED] 0xA721 (ALDERLAKE_P)
[01:19:54] [PASSED] 0xA7A1 (ALDERLAKE_P)
[01:19:54] [PASSED] 0xA7A9 (ALDERLAKE_P)
[01:19:54] [PASSED] 0xA7AC (ALDERLAKE_P)
[01:19:54] [PASSED] 0xA7AD (ALDERLAKE_P)
[01:19:54] [PASSED] 0xA720 (ALDERLAKE_P)
[01:19:54] [PASSED] 0xA7A0 (ALDERLAKE_P)
[01:19:54] [PASSED] 0xA7A8 (ALDERLAKE_P)
[01:19:54] [PASSED] 0xA7AA (ALDERLAKE_P)
[01:19:54] [PASSED] 0xA7AB (ALDERLAKE_P)
[01:19:54] [PASSED] 0xA780 (ALDERLAKE_S)
[01:19:54] [PASSED] 0xA781 (ALDERLAKE_S)
[01:19:54] [PASSED] 0xA782 (ALDERLAKE_S)
[01:19:54] [PASSED] 0xA783 (ALDERLAKE_S)
[01:19:54] [PASSED] 0xA788 (ALDERLAKE_S)
[01:19:54] [PASSED] 0xA789 (ALDERLAKE_S)
[01:19:54] [PASSED] 0xA78A (ALDERLAKE_S)
[01:19:54] [PASSED] 0xA78B (ALDERLAKE_S)
[01:19:54] [PASSED] 0x4905 (DG1)
[01:19:54] [PASSED] 0x4906 (DG1)
[01:19:54] [PASSED] 0x4907 (DG1)
[01:19:54] [PASSED] 0x4908 (DG1)
[01:19:54] [PASSED] 0x4909 (DG1)
[01:19:54] [PASSED] 0x56C0 (DG2)
[01:19:54] [PASSED] 0x56C2 (DG2)
[01:19:54] [PASSED] 0x56C1 (DG2)
[01:19:54] [PASSED] 0x7D51 (METEORLAKE)
[01:19:54] [PASSED] 0x7DD1 (METEORLAKE)
[01:19:54] [PASSED] 0x7D41 (METEORLAKE)
[01:19:54] [PASSED] 0x7D67 (METEORLAKE)
[01:19:54] [PASSED] 0xB640 (METEORLAKE)
[01:19:54] [PASSED] 0x56A0 (DG2)
[01:19:54] [PASSED] 0x56A1 (DG2)
[01:19:54] [PASSED] 0x56A2 (DG2)
[01:19:54] [PASSED] 0x56BE (DG2)
[01:19:54] [PASSED] 0x56BF (DG2)
[01:19:54] [PASSED] 0x5690 (DG2)
[01:19:54] [PASSED] 0x5691 (DG2)
[01:19:54] [PASSED] 0x5692 (DG2)
[01:19:54] [PASSED] 0x56A5 (DG2)
[01:19:54] [PASSED] 0x56A6 (DG2)
[01:19:54] [PASSED] 0x56B0 (DG2)
[01:19:54] [PASSED] 0x56B1 (DG2)
[01:19:54] [PASSED] 0x56BA (DG2)
[01:19:54] [PASSED] 0x56BB (DG2)
[01:19:54] [PASSED] 0x56BC (DG2)
[01:19:54] [PASSED] 0x56BD (DG2)
[01:19:54] [PASSED] 0x5693 (DG2)
[01:19:54] [PASSED] 0x5694 (DG2)
[01:19:54] [PASSED] 0x5695 (DG2)
[01:19:54] [PASSED] 0x56A3 (DG2)
[01:19:54] [PASSED] 0x56A4 (DG2)
[01:19:54] [PASSED] 0x56B2 (DG2)
[01:19:54] [PASSED] 0x56B3 (DG2)
[01:19:54] [PASSED] 0x5696 (DG2)
[01:19:54] [PASSED] 0x5697 (DG2)
[01:19:54] [PASSED] 0xB69 (PVC)
[01:19:54] [PASSED] 0xB6E (PVC)
[01:19:54] [PASSED] 0xBD4 (PVC)
[01:19:54] [PASSED] 0xBD5 (PVC)
[01:19:54] [PASSED] 0xBD6 (PVC)
[01:19:54] [PASSED] 0xBD7 (PVC)
[01:19:54] [PASSED] 0xBD8 (PVC)
[01:19:54] [PASSED] 0xBD9 (PVC)
[01:19:54] [PASSED] 0xBDA (PVC)
[01:19:54] [PASSED] 0xBDB (PVC)
[01:19:54] [PASSED] 0xBE0 (PVC)
[01:19:54] [PASSED] 0xBE1 (PVC)
[01:19:54] [PASSED] 0xBE5 (PVC)
[01:19:54] [PASSED] 0x7D40 (METEORLAKE)
[01:19:54] [PASSED] 0x7D45 (METEORLAKE)
[01:19:54] [PASSED] 0x7D55 (METEORLAKE)
[01:19:54] [PASSED] 0x7D60 (METEORLAKE)
[01:19:54] [PASSED] 0x7DD5 (METEORLAKE)
[01:19:54] [PASSED] 0x6420 (LUNARLAKE)
[01:19:54] [PASSED] 0x64A0 (LUNARLAKE)
[01:19:54] [PASSED] 0x64B0 (LUNARLAKE)
[01:19:54] [PASSED] 0xE202 (BATTLEMAGE)
[01:19:54] [PASSED] 0xE209 (BATTLEMAGE)
[01:19:54] [PASSED] 0xE20B (BATTLEMAGE)
[01:19:54] [PASSED] 0xE20C (BATTLEMAGE)
[01:19:54] [PASSED] 0xE20D (BATTLEMAGE)
[01:19:54] [PASSED] 0xE210 (BATTLEMAGE)
[01:19:54] [PASSED] 0xE211 (BATTLEMAGE)
[01:19:54] [PASSED] 0xE212 (BATTLEMAGE)
[01:19:54] [PASSED] 0xE216 (BATTLEMAGE)
[01:19:54] [PASSED] 0xE220 (BATTLEMAGE)
[01:19:54] [PASSED] 0xE221 (BATTLEMAGE)
[01:19:54] [PASSED] 0xE222 (BATTLEMAGE)
[01:19:54] [PASSED] 0xE223 (BATTLEMAGE)
[01:19:54] [PASSED] 0xB080 (PANTHERLAKE)
[01:19:54] [PASSED] 0xB081 (PANTHERLAKE)
[01:19:54] [PASSED] 0xB082 (PANTHERLAKE)
[01:19:54] [PASSED] 0xB083 (PANTHERLAKE)
[01:19:54] [PASSED] 0xB084 (PANTHERLAKE)
[01:19:54] [PASSED] 0xB085 (PANTHERLAKE)
[01:19:54] [PASSED] 0xB086 (PANTHERLAKE)
[01:19:54] [PASSED] 0xB087 (PANTHERLAKE)
[01:19:54] [PASSED] 0xB08F (PANTHERLAKE)
[01:19:54] [PASSED] 0xB090 (PANTHERLAKE)
[01:19:54] [PASSED] 0xB0A0 (PANTHERLAKE)
[01:19:54] [PASSED] 0xB0B0 (PANTHERLAKE)
[01:19:54] [PASSED] 0xFD80 (PANTHERLAKE)
[01:19:54] [PASSED] 0xFD81 (PANTHERLAKE)
[01:19:54] [PASSED] 0xD740 (NOVALAKE_S)
[01:19:54] [PASSED] 0xD741 (NOVALAKE_S)
[01:19:54] [PASSED] 0xD742 (NOVALAKE_S)
[01:19:54] [PASSED] 0xD743 (NOVALAKE_S)
[01:19:54] [PASSED] 0xD744 (NOVALAKE_S)
[01:19:54] [PASSED] 0xD745 (NOVALAKE_S)
[01:19:54] [PASSED] 0x674C (CRESCENTISLAND)
[01:19:54] =============== [PASSED] check_platform_desc ===============
[01:19:54] ===================== [PASSED] xe_pci ======================
[01:19:54] =================== xe_rtp (2 subtests) ====================
[01:19:54] =============== xe_rtp_process_to_sr_tests ================
[01:19:54] [PASSED] coalesce-same-reg
[01:19:54] [PASSED] no-match-no-add
[01:19:54] [PASSED] match-or
[01:19:54] [PASSED] match-or-xfail
[01:19:54] [PASSED] no-match-no-add-multiple-rules
[01:19:54] [PASSED] two-regs-two-entries
[01:19:54] [PASSED] clr-one-set-other
[01:19:54] [PASSED] set-field
[01:19:54] [PASSED] conflict-duplicate
[01:19:54] [PASSED] conflict-not-disjoint
[01:19:54] [PASSED] conflict-reg-type
[01:19:54] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[01:19:54] ================== xe_rtp_process_tests ===================
[01:19:54] [PASSED] active1
[01:19:54] [PASSED] active2
[01:19:54] [PASSED] active-inactive
[01:19:54] [PASSED] inactive-active
[01:19:54] [PASSED] inactive-1st_or_active-inactive
[01:19:54] [PASSED] inactive-2nd_or_active-inactive
[01:19:54] [PASSED] inactive-last_or_active-inactive
[01:19:54] [PASSED] inactive-no_or_active-inactive
[01:19:54] ============== [PASSED] xe_rtp_process_tests ===============
[01:19:54] ===================== [PASSED] xe_rtp ======================
[01:19:54] ==================== xe_wa (1 subtest) =====================
[01:19:54] ======================== xe_wa_gt =========================
[01:19:54] [PASSED] TIGERLAKE B0
[01:19:54] [PASSED] DG1 A0
[01:19:54] [PASSED] DG1 B0
[01:19:54] [PASSED] ALDERLAKE_S A0
[01:19:54] [PASSED] ALDERLAKE_S B0
[01:19:54] [PASSED] ALDERLAKE_S C0
[01:19:54] [PASSED] ALDERLAKE_S D0
[01:19:54] [PASSED] ALDERLAKE_P A0
[01:19:54] [PASSED] ALDERLAKE_P B0
[01:19:54] [PASSED] ALDERLAKE_P C0
[01:19:54] [PASSED] ALDERLAKE_S RPLS D0
[01:19:54] [PASSED] ALDERLAKE_P RPLU E0
[01:19:54] [PASSED] DG2 G10 C0
[01:19:54] [PASSED] DG2 G11 B1
[01:19:54] [PASSED] DG2 G12 A1
[01:19:54] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[01:19:54] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[01:19:54] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[01:19:54] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[01:19:54] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[01:19:54] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[01:19:54] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[01:19:54] ==================== [PASSED] xe_wa_gt =====================
[01:19:54] ====================== [PASSED] xe_wa ======================
[01:19:54] ============================================================
[01:19:54] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[01:19:54] Elapsed time: 36.176s total, 4.272s configuring, 31.432s building, 0.460s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[01:19:54] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:19:56] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[01:20:21] Starting KUnit Kernel (1/1)...
[01:20:21] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:20:21] ============ drm_test_pick_cmdline (2 subtests) ============
[01:20:21] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[01:20:21] =============== drm_test_pick_cmdline_named ===============
[01:20:21] [PASSED] NTSC
[01:20:21] [PASSED] NTSC-J
[01:20:21] [PASSED] PAL
[01:20:21] [PASSED] PAL-M
[01:20:21] =========== [PASSED] drm_test_pick_cmdline_named ===========
[01:20:21] ============== [PASSED] drm_test_pick_cmdline ==============
[01:20:21] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[01:20:21] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[01:20:21] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[01:20:21] =========== drm_validate_clone_mode (2 subtests) ===========
[01:20:21] ============== drm_test_check_in_clone_mode ===============
[01:20:21] [PASSED] in_clone_mode
[01:20:21] [PASSED] not_in_clone_mode
[01:20:21] ========== [PASSED] drm_test_check_in_clone_mode ===========
[01:20:21] =============== drm_test_check_valid_clones ===============
[01:20:21] [PASSED] not_in_clone_mode
[01:20:21] [PASSED] valid_clone
[01:20:21] [PASSED] invalid_clone
[01:20:21] =========== [PASSED] drm_test_check_valid_clones ===========
[01:20:21] ============= [PASSED] drm_validate_clone_mode =============
[01:20:21] ============= drm_validate_modeset (1 subtest) =============
[01:20:21] [PASSED] drm_test_check_connector_changed_modeset
[01:20:21] ============== [PASSED] drm_validate_modeset ===============
[01:20:21] ====== drm_test_bridge_get_current_state (2 subtests) ======
[01:20:21] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[01:20:21] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[01:20:21] ======== [PASSED] drm_test_bridge_get_current_state ========
[01:20:21] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[01:20:21] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[01:20:21] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[01:20:21] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[01:20:21] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[01:20:21] ============== drm_bridge_alloc (2 subtests) ===============
[01:20:21] [PASSED] drm_test_drm_bridge_alloc_basic
[01:20:21] [PASSED] drm_test_drm_bridge_alloc_get_put
[01:20:21] ================ [PASSED] drm_bridge_alloc =================
[01:20:21] ================== drm_buddy (8 subtests) ==================
[01:20:21] [PASSED] drm_test_buddy_alloc_limit
[01:20:21] [PASSED] drm_test_buddy_alloc_optimistic
[01:20:21] [PASSED] drm_test_buddy_alloc_pessimistic
[01:20:21] [PASSED] drm_test_buddy_alloc_pathological
[01:20:21] [PASSED] drm_test_buddy_alloc_contiguous
[01:20:21] [PASSED] drm_test_buddy_alloc_clear
[01:20:21] [PASSED] drm_test_buddy_alloc_range_bias
[01:20:21] [PASSED] drm_test_buddy_fragmentation_performance
[01:20:21] ==================== [PASSED] drm_buddy ====================
[01:20:21] ============= drm_cmdline_parser (40 subtests) =============
[01:20:21] [PASSED] drm_test_cmdline_force_d_only
[01:20:21] [PASSED] drm_test_cmdline_force_D_only_dvi
[01:20:21] [PASSED] drm_test_cmdline_force_D_only_hdmi
[01:20:21] [PASSED] drm_test_cmdline_force_D_only_not_digital
[01:20:21] [PASSED] drm_test_cmdline_force_e_only
[01:20:21] [PASSED] drm_test_cmdline_res
[01:20:21] [PASSED] drm_test_cmdline_res_vesa
[01:20:21] [PASSED] drm_test_cmdline_res_vesa_rblank
[01:20:21] [PASSED] drm_test_cmdline_res_rblank
[01:20:21] [PASSED] drm_test_cmdline_res_bpp
[01:20:21] [PASSED] drm_test_cmdline_res_refresh
[01:20:21] [PASSED] drm_test_cmdline_res_bpp_refresh
[01:20:21] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[01:20:21] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[01:20:21] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[01:20:21] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[01:20:21] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[01:20:21] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[01:20:21] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[01:20:21] [PASSED] drm_test_cmdline_res_margins_force_on
[01:20:21] [PASSED] drm_test_cmdline_res_vesa_margins
[01:20:21] [PASSED] drm_test_cmdline_name
[01:20:21] [PASSED] drm_test_cmdline_name_bpp
[01:20:21] [PASSED] drm_test_cmdline_name_option
[01:20:21] [PASSED] drm_test_cmdline_name_bpp_option
[01:20:21] [PASSED] drm_test_cmdline_rotate_0
[01:20:21] [PASSED] drm_test_cmdline_rotate_90
[01:20:21] [PASSED] drm_test_cmdline_rotate_180
[01:20:21] [PASSED] drm_test_cmdline_rotate_270
[01:20:21] [PASSED] drm_test_cmdline_hmirror
[01:20:21] [PASSED] drm_test_cmdline_vmirror
[01:20:21] [PASSED] drm_test_cmdline_margin_options
[01:20:21] [PASSED] drm_test_cmdline_multiple_options
[01:20:21] [PASSED] drm_test_cmdline_bpp_extra_and_option
[01:20:21] [PASSED] drm_test_cmdline_extra_and_option
[01:20:21] [PASSED] drm_test_cmdline_freestanding_options
[01:20:21] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[01:20:21] [PASSED] drm_test_cmdline_panel_orientation
[01:20:21] ================ drm_test_cmdline_invalid =================
[01:20:21] [PASSED] margin_only
[01:20:21] [PASSED] interlace_only
[01:20:21] [PASSED] res_missing_x
[01:20:21] [PASSED] res_missing_y
[01:20:21] [PASSED] res_bad_y
[01:20:21] [PASSED] res_missing_y_bpp
[01:20:21] [PASSED] res_bad_bpp
[01:20:21] [PASSED] res_bad_refresh
[01:20:21] [PASSED] res_bpp_refresh_force_on_off
[01:20:21] [PASSED] res_invalid_mode
[01:20:21] [PASSED] res_bpp_wrong_place_mode
[01:20:21] [PASSED] name_bpp_refresh
[01:20:21] [PASSED] name_refresh
[01:20:21] [PASSED] name_refresh_wrong_mode
[01:20:21] [PASSED] name_refresh_invalid_mode
[01:20:21] [PASSED] rotate_multiple
[01:20:21] [PASSED] rotate_invalid_val
[01:20:21] [PASSED] rotate_truncated
[01:20:21] [PASSED] invalid_option
[01:20:21] [PASSED] invalid_tv_option
[01:20:21] [PASSED] truncated_tv_option
[01:20:21] ============ [PASSED] drm_test_cmdline_invalid =============
[01:20:21] =============== drm_test_cmdline_tv_options ===============
[01:20:21] [PASSED] NTSC
[01:20:21] [PASSED] NTSC_443
[01:20:21] [PASSED] NTSC_J
[01:20:21] [PASSED] PAL
[01:20:21] [PASSED] PAL_M
[01:20:21] [PASSED] PAL_N
[01:20:21] [PASSED] SECAM
[01:20:21] [PASSED] MONO_525
[01:20:21] [PASSED] MONO_625
[01:20:21] =========== [PASSED] drm_test_cmdline_tv_options ===========
[01:20:21] =============== [PASSED] drm_cmdline_parser ================
[01:20:21] ========== drmm_connector_hdmi_init (20 subtests) ==========
[01:20:21] [PASSED] drm_test_connector_hdmi_init_valid
[01:20:21] [PASSED] drm_test_connector_hdmi_init_bpc_8
[01:20:21] [PASSED] drm_test_connector_hdmi_init_bpc_10
[01:20:21] [PASSED] drm_test_connector_hdmi_init_bpc_12
[01:20:21] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[01:20:21] [PASSED] drm_test_connector_hdmi_init_bpc_null
[01:20:21] [PASSED] drm_test_connector_hdmi_init_formats_empty
[01:20:21] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[01:20:21] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[01:20:21] [PASSED] supported_formats=0x9 yuv420_allowed=1
[01:20:21] [PASSED] supported_formats=0x9 yuv420_allowed=0
[01:20:21] [PASSED] supported_formats=0x3 yuv420_allowed=1
[01:20:21] [PASSED] supported_formats=0x3 yuv420_allowed=0
[01:20:21] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[01:20:21] [PASSED] drm_test_connector_hdmi_init_null_ddc
[01:20:21] [PASSED] drm_test_connector_hdmi_init_null_product
[01:20:21] [PASSED] drm_test_connector_hdmi_init_null_vendor
[01:20:21] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[01:20:21] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[01:20:21] [PASSED] drm_test_connector_hdmi_init_product_valid
[01:20:21] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[01:20:21] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[01:20:21] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[01:20:21] ========= drm_test_connector_hdmi_init_type_valid =========
[01:20:21] [PASSED] HDMI-A
[01:20:21] [PASSED] HDMI-B
[01:20:21] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[01:20:21] ======== drm_test_connector_hdmi_init_type_invalid ========
[01:20:21] [PASSED] Unknown
[01:20:21] [PASSED] VGA
[01:20:21] [PASSED] DVI-I
[01:20:21] [PASSED] DVI-D
[01:20:21] [PASSED] DVI-A
[01:20:21] [PASSED] Composite
[01:20:21] [PASSED] SVIDEO
[01:20:21] [PASSED] LVDS
[01:20:21] [PASSED] Component
[01:20:21] [PASSED] DIN
[01:20:21] [PASSED] DP
[01:20:21] [PASSED] TV
[01:20:21] [PASSED] eDP
[01:20:21] [PASSED] Virtual
[01:20:21] [PASSED] DSI
[01:20:21] [PASSED] DPI
[01:20:21] [PASSED] Writeback
[01:20:21] [PASSED] SPI
[01:20:21] [PASSED] USB
[01:20:21] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[01:20:21] ============ [PASSED] drmm_connector_hdmi_init =============
[01:20:21] ============= drmm_connector_init (3 subtests) =============
[01:20:21] [PASSED] drm_test_drmm_connector_init
[01:20:21] [PASSED] drm_test_drmm_connector_init_null_ddc
[01:20:21] ========= drm_test_drmm_connector_init_type_valid =========
[01:20:21] [PASSED] Unknown
[01:20:21] [PASSED] VGA
[01:20:21] [PASSED] DVI-I
[01:20:21] [PASSED] DVI-D
[01:20:21] [PASSED] DVI-A
[01:20:21] [PASSED] Composite
[01:20:21] [PASSED] SVIDEO
[01:20:21] [PASSED] LVDS
[01:20:21] [PASSED] Component
[01:20:21] [PASSED] DIN
[01:20:21] [PASSED] DP
[01:20:21] [PASSED] HDMI-A
[01:20:21] [PASSED] HDMI-B
[01:20:21] [PASSED] TV
[01:20:21] [PASSED] eDP
[01:20:21] [PASSED] Virtual
[01:20:21] [PASSED] DSI
[01:20:21] [PASSED] DPI
[01:20:21] [PASSED] Writeback
[01:20:21] [PASSED] SPI
[01:20:21] [PASSED] USB
[01:20:21] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[01:20:21] =============== [PASSED] drmm_connector_init ===============
[01:20:21] ========= drm_connector_dynamic_init (6 subtests) ==========
[01:20:21] [PASSED] drm_test_drm_connector_dynamic_init
[01:20:21] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[01:20:21] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[01:20:21] [PASSED] drm_test_drm_connector_dynamic_init_properties
[01:20:21] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[01:20:21] [PASSED] Unknown
[01:20:21] [PASSED] VGA
[01:20:21] [PASSED] DVI-I
[01:20:21] [PASSED] DVI-D
[01:20:21] [PASSED] DVI-A
[01:20:21] [PASSED] Composite
[01:20:21] [PASSED] SVIDEO
[01:20:21] [PASSED] LVDS
[01:20:21] [PASSED] Component
[01:20:21] [PASSED] DIN
[01:20:21] [PASSED] DP
[01:20:21] [PASSED] HDMI-A
[01:20:21] [PASSED] HDMI-B
[01:20:21] [PASSED] TV
[01:20:21] [PASSED] eDP
[01:20:21] [PASSED] Virtual
[01:20:21] [PASSED] DSI
[01:20:21] [PASSED] DPI
[01:20:21] [PASSED] Writeback
[01:20:21] [PASSED] SPI
[01:20:21] [PASSED] USB
[01:20:21] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[01:20:21] ======== drm_test_drm_connector_dynamic_init_name =========
[01:20:21] [PASSED] Unknown
[01:20:21] [PASSED] VGA
[01:20:21] [PASSED] DVI-I
[01:20:21] [PASSED] DVI-D
[01:20:21] [PASSED] DVI-A
[01:20:21] [PASSED] Composite
[01:20:21] [PASSED] SVIDEO
[01:20:21] [PASSED] LVDS
[01:20:21] [PASSED] Component
[01:20:21] [PASSED] DIN
[01:20:21] [PASSED] DP
[01:20:21] [PASSED] HDMI-A
[01:20:21] [PASSED] HDMI-B
[01:20:21] [PASSED] TV
[01:20:21] [PASSED] eDP
[01:20:21] [PASSED] Virtual
[01:20:21] [PASSED] DSI
[01:20:21] [PASSED] DPI
[01:20:21] [PASSED] Writeback
[01:20:21] [PASSED] SPI
[01:20:21] [PASSED] USB
[01:20:21] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[01:20:21] =========== [PASSED] drm_connector_dynamic_init ============
[01:20:21] ==== drm_connector_dynamic_register_early (4 subtests) =====
[01:20:21] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[01:20:21] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[01:20:21] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[01:20:21] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[01:20:21] ====== [PASSED] drm_connector_dynamic_register_early =======
[01:20:21] ======= drm_connector_dynamic_register (7 subtests) ========
[01:20:21] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[01:20:21] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[01:20:21] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[01:20:21] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[01:20:21] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[01:20:21] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[01:20:21] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[01:20:21] ========= [PASSED] drm_connector_dynamic_register ==========
[01:20:21] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[01:20:21] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[01:20:21] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[01:20:21] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[01:20:21] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[01:20:21] ========== drm_test_get_tv_mode_from_name_valid ===========
[01:20:21] [PASSED] NTSC
[01:20:21] [PASSED] NTSC-443
[01:20:21] [PASSED] NTSC-J
[01:20:21] [PASSED] PAL
[01:20:21] [PASSED] PAL-M
[01:20:21] [PASSED] PAL-N
[01:20:21] [PASSED] SECAM
[01:20:21] [PASSED] Mono
[01:20:21] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[01:20:21] [PASSED] drm_test_get_tv_mode_from_name_truncated
[01:20:21] ============ [PASSED] drm_get_tv_mode_from_name ============
[01:20:21] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[01:20:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[01:20:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[01:20:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[01:20:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[01:20:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[01:20:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[01:20:21] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[01:20:21] [PASSED] VIC 96
[01:20:21] [PASSED] VIC 97
[01:20:21] [PASSED] VIC 101
[01:20:21] [PASSED] VIC 102
[01:20:21] [PASSED] VIC 106
[01:20:21] [PASSED] VIC 107
[01:20:21] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[01:20:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[01:20:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[01:20:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[01:20:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[01:20:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[01:20:21] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[01:20:21] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[01:20:21] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[01:20:21] [PASSED] Automatic
[01:20:21] [PASSED] Full
[01:20:21] [PASSED] Limited 16:235
[01:20:21] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[01:20:21] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[01:20:21] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[01:20:21] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[01:20:21] === drm_test_drm_hdmi_connector_get_output_format_name ====
[01:20:21] [PASSED] RGB
[01:20:21] [PASSED] YUV 4:2:0
[01:20:21] [PASSED] YUV 4:2:2
[01:20:21] [PASSED] YUV 4:4:4
[01:20:21] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[01:20:21] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[01:20:21] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[01:20:21] ============= drm_damage_helper (21 subtests) ==============
[01:20:21] [PASSED] drm_test_damage_iter_no_damage
[01:20:21] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[01:20:21] [PASSED] drm_test_damage_iter_no_damage_src_moved
[01:20:21] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[01:20:21] [PASSED] drm_test_damage_iter_no_damage_not_visible
[01:20:21] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[01:20:21] [PASSED] drm_test_damage_iter_no_damage_no_fb
[01:20:21] [PASSED] drm_test_damage_iter_simple_damage
[01:20:21] [PASSED] drm_test_damage_iter_single_damage
[01:20:21] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[01:20:21] [PASSED] drm_test_damage_iter_single_damage_outside_src
[01:20:21] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[01:20:21] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[01:20:21] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[01:20:21] [PASSED] drm_test_damage_iter_single_damage_src_moved
[01:20:21] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[01:20:21] [PASSED] drm_test_damage_iter_damage
[01:20:21] [PASSED] drm_test_damage_iter_damage_one_intersect
[01:20:21] [PASSED] drm_test_damage_iter_damage_one_outside
[01:20:21] [PASSED] drm_test_damage_iter_damage_src_moved
[01:20:21] [PASSED] drm_test_damage_iter_damage_not_visible
[01:20:21] ================ [PASSED] drm_damage_helper ================
[01:20:21] ============== drm_dp_mst_helper (3 subtests) ==============
[01:20:21] ============== drm_test_dp_mst_calc_pbn_mode ==============
[01:20:21] [PASSED] Clock 154000 BPP 30 DSC disabled
[01:20:21] [PASSED] Clock 234000 BPP 30 DSC disabled
[01:20:21] [PASSED] Clock 297000 BPP 24 DSC disabled
[01:20:21] [PASSED] Clock 332880 BPP 24 DSC enabled
[01:20:21] [PASSED] Clock 324540 BPP 24 DSC enabled
[01:20:21] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[01:20:21] ============== drm_test_dp_mst_calc_pbn_div ===============
[01:20:21] [PASSED] Link rate 2000000 lane count 4
[01:20:21] [PASSED] Link rate 2000000 lane count 2
[01:20:21] [PASSED] Link rate 2000000 lane count 1
[01:20:21] [PASSED] Link rate 1350000 lane count 4
[01:20:21] [PASSED] Link rate 1350000 lane count 2
[01:20:21] [PASSED] Link rate 1350000 lane count 1
[01:20:21] [PASSED] Link rate 1000000 lane count 4
[01:20:21] [PASSED] Link rate 1000000 lane count 2
[01:20:21] [PASSED] Link rate 1000000 lane count 1
[01:20:21] [PASSED] Link rate 810000 lane count 4
[01:20:21] [PASSED] Link rate 810000 lane count 2
[01:20:21] [PASSED] Link rate 810000 lane count 1
[01:20:21] [PASSED] Link rate 540000 lane count 4
[01:20:21] [PASSED] Link rate 540000 lane count 2
[01:20:21] [PASSED] Link rate 540000 lane count 1
[01:20:21] [PASSED] Link rate 270000 lane count 4
[01:20:21] [PASSED] Link rate 270000 lane count 2
[01:20:21] [PASSED] Link rate 270000 lane count 1
[01:20:21] [PASSED] Link rate 162000 lane count 4
[01:20:21] [PASSED] Link rate 162000 lane count 2
[01:20:21] [PASSED] Link rate 162000 lane count 1
[01:20:21] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[01:20:21] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[01:20:21] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[01:20:21] [PASSED] DP_POWER_UP_PHY with port number
[01:20:21] [PASSED] DP_POWER_DOWN_PHY with port number
[01:20:21] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[01:20:21] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[01:20:21] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[01:20:21] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[01:20:21] [PASSED] DP_QUERY_PAYLOAD with port number
[01:20:21] [PASSED] DP_QUERY_PAYLOAD with VCPI
[01:20:21] [PASSED] DP_REMOTE_DPCD_READ with port number
[01:20:21] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[01:20:21] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[01:20:21] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[01:20:21] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[01:20:21] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[01:20:21] [PASSED] DP_REMOTE_I2C_READ with port number
[01:20:21] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[01:20:21] [PASSED] DP_REMOTE_I2C_READ with transactions array
[01:20:21] [PASSED] DP_REMOTE_I2C_WRITE with port number
[01:20:21] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[01:20:21] [PASSED] DP_REMOTE_I2C_WRITE with data array
[01:20:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[01:20:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[01:20:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[01:20:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[01:20:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[01:20:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[01:20:21] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[01:20:21] ================ [PASSED] drm_dp_mst_helper ================
[01:20:21] ================== drm_exec (7 subtests) ===================
[01:20:21] [PASSED] sanitycheck
[01:20:21] [PASSED] test_lock
[01:20:21] [PASSED] test_lock_unlock
[01:20:21] [PASSED] test_duplicates
[01:20:21] [PASSED] test_prepare
[01:20:21] [PASSED] test_prepare_array
[01:20:21] [PASSED] test_multiple_loops
[01:20:21] ==================== [PASSED] drm_exec =====================
[01:20:21] =========== drm_format_helper_test (17 subtests) ===========
[01:20:21] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[01:20:21] [PASSED] single_pixel_source_buffer
[01:20:21] [PASSED] single_pixel_clip_rectangle
[01:20:21] [PASSED] well_known_colors
[01:20:21] [PASSED] destination_pitch
[01:20:21] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[01:20:21] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[01:20:21] [PASSED] single_pixel_source_buffer
[01:20:21] [PASSED] single_pixel_clip_rectangle
[01:20:21] [PASSED] well_known_colors
[01:20:21] [PASSED] destination_pitch
[01:20:21] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[01:20:21] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[01:20:21] [PASSED] single_pixel_source_buffer
[01:20:21] [PASSED] single_pixel_clip_rectangle
[01:20:21] [PASSED] well_known_colors
[01:20:21] [PASSED] destination_pitch
[01:20:21] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[01:20:21] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[01:20:21] [PASSED] single_pixel_source_buffer
[01:20:21] [PASSED] single_pixel_clip_rectangle
[01:20:21] [PASSED] well_known_colors
[01:20:21] [PASSED] destination_pitch
[01:20:21] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[01:20:21] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[01:20:21] [PASSED] single_pixel_source_buffer
[01:20:21] [PASSED] single_pixel_clip_rectangle
[01:20:21] [PASSED] well_known_colors
[01:20:21] [PASSED] destination_pitch
[01:20:21] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[01:20:21] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[01:20:21] [PASSED] single_pixel_source_buffer
[01:20:21] [PASSED] single_pixel_clip_rectangle
[01:20:21] [PASSED] well_known_colors
[01:20:21] [PASSED] destination_pitch
[01:20:21] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[01:20:21] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[01:20:21] [PASSED] single_pixel_source_buffer
[01:20:21] [PASSED] single_pixel_clip_rectangle
[01:20:21] [PASSED] well_known_colors
[01:20:21] [PASSED] destination_pitch
[01:20:21] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[01:20:21] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[01:20:21] [PASSED] single_pixel_source_buffer
[01:20:21] [PASSED] single_pixel_clip_rectangle
[01:20:21] [PASSED] well_known_colors
[01:20:21] [PASSED] destination_pitch
[01:20:21] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[01:20:21] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[01:20:21] [PASSED] single_pixel_source_buffer
[01:20:21] [PASSED] single_pixel_clip_rectangle
[01:20:21] [PASSED] well_known_colors
[01:20:21] [PASSED] destination_pitch
[01:20:21] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[01:20:21] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[01:20:21] [PASSED] single_pixel_source_buffer
[01:20:21] [PASSED] single_pixel_clip_rectangle
[01:20:21] [PASSED] well_known_colors
[01:20:21] [PASSED] destination_pitch
[01:20:21] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[01:20:21] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[01:20:21] [PASSED] single_pixel_source_buffer
[01:20:21] [PASSED] single_pixel_clip_rectangle
[01:20:21] [PASSED] well_known_colors
[01:20:21] [PASSED] destination_pitch
[01:20:21] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[01:20:21] ============== drm_test_fb_xrgb8888_to_mono ===============
[01:20:21] [PASSED] single_pixel_source_buffer
[01:20:21] [PASSED] single_pixel_clip_rectangle
[01:20:21] [PASSED] well_known_colors
[01:20:21] [PASSED] destination_pitch
[01:20:21] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[01:20:21] ==================== drm_test_fb_swab =====================
[01:20:21] [PASSED] single_pixel_source_buffer
[01:20:21] [PASSED] single_pixel_clip_rectangle
[01:20:21] [PASSED] well_known_colors
[01:20:21] [PASSED] destination_pitch
[01:20:21] ================ [PASSED] drm_test_fb_swab =================
[01:20:21] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[01:20:21] [PASSED] single_pixel_source_buffer
[01:20:21] [PASSED] single_pixel_clip_rectangle
[01:20:21] [PASSED] well_known_colors
[01:20:21] [PASSED] destination_pitch
[01:20:21] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[01:20:21] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[01:20:21] [PASSED] single_pixel_source_buffer
[01:20:21] [PASSED] single_pixel_clip_rectangle
[01:20:21] [PASSED] well_known_colors
[01:20:21] [PASSED] destination_pitch
[01:20:21] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[01:20:21] ================= drm_test_fb_clip_offset =================
[01:20:21] [PASSED] pass through
[01:20:21] [PASSED] horizontal offset
[01:20:21] [PASSED] vertical offset
[01:20:21] [PASSED] horizontal and vertical offset
[01:20:21] [PASSED] horizontal offset (custom pitch)
[01:20:21] [PASSED] vertical offset (custom pitch)
[01:20:21] [PASSED] horizontal and vertical offset (custom pitch)
[01:20:21] ============= [PASSED] drm_test_fb_clip_offset =============
[01:20:21] =================== drm_test_fb_memcpy ====================
[01:20:21] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[01:20:21] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[01:20:21] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[01:20:21] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[01:20:21] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[01:20:21] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[01:20:21] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[01:20:21] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[01:20:21] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[01:20:21] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[01:20:21] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[01:20:21] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[01:20:21] =============== [PASSED] drm_test_fb_memcpy ================
[01:20:21] ============= [PASSED] drm_format_helper_test ==============
[01:20:21] ================= drm_format (18 subtests) =================
[01:20:21] [PASSED] drm_test_format_block_width_invalid
[01:20:21] [PASSED] drm_test_format_block_width_one_plane
[01:20:21] [PASSED] drm_test_format_block_width_two_plane
[01:20:21] [PASSED] drm_test_format_block_width_three_plane
[01:20:21] [PASSED] drm_test_format_block_width_tiled
[01:20:21] [PASSED] drm_test_format_block_height_invalid
[01:20:21] [PASSED] drm_test_format_block_height_one_plane
[01:20:21] [PASSED] drm_test_format_block_height_two_plane
[01:20:21] [PASSED] drm_test_format_block_height_three_plane
[01:20:21] [PASSED] drm_test_format_block_height_tiled
[01:20:21] [PASSED] drm_test_format_min_pitch_invalid
[01:20:21] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[01:20:21] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[01:20:21] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[01:20:21] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[01:20:21] [PASSED] drm_test_format_min_pitch_two_plane
[01:20:21] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[01:20:21] [PASSED] drm_test_format_min_pitch_tiled
[01:20:21] =================== [PASSED] drm_format ====================
[01:20:21] ============== drm_framebuffer (10 subtests) ===============
[01:20:21] ========== drm_test_framebuffer_check_src_coords ==========
[01:20:21] [PASSED] Success: source fits into fb
[01:20:21] [PASSED] Fail: overflowing fb with x-axis coordinate
[01:20:21] [PASSED] Fail: overflowing fb with y-axis coordinate
[01:20:21] [PASSED] Fail: overflowing fb with source width
[01:20:21] [PASSED] Fail: overflowing fb with source height
[01:20:21] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[01:20:21] [PASSED] drm_test_framebuffer_cleanup
[01:20:21] =============== drm_test_framebuffer_create ===============
[01:20:21] [PASSED] ABGR8888 normal sizes
[01:20:21] [PASSED] ABGR8888 max sizes
[01:20:21] [PASSED] ABGR8888 pitch greater than min required
[01:20:21] [PASSED] ABGR8888 pitch less than min required
[01:20:21] [PASSED] ABGR8888 Invalid width
[01:20:21] [PASSED] ABGR8888 Invalid buffer handle
[01:20:21] [PASSED] No pixel format
[01:20:21] [PASSED] ABGR8888 Width 0
[01:20:21] [PASSED] ABGR8888 Height 0
[01:20:21] [PASSED] ABGR8888 Out of bound height * pitch combination
[01:20:21] [PASSED] ABGR8888 Large buffer offset
[01:20:21] [PASSED] ABGR8888 Buffer offset for inexistent plane
[01:20:21] [PASSED] ABGR8888 Invalid flag
[01:20:21] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[01:20:21] [PASSED] ABGR8888 Valid buffer modifier
[01:20:21] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[01:20:21] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[01:20:21] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[01:20:21] [PASSED] NV12 Normal sizes
[01:20:21] [PASSED] NV12 Max sizes
[01:20:21] [PASSED] NV12 Invalid pitch
[01:20:21] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[01:20:21] [PASSED] NV12 different modifier per-plane
[01:20:21] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[01:20:21] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[01:20:21] [PASSED] NV12 Modifier for inexistent plane
[01:20:21] [PASSED] NV12 Handle for inexistent plane
[01:20:21] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[01:20:21] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[01:20:21] [PASSED] YVU420 Normal sizes
[01:20:21] [PASSED] YVU420 Max sizes
[01:20:21] [PASSED] YVU420 Invalid pitch
[01:20:21] [PASSED] YVU420 Different pitches
[01:20:21] [PASSED] YVU420 Different buffer offsets/pitches
[01:20:21] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[01:20:21] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[01:20:21] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[01:20:21] [PASSED] YVU420 Valid modifier
[01:20:21] [PASSED] YVU420 Different modifiers per plane
[01:20:21] [PASSED] YVU420 Modifier for inexistent plane
[01:20:21] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[01:20:21] [PASSED] X0L2 Normal sizes
[01:20:21] [PASSED] X0L2 Max sizes
[01:20:21] [PASSED] X0L2 Invalid pitch
[01:20:21] [PASSED] X0L2 Pitch greater than minimum required
[01:20:21] [PASSED] X0L2 Handle for inexistent plane
[01:20:21] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[01:20:21] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[01:20:21] [PASSED] X0L2 Valid modifier
[01:20:21] [PASSED] X0L2 Modifier for inexistent plane
[01:20:21] =========== [PASSED] drm_test_framebuffer_create ===========
[01:20:21] [PASSED] drm_test_framebuffer_free
[01:20:21] [PASSED] drm_test_framebuffer_init
[01:20:21] [PASSED] drm_test_framebuffer_init_bad_format
[01:20:21] [PASSED] drm_test_framebuffer_init_dev_mismatch
[01:20:21] [PASSED] drm_test_framebuffer_lookup
[01:20:21] [PASSED] drm_test_framebuffer_lookup_inexistent
[01:20:21] [PASSED] drm_test_framebuffer_modifiers_not_supported
[01:20:21] ================= [PASSED] drm_framebuffer =================
[01:20:21] ================ drm_gem_shmem (8 subtests) ================
[01:20:21] [PASSED] drm_gem_shmem_test_obj_create
[01:20:21] [PASSED] drm_gem_shmem_test_obj_create_private
[01:20:21] [PASSED] drm_gem_shmem_test_pin_pages
[01:20:21] [PASSED] drm_gem_shmem_test_vmap
[01:20:21] [PASSED] drm_gem_shmem_test_get_sg_table
[01:20:21] [PASSED] drm_gem_shmem_test_get_pages_sgt
[01:20:21] [PASSED] drm_gem_shmem_test_madvise
[01:20:21] [PASSED] drm_gem_shmem_test_purge
[01:20:21] ================== [PASSED] drm_gem_shmem ==================
[01:20:21] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[01:20:21] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[01:20:21] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[01:20:21] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[01:20:21] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[01:20:21] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[01:20:21] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[01:20:21] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[01:20:21] [PASSED] Automatic
[01:20:21] [PASSED] Full
[01:20:21] [PASSED] Limited 16:235
[01:20:21] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[01:20:21] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[01:20:21] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[01:20:21] [PASSED] drm_test_check_disable_connector
[01:20:21] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[01:20:21] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[01:20:21] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[01:20:21] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[01:20:21] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[01:20:21] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[01:20:21] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[01:20:21] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[01:20:21] [PASSED] drm_test_check_output_bpc_dvi
[01:20:21] [PASSED] drm_test_check_output_bpc_format_vic_1
[01:20:21] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[01:20:21] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[01:20:21] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[01:20:21] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[01:20:21] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[01:20:21] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[01:20:21] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[01:20:21] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[01:20:21] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[01:20:21] [PASSED] drm_test_check_broadcast_rgb_value
[01:20:21] [PASSED] drm_test_check_bpc_8_value
[01:20:21] [PASSED] drm_test_check_bpc_10_value
[01:20:21] [PASSED] drm_test_check_bpc_12_value
[01:20:21] [PASSED] drm_test_check_format_value
[01:20:21] [PASSED] drm_test_check_tmds_char_value
[01:20:21] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[01:20:21] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[01:20:21] [PASSED] drm_test_check_mode_valid
[01:20:21] [PASSED] drm_test_check_mode_valid_reject
[01:20:21] [PASSED] drm_test_check_mode_valid_reject_rate
[01:20:21] [PASSED] drm_test_check_mode_valid_reject_max_clock
[01:20:21] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[01:20:21] ================= drm_managed (2 subtests) =================
[01:20:21] [PASSED] drm_test_managed_release_action
[01:20:21] [PASSED] drm_test_managed_run_action
[01:20:21] =================== [PASSED] drm_managed ===================
[01:20:21] =================== drm_mm (6 subtests) ====================
[01:20:21] [PASSED] drm_test_mm_init
[01:20:21] [PASSED] drm_test_mm_debug
[01:20:21] [PASSED] drm_test_mm_align32
[01:20:21] [PASSED] drm_test_mm_align64
[01:20:21] [PASSED] drm_test_mm_lowest
[01:20:21] [PASSED] drm_test_mm_highest
[01:20:21] ===================== [PASSED] drm_mm ======================
[01:20:21] ============= drm_modes_analog_tv (5 subtests) =============
[01:20:21] [PASSED] drm_test_modes_analog_tv_mono_576i
[01:20:21] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[01:20:21] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[01:20:21] [PASSED] drm_test_modes_analog_tv_pal_576i
[01:20:21] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[01:20:21] =============== [PASSED] drm_modes_analog_tv ===============
[01:20:21] ============== drm_plane_helper (2 subtests) ===============
[01:20:21] =============== drm_test_check_plane_state ================
[01:20:21] [PASSED] clipping_simple
[01:20:21] [PASSED] clipping_rotate_reflect
[01:20:21] [PASSED] positioning_simple
[01:20:21] [PASSED] upscaling
[01:20:21] [PASSED] downscaling
[01:20:21] [PASSED] rounding1
[01:20:21] [PASSED] rounding2
[01:20:21] [PASSED] rounding3
[01:20:21] [PASSED] rounding4
[01:20:21] =========== [PASSED] drm_test_check_plane_state ============
[01:20:21] =========== drm_test_check_invalid_plane_state ============
[01:20:21] [PASSED] positioning_invalid
[01:20:21] [PASSED] upscaling_invalid
[01:20:21] [PASSED] downscaling_invalid
[01:20:21] ======= [PASSED] drm_test_check_invalid_plane_state ========
[01:20:21] ================ [PASSED] drm_plane_helper =================
[01:20:21] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[01:20:21] ====== drm_test_connector_helper_tv_get_modes_check =======
[01:20:21] [PASSED] None
[01:20:21] [PASSED] PAL
[01:20:21] [PASSED] NTSC
[01:20:21] [PASSED] Both, NTSC Default
[01:20:21] [PASSED] Both, PAL Default
[01:20:21] [PASSED] Both, NTSC Default, with PAL on command-line
[01:20:21] [PASSED] Both, PAL Default, with NTSC on command-line
[01:20:21] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[01:20:21] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[01:20:21] ================== drm_rect (9 subtests) ===================
[01:20:21] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[01:20:21] [PASSED] drm_test_rect_clip_scaled_not_clipped
[01:20:21] [PASSED] drm_test_rect_clip_scaled_clipped
[01:20:21] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[01:20:21] ================= drm_test_rect_intersect =================
[01:20:21] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[01:20:21] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[01:20:21] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[01:20:21] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[01:20:21] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[01:20:21] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[01:20:21] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[01:20:21] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[01:20:21] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[01:20:21] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[01:20:21] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[01:20:21] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[01:20:21] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[01:20:21] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[01:20:21] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[01:20:21] ============= [PASSED] drm_test_rect_intersect =============
[01:20:21] ================ drm_test_rect_calc_hscale ================
[01:20:21] [PASSED] normal use
[01:20:21] [PASSED] out of max range
[01:20:21] [PASSED] out of min range
[01:20:21] [PASSED] zero dst
[01:20:21] [PASSED] negative src
[01:20:21] [PASSED] negative dst
[01:20:21] ============ [PASSED] drm_test_rect_calc_hscale ============
[01:20:21] ================ drm_test_rect_calc_vscale ================
[01:20:21] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[01:20:21] [PASSED] out of max range
[01:20:21] [PASSED] out of min range
[01:20:21] [PASSED] zero dst
[01:20:21] [PASSED] negative src
[01:20:21] [PASSED] negative dst
[01:20:21] ============ [PASSED] drm_test_rect_calc_vscale ============
[01:20:21] ================== drm_test_rect_rotate ===================
[01:20:21] [PASSED] reflect-x
[01:20:21] [PASSED] reflect-y
[01:20:21] [PASSED] rotate-0
[01:20:21] [PASSED] rotate-90
[01:20:21] [PASSED] rotate-180
[01:20:21] [PASSED] rotate-270
[01:20:21] ============== [PASSED] drm_test_rect_rotate ===============
[01:20:21] ================ drm_test_rect_rotate_inv =================
[01:20:21] [PASSED] reflect-x
[01:20:21] [PASSED] reflect-y
[01:20:21] [PASSED] rotate-0
[01:20:21] [PASSED] rotate-90
[01:20:21] [PASSED] rotate-180
[01:20:21] [PASSED] rotate-270
[01:20:21] ============ [PASSED] drm_test_rect_rotate_inv =============
[01:20:21] ==================== [PASSED] drm_rect =====================
[01:20:21] ============ drm_sysfb_modeset_test (1 subtest) ============
[01:20:21] ============ drm_test_sysfb_build_fourcc_list =============
[01:20:21] [PASSED] no native formats
[01:20:21] [PASSED] XRGB8888 as native format
[01:20:21] [PASSED] remove duplicates
[01:20:21] [PASSED] convert alpha formats
[01:20:21] [PASSED] random formats
[01:20:21] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[01:20:21] ============= [PASSED] drm_sysfb_modeset_test ==============
[01:20:21] ================== drm_fixp (2 subtests) ===================
[01:20:21] [PASSED] drm_test_int2fixp
[01:20:21] [PASSED] drm_test_sm2fixp
[01:20:21] ==================== [PASSED] drm_fixp =====================
[01:20:21] ============================================================
[01:20:21] Testing complete. Ran 624 tests: passed: 624
[01:20:21] Elapsed time: 27.062s total, 1.639s configuring, 25.001s building, 0.384s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[01:20:21] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:20:23] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[01:20:33] Starting KUnit Kernel (1/1)...
[01:20:33] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:20:33] ================= ttm_device (5 subtests) ==================
[01:20:33] [PASSED] ttm_device_init_basic
[01:20:33] [PASSED] ttm_device_init_multiple
[01:20:33] [PASSED] ttm_device_fini_basic
[01:20:33] [PASSED] ttm_device_init_no_vma_man
[01:20:33] ================== ttm_device_init_pools ==================
[01:20:33] [PASSED] No DMA allocations, no DMA32 required
[01:20:33] [PASSED] DMA allocations, DMA32 required
[01:20:33] [PASSED] No DMA allocations, DMA32 required
[01:20:33] [PASSED] DMA allocations, no DMA32 required
[01:20:33] ============== [PASSED] ttm_device_init_pools ==============
[01:20:33] =================== [PASSED] ttm_device ====================
[01:20:33] ================== ttm_pool (8 subtests) ===================
[01:20:33] ================== ttm_pool_alloc_basic ===================
[01:20:33] [PASSED] One page
[01:20:33] [PASSED] More than one page
[01:20:33] [PASSED] Above the allocation limit
[01:20:33] [PASSED] One page, with coherent DMA mappings enabled
[01:20:33] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[01:20:33] ============== [PASSED] ttm_pool_alloc_basic ===============
[01:20:33] ============== ttm_pool_alloc_basic_dma_addr ==============
[01:20:33] [PASSED] One page
[01:20:33] [PASSED] More than one page
[01:20:33] [PASSED] Above the allocation limit
[01:20:33] [PASSED] One page, with coherent DMA mappings enabled
[01:20:33] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[01:20:33] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[01:20:33] [PASSED] ttm_pool_alloc_order_caching_match
[01:20:33] [PASSED] ttm_pool_alloc_caching_mismatch
[01:20:33] [PASSED] ttm_pool_alloc_order_mismatch
[01:20:33] [PASSED] ttm_pool_free_dma_alloc
[01:20:33] [PASSED] ttm_pool_free_no_dma_alloc
[01:20:33] [PASSED] ttm_pool_fini_basic
[01:20:33] ==================== [PASSED] ttm_pool =====================
[01:20:33] ================ ttm_resource (8 subtests) =================
[01:20:33] ================= ttm_resource_init_basic =================
[01:20:33] [PASSED] Init resource in TTM_PL_SYSTEM
[01:20:33] [PASSED] Init resource in TTM_PL_VRAM
[01:20:33] [PASSED] Init resource in a private placement
[01:20:33] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[01:20:33] ============= [PASSED] ttm_resource_init_basic =============
[01:20:33] [PASSED] ttm_resource_init_pinned
[01:20:33] [PASSED] ttm_resource_fini_basic
[01:20:33] [PASSED] ttm_resource_manager_init_basic
[01:20:33] [PASSED] ttm_resource_manager_usage_basic
[01:20:33] [PASSED] ttm_resource_manager_set_used_basic
[01:20:33] [PASSED] ttm_sys_man_alloc_basic
[01:20:33] [PASSED] ttm_sys_man_free_basic
[01:20:33] ================== [PASSED] ttm_resource ===================
[01:20:33] =================== ttm_tt (15 subtests) ===================
[01:20:33] ==================== ttm_tt_init_basic ====================
[01:20:33] [PASSED] Page-aligned size
[01:20:33] [PASSED] Extra pages requested
[01:20:33] ================ [PASSED] ttm_tt_init_basic ================
[01:20:33] [PASSED] ttm_tt_init_misaligned
[01:20:33] [PASSED] ttm_tt_fini_basic
[01:20:33] [PASSED] ttm_tt_fini_sg
[01:20:33] [PASSED] ttm_tt_fini_shmem
[01:20:33] [PASSED] ttm_tt_create_basic
[01:20:33] [PASSED] ttm_tt_create_invalid_bo_type
[01:20:33] [PASSED] ttm_tt_create_ttm_exists
[01:20:33] [PASSED] ttm_tt_create_failed
[01:20:33] [PASSED] ttm_tt_destroy_basic
[01:20:33] [PASSED] ttm_tt_populate_null_ttm
[01:20:33] [PASSED] ttm_tt_populate_populated_ttm
[01:20:33] [PASSED] ttm_tt_unpopulate_basic
[01:20:33] [PASSED] ttm_tt_unpopulate_empty_ttm
[01:20:33] [PASSED] ttm_tt_swapin_basic
[01:20:33] ===================== [PASSED] ttm_tt ======================
[01:20:33] =================== ttm_bo (14 subtests) ===================
[01:20:33] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[01:20:33] [PASSED] Cannot be interrupted and sleeps
[01:20:33] [PASSED] Cannot be interrupted, locks straight away
[01:20:33] [PASSED] Can be interrupted, sleeps
[01:20:33] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[01:20:33] [PASSED] ttm_bo_reserve_locked_no_sleep
[01:20:33] [PASSED] ttm_bo_reserve_no_wait_ticket
[01:20:33] [PASSED] ttm_bo_reserve_double_resv
[01:20:33] [PASSED] ttm_bo_reserve_interrupted
[01:20:33] [PASSED] ttm_bo_reserve_deadlock
[01:20:33] [PASSED] ttm_bo_unreserve_basic
[01:20:33] [PASSED] ttm_bo_unreserve_pinned
[01:20:33] [PASSED] ttm_bo_unreserve_bulk
[01:20:33] [PASSED] ttm_bo_fini_basic
[01:20:33] [PASSED] ttm_bo_fini_shared_resv
[01:20:33] [PASSED] ttm_bo_pin_basic
[01:20:33] [PASSED] ttm_bo_pin_unpin_resource
[01:20:33] [PASSED] ttm_bo_multiple_pin_one_unpin
[01:20:33] ===================== [PASSED] ttm_bo ======================
[01:20:33] ============== ttm_bo_validate (21 subtests) ===============
[01:20:33] ============== ttm_bo_init_reserved_sys_man ===============
[01:20:33] [PASSED] Buffer object for userspace
[01:20:33] [PASSED] Kernel buffer object
[01:20:33] [PASSED] Shared buffer object
[01:20:33] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[01:20:33] ============== ttm_bo_init_reserved_mock_man ==============
[01:20:33] [PASSED] Buffer object for userspace
[01:20:33] [PASSED] Kernel buffer object
[01:20:33] [PASSED] Shared buffer object
[01:20:33] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[01:20:33] [PASSED] ttm_bo_init_reserved_resv
[01:20:33] ================== ttm_bo_validate_basic ==================
[01:20:33] [PASSED] Buffer object for userspace
[01:20:33] [PASSED] Kernel buffer object
[01:20:33] [PASSED] Shared buffer object
[01:20:33] ============== [PASSED] ttm_bo_validate_basic ==============
[01:20:33] [PASSED] ttm_bo_validate_invalid_placement
[01:20:33] ============= ttm_bo_validate_same_placement ==============
[01:20:33] [PASSED] System manager
[01:20:33] [PASSED] VRAM manager
[01:20:33] ========= [PASSED] ttm_bo_validate_same_placement ==========
[01:20:33] [PASSED] ttm_bo_validate_failed_alloc
[01:20:33] [PASSED] ttm_bo_validate_pinned
[01:20:33] [PASSED] ttm_bo_validate_busy_placement
[01:20:33] ================ ttm_bo_validate_multihop =================
[01:20:33] [PASSED] Buffer object for userspace
[01:20:33] [PASSED] Kernel buffer object
[01:20:33] [PASSED] Shared buffer object
[01:20:33] ============ [PASSED] ttm_bo_validate_multihop =============
[01:20:33] ========== ttm_bo_validate_no_placement_signaled ==========
[01:20:33] [PASSED] Buffer object in system domain, no page vector
[01:20:33] [PASSED] Buffer object in system domain with an existing page vector
[01:20:33] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[01:20:33] ======== ttm_bo_validate_no_placement_not_signaled ========
[01:20:33] [PASSED] Buffer object for userspace
[01:20:33] [PASSED] Kernel buffer object
[01:20:33] [PASSED] Shared buffer object
[01:20:33] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[01:20:33] [PASSED] ttm_bo_validate_move_fence_signaled
[01:20:33] ========= ttm_bo_validate_move_fence_not_signaled =========
[01:20:33] [PASSED] Waits for GPU
[01:20:33] [PASSED] Tries to lock straight away
[01:20:33] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[01:20:33] [PASSED] ttm_bo_validate_happy_evict
[01:20:33] [PASSED] ttm_bo_validate_all_pinned_evict
[01:20:33] [PASSED] ttm_bo_validate_allowed_only_evict
[01:20:33] [PASSED] ttm_bo_validate_deleted_evict
[01:20:33] [PASSED] ttm_bo_validate_busy_domain_evict
[01:20:33] [PASSED] ttm_bo_validate_evict_gutting
[01:20:33] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[01:20:33] ================= [PASSED] ttm_bo_validate =================
[01:20:33] ============================================================
[01:20:33] Testing complete. Ran 101 tests: passed: 101
[01:20:33] Elapsed time: 11.453s total, 1.683s configuring, 9.504s building, 0.233s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 21+ messages in thread
* ✓ Xe.CI.BAT: success for Enable GSC loading and PXP for PTL
2026-01-08 1:13 [PATCH 0/3] Enable GSC loading and PXP for PTL Daniele Ceraolo Spurio
` (3 preceding siblings ...)
2026-01-08 1:20 ` ✓ CI.KUnit: success for Enable GSC loading and " Patchwork
@ 2026-01-08 1:53 ` Patchwork
2026-01-08 3:23 ` ✗ Xe.CI.Full: failure " Patchwork
` (7 subsequent siblings)
12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-01-08 1:53 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1395 bytes --]
== Series Details ==
Series: Enable GSC loading and PXP for PTL
URL : https://patchwork.freedesktop.org/series/159774/
State : success
== Summary ==
CI Bug Log - changes from xe-4342-9e023f4255817c26599a3335845f29c15a393448_BAT -> xe-pw-159774v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-159774v1_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_waitfence@engine:
- bat-dg2-oem2: [PASS][1] -> [FAIL][2] ([Intel XE#6519])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4342-9e023f4255817c26599a3335845f29c15a393448/bat-dg2-oem2/igt@xe_waitfence@engine.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/bat-dg2-oem2/igt@xe_waitfence@engine.html
[Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519
Build changes
-------------
* Linux: xe-4342-9e023f4255817c26599a3335845f29c15a393448 -> xe-pw-159774v1
IGT_8692: 8692
xe-4342-9e023f4255817c26599a3335845f29c15a393448: 9e023f4255817c26599a3335845f29c15a393448
xe-pw-159774v1: 159774v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/index.html
[-- Attachment #2: Type: text/html, Size: 1960 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread
* ✗ Xe.CI.Full: failure for Enable GSC loading and PXP for PTL
2026-01-08 1:13 [PATCH 0/3] Enable GSC loading and PXP for PTL Daniele Ceraolo Spurio
` (4 preceding siblings ...)
2026-01-08 1:53 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-01-08 3:23 ` Patchwork
2026-01-08 14:36 ` [PATCH 0/3] " Rodrigo Vivi
` (6 subsequent siblings)
12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-01-08 3:23 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 19533 bytes --]
== Series Details ==
Series: Enable GSC loading and PXP for PTL
URL : https://patchwork.freedesktop.org/series/159774/
State : failure
== Summary ==
CI Bug Log - changes from xe-4342-9e023f4255817c26599a3335845f29c15a393448_FULL -> xe-pw-159774v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-159774v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-159774v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-159774v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-1/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-bmg: NOTRUN -> [FAIL][2] +1 other test fail
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-2/igt@kms_content_protection@uevent-hdcp14.html
Known issues
------------
Here are the changes found in xe-pw-159774v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-bmg: [PASS][3] -> [ABORT][4] ([Intel XE#5545]) +1 other test abort
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4342-9e023f4255817c26599a3335845f29c15a393448/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +5 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#367]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2887]) +6 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-2/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-2/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#3432])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2325]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-1/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2252]) +3 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2321]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#1508])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-basic:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2244])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-1/igt@kms_dsc@dsc-basic.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2374])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-2/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [PASS][17] -> [FAIL][18] ([Intel XE#301]) +1 other test fail
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4342-9e023f4255817c26599a3335845f29c15a393448/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2380]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2293]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2311]) +13 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#4141]) +4 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2352])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2313]) +15 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#6911])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-2/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2501])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2391])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-2/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#1406] / [Intel XE#2387])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-2/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +6 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-1/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#3414] / [Intel XE#3904])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_vrr@flip-basic-fastset:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#1499])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-2/igt@kms_vrr@flip-basic-fastset.html
* igt@xe_eudebug@vm-bind-clear:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#4837]) +6 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-2/igt@xe_eudebug@vm-bind-clear.html
* igt@xe_eudebug_online@set-breakpoint-faultable:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-1/igt@xe_eudebug_online@set-breakpoint-faultable.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2322]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-1/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-dyn-priority-smem:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#6874]) +15 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-1/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-dyn-priority-smem.html
* igt@xe_exec_system_allocator@many-64k-mmap-huge:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#5007])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-2/igt@xe_exec_system_allocator@many-64k-mmap-huge.html
* igt@xe_exec_system_allocator@many-execqueues-mmap-free-huge:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#4943]) +13 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-1/igt@xe_exec_system_allocator@many-execqueues-mmap-free-huge.html
* igt@xe_media_fill@media-fill:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2459] / [Intel XE#2596])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-1/igt@xe_media_fill@media-fill.html
* igt@xe_multigpu_svm@mgpu-migration-basic:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#6964]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-1/igt@xe_multigpu_svm@mgpu-migration-basic.html
* igt@xe_pm@d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2284])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-2/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#944]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-2/igt@xe_query@multigpu-query-invalid-extension.html
#### Possible fixes ####
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][44] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][45] +1 other test pass
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4342-9e023f4255817c26599a3335845f29c15a393448/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
- shard-lnl: [FAIL][46] ([Intel XE#301]) -> [PASS][47]
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4342-9e023f4255817c26599a3335845f29c15a393448/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][48] ([Intel XE#4459]) -> [PASS][49] +1 other test pass
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4342-9e023f4255817c26599a3335845f29c15a393448/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_exec_system_allocator@many-stride-malloc-prefetch:
- shard-bmg: [WARN][50] ([Intel XE#5786]) -> [PASS][51]
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4342-9e023f4255817c26599a3335845f29c15a393448/shard-bmg-9/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-9/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
- shard-lnl: [FAIL][52] ([Intel XE#5625]) -> [PASS][53]
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4342-9e023f4255817c26599a3335845f29c15a393448/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
#### Warnings ####
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][54] ([Intel XE#2426]) -> [FAIL][55] ([Intel XE#1729])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4342-9e023f4255817c26599a3335845f29c15a393448/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
* igt@testdisplay:
- shard-bmg: [ABORT][56] -> [ABORT][57] ([Intel XE#6740])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4342-9e023f4255817c26599a3335845f29c15a393448/shard-bmg-2/igt@testdisplay.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/shard-bmg-3/igt@testdisplay.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4342-9e023f4255817c26599a3335845f29c15a393448 -> xe-pw-159774v1
IGT_8692: 8692
xe-4342-9e023f4255817c26599a3335845f29c15a393448: 9e023f4255817c26599a3335845f29c15a393448
xe-pw-159774v1: 159774v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/index.html
[-- Attachment #2: Type: text/html, Size: 21648 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [PATCH 1/3] drm/xe/gsc: Make GSC FW load optional for newer platforms
2026-01-08 1:13 ` [PATCH 1/3] drm/xe/gsc: Make GSC FW load optional for newer platforms Daniele Ceraolo Spurio
@ 2026-01-08 14:35 ` Rodrigo Vivi
2026-01-08 16:36 ` Daniele Ceraolo Spurio
2026-01-09 15:52 ` Julia Filipchuk
1 sibling, 1 reply; 21+ messages in thread
From: Rodrigo Vivi @ 2026-01-08 14:35 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-xe, Julia Filipchuk
On Wed, Jan 07, 2026 at 05:13:42PM -0800, Daniele Ceraolo Spurio wrote:
> On newer platforms GSC FW is only required for content protection
> features, so the core driver features work perfectly fine without it
> (and we did in fact not enable it to start with on PTL). Therefore, we
> can selectively enable the GSC only if the FW is found on disk, without
> failing if it is not found.
>
> Note that this means that the FW can now be enabled (i.e., we're looking
> for it) but not available (i.e., we haven't found it), so checks on FW
> support should use the latter state to decide whether to go on or not.
>
> As part of the rework, the message for FW not found has been cleaned up
> to be more readable.
>
> While at it, drop the comment about xe_uc_fw_init() since the code has
> been reworked and the statement no longer applies.
>
> Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Cc: Julia Filipchuk <julia.filipchuk@intel.com>
> ---
> drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 2 +-
> drivers/gpu/drm/xe/xe_gsc.c | 13 +++++++------
> drivers/gpu/drm/xe/xe_uc_fw.c | 10 +++++++---
> 3 files changed, 15 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> index 07acae121aa7..ed1f65f5ef4d 100644
> --- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> +++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> @@ -39,7 +39,7 @@ static bool intel_hdcp_gsc_check_status(struct drm_device *drm)
> struct xe_gt *gt = tile->media_gt;
> struct xe_gsc *gsc = >->uc.gsc;
>
> - if (!gsc || !xe_uc_fw_is_enabled(&gsc->fw)) {
> + if (!gsc || !xe_uc_fw_is_available(&gsc->fw)) {
> drm_dbg_kms(&xe->drm,
should this be changed to a warn or info?
> "GSC Components not ready for HDCP2.x\n");
> return false;
> diff --git a/drivers/gpu/drm/xe/xe_gsc.c b/drivers/gpu/drm/xe/xe_gsc.c
> index a3157b0fe791..8ad27c884f68 100644
> --- a/drivers/gpu/drm/xe/xe_gsc.c
> +++ b/drivers/gpu/drm/xe/xe_gsc.c
> @@ -414,15 +414,16 @@ int xe_gsc_init(struct xe_gsc *gsc)
> }
>
> /*
> - * Some platforms can have GuC but not GSC. That would cause
> - * xe_uc_fw_init(gsc) to return a "not supported" failure code and abort
> - * all firmware loading. So check for GSC being enabled before
> - * propagating the failure back up. That way the higher level will keep
> - * going and load GuC as appropriate.
> + * Starting from BMG the GSC is no longer needed for MC6 entry, so the
> + * only missing features if the FW is lacking would be the content
> + * protection ones. This is acceptable, si we allow the driver load to
> + * continue if the GSC FW is missing.
> */
> ret = xe_uc_fw_init(&gsc->fw);
> if (!xe_uc_fw_is_enabled(&gsc->fw))
> return 0;
> + else if (gt_to_xe(gt)->info.platform >= XE_BATTLEMAGE && !xe_uc_fw_is_available(&gsc->fw))
> + return 0;
> else if (ret)
> goto out;
>
> @@ -614,7 +615,7 @@ void xe_gsc_print_info(struct xe_gsc *gsc, struct drm_printer *p)
>
> drm_printf(p, "\tfound security version %u\n", gsc->security_version);
>
> - if (!xe_uc_fw_is_enabled(&gsc->fw))
> + if (!xe_uc_fw_is_available(&gsc->fw))
> return;
>
> CLASS(xe_force_wake, fw_ref)(gt_to_fw(gt), XE_FW_GSC);
> diff --git a/drivers/gpu/drm/xe/xe_uc_fw.c b/drivers/gpu/drm/xe/xe_uc_fw.c
> index 50458d3bdc7d..b1a9ef3f6195 100644
> --- a/drivers/gpu/drm/xe/xe_uc_fw.c
> +++ b/drivers/gpu/drm/xe/xe_uc_fw.c
> @@ -741,7 +741,7 @@ static int uc_fw_request(struct xe_uc_fw *uc_fw, const struct firmware **firmwar
> return 0;
> }
>
> - err = request_firmware(&fw, uc_fw->path, dev);
> + err = firmware_request_nowarn(&fw, uc_fw->path, dev);
> if (err)
> goto fail;
>
> @@ -770,8 +770,12 @@ static int uc_fw_request(struct xe_uc_fw *uc_fw, const struct firmware **firmwar
> XE_UC_FIRMWARE_MISSING :
> XE_UC_FIRMWARE_ERROR);
>
> - xe_gt_notice(gt, "%s firmware %s: fetch failed with error %pe\n",
> - xe_uc_fw_type_repr(uc_fw->type), uc_fw->path, ERR_PTR(err));
> + if (err == -ENOENT)
> + xe_gt_info(gt, "%s firmware %s not found\n",
> + xe_uc_fw_type_repr(uc_fw->type), uc_fw->path);
> + else
> + xe_gt_notice(gt, "%s firmware %s: fetch failed with error %pe\n",
shouldn't this be an warn or error?
> + xe_uc_fw_type_repr(uc_fw->type), uc_fw->path, ERR_PTR(err));
> xe_gt_info(gt, "%s firmware(s) can be downloaded from %s\n",
> xe_uc_fw_type_repr(uc_fw->type), XE_UC_FIRMWARE_URL);
>
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [PATCH 3/3] drm/xe/ptl: Enable PXP for PTL
2026-01-08 1:13 ` [PATCH 3/3] drm/xe/ptl: Enable PXP " Daniele Ceraolo Spurio
@ 2026-01-08 14:35 ` Rodrigo Vivi
0 siblings, 0 replies; 21+ messages in thread
From: Rodrigo Vivi @ 2026-01-08 14:35 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-xe, Julia Filipchuk
On Wed, Jan 07, 2026 at 05:13:44PM -0800, Daniele Ceraolo Spurio wrote:
> Now that the GSC FW is defined, we can enable PXP for PTL. The feature
> will only be turned on if the binary is found on disk.
>
> Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Cc: Julia Filipchuk <julia.filipchuk@intel.com>
> ---
> drivers/gpu/drm/xe/xe_pci.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
> index 91e0553a8163..38dd6ee9db12 100644
> --- a/drivers/gpu/drm/xe/xe_pci.c
> +++ b/drivers/gpu/drm/xe/xe_pci.c
> @@ -392,6 +392,7 @@ static const struct xe_device_desc ptl_desc = {
> .has_sriov = true,
> .has_mem_copy_instr = true,
> .has_pre_prod_wa = 1,
> + .has_pxp = true,
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> .max_gt_per_tile = 2,
> .needs_scratch = true,
> .needs_shared_vf_gt_wq = true,
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [PATCH 0/3] Enable GSC loading and PXP for PTL
2026-01-08 1:13 [PATCH 0/3] Enable GSC loading and PXP for PTL Daniele Ceraolo Spurio
` (5 preceding siblings ...)
2026-01-08 3:23 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2026-01-08 14:36 ` Rodrigo Vivi
2026-01-12 18:03 ` Daniele Ceraolo Spurio
2026-01-10 0:28 ` ✓ CI.KUnit: success for Enable GSC loading and PXP for PTL (rev2) Patchwork
` (5 subsequent siblings)
12 siblings, 1 reply; 21+ messages in thread
From: Rodrigo Vivi @ 2026-01-08 14:36 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-xe, Julia Filipchuk
On Wed, Jan 07, 2026 at 05:13:41PM -0800, Daniele Ceraolo Spurio wrote:
> GSC loading is required for content protection features (PXP, HDCP).
>
> Since PTL force_probe was removed before we added the FW, the driver
> needs to keep working if the FW is not found. Therefore, the code has
> been modified to allow the GSC FW to be missing for BMG and newer HW
> (older HW platforms require GSC for power management, so on those we
> don't want to continue if the FW is missing).
>
> Note that I haven't pushed the FW yet. This is on purpose, as I want to
> get CI with the FW missing to test that case. Once the patches have been
> reviewed and tested without the FW, I'll push the FW to intel-staging
> and re-trigger CI to make sure everything works with the FW as well.
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
on both, the optional approach proposed by the first patch and on
the CI approach you took here.
>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Cc: Julia Filipchuk <julia.filipchuk@intel.com>
>
> Daniele Ceraolo Spurio (3):
> drm/xe/gsc: Make GSC FW load optional for newer platforms
> drm/xe/ptl: Define GSC for PTL
> drm/xe/ptl: Enable PXP for PTL
>
> drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 2 +-
> drivers/gpu/drm/xe/xe_gsc.c | 13 +++++++------
> drivers/gpu/drm/xe/xe_pci.c | 1 +
> drivers/gpu/drm/xe/xe_uc_fw.c | 11 ++++++++---
> 4 files changed, 17 insertions(+), 10 deletions(-)
>
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [PATCH 1/3] drm/xe/gsc: Make GSC FW load optional for newer platforms
2026-01-08 14:35 ` Rodrigo Vivi
@ 2026-01-08 16:36 ` Daniele Ceraolo Spurio
2026-01-08 20:27 ` Rodrigo Vivi
0 siblings, 1 reply; 21+ messages in thread
From: Daniele Ceraolo Spurio @ 2026-01-08 16:36 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: intel-xe, Julia Filipchuk
On 1/8/2026 6:35 AM, Rodrigo Vivi wrote:
> On Wed, Jan 07, 2026 at 05:13:42PM -0800, Daniele Ceraolo Spurio wrote:
>> On newer platforms GSC FW is only required for content protection
>> features, so the core driver features work perfectly fine without it
>> (and we did in fact not enable it to start with on PTL). Therefore, we
>> can selectively enable the GSC only if the FW is found on disk, without
>> failing if it is not found.
>>
>> Note that this means that the FW can now be enabled (i.e., we're looking
>> for it) but not available (i.e., we haven't found it), so checks on FW
>> support should use the latter state to decide whether to go on or not.
>>
>> As part of the rework, the message for FW not found has been cleaned up
>> to be more readable.
>>
>> While at it, drop the comment about xe_uc_fw_init() since the code has
>> been reworked and the statement no longer applies.
>>
>> Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
>> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
>> Cc: Julia Filipchuk <julia.filipchuk@intel.com>
>> ---
>> drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 2 +-
>> drivers/gpu/drm/xe/xe_gsc.c | 13 +++++++------
>> drivers/gpu/drm/xe/xe_uc_fw.c | 10 +++++++---
>> 3 files changed, 15 insertions(+), 10 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
>> index 07acae121aa7..ed1f65f5ef4d 100644
>> --- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
>> +++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
>> @@ -39,7 +39,7 @@ static bool intel_hdcp_gsc_check_status(struct drm_device *drm)
>> struct xe_gt *gt = tile->media_gt;
>> struct xe_gsc *gsc = >->uc.gsc;
>>
>> - if (!gsc || !xe_uc_fw_is_enabled(&gsc->fw)) {
>> + if (!gsc || !xe_uc_fw_is_available(&gsc->fw)) {
>> drm_dbg_kms(&xe->drm,
> should this be changed to a warn or info?
I'm not super familiar with the display side of things, but AFAIK this
gets called when UMD checks the HDCP status, so IMO better to keep it to
debug level, similar to what we do for messages in ioctl-related code.
>
>> "GSC Components not ready for HDCP2.x\n");
>> return false;
>> diff --git a/drivers/gpu/drm/xe/xe_gsc.c b/drivers/gpu/drm/xe/xe_gsc.c
>> index a3157b0fe791..8ad27c884f68 100644
>> --- a/drivers/gpu/drm/xe/xe_gsc.c
>> +++ b/drivers/gpu/drm/xe/xe_gsc.c
>> @@ -414,15 +414,16 @@ int xe_gsc_init(struct xe_gsc *gsc)
>> }
>>
>> /*
>> - * Some platforms can have GuC but not GSC. That would cause
>> - * xe_uc_fw_init(gsc) to return a "not supported" failure code and abort
>> - * all firmware loading. So check for GSC being enabled before
>> - * propagating the failure back up. That way the higher level will keep
>> - * going and load GuC as appropriate.
>> + * Starting from BMG the GSC is no longer needed for MC6 entry, so the
>> + * only missing features if the FW is lacking would be the content
>> + * protection ones. This is acceptable, si we allow the driver load to
>> + * continue if the GSC FW is missing.
>> */
>> ret = xe_uc_fw_init(&gsc->fw);
>> if (!xe_uc_fw_is_enabled(&gsc->fw))
>> return 0;
>> + else if (gt_to_xe(gt)->info.platform >= XE_BATTLEMAGE && !xe_uc_fw_is_available(&gsc->fw))
>> + return 0;
>> else if (ret)
>> goto out;
>>
>> @@ -614,7 +615,7 @@ void xe_gsc_print_info(struct xe_gsc *gsc, struct drm_printer *p)
>>
>> drm_printf(p, "\tfound security version %u\n", gsc->security_version);
>>
>> - if (!xe_uc_fw_is_enabled(&gsc->fw))
>> + if (!xe_uc_fw_is_available(&gsc->fw))
>> return;
>>
>> CLASS(xe_force_wake, fw_ref)(gt_to_fw(gt), XE_FW_GSC);
>> diff --git a/drivers/gpu/drm/xe/xe_uc_fw.c b/drivers/gpu/drm/xe/xe_uc_fw.c
>> index 50458d3bdc7d..b1a9ef3f6195 100644
>> --- a/drivers/gpu/drm/xe/xe_uc_fw.c
>> +++ b/drivers/gpu/drm/xe/xe_uc_fw.c
>> @@ -741,7 +741,7 @@ static int uc_fw_request(struct xe_uc_fw *uc_fw, const struct firmware **firmwar
>> return 0;
>> }
>>
>> - err = request_firmware(&fw, uc_fw->path, dev);
>> + err = firmware_request_nowarn(&fw, uc_fw->path, dev);
>> if (err)
>> goto fail;
>>
>> @@ -770,8 +770,12 @@ static int uc_fw_request(struct xe_uc_fw *uc_fw, const struct firmware **firmwar
>> XE_UC_FIRMWARE_MISSING :
>> XE_UC_FIRMWARE_ERROR);
>>
>> - xe_gt_notice(gt, "%s firmware %s: fetch failed with error %pe\n",
>> - xe_uc_fw_type_repr(uc_fw->type), uc_fw->path, ERR_PTR(err));
>> + if (err == -ENOENT)
>> + xe_gt_info(gt, "%s firmware %s not found\n",
>> + xe_uc_fw_type_repr(uc_fw->type), uc_fw->path);
>> + else
>> + xe_gt_notice(gt, "%s firmware %s: fetch failed with error %pe\n",
> shouldn't this be an warn or error?
The lack of FW is now a valid case for GSC on PTL, so I think it is
better to avoid throwing an error for it. Note that there are errors for
both GuC and HuC being printed at other levels of the stack.
Daniele
>
>> + xe_uc_fw_type_repr(uc_fw->type), uc_fw->path, ERR_PTR(err));
>> xe_gt_info(gt, "%s firmware(s) can be downloaded from %s\n",
>> xe_uc_fw_type_repr(uc_fw->type), XE_UC_FIRMWARE_URL);
>>
>> --
>> 2.43.0
>>
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [PATCH 1/3] drm/xe/gsc: Make GSC FW load optional for newer platforms
2026-01-08 16:36 ` Daniele Ceraolo Spurio
@ 2026-01-08 20:27 ` Rodrigo Vivi
0 siblings, 0 replies; 21+ messages in thread
From: Rodrigo Vivi @ 2026-01-08 20:27 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-xe, Julia Filipchuk
On Thu, Jan 08, 2026 at 08:36:43AM -0800, Daniele Ceraolo Spurio wrote:
>
>
> On 1/8/2026 6:35 AM, Rodrigo Vivi wrote:
> > On Wed, Jan 07, 2026 at 05:13:42PM -0800, Daniele Ceraolo Spurio wrote:
> > > On newer platforms GSC FW is only required for content protection
> > > features, so the core driver features work perfectly fine without it
> > > (and we did in fact not enable it to start with on PTL). Therefore, we
> > > can selectively enable the GSC only if the FW is found on disk, without
> > > failing if it is not found.
> > >
> > > Note that this means that the FW can now be enabled (i.e., we're looking
> > > for it) but not available (i.e., we haven't found it), so checks on FW
> > > support should use the latter state to decide whether to go on or not.
> > >
> > > As part of the rework, the message for FW not found has been cleaned up
> > > to be more readable.
> > >
> > > While at it, drop the comment about xe_uc_fw_init() since the code has
> > > been reworked and the statement no longer applies.
> > >
> > > Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
> > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> > > Cc: Julia Filipchuk <julia.filipchuk@intel.com>
> > > ---
> > > drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 2 +-
> > > drivers/gpu/drm/xe/xe_gsc.c | 13 +++++++------
> > > drivers/gpu/drm/xe/xe_uc_fw.c | 10 +++++++---
> > > 3 files changed, 15 insertions(+), 10 deletions(-)
> > >
> > > diff --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> > > index 07acae121aa7..ed1f65f5ef4d 100644
> > > --- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> > > +++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> > > @@ -39,7 +39,7 @@ static bool intel_hdcp_gsc_check_status(struct drm_device *drm)
> > > struct xe_gt *gt = tile->media_gt;
> > > struct xe_gsc *gsc = >->uc.gsc;
> > > - if (!gsc || !xe_uc_fw_is_enabled(&gsc->fw)) {
> > > + if (!gsc || !xe_uc_fw_is_available(&gsc->fw)) {
> > > drm_dbg_kms(&xe->drm,
> > should this be changed to a warn or info?
>
> I'm not super familiar with the display side of things, but AFAIK this gets
> called when UMD checks the HDCP status, so IMO better to keep it to debug
> level, similar to what we do for messages in ioctl-related code.
>
> >
> > > "GSC Components not ready for HDCP2.x\n");
> > > return false;
> > > diff --git a/drivers/gpu/drm/xe/xe_gsc.c b/drivers/gpu/drm/xe/xe_gsc.c
> > > index a3157b0fe791..8ad27c884f68 100644
> > > --- a/drivers/gpu/drm/xe/xe_gsc.c
> > > +++ b/drivers/gpu/drm/xe/xe_gsc.c
> > > @@ -414,15 +414,16 @@ int xe_gsc_init(struct xe_gsc *gsc)
> > > }
> > > /*
> > > - * Some platforms can have GuC but not GSC. That would cause
> > > - * xe_uc_fw_init(gsc) to return a "not supported" failure code and abort
> > > - * all firmware loading. So check for GSC being enabled before
> > > - * propagating the failure back up. That way the higher level will keep
> > > - * going and load GuC as appropriate.
> > > + * Starting from BMG the GSC is no longer needed for MC6 entry, so the
> > > + * only missing features if the FW is lacking would be the content
> > > + * protection ones. This is acceptable, si we allow the driver load to
> > > + * continue if the GSC FW is missing.
> > > */
> > > ret = xe_uc_fw_init(&gsc->fw);
> > > if (!xe_uc_fw_is_enabled(&gsc->fw))
> > > return 0;
> > > + else if (gt_to_xe(gt)->info.platform >= XE_BATTLEMAGE && !xe_uc_fw_is_available(&gsc->fw))
> > > + return 0;
> > > else if (ret)
> > > goto out;
> > > @@ -614,7 +615,7 @@ void xe_gsc_print_info(struct xe_gsc *gsc, struct drm_printer *p)
> > > drm_printf(p, "\tfound security version %u\n", gsc->security_version);
> > > - if (!xe_uc_fw_is_enabled(&gsc->fw))
> > > + if (!xe_uc_fw_is_available(&gsc->fw))
> > > return;
> > > CLASS(xe_force_wake, fw_ref)(gt_to_fw(gt), XE_FW_GSC);
> > > diff --git a/drivers/gpu/drm/xe/xe_uc_fw.c b/drivers/gpu/drm/xe/xe_uc_fw.c
> > > index 50458d3bdc7d..b1a9ef3f6195 100644
> > > --- a/drivers/gpu/drm/xe/xe_uc_fw.c
> > > +++ b/drivers/gpu/drm/xe/xe_uc_fw.c
> > > @@ -741,7 +741,7 @@ static int uc_fw_request(struct xe_uc_fw *uc_fw, const struct firmware **firmwar
> > > return 0;
> > > }
> > > - err = request_firmware(&fw, uc_fw->path, dev);
> > > + err = firmware_request_nowarn(&fw, uc_fw->path, dev);
> > > if (err)
> > > goto fail;
> > > @@ -770,8 +770,12 @@ static int uc_fw_request(struct xe_uc_fw *uc_fw, const struct firmware **firmwar
> > > XE_UC_FIRMWARE_MISSING :
> > > XE_UC_FIRMWARE_ERROR);
> > > - xe_gt_notice(gt, "%s firmware %s: fetch failed with error %pe\n",
> > > - xe_uc_fw_type_repr(uc_fw->type), uc_fw->path, ERR_PTR(err));
> > > + if (err == -ENOENT)
> > > + xe_gt_info(gt, "%s firmware %s not found\n",
> > > + xe_uc_fw_type_repr(uc_fw->type), uc_fw->path);
> > > + else
> > > + xe_gt_notice(gt, "%s firmware %s: fetch failed with error %pe\n",
> > shouldn't this be an warn or error?
>
> The lack of FW is now a valid case for GSC on PTL, so I think it is better
> to avoid throwing an error for it. Note that there are errors for both GuC
> and HuC being printed at other levels of the stack.
thanks for checking
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
>
> Daniele
>
> >
> > > + xe_uc_fw_type_repr(uc_fw->type), uc_fw->path, ERR_PTR(err));
> > > xe_gt_info(gt, "%s firmware(s) can be downloaded from %s\n",
> > > xe_uc_fw_type_repr(uc_fw->type), XE_UC_FIRMWARE_URL);
> > > --
> > > 2.43.0
> > >
>
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [PATCH 2/3] drm/xe/ptl: Define GSC for PTL
2026-01-08 1:13 ` [PATCH 2/3] drm/xe/ptl: Define GSC for PTL Daniele Ceraolo Spurio
@ 2026-01-09 15:41 ` Julia Filipchuk
0 siblings, 0 replies; 21+ messages in thread
From: Julia Filipchuk @ 2026-01-09 15:41 UTC (permalink / raw)
To: Daniele Ceraolo Spurio, intel-xe; +Cc: Rodrigo Vivi
LGTM
Reviewed-by: Julia Filipchuk <julia.filipchuk@intel.com>
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [PATCH 1/3] drm/xe/gsc: Make GSC FW load optional for newer platforms
2026-01-08 1:13 ` [PATCH 1/3] drm/xe/gsc: Make GSC FW load optional for newer platforms Daniele Ceraolo Spurio
2026-01-08 14:35 ` Rodrigo Vivi
@ 2026-01-09 15:52 ` Julia Filipchuk
1 sibling, 0 replies; 21+ messages in thread
From: Julia Filipchuk @ 2026-01-09 15:52 UTC (permalink / raw)
To: Daniele Ceraolo Spurio, intel-xe; +Cc: Rodrigo Vivi
On 1/7/2026 5:13 PM, Daniele Ceraolo Spurio wrote:
> diff --git a/drivers/gpu/drm/xe/xe_gsc.c b/drivers/gpu/drm/xe/xe_gsc.c
> index a3157b0fe791..8ad27c884f68 100644
> --- a/drivers/gpu/drm/xe/xe_gsc.c
> +++ b/drivers/gpu/drm/xe/xe_gsc.c
> @@ -414,15 +414,16 @@ int xe_gsc_init(struct xe_gsc *gsc)
> }
>
> /*
> - * Some platforms can have GuC but not GSC. That would cause
> - * xe_uc_fw_init(gsc) to return a "not supported" failure code and abort
> - * all firmware loading. So check for GSC being enabled before
> - * propagating the failure back up. That way the higher level will keep
> - * going and load GuC as appropriate.
> + * Starting from BMG the GSC is no longer needed for MC6 entry, so the
> + * only missing features if the FW is lacking would be the content
> + * protection ones. This is acceptable, si we allow the driver load to
correct 'si' to be 'since'.
With minor change to documentation. (Can be rolled into next patch).
Reviewed-by: Julia Filipchuk <julia.filipchuk@intel.com>
^ permalink raw reply [flat|nested] 21+ messages in thread
* ✓ CI.KUnit: success for Enable GSC loading and PXP for PTL (rev2)
2026-01-08 1:13 [PATCH 0/3] Enable GSC loading and PXP for PTL Daniele Ceraolo Spurio
` (6 preceding siblings ...)
2026-01-08 14:36 ` [PATCH 0/3] " Rodrigo Vivi
@ 2026-01-10 0:28 ` Patchwork
2026-01-10 1:01 ` ✓ Xe.CI.BAT: " Patchwork
` (4 subsequent siblings)
12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-01-10 0:28 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-xe
== Series Details ==
Series: Enable GSC loading and PXP for PTL (rev2)
URL : https://patchwork.freedesktop.org/series/159774/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[00:27:26] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[00:27:30] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[00:28:02] Starting KUnit Kernel (1/1)...
[00:28:02] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[00:28:02] ================== guc_buf (11 subtests) ===================
[00:28:02] [PASSED] test_smallest
[00:28:02] [PASSED] test_largest
[00:28:02] [PASSED] test_granular
[00:28:02] [PASSED] test_unique
[00:28:02] [PASSED] test_overlap
[00:28:02] [PASSED] test_reusable
[00:28:02] [PASSED] test_too_big
[00:28:02] [PASSED] test_flush
[00:28:02] [PASSED] test_lookup
[00:28:02] [PASSED] test_data
[00:28:02] [PASSED] test_class
[00:28:02] ===================== [PASSED] guc_buf =====================
[00:28:02] =================== guc_dbm (7 subtests) ===================
[00:28:02] [PASSED] test_empty
[00:28:02] [PASSED] test_default
[00:28:02] ======================== test_size ========================
[00:28:02] [PASSED] 4
[00:28:02] [PASSED] 8
[00:28:02] [PASSED] 32
[00:28:02] [PASSED] 256
[00:28:02] ==================== [PASSED] test_size ====================
[00:28:02] ======================= test_reuse ========================
[00:28:02] [PASSED] 4
[00:28:02] [PASSED] 8
[00:28:02] [PASSED] 32
[00:28:02] [PASSED] 256
[00:28:02] =================== [PASSED] test_reuse ====================
[00:28:02] =================== test_range_overlap ====================
[00:28:02] [PASSED] 4
[00:28:02] [PASSED] 8
[00:28:02] [PASSED] 32
[00:28:02] [PASSED] 256
[00:28:02] =============== [PASSED] test_range_overlap ================
[00:28:02] =================== test_range_compact ====================
[00:28:02] [PASSED] 4
[00:28:02] [PASSED] 8
[00:28:02] [PASSED] 32
[00:28:02] [PASSED] 256
[00:28:02] =============== [PASSED] test_range_compact ================
[00:28:02] ==================== test_range_spare =====================
[00:28:02] [PASSED] 4
[00:28:02] [PASSED] 8
[00:28:02] [PASSED] 32
[00:28:02] [PASSED] 256
[00:28:02] ================ [PASSED] test_range_spare =================
[00:28:02] ===================== [PASSED] guc_dbm =====================
[00:28:02] =================== guc_idm (6 subtests) ===================
[00:28:02] [PASSED] bad_init
[00:28:02] [PASSED] no_init
[00:28:02] [PASSED] init_fini
[00:28:02] [PASSED] check_used
[00:28:02] [PASSED] check_quota
[00:28:02] [PASSED] check_all
[00:28:02] ===================== [PASSED] guc_idm =====================
[00:28:02] ================== no_relay (3 subtests) ===================
[00:28:02] [PASSED] xe_drops_guc2pf_if_not_ready
[00:28:02] [PASSED] xe_drops_guc2vf_if_not_ready
[00:28:02] [PASSED] xe_rejects_send_if_not_ready
[00:28:02] ==================== [PASSED] no_relay =====================
[00:28:02] ================== pf_relay (14 subtests) ==================
[00:28:02] [PASSED] pf_rejects_guc2pf_too_short
[00:28:02] [PASSED] pf_rejects_guc2pf_too_long
[00:28:02] [PASSED] pf_rejects_guc2pf_no_payload
[00:28:02] [PASSED] pf_fails_no_payload
[00:28:02] [PASSED] pf_fails_bad_origin
[00:28:02] [PASSED] pf_fails_bad_type
[00:28:02] [PASSED] pf_txn_reports_error
[00:28:02] [PASSED] pf_txn_sends_pf2guc
[00:28:02] [PASSED] pf_sends_pf2guc
[00:28:02] [SKIPPED] pf_loopback_nop
[00:28:02] [SKIPPED] pf_loopback_echo
[00:28:02] [SKIPPED] pf_loopback_fail
[00:28:02] [SKIPPED] pf_loopback_busy
[00:28:02] [SKIPPED] pf_loopback_retry
[00:28:02] ==================== [PASSED] pf_relay =====================
[00:28:02] ================== vf_relay (3 subtests) ===================
[00:28:02] [PASSED] vf_rejects_guc2vf_too_short
[00:28:02] [PASSED] vf_rejects_guc2vf_too_long
[00:28:02] [PASSED] vf_rejects_guc2vf_no_payload
[00:28:02] ==================== [PASSED] vf_relay =====================
[00:28:02] ================ pf_gt_config (6 subtests) =================
[00:28:02] [PASSED] fair_contexts_1vf
[00:28:02] [PASSED] fair_doorbells_1vf
[00:28:02] [PASSED] fair_ggtt_1vf
[00:28:02] ====================== fair_contexts ======================
[00:28:02] [PASSED] 1 VF
[00:28:02] [PASSED] 2 VFs
[00:28:02] [PASSED] 3 VFs
[00:28:02] [PASSED] 4 VFs
[00:28:02] [PASSED] 5 VFs
[00:28:02] [PASSED] 6 VFs
[00:28:02] [PASSED] 7 VFs
[00:28:02] [PASSED] 8 VFs
[00:28:02] [PASSED] 9 VFs
[00:28:02] [PASSED] 10 VFs
[00:28:02] [PASSED] 11 VFs
[00:28:02] [PASSED] 12 VFs
[00:28:02] [PASSED] 13 VFs
[00:28:02] [PASSED] 14 VFs
[00:28:02] [PASSED] 15 VFs
[00:28:02] [PASSED] 16 VFs
[00:28:02] [PASSED] 17 VFs
[00:28:02] [PASSED] 18 VFs
[00:28:02] [PASSED] 19 VFs
[00:28:02] [PASSED] 20 VFs
[00:28:02] [PASSED] 21 VFs
[00:28:02] [PASSED] 22 VFs
[00:28:02] [PASSED] 23 VFs
[00:28:02] [PASSED] 24 VFs
[00:28:02] [PASSED] 25 VFs
[00:28:02] [PASSED] 26 VFs
[00:28:02] [PASSED] 27 VFs
[00:28:02] [PASSED] 28 VFs
[00:28:02] [PASSED] 29 VFs
[00:28:02] [PASSED] 30 VFs
[00:28:02] [PASSED] 31 VFs
[00:28:02] [PASSED] 32 VFs
[00:28:02] [PASSED] 33 VFs
[00:28:02] [PASSED] 34 VFs
[00:28:02] [PASSED] 35 VFs
[00:28:02] [PASSED] 36 VFs
[00:28:02] [PASSED] 37 VFs
[00:28:02] [PASSED] 38 VFs
[00:28:02] [PASSED] 39 VFs
[00:28:02] [PASSED] 40 VFs
[00:28:02] [PASSED] 41 VFs
[00:28:02] [PASSED] 42 VFs
[00:28:02] [PASSED] 43 VFs
[00:28:02] [PASSED] 44 VFs
[00:28:02] [PASSED] 45 VFs
[00:28:02] [PASSED] 46 VFs
[00:28:02] [PASSED] 47 VFs
[00:28:02] [PASSED] 48 VFs
[00:28:02] [PASSED] 49 VFs
[00:28:02] [PASSED] 50 VFs
[00:28:02] [PASSED] 51 VFs
[00:28:02] [PASSED] 52 VFs
[00:28:02] [PASSED] 53 VFs
[00:28:02] [PASSED] 54 VFs
[00:28:02] [PASSED] 55 VFs
[00:28:02] [PASSED] 56 VFs
[00:28:02] [PASSED] 57 VFs
[00:28:02] [PASSED] 58 VFs
[00:28:02] [PASSED] 59 VFs
[00:28:02] [PASSED] 60 VFs
[00:28:02] [PASSED] 61 VFs
[00:28:02] [PASSED] 62 VFs
[00:28:02] [PASSED] 63 VFs
[00:28:02] ================== [PASSED] fair_contexts ==================
[00:28:02] ===================== fair_doorbells ======================
[00:28:02] [PASSED] 1 VF
[00:28:02] [PASSED] 2 VFs
[00:28:02] [PASSED] 3 VFs
[00:28:02] [PASSED] 4 VFs
[00:28:02] [PASSED] 5 VFs
[00:28:02] [PASSED] 6 VFs
[00:28:02] [PASSED] 7 VFs
[00:28:02] [PASSED] 8 VFs
[00:28:02] [PASSED] 9 VFs
[00:28:02] [PASSED] 10 VFs
[00:28:02] [PASSED] 11 VFs
[00:28:02] [PASSED] 12 VFs
[00:28:02] [PASSED] 13 VFs
[00:28:02] [PASSED] 14 VFs
[00:28:02] [PASSED] 15 VFs
[00:28:02] [PASSED] 16 VFs
[00:28:02] [PASSED] 17 VFs
[00:28:02] [PASSED] 18 VFs
[00:28:02] [PASSED] 19 VFs
[00:28:02] [PASSED] 20 VFs
[00:28:02] [PASSED] 21 VFs
[00:28:02] [PASSED] 22 VFs
[00:28:02] [PASSED] 23 VFs
[00:28:02] [PASSED] 24 VFs
[00:28:02] [PASSED] 25 VFs
[00:28:02] [PASSED] 26 VFs
[00:28:02] [PASSED] 27 VFs
[00:28:02] [PASSED] 28 VFs
[00:28:02] [PASSED] 29 VFs
[00:28:02] [PASSED] 30 VFs
[00:28:02] [PASSED] 31 VFs
[00:28:02] [PASSED] 32 VFs
[00:28:02] [PASSED] 33 VFs
[00:28:02] [PASSED] 34 VFs
[00:28:02] [PASSED] 35 VFs
[00:28:02] [PASSED] 36 VFs
[00:28:02] [PASSED] 37 VFs
[00:28:02] [PASSED] 38 VFs
[00:28:02] [PASSED] 39 VFs
[00:28:02] [PASSED] 40 VFs
[00:28:02] [PASSED] 41 VFs
[00:28:02] [PASSED] 42 VFs
[00:28:02] [PASSED] 43 VFs
[00:28:02] [PASSED] 44 VFs
[00:28:02] [PASSED] 45 VFs
[00:28:02] [PASSED] 46 VFs
[00:28:02] [PASSED] 47 VFs
[00:28:02] [PASSED] 48 VFs
[00:28:02] [PASSED] 49 VFs
[00:28:02] [PASSED] 50 VFs
[00:28:02] [PASSED] 51 VFs
[00:28:02] [PASSED] 52 VFs
[00:28:02] [PASSED] 53 VFs
[00:28:02] [PASSED] 54 VFs
[00:28:02] [PASSED] 55 VFs
[00:28:02] [PASSED] 56 VFs
[00:28:02] [PASSED] 57 VFs
[00:28:02] [PASSED] 58 VFs
[00:28:02] [PASSED] 59 VFs
[00:28:02] [PASSED] 60 VFs
[00:28:02] [PASSED] 61 VFs
[00:28:02] [PASSED] 62 VFs
[00:28:02] [PASSED] 63 VFs
[00:28:02] ================= [PASSED] fair_doorbells ==================
[00:28:02] ======================== fair_ggtt ========================
[00:28:02] [PASSED] 1 VF
[00:28:02] [PASSED] 2 VFs
[00:28:02] [PASSED] 3 VFs
[00:28:02] [PASSED] 4 VFs
[00:28:02] [PASSED] 5 VFs
[00:28:02] [PASSED] 6 VFs
[00:28:02] [PASSED] 7 VFs
[00:28:02] [PASSED] 8 VFs
[00:28:02] [PASSED] 9 VFs
[00:28:02] [PASSED] 10 VFs
[00:28:02] [PASSED] 11 VFs
[00:28:02] [PASSED] 12 VFs
[00:28:02] [PASSED] 13 VFs
[00:28:02] [PASSED] 14 VFs
[00:28:02] [PASSED] 15 VFs
[00:28:02] [PASSED] 16 VFs
[00:28:02] [PASSED] 17 VFs
[00:28:02] [PASSED] 18 VFs
[00:28:02] [PASSED] 19 VFs
[00:28:02] [PASSED] 20 VFs
[00:28:02] [PASSED] 21 VFs
[00:28:02] [PASSED] 22 VFs
[00:28:02] [PASSED] 23 VFs
[00:28:02] [PASSED] 24 VFs
[00:28:02] [PASSED] 25 VFs
[00:28:02] [PASSED] 26 VFs
[00:28:02] [PASSED] 27 VFs
[00:28:02] [PASSED] 28 VFs
[00:28:02] [PASSED] 29 VFs
[00:28:02] [PASSED] 30 VFs
[00:28:02] [PASSED] 31 VFs
[00:28:02] [PASSED] 32 VFs
[00:28:02] [PASSED] 33 VFs
[00:28:02] [PASSED] 34 VFs
[00:28:02] [PASSED] 35 VFs
[00:28:02] [PASSED] 36 VFs
[00:28:02] [PASSED] 37 VFs
[00:28:02] [PASSED] 38 VFs
[00:28:02] [PASSED] 39 VFs
[00:28:02] [PASSED] 40 VFs
[00:28:02] [PASSED] 41 VFs
[00:28:02] [PASSED] 42 VFs
[00:28:02] [PASSED] 43 VFs
[00:28:02] [PASSED] 44 VFs
[00:28:02] [PASSED] 45 VFs
[00:28:02] [PASSED] 46 VFs
[00:28:02] [PASSED] 47 VFs
[00:28:02] [PASSED] 48 VFs
[00:28:02] [PASSED] 49 VFs
[00:28:02] [PASSED] 50 VFs
[00:28:02] [PASSED] 51 VFs
[00:28:02] [PASSED] 52 VFs
[00:28:02] [PASSED] 53 VFs
[00:28:02] [PASSED] 54 VFs
[00:28:02] [PASSED] 55 VFs
[00:28:02] [PASSED] 56 VFs
[00:28:02] [PASSED] 57 VFs
[00:28:02] [PASSED] 58 VFs
[00:28:02] [PASSED] 59 VFs
[00:28:02] [PASSED] 60 VFs
[00:28:02] [PASSED] 61 VFs
[00:28:02] [PASSED] 62 VFs
[00:28:02] [PASSED] 63 VFs
[00:28:02] ==================== [PASSED] fair_ggtt ====================
[00:28:02] ================== [PASSED] pf_gt_config ===================
[00:28:02] ===================== lmtt (1 subtest) =====================
[00:28:02] ======================== test_ops =========================
[00:28:02] [PASSED] 2-level
[00:28:02] [PASSED] multi-level
[00:28:02] ==================== [PASSED] test_ops =====================
[00:28:02] ====================== [PASSED] lmtt =======================
[00:28:02] ================= pf_service (11 subtests) =================
[00:28:02] [PASSED] pf_negotiate_any
[00:28:02] [PASSED] pf_negotiate_base_match
[00:28:02] [PASSED] pf_negotiate_base_newer
[00:28:02] [PASSED] pf_negotiate_base_next
[00:28:02] [SKIPPED] pf_negotiate_base_older
[00:28:02] [PASSED] pf_negotiate_base_prev
[00:28:02] [PASSED] pf_negotiate_latest_match
[00:28:02] [PASSED] pf_negotiate_latest_newer
[00:28:02] [PASSED] pf_negotiate_latest_next
[00:28:02] [SKIPPED] pf_negotiate_latest_older
[00:28:02] [SKIPPED] pf_negotiate_latest_prev
[00:28:02] =================== [PASSED] pf_service ====================
[00:28:02] ================= xe_guc_g2g (2 subtests) ==================
[00:28:02] ============== xe_live_guc_g2g_kunit_default ==============
[00:28:02] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[00:28:02] ============== xe_live_guc_g2g_kunit_allmem ===============
[00:28:02] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[00:28:02] =================== [SKIPPED] xe_guc_g2g ===================
[00:28:02] =================== xe_mocs (2 subtests) ===================
[00:28:02] ================ xe_live_mocs_kernel_kunit ================
[00:28:02] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[00:28:02] ================ xe_live_mocs_reset_kunit =================
[00:28:02] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[00:28:02] ==================== [SKIPPED] xe_mocs =====================
[00:28:02] ================= xe_migrate (2 subtests) ==================
[00:28:02] ================= xe_migrate_sanity_kunit =================
[00:28:02] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[00:28:02] ================== xe_validate_ccs_kunit ==================
[00:28:02] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[00:28:02] =================== [SKIPPED] xe_migrate ===================
[00:28:02] ================== xe_dma_buf (1 subtest) ==================
[00:28:02] ==================== xe_dma_buf_kunit =====================
[00:28:02] ================ [SKIPPED] xe_dma_buf_kunit ================
[00:28:02] =================== [SKIPPED] xe_dma_buf ===================
[00:28:02] ================= xe_bo_shrink (1 subtest) =================
[00:28:02] =================== xe_bo_shrink_kunit ====================
[00:28:02] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[00:28:02] ================== [SKIPPED] xe_bo_shrink ==================
[00:28:02] ==================== xe_bo (2 subtests) ====================
[00:28:02] ================== xe_ccs_migrate_kunit ===================
[00:28:02] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[00:28:02] ==================== xe_bo_evict_kunit ====================
[00:28:02] =============== [SKIPPED] xe_bo_evict_kunit ================
[00:28:02] ===================== [SKIPPED] xe_bo ======================
[00:28:02] ==================== args (13 subtests) ====================
[00:28:02] [PASSED] count_args_test
[00:28:02] [PASSED] call_args_example
[00:28:02] [PASSED] call_args_test
[00:28:02] [PASSED] drop_first_arg_example
[00:28:02] [PASSED] drop_first_arg_test
[00:28:02] [PASSED] first_arg_example
[00:28:02] [PASSED] first_arg_test
[00:28:02] [PASSED] last_arg_example
[00:28:02] [PASSED] last_arg_test
[00:28:02] [PASSED] pick_arg_example
[00:28:02] [PASSED] if_args_example
[00:28:02] [PASSED] if_args_test
[00:28:02] [PASSED] sep_comma_example
[00:28:02] ====================== [PASSED] args =======================
[00:28:02] =================== xe_pci (3 subtests) ====================
[00:28:02] ==================== check_graphics_ip ====================
[00:28:02] [PASSED] 12.00 Xe_LP
[00:28:02] [PASSED] 12.10 Xe_LP+
[00:28:02] [PASSED] 12.55 Xe_HPG
[00:28:02] [PASSED] 12.60 Xe_HPC
[00:28:02] [PASSED] 12.70 Xe_LPG
[00:28:02] [PASSED] 12.71 Xe_LPG
[00:28:02] [PASSED] 12.74 Xe_LPG+
[00:28:02] [PASSED] 20.01 Xe2_HPG
[00:28:02] [PASSED] 20.02 Xe2_HPG
[00:28:02] [PASSED] 20.04 Xe2_LPG
[00:28:02] [PASSED] 30.00 Xe3_LPG
[00:28:02] [PASSED] 30.01 Xe3_LPG
[00:28:02] [PASSED] 30.03 Xe3_LPG
[00:28:02] [PASSED] 30.04 Xe3_LPG
[00:28:02] [PASSED] 30.05 Xe3_LPG
[00:28:02] [PASSED] 35.11 Xe3p_XPC
[00:28:02] ================ [PASSED] check_graphics_ip ================
[00:28:02] ===================== check_media_ip ======================
[00:28:02] [PASSED] 12.00 Xe_M
[00:28:02] [PASSED] 12.55 Xe_HPM
[00:28:02] [PASSED] 13.00 Xe_LPM+
[00:28:02] [PASSED] 13.01 Xe2_HPM
[00:28:02] [PASSED] 20.00 Xe2_LPM
[00:28:02] [PASSED] 30.00 Xe3_LPM
[00:28:02] [PASSED] 30.02 Xe3_LPM
[00:28:02] [PASSED] 35.00 Xe3p_LPM
[00:28:02] [PASSED] 35.03 Xe3p_HPM
[00:28:02] ================= [PASSED] check_media_ip ==================
[00:28:02] =================== check_platform_desc ===================
[00:28:02] [PASSED] 0x9A60 (TIGERLAKE)
[00:28:02] [PASSED] 0x9A68 (TIGERLAKE)
[00:28:02] [PASSED] 0x9A70 (TIGERLAKE)
[00:28:02] [PASSED] 0x9A40 (TIGERLAKE)
[00:28:02] [PASSED] 0x9A49 (TIGERLAKE)
[00:28:02] [PASSED] 0x9A59 (TIGERLAKE)
[00:28:02] [PASSED] 0x9A78 (TIGERLAKE)
[00:28:02] [PASSED] 0x9AC0 (TIGERLAKE)
[00:28:02] [PASSED] 0x9AC9 (TIGERLAKE)
[00:28:02] [PASSED] 0x9AD9 (TIGERLAKE)
[00:28:02] [PASSED] 0x9AF8 (TIGERLAKE)
[00:28:02] [PASSED] 0x4C80 (ROCKETLAKE)
[00:28:02] [PASSED] 0x4C8A (ROCKETLAKE)
[00:28:02] [PASSED] 0x4C8B (ROCKETLAKE)
[00:28:02] [PASSED] 0x4C8C (ROCKETLAKE)
[00:28:02] [PASSED] 0x4C90 (ROCKETLAKE)
[00:28:02] [PASSED] 0x4C9A (ROCKETLAKE)
[00:28:02] [PASSED] 0x4680 (ALDERLAKE_S)
[00:28:02] [PASSED] 0x4682 (ALDERLAKE_S)
[00:28:02] [PASSED] 0x4688 (ALDERLAKE_S)
[00:28:02] [PASSED] 0x468A (ALDERLAKE_S)
[00:28:02] [PASSED] 0x468B (ALDERLAKE_S)
[00:28:02] [PASSED] 0x4690 (ALDERLAKE_S)
[00:28:02] [PASSED] 0x4692 (ALDERLAKE_S)
[00:28:02] [PASSED] 0x4693 (ALDERLAKE_S)
[00:28:02] [PASSED] 0x46A0 (ALDERLAKE_P)
[00:28:02] [PASSED] 0x46A1 (ALDERLAKE_P)
[00:28:02] [PASSED] 0x46A2 (ALDERLAKE_P)
[00:28:02] [PASSED] 0x46A3 (ALDERLAKE_P)
[00:28:02] [PASSED] 0x46A6 (ALDERLAKE_P)
[00:28:02] [PASSED] 0x46A8 (ALDERLAKE_P)
[00:28:02] [PASSED] 0x46AA (ALDERLAKE_P)
[00:28:02] [PASSED] 0x462A (ALDERLAKE_P)
[00:28:02] [PASSED] 0x4626 (ALDERLAKE_P)
[00:28:02] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[00:28:02] [PASSED] 0x46B0 (ALDERLAKE_P)
[00:28:02] [PASSED] 0x46B1 (ALDERLAKE_P)
[00:28:02] [PASSED] 0x46B2 (ALDERLAKE_P)
[00:28:02] [PASSED] 0x46B3 (ALDERLAKE_P)
[00:28:02] [PASSED] 0x46C0 (ALDERLAKE_P)
[00:28:02] [PASSED] 0x46C1 (ALDERLAKE_P)
[00:28:02] [PASSED] 0x46C2 (ALDERLAKE_P)
[00:28:02] [PASSED] 0x46C3 (ALDERLAKE_P)
[00:28:02] [PASSED] 0x46D0 (ALDERLAKE_N)
[00:28:02] [PASSED] 0x46D1 (ALDERLAKE_N)
[00:28:02] [PASSED] 0x46D2 (ALDERLAKE_N)
[00:28:02] [PASSED] 0x46D3 (ALDERLAKE_N)
[00:28:02] [PASSED] 0x46D4 (ALDERLAKE_N)
[00:28:02] [PASSED] 0xA721 (ALDERLAKE_P)
[00:28:02] [PASSED] 0xA7A1 (ALDERLAKE_P)
[00:28:02] [PASSED] 0xA7A9 (ALDERLAKE_P)
[00:28:02] [PASSED] 0xA7AC (ALDERLAKE_P)
[00:28:02] [PASSED] 0xA7AD (ALDERLAKE_P)
[00:28:02] [PASSED] 0xA720 (ALDERLAKE_P)
[00:28:02] [PASSED] 0xA7A0 (ALDERLAKE_P)
[00:28:02] [PASSED] 0xA7A8 (ALDERLAKE_P)
[00:28:02] [PASSED] 0xA7AA (ALDERLAKE_P)
[00:28:02] [PASSED] 0xA7AB (ALDERLAKE_P)
[00:28:02] [PASSED] 0xA780 (ALDERLAKE_S)
[00:28:02] [PASSED] 0xA781 (ALDERLAKE_S)
[00:28:02] [PASSED] 0xA782 (ALDERLAKE_S)
[00:28:02] [PASSED] 0xA783 (ALDERLAKE_S)
[00:28:02] [PASSED] 0xA788 (ALDERLAKE_S)
[00:28:02] [PASSED] 0xA789 (ALDERLAKE_S)
[00:28:02] [PASSED] 0xA78A (ALDERLAKE_S)
[00:28:02] [PASSED] 0xA78B (ALDERLAKE_S)
[00:28:02] [PASSED] 0x4905 (DG1)
[00:28:02] [PASSED] 0x4906 (DG1)
[00:28:02] [PASSED] 0x4907 (DG1)
[00:28:02] [PASSED] 0x4908 (DG1)
[00:28:02] [PASSED] 0x4909 (DG1)
[00:28:02] [PASSED] 0x56C0 (DG2)
[00:28:02] [PASSED] 0x56C2 (DG2)
[00:28:02] [PASSED] 0x56C1 (DG2)
[00:28:02] [PASSED] 0x7D51 (METEORLAKE)
[00:28:02] [PASSED] 0x7DD1 (METEORLAKE)
[00:28:02] [PASSED] 0x7D41 (METEORLAKE)
[00:28:02] [PASSED] 0x7D67 (METEORLAKE)
[00:28:02] [PASSED] 0xB640 (METEORLAKE)
[00:28:02] [PASSED] 0x56A0 (DG2)
[00:28:02] [PASSED] 0x56A1 (DG2)
[00:28:02] [PASSED] 0x56A2 (DG2)
[00:28:02] [PASSED] 0x56BE (DG2)
[00:28:02] [PASSED] 0x56BF (DG2)
[00:28:02] [PASSED] 0x5690 (DG2)
[00:28:02] [PASSED] 0x5691 (DG2)
[00:28:02] [PASSED] 0x5692 (DG2)
[00:28:02] [PASSED] 0x56A5 (DG2)
[00:28:02] [PASSED] 0x56A6 (DG2)
[00:28:02] [PASSED] 0x56B0 (DG2)
[00:28:02] [PASSED] 0x56B1 (DG2)
[00:28:02] [PASSED] 0x56BA (DG2)
[00:28:02] [PASSED] 0x56BB (DG2)
[00:28:02] [PASSED] 0x56BC (DG2)
[00:28:02] [PASSED] 0x56BD (DG2)
[00:28:02] [PASSED] 0x5693 (DG2)
[00:28:02] [PASSED] 0x5694 (DG2)
[00:28:02] [PASSED] 0x5695 (DG2)
[00:28:02] [PASSED] 0x56A3 (DG2)
[00:28:02] [PASSED] 0x56A4 (DG2)
[00:28:02] [PASSED] 0x56B2 (DG2)
[00:28:02] [PASSED] 0x56B3 (DG2)
[00:28:02] [PASSED] 0x5696 (DG2)
[00:28:02] [PASSED] 0x5697 (DG2)
[00:28:02] [PASSED] 0xB69 (PVC)
[00:28:02] [PASSED] 0xB6E (PVC)
[00:28:02] [PASSED] 0xBD4 (PVC)
[00:28:02] [PASSED] 0xBD5 (PVC)
[00:28:02] [PASSED] 0xBD6 (PVC)
[00:28:02] [PASSED] 0xBD7 (PVC)
[00:28:02] [PASSED] 0xBD8 (PVC)
[00:28:02] [PASSED] 0xBD9 (PVC)
[00:28:02] [PASSED] 0xBDA (PVC)
[00:28:02] [PASSED] 0xBDB (PVC)
[00:28:02] [PASSED] 0xBE0 (PVC)
[00:28:02] [PASSED] 0xBE1 (PVC)
[00:28:02] [PASSED] 0xBE5 (PVC)
[00:28:02] [PASSED] 0x7D40 (METEORLAKE)
[00:28:02] [PASSED] 0x7D45 (METEORLAKE)
[00:28:02] [PASSED] 0x7D55 (METEORLAKE)
[00:28:02] [PASSED] 0x7D60 (METEORLAKE)
[00:28:02] [PASSED] 0x7DD5 (METEORLAKE)
[00:28:02] [PASSED] 0x6420 (LUNARLAKE)
[00:28:02] [PASSED] 0x64A0 (LUNARLAKE)
[00:28:02] [PASSED] 0x64B0 (LUNARLAKE)
[00:28:02] [PASSED] 0xE202 (BATTLEMAGE)
[00:28:02] [PASSED] 0xE209 (BATTLEMAGE)
[00:28:02] [PASSED] 0xE20B (BATTLEMAGE)
[00:28:02] [PASSED] 0xE20C (BATTLEMAGE)
[00:28:02] [PASSED] 0xE20D (BATTLEMAGE)
[00:28:02] [PASSED] 0xE210 (BATTLEMAGE)
[00:28:02] [PASSED] 0xE211 (BATTLEMAGE)
[00:28:02] [PASSED] 0xE212 (BATTLEMAGE)
[00:28:02] [PASSED] 0xE216 (BATTLEMAGE)
[00:28:02] [PASSED] 0xE220 (BATTLEMAGE)
[00:28:02] [PASSED] 0xE221 (BATTLEMAGE)
[00:28:02] [PASSED] 0xE222 (BATTLEMAGE)
[00:28:02] [PASSED] 0xE223 (BATTLEMAGE)
[00:28:02] [PASSED] 0xB080 (PANTHERLAKE)
[00:28:02] [PASSED] 0xB081 (PANTHERLAKE)
[00:28:02] [PASSED] 0xB082 (PANTHERLAKE)
[00:28:02] [PASSED] 0xB083 (PANTHERLAKE)
[00:28:02] [PASSED] 0xB084 (PANTHERLAKE)
[00:28:02] [PASSED] 0xB085 (PANTHERLAKE)
[00:28:02] [PASSED] 0xB086 (PANTHERLAKE)
[00:28:02] [PASSED] 0xB087 (PANTHERLAKE)
[00:28:02] [PASSED] 0xB08F (PANTHERLAKE)
[00:28:02] [PASSED] 0xB090 (PANTHERLAKE)
[00:28:02] [PASSED] 0xB0A0 (PANTHERLAKE)
[00:28:02] [PASSED] 0xB0B0 (PANTHERLAKE)
[00:28:02] [PASSED] 0xFD80 (PANTHERLAKE)
[00:28:02] [PASSED] 0xFD81 (PANTHERLAKE)
[00:28:02] [PASSED] 0xD740 (NOVALAKE_S)
[00:28:02] [PASSED] 0xD741 (NOVALAKE_S)
[00:28:02] [PASSED] 0xD742 (NOVALAKE_S)
[00:28:02] [PASSED] 0xD743 (NOVALAKE_S)
[00:28:02] [PASSED] 0xD744 (NOVALAKE_S)
[00:28:02] [PASSED] 0xD745 (NOVALAKE_S)
[00:28:02] [PASSED] 0x674C (CRESCENTISLAND)
[00:28:02] =============== [PASSED] check_platform_desc ===============
[00:28:02] ===================== [PASSED] xe_pci ======================
[00:28:02] =================== xe_rtp (2 subtests) ====================
[00:28:02] =============== xe_rtp_process_to_sr_tests ================
[00:28:02] [PASSED] coalesce-same-reg
[00:28:02] [PASSED] no-match-no-add
[00:28:02] [PASSED] match-or
[00:28:02] [PASSED] match-or-xfail
[00:28:02] [PASSED] no-match-no-add-multiple-rules
[00:28:02] [PASSED] two-regs-two-entries
[00:28:02] [PASSED] clr-one-set-other
[00:28:02] [PASSED] set-field
[00:28:02] [PASSED] conflict-duplicate
[00:28:02] [PASSED] conflict-not-disjoint
[00:28:02] [PASSED] conflict-reg-type
[00:28:02] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[00:28:02] ================== xe_rtp_process_tests ===================
[00:28:02] [PASSED] active1
[00:28:02] [PASSED] active2
[00:28:02] [PASSED] active-inactive
[00:28:02] [PASSED] inactive-active
[00:28:02] [PASSED] inactive-1st_or_active-inactive
[00:28:02] [PASSED] inactive-2nd_or_active-inactive
[00:28:02] [PASSED] inactive-last_or_active-inactive
[00:28:02] [PASSED] inactive-no_or_active-inactive
[00:28:02] ============== [PASSED] xe_rtp_process_tests ===============
[00:28:02] ===================== [PASSED] xe_rtp ======================
[00:28:02] ==================== xe_wa (1 subtest) =====================
[00:28:02] ======================== xe_wa_gt =========================
[00:28:02] [PASSED] TIGERLAKE B0
[00:28:02] [PASSED] DG1 A0
[00:28:02] [PASSED] DG1 B0
[00:28:02] [PASSED] ALDERLAKE_S A0
[00:28:02] [PASSED] ALDERLAKE_S B0
[00:28:02] [PASSED] ALDERLAKE_S C0
[00:28:02] [PASSED] ALDERLAKE_S D0
[00:28:02] [PASSED] ALDERLAKE_P A0
[00:28:02] [PASSED] ALDERLAKE_P B0
[00:28:02] [PASSED] ALDERLAKE_P C0
[00:28:02] [PASSED] ALDERLAKE_S RPLS D0
[00:28:02] [PASSED] ALDERLAKE_P RPLU E0
[00:28:02] [PASSED] DG2 G10 C0
[00:28:02] [PASSED] DG2 G11 B1
[00:28:02] [PASSED] DG2 G12 A1
[00:28:02] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[00:28:02] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[00:28:02] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[00:28:02] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[00:28:02] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[00:28:02] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[00:28:02] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[00:28:02] ==================== [PASSED] xe_wa_gt =====================
[00:28:02] ====================== [PASSED] xe_wa ======================
[00:28:02] ============================================================
[00:28:02] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[00:28:02] Elapsed time: 36.175s total, 4.218s configuring, 31.440s building, 0.473s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[00:28:02] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[00:28:04] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[00:28:29] Starting KUnit Kernel (1/1)...
[00:28:29] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[00:28:30] ============ drm_test_pick_cmdline (2 subtests) ============
[00:28:30] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[00:28:30] =============== drm_test_pick_cmdline_named ===============
[00:28:30] [PASSED] NTSC
[00:28:30] [PASSED] NTSC-J
[00:28:30] [PASSED] PAL
[00:28:30] [PASSED] PAL-M
[00:28:30] =========== [PASSED] drm_test_pick_cmdline_named ===========
[00:28:30] ============== [PASSED] drm_test_pick_cmdline ==============
[00:28:30] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[00:28:30] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[00:28:30] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[00:28:30] =========== drm_validate_clone_mode (2 subtests) ===========
[00:28:30] ============== drm_test_check_in_clone_mode ===============
[00:28:30] [PASSED] in_clone_mode
[00:28:30] [PASSED] not_in_clone_mode
[00:28:30] ========== [PASSED] drm_test_check_in_clone_mode ===========
[00:28:30] =============== drm_test_check_valid_clones ===============
[00:28:30] [PASSED] not_in_clone_mode
[00:28:30] [PASSED] valid_clone
[00:28:30] [PASSED] invalid_clone
[00:28:30] =========== [PASSED] drm_test_check_valid_clones ===========
[00:28:30] ============= [PASSED] drm_validate_clone_mode =============
[00:28:30] ============= drm_validate_modeset (1 subtest) =============
[00:28:30] [PASSED] drm_test_check_connector_changed_modeset
[00:28:30] ============== [PASSED] drm_validate_modeset ===============
[00:28:30] ====== drm_test_bridge_get_current_state (2 subtests) ======
[00:28:30] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[00:28:30] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[00:28:30] ======== [PASSED] drm_test_bridge_get_current_state ========
[00:28:30] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[00:28:30] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[00:28:30] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[00:28:30] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[00:28:30] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[00:28:30] ============== drm_bridge_alloc (2 subtests) ===============
[00:28:30] [PASSED] drm_test_drm_bridge_alloc_basic
[00:28:30] [PASSED] drm_test_drm_bridge_alloc_get_put
[00:28:30] ================ [PASSED] drm_bridge_alloc =================
[00:28:30] ================== drm_buddy (8 subtests) ==================
[00:28:30] [PASSED] drm_test_buddy_alloc_limit
[00:28:30] [PASSED] drm_test_buddy_alloc_optimistic
[00:28:30] [PASSED] drm_test_buddy_alloc_pessimistic
[00:28:30] [PASSED] drm_test_buddy_alloc_pathological
[00:28:30] [PASSED] drm_test_buddy_alloc_contiguous
[00:28:30] [PASSED] drm_test_buddy_alloc_clear
[00:28:30] [PASSED] drm_test_buddy_alloc_range_bias
[00:28:30] [PASSED] drm_test_buddy_fragmentation_performance
[00:28:30] ==================== [PASSED] drm_buddy ====================
[00:28:30] ============= drm_cmdline_parser (40 subtests) =============
[00:28:30] [PASSED] drm_test_cmdline_force_d_only
[00:28:30] [PASSED] drm_test_cmdline_force_D_only_dvi
[00:28:30] [PASSED] drm_test_cmdline_force_D_only_hdmi
[00:28:30] [PASSED] drm_test_cmdline_force_D_only_not_digital
[00:28:30] [PASSED] drm_test_cmdline_force_e_only
[00:28:30] [PASSED] drm_test_cmdline_res
[00:28:30] [PASSED] drm_test_cmdline_res_vesa
[00:28:30] [PASSED] drm_test_cmdline_res_vesa_rblank
[00:28:30] [PASSED] drm_test_cmdline_res_rblank
[00:28:30] [PASSED] drm_test_cmdline_res_bpp
[00:28:30] [PASSED] drm_test_cmdline_res_refresh
[00:28:30] [PASSED] drm_test_cmdline_res_bpp_refresh
[00:28:30] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[00:28:30] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[00:28:30] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[00:28:30] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[00:28:30] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[00:28:30] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[00:28:30] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[00:28:30] [PASSED] drm_test_cmdline_res_margins_force_on
[00:28:30] [PASSED] drm_test_cmdline_res_vesa_margins
[00:28:30] [PASSED] drm_test_cmdline_name
[00:28:30] [PASSED] drm_test_cmdline_name_bpp
[00:28:30] [PASSED] drm_test_cmdline_name_option
[00:28:30] [PASSED] drm_test_cmdline_name_bpp_option
[00:28:30] [PASSED] drm_test_cmdline_rotate_0
[00:28:30] [PASSED] drm_test_cmdline_rotate_90
[00:28:30] [PASSED] drm_test_cmdline_rotate_180
[00:28:30] [PASSED] drm_test_cmdline_rotate_270
[00:28:30] [PASSED] drm_test_cmdline_hmirror
[00:28:30] [PASSED] drm_test_cmdline_vmirror
[00:28:30] [PASSED] drm_test_cmdline_margin_options
[00:28:30] [PASSED] drm_test_cmdline_multiple_options
[00:28:30] [PASSED] drm_test_cmdline_bpp_extra_and_option
[00:28:30] [PASSED] drm_test_cmdline_extra_and_option
[00:28:30] [PASSED] drm_test_cmdline_freestanding_options
[00:28:30] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[00:28:30] [PASSED] drm_test_cmdline_panel_orientation
[00:28:30] ================ drm_test_cmdline_invalid =================
[00:28:30] [PASSED] margin_only
[00:28:30] [PASSED] interlace_only
[00:28:30] [PASSED] res_missing_x
[00:28:30] [PASSED] res_missing_y
[00:28:30] [PASSED] res_bad_y
[00:28:30] [PASSED] res_missing_y_bpp
[00:28:30] [PASSED] res_bad_bpp
[00:28:30] [PASSED] res_bad_refresh
[00:28:30] [PASSED] res_bpp_refresh_force_on_off
[00:28:30] [PASSED] res_invalid_mode
[00:28:30] [PASSED] res_bpp_wrong_place_mode
[00:28:30] [PASSED] name_bpp_refresh
[00:28:30] [PASSED] name_refresh
[00:28:30] [PASSED] name_refresh_wrong_mode
[00:28:30] [PASSED] name_refresh_invalid_mode
[00:28:30] [PASSED] rotate_multiple
[00:28:30] [PASSED] rotate_invalid_val
[00:28:30] [PASSED] rotate_truncated
[00:28:30] [PASSED] invalid_option
[00:28:30] [PASSED] invalid_tv_option
[00:28:30] [PASSED] truncated_tv_option
[00:28:30] ============ [PASSED] drm_test_cmdline_invalid =============
[00:28:30] =============== drm_test_cmdline_tv_options ===============
[00:28:30] [PASSED] NTSC
[00:28:30] [PASSED] NTSC_443
[00:28:30] [PASSED] NTSC_J
[00:28:30] [PASSED] PAL
[00:28:30] [PASSED] PAL_M
[00:28:30] [PASSED] PAL_N
[00:28:30] [PASSED] SECAM
[00:28:30] [PASSED] MONO_525
[00:28:30] [PASSED] MONO_625
[00:28:30] =========== [PASSED] drm_test_cmdline_tv_options ===========
[00:28:30] =============== [PASSED] drm_cmdline_parser ================
[00:28:30] ========== drmm_connector_hdmi_init (20 subtests) ==========
[00:28:30] [PASSED] drm_test_connector_hdmi_init_valid
[00:28:30] [PASSED] drm_test_connector_hdmi_init_bpc_8
[00:28:30] [PASSED] drm_test_connector_hdmi_init_bpc_10
[00:28:30] [PASSED] drm_test_connector_hdmi_init_bpc_12
[00:28:30] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[00:28:30] [PASSED] drm_test_connector_hdmi_init_bpc_null
[00:28:30] [PASSED] drm_test_connector_hdmi_init_formats_empty
[00:28:30] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[00:28:30] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[00:28:30] [PASSED] supported_formats=0x9 yuv420_allowed=1
[00:28:30] [PASSED] supported_formats=0x9 yuv420_allowed=0
[00:28:30] [PASSED] supported_formats=0x3 yuv420_allowed=1
[00:28:30] [PASSED] supported_formats=0x3 yuv420_allowed=0
[00:28:30] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[00:28:30] [PASSED] drm_test_connector_hdmi_init_null_ddc
[00:28:30] [PASSED] drm_test_connector_hdmi_init_null_product
[00:28:30] [PASSED] drm_test_connector_hdmi_init_null_vendor
[00:28:30] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[00:28:30] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[00:28:30] [PASSED] drm_test_connector_hdmi_init_product_valid
[00:28:30] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[00:28:30] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[00:28:30] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[00:28:30] ========= drm_test_connector_hdmi_init_type_valid =========
[00:28:30] [PASSED] HDMI-A
[00:28:30] [PASSED] HDMI-B
[00:28:30] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[00:28:30] ======== drm_test_connector_hdmi_init_type_invalid ========
[00:28:30] [PASSED] Unknown
[00:28:30] [PASSED] VGA
[00:28:30] [PASSED] DVI-I
[00:28:30] [PASSED] DVI-D
[00:28:30] [PASSED] DVI-A
[00:28:30] [PASSED] Composite
[00:28:30] [PASSED] SVIDEO
[00:28:30] [PASSED] LVDS
[00:28:30] [PASSED] Component
[00:28:30] [PASSED] DIN
[00:28:30] [PASSED] DP
[00:28:30] [PASSED] TV
[00:28:30] [PASSED] eDP
[00:28:30] [PASSED] Virtual
[00:28:30] [PASSED] DSI
[00:28:30] [PASSED] DPI
[00:28:30] [PASSED] Writeback
[00:28:30] [PASSED] SPI
[00:28:30] [PASSED] USB
[00:28:30] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[00:28:30] ============ [PASSED] drmm_connector_hdmi_init =============
[00:28:30] ============= drmm_connector_init (3 subtests) =============
[00:28:30] [PASSED] drm_test_drmm_connector_init
[00:28:30] [PASSED] drm_test_drmm_connector_init_null_ddc
[00:28:30] ========= drm_test_drmm_connector_init_type_valid =========
[00:28:30] [PASSED] Unknown
[00:28:30] [PASSED] VGA
[00:28:30] [PASSED] DVI-I
[00:28:30] [PASSED] DVI-D
[00:28:30] [PASSED] DVI-A
[00:28:30] [PASSED] Composite
[00:28:30] [PASSED] SVIDEO
[00:28:30] [PASSED] LVDS
[00:28:30] [PASSED] Component
[00:28:30] [PASSED] DIN
[00:28:30] [PASSED] DP
[00:28:30] [PASSED] HDMI-A
[00:28:30] [PASSED] HDMI-B
[00:28:30] [PASSED] TV
[00:28:30] [PASSED] eDP
[00:28:30] [PASSED] Virtual
[00:28:30] [PASSED] DSI
[00:28:30] [PASSED] DPI
[00:28:30] [PASSED] Writeback
[00:28:30] [PASSED] SPI
[00:28:30] [PASSED] USB
[00:28:30] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[00:28:30] =============== [PASSED] drmm_connector_init ===============
[00:28:30] ========= drm_connector_dynamic_init (6 subtests) ==========
[00:28:30] [PASSED] drm_test_drm_connector_dynamic_init
[00:28:30] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[00:28:30] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[00:28:30] [PASSED] drm_test_drm_connector_dynamic_init_properties
[00:28:30] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[00:28:30] [PASSED] Unknown
[00:28:30] [PASSED] VGA
[00:28:30] [PASSED] DVI-I
[00:28:30] [PASSED] DVI-D
[00:28:30] [PASSED] DVI-A
[00:28:30] [PASSED] Composite
[00:28:30] [PASSED] SVIDEO
[00:28:30] [PASSED] LVDS
[00:28:30] [PASSED] Component
[00:28:30] [PASSED] DIN
[00:28:30] [PASSED] DP
[00:28:30] [PASSED] HDMI-A
[00:28:30] [PASSED] HDMI-B
[00:28:30] [PASSED] TV
[00:28:30] [PASSED] eDP
[00:28:30] [PASSED] Virtual
[00:28:30] [PASSED] DSI
[00:28:30] [PASSED] DPI
[00:28:30] [PASSED] Writeback
[00:28:30] [PASSED] SPI
[00:28:30] [PASSED] USB
[00:28:30] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[00:28:30] ======== drm_test_drm_connector_dynamic_init_name =========
[00:28:30] [PASSED] Unknown
[00:28:30] [PASSED] VGA
[00:28:30] [PASSED] DVI-I
[00:28:30] [PASSED] DVI-D
[00:28:30] [PASSED] DVI-A
[00:28:30] [PASSED] Composite
[00:28:30] [PASSED] SVIDEO
[00:28:30] [PASSED] LVDS
[00:28:30] [PASSED] Component
[00:28:30] [PASSED] DIN
[00:28:30] [PASSED] DP
[00:28:30] [PASSED] HDMI-A
[00:28:30] [PASSED] HDMI-B
[00:28:30] [PASSED] TV
[00:28:30] [PASSED] eDP
[00:28:30] [PASSED] Virtual
[00:28:30] [PASSED] DSI
[00:28:30] [PASSED] DPI
[00:28:30] [PASSED] Writeback
[00:28:30] [PASSED] SPI
[00:28:30] [PASSED] USB
[00:28:30] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[00:28:30] =========== [PASSED] drm_connector_dynamic_init ============
[00:28:30] ==== drm_connector_dynamic_register_early (4 subtests) =====
[00:28:30] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[00:28:30] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[00:28:30] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[00:28:30] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[00:28:30] ====== [PASSED] drm_connector_dynamic_register_early =======
[00:28:30] ======= drm_connector_dynamic_register (7 subtests) ========
[00:28:30] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[00:28:30] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[00:28:30] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[00:28:30] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[00:28:30] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[00:28:30] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[00:28:30] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[00:28:30] ========= [PASSED] drm_connector_dynamic_register ==========
[00:28:30] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[00:28:30] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[00:28:30] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[00:28:30] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[00:28:30] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[00:28:30] ========== drm_test_get_tv_mode_from_name_valid ===========
[00:28:30] [PASSED] NTSC
[00:28:30] [PASSED] NTSC-443
[00:28:30] [PASSED] NTSC-J
[00:28:30] [PASSED] PAL
[00:28:30] [PASSED] PAL-M
[00:28:30] [PASSED] PAL-N
[00:28:30] [PASSED] SECAM
[00:28:30] [PASSED] Mono
[00:28:30] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[00:28:30] [PASSED] drm_test_get_tv_mode_from_name_truncated
[00:28:30] ============ [PASSED] drm_get_tv_mode_from_name ============
[00:28:30] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[00:28:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[00:28:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[00:28:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[00:28:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[00:28:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[00:28:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[00:28:30] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[00:28:30] [PASSED] VIC 96
[00:28:30] [PASSED] VIC 97
[00:28:30] [PASSED] VIC 101
[00:28:30] [PASSED] VIC 102
[00:28:30] [PASSED] VIC 106
[00:28:30] [PASSED] VIC 107
[00:28:30] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[00:28:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[00:28:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[00:28:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[00:28:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[00:28:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[00:28:30] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[00:28:30] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[00:28:30] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[00:28:30] [PASSED] Automatic
[00:28:30] [PASSED] Full
[00:28:30] [PASSED] Limited 16:235
[00:28:30] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[00:28:30] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[00:28:30] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[00:28:30] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[00:28:30] === drm_test_drm_hdmi_connector_get_output_format_name ====
[00:28:30] [PASSED] RGB
[00:28:30] [PASSED] YUV 4:2:0
[00:28:30] [PASSED] YUV 4:2:2
[00:28:30] [PASSED] YUV 4:4:4
[00:28:30] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[00:28:30] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[00:28:30] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[00:28:30] ============= drm_damage_helper (21 subtests) ==============
[00:28:30] [PASSED] drm_test_damage_iter_no_damage
[00:28:30] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[00:28:30] [PASSED] drm_test_damage_iter_no_damage_src_moved
[00:28:30] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[00:28:30] [PASSED] drm_test_damage_iter_no_damage_not_visible
[00:28:30] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[00:28:30] [PASSED] drm_test_damage_iter_no_damage_no_fb
[00:28:30] [PASSED] drm_test_damage_iter_simple_damage
[00:28:30] [PASSED] drm_test_damage_iter_single_damage
[00:28:30] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[00:28:30] [PASSED] drm_test_damage_iter_single_damage_outside_src
[00:28:30] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[00:28:30] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[00:28:30] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[00:28:30] [PASSED] drm_test_damage_iter_single_damage_src_moved
[00:28:30] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[00:28:30] [PASSED] drm_test_damage_iter_damage
[00:28:30] [PASSED] drm_test_damage_iter_damage_one_intersect
[00:28:30] [PASSED] drm_test_damage_iter_damage_one_outside
[00:28:30] [PASSED] drm_test_damage_iter_damage_src_moved
[00:28:30] [PASSED] drm_test_damage_iter_damage_not_visible
[00:28:30] ================ [PASSED] drm_damage_helper ================
[00:28:30] ============== drm_dp_mst_helper (3 subtests) ==============
[00:28:30] ============== drm_test_dp_mst_calc_pbn_mode ==============
[00:28:30] [PASSED] Clock 154000 BPP 30 DSC disabled
[00:28:30] [PASSED] Clock 234000 BPP 30 DSC disabled
[00:28:30] [PASSED] Clock 297000 BPP 24 DSC disabled
[00:28:30] [PASSED] Clock 332880 BPP 24 DSC enabled
[00:28:30] [PASSED] Clock 324540 BPP 24 DSC enabled
[00:28:30] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[00:28:30] ============== drm_test_dp_mst_calc_pbn_div ===============
[00:28:30] [PASSED] Link rate 2000000 lane count 4
[00:28:30] [PASSED] Link rate 2000000 lane count 2
[00:28:30] [PASSED] Link rate 2000000 lane count 1
[00:28:30] [PASSED] Link rate 1350000 lane count 4
[00:28:30] [PASSED] Link rate 1350000 lane count 2
[00:28:30] [PASSED] Link rate 1350000 lane count 1
[00:28:30] [PASSED] Link rate 1000000 lane count 4
[00:28:30] [PASSED] Link rate 1000000 lane count 2
[00:28:30] [PASSED] Link rate 1000000 lane count 1
[00:28:30] [PASSED] Link rate 810000 lane count 4
[00:28:30] [PASSED] Link rate 810000 lane count 2
[00:28:30] [PASSED] Link rate 810000 lane count 1
[00:28:30] [PASSED] Link rate 540000 lane count 4
[00:28:30] [PASSED] Link rate 540000 lane count 2
[00:28:30] [PASSED] Link rate 540000 lane count 1
[00:28:30] [PASSED] Link rate 270000 lane count 4
[00:28:30] [PASSED] Link rate 270000 lane count 2
[00:28:30] [PASSED] Link rate 270000 lane count 1
[00:28:30] [PASSED] Link rate 162000 lane count 4
[00:28:30] [PASSED] Link rate 162000 lane count 2
[00:28:30] [PASSED] Link rate 162000 lane count 1
[00:28:30] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[00:28:30] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[00:28:30] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[00:28:30] [PASSED] DP_POWER_UP_PHY with port number
[00:28:30] [PASSED] DP_POWER_DOWN_PHY with port number
[00:28:30] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[00:28:30] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[00:28:30] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[00:28:30] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[00:28:30] [PASSED] DP_QUERY_PAYLOAD with port number
[00:28:30] [PASSED] DP_QUERY_PAYLOAD with VCPI
[00:28:30] [PASSED] DP_REMOTE_DPCD_READ with port number
[00:28:30] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[00:28:30] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[00:28:30] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[00:28:30] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[00:28:30] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[00:28:30] [PASSED] DP_REMOTE_I2C_READ with port number
[00:28:30] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[00:28:30] [PASSED] DP_REMOTE_I2C_READ with transactions array
[00:28:30] [PASSED] DP_REMOTE_I2C_WRITE with port number
[00:28:30] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[00:28:30] [PASSED] DP_REMOTE_I2C_WRITE with data array
[00:28:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[00:28:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[00:28:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[00:28:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[00:28:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[00:28:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[00:28:30] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[00:28:30] ================ [PASSED] drm_dp_mst_helper ================
[00:28:30] ================== drm_exec (7 subtests) ===================
[00:28:30] [PASSED] sanitycheck
[00:28:30] [PASSED] test_lock
[00:28:30] [PASSED] test_lock_unlock
[00:28:30] [PASSED] test_duplicates
[00:28:30] [PASSED] test_prepare
[00:28:30] [PASSED] test_prepare_array
[00:28:30] [PASSED] test_multiple_loops
[00:28:30] ==================== [PASSED] drm_exec =====================
[00:28:30] =========== drm_format_helper_test (17 subtests) ===========
[00:28:30] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[00:28:30] [PASSED] single_pixel_source_buffer
[00:28:30] [PASSED] single_pixel_clip_rectangle
[00:28:30] [PASSED] well_known_colors
[00:28:30] [PASSED] destination_pitch
[00:28:30] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[00:28:30] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[00:28:30] [PASSED] single_pixel_source_buffer
[00:28:30] [PASSED] single_pixel_clip_rectangle
[00:28:30] [PASSED] well_known_colors
[00:28:30] [PASSED] destination_pitch
[00:28:30] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[00:28:30] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[00:28:30] [PASSED] single_pixel_source_buffer
[00:28:30] [PASSED] single_pixel_clip_rectangle
[00:28:30] [PASSED] well_known_colors
[00:28:30] [PASSED] destination_pitch
[00:28:30] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[00:28:30] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[00:28:30] [PASSED] single_pixel_source_buffer
[00:28:30] [PASSED] single_pixel_clip_rectangle
[00:28:30] [PASSED] well_known_colors
[00:28:30] [PASSED] destination_pitch
[00:28:30] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[00:28:30] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[00:28:30] [PASSED] single_pixel_source_buffer
[00:28:30] [PASSED] single_pixel_clip_rectangle
[00:28:30] [PASSED] well_known_colors
[00:28:30] [PASSED] destination_pitch
[00:28:30] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[00:28:30] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[00:28:30] [PASSED] single_pixel_source_buffer
[00:28:30] [PASSED] single_pixel_clip_rectangle
[00:28:30] [PASSED] well_known_colors
[00:28:30] [PASSED] destination_pitch
[00:28:30] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[00:28:30] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[00:28:30] [PASSED] single_pixel_source_buffer
[00:28:30] [PASSED] single_pixel_clip_rectangle
[00:28:30] [PASSED] well_known_colors
[00:28:30] [PASSED] destination_pitch
[00:28:30] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[00:28:30] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[00:28:30] [PASSED] single_pixel_source_buffer
[00:28:30] [PASSED] single_pixel_clip_rectangle
[00:28:30] [PASSED] well_known_colors
[00:28:30] [PASSED] destination_pitch
[00:28:30] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[00:28:30] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[00:28:30] [PASSED] single_pixel_source_buffer
[00:28:30] [PASSED] single_pixel_clip_rectangle
[00:28:30] [PASSED] well_known_colors
[00:28:30] [PASSED] destination_pitch
[00:28:30] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[00:28:30] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[00:28:30] [PASSED] single_pixel_source_buffer
[00:28:30] [PASSED] single_pixel_clip_rectangle
[00:28:30] [PASSED] well_known_colors
[00:28:30] [PASSED] destination_pitch
[00:28:30] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[00:28:30] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[00:28:30] [PASSED] single_pixel_source_buffer
[00:28:30] [PASSED] single_pixel_clip_rectangle
[00:28:30] [PASSED] well_known_colors
[00:28:30] [PASSED] destination_pitch
[00:28:30] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[00:28:30] ============== drm_test_fb_xrgb8888_to_mono ===============
[00:28:30] [PASSED] single_pixel_source_buffer
[00:28:30] [PASSED] single_pixel_clip_rectangle
[00:28:30] [PASSED] well_known_colors
[00:28:30] [PASSED] destination_pitch
[00:28:30] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[00:28:30] ==================== drm_test_fb_swab =====================
[00:28:30] [PASSED] single_pixel_source_buffer
[00:28:30] [PASSED] single_pixel_clip_rectangle
[00:28:30] [PASSED] well_known_colors
[00:28:30] [PASSED] destination_pitch
[00:28:30] ================ [PASSED] drm_test_fb_swab =================
[00:28:30] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[00:28:30] [PASSED] single_pixel_source_buffer
[00:28:30] [PASSED] single_pixel_clip_rectangle
[00:28:30] [PASSED] well_known_colors
[00:28:30] [PASSED] destination_pitch
[00:28:30] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[00:28:30] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[00:28:30] [PASSED] single_pixel_source_buffer
[00:28:30] [PASSED] single_pixel_clip_rectangle
[00:28:30] [PASSED] well_known_colors
[00:28:30] [PASSED] destination_pitch
[00:28:30] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[00:28:30] ================= drm_test_fb_clip_offset =================
[00:28:30] [PASSED] pass through
[00:28:30] [PASSED] horizontal offset
[00:28:30] [PASSED] vertical offset
[00:28:30] [PASSED] horizontal and vertical offset
[00:28:30] [PASSED] horizontal offset (custom pitch)
[00:28:30] [PASSED] vertical offset (custom pitch)
[00:28:30] [PASSED] horizontal and vertical offset (custom pitch)
[00:28:30] ============= [PASSED] drm_test_fb_clip_offset =============
[00:28:30] =================== drm_test_fb_memcpy ====================
[00:28:30] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[00:28:30] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[00:28:30] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[00:28:30] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[00:28:30] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[00:28:30] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[00:28:30] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[00:28:30] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[00:28:30] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[00:28:30] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[00:28:30] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[00:28:30] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[00:28:30] =============== [PASSED] drm_test_fb_memcpy ================
[00:28:30] ============= [PASSED] drm_format_helper_test ==============
[00:28:30] ================= drm_format (18 subtests) =================
[00:28:30] [PASSED] drm_test_format_block_width_invalid
[00:28:30] [PASSED] drm_test_format_block_width_one_plane
[00:28:30] [PASSED] drm_test_format_block_width_two_plane
[00:28:30] [PASSED] drm_test_format_block_width_three_plane
[00:28:30] [PASSED] drm_test_format_block_width_tiled
[00:28:30] [PASSED] drm_test_format_block_height_invalid
[00:28:30] [PASSED] drm_test_format_block_height_one_plane
[00:28:30] [PASSED] drm_test_format_block_height_two_plane
[00:28:30] [PASSED] drm_test_format_block_height_three_plane
[00:28:30] [PASSED] drm_test_format_block_height_tiled
[00:28:30] [PASSED] drm_test_format_min_pitch_invalid
[00:28:30] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[00:28:30] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[00:28:30] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[00:28:30] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[00:28:30] [PASSED] drm_test_format_min_pitch_two_plane
[00:28:30] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[00:28:30] [PASSED] drm_test_format_min_pitch_tiled
[00:28:30] =================== [PASSED] drm_format ====================
[00:28:30] ============== drm_framebuffer (10 subtests) ===============
[00:28:30] ========== drm_test_framebuffer_check_src_coords ==========
[00:28:30] [PASSED] Success: source fits into fb
[00:28:30] [PASSED] Fail: overflowing fb with x-axis coordinate
[00:28:30] [PASSED] Fail: overflowing fb with y-axis coordinate
[00:28:30] [PASSED] Fail: overflowing fb with source width
[00:28:30] [PASSED] Fail: overflowing fb with source height
[00:28:30] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[00:28:30] [PASSED] drm_test_framebuffer_cleanup
[00:28:30] =============== drm_test_framebuffer_create ===============
[00:28:30] [PASSED] ABGR8888 normal sizes
[00:28:30] [PASSED] ABGR8888 max sizes
[00:28:30] [PASSED] ABGR8888 pitch greater than min required
[00:28:30] [PASSED] ABGR8888 pitch less than min required
[00:28:30] [PASSED] ABGR8888 Invalid width
[00:28:30] [PASSED] ABGR8888 Invalid buffer handle
[00:28:30] [PASSED] No pixel format
[00:28:30] [PASSED] ABGR8888 Width 0
[00:28:30] [PASSED] ABGR8888 Height 0
[00:28:30] [PASSED] ABGR8888 Out of bound height * pitch combination
[00:28:30] [PASSED] ABGR8888 Large buffer offset
[00:28:30] [PASSED] ABGR8888 Buffer offset for inexistent plane
[00:28:30] [PASSED] ABGR8888 Invalid flag
[00:28:30] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[00:28:30] [PASSED] ABGR8888 Valid buffer modifier
[00:28:30] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[00:28:30] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[00:28:30] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[00:28:30] [PASSED] NV12 Normal sizes
[00:28:30] [PASSED] NV12 Max sizes
[00:28:30] [PASSED] NV12 Invalid pitch
[00:28:30] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[00:28:30] [PASSED] NV12 different modifier per-plane
[00:28:30] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[00:28:30] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[00:28:30] [PASSED] NV12 Modifier for inexistent plane
[00:28:30] [PASSED] NV12 Handle for inexistent plane
[00:28:30] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[00:28:30] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[00:28:30] [PASSED] YVU420 Normal sizes
[00:28:30] [PASSED] YVU420 Max sizes
[00:28:30] [PASSED] YVU420 Invalid pitch
[00:28:30] [PASSED] YVU420 Different pitches
[00:28:30] [PASSED] YVU420 Different buffer offsets/pitches
[00:28:30] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[00:28:30] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[00:28:30] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[00:28:30] [PASSED] YVU420 Valid modifier
[00:28:30] [PASSED] YVU420 Different modifiers per plane
[00:28:30] [PASSED] YVU420 Modifier for inexistent plane
[00:28:30] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[00:28:30] [PASSED] X0L2 Normal sizes
[00:28:30] [PASSED] X0L2 Max sizes
[00:28:30] [PASSED] X0L2 Invalid pitch
[00:28:30] [PASSED] X0L2 Pitch greater than minimum required
[00:28:30] [PASSED] X0L2 Handle for inexistent plane
[00:28:30] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[00:28:30] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[00:28:30] [PASSED] X0L2 Valid modifier
[00:28:30] [PASSED] X0L2 Modifier for inexistent plane
[00:28:30] =========== [PASSED] drm_test_framebuffer_create ===========
[00:28:30] [PASSED] drm_test_framebuffer_free
[00:28:30] [PASSED] drm_test_framebuffer_init
[00:28:30] [PASSED] drm_test_framebuffer_init_bad_format
[00:28:30] [PASSED] drm_test_framebuffer_init_dev_mismatch
[00:28:30] [PASSED] drm_test_framebuffer_lookup
[00:28:30] [PASSED] drm_test_framebuffer_lookup_inexistent
[00:28:30] [PASSED] drm_test_framebuffer_modifiers_not_supported
[00:28:30] ================= [PASSED] drm_framebuffer =================
[00:28:30] ================ drm_gem_shmem (8 subtests) ================
[00:28:30] [PASSED] drm_gem_shmem_test_obj_create
[00:28:30] [PASSED] drm_gem_shmem_test_obj_create_private
[00:28:30] [PASSED] drm_gem_shmem_test_pin_pages
[00:28:30] [PASSED] drm_gem_shmem_test_vmap
[00:28:30] [PASSED] drm_gem_shmem_test_get_sg_table
[00:28:30] [PASSED] drm_gem_shmem_test_get_pages_sgt
[00:28:30] [PASSED] drm_gem_shmem_test_madvise
[00:28:30] [PASSED] drm_gem_shmem_test_purge
[00:28:30] ================== [PASSED] drm_gem_shmem ==================
[00:28:30] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[00:28:30] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[00:28:30] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[00:28:30] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[00:28:30] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[00:28:30] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[00:28:30] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[00:28:30] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[00:28:30] [PASSED] Automatic
[00:28:30] [PASSED] Full
[00:28:30] [PASSED] Limited 16:235
[00:28:30] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[00:28:30] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[00:28:30] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[00:28:30] [PASSED] drm_test_check_disable_connector
[00:28:30] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[00:28:30] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[00:28:30] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[00:28:30] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[00:28:30] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[00:28:30] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[00:28:30] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[00:28:30] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[00:28:30] [PASSED] drm_test_check_output_bpc_dvi
[00:28:30] [PASSED] drm_test_check_output_bpc_format_vic_1
[00:28:30] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[00:28:30] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[00:28:30] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[00:28:30] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[00:28:30] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[00:28:30] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[00:28:30] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[00:28:30] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[00:28:30] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[00:28:30] [PASSED] drm_test_check_broadcast_rgb_value
[00:28:30] [PASSED] drm_test_check_bpc_8_value
[00:28:30] [PASSED] drm_test_check_bpc_10_value
[00:28:30] [PASSED] drm_test_check_bpc_12_value
[00:28:30] [PASSED] drm_test_check_format_value
[00:28:30] [PASSED] drm_test_check_tmds_char_value
[00:28:30] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[00:28:30] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[00:28:30] [PASSED] drm_test_check_mode_valid
[00:28:30] [PASSED] drm_test_check_mode_valid_reject
[00:28:30] [PASSED] drm_test_check_mode_valid_reject_rate
[00:28:30] [PASSED] drm_test_check_mode_valid_reject_max_clock
[00:28:30] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[00:28:30] ================= drm_managed (2 subtests) =================
[00:28:30] [PASSED] drm_test_managed_release_action
[00:28:30] [PASSED] drm_test_managed_run_action
[00:28:30] =================== [PASSED] drm_managed ===================
[00:28:30] =================== drm_mm (6 subtests) ====================
[00:28:30] [PASSED] drm_test_mm_init
[00:28:30] [PASSED] drm_test_mm_debug
[00:28:30] [PASSED] drm_test_mm_align32
[00:28:30] [PASSED] drm_test_mm_align64
[00:28:30] [PASSED] drm_test_mm_lowest
[00:28:30] [PASSED] drm_test_mm_highest
[00:28:30] ===================== [PASSED] drm_mm ======================
[00:28:30] ============= drm_modes_analog_tv (5 subtests) =============
[00:28:30] [PASSED] drm_test_modes_analog_tv_mono_576i
[00:28:30] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[00:28:30] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[00:28:30] [PASSED] drm_test_modes_analog_tv_pal_576i
[00:28:30] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[00:28:30] =============== [PASSED] drm_modes_analog_tv ===============
[00:28:30] ============== drm_plane_helper (2 subtests) ===============
[00:28:30] =============== drm_test_check_plane_state ================
[00:28:30] [PASSED] clipping_simple
[00:28:30] [PASSED] clipping_rotate_reflect
[00:28:30] [PASSED] positioning_simple
[00:28:30] [PASSED] upscaling
[00:28:30] [PASSED] downscaling
[00:28:30] [PASSED] rounding1
[00:28:30] [PASSED] rounding2
[00:28:30] [PASSED] rounding3
[00:28:30] [PASSED] rounding4
[00:28:30] =========== [PASSED] drm_test_check_plane_state ============
[00:28:30] =========== drm_test_check_invalid_plane_state ============
[00:28:30] [PASSED] positioning_invalid
[00:28:30] [PASSED] upscaling_invalid
[00:28:30] [PASSED] downscaling_invalid
[00:28:30] ======= [PASSED] drm_test_check_invalid_plane_state ========
[00:28:30] ================ [PASSED] drm_plane_helper =================
[00:28:30] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[00:28:30] ====== drm_test_connector_helper_tv_get_modes_check =======
[00:28:30] [PASSED] None
[00:28:30] [PASSED] PAL
[00:28:30] [PASSED] NTSC
[00:28:30] [PASSED] Both, NTSC Default
[00:28:30] [PASSED] Both, PAL Default
[00:28:30] [PASSED] Both, NTSC Default, with PAL on command-line
[00:28:30] [PASSED] Both, PAL Default, with NTSC on command-line
[00:28:30] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[00:28:30] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[00:28:30] ================== drm_rect (9 subtests) ===================
[00:28:30] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[00:28:30] [PASSED] drm_test_rect_clip_scaled_not_clipped
[00:28:30] [PASSED] drm_test_rect_clip_scaled_clipped
[00:28:30] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[00:28:30] ================= drm_test_rect_intersect =================
[00:28:30] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[00:28:30] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[00:28:30] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[00:28:30] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[00:28:30] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[00:28:30] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[00:28:30] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[00:28:30] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[00:28:30] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[00:28:30] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[00:28:30] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[00:28:30] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[00:28:30] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[00:28:30] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[00:28:30] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[00:28:30] ============= [PASSED] drm_test_rect_intersect =============
[00:28:30] ================ drm_test_rect_calc_hscale ================
[00:28:30] [PASSED] normal use
[00:28:30] [PASSED] out of max range
[00:28:30] [PASSED] out of min range
[00:28:30] [PASSED] zero dst
[00:28:30] [PASSED] negative src
[00:28:30] [PASSED] negative dst
[00:28:30] ============ [PASSED] drm_test_rect_calc_hscale ============
[00:28:30] ================ drm_test_rect_calc_vscale ================
[00:28:30] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[00:28:30] [PASSED] out of max range
[00:28:30] [PASSED] out of min range
[00:28:30] [PASSED] zero dst
[00:28:30] [PASSED] negative src
[00:28:30] [PASSED] negative dst
[00:28:30] ============ [PASSED] drm_test_rect_calc_vscale ============
[00:28:30] ================== drm_test_rect_rotate ===================
[00:28:30] [PASSED] reflect-x
[00:28:30] [PASSED] reflect-y
[00:28:30] [PASSED] rotate-0
[00:28:30] [PASSED] rotate-90
[00:28:30] [PASSED] rotate-180
[00:28:30] [PASSED] rotate-270
[00:28:30] ============== [PASSED] drm_test_rect_rotate ===============
[00:28:30] ================ drm_test_rect_rotate_inv =================
[00:28:30] [PASSED] reflect-x
[00:28:30] [PASSED] reflect-y
[00:28:30] [PASSED] rotate-0
[00:28:30] [PASSED] rotate-90
[00:28:30] [PASSED] rotate-180
[00:28:30] [PASSED] rotate-270
[00:28:30] ============ [PASSED] drm_test_rect_rotate_inv =============
[00:28:30] ==================== [PASSED] drm_rect =====================
[00:28:30] ============ drm_sysfb_modeset_test (1 subtest) ============
[00:28:30] ============ drm_test_sysfb_build_fourcc_list =============
[00:28:30] [PASSED] no native formats
[00:28:30] [PASSED] XRGB8888 as native format
[00:28:30] [PASSED] remove duplicates
[00:28:30] [PASSED] convert alpha formats
[00:28:30] [PASSED] random formats
[00:28:30] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[00:28:30] ============= [PASSED] drm_sysfb_modeset_test ==============
[00:28:30] ================== drm_fixp (2 subtests) ===================
[00:28:30] [PASSED] drm_test_int2fixp
[00:28:30] [PASSED] drm_test_sm2fixp
[00:28:30] ==================== [PASSED] drm_fixp =====================
[00:28:30] ============================================================
[00:28:30] Testing complete. Ran 624 tests: passed: 624
[00:28:30] Elapsed time: 27.669s total, 1.733s configuring, 25.519s building, 0.378s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[00:28:30] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[00:28:32] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[00:28:41] Starting KUnit Kernel (1/1)...
[00:28:41] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[00:28:41] ================= ttm_device (5 subtests) ==================
[00:28:41] [PASSED] ttm_device_init_basic
[00:28:41] [PASSED] ttm_device_init_multiple
[00:28:41] [PASSED] ttm_device_fini_basic
[00:28:41] [PASSED] ttm_device_init_no_vma_man
[00:28:41] ================== ttm_device_init_pools ==================
[00:28:41] [PASSED] No DMA allocations, no DMA32 required
[00:28:41] [PASSED] DMA allocations, DMA32 required
[00:28:41] [PASSED] No DMA allocations, DMA32 required
[00:28:41] [PASSED] DMA allocations, no DMA32 required
[00:28:41] ============== [PASSED] ttm_device_init_pools ==============
[00:28:41] =================== [PASSED] ttm_device ====================
[00:28:41] ================== ttm_pool (8 subtests) ===================
[00:28:41] ================== ttm_pool_alloc_basic ===================
[00:28:41] [PASSED] One page
[00:28:41] [PASSED] More than one page
[00:28:41] [PASSED] Above the allocation limit
[00:28:41] [PASSED] One page, with coherent DMA mappings enabled
[00:28:41] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[00:28:41] ============== [PASSED] ttm_pool_alloc_basic ===============
[00:28:41] ============== ttm_pool_alloc_basic_dma_addr ==============
[00:28:41] [PASSED] One page
[00:28:41] [PASSED] More than one page
[00:28:41] [PASSED] Above the allocation limit
[00:28:41] [PASSED] One page, with coherent DMA mappings enabled
[00:28:41] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[00:28:41] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[00:28:41] [PASSED] ttm_pool_alloc_order_caching_match
[00:28:41] [PASSED] ttm_pool_alloc_caching_mismatch
[00:28:41] [PASSED] ttm_pool_alloc_order_mismatch
[00:28:41] [PASSED] ttm_pool_free_dma_alloc
[00:28:41] [PASSED] ttm_pool_free_no_dma_alloc
[00:28:41] [PASSED] ttm_pool_fini_basic
[00:28:41] ==================== [PASSED] ttm_pool =====================
[00:28:41] ================ ttm_resource (8 subtests) =================
[00:28:41] ================= ttm_resource_init_basic =================
[00:28:41] [PASSED] Init resource in TTM_PL_SYSTEM
[00:28:41] [PASSED] Init resource in TTM_PL_VRAM
[00:28:41] [PASSED] Init resource in a private placement
[00:28:41] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[00:28:41] ============= [PASSED] ttm_resource_init_basic =============
[00:28:41] [PASSED] ttm_resource_init_pinned
[00:28:41] [PASSED] ttm_resource_fini_basic
[00:28:41] [PASSED] ttm_resource_manager_init_basic
[00:28:41] [PASSED] ttm_resource_manager_usage_basic
[00:28:41] [PASSED] ttm_resource_manager_set_used_basic
[00:28:41] [PASSED] ttm_sys_man_alloc_basic
[00:28:41] [PASSED] ttm_sys_man_free_basic
[00:28:41] ================== [PASSED] ttm_resource ===================
[00:28:41] =================== ttm_tt (15 subtests) ===================
[00:28:41] ==================== ttm_tt_init_basic ====================
[00:28:41] [PASSED] Page-aligned size
[00:28:41] [PASSED] Extra pages requested
[00:28:41] ================ [PASSED] ttm_tt_init_basic ================
[00:28:41] [PASSED] ttm_tt_init_misaligned
[00:28:41] [PASSED] ttm_tt_fini_basic
[00:28:41] [PASSED] ttm_tt_fini_sg
[00:28:41] [PASSED] ttm_tt_fini_shmem
[00:28:41] [PASSED] ttm_tt_create_basic
[00:28:41] [PASSED] ttm_tt_create_invalid_bo_type
[00:28:41] [PASSED] ttm_tt_create_ttm_exists
[00:28:41] [PASSED] ttm_tt_create_failed
[00:28:41] [PASSED] ttm_tt_destroy_basic
[00:28:41] [PASSED] ttm_tt_populate_null_ttm
[00:28:41] [PASSED] ttm_tt_populate_populated_ttm
[00:28:41] [PASSED] ttm_tt_unpopulate_basic
[00:28:41] [PASSED] ttm_tt_unpopulate_empty_ttm
[00:28:41] [PASSED] ttm_tt_swapin_basic
[00:28:41] ===================== [PASSED] ttm_tt ======================
[00:28:41] =================== ttm_bo (14 subtests) ===================
[00:28:41] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[00:28:41] [PASSED] Cannot be interrupted and sleeps
[00:28:41] [PASSED] Cannot be interrupted, locks straight away
[00:28:41] [PASSED] Can be interrupted, sleeps
[00:28:41] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[00:28:41] [PASSED] ttm_bo_reserve_locked_no_sleep
[00:28:41] [PASSED] ttm_bo_reserve_no_wait_ticket
[00:28:41] [PASSED] ttm_bo_reserve_double_resv
[00:28:41] [PASSED] ttm_bo_reserve_interrupted
[00:28:41] [PASSED] ttm_bo_reserve_deadlock
[00:28:41] [PASSED] ttm_bo_unreserve_basic
[00:28:41] [PASSED] ttm_bo_unreserve_pinned
[00:28:41] [PASSED] ttm_bo_unreserve_bulk
[00:28:41] [PASSED] ttm_bo_fini_basic
[00:28:41] [PASSED] ttm_bo_fini_shared_resv
[00:28:41] [PASSED] ttm_bo_pin_basic
[00:28:41] [PASSED] ttm_bo_pin_unpin_resource
[00:28:41] [PASSED] ttm_bo_multiple_pin_one_unpin
[00:28:41] ===================== [PASSED] ttm_bo ======================
[00:28:41] ============== ttm_bo_validate (21 subtests) ===============
[00:28:41] ============== ttm_bo_init_reserved_sys_man ===============
[00:28:41] [PASSED] Buffer object for userspace
[00:28:41] [PASSED] Kernel buffer object
[00:28:41] [PASSED] Shared buffer object
[00:28:41] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[00:28:41] ============== ttm_bo_init_reserved_mock_man ==============
[00:28:41] [PASSED] Buffer object for userspace
[00:28:41] [PASSED] Kernel buffer object
[00:28:41] [PASSED] Shared buffer object
[00:28:41] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[00:28:41] [PASSED] ttm_bo_init_reserved_resv
[00:28:41] ================== ttm_bo_validate_basic ==================
[00:28:41] [PASSED] Buffer object for userspace
[00:28:41] [PASSED] Kernel buffer object
[00:28:41] [PASSED] Shared buffer object
[00:28:41] ============== [PASSED] ttm_bo_validate_basic ==============
[00:28:41] [PASSED] ttm_bo_validate_invalid_placement
[00:28:41] ============= ttm_bo_validate_same_placement ==============
[00:28:41] [PASSED] System manager
[00:28:41] [PASSED] VRAM manager
[00:28:41] ========= [PASSED] ttm_bo_validate_same_placement ==========
[00:28:41] [PASSED] ttm_bo_validate_failed_alloc
[00:28:41] [PASSED] ttm_bo_validate_pinned
[00:28:41] [PASSED] ttm_bo_validate_busy_placement
[00:28:41] ================ ttm_bo_validate_multihop =================
[00:28:41] [PASSED] Buffer object for userspace
[00:28:41] [PASSED] Kernel buffer object
[00:28:41] [PASSED] Shared buffer object
[00:28:41] ============ [PASSED] ttm_bo_validate_multihop =============
[00:28:41] ========== ttm_bo_validate_no_placement_signaled ==========
[00:28:41] [PASSED] Buffer object in system domain, no page vector
[00:28:41] [PASSED] Buffer object in system domain with an existing page vector
[00:28:41] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[00:28:41] ======== ttm_bo_validate_no_placement_not_signaled ========
[00:28:41] [PASSED] Buffer object for userspace
[00:28:41] [PASSED] Kernel buffer object
[00:28:41] [PASSED] Shared buffer object
[00:28:41] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[00:28:41] [PASSED] ttm_bo_validate_move_fence_signaled
[00:28:42] ========= ttm_bo_validate_move_fence_not_signaled =========
[00:28:42] [PASSED] Waits for GPU
[00:28:42] [PASSED] Tries to lock straight away
[00:28:42] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[00:28:42] [PASSED] ttm_bo_validate_happy_evict
[00:28:42] [PASSED] ttm_bo_validate_all_pinned_evict
[00:28:42] [PASSED] ttm_bo_validate_allowed_only_evict
[00:28:42] [PASSED] ttm_bo_validate_deleted_evict
[00:28:42] [PASSED] ttm_bo_validate_busy_domain_evict
[00:28:42] [PASSED] ttm_bo_validate_evict_gutting
[00:28:42] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[00:28:42] ================= [PASSED] ttm_bo_validate =================
[00:28:42] ============================================================
[00:28:42] Testing complete. Ran 101 tests: passed: 101
[00:28:42] Elapsed time: 11.559s total, 1.705s configuring, 9.588s building, 0.225s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 21+ messages in thread
* ✓ Xe.CI.BAT: success for Enable GSC loading and PXP for PTL (rev2)
2026-01-08 1:13 [PATCH 0/3] Enable GSC loading and PXP for PTL Daniele Ceraolo Spurio
` (7 preceding siblings ...)
2026-01-10 0:28 ` ✓ CI.KUnit: success for Enable GSC loading and PXP for PTL (rev2) Patchwork
@ 2026-01-10 1:01 ` Patchwork
2026-01-10 6:49 ` ✗ Xe.CI.Full: failure " Patchwork
` (3 subsequent siblings)
12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-01-10 1:01 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1412 bytes --]
== Series Details ==
Series: Enable GSC loading and PXP for PTL (rev2)
URL : https://patchwork.freedesktop.org/series/159774/
State : success
== Summary ==
CI Bug Log - changes from xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80_BAT -> xe-pw-159774v2_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-159774v2_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@xe_waitfence@abstime:
- bat-dg2-oem2: [TIMEOUT][1] ([Intel XE#6506]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506
Build changes
-------------
* Linux: xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80 -> xe-pw-159774v2
IGT_8694: 8694
xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80: 070b98e5f13d7b8c95b1f348629cdef8b7aafa80
xe-pw-159774v2: 159774v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/index.html
[-- Attachment #2: Type: text/html, Size: 1977 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread
* ✗ Xe.CI.Full: failure for Enable GSC loading and PXP for PTL (rev2)
2026-01-08 1:13 [PATCH 0/3] Enable GSC loading and PXP for PTL Daniele Ceraolo Spurio
` (8 preceding siblings ...)
2026-01-10 1:01 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-01-10 6:49 ` Patchwork
2026-01-10 22:10 ` ✓ CI.KUnit: success for Enable GSC loading and PXP for PTL (rev3) Patchwork
` (2 subsequent siblings)
12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-01-10 6:49 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 30412 bytes --]
== Series Details ==
Series: Enable GSC loading and PXP for PTL (rev2)
URL : https://patchwork.freedesktop.org/series/159774/
State : failure
== Summary ==
CI Bug Log - changes from xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80_FULL -> xe-pw-159774v2_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-159774v2_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-159774v2_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-159774v2_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_legacy@basic-flip-before-cursor-atomic:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80/shard-bmg-2/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-2/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
Known issues
------------
Here are the changes found in xe-pw-159774v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327]) +9 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2328]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +10 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#607])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-9/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2314] / [Intel XE#2894])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#367]) +3 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-9/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2652] / [Intel XE#787]) +17 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#3432])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2887]) +19 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-10/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2252]) +15 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-3/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2341])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-2/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-suspend-resume:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#6743])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-9/igt@kms_content_protection@dp-mst-suspend-resume.html
* igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][15] ([Intel XE#3304]) +3 other tests fail
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-10/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@suspend-resume@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][16] ([Intel XE#1178] / [Intel XE#3304]) +1 other test fail
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-3/igt@kms_content_protection@suspend-resume@pipe-a-dp-2.html
* igt@kms_content_protection@uevent:
- shard-bmg: NOTRUN -> [FAIL][17] ([Intel XE#6707]) +1 other test fail
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-2/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2320]) +6 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-3/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2321])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2286]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#4354])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-10/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#4331])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2244])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-3/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [PASS][24] -> [FAIL][25] ([Intel XE#301])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2293]) +5 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2311]) +35 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#4141]) +23 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2313]) +40 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#6901])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-9/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#6911])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-10/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2501])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2486])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-1/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#5021])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#870])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-9/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2392])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-3/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-10/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#1406] / [Intel XE#1489]) +9 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-3/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#1406] / [Intel XE#2387]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-9/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +14 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-10/igt@kms_psr@fbc-pr-primary-page-flip.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#1406] / [Intel XE#2414])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2330]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#3414] / [Intel XE#3904])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-3/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_setmode@basic:
- shard-bmg: NOTRUN -> [FAIL][45] ([Intel XE#6361]) +2 other tests fail
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-3/igt@kms_setmode@basic.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#1435]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#6503]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-10/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_vrr@cmrr:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2168])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-3/igt@kms_vrr@cmrr.html
* igt@xe_eudebug@vm-bind-clear:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#4837]) +9 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-3/igt@xe_eudebug@vm-bind-clear.html
* igt@xe_eudebug_online@set-breakpoint-faultable:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#4837] / [Intel XE#6665]) +6 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-1/igt@xe_eudebug_online@set-breakpoint-faultable.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#5793])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-1/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: NOTRUN -> [INCOMPLETE][52] ([Intel XE#6321])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-3/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2322]) +10 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-1/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_multi_queue@two-queues-basic-smem:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#6874]) +37 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-10/igt@xe_exec_multi_queue@two-queues-basic-smem.html
* igt@xe_exec_system_allocator@many-64k-mmap-huge:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#5007]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-3/igt@xe_exec_system_allocator@many-64k-mmap-huge.html
* igt@xe_exec_system_allocator@many-stride-new-prefetch:
- shard-bmg: NOTRUN -> [INCOMPLETE][56] ([Intel XE#6480])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-10/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#4943]) +21 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge-nomemset.html
* igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#6281])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-3/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2229])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2833])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-3/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73]) -> ([PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [SKIP][86], [PASS][87]) ([Intel XE#2457])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80/shard-bmg-10/igt@xe_module_load@load.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80/shard-bmg-2/igt@xe_module_load@load.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80/shard-bmg-2/igt@xe_module_load@load.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80/shard-bmg-9/igt@xe_module_load@load.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80/shard-bmg-1/igt@xe_module_load@load.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80/shard-bmg-2/igt@xe_module_load@load.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80/shard-bmg-1/igt@xe_module_load@load.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80/shard-bmg-9/igt@xe_module_load@load.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80/shard-bmg-9/igt@xe_module_load@load.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80/shard-bmg-3/igt@xe_module_load@load.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80/shard-bmg-1/igt@xe_module_load@load.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80/shard-bmg-3/igt@xe_module_load@load.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80/shard-bmg-10/igt@xe_module_load@load.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-9/igt@xe_module_load@load.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-10/igt@xe_module_load@load.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-10/igt@xe_module_load@load.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-10/igt@xe_module_load@load.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-9/igt@xe_module_load@load.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-9/igt@xe_module_load@load.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-2/igt@xe_module_load@load.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-2/igt@xe_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-3/igt@xe_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-1/igt@xe_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-1/igt@xe_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-3/igt@xe_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-10/igt@xe_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-3/igt@xe_module_load@load.html
* igt@xe_multigpu_svm@mgpu-coherency-fail-prefetch:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#6964]) +3 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-3/igt@xe_multigpu_svm@mgpu-coherency-fail-prefetch.html
* igt@xe_peer2peer@read:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2427] / [Intel XE#6953])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-3/igt@xe_peer2peer@read.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2284]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-3/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#4733]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-9/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_query@multigpu-query-hwconfig:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#944]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-1/igt@xe_query@multigpu-query-hwconfig.html
#### Possible fixes ####
* igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3:
- shard-bmg: [ABORT][93] ([Intel XE#5545]) -> [PASS][94] +1 other test pass
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
- shard-lnl: [FAIL][95] ([Intel XE#301]) -> [PASS][96]
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [FAIL][97] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][98]
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [FAIL][99] ([Intel XE#6361]) -> [PASS][100]
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80/shard-lnl-1/igt@kms_setmode@basic@pipe-b-edp-1.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html
#### Warnings ####
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][101] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][102] ([Intel XE#301])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][103] ([Intel XE#3544]) -> [SKIP][104] ([Intel XE#3374] / [Intel XE#3544])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
[Intel XE#6480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6480
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6743]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6743
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80 -> xe-pw-159774v2
IGT_8694: 8694
xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80: 070b98e5f13d7b8c95b1f348629cdef8b7aafa80
xe-pw-159774v2: 159774v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v2/index.html
[-- Attachment #2: Type: text/html, Size: 33841 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread
* ✓ CI.KUnit: success for Enable GSC loading and PXP for PTL (rev3)
2026-01-08 1:13 [PATCH 0/3] Enable GSC loading and PXP for PTL Daniele Ceraolo Spurio
` (9 preceding siblings ...)
2026-01-10 6:49 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2026-01-10 22:10 ` Patchwork
2026-01-10 22:53 ` ✓ Xe.CI.BAT: " Patchwork
2026-01-10 23:50 ` ✗ Xe.CI.Full: failure " Patchwork
12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-01-10 22:10 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-xe
== Series Details ==
Series: Enable GSC loading and PXP for PTL (rev3)
URL : https://patchwork.freedesktop.org/series/159774/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[22:08:57] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:09:01] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[22:09:33] Starting KUnit Kernel (1/1)...
[22:09:33] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:09:33] ================== guc_buf (11 subtests) ===================
[22:09:33] [PASSED] test_smallest
[22:09:33] [PASSED] test_largest
[22:09:33] [PASSED] test_granular
[22:09:33] [PASSED] test_unique
[22:09:33] [PASSED] test_overlap
[22:09:33] [PASSED] test_reusable
[22:09:33] [PASSED] test_too_big
[22:09:33] [PASSED] test_flush
[22:09:33] [PASSED] test_lookup
[22:09:33] [PASSED] test_data
[22:09:33] [PASSED] test_class
[22:09:33] ===================== [PASSED] guc_buf =====================
[22:09:33] =================== guc_dbm (7 subtests) ===================
[22:09:33] [PASSED] test_empty
[22:09:33] [PASSED] test_default
[22:09:33] ======================== test_size ========================
[22:09:33] [PASSED] 4
[22:09:33] [PASSED] 8
[22:09:33] [PASSED] 32
[22:09:33] [PASSED] 256
[22:09:33] ==================== [PASSED] test_size ====================
[22:09:33] ======================= test_reuse ========================
[22:09:33] [PASSED] 4
[22:09:33] [PASSED] 8
[22:09:33] [PASSED] 32
[22:09:33] [PASSED] 256
[22:09:33] =================== [PASSED] test_reuse ====================
[22:09:33] =================== test_range_overlap ====================
[22:09:33] [PASSED] 4
[22:09:33] [PASSED] 8
[22:09:33] [PASSED] 32
[22:09:33] [PASSED] 256
[22:09:33] =============== [PASSED] test_range_overlap ================
[22:09:33] =================== test_range_compact ====================
[22:09:33] [PASSED] 4
[22:09:33] [PASSED] 8
[22:09:33] [PASSED] 32
[22:09:33] [PASSED] 256
[22:09:33] =============== [PASSED] test_range_compact ================
[22:09:33] ==================== test_range_spare =====================
[22:09:33] [PASSED] 4
[22:09:33] [PASSED] 8
[22:09:33] [PASSED] 32
[22:09:33] [PASSED] 256
[22:09:33] ================ [PASSED] test_range_spare =================
[22:09:33] ===================== [PASSED] guc_dbm =====================
[22:09:33] =================== guc_idm (6 subtests) ===================
[22:09:33] [PASSED] bad_init
[22:09:33] [PASSED] no_init
[22:09:33] [PASSED] init_fini
[22:09:33] [PASSED] check_used
[22:09:33] [PASSED] check_quota
[22:09:33] [PASSED] check_all
[22:09:33] ===================== [PASSED] guc_idm =====================
[22:09:33] ================== no_relay (3 subtests) ===================
[22:09:33] [PASSED] xe_drops_guc2pf_if_not_ready
[22:09:33] [PASSED] xe_drops_guc2vf_if_not_ready
[22:09:33] [PASSED] xe_rejects_send_if_not_ready
[22:09:33] ==================== [PASSED] no_relay =====================
[22:09:33] ================== pf_relay (14 subtests) ==================
[22:09:33] [PASSED] pf_rejects_guc2pf_too_short
[22:09:33] [PASSED] pf_rejects_guc2pf_too_long
[22:09:33] [PASSED] pf_rejects_guc2pf_no_payload
[22:09:33] [PASSED] pf_fails_no_payload
[22:09:33] [PASSED] pf_fails_bad_origin
[22:09:33] [PASSED] pf_fails_bad_type
[22:09:33] [PASSED] pf_txn_reports_error
[22:09:33] [PASSED] pf_txn_sends_pf2guc
[22:09:33] [PASSED] pf_sends_pf2guc
[22:09:33] [SKIPPED] pf_loopback_nop
[22:09:33] [SKIPPED] pf_loopback_echo
[22:09:33] [SKIPPED] pf_loopback_fail
[22:09:33] [SKIPPED] pf_loopback_busy
[22:09:33] [SKIPPED] pf_loopback_retry
[22:09:33] ==================== [PASSED] pf_relay =====================
[22:09:33] ================== vf_relay (3 subtests) ===================
[22:09:33] [PASSED] vf_rejects_guc2vf_too_short
[22:09:33] [PASSED] vf_rejects_guc2vf_too_long
[22:09:33] [PASSED] vf_rejects_guc2vf_no_payload
[22:09:33] ==================== [PASSED] vf_relay =====================
[22:09:33] ================ pf_gt_config (6 subtests) =================
[22:09:33] [PASSED] fair_contexts_1vf
[22:09:33] [PASSED] fair_doorbells_1vf
[22:09:33] [PASSED] fair_ggtt_1vf
[22:09:33] ====================== fair_contexts ======================
[22:09:33] [PASSED] 1 VF
[22:09:33] [PASSED] 2 VFs
[22:09:33] [PASSED] 3 VFs
[22:09:33] [PASSED] 4 VFs
[22:09:33] [PASSED] 5 VFs
[22:09:33] [PASSED] 6 VFs
[22:09:33] [PASSED] 7 VFs
[22:09:33] [PASSED] 8 VFs
[22:09:33] [PASSED] 9 VFs
[22:09:33] [PASSED] 10 VFs
[22:09:33] [PASSED] 11 VFs
[22:09:33] [PASSED] 12 VFs
[22:09:33] [PASSED] 13 VFs
[22:09:33] [PASSED] 14 VFs
[22:09:33] [PASSED] 15 VFs
[22:09:33] [PASSED] 16 VFs
[22:09:33] [PASSED] 17 VFs
[22:09:33] [PASSED] 18 VFs
[22:09:33] [PASSED] 19 VFs
[22:09:33] [PASSED] 20 VFs
[22:09:33] [PASSED] 21 VFs
[22:09:33] [PASSED] 22 VFs
[22:09:33] [PASSED] 23 VFs
[22:09:33] [PASSED] 24 VFs
[22:09:33] [PASSED] 25 VFs
[22:09:33] [PASSED] 26 VFs
[22:09:33] [PASSED] 27 VFs
[22:09:33] [PASSED] 28 VFs
[22:09:33] [PASSED] 29 VFs
[22:09:33] [PASSED] 30 VFs
[22:09:33] [PASSED] 31 VFs
[22:09:33] [PASSED] 32 VFs
[22:09:33] [PASSED] 33 VFs
[22:09:33] [PASSED] 34 VFs
[22:09:33] [PASSED] 35 VFs
[22:09:33] [PASSED] 36 VFs
[22:09:33] [PASSED] 37 VFs
[22:09:33] [PASSED] 38 VFs
[22:09:33] [PASSED] 39 VFs
[22:09:33] [PASSED] 40 VFs
[22:09:33] [PASSED] 41 VFs
[22:09:33] [PASSED] 42 VFs
[22:09:33] [PASSED] 43 VFs
[22:09:33] [PASSED] 44 VFs
[22:09:33] [PASSED] 45 VFs
[22:09:33] [PASSED] 46 VFs
[22:09:33] [PASSED] 47 VFs
[22:09:33] [PASSED] 48 VFs
[22:09:33] [PASSED] 49 VFs
[22:09:33] [PASSED] 50 VFs
[22:09:33] [PASSED] 51 VFs
[22:09:33] [PASSED] 52 VFs
[22:09:33] [PASSED] 53 VFs
[22:09:33] [PASSED] 54 VFs
[22:09:33] [PASSED] 55 VFs
[22:09:33] [PASSED] 56 VFs
[22:09:33] [PASSED] 57 VFs
[22:09:33] [PASSED] 58 VFs
[22:09:33] [PASSED] 59 VFs
[22:09:33] [PASSED] 60 VFs
[22:09:33] [PASSED] 61 VFs
[22:09:33] [PASSED] 62 VFs
[22:09:33] [PASSED] 63 VFs
[22:09:33] ================== [PASSED] fair_contexts ==================
[22:09:33] ===================== fair_doorbells ======================
[22:09:33] [PASSED] 1 VF
[22:09:33] [PASSED] 2 VFs
[22:09:33] [PASSED] 3 VFs
[22:09:33] [PASSED] 4 VFs
[22:09:33] [PASSED] 5 VFs
[22:09:33] [PASSED] 6 VFs
[22:09:33] [PASSED] 7 VFs
[22:09:33] [PASSED] 8 VFs
[22:09:33] [PASSED] 9 VFs
[22:09:33] [PASSED] 10 VFs
[22:09:33] [PASSED] 11 VFs
[22:09:33] [PASSED] 12 VFs
[22:09:33] [PASSED] 13 VFs
[22:09:33] [PASSED] 14 VFs
[22:09:33] [PASSED] 15 VFs
[22:09:33] [PASSED] 16 VFs
[22:09:33] [PASSED] 17 VFs
[22:09:33] [PASSED] 18 VFs
[22:09:33] [PASSED] 19 VFs
[22:09:33] [PASSED] 20 VFs
[22:09:33] [PASSED] 21 VFs
[22:09:33] [PASSED] 22 VFs
[22:09:33] [PASSED] 23 VFs
[22:09:33] [PASSED] 24 VFs
[22:09:33] [PASSED] 25 VFs
[22:09:33] [PASSED] 26 VFs
[22:09:33] [PASSED] 27 VFs
[22:09:33] [PASSED] 28 VFs
[22:09:33] [PASSED] 29 VFs
[22:09:33] [PASSED] 30 VFs
[22:09:33] [PASSED] 31 VFs
[22:09:33] [PASSED] 32 VFs
[22:09:33] [PASSED] 33 VFs
[22:09:33] [PASSED] 34 VFs
[22:09:33] [PASSED] 35 VFs
[22:09:33] [PASSED] 36 VFs
[22:09:33] [PASSED] 37 VFs
[22:09:33] [PASSED] 38 VFs
[22:09:33] [PASSED] 39 VFs
[22:09:33] [PASSED] 40 VFs
[22:09:33] [PASSED] 41 VFs
[22:09:33] [PASSED] 42 VFs
[22:09:33] [PASSED] 43 VFs
[22:09:33] [PASSED] 44 VFs
[22:09:33] [PASSED] 45 VFs
[22:09:33] [PASSED] 46 VFs
[22:09:33] [PASSED] 47 VFs
[22:09:33] [PASSED] 48 VFs
[22:09:33] [PASSED] 49 VFs
[22:09:33] [PASSED] 50 VFs
[22:09:33] [PASSED] 51 VFs
[22:09:33] [PASSED] 52 VFs
[22:09:33] [PASSED] 53 VFs
[22:09:33] [PASSED] 54 VFs
[22:09:33] [PASSED] 55 VFs
[22:09:33] [PASSED] 56 VFs
[22:09:33] [PASSED] 57 VFs
[22:09:33] [PASSED] 58 VFs
[22:09:33] [PASSED] 59 VFs
[22:09:33] [PASSED] 60 VFs
[22:09:33] [PASSED] 61 VFs
[22:09:33] [PASSED] 62 VFs
[22:09:33] [PASSED] 63 VFs
[22:09:33] ================= [PASSED] fair_doorbells ==================
[22:09:33] ======================== fair_ggtt ========================
[22:09:33] [PASSED] 1 VF
[22:09:33] [PASSED] 2 VFs
[22:09:33] [PASSED] 3 VFs
[22:09:33] [PASSED] 4 VFs
[22:09:33] [PASSED] 5 VFs
[22:09:33] [PASSED] 6 VFs
[22:09:33] [PASSED] 7 VFs
[22:09:33] [PASSED] 8 VFs
[22:09:33] [PASSED] 9 VFs
[22:09:33] [PASSED] 10 VFs
[22:09:33] [PASSED] 11 VFs
[22:09:33] [PASSED] 12 VFs
[22:09:33] [PASSED] 13 VFs
[22:09:33] [PASSED] 14 VFs
[22:09:33] [PASSED] 15 VFs
[22:09:33] [PASSED] 16 VFs
[22:09:33] [PASSED] 17 VFs
[22:09:33] [PASSED] 18 VFs
[22:09:33] [PASSED] 19 VFs
[22:09:33] [PASSED] 20 VFs
[22:09:33] [PASSED] 21 VFs
[22:09:33] [PASSED] 22 VFs
[22:09:33] [PASSED] 23 VFs
[22:09:33] [PASSED] 24 VFs
[22:09:33] [PASSED] 25 VFs
[22:09:33] [PASSED] 26 VFs
[22:09:33] [PASSED] 27 VFs
[22:09:33] [PASSED] 28 VFs
[22:09:33] [PASSED] 29 VFs
[22:09:33] [PASSED] 30 VFs
[22:09:33] [PASSED] 31 VFs
[22:09:33] [PASSED] 32 VFs
[22:09:33] [PASSED] 33 VFs
[22:09:33] [PASSED] 34 VFs
[22:09:33] [PASSED] 35 VFs
[22:09:33] [PASSED] 36 VFs
[22:09:33] [PASSED] 37 VFs
[22:09:33] [PASSED] 38 VFs
[22:09:33] [PASSED] 39 VFs
[22:09:33] [PASSED] 40 VFs
[22:09:33] [PASSED] 41 VFs
[22:09:33] [PASSED] 42 VFs
[22:09:33] [PASSED] 43 VFs
[22:09:33] [PASSED] 44 VFs
[22:09:33] [PASSED] 45 VFs
[22:09:33] [PASSED] 46 VFs
[22:09:33] [PASSED] 47 VFs
[22:09:33] [PASSED] 48 VFs
[22:09:33] [PASSED] 49 VFs
[22:09:33] [PASSED] 50 VFs
[22:09:33] [PASSED] 51 VFs
[22:09:33] [PASSED] 52 VFs
[22:09:33] [PASSED] 53 VFs
[22:09:33] [PASSED] 54 VFs
[22:09:33] [PASSED] 55 VFs
[22:09:33] [PASSED] 56 VFs
[22:09:33] [PASSED] 57 VFs
[22:09:33] [PASSED] 58 VFs
[22:09:33] [PASSED] 59 VFs
[22:09:33] [PASSED] 60 VFs
[22:09:33] [PASSED] 61 VFs
[22:09:33] [PASSED] 62 VFs
[22:09:33] [PASSED] 63 VFs
[22:09:33] ==================== [PASSED] fair_ggtt ====================
[22:09:33] ================== [PASSED] pf_gt_config ===================
[22:09:33] ===================== lmtt (1 subtest) =====================
[22:09:33] ======================== test_ops =========================
[22:09:33] [PASSED] 2-level
[22:09:33] [PASSED] multi-level
[22:09:33] ==================== [PASSED] test_ops =====================
[22:09:33] ====================== [PASSED] lmtt =======================
[22:09:33] ================= pf_service (11 subtests) =================
[22:09:33] [PASSED] pf_negotiate_any
[22:09:33] [PASSED] pf_negotiate_base_match
[22:09:33] [PASSED] pf_negotiate_base_newer
[22:09:33] [PASSED] pf_negotiate_base_next
[22:09:33] [SKIPPED] pf_negotiate_base_older
[22:09:33] [PASSED] pf_negotiate_base_prev
[22:09:33] [PASSED] pf_negotiate_latest_match
[22:09:33] [PASSED] pf_negotiate_latest_newer
[22:09:33] [PASSED] pf_negotiate_latest_next
[22:09:33] [SKIPPED] pf_negotiate_latest_older
[22:09:33] [SKIPPED] pf_negotiate_latest_prev
[22:09:33] =================== [PASSED] pf_service ====================
[22:09:33] ================= xe_guc_g2g (2 subtests) ==================
[22:09:33] ============== xe_live_guc_g2g_kunit_default ==============
[22:09:33] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[22:09:33] ============== xe_live_guc_g2g_kunit_allmem ===============
[22:09:33] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[22:09:33] =================== [SKIPPED] xe_guc_g2g ===================
[22:09:33] =================== xe_mocs (2 subtests) ===================
[22:09:33] ================ xe_live_mocs_kernel_kunit ================
[22:09:33] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[22:09:33] ================ xe_live_mocs_reset_kunit =================
[22:09:33] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[22:09:33] ==================== [SKIPPED] xe_mocs =====================
[22:09:33] ================= xe_migrate (2 subtests) ==================
[22:09:33] ================= xe_migrate_sanity_kunit =================
[22:09:33] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[22:09:33] ================== xe_validate_ccs_kunit ==================
[22:09:33] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[22:09:33] =================== [SKIPPED] xe_migrate ===================
[22:09:33] ================== xe_dma_buf (1 subtest) ==================
[22:09:33] ==================== xe_dma_buf_kunit =====================
[22:09:33] ================ [SKIPPED] xe_dma_buf_kunit ================
[22:09:33] =================== [SKIPPED] xe_dma_buf ===================
[22:09:33] ================= xe_bo_shrink (1 subtest) =================
[22:09:33] =================== xe_bo_shrink_kunit ====================
[22:09:33] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[22:09:33] ================== [SKIPPED] xe_bo_shrink ==================
[22:09:33] ==================== xe_bo (2 subtests) ====================
[22:09:33] ================== xe_ccs_migrate_kunit ===================
[22:09:33] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[22:09:33] ==================== xe_bo_evict_kunit ====================
[22:09:33] =============== [SKIPPED] xe_bo_evict_kunit ================
[22:09:33] ===================== [SKIPPED] xe_bo ======================
[22:09:33] ==================== args (13 subtests) ====================
[22:09:33] [PASSED] count_args_test
[22:09:33] [PASSED] call_args_example
[22:09:33] [PASSED] call_args_test
[22:09:33] [PASSED] drop_first_arg_example
[22:09:33] [PASSED] drop_first_arg_test
[22:09:33] [PASSED] first_arg_example
[22:09:33] [PASSED] first_arg_test
[22:09:33] [PASSED] last_arg_example
[22:09:33] [PASSED] last_arg_test
[22:09:33] [PASSED] pick_arg_example
[22:09:33] [PASSED] if_args_example
[22:09:33] [PASSED] if_args_test
[22:09:33] [PASSED] sep_comma_example
[22:09:33] ====================== [PASSED] args =======================
[22:09:33] =================== xe_pci (3 subtests) ====================
[22:09:33] ==================== check_graphics_ip ====================
[22:09:33] [PASSED] 12.00 Xe_LP
[22:09:33] [PASSED] 12.10 Xe_LP+
[22:09:33] [PASSED] 12.55 Xe_HPG
[22:09:33] [PASSED] 12.60 Xe_HPC
[22:09:33] [PASSED] 12.70 Xe_LPG
[22:09:33] [PASSED] 12.71 Xe_LPG
[22:09:33] [PASSED] 12.74 Xe_LPG+
[22:09:33] [PASSED] 20.01 Xe2_HPG
[22:09:33] [PASSED] 20.02 Xe2_HPG
[22:09:33] [PASSED] 20.04 Xe2_LPG
[22:09:33] [PASSED] 30.00 Xe3_LPG
[22:09:33] [PASSED] 30.01 Xe3_LPG
[22:09:33] [PASSED] 30.03 Xe3_LPG
[22:09:33] [PASSED] 30.04 Xe3_LPG
[22:09:33] [PASSED] 30.05 Xe3_LPG
[22:09:33] [PASSED] 35.11 Xe3p_XPC
[22:09:33] ================ [PASSED] check_graphics_ip ================
[22:09:33] ===================== check_media_ip ======================
[22:09:33] [PASSED] 12.00 Xe_M
[22:09:33] [PASSED] 12.55 Xe_HPM
[22:09:33] [PASSED] 13.00 Xe_LPM+
[22:09:33] [PASSED] 13.01 Xe2_HPM
[22:09:33] [PASSED] 20.00 Xe2_LPM
[22:09:33] [PASSED] 30.00 Xe3_LPM
[22:09:33] [PASSED] 30.02 Xe3_LPM
[22:09:33] [PASSED] 35.00 Xe3p_LPM
[22:09:33] [PASSED] 35.03 Xe3p_HPM
[22:09:33] ================= [PASSED] check_media_ip ==================
[22:09:33] =================== check_platform_desc ===================
[22:09:33] [PASSED] 0x9A60 (TIGERLAKE)
[22:09:33] [PASSED] 0x9A68 (TIGERLAKE)
[22:09:33] [PASSED] 0x9A70 (TIGERLAKE)
[22:09:33] [PASSED] 0x9A40 (TIGERLAKE)
[22:09:33] [PASSED] 0x9A49 (TIGERLAKE)
[22:09:33] [PASSED] 0x9A59 (TIGERLAKE)
[22:09:33] [PASSED] 0x9A78 (TIGERLAKE)
[22:09:33] [PASSED] 0x9AC0 (TIGERLAKE)
[22:09:33] [PASSED] 0x9AC9 (TIGERLAKE)
[22:09:33] [PASSED] 0x9AD9 (TIGERLAKE)
[22:09:33] [PASSED] 0x9AF8 (TIGERLAKE)
[22:09:33] [PASSED] 0x4C80 (ROCKETLAKE)
[22:09:33] [PASSED] 0x4C8A (ROCKETLAKE)
[22:09:33] [PASSED] 0x4C8B (ROCKETLAKE)
[22:09:33] [PASSED] 0x4C8C (ROCKETLAKE)
[22:09:33] [PASSED] 0x4C90 (ROCKETLAKE)
[22:09:33] [PASSED] 0x4C9A (ROCKETLAKE)
[22:09:33] [PASSED] 0x4680 (ALDERLAKE_S)
[22:09:33] [PASSED] 0x4682 (ALDERLAKE_S)
[22:09:33] [PASSED] 0x4688 (ALDERLAKE_S)
[22:09:33] [PASSED] 0x468A (ALDERLAKE_S)
[22:09:33] [PASSED] 0x468B (ALDERLAKE_S)
[22:09:33] [PASSED] 0x4690 (ALDERLAKE_S)
[22:09:33] [PASSED] 0x4692 (ALDERLAKE_S)
[22:09:33] [PASSED] 0x4693 (ALDERLAKE_S)
[22:09:33] [PASSED] 0x46A0 (ALDERLAKE_P)
[22:09:33] [PASSED] 0x46A1 (ALDERLAKE_P)
[22:09:33] [PASSED] 0x46A2 (ALDERLAKE_P)
[22:09:33] [PASSED] 0x46A3 (ALDERLAKE_P)
[22:09:33] [PASSED] 0x46A6 (ALDERLAKE_P)
[22:09:33] [PASSED] 0x46A8 (ALDERLAKE_P)
[22:09:33] [PASSED] 0x46AA (ALDERLAKE_P)
[22:09:33] [PASSED] 0x462A (ALDERLAKE_P)
[22:09:33] [PASSED] 0x4626 (ALDERLAKE_P)
[22:09:33] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[22:09:33] [PASSED] 0x46B0 (ALDERLAKE_P)
[22:09:33] [PASSED] 0x46B1 (ALDERLAKE_P)
[22:09:33] [PASSED] 0x46B2 (ALDERLAKE_P)
[22:09:33] [PASSED] 0x46B3 (ALDERLAKE_P)
[22:09:33] [PASSED] 0x46C0 (ALDERLAKE_P)
[22:09:33] [PASSED] 0x46C1 (ALDERLAKE_P)
[22:09:33] [PASSED] 0x46C2 (ALDERLAKE_P)
[22:09:33] [PASSED] 0x46C3 (ALDERLAKE_P)
[22:09:33] [PASSED] 0x46D0 (ALDERLAKE_N)
[22:09:33] [PASSED] 0x46D1 (ALDERLAKE_N)
[22:09:33] [PASSED] 0x46D2 (ALDERLAKE_N)
[22:09:33] [PASSED] 0x46D3 (ALDERLAKE_N)
[22:09:33] [PASSED] 0x46D4 (ALDERLAKE_N)
[22:09:33] [PASSED] 0xA721 (ALDERLAKE_P)
[22:09:33] [PASSED] 0xA7A1 (ALDERLAKE_P)
[22:09:33] [PASSED] 0xA7A9 (ALDERLAKE_P)
[22:09:33] [PASSED] 0xA7AC (ALDERLAKE_P)
[22:09:33] [PASSED] 0xA7AD (ALDERLAKE_P)
[22:09:33] [PASSED] 0xA720 (ALDERLAKE_P)
[22:09:33] [PASSED] 0xA7A0 (ALDERLAKE_P)
[22:09:33] [PASSED] 0xA7A8 (ALDERLAKE_P)
[22:09:33] [PASSED] 0xA7AA (ALDERLAKE_P)
[22:09:33] [PASSED] 0xA7AB (ALDERLAKE_P)
[22:09:33] [PASSED] 0xA780 (ALDERLAKE_S)
[22:09:33] [PASSED] 0xA781 (ALDERLAKE_S)
[22:09:33] [PASSED] 0xA782 (ALDERLAKE_S)
[22:09:33] [PASSED] 0xA783 (ALDERLAKE_S)
[22:09:33] [PASSED] 0xA788 (ALDERLAKE_S)
[22:09:33] [PASSED] 0xA789 (ALDERLAKE_S)
[22:09:33] [PASSED] 0xA78A (ALDERLAKE_S)
[22:09:33] [PASSED] 0xA78B (ALDERLAKE_S)
[22:09:33] [PASSED] 0x4905 (DG1)
[22:09:33] [PASSED] 0x4906 (DG1)
[22:09:33] [PASSED] 0x4907 (DG1)
[22:09:33] [PASSED] 0x4908 (DG1)
[22:09:33] [PASSED] 0x4909 (DG1)
[22:09:33] [PASSED] 0x56C0 (DG2)
[22:09:33] [PASSED] 0x56C2 (DG2)
[22:09:33] [PASSED] 0x56C1 (DG2)
[22:09:33] [PASSED] 0x7D51 (METEORLAKE)
[22:09:33] [PASSED] 0x7DD1 (METEORLAKE)
[22:09:33] [PASSED] 0x7D41 (METEORLAKE)
[22:09:33] [PASSED] 0x7D67 (METEORLAKE)
[22:09:33] [PASSED] 0xB640 (METEORLAKE)
[22:09:33] [PASSED] 0x56A0 (DG2)
[22:09:33] [PASSED] 0x56A1 (DG2)
[22:09:33] [PASSED] 0x56A2 (DG2)
[22:09:33] [PASSED] 0x56BE (DG2)
[22:09:33] [PASSED] 0x56BF (DG2)
[22:09:33] [PASSED] 0x5690 (DG2)
[22:09:33] [PASSED] 0x5691 (DG2)
[22:09:33] [PASSED] 0x5692 (DG2)
[22:09:33] [PASSED] 0x56A5 (DG2)
[22:09:33] [PASSED] 0x56A6 (DG2)
[22:09:33] [PASSED] 0x56B0 (DG2)
[22:09:33] [PASSED] 0x56B1 (DG2)
[22:09:33] [PASSED] 0x56BA (DG2)
[22:09:33] [PASSED] 0x56BB (DG2)
[22:09:33] [PASSED] 0x56BC (DG2)
[22:09:33] [PASSED] 0x56BD (DG2)
[22:09:33] [PASSED] 0x5693 (DG2)
[22:09:33] [PASSED] 0x5694 (DG2)
[22:09:33] [PASSED] 0x5695 (DG2)
[22:09:33] [PASSED] 0x56A3 (DG2)
[22:09:33] [PASSED] 0x56A4 (DG2)
[22:09:33] [PASSED] 0x56B2 (DG2)
[22:09:33] [PASSED] 0x56B3 (DG2)
[22:09:33] [PASSED] 0x5696 (DG2)
[22:09:33] [PASSED] 0x5697 (DG2)
[22:09:33] [PASSED] 0xB69 (PVC)
[22:09:33] [PASSED] 0xB6E (PVC)
[22:09:33] [PASSED] 0xBD4 (PVC)
[22:09:33] [PASSED] 0xBD5 (PVC)
[22:09:33] [PASSED] 0xBD6 (PVC)
[22:09:33] [PASSED] 0xBD7 (PVC)
[22:09:33] [PASSED] 0xBD8 (PVC)
[22:09:33] [PASSED] 0xBD9 (PVC)
[22:09:33] [PASSED] 0xBDA (PVC)
[22:09:33] [PASSED] 0xBDB (PVC)
[22:09:33] [PASSED] 0xBE0 (PVC)
[22:09:33] [PASSED] 0xBE1 (PVC)
[22:09:33] [PASSED] 0xBE5 (PVC)
[22:09:33] [PASSED] 0x7D40 (METEORLAKE)
[22:09:33] [PASSED] 0x7D45 (METEORLAKE)
[22:09:33] [PASSED] 0x7D55 (METEORLAKE)
[22:09:33] [PASSED] 0x7D60 (METEORLAKE)
[22:09:33] [PASSED] 0x7DD5 (METEORLAKE)
[22:09:33] [PASSED] 0x6420 (LUNARLAKE)
[22:09:33] [PASSED] 0x64A0 (LUNARLAKE)
[22:09:33] [PASSED] 0x64B0 (LUNARLAKE)
[22:09:33] [PASSED] 0xE202 (BATTLEMAGE)
[22:09:33] [PASSED] 0xE209 (BATTLEMAGE)
[22:09:33] [PASSED] 0xE20B (BATTLEMAGE)
[22:09:33] [PASSED] 0xE20C (BATTLEMAGE)
[22:09:33] [PASSED] 0xE20D (BATTLEMAGE)
[22:09:33] [PASSED] 0xE210 (BATTLEMAGE)
[22:09:33] [PASSED] 0xE211 (BATTLEMAGE)
[22:09:33] [PASSED] 0xE212 (BATTLEMAGE)
[22:09:33] [PASSED] 0xE216 (BATTLEMAGE)
[22:09:33] [PASSED] 0xE220 (BATTLEMAGE)
[22:09:33] [PASSED] 0xE221 (BATTLEMAGE)
[22:09:33] [PASSED] 0xE222 (BATTLEMAGE)
[22:09:33] [PASSED] 0xE223 (BATTLEMAGE)
[22:09:33] [PASSED] 0xB080 (PANTHERLAKE)
[22:09:33] [PASSED] 0xB081 (PANTHERLAKE)
[22:09:33] [PASSED] 0xB082 (PANTHERLAKE)
[22:09:33] [PASSED] 0xB083 (PANTHERLAKE)
[22:09:33] [PASSED] 0xB084 (PANTHERLAKE)
[22:09:33] [PASSED] 0xB085 (PANTHERLAKE)
[22:09:33] [PASSED] 0xB086 (PANTHERLAKE)
[22:09:33] [PASSED] 0xB087 (PANTHERLAKE)
[22:09:33] [PASSED] 0xB08F (PANTHERLAKE)
[22:09:33] [PASSED] 0xB090 (PANTHERLAKE)
[22:09:33] [PASSED] 0xB0A0 (PANTHERLAKE)
[22:09:33] [PASSED] 0xB0B0 (PANTHERLAKE)
[22:09:33] [PASSED] 0xFD80 (PANTHERLAKE)
[22:09:33] [PASSED] 0xFD81 (PANTHERLAKE)
[22:09:33] [PASSED] 0xD740 (NOVALAKE_S)
[22:09:33] [PASSED] 0xD741 (NOVALAKE_S)
[22:09:33] [PASSED] 0xD742 (NOVALAKE_S)
[22:09:33] [PASSED] 0xD743 (NOVALAKE_S)
[22:09:33] [PASSED] 0xD744 (NOVALAKE_S)
[22:09:33] [PASSED] 0xD745 (NOVALAKE_S)
[22:09:33] [PASSED] 0x674C (CRESCENTISLAND)
[22:09:33] =============== [PASSED] check_platform_desc ===============
[22:09:33] ===================== [PASSED] xe_pci ======================
[22:09:33] =================== xe_rtp (2 subtests) ====================
[22:09:33] =============== xe_rtp_process_to_sr_tests ================
[22:09:33] [PASSED] coalesce-same-reg
[22:09:33] [PASSED] no-match-no-add
[22:09:33] [PASSED] match-or
[22:09:33] [PASSED] match-or-xfail
[22:09:33] [PASSED] no-match-no-add-multiple-rules
[22:09:33] [PASSED] two-regs-two-entries
[22:09:33] [PASSED] clr-one-set-other
[22:09:33] [PASSED] set-field
[22:09:33] [PASSED] conflict-duplicate
[22:09:33] [PASSED] conflict-not-disjoint
[22:09:33] [PASSED] conflict-reg-type
[22:09:33] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[22:09:33] ================== xe_rtp_process_tests ===================
[22:09:33] [PASSED] active1
[22:09:33] [PASSED] active2
[22:09:33] [PASSED] active-inactive
[22:09:33] [PASSED] inactive-active
[22:09:33] [PASSED] inactive-1st_or_active-inactive
[22:09:33] [PASSED] inactive-2nd_or_active-inactive
[22:09:33] [PASSED] inactive-last_or_active-inactive
[22:09:33] [PASSED] inactive-no_or_active-inactive
[22:09:33] ============== [PASSED] xe_rtp_process_tests ===============
[22:09:33] ===================== [PASSED] xe_rtp ======================
[22:09:33] ==================== xe_wa (1 subtest) =====================
[22:09:33] ======================== xe_wa_gt =========================
[22:09:33] [PASSED] TIGERLAKE B0
[22:09:33] [PASSED] DG1 A0
[22:09:33] [PASSED] DG1 B0
[22:09:33] [PASSED] ALDERLAKE_S A0
[22:09:33] [PASSED] ALDERLAKE_S B0
[22:09:33] [PASSED] ALDERLAKE_S C0
[22:09:33] [PASSED] ALDERLAKE_S D0
[22:09:33] [PASSED] ALDERLAKE_P A0
[22:09:33] [PASSED] ALDERLAKE_P B0
[22:09:33] [PASSED] ALDERLAKE_P C0
[22:09:33] [PASSED] ALDERLAKE_S RPLS D0
[22:09:33] [PASSED] ALDERLAKE_P RPLU E0
[22:09:33] [PASSED] DG2 G10 C0
[22:09:33] [PASSED] DG2 G11 B1
[22:09:33] [PASSED] DG2 G12 A1
[22:09:33] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[22:09:33] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[22:09:33] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[22:09:33] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[22:09:33] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[22:09:33] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[22:09:33] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[22:09:33] ==================== [PASSED] xe_wa_gt =====================
[22:09:33] ====================== [PASSED] xe_wa ======================
[22:09:33] ============================================================
[22:09:33] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[22:09:34] Elapsed time: 37.026s total, 4.205s configuring, 32.304s building, 0.466s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[22:09:34] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:09:35] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[22:10:20] Starting KUnit Kernel (1/1)...
[22:10:20] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:10:20] ============ drm_test_pick_cmdline (2 subtests) ============
[22:10:20] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[22:10:20] =============== drm_test_pick_cmdline_named ===============
[22:10:20] [PASSED] NTSC
[22:10:20] [PASSED] NTSC-J
[22:10:20] [PASSED] PAL
[22:10:20] [PASSED] PAL-M
[22:10:20] =========== [PASSED] drm_test_pick_cmdline_named ===========
[22:10:20] ============== [PASSED] drm_test_pick_cmdline ==============
[22:10:20] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[22:10:20] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[22:10:20] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[22:10:20] =========== drm_validate_clone_mode (2 subtests) ===========
[22:10:20] ============== drm_test_check_in_clone_mode ===============
[22:10:20] [PASSED] in_clone_mode
[22:10:20] [PASSED] not_in_clone_mode
[22:10:20] ========== [PASSED] drm_test_check_in_clone_mode ===========
[22:10:20] =============== drm_test_check_valid_clones ===============
[22:10:20] [PASSED] not_in_clone_mode
[22:10:20] [PASSED] valid_clone
[22:10:20] [PASSED] invalid_clone
[22:10:20] =========== [PASSED] drm_test_check_valid_clones ===========
[22:10:20] ============= [PASSED] drm_validate_clone_mode =============
[22:10:20] ============= drm_validate_modeset (1 subtest) =============
[22:10:20] [PASSED] drm_test_check_connector_changed_modeset
[22:10:20] ============== [PASSED] drm_validate_modeset ===============
[22:10:20] ====== drm_test_bridge_get_current_state (2 subtests) ======
[22:10:20] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[22:10:20] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[22:10:20] ======== [PASSED] drm_test_bridge_get_current_state ========
[22:10:20] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[22:10:20] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[22:10:20] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[22:10:20] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[22:10:20] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[22:10:20] ============== drm_bridge_alloc (2 subtests) ===============
[22:10:20] [PASSED] drm_test_drm_bridge_alloc_basic
[22:10:20] [PASSED] drm_test_drm_bridge_alloc_get_put
[22:10:20] ================ [PASSED] drm_bridge_alloc =================
[22:10:20] ================== drm_buddy (8 subtests) ==================
[22:10:20] [PASSED] drm_test_buddy_alloc_limit
[22:10:20] [PASSED] drm_test_buddy_alloc_optimistic
[22:10:20] [PASSED] drm_test_buddy_alloc_pessimistic
[22:10:20] [PASSED] drm_test_buddy_alloc_pathological
[22:10:20] [PASSED] drm_test_buddy_alloc_contiguous
[22:10:20] [PASSED] drm_test_buddy_alloc_clear
[22:10:20] [PASSED] drm_test_buddy_alloc_range_bias
[22:10:20] [PASSED] drm_test_buddy_fragmentation_performance
[22:10:20] ==================== [PASSED] drm_buddy ====================
[22:10:20] ============= drm_cmdline_parser (40 subtests) =============
[22:10:20] [PASSED] drm_test_cmdline_force_d_only
[22:10:20] [PASSED] drm_test_cmdline_force_D_only_dvi
[22:10:20] [PASSED] drm_test_cmdline_force_D_only_hdmi
[22:10:20] [PASSED] drm_test_cmdline_force_D_only_not_digital
[22:10:20] [PASSED] drm_test_cmdline_force_e_only
[22:10:20] [PASSED] drm_test_cmdline_res
[22:10:20] [PASSED] drm_test_cmdline_res_vesa
[22:10:20] [PASSED] drm_test_cmdline_res_vesa_rblank
[22:10:20] [PASSED] drm_test_cmdline_res_rblank
[22:10:20] [PASSED] drm_test_cmdline_res_bpp
[22:10:20] [PASSED] drm_test_cmdline_res_refresh
[22:10:20] [PASSED] drm_test_cmdline_res_bpp_refresh
[22:10:20] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[22:10:20] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[22:10:20] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[22:10:20] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[22:10:20] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[22:10:20] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[22:10:20] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[22:10:20] [PASSED] drm_test_cmdline_res_margins_force_on
[22:10:20] [PASSED] drm_test_cmdline_res_vesa_margins
[22:10:20] [PASSED] drm_test_cmdline_name
[22:10:20] [PASSED] drm_test_cmdline_name_bpp
[22:10:20] [PASSED] drm_test_cmdline_name_option
[22:10:20] [PASSED] drm_test_cmdline_name_bpp_option
[22:10:20] [PASSED] drm_test_cmdline_rotate_0
[22:10:20] [PASSED] drm_test_cmdline_rotate_90
[22:10:20] [PASSED] drm_test_cmdline_rotate_180
[22:10:20] [PASSED] drm_test_cmdline_rotate_270
[22:10:20] [PASSED] drm_test_cmdline_hmirror
[22:10:20] [PASSED] drm_test_cmdline_vmirror
[22:10:20] [PASSED] drm_test_cmdline_margin_options
[22:10:20] [PASSED] drm_test_cmdline_multiple_options
[22:10:20] [PASSED] drm_test_cmdline_bpp_extra_and_option
[22:10:20] [PASSED] drm_test_cmdline_extra_and_option
[22:10:20] [PASSED] drm_test_cmdline_freestanding_options
[22:10:20] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[22:10:20] [PASSED] drm_test_cmdline_panel_orientation
[22:10:20] ================ drm_test_cmdline_invalid =================
[22:10:20] [PASSED] margin_only
[22:10:20] [PASSED] interlace_only
[22:10:20] [PASSED] res_missing_x
[22:10:20] [PASSED] res_missing_y
[22:10:20] [PASSED] res_bad_y
[22:10:20] [PASSED] res_missing_y_bpp
[22:10:20] [PASSED] res_bad_bpp
[22:10:20] [PASSED] res_bad_refresh
[22:10:20] [PASSED] res_bpp_refresh_force_on_off
[22:10:20] [PASSED] res_invalid_mode
[22:10:20] [PASSED] res_bpp_wrong_place_mode
[22:10:20] [PASSED] name_bpp_refresh
[22:10:20] [PASSED] name_refresh
[22:10:20] [PASSED] name_refresh_wrong_mode
[22:10:20] [PASSED] name_refresh_invalid_mode
[22:10:20] [PASSED] rotate_multiple
[22:10:20] [PASSED] rotate_invalid_val
[22:10:20] [PASSED] rotate_truncated
[22:10:20] [PASSED] invalid_option
[22:10:20] [PASSED] invalid_tv_option
[22:10:20] [PASSED] truncated_tv_option
[22:10:20] ============ [PASSED] drm_test_cmdline_invalid =============
[22:10:20] =============== drm_test_cmdline_tv_options ===============
[22:10:20] [PASSED] NTSC
[22:10:20] [PASSED] NTSC_443
[22:10:20] [PASSED] NTSC_J
[22:10:20] [PASSED] PAL
[22:10:20] [PASSED] PAL_M
[22:10:20] [PASSED] PAL_N
[22:10:20] [PASSED] SECAM
[22:10:20] [PASSED] MONO_525
[22:10:20] [PASSED] MONO_625
[22:10:20] =========== [PASSED] drm_test_cmdline_tv_options ===========
[22:10:20] =============== [PASSED] drm_cmdline_parser ================
[22:10:20] ========== drmm_connector_hdmi_init (20 subtests) ==========
[22:10:20] [PASSED] drm_test_connector_hdmi_init_valid
[22:10:20] [PASSED] drm_test_connector_hdmi_init_bpc_8
[22:10:20] [PASSED] drm_test_connector_hdmi_init_bpc_10
[22:10:20] [PASSED] drm_test_connector_hdmi_init_bpc_12
[22:10:20] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[22:10:20] [PASSED] drm_test_connector_hdmi_init_bpc_null
[22:10:20] [PASSED] drm_test_connector_hdmi_init_formats_empty
[22:10:20] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[22:10:20] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[22:10:20] [PASSED] supported_formats=0x9 yuv420_allowed=1
[22:10:20] [PASSED] supported_formats=0x9 yuv420_allowed=0
[22:10:20] [PASSED] supported_formats=0x3 yuv420_allowed=1
[22:10:20] [PASSED] supported_formats=0x3 yuv420_allowed=0
[22:10:20] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[22:10:20] [PASSED] drm_test_connector_hdmi_init_null_ddc
[22:10:20] [PASSED] drm_test_connector_hdmi_init_null_product
[22:10:20] [PASSED] drm_test_connector_hdmi_init_null_vendor
[22:10:20] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[22:10:20] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[22:10:20] [PASSED] drm_test_connector_hdmi_init_product_valid
[22:10:20] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[22:10:20] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[22:10:20] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[22:10:20] ========= drm_test_connector_hdmi_init_type_valid =========
[22:10:20] [PASSED] HDMI-A
[22:10:20] [PASSED] HDMI-B
[22:10:20] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[22:10:20] ======== drm_test_connector_hdmi_init_type_invalid ========
[22:10:20] [PASSED] Unknown
[22:10:20] [PASSED] VGA
[22:10:20] [PASSED] DVI-I
[22:10:20] [PASSED] DVI-D
[22:10:20] [PASSED] DVI-A
[22:10:20] [PASSED] Composite
[22:10:20] [PASSED] SVIDEO
[22:10:20] [PASSED] LVDS
[22:10:20] [PASSED] Component
[22:10:20] [PASSED] DIN
[22:10:20] [PASSED] DP
[22:10:20] [PASSED] TV
[22:10:20] [PASSED] eDP
[22:10:20] [PASSED] Virtual
[22:10:20] [PASSED] DSI
[22:10:20] [PASSED] DPI
[22:10:20] [PASSED] Writeback
[22:10:20] [PASSED] SPI
[22:10:20] [PASSED] USB
[22:10:20] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[22:10:20] ============ [PASSED] drmm_connector_hdmi_init =============
[22:10:20] ============= drmm_connector_init (3 subtests) =============
[22:10:20] [PASSED] drm_test_drmm_connector_init
[22:10:20] [PASSED] drm_test_drmm_connector_init_null_ddc
[22:10:20] ========= drm_test_drmm_connector_init_type_valid =========
[22:10:20] [PASSED] Unknown
[22:10:20] [PASSED] VGA
[22:10:20] [PASSED] DVI-I
[22:10:20] [PASSED] DVI-D
[22:10:20] [PASSED] DVI-A
[22:10:20] [PASSED] Composite
[22:10:20] [PASSED] SVIDEO
[22:10:20] [PASSED] LVDS
[22:10:20] [PASSED] Component
[22:10:20] [PASSED] DIN
[22:10:20] [PASSED] DP
[22:10:20] [PASSED] HDMI-A
[22:10:20] [PASSED] HDMI-B
[22:10:20] [PASSED] TV
[22:10:20] [PASSED] eDP
[22:10:20] [PASSED] Virtual
[22:10:20] [PASSED] DSI
[22:10:20] [PASSED] DPI
[22:10:20] [PASSED] Writeback
[22:10:20] [PASSED] SPI
[22:10:20] [PASSED] USB
[22:10:20] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[22:10:20] =============== [PASSED] drmm_connector_init ===============
[22:10:20] ========= drm_connector_dynamic_init (6 subtests) ==========
[22:10:20] [PASSED] drm_test_drm_connector_dynamic_init
[22:10:20] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[22:10:20] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[22:10:20] [PASSED] drm_test_drm_connector_dynamic_init_properties
[22:10:20] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[22:10:20] [PASSED] Unknown
[22:10:20] [PASSED] VGA
[22:10:20] [PASSED] DVI-I
[22:10:20] [PASSED] DVI-D
[22:10:20] [PASSED] DVI-A
[22:10:20] [PASSED] Composite
[22:10:20] [PASSED] SVIDEO
[22:10:20] [PASSED] LVDS
[22:10:20] [PASSED] Component
[22:10:20] [PASSED] DIN
[22:10:20] [PASSED] DP
[22:10:20] [PASSED] HDMI-A
[22:10:20] [PASSED] HDMI-B
[22:10:20] [PASSED] TV
[22:10:20] [PASSED] eDP
[22:10:20] [PASSED] Virtual
[22:10:20] [PASSED] DSI
[22:10:20] [PASSED] DPI
[22:10:20] [PASSED] Writeback
[22:10:20] [PASSED] SPI
[22:10:20] [PASSED] USB
[22:10:20] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[22:10:20] ======== drm_test_drm_connector_dynamic_init_name =========
[22:10:20] [PASSED] Unknown
[22:10:20] [PASSED] VGA
[22:10:20] [PASSED] DVI-I
[22:10:20] [PASSED] DVI-D
[22:10:20] [PASSED] DVI-A
[22:10:20] [PASSED] Composite
[22:10:20] [PASSED] SVIDEO
[22:10:20] [PASSED] LVDS
[22:10:20] [PASSED] Component
[22:10:20] [PASSED] DIN
[22:10:20] [PASSED] DP
[22:10:20] [PASSED] HDMI-A
[22:10:20] [PASSED] HDMI-B
[22:10:20] [PASSED] TV
[22:10:20] [PASSED] eDP
[22:10:20] [PASSED] Virtual
[22:10:20] [PASSED] DSI
[22:10:20] [PASSED] DPI
[22:10:20] [PASSED] Writeback
[22:10:20] [PASSED] SPI
[22:10:20] [PASSED] USB
[22:10:20] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[22:10:20] =========== [PASSED] drm_connector_dynamic_init ============
[22:10:20] ==== drm_connector_dynamic_register_early (4 subtests) =====
[22:10:20] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[22:10:20] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[22:10:20] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[22:10:20] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[22:10:20] ====== [PASSED] drm_connector_dynamic_register_early =======
[22:10:20] ======= drm_connector_dynamic_register (7 subtests) ========
[22:10:20] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[22:10:20] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[22:10:20] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[22:10:20] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[22:10:20] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[22:10:20] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[22:10:20] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[22:10:20] ========= [PASSED] drm_connector_dynamic_register ==========
[22:10:20] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[22:10:20] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[22:10:20] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[22:10:20] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[22:10:20] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[22:10:20] ========== drm_test_get_tv_mode_from_name_valid ===========
[22:10:20] [PASSED] NTSC
[22:10:20] [PASSED] NTSC-443
[22:10:20] [PASSED] NTSC-J
[22:10:20] [PASSED] PAL
[22:10:20] [PASSED] PAL-M
[22:10:20] [PASSED] PAL-N
[22:10:20] [PASSED] SECAM
[22:10:20] [PASSED] Mono
[22:10:20] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[22:10:20] [PASSED] drm_test_get_tv_mode_from_name_truncated
[22:10:20] ============ [PASSED] drm_get_tv_mode_from_name ============
[22:10:20] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[22:10:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[22:10:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[22:10:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[22:10:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[22:10:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[22:10:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[22:10:20] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[22:10:20] [PASSED] VIC 96
[22:10:20] [PASSED] VIC 97
[22:10:20] [PASSED] VIC 101
[22:10:20] [PASSED] VIC 102
[22:10:20] [PASSED] VIC 106
[22:10:20] [PASSED] VIC 107
[22:10:20] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[22:10:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[22:10:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[22:10:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[22:10:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[22:10:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[22:10:20] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[22:10:20] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[22:10:20] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[22:10:20] [PASSED] Automatic
[22:10:20] [PASSED] Full
[22:10:20] [PASSED] Limited 16:235
[22:10:20] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[22:10:20] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[22:10:20] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[22:10:20] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[22:10:20] === drm_test_drm_hdmi_connector_get_output_format_name ====
[22:10:20] [PASSED] RGB
[22:10:20] [PASSED] YUV 4:2:0
[22:10:20] [PASSED] YUV 4:2:2
[22:10:20] [PASSED] YUV 4:4:4
[22:10:20] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[22:10:20] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[22:10:20] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[22:10:20] ============= drm_damage_helper (21 subtests) ==============
[22:10:20] [PASSED] drm_test_damage_iter_no_damage
[22:10:20] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[22:10:20] [PASSED] drm_test_damage_iter_no_damage_src_moved
[22:10:20] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[22:10:20] [PASSED] drm_test_damage_iter_no_damage_not_visible
[22:10:20] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[22:10:20] [PASSED] drm_test_damage_iter_no_damage_no_fb
[22:10:20] [PASSED] drm_test_damage_iter_simple_damage
[22:10:20] [PASSED] drm_test_damage_iter_single_damage
[22:10:20] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[22:10:20] [PASSED] drm_test_damage_iter_single_damage_outside_src
[22:10:20] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[22:10:20] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[22:10:20] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[22:10:20] [PASSED] drm_test_damage_iter_single_damage_src_moved
[22:10:20] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[22:10:20] [PASSED] drm_test_damage_iter_damage
[22:10:20] [PASSED] drm_test_damage_iter_damage_one_intersect
[22:10:20] [PASSED] drm_test_damage_iter_damage_one_outside
[22:10:20] [PASSED] drm_test_damage_iter_damage_src_moved
[22:10:20] [PASSED] drm_test_damage_iter_damage_not_visible
[22:10:20] ================ [PASSED] drm_damage_helper ================
[22:10:20] ============== drm_dp_mst_helper (3 subtests) ==============
[22:10:20] ============== drm_test_dp_mst_calc_pbn_mode ==============
[22:10:20] [PASSED] Clock 154000 BPP 30 DSC disabled
[22:10:20] [PASSED] Clock 234000 BPP 30 DSC disabled
[22:10:20] [PASSED] Clock 297000 BPP 24 DSC disabled
[22:10:20] [PASSED] Clock 332880 BPP 24 DSC enabled
[22:10:20] [PASSED] Clock 324540 BPP 24 DSC enabled
[22:10:20] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[22:10:20] ============== drm_test_dp_mst_calc_pbn_div ===============
[22:10:20] [PASSED] Link rate 2000000 lane count 4
[22:10:20] [PASSED] Link rate 2000000 lane count 2
[22:10:20] [PASSED] Link rate 2000000 lane count 1
[22:10:20] [PASSED] Link rate 1350000 lane count 4
[22:10:20] [PASSED] Link rate 1350000 lane count 2
[22:10:20] [PASSED] Link rate 1350000 lane count 1
[22:10:20] [PASSED] Link rate 1000000 lane count 4
[22:10:20] [PASSED] Link rate 1000000 lane count 2
[22:10:20] [PASSED] Link rate 1000000 lane count 1
[22:10:20] [PASSED] Link rate 810000 lane count 4
[22:10:20] [PASSED] Link rate 810000 lane count 2
[22:10:20] [PASSED] Link rate 810000 lane count 1
[22:10:20] [PASSED] Link rate 540000 lane count 4
[22:10:20] [PASSED] Link rate 540000 lane count 2
[22:10:20] [PASSED] Link rate 540000 lane count 1
[22:10:20] [PASSED] Link rate 270000 lane count 4
[22:10:20] [PASSED] Link rate 270000 lane count 2
[22:10:20] [PASSED] Link rate 270000 lane count 1
[22:10:20] [PASSED] Link rate 162000 lane count 4
[22:10:20] [PASSED] Link rate 162000 lane count 2
[22:10:20] [PASSED] Link rate 162000 lane count 1
[22:10:20] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[22:10:20] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[22:10:20] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[22:10:20] [PASSED] DP_POWER_UP_PHY with port number
[22:10:20] [PASSED] DP_POWER_DOWN_PHY with port number
[22:10:20] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[22:10:20] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[22:10:20] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[22:10:20] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[22:10:20] [PASSED] DP_QUERY_PAYLOAD with port number
[22:10:20] [PASSED] DP_QUERY_PAYLOAD with VCPI
[22:10:20] [PASSED] DP_REMOTE_DPCD_READ with port number
[22:10:20] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[22:10:20] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[22:10:20] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[22:10:20] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[22:10:20] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[22:10:20] [PASSED] DP_REMOTE_I2C_READ with port number
[22:10:20] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[22:10:20] [PASSED] DP_REMOTE_I2C_READ with transactions array
[22:10:20] [PASSED] DP_REMOTE_I2C_WRITE with port number
[22:10:20] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[22:10:20] [PASSED] DP_REMOTE_I2C_WRITE with data array
[22:10:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[22:10:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[22:10:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[22:10:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[22:10:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[22:10:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[22:10:20] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[22:10:20] ================ [PASSED] drm_dp_mst_helper ================
[22:10:20] ================== drm_exec (7 subtests) ===================
[22:10:20] [PASSED] sanitycheck
[22:10:20] [PASSED] test_lock
[22:10:20] [PASSED] test_lock_unlock
[22:10:20] [PASSED] test_duplicates
[22:10:20] [PASSED] test_prepare
[22:10:20] [PASSED] test_prepare_array
[22:10:20] [PASSED] test_multiple_loops
[22:10:20] ==================== [PASSED] drm_exec =====================
[22:10:20] =========== drm_format_helper_test (17 subtests) ===========
[22:10:20] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[22:10:20] [PASSED] single_pixel_source_buffer
[22:10:20] [PASSED] single_pixel_clip_rectangle
[22:10:20] [PASSED] well_known_colors
[22:10:20] [PASSED] destination_pitch
[22:10:20] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[22:10:20] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[22:10:20] [PASSED] single_pixel_source_buffer
[22:10:20] [PASSED] single_pixel_clip_rectangle
[22:10:20] [PASSED] well_known_colors
[22:10:20] [PASSED] destination_pitch
[22:10:20] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[22:10:20] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[22:10:20] [PASSED] single_pixel_source_buffer
[22:10:20] [PASSED] single_pixel_clip_rectangle
[22:10:20] [PASSED] well_known_colors
[22:10:20] [PASSED] destination_pitch
[22:10:20] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[22:10:20] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[22:10:20] [PASSED] single_pixel_source_buffer
[22:10:20] [PASSED] single_pixel_clip_rectangle
[22:10:20] [PASSED] well_known_colors
[22:10:20] [PASSED] destination_pitch
[22:10:20] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[22:10:20] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[22:10:20] [PASSED] single_pixel_source_buffer
[22:10:20] [PASSED] single_pixel_clip_rectangle
[22:10:20] [PASSED] well_known_colors
[22:10:20] [PASSED] destination_pitch
[22:10:20] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[22:10:20] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[22:10:20] [PASSED] single_pixel_source_buffer
[22:10:20] [PASSED] single_pixel_clip_rectangle
[22:10:20] [PASSED] well_known_colors
[22:10:20] [PASSED] destination_pitch
[22:10:20] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[22:10:20] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[22:10:20] [PASSED] single_pixel_source_buffer
[22:10:20] [PASSED] single_pixel_clip_rectangle
[22:10:20] [PASSED] well_known_colors
[22:10:20] [PASSED] destination_pitch
[22:10:20] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[22:10:20] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[22:10:20] [PASSED] single_pixel_source_buffer
[22:10:20] [PASSED] single_pixel_clip_rectangle
[22:10:20] [PASSED] well_known_colors
[22:10:20] [PASSED] destination_pitch
[22:10:20] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[22:10:20] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[22:10:20] [PASSED] single_pixel_source_buffer
[22:10:20] [PASSED] single_pixel_clip_rectangle
[22:10:20] [PASSED] well_known_colors
[22:10:20] [PASSED] destination_pitch
[22:10:20] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[22:10:20] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[22:10:20] [PASSED] single_pixel_source_buffer
[22:10:20] [PASSED] single_pixel_clip_rectangle
[22:10:20] [PASSED] well_known_colors
[22:10:20] [PASSED] destination_pitch
[22:10:20] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[22:10:20] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[22:10:20] [PASSED] single_pixel_source_buffer
[22:10:20] [PASSED] single_pixel_clip_rectangle
[22:10:20] [PASSED] well_known_colors
[22:10:20] [PASSED] destination_pitch
[22:10:20] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[22:10:20] ============== drm_test_fb_xrgb8888_to_mono ===============
[22:10:20] [PASSED] single_pixel_source_buffer
[22:10:20] [PASSED] single_pixel_clip_rectangle
[22:10:20] [PASSED] well_known_colors
[22:10:20] [PASSED] destination_pitch
[22:10:20] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[22:10:20] ==================== drm_test_fb_swab =====================
[22:10:20] [PASSED] single_pixel_source_buffer
[22:10:20] [PASSED] single_pixel_clip_rectangle
[22:10:20] [PASSED] well_known_colors
[22:10:20] [PASSED] destination_pitch
[22:10:20] ================ [PASSED] drm_test_fb_swab =================
[22:10:20] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[22:10:20] [PASSED] single_pixel_source_buffer
[22:10:20] [PASSED] single_pixel_clip_rectangle
[22:10:20] [PASSED] well_known_colors
[22:10:20] [PASSED] destination_pitch
[22:10:20] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[22:10:20] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[22:10:20] [PASSED] single_pixel_source_buffer
[22:10:20] [PASSED] single_pixel_clip_rectangle
[22:10:20] [PASSED] well_known_colors
[22:10:20] [PASSED] destination_pitch
[22:10:20] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[22:10:20] ================= drm_test_fb_clip_offset =================
[22:10:20] [PASSED] pass through
[22:10:20] [PASSED] horizontal offset
[22:10:20] [PASSED] vertical offset
[22:10:20] [PASSED] horizontal and vertical offset
[22:10:20] [PASSED] horizontal offset (custom pitch)
[22:10:20] [PASSED] vertical offset (custom pitch)
[22:10:20] [PASSED] horizontal and vertical offset (custom pitch)
[22:10:20] ============= [PASSED] drm_test_fb_clip_offset =============
[22:10:20] =================== drm_test_fb_memcpy ====================
[22:10:20] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[22:10:20] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[22:10:20] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[22:10:20] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[22:10:20] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[22:10:20] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[22:10:20] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[22:10:20] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[22:10:20] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[22:10:20] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[22:10:20] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[22:10:20] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[22:10:20] =============== [PASSED] drm_test_fb_memcpy ================
[22:10:20] ============= [PASSED] drm_format_helper_test ==============
[22:10:20] ================= drm_format (18 subtests) =================
[22:10:20] [PASSED] drm_test_format_block_width_invalid
[22:10:20] [PASSED] drm_test_format_block_width_one_plane
[22:10:20] [PASSED] drm_test_format_block_width_two_plane
[22:10:20] [PASSED] drm_test_format_block_width_three_plane
[22:10:20] [PASSED] drm_test_format_block_width_tiled
[22:10:20] [PASSED] drm_test_format_block_height_invalid
[22:10:20] [PASSED] drm_test_format_block_height_one_plane
[22:10:20] [PASSED] drm_test_format_block_height_two_plane
[22:10:20] [PASSED] drm_test_format_block_height_three_plane
[22:10:20] [PASSED] drm_test_format_block_height_tiled
[22:10:20] [PASSED] drm_test_format_min_pitch_invalid
[22:10:20] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[22:10:20] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[22:10:20] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[22:10:20] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[22:10:20] [PASSED] drm_test_format_min_pitch_two_plane
[22:10:20] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[22:10:20] [PASSED] drm_test_format_min_pitch_tiled
[22:10:20] =================== [PASSED] drm_format ====================
[22:10:20] ============== drm_framebuffer (10 subtests) ===============
[22:10:20] ========== drm_test_framebuffer_check_src_coords ==========
[22:10:20] [PASSED] Success: source fits into fb
[22:10:20] [PASSED] Fail: overflowing fb with x-axis coordinate
[22:10:20] [PASSED] Fail: overflowing fb with y-axis coordinate
[22:10:20] [PASSED] Fail: overflowing fb with source width
[22:10:20] [PASSED] Fail: overflowing fb with source height
[22:10:20] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[22:10:20] [PASSED] drm_test_framebuffer_cleanup
[22:10:20] =============== drm_test_framebuffer_create ===============
[22:10:20] [PASSED] ABGR8888 normal sizes
[22:10:20] [PASSED] ABGR8888 max sizes
[22:10:20] [PASSED] ABGR8888 pitch greater than min required
[22:10:20] [PASSED] ABGR8888 pitch less than min required
[22:10:20] [PASSED] ABGR8888 Invalid width
[22:10:20] [PASSED] ABGR8888 Invalid buffer handle
[22:10:20] [PASSED] No pixel format
[22:10:20] [PASSED] ABGR8888 Width 0
[22:10:20] [PASSED] ABGR8888 Height 0
[22:10:20] [PASSED] ABGR8888 Out of bound height * pitch combination
[22:10:20] [PASSED] ABGR8888 Large buffer offset
[22:10:20] [PASSED] ABGR8888 Buffer offset for inexistent plane
[22:10:20] [PASSED] ABGR8888 Invalid flag
[22:10:20] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[22:10:20] [PASSED] ABGR8888 Valid buffer modifier
[22:10:20] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[22:10:20] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[22:10:20] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[22:10:20] [PASSED] NV12 Normal sizes
[22:10:20] [PASSED] NV12 Max sizes
[22:10:20] [PASSED] NV12 Invalid pitch
[22:10:20] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[22:10:20] [PASSED] NV12 different modifier per-plane
[22:10:20] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[22:10:20] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[22:10:20] [PASSED] NV12 Modifier for inexistent plane
[22:10:20] [PASSED] NV12 Handle for inexistent plane
[22:10:20] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[22:10:20] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[22:10:20] [PASSED] YVU420 Normal sizes
[22:10:20] [PASSED] YVU420 Max sizes
[22:10:20] [PASSED] YVU420 Invalid pitch
[22:10:20] [PASSED] YVU420 Different pitches
[22:10:20] [PASSED] YVU420 Different buffer offsets/pitches
[22:10:20] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[22:10:20] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[22:10:20] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[22:10:20] [PASSED] YVU420 Valid modifier
[22:10:20] [PASSED] YVU420 Different modifiers per plane
[22:10:20] [PASSED] YVU420 Modifier for inexistent plane
[22:10:20] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[22:10:20] [PASSED] X0L2 Normal sizes
[22:10:20] [PASSED] X0L2 Max sizes
[22:10:20] [PASSED] X0L2 Invalid pitch
[22:10:20] [PASSED] X0L2 Pitch greater than minimum required
[22:10:20] [PASSED] X0L2 Handle for inexistent plane
[22:10:20] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[22:10:20] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[22:10:20] [PASSED] X0L2 Valid modifier
[22:10:20] [PASSED] X0L2 Modifier for inexistent plane
[22:10:20] =========== [PASSED] drm_test_framebuffer_create ===========
[22:10:20] [PASSED] drm_test_framebuffer_free
[22:10:20] [PASSED] drm_test_framebuffer_init
[22:10:20] [PASSED] drm_test_framebuffer_init_bad_format
[22:10:20] [PASSED] drm_test_framebuffer_init_dev_mismatch
[22:10:20] [PASSED] drm_test_framebuffer_lookup
[22:10:20] [PASSED] drm_test_framebuffer_lookup_inexistent
[22:10:20] [PASSED] drm_test_framebuffer_modifiers_not_supported
[22:10:20] ================= [PASSED] drm_framebuffer =================
[22:10:20] ================ drm_gem_shmem (8 subtests) ================
[22:10:20] [PASSED] drm_gem_shmem_test_obj_create
[22:10:20] [PASSED] drm_gem_shmem_test_obj_create_private
[22:10:20] [PASSED] drm_gem_shmem_test_pin_pages
[22:10:20] [PASSED] drm_gem_shmem_test_vmap
[22:10:20] [PASSED] drm_gem_shmem_test_get_sg_table
[22:10:20] [PASSED] drm_gem_shmem_test_get_pages_sgt
[22:10:20] [PASSED] drm_gem_shmem_test_madvise
[22:10:20] [PASSED] drm_gem_shmem_test_purge
[22:10:20] ================== [PASSED] drm_gem_shmem ==================
[22:10:20] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[22:10:20] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[22:10:20] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[22:10:20] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[22:10:20] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[22:10:20] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[22:10:20] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[22:10:20] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[22:10:20] [PASSED] Automatic
[22:10:20] [PASSED] Full
[22:10:20] [PASSED] Limited 16:235
[22:10:20] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[22:10:20] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[22:10:20] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[22:10:20] [PASSED] drm_test_check_disable_connector
[22:10:20] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[22:10:20] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[22:10:20] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[22:10:20] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[22:10:20] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[22:10:20] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[22:10:20] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[22:10:20] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[22:10:20] [PASSED] drm_test_check_output_bpc_dvi
[22:10:20] [PASSED] drm_test_check_output_bpc_format_vic_1
[22:10:20] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[22:10:20] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[22:10:20] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[22:10:20] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[22:10:20] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[22:10:20] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[22:10:20] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[22:10:20] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[22:10:20] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[22:10:20] [PASSED] drm_test_check_broadcast_rgb_value
[22:10:20] [PASSED] drm_test_check_bpc_8_value
[22:10:20] [PASSED] drm_test_check_bpc_10_value
[22:10:20] [PASSED] drm_test_check_bpc_12_value
[22:10:20] [PASSED] drm_test_check_format_value
[22:10:20] [PASSED] drm_test_check_tmds_char_value
[22:10:20] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[22:10:20] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[22:10:20] [PASSED] drm_test_check_mode_valid
[22:10:20] [PASSED] drm_test_check_mode_valid_reject
[22:10:20] [PASSED] drm_test_check_mode_valid_reject_rate
[22:10:20] [PASSED] drm_test_check_mode_valid_reject_max_clock
[22:10:20] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[22:10:20] ================= drm_managed (2 subtests) =================
[22:10:20] [PASSED] drm_test_managed_release_action
[22:10:20] [PASSED] drm_test_managed_run_action
[22:10:20] =================== [PASSED] drm_managed ===================
[22:10:20] =================== drm_mm (6 subtests) ====================
[22:10:20] [PASSED] drm_test_mm_init
[22:10:20] [PASSED] drm_test_mm_debug
[22:10:20] [PASSED] drm_test_mm_align32
[22:10:20] [PASSED] drm_test_mm_align64
[22:10:20] [PASSED] drm_test_mm_lowest
[22:10:20] [PASSED] drm_test_mm_highest
[22:10:20] ===================== [PASSED] drm_mm ======================
[22:10:20] ============= drm_modes_analog_tv (5 subtests) =============
[22:10:20] [PASSED] drm_test_modes_analog_tv_mono_576i
[22:10:20] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[22:10:20] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[22:10:20] [PASSED] drm_test_modes_analog_tv_pal_576i
[22:10:20] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[22:10:20] =============== [PASSED] drm_modes_analog_tv ===============
[22:10:20] ============== drm_plane_helper (2 subtests) ===============
[22:10:20] =============== drm_test_check_plane_state ================
[22:10:20] [PASSED] clipping_simple
[22:10:20] [PASSED] clipping_rotate_reflect
[22:10:20] [PASSED] positioning_simple
[22:10:20] [PASSED] upscaling
[22:10:20] [PASSED] downscaling
[22:10:20] [PASSED] rounding1
[22:10:20] [PASSED] rounding2
[22:10:20] [PASSED] rounding3
[22:10:20] [PASSED] rounding4
[22:10:20] =========== [PASSED] drm_test_check_plane_state ============
[22:10:20] =========== drm_test_check_invalid_plane_state ============
[22:10:20] [PASSED] positioning_invalid
[22:10:20] [PASSED] upscaling_invalid
[22:10:20] [PASSED] downscaling_invalid
[22:10:20] ======= [PASSED] drm_test_check_invalid_plane_state ========
[22:10:20] ================ [PASSED] drm_plane_helper =================
[22:10:20] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[22:10:20] ====== drm_test_connector_helper_tv_get_modes_check =======
[22:10:20] [PASSED] None
[22:10:20] [PASSED] PAL
[22:10:20] [PASSED] NTSC
[22:10:20] [PASSED] Both, NTSC Default
[22:10:20] [PASSED] Both, PAL Default
[22:10:20] [PASSED] Both, NTSC Default, with PAL on command-line
[22:10:20] [PASSED] Both, PAL Default, with NTSC on command-line
[22:10:20] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[22:10:20] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[22:10:20] ================== drm_rect (9 subtests) ===================
[22:10:20] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[22:10:20] [PASSED] drm_test_rect_clip_scaled_not_clipped
[22:10:20] [PASSED] drm_test_rect_clip_scaled_clipped
[22:10:20] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[22:10:20] ================= drm_test_rect_intersect =================
[22:10:20] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[22:10:20] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[22:10:20] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[22:10:20] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[22:10:20] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[22:10:20] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[22:10:20] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[22:10:20] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[22:10:20] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[22:10:20] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[22:10:20] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[22:10:20] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[22:10:20] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[22:10:20] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[22:10:20] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[22:10:20] ============= [PASSED] drm_test_rect_intersect =============
[22:10:20] ================ drm_test_rect_calc_hscale ================
[22:10:20] [PASSED] normal use
[22:10:20] [PASSED] out of max range
[22:10:20] [PASSED] out of min range
[22:10:20] [PASSED] zero dst
[22:10:20] [PASSED] negative src
[22:10:20] [PASSED] negative dst
[22:10:20] ============ [PASSED] drm_test_rect_calc_hscale ============
[22:10:20] ================ drm_test_rect_calc_vscale ================
[22:10:20] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[22:10:20] [PASSED] out of max range
[22:10:20] [PASSED] out of min range
[22:10:20] [PASSED] zero dst
[22:10:20] [PASSED] negative src
[22:10:20] [PASSED] negative dst
[22:10:20] ============ [PASSED] drm_test_rect_calc_vscale ============
[22:10:20] ================== drm_test_rect_rotate ===================
[22:10:20] [PASSED] reflect-x
[22:10:20] [PASSED] reflect-y
[22:10:20] [PASSED] rotate-0
[22:10:20] [PASSED] rotate-90
[22:10:20] [PASSED] rotate-180
[22:10:20] [PASSED] rotate-270
[22:10:20] ============== [PASSED] drm_test_rect_rotate ===============
[22:10:20] ================ drm_test_rect_rotate_inv =================
[22:10:20] [PASSED] reflect-x
[22:10:20] [PASSED] reflect-y
[22:10:20] [PASSED] rotate-0
[22:10:20] [PASSED] rotate-90
[22:10:20] [PASSED] rotate-180
[22:10:20] [PASSED] rotate-270
[22:10:20] ============ [PASSED] drm_test_rect_rotate_inv =============
[22:10:20] ==================== [PASSED] drm_rect =====================
[22:10:20] ============ drm_sysfb_modeset_test (1 subtest) ============
[22:10:20] ============ drm_test_sysfb_build_fourcc_list =============
[22:10:20] [PASSED] no native formats
[22:10:20] [PASSED] XRGB8888 as native format
[22:10:20] [PASSED] remove duplicates
[22:10:20] [PASSED] convert alpha formats
[22:10:20] [PASSED] random formats
[22:10:20] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[22:10:20] ============= [PASSED] drm_sysfb_modeset_test ==============
[22:10:20] ================== drm_fixp (2 subtests) ===================
[22:10:20] [PASSED] drm_test_int2fixp
[22:10:20] [PASSED] drm_test_sm2fixp
[22:10:20] ==================== [PASSED] drm_fixp =====================
[22:10:20] ============================================================
[22:10:20] Testing complete. Ran 624 tests: passed: 624
[22:10:20] Elapsed time: 46.686s total, 1.677s configuring, 44.483s building, 0.511s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[22:10:20] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:10:22] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[22:10:31] Starting KUnit Kernel (1/1)...
[22:10:31] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:10:31] ================= ttm_device (5 subtests) ==================
[22:10:31] [PASSED] ttm_device_init_basic
[22:10:31] [PASSED] ttm_device_init_multiple
[22:10:31] [PASSED] ttm_device_fini_basic
[22:10:31] [PASSED] ttm_device_init_no_vma_man
[22:10:31] ================== ttm_device_init_pools ==================
[22:10:31] [PASSED] No DMA allocations, no DMA32 required
[22:10:31] [PASSED] DMA allocations, DMA32 required
[22:10:31] [PASSED] No DMA allocations, DMA32 required
[22:10:31] [PASSED] DMA allocations, no DMA32 required
[22:10:31] ============== [PASSED] ttm_device_init_pools ==============
[22:10:31] =================== [PASSED] ttm_device ====================
[22:10:31] ================== ttm_pool (8 subtests) ===================
[22:10:31] ================== ttm_pool_alloc_basic ===================
[22:10:31] [PASSED] One page
[22:10:31] [PASSED] More than one page
[22:10:31] [PASSED] Above the allocation limit
[22:10:31] [PASSED] One page, with coherent DMA mappings enabled
[22:10:31] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[22:10:31] ============== [PASSED] ttm_pool_alloc_basic ===============
[22:10:31] ============== ttm_pool_alloc_basic_dma_addr ==============
[22:10:31] [PASSED] One page
[22:10:31] [PASSED] More than one page
[22:10:31] [PASSED] Above the allocation limit
[22:10:31] [PASSED] One page, with coherent DMA mappings enabled
[22:10:31] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[22:10:31] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[22:10:31] [PASSED] ttm_pool_alloc_order_caching_match
[22:10:31] [PASSED] ttm_pool_alloc_caching_mismatch
[22:10:31] [PASSED] ttm_pool_alloc_order_mismatch
[22:10:31] [PASSED] ttm_pool_free_dma_alloc
[22:10:31] [PASSED] ttm_pool_free_no_dma_alloc
[22:10:31] [PASSED] ttm_pool_fini_basic
[22:10:31] ==================== [PASSED] ttm_pool =====================
[22:10:31] ================ ttm_resource (8 subtests) =================
[22:10:31] ================= ttm_resource_init_basic =================
[22:10:31] [PASSED] Init resource in TTM_PL_SYSTEM
[22:10:31] [PASSED] Init resource in TTM_PL_VRAM
[22:10:31] [PASSED] Init resource in a private placement
[22:10:31] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[22:10:31] ============= [PASSED] ttm_resource_init_basic =============
[22:10:31] [PASSED] ttm_resource_init_pinned
[22:10:31] [PASSED] ttm_resource_fini_basic
[22:10:31] [PASSED] ttm_resource_manager_init_basic
[22:10:31] [PASSED] ttm_resource_manager_usage_basic
[22:10:31] [PASSED] ttm_resource_manager_set_used_basic
[22:10:31] [PASSED] ttm_sys_man_alloc_basic
[22:10:31] [PASSED] ttm_sys_man_free_basic
[22:10:31] ================== [PASSED] ttm_resource ===================
[22:10:31] =================== ttm_tt (15 subtests) ===================
[22:10:31] ==================== ttm_tt_init_basic ====================
[22:10:31] [PASSED] Page-aligned size
[22:10:31] [PASSED] Extra pages requested
[22:10:31] ================ [PASSED] ttm_tt_init_basic ================
[22:10:31] [PASSED] ttm_tt_init_misaligned
[22:10:31] [PASSED] ttm_tt_fini_basic
[22:10:31] [PASSED] ttm_tt_fini_sg
[22:10:31] [PASSED] ttm_tt_fini_shmem
[22:10:31] [PASSED] ttm_tt_create_basic
[22:10:31] [PASSED] ttm_tt_create_invalid_bo_type
[22:10:31] [PASSED] ttm_tt_create_ttm_exists
[22:10:31] [PASSED] ttm_tt_create_failed
[22:10:31] [PASSED] ttm_tt_destroy_basic
[22:10:31] [PASSED] ttm_tt_populate_null_ttm
[22:10:31] [PASSED] ttm_tt_populate_populated_ttm
[22:10:31] [PASSED] ttm_tt_unpopulate_basic
[22:10:31] [PASSED] ttm_tt_unpopulate_empty_ttm
[22:10:31] [PASSED] ttm_tt_swapin_basic
[22:10:31] ===================== [PASSED] ttm_tt ======================
[22:10:31] =================== ttm_bo (14 subtests) ===================
[22:10:31] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[22:10:31] [PASSED] Cannot be interrupted and sleeps
[22:10:31] [PASSED] Cannot be interrupted, locks straight away
[22:10:31] [PASSED] Can be interrupted, sleeps
[22:10:31] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[22:10:31] [PASSED] ttm_bo_reserve_locked_no_sleep
[22:10:31] [PASSED] ttm_bo_reserve_no_wait_ticket
[22:10:31] [PASSED] ttm_bo_reserve_double_resv
[22:10:31] [PASSED] ttm_bo_reserve_interrupted
[22:10:31] [PASSED] ttm_bo_reserve_deadlock
[22:10:31] [PASSED] ttm_bo_unreserve_basic
[22:10:31] [PASSED] ttm_bo_unreserve_pinned
[22:10:31] [PASSED] ttm_bo_unreserve_bulk
[22:10:31] [PASSED] ttm_bo_fini_basic
[22:10:31] [PASSED] ttm_bo_fini_shared_resv
[22:10:31] [PASSED] ttm_bo_pin_basic
[22:10:31] [PASSED] ttm_bo_pin_unpin_resource
[22:10:31] [PASSED] ttm_bo_multiple_pin_one_unpin
[22:10:31] ===================== [PASSED] ttm_bo ======================
[22:10:31] ============== ttm_bo_validate (21 subtests) ===============
[22:10:31] ============== ttm_bo_init_reserved_sys_man ===============
[22:10:31] [PASSED] Buffer object for userspace
[22:10:31] [PASSED] Kernel buffer object
[22:10:31] [PASSED] Shared buffer object
[22:10:31] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[22:10:31] ============== ttm_bo_init_reserved_mock_man ==============
[22:10:31] [PASSED] Buffer object for userspace
[22:10:31] [PASSED] Kernel buffer object
[22:10:31] [PASSED] Shared buffer object
[22:10:31] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[22:10:31] [PASSED] ttm_bo_init_reserved_resv
[22:10:31] ================== ttm_bo_validate_basic ==================
[22:10:31] [PASSED] Buffer object for userspace
[22:10:31] [PASSED] Kernel buffer object
[22:10:31] [PASSED] Shared buffer object
[22:10:31] ============== [PASSED] ttm_bo_validate_basic ==============
[22:10:31] [PASSED] ttm_bo_validate_invalid_placement
[22:10:31] ============= ttm_bo_validate_same_placement ==============
[22:10:31] [PASSED] System manager
[22:10:31] [PASSED] VRAM manager
[22:10:31] ========= [PASSED] ttm_bo_validate_same_placement ==========
[22:10:31] [PASSED] ttm_bo_validate_failed_alloc
[22:10:31] [PASSED] ttm_bo_validate_pinned
[22:10:31] [PASSED] ttm_bo_validate_busy_placement
[22:10:31] ================ ttm_bo_validate_multihop =================
[22:10:31] [PASSED] Buffer object for userspace
[22:10:31] [PASSED] Kernel buffer object
[22:10:31] [PASSED] Shared buffer object
[22:10:31] ============ [PASSED] ttm_bo_validate_multihop =============
[22:10:31] ========== ttm_bo_validate_no_placement_signaled ==========
[22:10:31] [PASSED] Buffer object in system domain, no page vector
[22:10:31] [PASSED] Buffer object in system domain with an existing page vector
[22:10:31] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[22:10:31] ======== ttm_bo_validate_no_placement_not_signaled ========
[22:10:31] [PASSED] Buffer object for userspace
[22:10:31] [PASSED] Kernel buffer object
[22:10:31] [PASSED] Shared buffer object
[22:10:31] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[22:10:31] [PASSED] ttm_bo_validate_move_fence_signaled
[22:10:32] ========= ttm_bo_validate_move_fence_not_signaled =========
[22:10:32] [PASSED] Waits for GPU
[22:10:32] [PASSED] Tries to lock straight away
[22:10:32] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[22:10:32] [PASSED] ttm_bo_validate_happy_evict
[22:10:32] [PASSED] ttm_bo_validate_all_pinned_evict
[22:10:32] [PASSED] ttm_bo_validate_allowed_only_evict
[22:10:32] [PASSED] ttm_bo_validate_deleted_evict
[22:10:32] [PASSED] ttm_bo_validate_busy_domain_evict
[22:10:32] [PASSED] ttm_bo_validate_evict_gutting
[22:10:32] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[22:10:32] ================= [PASSED] ttm_bo_validate =================
[22:10:32] ============================================================
[22:10:32] Testing complete. Ran 101 tests: passed: 101
[22:10:32] Elapsed time: 11.119s total, 1.520s configuring, 9.383s building, 0.171s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 21+ messages in thread
* ✓ Xe.CI.BAT: success for Enable GSC loading and PXP for PTL (rev3)
2026-01-08 1:13 [PATCH 0/3] Enable GSC loading and PXP for PTL Daniele Ceraolo Spurio
` (10 preceding siblings ...)
2026-01-10 22:10 ` ✓ CI.KUnit: success for Enable GSC loading and PXP for PTL (rev3) Patchwork
@ 2026-01-10 22:53 ` Patchwork
2026-01-10 23:50 ` ✗ Xe.CI.Full: failure " Patchwork
12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-01-10 22:53 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 864 bytes --]
== Series Details ==
Series: Enable GSC loading and PXP for PTL (rev3)
URL : https://patchwork.freedesktop.org/series/159774/
State : success
== Summary ==
CI Bug Log - changes from xe-4362-8b38d6decc6810939f06135b7a84b03e436c87e6_BAT -> xe-pw-159774v3_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-4362-8b38d6decc6810939f06135b7a84b03e436c87e6 -> xe-pw-159774v3
IGT_8694: 8694
xe-4362-8b38d6decc6810939f06135b7a84b03e436c87e6: 8b38d6decc6810939f06135b7a84b03e436c87e6
xe-pw-159774v3: 159774v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/index.html
[-- Attachment #2: Type: text/html, Size: 1412 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread
* ✗ Xe.CI.Full: failure for Enable GSC loading and PXP for PTL (rev3)
2026-01-08 1:13 [PATCH 0/3] Enable GSC loading and PXP for PTL Daniele Ceraolo Spurio
` (11 preceding siblings ...)
2026-01-10 22:53 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-01-10 23:50 ` Patchwork
12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-01-10 23:50 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 25077 bytes --]
== Series Details ==
Series: Enable GSC loading and PXP for PTL (rev3)
URL : https://patchwork.freedesktop.org/series/159774/
State : failure
== Summary ==
CI Bug Log - changes from xe-4362-8b38d6decc6810939f06135b7a84b03e436c87e6_FULL -> xe-pw-159774v3_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-159774v3_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-159774v3_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-159774v3_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
* igt@xe_exec_reset@gt-reset-stress:
- shard-lnl: [PASS][2] -> [DMESG-WARN][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4362-8b38d6decc6810939f06135b7a84b03e436c87e6/shard-lnl-3/igt@xe_exec_reset@gt-reset-stress.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-lnl-3/igt@xe_exec_reset@gt-reset-stress.html
Known issues
------------
Here are the changes found in xe-pw-159774v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-bmg: NOTRUN -> [INCOMPLETE][4] ([Intel XE#6819])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-10/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +12 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#367]) +4 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2887]) +15 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-1/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#3432]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2325])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2252]) +11 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-10/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][12] ([Intel XE#1178] / [Intel XE#3304]) +5 other tests fail
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-2/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-bmg: NOTRUN -> [FAIL][13] ([Intel XE#3304]) +1 other test fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@mei-interface:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2341])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-2/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2320]) +4 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2321])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#1508])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#1340])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#4331])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-10/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2244])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#4422])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#4156])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#776])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#1138])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-2/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2374])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-2/igt@kms_feature_discovery@psr1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2293]) +5 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2311]) +28 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#4141]) +19 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2313]) +31 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [ABORT][31] ([Intel XE#6740]) +1 other test abort
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-1/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#4298])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#6911])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2486])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2393])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-2/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#6886]) +4 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#870])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-2/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2392])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-10/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2505])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-3/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#1406] / [Intel XE#1489]) +10 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#1406] / [Intel XE#2387])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-10/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@psr2-sprite-blt:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +12 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-10/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_rotation_crc@bad-tiling:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#3414] / [Intel XE#3904])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [PASS][44] -> [FAIL][45] ([Intel XE#6361]) +2 other tests fail
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4362-8b38d6decc6810939f06135b7a84b03e436c87e6/shard-lnl-1/igt@kms_setmode@basic@pipe-b-edp-1.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_sharpness_filter@filter-formats:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#6503]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-10/igt@kms_sharpness_filter@filter-formats.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2426])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2450])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-2/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@cmrr:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2168])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-10/igt@kms_vrr@cmrr.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#1499])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#6599])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_eudebug@basic-exec-queues:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#4837]) +5 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-2/igt@xe_eudebug@basic-exec-queues.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#4837] / [Intel XE#6665]) +6 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2322]) +12 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#6874]) +36 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate.html
* igt@xe_exec_system_allocator@many-64k-mmap-free-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#5007])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-2/igt@xe_exec_system_allocator@many-64k-mmap-free-huge-nomemset.html
* igt@xe_exec_system_allocator@process-many-stride-malloc-bo-unmap:
- shard-bmg: NOTRUN -> [ABORT][57] ([Intel XE#5545])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-2/igt@xe_exec_system_allocator@process-many-stride-malloc-bo-unmap.html
* igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#4943]) +28 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset.html
* igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#6281])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-10/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-bmg: NOTRUN -> [ABORT][60] ([Intel XE#5466])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_multigpu_svm@mgpu-latency-copy-basic:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#6964]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@xe_multigpu_svm@mgpu-latency-copy-basic.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2248])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_peer2peer@read:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2427] / [Intel XE#6953])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-10/igt@xe_peer2peer@read.html
* igt@xe_pm@d3hot-i2c:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#5742])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-2/igt@xe_pm@d3hot-i2c.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2284]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-10/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#4733]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-9/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#944])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-2/igt@xe_query@multigpu-query-invalid-extension.html
#### Possible fixes ####
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3:
- shard-bmg: [FAIL][68] -> [PASS][69] +1 other test pass
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4362-8b38d6decc6810939f06135b7a84b03e436c87e6/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [FAIL][70] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][71] +1 other test pass
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4362-8b38d6decc6810939f06135b7a84b03e436c87e6/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
#### Warnings ####
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][72] ([Intel XE#3544]) -> [SKIP][73] ([Intel XE#3374] / [Intel XE#3544])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4362-8b38d6decc6810939f06135b7a84b03e436c87e6/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
[Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740
[Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4362-8b38d6decc6810939f06135b7a84b03e436c87e6 -> xe-pw-159774v3
IGT_8694: 8694
xe-4362-8b38d6decc6810939f06135b7a84b03e436c87e6: 8b38d6decc6810939f06135b7a84b03e436c87e6
xe-pw-159774v3: 159774v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/index.html
[-- Attachment #2: Type: text/html, Size: 27554 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [PATCH 0/3] Enable GSC loading and PXP for PTL
2026-01-08 14:36 ` [PATCH 0/3] " Rodrigo Vivi
@ 2026-01-12 18:03 ` Daniele Ceraolo Spurio
0 siblings, 0 replies; 21+ messages in thread
From: Daniele Ceraolo Spurio @ 2026-01-12 18:03 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: intel-xe, Julia Filipchuk
[-- Attachment #1: Type: text/plain, Size: 2234 bytes --]
On 1/8/2026 6:36 AM, Rodrigo Vivi wrote:
> On Wed, Jan 07, 2026 at 05:13:41PM -0800, Daniele Ceraolo Spurio wrote:
>> GSC loading is required for content protection features (PXP, HDCP).
>>
>> Since PTL force_probe was removed before we added the FW, the driver
>> needs to keep working if the FW is not found. Therefore, the code has
>> been modified to allow the GSC FW to be missing for BMG and newer HW
>> (older HW platforms require GSC for power management, so on those we
>> don't want to continue if the FW is missing).
>>
>> Note that I haven't pushed the FW yet. This is on purpose, as I want to
>> get CI with the FW missing to test that case. Once the patches have been
>> reviewed and tested without the FW, I'll push the FW to intel-staging
>> and re-trigger CI to make sure everything works with the FW as well.
>
> Acked-by: Rodrigo Vivi<rodrigo.vivi@intel.com>
>
> on both, the optional approach proposed by the first patch and on
> the CI approach you took here.
I've re-run CI and no regression have popped up both without [1] and
with [2] the FW.
[1] https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v1/index.html?
xe 0000:00:02.0: [drm] Tile0: GT1: GSC firmware xe/ptl_gsc_1.bin not found
xe 0000:00:02.0: [drm] Tile0: GT1: GSC firmware(s) can be downloaded from ...
[2] https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159774v3/index.html?
xe 0000:00:02.0: [drm] Tile0: GT1: Using GSC firmware from xe/ptl_gsc_1.bin version 105.0.2.1301
I've also sent the PR for the FW to linux-firmware:
https://gitlab.com/kernel-firmware/linux-firmware/-/merge_requests/858
So I'm going to go ahead and merge this.
Daniele
>
>> Cc: Rodrigo Vivi<rodrigo.vivi@intel.com>
>> Cc: Julia Filipchuk<julia.filipchuk@intel.com>
>>
>> Daniele Ceraolo Spurio (3):
>> drm/xe/gsc: Make GSC FW load optional for newer platforms
>> drm/xe/ptl: Define GSC for PTL
>> drm/xe/ptl: Enable PXP for PTL
>>
>> drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 2 +-
>> drivers/gpu/drm/xe/xe_gsc.c | 13 +++++++------
>> drivers/gpu/drm/xe/xe_pci.c | 1 +
>> drivers/gpu/drm/xe/xe_uc_fw.c | 11 ++++++++---
>> 4 files changed, 17 insertions(+), 10 deletions(-)
>>
>> --
>> 2.43.0
>>
[-- Attachment #2: Type: text/html, Size: 4472 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread
end of thread, other threads:[~2026-01-12 18:04 UTC | newest]
Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-08 1:13 [PATCH 0/3] Enable GSC loading and PXP for PTL Daniele Ceraolo Spurio
2026-01-08 1:13 ` [PATCH 1/3] drm/xe/gsc: Make GSC FW load optional for newer platforms Daniele Ceraolo Spurio
2026-01-08 14:35 ` Rodrigo Vivi
2026-01-08 16:36 ` Daniele Ceraolo Spurio
2026-01-08 20:27 ` Rodrigo Vivi
2026-01-09 15:52 ` Julia Filipchuk
2026-01-08 1:13 ` [PATCH 2/3] drm/xe/ptl: Define GSC for PTL Daniele Ceraolo Spurio
2026-01-09 15:41 ` Julia Filipchuk
2026-01-08 1:13 ` [PATCH 3/3] drm/xe/ptl: Enable PXP " Daniele Ceraolo Spurio
2026-01-08 14:35 ` Rodrigo Vivi
2026-01-08 1:20 ` ✓ CI.KUnit: success for Enable GSC loading and " Patchwork
2026-01-08 1:53 ` ✓ Xe.CI.BAT: " Patchwork
2026-01-08 3:23 ` ✗ Xe.CI.Full: failure " Patchwork
2026-01-08 14:36 ` [PATCH 0/3] " Rodrigo Vivi
2026-01-12 18:03 ` Daniele Ceraolo Spurio
2026-01-10 0:28 ` ✓ CI.KUnit: success for Enable GSC loading and PXP for PTL (rev2) Patchwork
2026-01-10 1:01 ` ✓ Xe.CI.BAT: " Patchwork
2026-01-10 6:49 ` ✗ Xe.CI.Full: failure " Patchwork
2026-01-10 22:10 ` ✓ CI.KUnit: success for Enable GSC loading and PXP for PTL (rev3) Patchwork
2026-01-10 22:53 ` ✓ Xe.CI.BAT: " Patchwork
2026-01-10 23:50 ` ✗ Xe.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox