* [PATCH] drm/i915/psr: Fixes for Dell XPS DA14260 quirk
@ 2026-03-20 8:04 Jouni Högander
2026-03-20 8:46 ` Jani Nikula
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Jouni Högander @ 2026-03-20 8:04 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander, Mika Kahola
Dell seems to be changing device ID even within same device model. Due to
this we need to ignore device ID when applying quirk for Dell XPS 14
DA14260. Do this by adding DEVICE_ID_ANY and assign it to Dell XPS 14
DA14260 quirk. Also apply the quirk only for eDP Panel Replay.
Fixes: 45c77d4bf8d4 ("drm/i915/psr: Disable Panel Replay on Dell XPS 14 DA14260 as a quirk")
Cc: Mika Kahola <mika.kahola@intel.com>
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
drivers/gpu/drm/i915/display/intel_psr.c | 3 ++-
drivers/gpu/drm/i915/display/intel_quirks.c | 16 ++++++++++------
drivers/gpu/drm/i915/display/intel_quirks.h | 2 +-
3 files changed, 13 insertions(+), 8 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index b319e5bd6274..2f1b48cd8efd 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -610,7 +610,8 @@ static void _panel_replay_init_dpcd(struct intel_dp *intel_dp, struct intel_conn
if (intel_dp->mst_detect == DRM_DP_MST)
return;
- if (intel_has_dpcd_quirk(intel_dp, QUIRK_DISABLE_PANEL_REPLAY)) {
+ if (intel_dp_is_edp(intel_dp) &&
+ intel_has_dpcd_quirk(intel_dp, QUIRK_DISABLE_EDP_PANEL_REPLAY)) {
drm_dbg_kms(display->drm,
"Panel Replay support not currently available for this setup\n");
return;
diff --git a/drivers/gpu/drm/i915/display/intel_quirks.c b/drivers/gpu/drm/i915/display/intel_quirks.c
index 8f1bf8f418ec..883f297d4b83 100644
--- a/drivers/gpu/drm/i915/display/intel_quirks.c
+++ b/drivers/gpu/drm/i915/display/intel_quirks.c
@@ -86,11 +86,11 @@ static void quirk_edp_limit_rate_hbr2(struct intel_display *display)
drm_info(display->drm, "Applying eDP Limit rate to HBR2 quirk\n");
}
-static void quirk_disable_panel_replay(struct intel_dp *intel_dp)
+static void quirk_disable_edp_panel_replay(struct intel_dp *intel_dp)
{
struct intel_display *display = to_intel_display(intel_dp);
- intel_set_dpcd_quirk(intel_dp, QUIRK_DISABLE_PANEL_REPLAY);
+ intel_set_dpcd_quirk(intel_dp, QUIRK_DISABLE_EDP_PANEL_REPLAY);
drm_info(display->drm, "Applying disable Panel Replay quirk\n");
}
@@ -116,6 +116,8 @@ struct intel_dpcd_quirk {
#define SINK_DEVICE_ID_ANY SINK_DEVICE_ID(0, 0, 0, 0, 0, 0)
+#define DEVICE_ID_ANY 0
+
/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
struct intel_dmi_quirk {
void (*hook)(struct intel_display *display);
@@ -261,11 +263,11 @@ static const struct intel_dpcd_quirk intel_dpcd_quirks[] = {
},
/* Dell XPS 14 DA14260 */
{
- .device = 0xb080,
+ .device = DEVICE_ID_ANY,
.subsystem_vendor = 0x1028,
.subsystem_device = 0x0db9,
.sink_oui = SINK_OUI(0x00, 0x22, 0xb9),
- .hook = quirk_disable_panel_replay,
+ .hook = quirk_disable_edp_panel_replay,
},
};
@@ -277,7 +279,8 @@ void intel_init_quirks(struct intel_display *display)
for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
struct intel_quirk *q = &intel_quirks[i];
- if (d->device == q->device &&
+ if ((d->device == q->device ||
+ q->device == DEVICE_ID_ANY) &&
(d->subsystem_vendor == q->subsystem_vendor ||
q->subsystem_vendor == PCI_ANY_ID) &&
(d->subsystem_device == q->subsystem_device ||
@@ -300,7 +303,8 @@ void intel_init_dpcd_quirks(struct intel_dp *intel_dp,
for (i = 0; i < ARRAY_SIZE(intel_dpcd_quirks); i++) {
const struct intel_dpcd_quirk *q = &intel_dpcd_quirks[i];
- if (d->device == q->device &&
+ if ((d->device == q->device ||
+ q->device == DEVICE_ID_ANY) &&
(d->subsystem_vendor == q->subsystem_vendor ||
q->subsystem_vendor == PCI_ANY_ID) &&
(d->subsystem_device == q->subsystem_device ||
diff --git a/drivers/gpu/drm/i915/display/intel_quirks.h b/drivers/gpu/drm/i915/display/intel_quirks.h
index 77e490caed0d..83214eb94b0c 100644
--- a/drivers/gpu/drm/i915/display/intel_quirks.h
+++ b/drivers/gpu/drm/i915/display/intel_quirks.h
@@ -21,7 +21,7 @@ enum intel_quirk_id {
QUIRK_NO_PPS_BACKLIGHT_POWER_HOOK,
QUIRK_FW_SYNC_LEN,
QUIRK_EDP_LIMIT_RATE_HBR2,
- QUIRK_DISABLE_PANEL_REPLAY,
+ QUIRK_DISABLE_EDP_PANEL_REPLAY,
};
void intel_init_quirks(struct intel_display *display);
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH] drm/i915/psr: Fixes for Dell XPS DA14260 quirk
2026-03-20 8:04 [PATCH] drm/i915/psr: Fixes for Dell XPS DA14260 quirk Jouni Högander
@ 2026-03-20 8:46 ` Jani Nikula
2026-03-20 12:03 ` Hogander, Jouni
2026-03-20 9:09 ` ✓ CI.KUnit: success for " Patchwork
` (4 subsequent siblings)
5 siblings, 1 reply; 9+ messages in thread
From: Jani Nikula @ 2026-03-20 8:46 UTC (permalink / raw)
To: Jouni Högander, intel-gfx, intel-xe; +Cc: Jouni Högander, Mika Kahola
On Fri, 20 Mar 2026, Jouni Högander <jouni.hogander@intel.com> wrote:
> Dell seems to be changing device ID even within same device model. Due to
> this we need to ignore device ID when applying quirk for Dell XPS 14
> DA14260. Do this by adding DEVICE_ID_ANY and assign it to Dell XPS 14
> DA14260 quirk. Also apply the quirk only for eDP Panel Replay.
>
> Fixes: 45c77d4bf8d4 ("drm/i915/psr: Disable Panel Replay on Dell XPS 14 DA14260 as a quirk")
> Cc: Mika Kahola <mika.kahola@intel.com>
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_psr.c | 3 ++-
> drivers/gpu/drm/i915/display/intel_quirks.c | 16 ++++++++++------
> drivers/gpu/drm/i915/display/intel_quirks.h | 2 +-
> 3 files changed, 13 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
> index b319e5bd6274..2f1b48cd8efd 100644
> --- a/drivers/gpu/drm/i915/display/intel_psr.c
> +++ b/drivers/gpu/drm/i915/display/intel_psr.c
> @@ -610,7 +610,8 @@ static void _panel_replay_init_dpcd(struct intel_dp *intel_dp, struct intel_conn
> if (intel_dp->mst_detect == DRM_DP_MST)
> return;
>
> - if (intel_has_dpcd_quirk(intel_dp, QUIRK_DISABLE_PANEL_REPLAY)) {
> + if (intel_dp_is_edp(intel_dp) &&
> + intel_has_dpcd_quirk(intel_dp, QUIRK_DISABLE_EDP_PANEL_REPLAY)) {
I'll note that intel_has_dpcd_quirk() could internally limit each quirk
for eDP/non-eDP. But that's for future.
BR,
Jani.
> drm_dbg_kms(display->drm,
> "Panel Replay support not currently available for this setup\n");
> return;
> diff --git a/drivers/gpu/drm/i915/display/intel_quirks.c b/drivers/gpu/drm/i915/display/intel_quirks.c
> index 8f1bf8f418ec..883f297d4b83 100644
> --- a/drivers/gpu/drm/i915/display/intel_quirks.c
> +++ b/drivers/gpu/drm/i915/display/intel_quirks.c
> @@ -86,11 +86,11 @@ static void quirk_edp_limit_rate_hbr2(struct intel_display *display)
> drm_info(display->drm, "Applying eDP Limit rate to HBR2 quirk\n");
> }
>
> -static void quirk_disable_panel_replay(struct intel_dp *intel_dp)
> +static void quirk_disable_edp_panel_replay(struct intel_dp *intel_dp)
> {
> struct intel_display *display = to_intel_display(intel_dp);
>
> - intel_set_dpcd_quirk(intel_dp, QUIRK_DISABLE_PANEL_REPLAY);
> + intel_set_dpcd_quirk(intel_dp, QUIRK_DISABLE_EDP_PANEL_REPLAY);
> drm_info(display->drm, "Applying disable Panel Replay quirk\n");
> }
>
> @@ -116,6 +116,8 @@ struct intel_dpcd_quirk {
>
> #define SINK_DEVICE_ID_ANY SINK_DEVICE_ID(0, 0, 0, 0, 0, 0)
>
> +#define DEVICE_ID_ANY 0
> +
> /* For systems that don't have a meaningful PCI subdevice/subvendor ID */
> struct intel_dmi_quirk {
> void (*hook)(struct intel_display *display);
> @@ -261,11 +263,11 @@ static const struct intel_dpcd_quirk intel_dpcd_quirks[] = {
> },
> /* Dell XPS 14 DA14260 */
> {
> - .device = 0xb080,
> + .device = DEVICE_ID_ANY,
> .subsystem_vendor = 0x1028,
> .subsystem_device = 0x0db9,
> .sink_oui = SINK_OUI(0x00, 0x22, 0xb9),
> - .hook = quirk_disable_panel_replay,
> + .hook = quirk_disable_edp_panel_replay,
> },
> };
>
> @@ -277,7 +279,8 @@ void intel_init_quirks(struct intel_display *display)
> for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
> struct intel_quirk *q = &intel_quirks[i];
>
> - if (d->device == q->device &&
> + if ((d->device == q->device ||
> + q->device == DEVICE_ID_ANY) &&
> (d->subsystem_vendor == q->subsystem_vendor ||
> q->subsystem_vendor == PCI_ANY_ID) &&
> (d->subsystem_device == q->subsystem_device ||
> @@ -300,7 +303,8 @@ void intel_init_dpcd_quirks(struct intel_dp *intel_dp,
> for (i = 0; i < ARRAY_SIZE(intel_dpcd_quirks); i++) {
> const struct intel_dpcd_quirk *q = &intel_dpcd_quirks[i];
>
> - if (d->device == q->device &&
> + if ((d->device == q->device ||
> + q->device == DEVICE_ID_ANY) &&
> (d->subsystem_vendor == q->subsystem_vendor ||
> q->subsystem_vendor == PCI_ANY_ID) &&
> (d->subsystem_device == q->subsystem_device ||
> diff --git a/drivers/gpu/drm/i915/display/intel_quirks.h b/drivers/gpu/drm/i915/display/intel_quirks.h
> index 77e490caed0d..83214eb94b0c 100644
> --- a/drivers/gpu/drm/i915/display/intel_quirks.h
> +++ b/drivers/gpu/drm/i915/display/intel_quirks.h
> @@ -21,7 +21,7 @@ enum intel_quirk_id {
> QUIRK_NO_PPS_BACKLIGHT_POWER_HOOK,
> QUIRK_FW_SYNC_LEN,
> QUIRK_EDP_LIMIT_RATE_HBR2,
> - QUIRK_DISABLE_PANEL_REPLAY,
> + QUIRK_DISABLE_EDP_PANEL_REPLAY,
> };
>
> void intel_init_quirks(struct intel_display *display);
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ CI.KUnit: success for drm/i915/psr: Fixes for Dell XPS DA14260 quirk
2026-03-20 8:04 [PATCH] drm/i915/psr: Fixes for Dell XPS DA14260 quirk Jouni Högander
2026-03-20 8:46 ` Jani Nikula
@ 2026-03-20 9:09 ` Patchwork
2026-03-20 9:44 ` ✓ Xe.CI.BAT: " Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-03-20 9:09 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-xe
== Series Details ==
Series: drm/i915/psr: Fixes for Dell XPS DA14260 quirk
URL : https://patchwork.freedesktop.org/series/163567/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[09:08:30] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:08: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
[09:09:05] Starting KUnit Kernel (1/1)...
[09:09:05] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:09:06] ================== guc_buf (11 subtests) ===================
[09:09:06] [PASSED] test_smallest
[09:09:06] [PASSED] test_largest
[09:09:06] [PASSED] test_granular
[09:09:06] [PASSED] test_unique
[09:09:06] [PASSED] test_overlap
[09:09:06] [PASSED] test_reusable
[09:09:06] [PASSED] test_too_big
[09:09:06] [PASSED] test_flush
[09:09:06] [PASSED] test_lookup
[09:09:06] [PASSED] test_data
[09:09:06] [PASSED] test_class
[09:09:06] ===================== [PASSED] guc_buf =====================
[09:09:06] =================== guc_dbm (7 subtests) ===================
[09:09:06] [PASSED] test_empty
[09:09:06] [PASSED] test_default
[09:09:06] ======================== test_size ========================
[09:09:06] [PASSED] 4
[09:09:06] [PASSED] 8
[09:09:06] [PASSED] 32
[09:09:06] [PASSED] 256
[09:09:06] ==================== [PASSED] test_size ====================
[09:09:06] ======================= test_reuse ========================
[09:09:06] [PASSED] 4
[09:09:06] [PASSED] 8
[09:09:06] [PASSED] 32
[09:09:06] [PASSED] 256
[09:09:06] =================== [PASSED] test_reuse ====================
[09:09:06] =================== test_range_overlap ====================
[09:09:06] [PASSED] 4
[09:09:06] [PASSED] 8
[09:09:06] [PASSED] 32
[09:09:06] [PASSED] 256
[09:09:06] =============== [PASSED] test_range_overlap ================
[09:09:06] =================== test_range_compact ====================
[09:09:06] [PASSED] 4
[09:09:06] [PASSED] 8
[09:09:06] [PASSED] 32
[09:09:06] [PASSED] 256
[09:09:06] =============== [PASSED] test_range_compact ================
[09:09:06] ==================== test_range_spare =====================
[09:09:06] [PASSED] 4
[09:09:06] [PASSED] 8
[09:09:06] [PASSED] 32
[09:09:06] [PASSED] 256
[09:09:06] ================ [PASSED] test_range_spare =================
[09:09:06] ===================== [PASSED] guc_dbm =====================
[09:09:06] =================== guc_idm (6 subtests) ===================
[09:09:06] [PASSED] bad_init
[09:09:06] [PASSED] no_init
[09:09:06] [PASSED] init_fini
[09:09:06] [PASSED] check_used
[09:09:06] [PASSED] check_quota
[09:09:06] [PASSED] check_all
[09:09:06] ===================== [PASSED] guc_idm =====================
[09:09:06] ================== no_relay (3 subtests) ===================
[09:09:06] [PASSED] xe_drops_guc2pf_if_not_ready
[09:09:06] [PASSED] xe_drops_guc2vf_if_not_ready
[09:09:06] [PASSED] xe_rejects_send_if_not_ready
[09:09:06] ==================== [PASSED] no_relay =====================
[09:09:06] ================== pf_relay (14 subtests) ==================
[09:09:06] [PASSED] pf_rejects_guc2pf_too_short
[09:09:06] [PASSED] pf_rejects_guc2pf_too_long
[09:09:06] [PASSED] pf_rejects_guc2pf_no_payload
[09:09:06] [PASSED] pf_fails_no_payload
[09:09:06] [PASSED] pf_fails_bad_origin
[09:09:06] [PASSED] pf_fails_bad_type
[09:09:06] [PASSED] pf_txn_reports_error
[09:09:06] [PASSED] pf_txn_sends_pf2guc
[09:09:06] [PASSED] pf_sends_pf2guc
[09:09:06] [SKIPPED] pf_loopback_nop
[09:09:06] [SKIPPED] pf_loopback_echo
[09:09:06] [SKIPPED] pf_loopback_fail
[09:09:06] [SKIPPED] pf_loopback_busy
[09:09:06] [SKIPPED] pf_loopback_retry
[09:09:06] ==================== [PASSED] pf_relay =====================
[09:09:06] ================== vf_relay (3 subtests) ===================
[09:09:06] [PASSED] vf_rejects_guc2vf_too_short
[09:09:06] [PASSED] vf_rejects_guc2vf_too_long
[09:09:06] [PASSED] vf_rejects_guc2vf_no_payload
[09:09:06] ==================== [PASSED] vf_relay =====================
[09:09:06] ================ pf_gt_config (9 subtests) =================
[09:09:06] [PASSED] fair_contexts_1vf
[09:09:06] [PASSED] fair_doorbells_1vf
[09:09:06] [PASSED] fair_ggtt_1vf
[09:09:06] ====================== fair_vram_1vf ======================
[09:09:06] [PASSED] 3.50 GiB
[09:09:06] [PASSED] 11.5 GiB
[09:09:06] [PASSED] 15.5 GiB
[09:09:06] [PASSED] 31.5 GiB
[09:09:06] [PASSED] 63.5 GiB
[09:09:06] [PASSED] 1.91 GiB
[09:09:06] ================== [PASSED] fair_vram_1vf ==================
[09:09:06] ================ fair_vram_1vf_admin_only =================
[09:09:06] [PASSED] 3.50 GiB
[09:09:06] [PASSED] 11.5 GiB
[09:09:06] [PASSED] 15.5 GiB
[09:09:06] [PASSED] 31.5 GiB
[09:09:06] [PASSED] 63.5 GiB
[09:09:06] [PASSED] 1.91 GiB
[09:09:06] ============ [PASSED] fair_vram_1vf_admin_only =============
[09:09:06] ====================== fair_contexts ======================
[09:09:06] [PASSED] 1 VF
[09:09:06] [PASSED] 2 VFs
[09:09:06] [PASSED] 3 VFs
[09:09:06] [PASSED] 4 VFs
[09:09:06] [PASSED] 5 VFs
[09:09:06] [PASSED] 6 VFs
[09:09:06] [PASSED] 7 VFs
[09:09:06] [PASSED] 8 VFs
[09:09:06] [PASSED] 9 VFs
[09:09:06] [PASSED] 10 VFs
[09:09:06] [PASSED] 11 VFs
[09:09:06] [PASSED] 12 VFs
[09:09:06] [PASSED] 13 VFs
[09:09:06] [PASSED] 14 VFs
[09:09:06] [PASSED] 15 VFs
[09:09:06] [PASSED] 16 VFs
[09:09:06] [PASSED] 17 VFs
[09:09:06] [PASSED] 18 VFs
[09:09:06] [PASSED] 19 VFs
[09:09:06] [PASSED] 20 VFs
[09:09:06] [PASSED] 21 VFs
[09:09:06] [PASSED] 22 VFs
[09:09:06] [PASSED] 23 VFs
[09:09:06] [PASSED] 24 VFs
[09:09:06] [PASSED] 25 VFs
[09:09:06] [PASSED] 26 VFs
[09:09:06] [PASSED] 27 VFs
[09:09:06] [PASSED] 28 VFs
[09:09:06] [PASSED] 29 VFs
[09:09:06] [PASSED] 30 VFs
[09:09:06] [PASSED] 31 VFs
[09:09:06] [PASSED] 32 VFs
[09:09:06] [PASSED] 33 VFs
[09:09:06] [PASSED] 34 VFs
[09:09:06] [PASSED] 35 VFs
[09:09:06] [PASSED] 36 VFs
[09:09:06] [PASSED] 37 VFs
[09:09:06] [PASSED] 38 VFs
[09:09:06] [PASSED] 39 VFs
[09:09:06] [PASSED] 40 VFs
[09:09:06] [PASSED] 41 VFs
[09:09:06] [PASSED] 42 VFs
[09:09:06] [PASSED] 43 VFs
[09:09:06] [PASSED] 44 VFs
[09:09:06] [PASSED] 45 VFs
[09:09:06] [PASSED] 46 VFs
[09:09:06] [PASSED] 47 VFs
[09:09:06] [PASSED] 48 VFs
[09:09:06] [PASSED] 49 VFs
[09:09:06] [PASSED] 50 VFs
[09:09:06] [PASSED] 51 VFs
[09:09:06] [PASSED] 52 VFs
[09:09:06] [PASSED] 53 VFs
[09:09:06] [PASSED] 54 VFs
[09:09:06] [PASSED] 55 VFs
[09:09:06] [PASSED] 56 VFs
[09:09:06] [PASSED] 57 VFs
[09:09:06] [PASSED] 58 VFs
[09:09:06] [PASSED] 59 VFs
[09:09:06] [PASSED] 60 VFs
[09:09:06] [PASSED] 61 VFs
[09:09:06] [PASSED] 62 VFs
[09:09:06] [PASSED] 63 VFs
[09:09:06] ================== [PASSED] fair_contexts ==================
[09:09:06] ===================== fair_doorbells ======================
[09:09:06] [PASSED] 1 VF
[09:09:06] [PASSED] 2 VFs
[09:09:06] [PASSED] 3 VFs
[09:09:06] [PASSED] 4 VFs
[09:09:06] [PASSED] 5 VFs
[09:09:06] [PASSED] 6 VFs
[09:09:06] [PASSED] 7 VFs
[09:09:06] [PASSED] 8 VFs
[09:09:06] [PASSED] 9 VFs
[09:09:06] [PASSED] 10 VFs
[09:09:06] [PASSED] 11 VFs
[09:09:06] [PASSED] 12 VFs
[09:09:06] [PASSED] 13 VFs
[09:09:06] [PASSED] 14 VFs
[09:09:06] [PASSED] 15 VFs
[09:09:06] [PASSED] 16 VFs
[09:09:06] [PASSED] 17 VFs
[09:09:06] [PASSED] 18 VFs
[09:09:06] [PASSED] 19 VFs
[09:09:06] [PASSED] 20 VFs
[09:09:06] [PASSED] 21 VFs
[09:09:06] [PASSED] 22 VFs
[09:09:06] [PASSED] 23 VFs
[09:09:06] [PASSED] 24 VFs
[09:09:06] [PASSED] 25 VFs
[09:09:06] [PASSED] 26 VFs
[09:09:06] [PASSED] 27 VFs
[09:09:06] [PASSED] 28 VFs
[09:09:06] [PASSED] 29 VFs
[09:09:06] [PASSED] 30 VFs
[09:09:06] [PASSED] 31 VFs
[09:09:06] [PASSED] 32 VFs
[09:09:06] [PASSED] 33 VFs
[09:09:06] [PASSED] 34 VFs
[09:09:06] [PASSED] 35 VFs
[09:09:06] [PASSED] 36 VFs
[09:09:06] [PASSED] 37 VFs
[09:09:06] [PASSED] 38 VFs
[09:09:06] [PASSED] 39 VFs
[09:09:06] [PASSED] 40 VFs
[09:09:06] [PASSED] 41 VFs
[09:09:06] [PASSED] 42 VFs
[09:09:06] [PASSED] 43 VFs
[09:09:06] [PASSED] 44 VFs
[09:09:06] [PASSED] 45 VFs
[09:09:06] [PASSED] 46 VFs
[09:09:06] [PASSED] 47 VFs
[09:09:06] [PASSED] 48 VFs
[09:09:06] [PASSED] 49 VFs
[09:09:06] [PASSED] 50 VFs
[09:09:06] [PASSED] 51 VFs
[09:09:06] [PASSED] 52 VFs
[09:09:06] [PASSED] 53 VFs
[09:09:06] [PASSED] 54 VFs
[09:09:06] [PASSED] 55 VFs
[09:09:06] [PASSED] 56 VFs
[09:09:06] [PASSED] 57 VFs
[09:09:06] [PASSED] 58 VFs
[09:09:06] [PASSED] 59 VFs
[09:09:06] [PASSED] 60 VFs
[09:09:06] [PASSED] 61 VFs
[09:09:06] [PASSED] 62 VFs
[09:09:06] [PASSED] 63 VFs
[09:09:06] ================= [PASSED] fair_doorbells ==================
[09:09:06] ======================== fair_ggtt ========================
[09:09:06] [PASSED] 1 VF
[09:09:06] [PASSED] 2 VFs
[09:09:06] [PASSED] 3 VFs
[09:09:06] [PASSED] 4 VFs
[09:09:06] [PASSED] 5 VFs
[09:09:06] [PASSED] 6 VFs
[09:09:06] [PASSED] 7 VFs
[09:09:06] [PASSED] 8 VFs
[09:09:06] [PASSED] 9 VFs
[09:09:06] [PASSED] 10 VFs
[09:09:06] [PASSED] 11 VFs
[09:09:06] [PASSED] 12 VFs
[09:09:06] [PASSED] 13 VFs
[09:09:06] [PASSED] 14 VFs
[09:09:06] [PASSED] 15 VFs
[09:09:06] [PASSED] 16 VFs
[09:09:06] [PASSED] 17 VFs
[09:09:06] [PASSED] 18 VFs
[09:09:06] [PASSED] 19 VFs
[09:09:06] [PASSED] 20 VFs
[09:09:06] [PASSED] 21 VFs
[09:09:06] [PASSED] 22 VFs
[09:09:06] [PASSED] 23 VFs
[09:09:06] [PASSED] 24 VFs
[09:09:06] [PASSED] 25 VFs
[09:09:06] [PASSED] 26 VFs
[09:09:06] [PASSED] 27 VFs
[09:09:06] [PASSED] 28 VFs
[09:09:06] [PASSED] 29 VFs
[09:09:06] [PASSED] 30 VFs
[09:09:06] [PASSED] 31 VFs
[09:09:06] [PASSED] 32 VFs
[09:09:06] [PASSED] 33 VFs
[09:09:06] [PASSED] 34 VFs
[09:09:06] [PASSED] 35 VFs
[09:09:06] [PASSED] 36 VFs
[09:09:06] [PASSED] 37 VFs
[09:09:06] [PASSED] 38 VFs
[09:09:06] [PASSED] 39 VFs
[09:09:06] [PASSED] 40 VFs
[09:09:06] [PASSED] 41 VFs
[09:09:06] [PASSED] 42 VFs
[09:09:06] [PASSED] 43 VFs
[09:09:06] [PASSED] 44 VFs
[09:09:06] [PASSED] 45 VFs
[09:09:06] [PASSED] 46 VFs
[09:09:06] [PASSED] 47 VFs
[09:09:06] [PASSED] 48 VFs
[09:09:06] [PASSED] 49 VFs
[09:09:06] [PASSED] 50 VFs
[09:09:06] [PASSED] 51 VFs
[09:09:06] [PASSED] 52 VFs
[09:09:06] [PASSED] 53 VFs
[09:09:06] [PASSED] 54 VFs
[09:09:06] [PASSED] 55 VFs
[09:09:06] [PASSED] 56 VFs
[09:09:06] [PASSED] 57 VFs
[09:09:06] [PASSED] 58 VFs
[09:09:06] [PASSED] 59 VFs
[09:09:06] [PASSED] 60 VFs
[09:09:06] [PASSED] 61 VFs
[09:09:06] [PASSED] 62 VFs
[09:09:06] [PASSED] 63 VFs
[09:09:06] ==================== [PASSED] fair_ggtt ====================
[09:09:06] ======================== fair_vram ========================
[09:09:06] [PASSED] 1 VF
[09:09:06] [PASSED] 2 VFs
[09:09:06] [PASSED] 3 VFs
[09:09:06] [PASSED] 4 VFs
[09:09:06] [PASSED] 5 VFs
[09:09:06] [PASSED] 6 VFs
[09:09:06] [PASSED] 7 VFs
[09:09:06] [PASSED] 8 VFs
[09:09:06] [PASSED] 9 VFs
[09:09:06] [PASSED] 10 VFs
[09:09:06] [PASSED] 11 VFs
[09:09:06] [PASSED] 12 VFs
[09:09:06] [PASSED] 13 VFs
[09:09:06] [PASSED] 14 VFs
[09:09:06] [PASSED] 15 VFs
[09:09:06] [PASSED] 16 VFs
[09:09:06] [PASSED] 17 VFs
[09:09:06] [PASSED] 18 VFs
[09:09:06] [PASSED] 19 VFs
[09:09:06] [PASSED] 20 VFs
[09:09:06] [PASSED] 21 VFs
[09:09:06] [PASSED] 22 VFs
[09:09:06] [PASSED] 23 VFs
[09:09:06] [PASSED] 24 VFs
[09:09:06] [PASSED] 25 VFs
[09:09:06] [PASSED] 26 VFs
[09:09:06] [PASSED] 27 VFs
[09:09:06] [PASSED] 28 VFs
[09:09:06] [PASSED] 29 VFs
[09:09:06] [PASSED] 30 VFs
[09:09:06] [PASSED] 31 VFs
[09:09:06] [PASSED] 32 VFs
[09:09:06] [PASSED] 33 VFs
[09:09:06] [PASSED] 34 VFs
[09:09:06] [PASSED] 35 VFs
[09:09:06] [PASSED] 36 VFs
[09:09:06] [PASSED] 37 VFs
[09:09:06] [PASSED] 38 VFs
[09:09:06] [PASSED] 39 VFs
[09:09:06] [PASSED] 40 VFs
[09:09:06] [PASSED] 41 VFs
[09:09:06] [PASSED] 42 VFs
[09:09:06] [PASSED] 43 VFs
[09:09:06] [PASSED] 44 VFs
[09:09:06] [PASSED] 45 VFs
[09:09:06] [PASSED] 46 VFs
[09:09:06] [PASSED] 47 VFs
[09:09:06] [PASSED] 48 VFs
[09:09:06] [PASSED] 49 VFs
[09:09:06] [PASSED] 50 VFs
[09:09:06] [PASSED] 51 VFs
[09:09:06] [PASSED] 52 VFs
[09:09:06] [PASSED] 53 VFs
[09:09:06] [PASSED] 54 VFs
[09:09:06] [PASSED] 55 VFs
[09:09:06] [PASSED] 56 VFs
[09:09:06] [PASSED] 57 VFs
[09:09:06] [PASSED] 58 VFs
[09:09:06] [PASSED] 59 VFs
[09:09:06] [PASSED] 60 VFs
[09:09:06] [PASSED] 61 VFs
[09:09:06] [PASSED] 62 VFs
[09:09:06] [PASSED] 63 VFs
[09:09:06] ==================== [PASSED] fair_vram ====================
[09:09:06] ================== [PASSED] pf_gt_config ===================
[09:09:06] ===================== lmtt (1 subtest) =====================
[09:09:06] ======================== test_ops =========================
[09:09:06] [PASSED] 2-level
[09:09:06] [PASSED] multi-level
[09:09:06] ==================== [PASSED] test_ops =====================
[09:09:06] ====================== [PASSED] lmtt =======================
[09:09:06] ================= pf_service (11 subtests) =================
[09:09:06] [PASSED] pf_negotiate_any
[09:09:06] [PASSED] pf_negotiate_base_match
[09:09:06] [PASSED] pf_negotiate_base_newer
[09:09:06] [PASSED] pf_negotiate_base_next
[09:09:06] [SKIPPED] pf_negotiate_base_older
[09:09:06] [PASSED] pf_negotiate_base_prev
[09:09:06] [PASSED] pf_negotiate_latest_match
[09:09:06] [PASSED] pf_negotiate_latest_newer
[09:09:06] [PASSED] pf_negotiate_latest_next
[09:09:06] [SKIPPED] pf_negotiate_latest_older
[09:09:06] [SKIPPED] pf_negotiate_latest_prev
[09:09:06] =================== [PASSED] pf_service ====================
[09:09:06] ================= xe_guc_g2g (2 subtests) ==================
[09:09:06] ============== xe_live_guc_g2g_kunit_default ==============
[09:09:06] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[09:09:06] ============== xe_live_guc_g2g_kunit_allmem ===============
[09:09:06] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[09:09:06] =================== [SKIPPED] xe_guc_g2g ===================
[09:09:06] =================== xe_mocs (2 subtests) ===================
[09:09:06] ================ xe_live_mocs_kernel_kunit ================
[09:09:06] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[09:09:06] ================ xe_live_mocs_reset_kunit =================
[09:09:06] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[09:09:06] ==================== [SKIPPED] xe_mocs =====================
[09:09:06] ================= xe_migrate (2 subtests) ==================
[09:09:06] ================= xe_migrate_sanity_kunit =================
[09:09:06] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[09:09:06] ================== xe_validate_ccs_kunit ==================
[09:09:06] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[09:09:06] =================== [SKIPPED] xe_migrate ===================
[09:09:06] ================== xe_dma_buf (1 subtest) ==================
[09:09:06] ==================== xe_dma_buf_kunit =====================
[09:09:06] ================ [SKIPPED] xe_dma_buf_kunit ================
[09:09:06] =================== [SKIPPED] xe_dma_buf ===================
[09:09:06] ================= xe_bo_shrink (1 subtest) =================
[09:09:06] =================== xe_bo_shrink_kunit ====================
[09:09:06] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[09:09:06] ================== [SKIPPED] xe_bo_shrink ==================
[09:09:06] ==================== xe_bo (2 subtests) ====================
[09:09:06] ================== xe_ccs_migrate_kunit ===================
[09:09:06] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[09:09:06] ==================== xe_bo_evict_kunit ====================
[09:09:06] =============== [SKIPPED] xe_bo_evict_kunit ================
[09:09:06] ===================== [SKIPPED] xe_bo ======================
[09:09:06] ==================== args (13 subtests) ====================
[09:09:06] [PASSED] count_args_test
[09:09:06] [PASSED] call_args_example
[09:09:06] [PASSED] call_args_test
[09:09:06] [PASSED] drop_first_arg_example
[09:09:06] [PASSED] drop_first_arg_test
[09:09:06] [PASSED] first_arg_example
[09:09:06] [PASSED] first_arg_test
[09:09:06] [PASSED] last_arg_example
[09:09:06] [PASSED] last_arg_test
[09:09:06] [PASSED] pick_arg_example
[09:09:06] [PASSED] if_args_example
[09:09:06] [PASSED] if_args_test
[09:09:06] [PASSED] sep_comma_example
[09:09:06] ====================== [PASSED] args =======================
[09:09:06] =================== xe_pci (3 subtests) ====================
[09:09:06] ==================== check_graphics_ip ====================
[09:09:06] [PASSED] 12.00 Xe_LP
[09:09:06] [PASSED] 12.10 Xe_LP+
[09:09:06] [PASSED] 12.55 Xe_HPG
[09:09:06] [PASSED] 12.60 Xe_HPC
[09:09:06] [PASSED] 12.70 Xe_LPG
[09:09:06] [PASSED] 12.71 Xe_LPG
[09:09:06] [PASSED] 12.74 Xe_LPG+
[09:09:06] [PASSED] 20.01 Xe2_HPG
[09:09:06] [PASSED] 20.02 Xe2_HPG
[09:09:06] [PASSED] 20.04 Xe2_LPG
[09:09:06] [PASSED] 30.00 Xe3_LPG
[09:09:06] [PASSED] 30.01 Xe3_LPG
[09:09:06] [PASSED] 30.03 Xe3_LPG
[09:09:06] [PASSED] 30.04 Xe3_LPG
[09:09:06] [PASSED] 30.05 Xe3_LPG
[09:09:06] [PASSED] 35.10 Xe3p_LPG
[09:09:06] [PASSED] 35.11 Xe3p_XPC
[09:09:06] ================ [PASSED] check_graphics_ip ================
[09:09:06] ===================== check_media_ip ======================
[09:09:06] [PASSED] 12.00 Xe_M
[09:09:06] [PASSED] 12.55 Xe_HPM
[09:09:06] [PASSED] 13.00 Xe_LPM+
[09:09:06] [PASSED] 13.01 Xe2_HPM
[09:09:06] [PASSED] 20.00 Xe2_LPM
[09:09:06] [PASSED] 30.00 Xe3_LPM
[09:09:06] [PASSED] 30.02 Xe3_LPM
[09:09:06] [PASSED] 35.00 Xe3p_LPM
[09:09:06] [PASSED] 35.03 Xe3p_HPM
[09:09:06] ================= [PASSED] check_media_ip ==================
[09:09:06] =================== check_platform_desc ===================
[09:09:06] [PASSED] 0x9A60 (TIGERLAKE)
[09:09:06] [PASSED] 0x9A68 (TIGERLAKE)
[09:09:06] [PASSED] 0x9A70 (TIGERLAKE)
[09:09:06] [PASSED] 0x9A40 (TIGERLAKE)
[09:09:06] [PASSED] 0x9A49 (TIGERLAKE)
[09:09:06] [PASSED] 0x9A59 (TIGERLAKE)
[09:09:06] [PASSED] 0x9A78 (TIGERLAKE)
[09:09:06] [PASSED] 0x9AC0 (TIGERLAKE)
[09:09:06] [PASSED] 0x9AC9 (TIGERLAKE)
[09:09:06] [PASSED] 0x9AD9 (TIGERLAKE)
[09:09:06] [PASSED] 0x9AF8 (TIGERLAKE)
[09:09:06] [PASSED] 0x4C80 (ROCKETLAKE)
[09:09:06] [PASSED] 0x4C8A (ROCKETLAKE)
[09:09:06] [PASSED] 0x4C8B (ROCKETLAKE)
[09:09:06] [PASSED] 0x4C8C (ROCKETLAKE)
[09:09:06] [PASSED] 0x4C90 (ROCKETLAKE)
[09:09:06] [PASSED] 0x4C9A (ROCKETLAKE)
[09:09:06] [PASSED] 0x4680 (ALDERLAKE_S)
[09:09:06] [PASSED] 0x4682 (ALDERLAKE_S)
[09:09:06] [PASSED] 0x4688 (ALDERLAKE_S)
[09:09:06] [PASSED] 0x468A (ALDERLAKE_S)
[09:09:06] [PASSED] 0x468B (ALDERLAKE_S)
[09:09:06] [PASSED] 0x4690 (ALDERLAKE_S)
[09:09:06] [PASSED] 0x4692 (ALDERLAKE_S)
[09:09:06] [PASSED] 0x4693 (ALDERLAKE_S)
[09:09:06] [PASSED] 0x46A0 (ALDERLAKE_P)
[09:09:06] [PASSED] 0x46A1 (ALDERLAKE_P)
[09:09:06] [PASSED] 0x46A2 (ALDERLAKE_P)
[09:09:06] [PASSED] 0x46A3 (ALDERLAKE_P)
[09:09:06] [PASSED] 0x46A6 (ALDERLAKE_P)
[09:09:06] [PASSED] 0x46A8 (ALDERLAKE_P)
[09:09:06] [PASSED] 0x46AA (ALDERLAKE_P)
[09:09:06] [PASSED] 0x462A (ALDERLAKE_P)
[09:09:06] [PASSED] 0x4626 (ALDERLAKE_P)
[09:09:06] [PASSED] 0x4628 (ALDERLAKE_P)
[09:09:06] [PASSED] 0x46B0 (ALDERLAKE_P)
[09:09:06] [PASSED] 0x46B1 (ALDERLAKE_P)
[09:09:06] [PASSED] 0x46B2 (ALDERLAKE_P)
[09:09:06] [PASSED] 0x46B3 (ALDERLAKE_P)
[09:09:06] [PASSED] 0x46C0 (ALDERLAKE_P)
[09:09:06] [PASSED] 0x46C1 (ALDERLAKE_P)
[09:09:06] [PASSED] 0x46C2 (ALDERLAKE_P)
[09:09:06] [PASSED] 0x46C3 (ALDERLAKE_P)
[09:09:06] [PASSED] 0x46D0 (ALDERLAKE_N)
[09:09:06] [PASSED] 0x46D1 (ALDERLAKE_N)
[09:09:06] [PASSED] 0x46D2 (ALDERLAKE_N)
[09:09:06] [PASSED] 0x46D3 (ALDERLAKE_N)
[09:09:06] [PASSED] 0x46D4 (ALDERLAKE_N)
[09:09:06] [PASSED] 0xA721 (ALDERLAKE_P)
[09:09:06] [PASSED] 0xA7A1 (ALDERLAKE_P)
[09:09:06] [PASSED] 0xA7A9 (ALDERLAKE_P)
[09:09:06] [PASSED] 0xA7AC (ALDERLAKE_P)
[09:09:06] [PASSED] 0xA7AD (ALDERLAKE_P)
[09:09:06] [PASSED] 0xA720 (ALDERLAKE_P)
[09:09:06] [PASSED] 0xA7A0 (ALDERLAKE_P)
[09:09:06] [PASSED] 0xA7A8 (ALDERLAKE_P)
[09:09:06] [PASSED] 0xA7AA (ALDERLAKE_P)
[09:09:06] [PASSED] 0xA7AB (ALDERLAKE_P)
[09:09:06] [PASSED] 0xA780 (ALDERLAKE_S)
[09:09:06] [PASSED] 0xA781 (ALDERLAKE_S)
[09:09:06] [PASSED] 0xA782 (ALDERLAKE_S)
[09:09:06] [PASSED] 0xA783 (ALDERLAKE_S)
[09:09:06] [PASSED] 0xA788 (ALDERLAKE_S)
[09:09:06] [PASSED] 0xA789 (ALDERLAKE_S)
[09:09:06] [PASSED] 0xA78A (ALDERLAKE_S)
[09:09:06] [PASSED] 0xA78B (ALDERLAKE_S)
[09:09:06] [PASSED] 0x4905 (DG1)
[09:09:06] [PASSED] 0x4906 (DG1)
[09:09:06] [PASSED] 0x4907 (DG1)
[09:09:06] [PASSED] 0x4908 (DG1)
[09:09:06] [PASSED] 0x4909 (DG1)
[09:09:06] [PASSED] 0x56C0 (DG2)
[09:09:06] [PASSED] 0x56C2 (DG2)
[09:09:06] [PASSED] 0x56C1 (DG2)
[09:09:06] [PASSED] 0x7D51 (METEORLAKE)
[09:09:06] [PASSED] 0x7DD1 (METEORLAKE)
[09:09:06] [PASSED] 0x7D41 (METEORLAKE)
[09:09:06] [PASSED] 0x7D67 (METEORLAKE)
[09:09:06] [PASSED] 0xB640 (METEORLAKE)
[09:09:06] [PASSED] 0x56A0 (DG2)
[09:09:06] [PASSED] 0x56A1 (DG2)
[09:09:06] [PASSED] 0x56A2 (DG2)
[09:09:06] [PASSED] 0x56BE (DG2)
[09:09:06] [PASSED] 0x56BF (DG2)
[09:09:06] [PASSED] 0x5690 (DG2)
[09:09:06] [PASSED] 0x5691 (DG2)
[09:09:06] [PASSED] 0x5692 (DG2)
[09:09:06] [PASSED] 0x56A5 (DG2)
[09:09:06] [PASSED] 0x56A6 (DG2)
[09:09:06] [PASSED] 0x56B0 (DG2)
[09:09:06] [PASSED] 0x56B1 (DG2)
[09:09:06] [PASSED] 0x56BA (DG2)
[09:09:06] [PASSED] 0x56BB (DG2)
[09:09:06] [PASSED] 0x56BC (DG2)
[09:09:06] [PASSED] 0x56BD (DG2)
[09:09:06] [PASSED] 0x5693 (DG2)
[09:09:06] [PASSED] 0x5694 (DG2)
[09:09:06] [PASSED] 0x5695 (DG2)
[09:09:06] [PASSED] 0x56A3 (DG2)
[09:09:06] [PASSED] 0x56A4 (DG2)
[09:09:06] [PASSED] 0x56B2 (DG2)
[09:09:06] [PASSED] 0x56B3 (DG2)
[09:09:06] [PASSED] 0x5696 (DG2)
[09:09:06] [PASSED] 0x5697 (DG2)
[09:09:06] [PASSED] 0xB69 (PVC)
[09:09:06] [PASSED] 0xB6E (PVC)
[09:09:06] [PASSED] 0xBD4 (PVC)
[09:09:06] [PASSED] 0xBD5 (PVC)
[09:09:06] [PASSED] 0xBD6 (PVC)
[09:09:06] [PASSED] 0xBD7 (PVC)
[09:09:06] [PASSED] 0xBD8 (PVC)
[09:09:06] [PASSED] 0xBD9 (PVC)
[09:09:06] [PASSED] 0xBDA (PVC)
[09:09:06] [PASSED] 0xBDB (PVC)
[09:09:06] [PASSED] 0xBE0 (PVC)
[09:09:06] [PASSED] 0xBE1 (PVC)
[09:09:06] [PASSED] 0xBE5 (PVC)
[09:09:06] [PASSED] 0x7D40 (METEORLAKE)
[09:09:06] [PASSED] 0x7D45 (METEORLAKE)
[09:09:06] [PASSED] 0x7D55 (METEORLAKE)
[09:09:06] [PASSED] 0x7D60 (METEORLAKE)
[09:09:06] [PASSED] 0x7DD5 (METEORLAKE)
[09:09:06] [PASSED] 0x6420 (LUNARLAKE)
[09:09:06] [PASSED] 0x64A0 (LUNARLAKE)
[09:09:06] [PASSED] 0x64B0 (LUNARLAKE)
[09:09:06] [PASSED] 0xE202 (BATTLEMAGE)
[09:09:06] [PASSED] 0xE209 (BATTLEMAGE)
[09:09:06] [PASSED] 0xE20B (BATTLEMAGE)
[09:09:06] [PASSED] 0xE20C (BATTLEMAGE)
[09:09:06] [PASSED] 0xE20D (BATTLEMAGE)
[09:09:06] [PASSED] 0xE210 (BATTLEMAGE)
[09:09:06] [PASSED] 0xE211 (BATTLEMAGE)
[09:09:06] [PASSED] 0xE212 (BATTLEMAGE)
[09:09:06] [PASSED] 0xE216 (BATTLEMAGE)
[09:09:06] [PASSED] 0xE220 (BATTLEMAGE)
[09:09:06] [PASSED] 0xE221 (BATTLEMAGE)
[09:09:06] [PASSED] 0xE222 (BATTLEMAGE)
[09:09:06] [PASSED] 0xE223 (BATTLEMAGE)
[09:09:06] [PASSED] 0xB080 (PANTHERLAKE)
[09:09:06] [PASSED] 0xB081 (PANTHERLAKE)
[09:09:06] [PASSED] 0xB082 (PANTHERLAKE)
[09:09:06] [PASSED] 0xB083 (PANTHERLAKE)
[09:09:06] [PASSED] 0xB084 (PANTHERLAKE)
[09:09:06] [PASSED] 0xB085 (PANTHERLAKE)
[09:09:06] [PASSED] 0xB086 (PANTHERLAKE)
[09:09:06] [PASSED] 0xB087 (PANTHERLAKE)
[09:09:06] [PASSED] 0xB08F (PANTHERLAKE)
[09:09:06] [PASSED] 0xB090 (PANTHERLAKE)
[09:09:06] [PASSED] 0xB0A0 (PANTHERLAKE)
[09:09:06] [PASSED] 0xB0B0 (PANTHERLAKE)
[09:09:06] [PASSED] 0xFD80 (PANTHERLAKE)
[09:09:06] [PASSED] 0xFD81 (PANTHERLAKE)
[09:09:06] [PASSED] 0xD740 (NOVALAKE_S)
[09:09:06] [PASSED] 0xD741 (NOVALAKE_S)
[09:09:06] [PASSED] 0xD742 (NOVALAKE_S)
[09:09:06] [PASSED] 0xD743 (NOVALAKE_S)
[09:09:06] [PASSED] 0xD744 (NOVALAKE_S)
[09:09:06] [PASSED] 0xD745 (NOVALAKE_S)
[09:09:06] [PASSED] 0x674C (CRESCENTISLAND)
[09:09:06] [PASSED] 0xD750 (NOVALAKE_P)
[09:09:06] [PASSED] 0xD751 (NOVALAKE_P)
[09:09:06] [PASSED] 0xD752 (NOVALAKE_P)
[09:09:06] [PASSED] 0xD753 (NOVALAKE_P)
[09:09:06] [PASSED] 0xD754 (NOVALAKE_P)
[09:09:06] [PASSED] 0xD755 (NOVALAKE_P)
[09:09:06] [PASSED] 0xD756 (NOVALAKE_P)
[09:09:06] [PASSED] 0xD757 (NOVALAKE_P)
[09:09:06] [PASSED] 0xD75F (NOVALAKE_P)
[09:09:06] =============== [PASSED] check_platform_desc ===============
[09:09:06] ===================== [PASSED] xe_pci ======================
[09:09:06] =================== xe_rtp (2 subtests) ====================
[09:09:06] =============== xe_rtp_process_to_sr_tests ================
[09:09:06] [PASSED] coalesce-same-reg
[09:09:06] [PASSED] no-match-no-add
[09:09:06] [PASSED] match-or
[09:09:06] [PASSED] match-or-xfail
[09:09:06] [PASSED] no-match-no-add-multiple-rules
[09:09:06] [PASSED] two-regs-two-entries
[09:09:06] [PASSED] clr-one-set-other
[09:09:06] [PASSED] set-field
[09:09:06] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[09:09:06] [PASSED] conflict-not-disjoint
[09:09:06] [PASSED] conflict-reg-type
[09:09:06] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[09:09:06] ================== xe_rtp_process_tests ===================
[09:09:06] [PASSED] active1
[09:09:06] [PASSED] active2
[09:09:06] [PASSED] active-inactive
[09:09:06] [PASSED] inactive-active
[09:09:06] [PASSED] inactive-1st_or_active-inactive
[09:09:06] [PASSED] inactive-2nd_or_active-inactive
[09:09:06] [PASSED] inactive-last_or_active-inactive
[09:09:06] [PASSED] inactive-no_or_active-inactive
[09:09:06] ============== [PASSED] xe_rtp_process_tests ===============
[09:09:06] ===================== [PASSED] xe_rtp ======================
[09:09:06] ==================== xe_wa (1 subtest) =====================
[09:09:06] ======================== xe_wa_gt =========================
[09:09:06] [PASSED] TIGERLAKE B0
[09:09:06] [PASSED] DG1 A0
[09:09:06] [PASSED] DG1 B0
[09:09:06] [PASSED] ALDERLAKE_S A0
[09:09:06] [PASSED] ALDERLAKE_S B0
[09:09:06] [PASSED] ALDERLAKE_S C0
[09:09:06] [PASSED] ALDERLAKE_S D0
[09:09:06] [PASSED] ALDERLAKE_P A0
[09:09:06] [PASSED] ALDERLAKE_P B0
[09:09:06] [PASSED] ALDERLAKE_P C0
[09:09:06] [PASSED] ALDERLAKE_S RPLS D0
[09:09:06] [PASSED] ALDERLAKE_P RPLU E0
[09:09:06] [PASSED] DG2 G10 C0
[09:09:06] [PASSED] DG2 G11 B1
[09:09:06] [PASSED] DG2 G12 A1
[09:09:06] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[09:09:06] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[09:09:06] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[09:09:06] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[09:09:06] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[09:09:06] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[09:09:06] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[09:09:06] ==================== [PASSED] xe_wa_gt =====================
[09:09:06] ====================== [PASSED] xe_wa ======================
[09:09:06] ============================================================
[09:09:06] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[09:09:06] Elapsed time: 35.657s total, 4.278s configuring, 30.711s building, 0.646s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[09:09:06] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:09:08] 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
[09:09:32] Starting KUnit Kernel (1/1)...
[09:09:32] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:09:32] ============ drm_test_pick_cmdline (2 subtests) ============
[09:09:32] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[09:09:32] =============== drm_test_pick_cmdline_named ===============
[09:09:32] [PASSED] NTSC
[09:09:32] [PASSED] NTSC-J
[09:09:32] [PASSED] PAL
[09:09:32] [PASSED] PAL-M
[09:09:32] =========== [PASSED] drm_test_pick_cmdline_named ===========
[09:09:32] ============== [PASSED] drm_test_pick_cmdline ==============
[09:09:32] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[09:09:32] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[09:09:32] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[09:09:32] =========== drm_validate_clone_mode (2 subtests) ===========
[09:09:32] ============== drm_test_check_in_clone_mode ===============
[09:09:32] [PASSED] in_clone_mode
[09:09:32] [PASSED] not_in_clone_mode
[09:09:32] ========== [PASSED] drm_test_check_in_clone_mode ===========
[09:09:32] =============== drm_test_check_valid_clones ===============
[09:09:32] [PASSED] not_in_clone_mode
[09:09:32] [PASSED] valid_clone
[09:09:32] [PASSED] invalid_clone
[09:09:32] =========== [PASSED] drm_test_check_valid_clones ===========
[09:09:32] ============= [PASSED] drm_validate_clone_mode =============
[09:09:32] ============= drm_validate_modeset (1 subtest) =============
[09:09:32] [PASSED] drm_test_check_connector_changed_modeset
[09:09:32] ============== [PASSED] drm_validate_modeset ===============
[09:09:32] ====== drm_test_bridge_get_current_state (2 subtests) ======
[09:09:32] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[09:09:32] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[09:09:32] ======== [PASSED] drm_test_bridge_get_current_state ========
[09:09:32] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[09:09:32] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[09:09:32] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[09:09:32] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[09:09:32] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[09:09:32] ============== drm_bridge_alloc (2 subtests) ===============
[09:09:32] [PASSED] drm_test_drm_bridge_alloc_basic
[09:09:32] [PASSED] drm_test_drm_bridge_alloc_get_put
[09:09:32] ================ [PASSED] drm_bridge_alloc =================
[09:09:32] ============= drm_cmdline_parser (40 subtests) =============
[09:09:32] [PASSED] drm_test_cmdline_force_d_only
[09:09:32] [PASSED] drm_test_cmdline_force_D_only_dvi
[09:09:32] [PASSED] drm_test_cmdline_force_D_only_hdmi
[09:09:32] [PASSED] drm_test_cmdline_force_D_only_not_digital
[09:09:32] [PASSED] drm_test_cmdline_force_e_only
[09:09:32] [PASSED] drm_test_cmdline_res
[09:09:32] [PASSED] drm_test_cmdline_res_vesa
[09:09:32] [PASSED] drm_test_cmdline_res_vesa_rblank
[09:09:32] [PASSED] drm_test_cmdline_res_rblank
[09:09:32] [PASSED] drm_test_cmdline_res_bpp
[09:09:32] [PASSED] drm_test_cmdline_res_refresh
[09:09:32] [PASSED] drm_test_cmdline_res_bpp_refresh
[09:09:32] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[09:09:32] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[09:09:32] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[09:09:32] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[09:09:32] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[09:09:32] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[09:09:32] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[09:09:32] [PASSED] drm_test_cmdline_res_margins_force_on
[09:09:32] [PASSED] drm_test_cmdline_res_vesa_margins
[09:09:32] [PASSED] drm_test_cmdline_name
[09:09:32] [PASSED] drm_test_cmdline_name_bpp
[09:09:32] [PASSED] drm_test_cmdline_name_option
[09:09:32] [PASSED] drm_test_cmdline_name_bpp_option
[09:09:32] [PASSED] drm_test_cmdline_rotate_0
[09:09:32] [PASSED] drm_test_cmdline_rotate_90
[09:09:32] [PASSED] drm_test_cmdline_rotate_180
[09:09:32] [PASSED] drm_test_cmdline_rotate_270
[09:09:32] [PASSED] drm_test_cmdline_hmirror
[09:09:32] [PASSED] drm_test_cmdline_vmirror
[09:09:32] [PASSED] drm_test_cmdline_margin_options
[09:09:32] [PASSED] drm_test_cmdline_multiple_options
[09:09:32] [PASSED] drm_test_cmdline_bpp_extra_and_option
[09:09:32] [PASSED] drm_test_cmdline_extra_and_option
[09:09:32] [PASSED] drm_test_cmdline_freestanding_options
[09:09:32] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[09:09:32] [PASSED] drm_test_cmdline_panel_orientation
[09:09:32] ================ drm_test_cmdline_invalid =================
[09:09:32] [PASSED] margin_only
[09:09:32] [PASSED] interlace_only
[09:09:32] [PASSED] res_missing_x
[09:09:32] [PASSED] res_missing_y
[09:09:32] [PASSED] res_bad_y
[09:09:32] [PASSED] res_missing_y_bpp
[09:09:32] [PASSED] res_bad_bpp
[09:09:32] [PASSED] res_bad_refresh
[09:09:32] [PASSED] res_bpp_refresh_force_on_off
[09:09:32] [PASSED] res_invalid_mode
[09:09:32] [PASSED] res_bpp_wrong_place_mode
[09:09:32] [PASSED] name_bpp_refresh
[09:09:32] [PASSED] name_refresh
[09:09:32] [PASSED] name_refresh_wrong_mode
[09:09:32] [PASSED] name_refresh_invalid_mode
[09:09:32] [PASSED] rotate_multiple
[09:09:32] [PASSED] rotate_invalid_val
[09:09:32] [PASSED] rotate_truncated
[09:09:32] [PASSED] invalid_option
[09:09:32] [PASSED] invalid_tv_option
[09:09:32] [PASSED] truncated_tv_option
[09:09:32] ============ [PASSED] drm_test_cmdline_invalid =============
[09:09:32] =============== drm_test_cmdline_tv_options ===============
[09:09:32] [PASSED] NTSC
[09:09:32] [PASSED] NTSC_443
[09:09:32] [PASSED] NTSC_J
[09:09:32] [PASSED] PAL
[09:09:32] [PASSED] PAL_M
[09:09:32] [PASSED] PAL_N
[09:09:32] [PASSED] SECAM
[09:09:32] [PASSED] MONO_525
[09:09:32] [PASSED] MONO_625
[09:09:32] =========== [PASSED] drm_test_cmdline_tv_options ===========
[09:09:32] =============== [PASSED] drm_cmdline_parser ================
[09:09:32] ========== drmm_connector_hdmi_init (20 subtests) ==========
[09:09:32] [PASSED] drm_test_connector_hdmi_init_valid
[09:09:32] [PASSED] drm_test_connector_hdmi_init_bpc_8
[09:09:32] [PASSED] drm_test_connector_hdmi_init_bpc_10
[09:09:32] [PASSED] drm_test_connector_hdmi_init_bpc_12
[09:09:32] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[09:09:32] [PASSED] drm_test_connector_hdmi_init_bpc_null
[09:09:32] [PASSED] drm_test_connector_hdmi_init_formats_empty
[09:09:32] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[09:09:32] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[09:09:32] [PASSED] supported_formats=0x9 yuv420_allowed=1
[09:09:32] [PASSED] supported_formats=0x9 yuv420_allowed=0
[09:09:32] [PASSED] supported_formats=0x3 yuv420_allowed=1
[09:09:32] [PASSED] supported_formats=0x3 yuv420_allowed=0
[09:09:32] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[09:09:32] [PASSED] drm_test_connector_hdmi_init_null_ddc
[09:09:32] [PASSED] drm_test_connector_hdmi_init_null_product
[09:09:32] [PASSED] drm_test_connector_hdmi_init_null_vendor
[09:09:32] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[09:09:32] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[09:09:32] [PASSED] drm_test_connector_hdmi_init_product_valid
[09:09:32] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[09:09:32] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[09:09:32] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[09:09:32] ========= drm_test_connector_hdmi_init_type_valid =========
[09:09:32] [PASSED] HDMI-A
[09:09:32] [PASSED] HDMI-B
[09:09:32] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[09:09:32] ======== drm_test_connector_hdmi_init_type_invalid ========
[09:09:32] [PASSED] Unknown
[09:09:32] [PASSED] VGA
[09:09:32] [PASSED] DVI-I
[09:09:32] [PASSED] DVI-D
[09:09:32] [PASSED] DVI-A
[09:09:32] [PASSED] Composite
[09:09:32] [PASSED] SVIDEO
[09:09:32] [PASSED] LVDS
[09:09:32] [PASSED] Component
[09:09:32] [PASSED] DIN
[09:09:32] [PASSED] DP
[09:09:32] [PASSED] TV
[09:09:32] [PASSED] eDP
[09:09:32] [PASSED] Virtual
[09:09:32] [PASSED] DSI
[09:09:32] [PASSED] DPI
[09:09:32] [PASSED] Writeback
[09:09:32] [PASSED] SPI
[09:09:32] [PASSED] USB
[09:09:32] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[09:09:32] ============ [PASSED] drmm_connector_hdmi_init =============
[09:09:32] ============= drmm_connector_init (3 subtests) =============
[09:09:32] [PASSED] drm_test_drmm_connector_init
[09:09:32] [PASSED] drm_test_drmm_connector_init_null_ddc
[09:09:32] ========= drm_test_drmm_connector_init_type_valid =========
[09:09:32] [PASSED] Unknown
[09:09:32] [PASSED] VGA
[09:09:32] [PASSED] DVI-I
[09:09:32] [PASSED] DVI-D
[09:09:32] [PASSED] DVI-A
[09:09:32] [PASSED] Composite
[09:09:32] [PASSED] SVIDEO
[09:09:32] [PASSED] LVDS
[09:09:32] [PASSED] Component
[09:09:32] [PASSED] DIN
[09:09:32] [PASSED] DP
[09:09:32] [PASSED] HDMI-A
[09:09:32] [PASSED] HDMI-B
[09:09:32] [PASSED] TV
[09:09:32] [PASSED] eDP
[09:09:32] [PASSED] Virtual
[09:09:32] [PASSED] DSI
[09:09:32] [PASSED] DPI
[09:09:32] [PASSED] Writeback
[09:09:32] [PASSED] SPI
[09:09:32] [PASSED] USB
[09:09:32] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[09:09:32] =============== [PASSED] drmm_connector_init ===============
[09:09:32] ========= drm_connector_dynamic_init (6 subtests) ==========
[09:09:32] [PASSED] drm_test_drm_connector_dynamic_init
[09:09:32] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[09:09:32] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[09:09:32] [PASSED] drm_test_drm_connector_dynamic_init_properties
[09:09:32] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[09:09:32] [PASSED] Unknown
[09:09:32] [PASSED] VGA
[09:09:32] [PASSED] DVI-I
[09:09:32] [PASSED] DVI-D
[09:09:32] [PASSED] DVI-A
[09:09:32] [PASSED] Composite
[09:09:32] [PASSED] SVIDEO
[09:09:32] [PASSED] LVDS
[09:09:32] [PASSED] Component
[09:09:32] [PASSED] DIN
[09:09:32] [PASSED] DP
[09:09:32] [PASSED] HDMI-A
[09:09:32] [PASSED] HDMI-B
[09:09:32] [PASSED] TV
[09:09:32] [PASSED] eDP
[09:09:32] [PASSED] Virtual
[09:09:32] [PASSED] DSI
[09:09:32] [PASSED] DPI
[09:09:32] [PASSED] Writeback
[09:09:32] [PASSED] SPI
[09:09:32] [PASSED] USB
[09:09:32] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[09:09:32] ======== drm_test_drm_connector_dynamic_init_name =========
[09:09:32] [PASSED] Unknown
[09:09:32] [PASSED] VGA
[09:09:32] [PASSED] DVI-I
[09:09:32] [PASSED] DVI-D
[09:09:32] [PASSED] DVI-A
[09:09:32] [PASSED] Composite
[09:09:32] [PASSED] SVIDEO
[09:09:32] [PASSED] LVDS
[09:09:32] [PASSED] Component
[09:09:32] [PASSED] DIN
[09:09:32] [PASSED] DP
[09:09:32] [PASSED] HDMI-A
[09:09:32] [PASSED] HDMI-B
[09:09:32] [PASSED] TV
[09:09:32] [PASSED] eDP
[09:09:32] [PASSED] Virtual
[09:09:32] [PASSED] DSI
[09:09:32] [PASSED] DPI
[09:09:32] [PASSED] Writeback
[09:09:32] [PASSED] SPI
[09:09:32] [PASSED] USB
[09:09:32] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[09:09:32] =========== [PASSED] drm_connector_dynamic_init ============
[09:09:32] ==== drm_connector_dynamic_register_early (4 subtests) =====
[09:09:32] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[09:09:32] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[09:09:32] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[09:09:32] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[09:09:32] ====== [PASSED] drm_connector_dynamic_register_early =======
[09:09:32] ======= drm_connector_dynamic_register (7 subtests) ========
[09:09:32] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[09:09:32] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[09:09:32] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[09:09:32] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[09:09:32] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[09:09:32] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[09:09:32] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[09:09:32] ========= [PASSED] drm_connector_dynamic_register ==========
[09:09:32] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[09:09:32] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[09:09:32] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[09:09:32] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[09:09:32] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[09:09:32] ========== drm_test_get_tv_mode_from_name_valid ===========
[09:09:32] [PASSED] NTSC
[09:09:32] [PASSED] NTSC-443
[09:09:32] [PASSED] NTSC-J
[09:09:32] [PASSED] PAL
[09:09:32] [PASSED] PAL-M
[09:09:32] [PASSED] PAL-N
[09:09:32] [PASSED] SECAM
[09:09:32] [PASSED] Mono
[09:09:32] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[09:09:32] [PASSED] drm_test_get_tv_mode_from_name_truncated
[09:09:32] ============ [PASSED] drm_get_tv_mode_from_name ============
[09:09:32] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[09:09:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[09:09:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[09:09:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[09:09:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[09:09:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[09:09:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[09:09:32] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[09:09:32] [PASSED] VIC 96
[09:09:32] [PASSED] VIC 97
[09:09:32] [PASSED] VIC 101
[09:09:32] [PASSED] VIC 102
[09:09:32] [PASSED] VIC 106
[09:09:32] [PASSED] VIC 107
[09:09:32] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[09:09:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[09:09:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[09:09:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[09:09:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[09:09:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[09:09:32] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[09:09:32] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[09:09:32] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[09:09:32] [PASSED] Automatic
[09:09:32] [PASSED] Full
[09:09:32] [PASSED] Limited 16:235
[09:09:32] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[09:09:32] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[09:09:32] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[09:09:32] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[09:09:32] === drm_test_drm_hdmi_connector_get_output_format_name ====
[09:09:32] [PASSED] RGB
[09:09:32] [PASSED] YUV 4:2:0
[09:09:32] [PASSED] YUV 4:2:2
[09:09:32] [PASSED] YUV 4:4:4
[09:09:32] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[09:09:32] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[09:09:32] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[09:09:32] ============= drm_damage_helper (21 subtests) ==============
[09:09:32] [PASSED] drm_test_damage_iter_no_damage
[09:09:32] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[09:09:32] [PASSED] drm_test_damage_iter_no_damage_src_moved
[09:09:32] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[09:09:32] [PASSED] drm_test_damage_iter_no_damage_not_visible
[09:09:32] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[09:09:32] [PASSED] drm_test_damage_iter_no_damage_no_fb
[09:09:32] [PASSED] drm_test_damage_iter_simple_damage
[09:09:32] [PASSED] drm_test_damage_iter_single_damage
[09:09:32] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[09:09:32] [PASSED] drm_test_damage_iter_single_damage_outside_src
[09:09:32] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[09:09:32] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[09:09:32] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[09:09:32] [PASSED] drm_test_damage_iter_single_damage_src_moved
[09:09:32] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[09:09:32] [PASSED] drm_test_damage_iter_damage
[09:09:32] [PASSED] drm_test_damage_iter_damage_one_intersect
[09:09:32] [PASSED] drm_test_damage_iter_damage_one_outside
[09:09:32] [PASSED] drm_test_damage_iter_damage_src_moved
[09:09:32] [PASSED] drm_test_damage_iter_damage_not_visible
[09:09:32] ================ [PASSED] drm_damage_helper ================
[09:09:32] ============== drm_dp_mst_helper (3 subtests) ==============
[09:09:32] ============== drm_test_dp_mst_calc_pbn_mode ==============
[09:09:32] [PASSED] Clock 154000 BPP 30 DSC disabled
[09:09:32] [PASSED] Clock 234000 BPP 30 DSC disabled
[09:09:32] [PASSED] Clock 297000 BPP 24 DSC disabled
[09:09:32] [PASSED] Clock 332880 BPP 24 DSC enabled
[09:09:32] [PASSED] Clock 324540 BPP 24 DSC enabled
[09:09:32] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[09:09:32] ============== drm_test_dp_mst_calc_pbn_div ===============
[09:09:32] [PASSED] Link rate 2000000 lane count 4
[09:09:32] [PASSED] Link rate 2000000 lane count 2
[09:09:32] [PASSED] Link rate 2000000 lane count 1
[09:09:32] [PASSED] Link rate 1350000 lane count 4
[09:09:32] [PASSED] Link rate 1350000 lane count 2
[09:09:32] [PASSED] Link rate 1350000 lane count 1
[09:09:32] [PASSED] Link rate 1000000 lane count 4
[09:09:32] [PASSED] Link rate 1000000 lane count 2
[09:09:32] [PASSED] Link rate 1000000 lane count 1
[09:09:32] [PASSED] Link rate 810000 lane count 4
[09:09:32] [PASSED] Link rate 810000 lane count 2
[09:09:32] [PASSED] Link rate 810000 lane count 1
[09:09:32] [PASSED] Link rate 540000 lane count 4
[09:09:32] [PASSED] Link rate 540000 lane count 2
[09:09:32] [PASSED] Link rate 540000 lane count 1
[09:09:32] [PASSED] Link rate 270000 lane count 4
[09:09:32] [PASSED] Link rate 270000 lane count 2
[09:09:32] [PASSED] Link rate 270000 lane count 1
[09:09:32] [PASSED] Link rate 162000 lane count 4
[09:09:32] [PASSED] Link rate 162000 lane count 2
[09:09:32] [PASSED] Link rate 162000 lane count 1
[09:09:32] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[09:09:32] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[09:09:32] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[09:09:32] [PASSED] DP_POWER_UP_PHY with port number
[09:09:32] [PASSED] DP_POWER_DOWN_PHY with port number
[09:09:32] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[09:09:32] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[09:09:32] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[09:09:32] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[09:09:32] [PASSED] DP_QUERY_PAYLOAD with port number
[09:09:32] [PASSED] DP_QUERY_PAYLOAD with VCPI
[09:09:32] [PASSED] DP_REMOTE_DPCD_READ with port number
[09:09:32] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[09:09:32] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[09:09:32] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[09:09:32] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[09:09:32] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[09:09:32] [PASSED] DP_REMOTE_I2C_READ with port number
[09:09:32] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[09:09:32] [PASSED] DP_REMOTE_I2C_READ with transactions array
[09:09:32] [PASSED] DP_REMOTE_I2C_WRITE with port number
[09:09:32] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[09:09:32] [PASSED] DP_REMOTE_I2C_WRITE with data array
[09:09:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[09:09:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[09:09:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[09:09:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[09:09:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[09:09:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[09:09:32] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[09:09:32] ================ [PASSED] drm_dp_mst_helper ================
[09:09:32] ================== drm_exec (7 subtests) ===================
[09:09:32] [PASSED] sanitycheck
[09:09:32] [PASSED] test_lock
[09:09:32] [PASSED] test_lock_unlock
[09:09:32] [PASSED] test_duplicates
[09:09:32] [PASSED] test_prepare
[09:09:32] [PASSED] test_prepare_array
[09:09:32] [PASSED] test_multiple_loops
[09:09:32] ==================== [PASSED] drm_exec =====================
[09:09:32] =========== drm_format_helper_test (17 subtests) ===========
[09:09:32] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[09:09:32] [PASSED] single_pixel_source_buffer
[09:09:32] [PASSED] single_pixel_clip_rectangle
[09:09:32] [PASSED] well_known_colors
[09:09:32] [PASSED] destination_pitch
[09:09:32] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[09:09:32] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[09:09:32] [PASSED] single_pixel_source_buffer
[09:09:32] [PASSED] single_pixel_clip_rectangle
[09:09:32] [PASSED] well_known_colors
[09:09:32] [PASSED] destination_pitch
[09:09:32] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[09:09:32] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[09:09:32] [PASSED] single_pixel_source_buffer
[09:09:32] [PASSED] single_pixel_clip_rectangle
[09:09:32] [PASSED] well_known_colors
[09:09:32] [PASSED] destination_pitch
[09:09:32] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[09:09:32] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[09:09:32] [PASSED] single_pixel_source_buffer
[09:09:32] [PASSED] single_pixel_clip_rectangle
[09:09:32] [PASSED] well_known_colors
[09:09:32] [PASSED] destination_pitch
[09:09:32] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[09:09:32] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[09:09:32] [PASSED] single_pixel_source_buffer
[09:09:32] [PASSED] single_pixel_clip_rectangle
[09:09:32] [PASSED] well_known_colors
[09:09:32] [PASSED] destination_pitch
[09:09:32] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[09:09:32] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[09:09:32] [PASSED] single_pixel_source_buffer
[09:09:32] [PASSED] single_pixel_clip_rectangle
[09:09:32] [PASSED] well_known_colors
[09:09:32] [PASSED] destination_pitch
[09:09:32] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[09:09:32] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[09:09:32] [PASSED] single_pixel_source_buffer
[09:09:32] [PASSED] single_pixel_clip_rectangle
[09:09:32] [PASSED] well_known_colors
[09:09:32] [PASSED] destination_pitch
[09:09:32] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[09:09:32] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[09:09:32] [PASSED] single_pixel_source_buffer
[09:09:32] [PASSED] single_pixel_clip_rectangle
[09:09:32] [PASSED] well_known_colors
[09:09:32] [PASSED] destination_pitch
[09:09:32] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[09:09:32] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[09:09:32] [PASSED] single_pixel_source_buffer
[09:09:32] [PASSED] single_pixel_clip_rectangle
[09:09:32] [PASSED] well_known_colors
[09:09:32] [PASSED] destination_pitch
[09:09:32] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[09:09:32] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[09:09:32] [PASSED] single_pixel_source_buffer
[09:09:32] [PASSED] single_pixel_clip_rectangle
[09:09:32] [PASSED] well_known_colors
[09:09:32] [PASSED] destination_pitch
[09:09:32] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[09:09:32] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[09:09:32] [PASSED] single_pixel_source_buffer
[09:09:32] [PASSED] single_pixel_clip_rectangle
[09:09:32] [PASSED] well_known_colors
[09:09:32] [PASSED] destination_pitch
[09:09:32] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[09:09:32] ============== drm_test_fb_xrgb8888_to_mono ===============
[09:09:32] [PASSED] single_pixel_source_buffer
[09:09:32] [PASSED] single_pixel_clip_rectangle
[09:09:32] [PASSED] well_known_colors
[09:09:32] [PASSED] destination_pitch
[09:09:32] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[09:09:32] ==================== drm_test_fb_swab =====================
[09:09:32] [PASSED] single_pixel_source_buffer
[09:09:32] [PASSED] single_pixel_clip_rectangle
[09:09:32] [PASSED] well_known_colors
[09:09:32] [PASSED] destination_pitch
[09:09:32] ================ [PASSED] drm_test_fb_swab =================
[09:09:32] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[09:09:32] [PASSED] single_pixel_source_buffer
[09:09:32] [PASSED] single_pixel_clip_rectangle
[09:09:32] [PASSED] well_known_colors
[09:09:32] [PASSED] destination_pitch
[09:09:32] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[09:09:32] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[09:09:32] [PASSED] single_pixel_source_buffer
[09:09:32] [PASSED] single_pixel_clip_rectangle
[09:09:32] [PASSED] well_known_colors
[09:09:32] [PASSED] destination_pitch
[09:09:32] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[09:09:32] ================= drm_test_fb_clip_offset =================
[09:09:32] [PASSED] pass through
[09:09:32] [PASSED] horizontal offset
[09:09:32] [PASSED] vertical offset
[09:09:32] [PASSED] horizontal and vertical offset
[09:09:32] [PASSED] horizontal offset (custom pitch)
[09:09:32] [PASSED] vertical offset (custom pitch)
[09:09:32] [PASSED] horizontal and vertical offset (custom pitch)
[09:09:32] ============= [PASSED] drm_test_fb_clip_offset =============
[09:09:32] =================== drm_test_fb_memcpy ====================
[09:09:32] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[09:09:32] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[09:09:32] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[09:09:32] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[09:09:32] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[09:09:32] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[09:09:32] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[09:09:32] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[09:09:32] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[09:09:32] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[09:09:32] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[09:09:32] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[09:09:32] =============== [PASSED] drm_test_fb_memcpy ================
[09:09:32] ============= [PASSED] drm_format_helper_test ==============
[09:09:32] ================= drm_format (18 subtests) =================
[09:09:32] [PASSED] drm_test_format_block_width_invalid
[09:09:32] [PASSED] drm_test_format_block_width_one_plane
[09:09:32] [PASSED] drm_test_format_block_width_two_plane
[09:09:32] [PASSED] drm_test_format_block_width_three_plane
[09:09:32] [PASSED] drm_test_format_block_width_tiled
[09:09:32] [PASSED] drm_test_format_block_height_invalid
[09:09:32] [PASSED] drm_test_format_block_height_one_plane
[09:09:32] [PASSED] drm_test_format_block_height_two_plane
[09:09:32] [PASSED] drm_test_format_block_height_three_plane
[09:09:32] [PASSED] drm_test_format_block_height_tiled
[09:09:32] [PASSED] drm_test_format_min_pitch_invalid
[09:09:32] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[09:09:32] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[09:09:32] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[09:09:32] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[09:09:32] [PASSED] drm_test_format_min_pitch_two_plane
[09:09:32] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[09:09:32] [PASSED] drm_test_format_min_pitch_tiled
[09:09:32] =================== [PASSED] drm_format ====================
[09:09:32] ============== drm_framebuffer (10 subtests) ===============
[09:09:32] ========== drm_test_framebuffer_check_src_coords ==========
[09:09:32] [PASSED] Success: source fits into fb
[09:09:32] [PASSED] Fail: overflowing fb with x-axis coordinate
[09:09:32] [PASSED] Fail: overflowing fb with y-axis coordinate
[09:09:32] [PASSED] Fail: overflowing fb with source width
[09:09:32] [PASSED] Fail: overflowing fb with source height
[09:09:32] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[09:09:32] [PASSED] drm_test_framebuffer_cleanup
[09:09:32] =============== drm_test_framebuffer_create ===============
[09:09:32] [PASSED] ABGR8888 normal sizes
[09:09:32] [PASSED] ABGR8888 max sizes
[09:09:32] [PASSED] ABGR8888 pitch greater than min required
[09:09:32] [PASSED] ABGR8888 pitch less than min required
[09:09:32] [PASSED] ABGR8888 Invalid width
[09:09:32] [PASSED] ABGR8888 Invalid buffer handle
[09:09:32] [PASSED] No pixel format
[09:09:32] [PASSED] ABGR8888 Width 0
[09:09:32] [PASSED] ABGR8888 Height 0
[09:09:32] [PASSED] ABGR8888 Out of bound height * pitch combination
[09:09:32] [PASSED] ABGR8888 Large buffer offset
[09:09:32] [PASSED] ABGR8888 Buffer offset for inexistent plane
[09:09:32] [PASSED] ABGR8888 Invalid flag
[09:09:32] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[09:09:32] [PASSED] ABGR8888 Valid buffer modifier
[09:09:32] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[09:09:32] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[09:09:32] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[09:09:32] [PASSED] NV12 Normal sizes
[09:09:32] [PASSED] NV12 Max sizes
[09:09:32] [PASSED] NV12 Invalid pitch
[09:09:32] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[09:09:32] [PASSED] NV12 different modifier per-plane
[09:09:32] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[09:09:32] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[09:09:32] [PASSED] NV12 Modifier for inexistent plane
[09:09:32] [PASSED] NV12 Handle for inexistent plane
[09:09:32] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[09:09:32] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[09:09:32] [PASSED] YVU420 Normal sizes
[09:09:32] [PASSED] YVU420 Max sizes
[09:09:32] [PASSED] YVU420 Invalid pitch
[09:09:32] [PASSED] YVU420 Different pitches
[09:09:32] [PASSED] YVU420 Different buffer offsets/pitches
[09:09:32] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[09:09:32] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[09:09:32] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[09:09:32] [PASSED] YVU420 Valid modifier
[09:09:32] [PASSED] YVU420 Different modifiers per plane
[09:09:32] [PASSED] YVU420 Modifier for inexistent plane
[09:09:32] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[09:09:32] [PASSED] X0L2 Normal sizes
[09:09:32] [PASSED] X0L2 Max sizes
[09:09:32] [PASSED] X0L2 Invalid pitch
[09:09:32] [PASSED] X0L2 Pitch greater than minimum required
[09:09:32] [PASSED] X0L2 Handle for inexistent plane
[09:09:32] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[09:09:32] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[09:09:32] [PASSED] X0L2 Valid modifier
[09:09:32] [PASSED] X0L2 Modifier for inexistent plane
[09:09:32] =========== [PASSED] drm_test_framebuffer_create ===========
[09:09:32] [PASSED] drm_test_framebuffer_free
[09:09:32] [PASSED] drm_test_framebuffer_init
[09:09:32] [PASSED] drm_test_framebuffer_init_bad_format
[09:09:32] [PASSED] drm_test_framebuffer_init_dev_mismatch
[09:09:32] [PASSED] drm_test_framebuffer_lookup
[09:09:32] [PASSED] drm_test_framebuffer_lookup_inexistent
[09:09:32] [PASSED] drm_test_framebuffer_modifiers_not_supported
[09:09:32] ================= [PASSED] drm_framebuffer =================
[09:09:32] ================ drm_gem_shmem (8 subtests) ================
[09:09:32] [PASSED] drm_gem_shmem_test_obj_create
[09:09:32] [PASSED] drm_gem_shmem_test_obj_create_private
[09:09:32] [PASSED] drm_gem_shmem_test_pin_pages
[09:09:32] [PASSED] drm_gem_shmem_test_vmap
[09:09:32] [PASSED] drm_gem_shmem_test_get_sg_table
[09:09:32] [PASSED] drm_gem_shmem_test_get_pages_sgt
[09:09:32] [PASSED] drm_gem_shmem_test_madvise
[09:09:32] [PASSED] drm_gem_shmem_test_purge
[09:09:32] ================== [PASSED] drm_gem_shmem ==================
[09:09:32] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[09:09:32] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[09:09:32] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[09:09:32] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[09:09:32] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[09:09:32] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[09:09:32] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[09:09:32] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[09:09:32] [PASSED] Automatic
[09:09:32] [PASSED] Full
[09:09:32] [PASSED] Limited 16:235
[09:09:32] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[09:09:32] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[09:09:32] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[09:09:32] [PASSED] drm_test_check_disable_connector
[09:09:32] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[09:09:32] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[09:09:32] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[09:09:32] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[09:09:32] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[09:09:32] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[09:09:32] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[09:09:32] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[09:09:32] [PASSED] drm_test_check_output_bpc_dvi
[09:09:32] [PASSED] drm_test_check_output_bpc_format_vic_1
[09:09:32] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[09:09:32] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[09:09:32] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[09:09:32] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[09:09:32] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[09:09:32] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[09:09:32] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[09:09:32] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[09:09:32] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[09:09:32] [PASSED] drm_test_check_broadcast_rgb_value
[09:09:32] [PASSED] drm_test_check_bpc_8_value
[09:09:32] [PASSED] drm_test_check_bpc_10_value
[09:09:32] [PASSED] drm_test_check_bpc_12_value
[09:09:32] [PASSED] drm_test_check_format_value
[09:09:32] [PASSED] drm_test_check_tmds_char_value
[09:09:32] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[09:09:32] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[09:09:32] [PASSED] drm_test_check_mode_valid
[09:09:32] [PASSED] drm_test_check_mode_valid_reject
[09:09:32] [PASSED] drm_test_check_mode_valid_reject_rate
[09:09:32] [PASSED] drm_test_check_mode_valid_reject_max_clock
[09:09:32] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[09:09:32] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[09:09:32] [PASSED] drm_test_check_infoframes
[09:09:32] [PASSED] drm_test_check_reject_avi_infoframe
[09:09:32] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[09:09:32] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[09:09:32] [PASSED] drm_test_check_reject_audio_infoframe
[09:09:32] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[09:09:32] ================= drm_managed (2 subtests) =================
[09:09:32] [PASSED] drm_test_managed_release_action
[09:09:32] [PASSED] drm_test_managed_run_action
[09:09:32] =================== [PASSED] drm_managed ===================
[09:09:32] =================== drm_mm (6 subtests) ====================
[09:09:32] [PASSED] drm_test_mm_init
[09:09:32] [PASSED] drm_test_mm_debug
[09:09:32] [PASSED] drm_test_mm_align32
[09:09:32] [PASSED] drm_test_mm_align64
[09:09:32] [PASSED] drm_test_mm_lowest
[09:09:32] [PASSED] drm_test_mm_highest
[09:09:32] ===================== [PASSED] drm_mm ======================
[09:09:32] ============= drm_modes_analog_tv (5 subtests) =============
[09:09:32] [PASSED] drm_test_modes_analog_tv_mono_576i
[09:09:32] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[09:09:32] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[09:09:32] [PASSED] drm_test_modes_analog_tv_pal_576i
[09:09:32] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[09:09:32] =============== [PASSED] drm_modes_analog_tv ===============
[09:09:32] ============== drm_plane_helper (2 subtests) ===============
[09:09:32] =============== drm_test_check_plane_state ================
[09:09:32] [PASSED] clipping_simple
[09:09:32] [PASSED] clipping_rotate_reflect
[09:09:32] [PASSED] positioning_simple
[09:09:32] [PASSED] upscaling
[09:09:32] [PASSED] downscaling
[09:09:32] [PASSED] rounding1
[09:09:32] [PASSED] rounding2
[09:09:32] [PASSED] rounding3
[09:09:32] [PASSED] rounding4
[09:09:32] =========== [PASSED] drm_test_check_plane_state ============
[09:09:32] =========== drm_test_check_invalid_plane_state ============
[09:09:32] [PASSED] positioning_invalid
[09:09:32] [PASSED] upscaling_invalid
[09:09:32] [PASSED] downscaling_invalid
[09:09:32] ======= [PASSED] drm_test_check_invalid_plane_state ========
[09:09:32] ================ [PASSED] drm_plane_helper =================
[09:09:32] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[09:09:32] ====== drm_test_connector_helper_tv_get_modes_check =======
[09:09:32] [PASSED] None
[09:09:32] [PASSED] PAL
[09:09:32] [PASSED] NTSC
[09:09:32] [PASSED] Both, NTSC Default
[09:09:32] [PASSED] Both, PAL Default
[09:09:32] [PASSED] Both, NTSC Default, with PAL on command-line
[09:09:32] [PASSED] Both, PAL Default, with NTSC on command-line
[09:09:32] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[09:09:32] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[09:09:32] ================== drm_rect (9 subtests) ===================
[09:09:32] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[09:09:32] [PASSED] drm_test_rect_clip_scaled_not_clipped
[09:09:32] [PASSED] drm_test_rect_clip_scaled_clipped
[09:09:32] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[09:09:32] ================= drm_test_rect_intersect =================
[09:09:32] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[09:09:32] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[09:09:32] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[09:09:32] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[09:09:32] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[09:09:32] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[09:09:32] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[09:09:32] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[09:09:32] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[09:09:32] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[09:09:32] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[09:09:32] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[09:09:32] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[09:09:32] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[09:09:32] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[09:09:32] ============= [PASSED] drm_test_rect_intersect =============
[09:09:32] ================ drm_test_rect_calc_hscale ================
[09:09:32] [PASSED] normal use
[09:09:32] [PASSED] out of max range
[09:09:32] [PASSED] out of min range
[09:09:32] [PASSED] zero dst
[09:09:32] [PASSED] negative src
[09:09:32] [PASSED] negative dst
[09:09:32] ============ [PASSED] drm_test_rect_calc_hscale ============
[09:09:32] ================ drm_test_rect_calc_vscale ================
[09:09:32] [PASSED] normal use
[09:09:32] [PASSED] out of max range
[09:09:32] [PASSED] out of min range
[09:09:32] [PASSED] zero dst
[09:09:32] [PASSED] negative src
[09:09:32] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[09:09:32] ============ [PASSED] drm_test_rect_calc_vscale ============
[09:09:32] ================== drm_test_rect_rotate ===================
[09:09:32] [PASSED] reflect-x
[09:09:32] [PASSED] reflect-y
[09:09:32] [PASSED] rotate-0
[09:09:32] [PASSED] rotate-90
[09:09:32] [PASSED] rotate-180
[09:09:32] [PASSED] rotate-270
[09:09:32] ============== [PASSED] drm_test_rect_rotate ===============
[09:09:32] ================ drm_test_rect_rotate_inv =================
[09:09:32] [PASSED] reflect-x
[09:09:32] [PASSED] reflect-y
[09:09:32] [PASSED] rotate-0
[09:09:32] [PASSED] rotate-90
[09:09:32] [PASSED] rotate-180
[09:09:32] [PASSED] rotate-270
[09:09:32] ============ [PASSED] drm_test_rect_rotate_inv =============
[09:09:32] ==================== [PASSED] drm_rect =====================
[09:09:32] ============ drm_sysfb_modeset_test (1 subtest) ============
[09:09:32] ============ drm_test_sysfb_build_fourcc_list =============
[09:09:32] [PASSED] no native formats
[09:09:32] [PASSED] XRGB8888 as native format
[09:09:32] [PASSED] remove duplicates
[09:09:32] [PASSED] convert alpha formats
[09:09:32] [PASSED] random formats
[09:09:32] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[09:09:32] ============= [PASSED] drm_sysfb_modeset_test ==============
[09:09:32] ================== drm_fixp (2 subtests) ===================
[09:09:32] [PASSED] drm_test_int2fixp
[09:09:32] [PASSED] drm_test_sm2fixp
[09:09:32] ==================== [PASSED] drm_fixp =====================
[09:09:32] ============================================================
[09:09:32] Testing complete. Ran 621 tests: passed: 621
[09:09:32] Elapsed time: 25.979s total, 1.752s configuring, 24.057s building, 0.131s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[09:09:32] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:09:34] 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
[09:09:43] Starting KUnit Kernel (1/1)...
[09:09:43] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:09:44] ================= ttm_device (5 subtests) ==================
[09:09:44] [PASSED] ttm_device_init_basic
[09:09:44] [PASSED] ttm_device_init_multiple
[09:09:44] [PASSED] ttm_device_fini_basic
[09:09:44] [PASSED] ttm_device_init_no_vma_man
[09:09:44] ================== ttm_device_init_pools ==================
[09:09:44] [PASSED] No DMA allocations, no DMA32 required
[09:09:44] [PASSED] DMA allocations, DMA32 required
[09:09:44] [PASSED] No DMA allocations, DMA32 required
[09:09:44] [PASSED] DMA allocations, no DMA32 required
[09:09:44] ============== [PASSED] ttm_device_init_pools ==============
[09:09:44] =================== [PASSED] ttm_device ====================
[09:09:44] ================== ttm_pool (8 subtests) ===================
[09:09:44] ================== ttm_pool_alloc_basic ===================
[09:09:44] [PASSED] One page
[09:09:44] [PASSED] More than one page
[09:09:44] [PASSED] Above the allocation limit
[09:09:44] [PASSED] One page, with coherent DMA mappings enabled
[09:09:44] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[09:09:44] ============== [PASSED] ttm_pool_alloc_basic ===============
[09:09:44] ============== ttm_pool_alloc_basic_dma_addr ==============
[09:09:44] [PASSED] One page
[09:09:44] [PASSED] More than one page
[09:09:44] [PASSED] Above the allocation limit
[09:09:44] [PASSED] One page, with coherent DMA mappings enabled
[09:09:44] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[09:09:44] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[09:09:44] [PASSED] ttm_pool_alloc_order_caching_match
[09:09:44] [PASSED] ttm_pool_alloc_caching_mismatch
[09:09:44] [PASSED] ttm_pool_alloc_order_mismatch
[09:09:44] [PASSED] ttm_pool_free_dma_alloc
[09:09:44] [PASSED] ttm_pool_free_no_dma_alloc
[09:09:44] [PASSED] ttm_pool_fini_basic
[09:09:44] ==================== [PASSED] ttm_pool =====================
[09:09:44] ================ ttm_resource (8 subtests) =================
[09:09:44] ================= ttm_resource_init_basic =================
[09:09:44] [PASSED] Init resource in TTM_PL_SYSTEM
[09:09:44] [PASSED] Init resource in TTM_PL_VRAM
[09:09:44] [PASSED] Init resource in a private placement
[09:09:44] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[09:09:44] ============= [PASSED] ttm_resource_init_basic =============
[09:09:44] [PASSED] ttm_resource_init_pinned
[09:09:44] [PASSED] ttm_resource_fini_basic
[09:09:44] [PASSED] ttm_resource_manager_init_basic
[09:09:44] [PASSED] ttm_resource_manager_usage_basic
[09:09:44] [PASSED] ttm_resource_manager_set_used_basic
[09:09:44] [PASSED] ttm_sys_man_alloc_basic
[09:09:44] [PASSED] ttm_sys_man_free_basic
[09:09:44] ================== [PASSED] ttm_resource ===================
[09:09:44] =================== ttm_tt (15 subtests) ===================
[09:09:44] ==================== ttm_tt_init_basic ====================
[09:09:44] [PASSED] Page-aligned size
[09:09:44] [PASSED] Extra pages requested
[09:09:44] ================ [PASSED] ttm_tt_init_basic ================
[09:09:44] [PASSED] ttm_tt_init_misaligned
[09:09:44] [PASSED] ttm_tt_fini_basic
[09:09:44] [PASSED] ttm_tt_fini_sg
[09:09:44] [PASSED] ttm_tt_fini_shmem
[09:09:44] [PASSED] ttm_tt_create_basic
[09:09:44] [PASSED] ttm_tt_create_invalid_bo_type
[09:09:44] [PASSED] ttm_tt_create_ttm_exists
[09:09:44] [PASSED] ttm_tt_create_failed
[09:09:44] [PASSED] ttm_tt_destroy_basic
[09:09:44] [PASSED] ttm_tt_populate_null_ttm
[09:09:44] [PASSED] ttm_tt_populate_populated_ttm
[09:09:44] [PASSED] ttm_tt_unpopulate_basic
[09:09:44] [PASSED] ttm_tt_unpopulate_empty_ttm
[09:09:44] [PASSED] ttm_tt_swapin_basic
[09:09:44] ===================== [PASSED] ttm_tt ======================
[09:09:44] =================== ttm_bo (14 subtests) ===================
[09:09:44] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[09:09:44] [PASSED] Cannot be interrupted and sleeps
[09:09:44] [PASSED] Cannot be interrupted, locks straight away
[09:09:44] [PASSED] Can be interrupted, sleeps
[09:09:44] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[09:09:44] [PASSED] ttm_bo_reserve_locked_no_sleep
[09:09:44] [PASSED] ttm_bo_reserve_no_wait_ticket
[09:09:44] [PASSED] ttm_bo_reserve_double_resv
[09:09:44] [PASSED] ttm_bo_reserve_interrupted
[09:09:44] [PASSED] ttm_bo_reserve_deadlock
[09:09:44] [PASSED] ttm_bo_unreserve_basic
[09:09:44] [PASSED] ttm_bo_unreserve_pinned
[09:09:44] [PASSED] ttm_bo_unreserve_bulk
[09:09:44] [PASSED] ttm_bo_fini_basic
[09:09:44] [PASSED] ttm_bo_fini_shared_resv
[09:09:44] [PASSED] ttm_bo_pin_basic
[09:09:44] [PASSED] ttm_bo_pin_unpin_resource
[09:09:44] [PASSED] ttm_bo_multiple_pin_one_unpin
[09:09:44] ===================== [PASSED] ttm_bo ======================
[09:09:44] ============== ttm_bo_validate (22 subtests) ===============
[09:09:44] ============== ttm_bo_init_reserved_sys_man ===============
[09:09:44] [PASSED] Buffer object for userspace
[09:09:44] [PASSED] Kernel buffer object
[09:09:44] [PASSED] Shared buffer object
[09:09:44] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[09:09:44] ============== ttm_bo_init_reserved_mock_man ==============
[09:09:44] [PASSED] Buffer object for userspace
[09:09:44] [PASSED] Kernel buffer object
[09:09:44] [PASSED] Shared buffer object
[09:09:44] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[09:09:44] [PASSED] ttm_bo_init_reserved_resv
[09:09:44] ================== ttm_bo_validate_basic ==================
[09:09:44] [PASSED] Buffer object for userspace
[09:09:44] [PASSED] Kernel buffer object
[09:09:44] [PASSED] Shared buffer object
[09:09:44] ============== [PASSED] ttm_bo_validate_basic ==============
[09:09:44] [PASSED] ttm_bo_validate_invalid_placement
[09:09:44] ============= ttm_bo_validate_same_placement ==============
[09:09:44] [PASSED] System manager
[09:09:44] [PASSED] VRAM manager
[09:09:44] ========= [PASSED] ttm_bo_validate_same_placement ==========
[09:09:44] [PASSED] ttm_bo_validate_failed_alloc
[09:09:44] [PASSED] ttm_bo_validate_pinned
[09:09:44] [PASSED] ttm_bo_validate_busy_placement
[09:09:44] ================ ttm_bo_validate_multihop =================
[09:09:44] [PASSED] Buffer object for userspace
[09:09:44] [PASSED] Kernel buffer object
[09:09:44] [PASSED] Shared buffer object
[09:09:44] ============ [PASSED] ttm_bo_validate_multihop =============
[09:09:44] ========== ttm_bo_validate_no_placement_signaled ==========
[09:09:44] [PASSED] Buffer object in system domain, no page vector
[09:09:44] [PASSED] Buffer object in system domain with an existing page vector
[09:09:44] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[09:09:44] ======== ttm_bo_validate_no_placement_not_signaled ========
[09:09:44] [PASSED] Buffer object for userspace
[09:09:44] [PASSED] Kernel buffer object
[09:09:44] [PASSED] Shared buffer object
[09:09:44] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[09:09:44] [PASSED] ttm_bo_validate_move_fence_signaled
[09:09:44] ========= ttm_bo_validate_move_fence_not_signaled =========
[09:09:44] [PASSED] Waits for GPU
[09:09:44] [PASSED] Tries to lock straight away
[09:09:44] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[09:09:44] [PASSED] ttm_bo_validate_swapout
[09:09:44] [PASSED] ttm_bo_validate_happy_evict
[09:09:44] [PASSED] ttm_bo_validate_all_pinned_evict
[09:09:44] [PASSED] ttm_bo_validate_allowed_only_evict
[09:09:44] [PASSED] ttm_bo_validate_deleted_evict
[09:09:44] [PASSED] ttm_bo_validate_busy_domain_evict
[09:09:44] [PASSED] ttm_bo_validate_evict_gutting
[09:09:44] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[09:09:44] ================= [PASSED] ttm_bo_validate =================
[09:09:44] ============================================================
[09:09:44] Testing complete. Ran 102 tests: passed: 102
[09:09:44] Elapsed time: 11.486s total, 1.716s configuring, 9.554s building, 0.189s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for drm/i915/psr: Fixes for Dell XPS DA14260 quirk
2026-03-20 8:04 [PATCH] drm/i915/psr: Fixes for Dell XPS DA14260 quirk Jouni Högander
2026-03-20 8:46 ` Jani Nikula
2026-03-20 9:09 ` ✓ CI.KUnit: success for " Patchwork
@ 2026-03-20 9:44 ` Patchwork
2026-03-20 13:29 ` ✓ CI.KUnit: success for drm/i915/psr: Fixes for Dell XPS DA14260 quirk (rev2) Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-03-20 9:44 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1007 bytes --]
== Series Details ==
Series: drm/i915/psr: Fixes for Dell XPS DA14260 quirk
URL : https://patchwork.freedesktop.org/series/163567/
State : success
== Summary ==
CI Bug Log - changes from xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a_BAT -> xe-pw-163567v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 14)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8811 -> IGT_8814
* Linux: xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a -> xe-pw-163567v1
IGT_8811: cc3169e72592a56b806ce54a87060519151ad5fe @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8814: 8814
xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a: 4ae9f18564e78a5447be68aa1e9232a4f2c37b5a
xe-pw-163567v1: 163567v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v1/index.html
[-- Attachment #2: Type: text/html, Size: 1569 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] drm/i915/psr: Fixes for Dell XPS DA14260 quirk
2026-03-20 8:46 ` Jani Nikula
@ 2026-03-20 12:03 ` Hogander, Jouni
2026-03-24 12:37 ` Kahola, Mika
0 siblings, 1 reply; 9+ messages in thread
From: Hogander, Jouni @ 2026-03-20 12:03 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org,
jani.nikula@linux.intel.com
Cc: Kahola, Mika
On Fri, 2026-03-20 at 10:46 +0200, Jani Nikula wrote:
> On Fri, 20 Mar 2026, Jouni Högander <jouni.hogander@intel.com> wrote:
> > Dell seems to be changing device ID even within same device model.
> > Due to
> > this we need to ignore device ID when applying quirk for Dell XPS
> > 14
> > DA14260. Do this by adding DEVICE_ID_ANY and assign it to Dell XPS
> > 14
> > DA14260 quirk. Also apply the quirk only for eDP Panel Replay.
> >
> > Fixes: 45c77d4bf8d4 ("drm/i915/psr: Disable Panel Replay on Dell
> > XPS 14 DA14260 as a quirk")
> > Cc: Mika Kahola <mika.kahola@intel.com>
> > Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> > ---
> > drivers/gpu/drm/i915/display/intel_psr.c | 3 ++-
> > drivers/gpu/drm/i915/display/intel_quirks.c | 16 ++++++++++------
> > drivers/gpu/drm/i915/display/intel_quirks.h | 2 +-
> > 3 files changed, 13 insertions(+), 8 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c
> > b/drivers/gpu/drm/i915/display/intel_psr.c
> > index b319e5bd6274..2f1b48cd8efd 100644
> > --- a/drivers/gpu/drm/i915/display/intel_psr.c
> > +++ b/drivers/gpu/drm/i915/display/intel_psr.c
> > @@ -610,7 +610,8 @@ static void _panel_replay_init_dpcd(struct
> > intel_dp *intel_dp, struct intel_conn
> > if (intel_dp->mst_detect == DRM_DP_MST)
> > return;
> >
> > - if (intel_has_dpcd_quirk(intel_dp,
> > QUIRK_DISABLE_PANEL_REPLAY)) {
> > + if (intel_dp_is_edp(intel_dp) &&
> > + intel_has_dpcd_quirk(intel_dp,
> > QUIRK_DISABLE_EDP_PANEL_REPLAY)) {
>
> I'll note that intel_has_dpcd_quirk() could internally limit each
> quirk
> for eDP/non-eDP. But that's for future.
Yeah, there was also comment from Ville to combine all different quirks
here and just use these *_*_ANY for everything that is to be ignored. I
will add reworking this into my todo list.
BR,
Jouni Högander
>
> BR,
> Jani.
>
> > drm_dbg_kms(display->drm,
> > "Panel Replay support not currently
> > available for this setup\n");
> > return;
> > diff --git a/drivers/gpu/drm/i915/display/intel_quirks.c
> > b/drivers/gpu/drm/i915/display/intel_quirks.c
> > index 8f1bf8f418ec..883f297d4b83 100644
> > --- a/drivers/gpu/drm/i915/display/intel_quirks.c
> > +++ b/drivers/gpu/drm/i915/display/intel_quirks.c
> > @@ -86,11 +86,11 @@ static void quirk_edp_limit_rate_hbr2(struct
> > intel_display *display)
> > drm_info(display->drm, "Applying eDP Limit rate to HBR2
> > quirk\n");
> > }
> >
> > -static void quirk_disable_panel_replay(struct intel_dp *intel_dp)
> > +static void quirk_disable_edp_panel_replay(struct intel_dp
> > *intel_dp)
> > {
> > struct intel_display *display =
> > to_intel_display(intel_dp);
> >
> > - intel_set_dpcd_quirk(intel_dp,
> > QUIRK_DISABLE_PANEL_REPLAY);
> > + intel_set_dpcd_quirk(intel_dp,
> > QUIRK_DISABLE_EDP_PANEL_REPLAY);
> > drm_info(display->drm, "Applying disable Panel Replay
> > quirk\n");
> > }
> >
> > @@ -116,6 +116,8 @@ struct intel_dpcd_quirk {
> >
> > #define SINK_DEVICE_ID_ANY SINK_DEVICE_ID(0, 0, 0, 0, 0, 0)
> >
> > +#define DEVICE_ID_ANY 0
> > +
> > /* For systems that don't have a meaningful PCI
> > subdevice/subvendor ID */
> > struct intel_dmi_quirk {
> > void (*hook)(struct intel_display *display);
> > @@ -261,11 +263,11 @@ static const struct intel_dpcd_quirk
> > intel_dpcd_quirks[] = {
> > },
> > /* Dell XPS 14 DA14260 */
> > {
> > - .device = 0xb080,
> > + .device = DEVICE_ID_ANY,
> > .subsystem_vendor = 0x1028,
> > .subsystem_device = 0x0db9,
> > .sink_oui = SINK_OUI(0x00, 0x22, 0xb9),
> > - .hook = quirk_disable_panel_replay,
> > + .hook = quirk_disable_edp_panel_replay,
> > },
> > };
> >
> > @@ -277,7 +279,8 @@ void intel_init_quirks(struct intel_display
> > *display)
> > for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
> > struct intel_quirk *q = &intel_quirks[i];
> >
> > - if (d->device == q->device &&
> > + if ((d->device == q->device ||
> > + q->device == DEVICE_ID_ANY) &&
> > (d->subsystem_vendor == q->subsystem_vendor ||
> > q->subsystem_vendor == PCI_ANY_ID) &&
> > (d->subsystem_device == q->subsystem_device ||
> > @@ -300,7 +303,8 @@ void intel_init_dpcd_quirks(struct intel_dp
> > *intel_dp,
> > for (i = 0; i < ARRAY_SIZE(intel_dpcd_quirks); i++) {
> > const struct intel_dpcd_quirk *q =
> > &intel_dpcd_quirks[i];
> >
> > - if (d->device == q->device &&
> > + if ((d->device == q->device ||
> > + q->device == DEVICE_ID_ANY) &&
> > (d->subsystem_vendor == q->subsystem_vendor ||
> > q->subsystem_vendor == PCI_ANY_ID) &&
> > (d->subsystem_device == q->subsystem_device ||
> > diff --git a/drivers/gpu/drm/i915/display/intel_quirks.h
> > b/drivers/gpu/drm/i915/display/intel_quirks.h
> > index 77e490caed0d..83214eb94b0c 100644
> > --- a/drivers/gpu/drm/i915/display/intel_quirks.h
> > +++ b/drivers/gpu/drm/i915/display/intel_quirks.h
> > @@ -21,7 +21,7 @@ enum intel_quirk_id {
> > QUIRK_NO_PPS_BACKLIGHT_POWER_HOOK,
> > QUIRK_FW_SYNC_LEN,
> > QUIRK_EDP_LIMIT_RATE_HBR2,
> > - QUIRK_DISABLE_PANEL_REPLAY,
> > + QUIRK_DISABLE_EDP_PANEL_REPLAY,
> > };
> >
> > void intel_init_quirks(struct intel_display *display);
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ CI.KUnit: success for drm/i915/psr: Fixes for Dell XPS DA14260 quirk (rev2)
2026-03-20 8:04 [PATCH] drm/i915/psr: Fixes for Dell XPS DA14260 quirk Jouni Högander
` (2 preceding siblings ...)
2026-03-20 9:44 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-03-20 13:29 ` Patchwork
2026-03-20 14:09 ` ✓ Xe.CI.BAT: " Patchwork
2026-03-21 13:51 ` ✗ Xe.CI.FULL: failure " Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-03-20 13:29 UTC (permalink / raw)
To: Hogander, Jouni; +Cc: intel-xe
== Series Details ==
Series: drm/i915/psr: Fixes for Dell XPS DA14260 quirk (rev2)
URL : https://patchwork.freedesktop.org/series/163567/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[13:27:53] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:27:58] 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
[13:28:28] Starting KUnit Kernel (1/1)...
[13:28:28] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:28:28] ================== guc_buf (11 subtests) ===================
[13:28:28] [PASSED] test_smallest
[13:28:28] [PASSED] test_largest
[13:28:28] [PASSED] test_granular
[13:28:28] [PASSED] test_unique
[13:28:28] [PASSED] test_overlap
[13:28:28] [PASSED] test_reusable
[13:28:28] [PASSED] test_too_big
[13:28:28] [PASSED] test_flush
[13:28:28] [PASSED] test_lookup
[13:28:28] [PASSED] test_data
[13:28:28] [PASSED] test_class
[13:28:28] ===================== [PASSED] guc_buf =====================
[13:28:28] =================== guc_dbm (7 subtests) ===================
[13:28:28] [PASSED] test_empty
[13:28:28] [PASSED] test_default
[13:28:28] ======================== test_size ========================
[13:28:28] [PASSED] 4
[13:28:28] [PASSED] 8
[13:28:28] [PASSED] 32
[13:28:28] [PASSED] 256
[13:28:28] ==================== [PASSED] test_size ====================
[13:28:28] ======================= test_reuse ========================
[13:28:28] [PASSED] 4
[13:28:28] [PASSED] 8
[13:28:28] [PASSED] 32
[13:28:28] [PASSED] 256
[13:28:28] =================== [PASSED] test_reuse ====================
[13:28:28] =================== test_range_overlap ====================
[13:28:28] [PASSED] 4
[13:28:28] [PASSED] 8
[13:28:28] [PASSED] 32
[13:28:28] [PASSED] 256
[13:28:28] =============== [PASSED] test_range_overlap ================
[13:28:28] =================== test_range_compact ====================
[13:28:28] [PASSED] 4
[13:28:28] [PASSED] 8
[13:28:28] [PASSED] 32
[13:28:28] [PASSED] 256
[13:28:28] =============== [PASSED] test_range_compact ================
[13:28:28] ==================== test_range_spare =====================
[13:28:28] [PASSED] 4
[13:28:28] [PASSED] 8
[13:28:28] [PASSED] 32
[13:28:28] [PASSED] 256
[13:28:28] ================ [PASSED] test_range_spare =================
[13:28:28] ===================== [PASSED] guc_dbm =====================
[13:28:28] =================== guc_idm (6 subtests) ===================
[13:28:28] [PASSED] bad_init
[13:28:28] [PASSED] no_init
[13:28:28] [PASSED] init_fini
[13:28:28] [PASSED] check_used
[13:28:28] [PASSED] check_quota
[13:28:28] [PASSED] check_all
[13:28:28] ===================== [PASSED] guc_idm =====================
[13:28:28] ================== no_relay (3 subtests) ===================
[13:28:28] [PASSED] xe_drops_guc2pf_if_not_ready
[13:28:28] [PASSED] xe_drops_guc2vf_if_not_ready
[13:28:28] [PASSED] xe_rejects_send_if_not_ready
[13:28:28] ==================== [PASSED] no_relay =====================
[13:28:28] ================== pf_relay (14 subtests) ==================
[13:28:28] [PASSED] pf_rejects_guc2pf_too_short
[13:28:28] [PASSED] pf_rejects_guc2pf_too_long
[13:28:28] [PASSED] pf_rejects_guc2pf_no_payload
[13:28:28] [PASSED] pf_fails_no_payload
[13:28:28] [PASSED] pf_fails_bad_origin
[13:28:28] [PASSED] pf_fails_bad_type
[13:28:28] [PASSED] pf_txn_reports_error
[13:28:28] [PASSED] pf_txn_sends_pf2guc
[13:28:28] [PASSED] pf_sends_pf2guc
[13:28:28] [SKIPPED] pf_loopback_nop
[13:28:28] [SKIPPED] pf_loopback_echo
[13:28:28] [SKIPPED] pf_loopback_fail
[13:28:28] [SKIPPED] pf_loopback_busy
[13:28:28] [SKIPPED] pf_loopback_retry
[13:28:28] ==================== [PASSED] pf_relay =====================
[13:28:28] ================== vf_relay (3 subtests) ===================
[13:28:28] [PASSED] vf_rejects_guc2vf_too_short
[13:28:28] [PASSED] vf_rejects_guc2vf_too_long
[13:28:28] [PASSED] vf_rejects_guc2vf_no_payload
[13:28:28] ==================== [PASSED] vf_relay =====================
[13:28:28] ================ pf_gt_config (9 subtests) =================
[13:28:28] [PASSED] fair_contexts_1vf
[13:28:28] [PASSED] fair_doorbells_1vf
[13:28:28] [PASSED] fair_ggtt_1vf
[13:28:28] ====================== fair_vram_1vf ======================
[13:28:28] [PASSED] 3.50 GiB
[13:28:28] [PASSED] 11.5 GiB
[13:28:28] [PASSED] 15.5 GiB
[13:28:28] [PASSED] 31.5 GiB
[13:28:28] [PASSED] 63.5 GiB
[13:28:28] [PASSED] 1.91 GiB
[13:28:28] ================== [PASSED] fair_vram_1vf ==================
[13:28:28] ================ fair_vram_1vf_admin_only =================
[13:28:28] [PASSED] 3.50 GiB
[13:28:28] [PASSED] 11.5 GiB
[13:28:28] [PASSED] 15.5 GiB
[13:28:28] [PASSED] 31.5 GiB
[13:28:28] [PASSED] 63.5 GiB
[13:28:28] [PASSED] 1.91 GiB
[13:28:28] ============ [PASSED] fair_vram_1vf_admin_only =============
[13:28:28] ====================== fair_contexts ======================
[13:28:28] [PASSED] 1 VF
[13:28:28] [PASSED] 2 VFs
[13:28:28] [PASSED] 3 VFs
[13:28:28] [PASSED] 4 VFs
[13:28:28] [PASSED] 5 VFs
[13:28:28] [PASSED] 6 VFs
[13:28:28] [PASSED] 7 VFs
[13:28:28] [PASSED] 8 VFs
[13:28:28] [PASSED] 9 VFs
[13:28:28] [PASSED] 10 VFs
[13:28:28] [PASSED] 11 VFs
[13:28:28] [PASSED] 12 VFs
[13:28:28] [PASSED] 13 VFs
[13:28:28] [PASSED] 14 VFs
[13:28:28] [PASSED] 15 VFs
[13:28:28] [PASSED] 16 VFs
[13:28:28] [PASSED] 17 VFs
[13:28:28] [PASSED] 18 VFs
[13:28:28] [PASSED] 19 VFs
[13:28:28] [PASSED] 20 VFs
[13:28:28] [PASSED] 21 VFs
[13:28:28] [PASSED] 22 VFs
[13:28:28] [PASSED] 23 VFs
[13:28:28] [PASSED] 24 VFs
[13:28:29] [PASSED] 25 VFs
[13:28:29] [PASSED] 26 VFs
[13:28:29] [PASSED] 27 VFs
[13:28:29] [PASSED] 28 VFs
[13:28:29] [PASSED] 29 VFs
[13:28:29] [PASSED] 30 VFs
[13:28:29] [PASSED] 31 VFs
[13:28:29] [PASSED] 32 VFs
[13:28:29] [PASSED] 33 VFs
[13:28:29] [PASSED] 34 VFs
[13:28:29] [PASSED] 35 VFs
[13:28:29] [PASSED] 36 VFs
[13:28:29] [PASSED] 37 VFs
[13:28:29] [PASSED] 38 VFs
[13:28:29] [PASSED] 39 VFs
[13:28:29] [PASSED] 40 VFs
[13:28:29] [PASSED] 41 VFs
[13:28:29] [PASSED] 42 VFs
[13:28:29] [PASSED] 43 VFs
[13:28:29] [PASSED] 44 VFs
[13:28:29] [PASSED] 45 VFs
[13:28:29] [PASSED] 46 VFs
[13:28:29] [PASSED] 47 VFs
[13:28:29] [PASSED] 48 VFs
[13:28:29] [PASSED] 49 VFs
[13:28:29] [PASSED] 50 VFs
[13:28:29] [PASSED] 51 VFs
[13:28:29] [PASSED] 52 VFs
[13:28:29] [PASSED] 53 VFs
[13:28:29] [PASSED] 54 VFs
[13:28:29] [PASSED] 55 VFs
[13:28:29] [PASSED] 56 VFs
[13:28:29] [PASSED] 57 VFs
[13:28:29] [PASSED] 58 VFs
[13:28:29] [PASSED] 59 VFs
[13:28:29] [PASSED] 60 VFs
[13:28:29] [PASSED] 61 VFs
[13:28:29] [PASSED] 62 VFs
[13:28:29] [PASSED] 63 VFs
[13:28:29] ================== [PASSED] fair_contexts ==================
[13:28:29] ===================== fair_doorbells ======================
[13:28:29] [PASSED] 1 VF
[13:28:29] [PASSED] 2 VFs
[13:28:29] [PASSED] 3 VFs
[13:28:29] [PASSED] 4 VFs
[13:28:29] [PASSED] 5 VFs
[13:28:29] [PASSED] 6 VFs
[13:28:29] [PASSED] 7 VFs
[13:28:29] [PASSED] 8 VFs
[13:28:29] [PASSED] 9 VFs
[13:28:29] [PASSED] 10 VFs
[13:28:29] [PASSED] 11 VFs
[13:28:29] [PASSED] 12 VFs
[13:28:29] [PASSED] 13 VFs
[13:28:29] [PASSED] 14 VFs
[13:28:29] [PASSED] 15 VFs
[13:28:29] [PASSED] 16 VFs
[13:28:29] [PASSED] 17 VFs
[13:28:29] [PASSED] 18 VFs
[13:28:29] [PASSED] 19 VFs
[13:28:29] [PASSED] 20 VFs
[13:28:29] [PASSED] 21 VFs
[13:28:29] [PASSED] 22 VFs
[13:28:29] [PASSED] 23 VFs
[13:28:29] [PASSED] 24 VFs
[13:28:29] [PASSED] 25 VFs
[13:28:29] [PASSED] 26 VFs
[13:28:29] [PASSED] 27 VFs
[13:28:29] [PASSED] 28 VFs
[13:28:29] [PASSED] 29 VFs
[13:28:29] [PASSED] 30 VFs
[13:28:29] [PASSED] 31 VFs
[13:28:29] [PASSED] 32 VFs
[13:28:29] [PASSED] 33 VFs
[13:28:29] [PASSED] 34 VFs
[13:28:29] [PASSED] 35 VFs
[13:28:29] [PASSED] 36 VFs
[13:28:29] [PASSED] 37 VFs
[13:28:29] [PASSED] 38 VFs
[13:28:29] [PASSED] 39 VFs
[13:28:29] [PASSED] 40 VFs
[13:28:29] [PASSED] 41 VFs
[13:28:29] [PASSED] 42 VFs
[13:28:29] [PASSED] 43 VFs
[13:28:29] [PASSED] 44 VFs
[13:28:29] [PASSED] 45 VFs
[13:28:29] [PASSED] 46 VFs
[13:28:29] [PASSED] 47 VFs
[13:28:29] [PASSED] 48 VFs
[13:28:29] [PASSED] 49 VFs
[13:28:29] [PASSED] 50 VFs
[13:28:29] [PASSED] 51 VFs
[13:28:29] [PASSED] 52 VFs
[13:28:29] [PASSED] 53 VFs
[13:28:29] [PASSED] 54 VFs
[13:28:29] [PASSED] 55 VFs
[13:28:29] [PASSED] 56 VFs
[13:28:29] [PASSED] 57 VFs
[13:28:29] [PASSED] 58 VFs
[13:28:29] [PASSED] 59 VFs
[13:28:29] [PASSED] 60 VFs
[13:28:29] [PASSED] 61 VFs
[13:28:29] [PASSED] 62 VFs
[13:28:29] [PASSED] 63 VFs
[13:28:29] ================= [PASSED] fair_doorbells ==================
[13:28:29] ======================== fair_ggtt ========================
[13:28:29] [PASSED] 1 VF
[13:28:29] [PASSED] 2 VFs
[13:28:29] [PASSED] 3 VFs
[13:28:29] [PASSED] 4 VFs
[13:28:29] [PASSED] 5 VFs
[13:28:29] [PASSED] 6 VFs
[13:28:29] [PASSED] 7 VFs
[13:28:29] [PASSED] 8 VFs
[13:28:29] [PASSED] 9 VFs
[13:28:29] [PASSED] 10 VFs
[13:28:29] [PASSED] 11 VFs
[13:28:29] [PASSED] 12 VFs
[13:28:29] [PASSED] 13 VFs
[13:28:29] [PASSED] 14 VFs
[13:28:29] [PASSED] 15 VFs
[13:28:29] [PASSED] 16 VFs
[13:28:29] [PASSED] 17 VFs
[13:28:29] [PASSED] 18 VFs
[13:28:29] [PASSED] 19 VFs
[13:28:29] [PASSED] 20 VFs
[13:28:29] [PASSED] 21 VFs
[13:28:29] [PASSED] 22 VFs
[13:28:29] [PASSED] 23 VFs
[13:28:29] [PASSED] 24 VFs
[13:28:29] [PASSED] 25 VFs
[13:28:29] [PASSED] 26 VFs
[13:28:29] [PASSED] 27 VFs
[13:28:29] [PASSED] 28 VFs
[13:28:29] [PASSED] 29 VFs
[13:28:29] [PASSED] 30 VFs
[13:28:29] [PASSED] 31 VFs
[13:28:29] [PASSED] 32 VFs
[13:28:29] [PASSED] 33 VFs
[13:28:29] [PASSED] 34 VFs
[13:28:29] [PASSED] 35 VFs
[13:28:29] [PASSED] 36 VFs
[13:28:29] [PASSED] 37 VFs
[13:28:29] [PASSED] 38 VFs
[13:28:29] [PASSED] 39 VFs
[13:28:29] [PASSED] 40 VFs
[13:28:29] [PASSED] 41 VFs
[13:28:29] [PASSED] 42 VFs
[13:28:29] [PASSED] 43 VFs
[13:28:29] [PASSED] 44 VFs
[13:28:29] [PASSED] 45 VFs
[13:28:29] [PASSED] 46 VFs
[13:28:29] [PASSED] 47 VFs
[13:28:29] [PASSED] 48 VFs
[13:28:29] [PASSED] 49 VFs
[13:28:29] [PASSED] 50 VFs
[13:28:29] [PASSED] 51 VFs
[13:28:29] [PASSED] 52 VFs
[13:28:29] [PASSED] 53 VFs
[13:28:29] [PASSED] 54 VFs
[13:28:29] [PASSED] 55 VFs
[13:28:29] [PASSED] 56 VFs
[13:28:29] [PASSED] 57 VFs
[13:28:29] [PASSED] 58 VFs
[13:28:29] [PASSED] 59 VFs
[13:28:29] [PASSED] 60 VFs
[13:28:29] [PASSED] 61 VFs
[13:28:29] [PASSED] 62 VFs
[13:28:29] [PASSED] 63 VFs
[13:28:29] ==================== [PASSED] fair_ggtt ====================
[13:28:29] ======================== fair_vram ========================
[13:28:29] [PASSED] 1 VF
[13:28:29] [PASSED] 2 VFs
[13:28:29] [PASSED] 3 VFs
[13:28:29] [PASSED] 4 VFs
[13:28:29] [PASSED] 5 VFs
[13:28:29] [PASSED] 6 VFs
[13:28:29] [PASSED] 7 VFs
[13:28:29] [PASSED] 8 VFs
[13:28:29] [PASSED] 9 VFs
[13:28:29] [PASSED] 10 VFs
[13:28:29] [PASSED] 11 VFs
[13:28:29] [PASSED] 12 VFs
[13:28:29] [PASSED] 13 VFs
[13:28:29] [PASSED] 14 VFs
[13:28:29] [PASSED] 15 VFs
[13:28:29] [PASSED] 16 VFs
[13:28:29] [PASSED] 17 VFs
[13:28:29] [PASSED] 18 VFs
[13:28:29] [PASSED] 19 VFs
[13:28:29] [PASSED] 20 VFs
[13:28:29] [PASSED] 21 VFs
[13:28:29] [PASSED] 22 VFs
[13:28:29] [PASSED] 23 VFs
[13:28:29] [PASSED] 24 VFs
[13:28:29] [PASSED] 25 VFs
[13:28:29] [PASSED] 26 VFs
[13:28:29] [PASSED] 27 VFs
[13:28:29] [PASSED] 28 VFs
[13:28:29] [PASSED] 29 VFs
[13:28:29] [PASSED] 30 VFs
[13:28:29] [PASSED] 31 VFs
[13:28:29] [PASSED] 32 VFs
[13:28:29] [PASSED] 33 VFs
[13:28:29] [PASSED] 34 VFs
[13:28:29] [PASSED] 35 VFs
[13:28:29] [PASSED] 36 VFs
[13:28:29] [PASSED] 37 VFs
[13:28:29] [PASSED] 38 VFs
[13:28:29] [PASSED] 39 VFs
[13:28:29] [PASSED] 40 VFs
[13:28:29] [PASSED] 41 VFs
[13:28:29] [PASSED] 42 VFs
[13:28:29] [PASSED] 43 VFs
[13:28:29] [PASSED] 44 VFs
[13:28:29] [PASSED] 45 VFs
[13:28:29] [PASSED] 46 VFs
[13:28:29] [PASSED] 47 VFs
[13:28:29] [PASSED] 48 VFs
[13:28:29] [PASSED] 49 VFs
[13:28:29] [PASSED] 50 VFs
[13:28:29] [PASSED] 51 VFs
[13:28:29] [PASSED] 52 VFs
[13:28:29] [PASSED] 53 VFs
[13:28:29] [PASSED] 54 VFs
[13:28:29] [PASSED] 55 VFs
[13:28:29] [PASSED] 56 VFs
[13:28:29] [PASSED] 57 VFs
[13:28:29] [PASSED] 58 VFs
[13:28:29] [PASSED] 59 VFs
[13:28:29] [PASSED] 60 VFs
[13:28:29] [PASSED] 61 VFs
[13:28:29] [PASSED] 62 VFs
[13:28:29] [PASSED] 63 VFs
[13:28:29] ==================== [PASSED] fair_vram ====================
[13:28:29] ================== [PASSED] pf_gt_config ===================
[13:28:29] ===================== lmtt (1 subtest) =====================
[13:28:29] ======================== test_ops =========================
[13:28:29] [PASSED] 2-level
[13:28:29] [PASSED] multi-level
[13:28:29] ==================== [PASSED] test_ops =====================
[13:28:29] ====================== [PASSED] lmtt =======================
[13:28:29] ================= pf_service (11 subtests) =================
[13:28:29] [PASSED] pf_negotiate_any
[13:28:29] [PASSED] pf_negotiate_base_match
[13:28:29] [PASSED] pf_negotiate_base_newer
[13:28:29] [PASSED] pf_negotiate_base_next
[13:28:29] [SKIPPED] pf_negotiate_base_older
[13:28:29] [PASSED] pf_negotiate_base_prev
[13:28:29] [PASSED] pf_negotiate_latest_match
[13:28:29] [PASSED] pf_negotiate_latest_newer
[13:28:29] [PASSED] pf_negotiate_latest_next
[13:28:29] [SKIPPED] pf_negotiate_latest_older
[13:28:29] [SKIPPED] pf_negotiate_latest_prev
[13:28:29] =================== [PASSED] pf_service ====================
[13:28:29] ================= xe_guc_g2g (2 subtests) ==================
[13:28:29] ============== xe_live_guc_g2g_kunit_default ==============
[13:28:29] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[13:28:29] ============== xe_live_guc_g2g_kunit_allmem ===============
[13:28:29] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[13:28:29] =================== [SKIPPED] xe_guc_g2g ===================
[13:28:29] =================== xe_mocs (2 subtests) ===================
[13:28:29] ================ xe_live_mocs_kernel_kunit ================
[13:28:29] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[13:28:29] ================ xe_live_mocs_reset_kunit =================
[13:28:29] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[13:28:29] ==================== [SKIPPED] xe_mocs =====================
[13:28:29] ================= xe_migrate (2 subtests) ==================
[13:28:29] ================= xe_migrate_sanity_kunit =================
[13:28:29] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[13:28:29] ================== xe_validate_ccs_kunit ==================
[13:28:29] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[13:28:29] =================== [SKIPPED] xe_migrate ===================
[13:28:29] ================== xe_dma_buf (1 subtest) ==================
[13:28:29] ==================== xe_dma_buf_kunit =====================
[13:28:29] ================ [SKIPPED] xe_dma_buf_kunit ================
[13:28:29] =================== [SKIPPED] xe_dma_buf ===================
[13:28:29] ================= xe_bo_shrink (1 subtest) =================
[13:28:29] =================== xe_bo_shrink_kunit ====================
[13:28:29] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[13:28:29] ================== [SKIPPED] xe_bo_shrink ==================
[13:28:29] ==================== xe_bo (2 subtests) ====================
[13:28:29] ================== xe_ccs_migrate_kunit ===================
[13:28:29] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[13:28:29] ==================== xe_bo_evict_kunit ====================
[13:28:29] =============== [SKIPPED] xe_bo_evict_kunit ================
[13:28:29] ===================== [SKIPPED] xe_bo ======================
[13:28:29] ==================== args (13 subtests) ====================
[13:28:29] [PASSED] count_args_test
[13:28:29] [PASSED] call_args_example
[13:28:29] [PASSED] call_args_test
[13:28:29] [PASSED] drop_first_arg_example
[13:28:29] [PASSED] drop_first_arg_test
[13:28:29] [PASSED] first_arg_example
[13:28:29] [PASSED] first_arg_test
[13:28:29] [PASSED] last_arg_example
[13:28:29] [PASSED] last_arg_test
[13:28:29] [PASSED] pick_arg_example
[13:28:29] [PASSED] if_args_example
[13:28:29] [PASSED] if_args_test
[13:28:29] [PASSED] sep_comma_example
[13:28:29] ====================== [PASSED] args =======================
[13:28:29] =================== xe_pci (3 subtests) ====================
[13:28:29] ==================== check_graphics_ip ====================
[13:28:29] [PASSED] 12.00 Xe_LP
[13:28:29] [PASSED] 12.10 Xe_LP+
[13:28:29] [PASSED] 12.55 Xe_HPG
[13:28:29] [PASSED] 12.60 Xe_HPC
[13:28:29] [PASSED] 12.70 Xe_LPG
[13:28:29] [PASSED] 12.71 Xe_LPG
[13:28:29] [PASSED] 12.74 Xe_LPG+
[13:28:29] [PASSED] 20.01 Xe2_HPG
[13:28:29] [PASSED] 20.02 Xe2_HPG
[13:28:29] [PASSED] 20.04 Xe2_LPG
[13:28:29] [PASSED] 30.00 Xe3_LPG
[13:28:29] [PASSED] 30.01 Xe3_LPG
[13:28:29] [PASSED] 30.03 Xe3_LPG
[13:28:29] [PASSED] 30.04 Xe3_LPG
[13:28:29] [PASSED] 30.05 Xe3_LPG
[13:28:29] [PASSED] 35.10 Xe3p_LPG
[13:28:29] [PASSED] 35.11 Xe3p_XPC
[13:28:29] ================ [PASSED] check_graphics_ip ================
[13:28:29] ===================== check_media_ip ======================
[13:28:29] [PASSED] 12.00 Xe_M
[13:28:29] [PASSED] 12.55 Xe_HPM
[13:28:29] [PASSED] 13.00 Xe_LPM+
[13:28:29] [PASSED] 13.01 Xe2_HPM
[13:28:29] [PASSED] 20.00 Xe2_LPM
[13:28:29] [PASSED] 30.00 Xe3_LPM
[13:28:29] [PASSED] 30.02 Xe3_LPM
[13:28:29] [PASSED] 35.00 Xe3p_LPM
[13:28:29] [PASSED] 35.03 Xe3p_HPM
[13:28:29] ================= [PASSED] check_media_ip ==================
[13:28:29] =================== check_platform_desc ===================
[13:28:29] [PASSED] 0x9A60 (TIGERLAKE)
[13:28:29] [PASSED] 0x9A68 (TIGERLAKE)
[13:28:29] [PASSED] 0x9A70 (TIGERLAKE)
[13:28:29] [PASSED] 0x9A40 (TIGERLAKE)
[13:28:29] [PASSED] 0x9A49 (TIGERLAKE)
[13:28:29] [PASSED] 0x9A59 (TIGERLAKE)
[13:28:29] [PASSED] 0x9A78 (TIGERLAKE)
[13:28:29] [PASSED] 0x9AC0 (TIGERLAKE)
[13:28:29] [PASSED] 0x9AC9 (TIGERLAKE)
[13:28:29] [PASSED] 0x9AD9 (TIGERLAKE)
[13:28:29] [PASSED] 0x9AF8 (TIGERLAKE)
[13:28:29] [PASSED] 0x4C80 (ROCKETLAKE)
[13:28:29] [PASSED] 0x4C8A (ROCKETLAKE)
[13:28:29] [PASSED] 0x4C8B (ROCKETLAKE)
[13:28:29] [PASSED] 0x4C8C (ROCKETLAKE)
[13:28:29] [PASSED] 0x4C90 (ROCKETLAKE)
[13:28:29] [PASSED] 0x4C9A (ROCKETLAKE)
[13:28:29] [PASSED] 0x4680 (ALDERLAKE_S)
[13:28:29] [PASSED] 0x4682 (ALDERLAKE_S)
[13:28:29] [PASSED] 0x4688 (ALDERLAKE_S)
[13:28:29] [PASSED] 0x468A (ALDERLAKE_S)
[13:28:29] [PASSED] 0x468B (ALDERLAKE_S)
[13:28:29] [PASSED] 0x4690 (ALDERLAKE_S)
[13:28:29] [PASSED] 0x4692 (ALDERLAKE_S)
[13:28:29] [PASSED] 0x4693 (ALDERLAKE_S)
[13:28:29] [PASSED] 0x46A0 (ALDERLAKE_P)
[13:28:29] [PASSED] 0x46A1 (ALDERLAKE_P)
[13:28:29] [PASSED] 0x46A2 (ALDERLAKE_P)
[13:28:29] [PASSED] 0x46A3 (ALDERLAKE_P)
[13:28:29] [PASSED] 0x46A6 (ALDERLAKE_P)
[13:28:29] [PASSED] 0x46A8 (ALDERLAKE_P)
[13:28:29] [PASSED] 0x46AA (ALDERLAKE_P)
[13:28:29] [PASSED] 0x462A (ALDERLAKE_P)
[13:28:29] [PASSED] 0x4626 (ALDERLAKE_P)
[13:28:29] [PASSED] 0x4628 (ALDERLAKE_P)
[13:28:29] [PASSED] 0x46B0 (ALDERLAKE_P)
[13:28:29] [PASSED] 0x46B1 (ALDERLAKE_P)
[13:28:29] [PASSED] 0x46B2 (ALDERLAKE_P)
[13:28:29] [PASSED] 0x46B3 (ALDERLAKE_P)
[13:28:29] [PASSED] 0x46C0 (ALDERLAKE_P)
[13:28:29] [PASSED] 0x46C1 (ALDERLAKE_P)
[13:28:29] [PASSED] 0x46C2 (ALDERLAKE_P)
[13:28:29] [PASSED] 0x46C3 (ALDERLAKE_P)
[13:28:29] [PASSED] 0x46D0 (ALDERLAKE_N)
[13:28:29] [PASSED] 0x46D1 (ALDERLAKE_N)
[13:28:29] [PASSED] 0x46D2 (ALDERLAKE_N)
[13:28:29] [PASSED] 0x46D3 (ALDERLAKE_N)
[13:28:29] [PASSED] 0x46D4 (ALDERLAKE_N)
[13:28:29] [PASSED] 0xA721 (ALDERLAKE_P)
[13:28:29] [PASSED] 0xA7A1 (ALDERLAKE_P)
[13:28:29] [PASSED] 0xA7A9 (ALDERLAKE_P)
[13:28:29] [PASSED] 0xA7AC (ALDERLAKE_P)
[13:28:29] [PASSED] 0xA7AD (ALDERLAKE_P)
[13:28:29] [PASSED] 0xA720 (ALDERLAKE_P)
[13:28:29] [PASSED] 0xA7A0 (ALDERLAKE_P)
[13:28:29] [PASSED] 0xA7A8 (ALDERLAKE_P)
[13:28:29] [PASSED] 0xA7AA (ALDERLAKE_P)
[13:28:29] [PASSED] 0xA7AB (ALDERLAKE_P)
[13:28:29] [PASSED] 0xA780 (ALDERLAKE_S)
[13:28:29] [PASSED] 0xA781 (ALDERLAKE_S)
[13:28:29] [PASSED] 0xA782 (ALDERLAKE_S)
[13:28:29] [PASSED] 0xA783 (ALDERLAKE_S)
[13:28:29] [PASSED] 0xA788 (ALDERLAKE_S)
[13:28:29] [PASSED] 0xA789 (ALDERLAKE_S)
[13:28:29] [PASSED] 0xA78A (ALDERLAKE_S)
[13:28:29] [PASSED] 0xA78B (ALDERLAKE_S)
[13:28:29] [PASSED] 0x4905 (DG1)
[13:28:29] [PASSED] 0x4906 (DG1)
[13:28:29] [PASSED] 0x4907 (DG1)
[13:28:29] [PASSED] 0x4908 (DG1)
[13:28:29] [PASSED] 0x4909 (DG1)
[13:28:29] [PASSED] 0x56C0 (DG2)
[13:28:29] [PASSED] 0x56C2 (DG2)
[13:28:29] [PASSED] 0x56C1 (DG2)
[13:28:29] [PASSED] 0x7D51 (METEORLAKE)
[13:28:29] [PASSED] 0x7DD1 (METEORLAKE)
[13:28:29] [PASSED] 0x7D41 (METEORLAKE)
[13:28:29] [PASSED] 0x7D67 (METEORLAKE)
[13:28:29] [PASSED] 0xB640 (METEORLAKE)
[13:28:29] [PASSED] 0x56A0 (DG2)
[13:28:29] [PASSED] 0x56A1 (DG2)
[13:28:29] [PASSED] 0x56A2 (DG2)
[13:28:29] [PASSED] 0x56BE (DG2)
[13:28:29] [PASSED] 0x56BF (DG2)
[13:28:29] [PASSED] 0x5690 (DG2)
[13:28:29] [PASSED] 0x5691 (DG2)
[13:28:29] [PASSED] 0x5692 (DG2)
[13:28:29] [PASSED] 0x56A5 (DG2)
[13:28:29] [PASSED] 0x56A6 (DG2)
[13:28:29] [PASSED] 0x56B0 (DG2)
[13:28:29] [PASSED] 0x56B1 (DG2)
[13:28:29] [PASSED] 0x56BA (DG2)
[13:28:29] [PASSED] 0x56BB (DG2)
[13:28:29] [PASSED] 0x56BC (DG2)
[13:28:29] [PASSED] 0x56BD (DG2)
[13:28:29] [PASSED] 0x5693 (DG2)
[13:28:29] [PASSED] 0x5694 (DG2)
[13:28:29] [PASSED] 0x5695 (DG2)
[13:28:29] [PASSED] 0x56A3 (DG2)
[13:28:29] [PASSED] 0x56A4 (DG2)
[13:28:29] [PASSED] 0x56B2 (DG2)
[13:28:29] [PASSED] 0x56B3 (DG2)
[13:28:29] [PASSED] 0x5696 (DG2)
[13:28:29] [PASSED] 0x5697 (DG2)
[13:28:29] [PASSED] 0xB69 (PVC)
[13:28:29] [PASSED] 0xB6E (PVC)
[13:28:29] [PASSED] 0xBD4 (PVC)
[13:28:29] [PASSED] 0xBD5 (PVC)
[13:28:29] [PASSED] 0xBD6 (PVC)
[13:28:29] [PASSED] 0xBD7 (PVC)
[13:28:29] [PASSED] 0xBD8 (PVC)
[13:28:29] [PASSED] 0xBD9 (PVC)
[13:28:29] [PASSED] 0xBDA (PVC)
[13:28:29] [PASSED] 0xBDB (PVC)
[13:28:29] [PASSED] 0xBE0 (PVC)
[13:28:29] [PASSED] 0xBE1 (PVC)
[13:28:29] [PASSED] 0xBE5 (PVC)
[13:28:29] [PASSED] 0x7D40 (METEORLAKE)
[13:28:29] [PASSED] 0x7D45 (METEORLAKE)
[13:28:29] [PASSED] 0x7D55 (METEORLAKE)
[13:28:29] [PASSED] 0x7D60 (METEORLAKE)
[13:28:29] [PASSED] 0x7DD5 (METEORLAKE)
[13:28:29] [PASSED] 0x6420 (LUNARLAKE)
[13:28:29] [PASSED] 0x64A0 (LUNARLAKE)
[13:28:29] [PASSED] 0x64B0 (LUNARLAKE)
[13:28:29] [PASSED] 0xE202 (BATTLEMAGE)
[13:28:29] [PASSED] 0xE209 (BATTLEMAGE)
[13:28:29] [PASSED] 0xE20B (BATTLEMAGE)
[13:28:29] [PASSED] 0xE20C (BATTLEMAGE)
[13:28:29] [PASSED] 0xE20D (BATTLEMAGE)
[13:28:29] [PASSED] 0xE210 (BATTLEMAGE)
[13:28:29] [PASSED] 0xE211 (BATTLEMAGE)
[13:28:29] [PASSED] 0xE212 (BATTLEMAGE)
[13:28:29] [PASSED] 0xE216 (BATTLEMAGE)
[13:28:29] [PASSED] 0xE220 (BATTLEMAGE)
[13:28:29] [PASSED] 0xE221 (BATTLEMAGE)
[13:28:29] [PASSED] 0xE222 (BATTLEMAGE)
[13:28:29] [PASSED] 0xE223 (BATTLEMAGE)
[13:28:29] [PASSED] 0xB080 (PANTHERLAKE)
[13:28:29] [PASSED] 0xB081 (PANTHERLAKE)
[13:28:29] [PASSED] 0xB082 (PANTHERLAKE)
[13:28:29] [PASSED] 0xB083 (PANTHERLAKE)
[13:28:29] [PASSED] 0xB084 (PANTHERLAKE)
[13:28:29] [PASSED] 0xB085 (PANTHERLAKE)
[13:28:29] [PASSED] 0xB086 (PANTHERLAKE)
[13:28:29] [PASSED] 0xB087 (PANTHERLAKE)
[13:28:29] [PASSED] 0xB08F (PANTHERLAKE)
[13:28:29] [PASSED] 0xB090 (PANTHERLAKE)
[13:28:29] [PASSED] 0xB0A0 (PANTHERLAKE)
[13:28:29] [PASSED] 0xB0B0 (PANTHERLAKE)
[13:28:29] [PASSED] 0xFD80 (PANTHERLAKE)
[13:28:29] [PASSED] 0xFD81 (PANTHERLAKE)
[13:28:29] [PASSED] 0xD740 (NOVALAKE_S)
[13:28:29] [PASSED] 0xD741 (NOVALAKE_S)
[13:28:29] [PASSED] 0xD742 (NOVALAKE_S)
[13:28:29] [PASSED] 0xD743 (NOVALAKE_S)
[13:28:29] [PASSED] 0xD744 (NOVALAKE_S)
[13:28:29] [PASSED] 0xD745 (NOVALAKE_S)
[13:28:29] [PASSED] 0x674C (CRESCENTISLAND)
[13:28:29] [PASSED] 0xD750 (NOVALAKE_P)
[13:28:29] [PASSED] 0xD751 (NOVALAKE_P)
[13:28:29] [PASSED] 0xD752 (NOVALAKE_P)
[13:28:29] [PASSED] 0xD753 (NOVALAKE_P)
[13:28:29] [PASSED] 0xD754 (NOVALAKE_P)
[13:28:29] [PASSED] 0xD755 (NOVALAKE_P)
[13:28:29] [PASSED] 0xD756 (NOVALAKE_P)
[13:28:29] [PASSED] 0xD757 (NOVALAKE_P)
[13:28:29] [PASSED] 0xD75F (NOVALAKE_P)
[13:28:29] =============== [PASSED] check_platform_desc ===============
[13:28:29] ===================== [PASSED] xe_pci ======================
[13:28:29] =================== xe_rtp (2 subtests) ====================
[13:28:29] =============== xe_rtp_process_to_sr_tests ================
[13:28:29] [PASSED] coalesce-same-reg
[13:28:29] [PASSED] no-match-no-add
[13:28:29] [PASSED] match-or
[13:28:29] [PASSED] match-or-xfail
[13:28:29] [PASSED] no-match-no-add-multiple-rules
[13:28:29] [PASSED] two-regs-two-entries
[13:28:29] [PASSED] clr-one-set-other
[13:28:29] [PASSED] set-field
[13:28:29] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[13:28:29] [PASSED] conflict-not-disjoint
[13:28:29] [PASSED] conflict-reg-type
[13:28:29] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[13:28:29] ================== xe_rtp_process_tests ===================
[13:28:29] [PASSED] active1
[13:28:29] [PASSED] active2
[13:28:29] [PASSED] active-inactive
[13:28:29] [PASSED] inactive-active
[13:28:29] [PASSED] inactive-1st_or_active-inactive
[13:28:29] [PASSED] inactive-2nd_or_active-inactive
[13:28:29] [PASSED] inactive-last_or_active-inactive
[13:28:29] [PASSED] inactive-no_or_active-inactive
[13:28:29] ============== [PASSED] xe_rtp_process_tests ===============
[13:28:29] ===================== [PASSED] xe_rtp ======================
[13:28:29] ==================== xe_wa (1 subtest) =====================
[13:28:29] ======================== xe_wa_gt =========================
[13:28:29] [PASSED] TIGERLAKE B0
[13:28:29] [PASSED] DG1 A0
[13:28:29] [PASSED] DG1 B0
[13:28:29] [PASSED] ALDERLAKE_S A0
[13:28:29] [PASSED] ALDERLAKE_S B0
[13:28:29] [PASSED] ALDERLAKE_S C0
[13:28:29] [PASSED] ALDERLAKE_S D0
[13:28:29] [PASSED] ALDERLAKE_P A0
[13:28:29] [PASSED] ALDERLAKE_P B0
[13:28:29] [PASSED] ALDERLAKE_P C0
[13:28:29] [PASSED] ALDERLAKE_S RPLS D0
[13:28:29] [PASSED] ALDERLAKE_P RPLU E0
[13:28:29] [PASSED] DG2 G10 C0
[13:28:29] [PASSED] DG2 G11 B1
[13:28:29] [PASSED] DG2 G12 A1
[13:28:29] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[13:28:29] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[13:28:29] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[13:28:29] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[13:28:29] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[13:28:29] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[13:28:29] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[13:28:29] ==================== [PASSED] xe_wa_gt =====================
[13:28:29] ====================== [PASSED] xe_wa ======================
[13:28:29] ============================================================
[13:28:29] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[13:28:29] Elapsed time: 35.352s total, 4.254s configuring, 30.481s building, 0.601s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[13:28:29] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:28:31] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[13:28:54] Starting KUnit Kernel (1/1)...
[13:28:54] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:28:54] ============ drm_test_pick_cmdline (2 subtests) ============
[13:28:54] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[13:28:54] =============== drm_test_pick_cmdline_named ===============
[13:28:54] [PASSED] NTSC
[13:28:54] [PASSED] NTSC-J
[13:28:54] [PASSED] PAL
[13:28:54] [PASSED] PAL-M
[13:28:54] =========== [PASSED] drm_test_pick_cmdline_named ===========
[13:28:54] ============== [PASSED] drm_test_pick_cmdline ==============
[13:28:54] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[13:28:54] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[13:28:54] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[13:28:54] =========== drm_validate_clone_mode (2 subtests) ===========
[13:28:54] ============== drm_test_check_in_clone_mode ===============
[13:28:54] [PASSED] in_clone_mode
[13:28:54] [PASSED] not_in_clone_mode
[13:28:54] ========== [PASSED] drm_test_check_in_clone_mode ===========
[13:28:54] =============== drm_test_check_valid_clones ===============
[13:28:54] [PASSED] not_in_clone_mode
[13:28:54] [PASSED] valid_clone
[13:28:54] [PASSED] invalid_clone
[13:28:54] =========== [PASSED] drm_test_check_valid_clones ===========
[13:28:54] ============= [PASSED] drm_validate_clone_mode =============
[13:28:54] ============= drm_validate_modeset (1 subtest) =============
[13:28:54] [PASSED] drm_test_check_connector_changed_modeset
[13:28:54] ============== [PASSED] drm_validate_modeset ===============
[13:28:54] ====== drm_test_bridge_get_current_state (2 subtests) ======
[13:28:54] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[13:28:54] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[13:28:54] ======== [PASSED] drm_test_bridge_get_current_state ========
[13:28:54] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[13:28:54] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[13:28:54] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[13:28:54] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[13:28:54] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[13:28:54] ============== drm_bridge_alloc (2 subtests) ===============
[13:28:54] [PASSED] drm_test_drm_bridge_alloc_basic
[13:28:54] [PASSED] drm_test_drm_bridge_alloc_get_put
[13:28:54] ================ [PASSED] drm_bridge_alloc =================
[13:28:54] ============= drm_cmdline_parser (40 subtests) =============
[13:28:54] [PASSED] drm_test_cmdline_force_d_only
[13:28:54] [PASSED] drm_test_cmdline_force_D_only_dvi
[13:28:54] [PASSED] drm_test_cmdline_force_D_only_hdmi
[13:28:54] [PASSED] drm_test_cmdline_force_D_only_not_digital
[13:28:54] [PASSED] drm_test_cmdline_force_e_only
[13:28:54] [PASSED] drm_test_cmdline_res
[13:28:54] [PASSED] drm_test_cmdline_res_vesa
[13:28:54] [PASSED] drm_test_cmdline_res_vesa_rblank
[13:28:54] [PASSED] drm_test_cmdline_res_rblank
[13:28:54] [PASSED] drm_test_cmdline_res_bpp
[13:28:54] [PASSED] drm_test_cmdline_res_refresh
[13:28:54] [PASSED] drm_test_cmdline_res_bpp_refresh
[13:28:54] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[13:28:54] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[13:28:54] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[13:28:54] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[13:28:54] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[13:28:54] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[13:28:54] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[13:28:54] [PASSED] drm_test_cmdline_res_margins_force_on
[13:28:54] [PASSED] drm_test_cmdline_res_vesa_margins
[13:28:54] [PASSED] drm_test_cmdline_name
[13:28:54] [PASSED] drm_test_cmdline_name_bpp
[13:28:54] [PASSED] drm_test_cmdline_name_option
[13:28:54] [PASSED] drm_test_cmdline_name_bpp_option
[13:28:54] [PASSED] drm_test_cmdline_rotate_0
[13:28:54] [PASSED] drm_test_cmdline_rotate_90
[13:28:54] [PASSED] drm_test_cmdline_rotate_180
[13:28:54] [PASSED] drm_test_cmdline_rotate_270
[13:28:54] [PASSED] drm_test_cmdline_hmirror
[13:28:54] [PASSED] drm_test_cmdline_vmirror
[13:28:54] [PASSED] drm_test_cmdline_margin_options
[13:28:54] [PASSED] drm_test_cmdline_multiple_options
[13:28:54] [PASSED] drm_test_cmdline_bpp_extra_and_option
[13:28:54] [PASSED] drm_test_cmdline_extra_and_option
[13:28:54] [PASSED] drm_test_cmdline_freestanding_options
[13:28:54] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[13:28:54] [PASSED] drm_test_cmdline_panel_orientation
[13:28:54] ================ drm_test_cmdline_invalid =================
[13:28:54] [PASSED] margin_only
[13:28:54] [PASSED] interlace_only
[13:28:54] [PASSED] res_missing_x
[13:28:54] [PASSED] res_missing_y
[13:28:54] [PASSED] res_bad_y
[13:28:54] [PASSED] res_missing_y_bpp
[13:28:54] [PASSED] res_bad_bpp
[13:28:54] [PASSED] res_bad_refresh
[13:28:54] [PASSED] res_bpp_refresh_force_on_off
[13:28:54] [PASSED] res_invalid_mode
[13:28:54] [PASSED] res_bpp_wrong_place_mode
[13:28:54] [PASSED] name_bpp_refresh
[13:28:54] [PASSED] name_refresh
[13:28:54] [PASSED] name_refresh_wrong_mode
[13:28:54] [PASSED] name_refresh_invalid_mode
[13:28:54] [PASSED] rotate_multiple
[13:28:54] [PASSED] rotate_invalid_val
[13:28:54] [PASSED] rotate_truncated
[13:28:54] [PASSED] invalid_option
[13:28:54] [PASSED] invalid_tv_option
[13:28:54] [PASSED] truncated_tv_option
[13:28:54] ============ [PASSED] drm_test_cmdline_invalid =============
[13:28:54] =============== drm_test_cmdline_tv_options ===============
[13:28:54] [PASSED] NTSC
[13:28:54] [PASSED] NTSC_443
[13:28:54] [PASSED] NTSC_J
[13:28:54] [PASSED] PAL
[13:28:54] [PASSED] PAL_M
[13:28:54] [PASSED] PAL_N
[13:28:54] [PASSED] SECAM
[13:28:54] [PASSED] MONO_525
[13:28:54] [PASSED] MONO_625
[13:28:54] =========== [PASSED] drm_test_cmdline_tv_options ===========
[13:28:54] =============== [PASSED] drm_cmdline_parser ================
[13:28:54] ========== drmm_connector_hdmi_init (20 subtests) ==========
[13:28:54] [PASSED] drm_test_connector_hdmi_init_valid
[13:28:54] [PASSED] drm_test_connector_hdmi_init_bpc_8
[13:28:54] [PASSED] drm_test_connector_hdmi_init_bpc_10
[13:28:54] [PASSED] drm_test_connector_hdmi_init_bpc_12
[13:28:54] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[13:28:54] [PASSED] drm_test_connector_hdmi_init_bpc_null
[13:28:54] [PASSED] drm_test_connector_hdmi_init_formats_empty
[13:28:54] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[13:28:54] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[13:28:54] [PASSED] supported_formats=0x9 yuv420_allowed=1
[13:28:54] [PASSED] supported_formats=0x9 yuv420_allowed=0
[13:28:54] [PASSED] supported_formats=0x3 yuv420_allowed=1
[13:28:54] [PASSED] supported_formats=0x3 yuv420_allowed=0
[13:28:54] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[13:28:54] [PASSED] drm_test_connector_hdmi_init_null_ddc
[13:28:54] [PASSED] drm_test_connector_hdmi_init_null_product
[13:28:54] [PASSED] drm_test_connector_hdmi_init_null_vendor
[13:28:54] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[13:28:54] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[13:28:54] [PASSED] drm_test_connector_hdmi_init_product_valid
[13:28:54] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[13:28:54] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[13:28:54] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[13:28:54] ========= drm_test_connector_hdmi_init_type_valid =========
[13:28:54] [PASSED] HDMI-A
[13:28:54] [PASSED] HDMI-B
[13:28:54] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[13:28:54] ======== drm_test_connector_hdmi_init_type_invalid ========
[13:28:54] [PASSED] Unknown
[13:28:54] [PASSED] VGA
[13:28:54] [PASSED] DVI-I
[13:28:54] [PASSED] DVI-D
[13:28:54] [PASSED] DVI-A
[13:28:54] [PASSED] Composite
[13:28:54] [PASSED] SVIDEO
[13:28:54] [PASSED] LVDS
[13:28:54] [PASSED] Component
[13:28:54] [PASSED] DIN
[13:28:54] [PASSED] DP
[13:28:54] [PASSED] TV
[13:28:54] [PASSED] eDP
[13:28:54] [PASSED] Virtual
[13:28:54] [PASSED] DSI
[13:28:54] [PASSED] DPI
[13:28:54] [PASSED] Writeback
[13:28:54] [PASSED] SPI
[13:28:54] [PASSED] USB
[13:28:54] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[13:28:54] ============ [PASSED] drmm_connector_hdmi_init =============
[13:28:54] ============= drmm_connector_init (3 subtests) =============
[13:28:54] [PASSED] drm_test_drmm_connector_init
[13:28:54] [PASSED] drm_test_drmm_connector_init_null_ddc
[13:28:54] ========= drm_test_drmm_connector_init_type_valid =========
[13:28:54] [PASSED] Unknown
[13:28:54] [PASSED] VGA
[13:28:54] [PASSED] DVI-I
[13:28:54] [PASSED] DVI-D
[13:28:54] [PASSED] DVI-A
[13:28:54] [PASSED] Composite
[13:28:54] [PASSED] SVIDEO
[13:28:54] [PASSED] LVDS
[13:28:54] [PASSED] Component
[13:28:54] [PASSED] DIN
[13:28:54] [PASSED] DP
[13:28:54] [PASSED] HDMI-A
[13:28:54] [PASSED] HDMI-B
[13:28:54] [PASSED] TV
[13:28:54] [PASSED] eDP
[13:28:54] [PASSED] Virtual
[13:28:54] [PASSED] DSI
[13:28:54] [PASSED] DPI
[13:28:54] [PASSED] Writeback
[13:28:54] [PASSED] SPI
[13:28:54] [PASSED] USB
[13:28:54] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[13:28:54] =============== [PASSED] drmm_connector_init ===============
[13:28:54] ========= drm_connector_dynamic_init (6 subtests) ==========
[13:28:54] [PASSED] drm_test_drm_connector_dynamic_init
[13:28:54] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[13:28:54] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[13:28:54] [PASSED] drm_test_drm_connector_dynamic_init_properties
[13:28:54] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[13:28:54] [PASSED] Unknown
[13:28:54] [PASSED] VGA
[13:28:54] [PASSED] DVI-I
[13:28:54] [PASSED] DVI-D
[13:28:54] [PASSED] DVI-A
[13:28:54] [PASSED] Composite
[13:28:54] [PASSED] SVIDEO
[13:28:54] [PASSED] LVDS
[13:28:54] [PASSED] Component
[13:28:54] [PASSED] DIN
[13:28:54] [PASSED] DP
[13:28:54] [PASSED] HDMI-A
[13:28:54] [PASSED] HDMI-B
[13:28:54] [PASSED] TV
[13:28:54] [PASSED] eDP
[13:28:54] [PASSED] Virtual
[13:28:54] [PASSED] DSI
[13:28:54] [PASSED] DPI
[13:28:54] [PASSED] Writeback
[13:28:54] [PASSED] SPI
[13:28:54] [PASSED] USB
[13:28:54] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[13:28:54] ======== drm_test_drm_connector_dynamic_init_name =========
[13:28:54] [PASSED] Unknown
[13:28:54] [PASSED] VGA
[13:28:54] [PASSED] DVI-I
[13:28:54] [PASSED] DVI-D
[13:28:54] [PASSED] DVI-A
[13:28:54] [PASSED] Composite
[13:28:54] [PASSED] SVIDEO
[13:28:54] [PASSED] LVDS
[13:28:54] [PASSED] Component
[13:28:54] [PASSED] DIN
[13:28:54] [PASSED] DP
[13:28:54] [PASSED] HDMI-A
[13:28:54] [PASSED] HDMI-B
[13:28:54] [PASSED] TV
[13:28:54] [PASSED] eDP
[13:28:54] [PASSED] Virtual
[13:28:54] [PASSED] DSI
[13:28:54] [PASSED] DPI
[13:28:54] [PASSED] Writeback
[13:28:54] [PASSED] SPI
[13:28:54] [PASSED] USB
[13:28:54] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[13:28:54] =========== [PASSED] drm_connector_dynamic_init ============
[13:28:54] ==== drm_connector_dynamic_register_early (4 subtests) =====
[13:28:54] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[13:28:54] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[13:28:54] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[13:28:54] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[13:28:54] ====== [PASSED] drm_connector_dynamic_register_early =======
[13:28:54] ======= drm_connector_dynamic_register (7 subtests) ========
[13:28:54] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[13:28:54] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[13:28:54] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[13:28:54] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[13:28:54] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[13:28:54] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[13:28:54] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[13:28:54] ========= [PASSED] drm_connector_dynamic_register ==========
[13:28:54] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[13:28:54] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[13:28:54] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[13:28:54] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[13:28:54] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[13:28:54] ========== drm_test_get_tv_mode_from_name_valid ===========
[13:28:54] [PASSED] NTSC
[13:28:54] [PASSED] NTSC-443
[13:28:54] [PASSED] NTSC-J
[13:28:54] [PASSED] PAL
[13:28:54] [PASSED] PAL-M
[13:28:54] [PASSED] PAL-N
[13:28:54] [PASSED] SECAM
[13:28:54] [PASSED] Mono
[13:28:54] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[13:28:54] [PASSED] drm_test_get_tv_mode_from_name_truncated
[13:28:54] ============ [PASSED] drm_get_tv_mode_from_name ============
[13:28:54] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[13:28:54] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[13:28:54] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[13:28:54] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[13:28:54] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[13:28:54] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[13:28:54] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[13:28:54] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[13:28:54] [PASSED] VIC 96
[13:28:54] [PASSED] VIC 97
[13:28:54] [PASSED] VIC 101
[13:28:54] [PASSED] VIC 102
[13:28:54] [PASSED] VIC 106
[13:28:54] [PASSED] VIC 107
[13:28:54] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[13:28:54] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[13:28:54] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[13:28:54] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[13:28:54] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[13:28:54] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[13:28:54] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[13:28:54] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[13:28:54] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[13:28:54] [PASSED] Automatic
[13:28:54] [PASSED] Full
[13:28:54] [PASSED] Limited 16:235
[13:28:54] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[13:28:54] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[13:28:54] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[13:28:54] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[13:28:54] === drm_test_drm_hdmi_connector_get_output_format_name ====
[13:28:54] [PASSED] RGB
[13:28:54] [PASSED] YUV 4:2:0
[13:28:54] [PASSED] YUV 4:2:2
[13:28:54] [PASSED] YUV 4:4:4
[13:28:54] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[13:28:54] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[13:28:54] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[13:28:54] ============= drm_damage_helper (21 subtests) ==============
[13:28:54] [PASSED] drm_test_damage_iter_no_damage
[13:28:54] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[13:28:54] [PASSED] drm_test_damage_iter_no_damage_src_moved
[13:28:54] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[13:28:54] [PASSED] drm_test_damage_iter_no_damage_not_visible
[13:28:54] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[13:28:54] [PASSED] drm_test_damage_iter_no_damage_no_fb
[13:28:54] [PASSED] drm_test_damage_iter_simple_damage
[13:28:54] [PASSED] drm_test_damage_iter_single_damage
[13:28:54] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[13:28:54] [PASSED] drm_test_damage_iter_single_damage_outside_src
[13:28:54] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[13:28:54] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[13:28:54] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[13:28:54] [PASSED] drm_test_damage_iter_single_damage_src_moved
[13:28:54] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[13:28:54] [PASSED] drm_test_damage_iter_damage
[13:28:54] [PASSED] drm_test_damage_iter_damage_one_intersect
[13:28:54] [PASSED] drm_test_damage_iter_damage_one_outside
[13:28:54] [PASSED] drm_test_damage_iter_damage_src_moved
[13:28:54] [PASSED] drm_test_damage_iter_damage_not_visible
[13:28:54] ================ [PASSED] drm_damage_helper ================
[13:28:54] ============== drm_dp_mst_helper (3 subtests) ==============
[13:28:54] ============== drm_test_dp_mst_calc_pbn_mode ==============
[13:28:54] [PASSED] Clock 154000 BPP 30 DSC disabled
[13:28:54] [PASSED] Clock 234000 BPP 30 DSC disabled
[13:28:54] [PASSED] Clock 297000 BPP 24 DSC disabled
[13:28:54] [PASSED] Clock 332880 BPP 24 DSC enabled
[13:28:54] [PASSED] Clock 324540 BPP 24 DSC enabled
[13:28:54] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[13:28:54] ============== drm_test_dp_mst_calc_pbn_div ===============
[13:28:54] [PASSED] Link rate 2000000 lane count 4
[13:28:54] [PASSED] Link rate 2000000 lane count 2
[13:28:54] [PASSED] Link rate 2000000 lane count 1
[13:28:54] [PASSED] Link rate 1350000 lane count 4
[13:28:54] [PASSED] Link rate 1350000 lane count 2
[13:28:54] [PASSED] Link rate 1350000 lane count 1
[13:28:54] [PASSED] Link rate 1000000 lane count 4
[13:28:54] [PASSED] Link rate 1000000 lane count 2
[13:28:54] [PASSED] Link rate 1000000 lane count 1
[13:28:54] [PASSED] Link rate 810000 lane count 4
[13:28:54] [PASSED] Link rate 810000 lane count 2
[13:28:54] [PASSED] Link rate 810000 lane count 1
[13:28:54] [PASSED] Link rate 540000 lane count 4
[13:28:54] [PASSED] Link rate 540000 lane count 2
[13:28:54] [PASSED] Link rate 540000 lane count 1
[13:28:54] [PASSED] Link rate 270000 lane count 4
[13:28:54] [PASSED] Link rate 270000 lane count 2
[13:28:54] [PASSED] Link rate 270000 lane count 1
[13:28:54] [PASSED] Link rate 162000 lane count 4
[13:28:54] [PASSED] Link rate 162000 lane count 2
[13:28:54] [PASSED] Link rate 162000 lane count 1
[13:28:54] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[13:28:54] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[13:28:54] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[13:28:54] [PASSED] DP_POWER_UP_PHY with port number
[13:28:54] [PASSED] DP_POWER_DOWN_PHY with port number
[13:28:54] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[13:28:54] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[13:28:54] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[13:28:54] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[13:28:54] [PASSED] DP_QUERY_PAYLOAD with port number
[13:28:54] [PASSED] DP_QUERY_PAYLOAD with VCPI
[13:28:54] [PASSED] DP_REMOTE_DPCD_READ with port number
[13:28:54] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[13:28:54] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[13:28:54] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[13:28:54] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[13:28:54] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[13:28:54] [PASSED] DP_REMOTE_I2C_READ with port number
[13:28:54] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[13:28:54] [PASSED] DP_REMOTE_I2C_READ with transactions array
[13:28:54] [PASSED] DP_REMOTE_I2C_WRITE with port number
[13:28:54] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[13:28:54] [PASSED] DP_REMOTE_I2C_WRITE with data array
[13:28:54] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[13:28:54] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[13:28:54] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[13:28:54] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[13:28:54] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[13:28:54] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[13:28:54] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[13:28:54] ================ [PASSED] drm_dp_mst_helper ================
[13:28:54] ================== drm_exec (7 subtests) ===================
[13:28:54] [PASSED] sanitycheck
[13:28:54] [PASSED] test_lock
[13:28:54] [PASSED] test_lock_unlock
[13:28:54] [PASSED] test_duplicates
[13:28:54] [PASSED] test_prepare
[13:28:54] [PASSED] test_prepare_array
[13:28:54] [PASSED] test_multiple_loops
[13:28:54] ==================== [PASSED] drm_exec =====================
[13:28:54] =========== drm_format_helper_test (17 subtests) ===========
[13:28:54] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[13:28:54] [PASSED] single_pixel_source_buffer
[13:28:54] [PASSED] single_pixel_clip_rectangle
[13:28:54] [PASSED] well_known_colors
[13:28:54] [PASSED] destination_pitch
[13:28:54] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[13:28:54] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[13:28:54] [PASSED] single_pixel_source_buffer
[13:28:54] [PASSED] single_pixel_clip_rectangle
[13:28:54] [PASSED] well_known_colors
[13:28:54] [PASSED] destination_pitch
[13:28:54] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[13:28:54] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[13:28:54] [PASSED] single_pixel_source_buffer
[13:28:54] [PASSED] single_pixel_clip_rectangle
[13:28:54] [PASSED] well_known_colors
[13:28:54] [PASSED] destination_pitch
[13:28:54] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[13:28:54] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[13:28:54] [PASSED] single_pixel_source_buffer
[13:28:54] [PASSED] single_pixel_clip_rectangle
[13:28:54] [PASSED] well_known_colors
[13:28:54] [PASSED] destination_pitch
[13:28:54] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[13:28:54] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[13:28:54] [PASSED] single_pixel_source_buffer
[13:28:54] [PASSED] single_pixel_clip_rectangle
[13:28:54] [PASSED] well_known_colors
[13:28:54] [PASSED] destination_pitch
[13:28:54] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[13:28:54] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[13:28:54] [PASSED] single_pixel_source_buffer
[13:28:54] [PASSED] single_pixel_clip_rectangle
[13:28:54] [PASSED] well_known_colors
[13:28:54] [PASSED] destination_pitch
[13:28:54] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[13:28:54] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[13:28:54] [PASSED] single_pixel_source_buffer
[13:28:54] [PASSED] single_pixel_clip_rectangle
[13:28:54] [PASSED] well_known_colors
[13:28:54] [PASSED] destination_pitch
[13:28:54] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[13:28:54] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[13:28:54] [PASSED] single_pixel_source_buffer
[13:28:54] [PASSED] single_pixel_clip_rectangle
[13:28:54] [PASSED] well_known_colors
[13:28:54] [PASSED] destination_pitch
[13:28:54] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[13:28:54] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[13:28:54] [PASSED] single_pixel_source_buffer
[13:28:54] [PASSED] single_pixel_clip_rectangle
[13:28:54] [PASSED] well_known_colors
[13:28:54] [PASSED] destination_pitch
[13:28:54] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[13:28:54] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[13:28:54] [PASSED] single_pixel_source_buffer
[13:28:54] [PASSED] single_pixel_clip_rectangle
[13:28:54] [PASSED] well_known_colors
[13:28:54] [PASSED] destination_pitch
[13:28:54] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[13:28:54] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[13:28:54] [PASSED] single_pixel_source_buffer
[13:28:54] [PASSED] single_pixel_clip_rectangle
[13:28:54] [PASSED] well_known_colors
[13:28:54] [PASSED] destination_pitch
[13:28:54] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[13:28:54] ============== drm_test_fb_xrgb8888_to_mono ===============
[13:28:54] [PASSED] single_pixel_source_buffer
[13:28:54] [PASSED] single_pixel_clip_rectangle
[13:28:54] [PASSED] well_known_colors
[13:28:54] [PASSED] destination_pitch
[13:28:54] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[13:28:54] ==================== drm_test_fb_swab =====================
[13:28:54] [PASSED] single_pixel_source_buffer
[13:28:54] [PASSED] single_pixel_clip_rectangle
[13:28:54] [PASSED] well_known_colors
[13:28:54] [PASSED] destination_pitch
[13:28:54] ================ [PASSED] drm_test_fb_swab =================
[13:28:54] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[13:28:54] [PASSED] single_pixel_source_buffer
[13:28:54] [PASSED] single_pixel_clip_rectangle
[13:28:54] [PASSED] well_known_colors
[13:28:54] [PASSED] destination_pitch
[13:28:54] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[13:28:54] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[13:28:54] [PASSED] single_pixel_source_buffer
[13:28:54] [PASSED] single_pixel_clip_rectangle
[13:28:54] [PASSED] well_known_colors
[13:28:54] [PASSED] destination_pitch
[13:28:54] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[13:28:54] ================= drm_test_fb_clip_offset =================
[13:28:54] [PASSED] pass through
[13:28:54] [PASSED] horizontal offset
[13:28:54] [PASSED] vertical offset
[13:28:54] [PASSED] horizontal and vertical offset
[13:28:54] [PASSED] horizontal offset (custom pitch)
[13:28:54] [PASSED] vertical offset (custom pitch)
[13:28:54] [PASSED] horizontal and vertical offset (custom pitch)
[13:28:54] ============= [PASSED] drm_test_fb_clip_offset =============
[13:28:54] =================== drm_test_fb_memcpy ====================
[13:28:54] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[13:28:54] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[13:28:54] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[13:28:54] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[13:28:54] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[13:28:54] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[13:28:54] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[13:28:54] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[13:28:54] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[13:28:54] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[13:28:54] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[13:28:54] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[13:28:54] =============== [PASSED] drm_test_fb_memcpy ================
[13:28:54] ============= [PASSED] drm_format_helper_test ==============
[13:28:54] ================= drm_format (18 subtests) =================
[13:28:54] [PASSED] drm_test_format_block_width_invalid
[13:28:54] [PASSED] drm_test_format_block_width_one_plane
[13:28:54] [PASSED] drm_test_format_block_width_two_plane
[13:28:54] [PASSED] drm_test_format_block_width_three_plane
[13:28:54] [PASSED] drm_test_format_block_width_tiled
[13:28:54] [PASSED] drm_test_format_block_height_invalid
[13:28:54] [PASSED] drm_test_format_block_height_one_plane
[13:28:54] [PASSED] drm_test_format_block_height_two_plane
[13:28:54] [PASSED] drm_test_format_block_height_three_plane
[13:28:54] [PASSED] drm_test_format_block_height_tiled
[13:28:54] [PASSED] drm_test_format_min_pitch_invalid
[13:28:54] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[13:28:54] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[13:28:54] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[13:28:54] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[13:28:54] [PASSED] drm_test_format_min_pitch_two_plane
[13:28:54] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[13:28:54] [PASSED] drm_test_format_min_pitch_tiled
[13:28:54] =================== [PASSED] drm_format ====================
[13:28:54] ============== drm_framebuffer (10 subtests) ===============
[13:28:54] ========== drm_test_framebuffer_check_src_coords ==========
[13:28:54] [PASSED] Success: source fits into fb
[13:28:54] [PASSED] Fail: overflowing fb with x-axis coordinate
[13:28:54] [PASSED] Fail: overflowing fb with y-axis coordinate
[13:28:54] [PASSED] Fail: overflowing fb with source width
[13:28:54] [PASSED] Fail: overflowing fb with source height
[13:28:54] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[13:28:54] [PASSED] drm_test_framebuffer_cleanup
[13:28:54] =============== drm_test_framebuffer_create ===============
[13:28:54] [PASSED] ABGR8888 normal sizes
[13:28:54] [PASSED] ABGR8888 max sizes
[13:28:54] [PASSED] ABGR8888 pitch greater than min required
[13:28:54] [PASSED] ABGR8888 pitch less than min required
[13:28:54] [PASSED] ABGR8888 Invalid width
[13:28:54] [PASSED] ABGR8888 Invalid buffer handle
[13:28:54] [PASSED] No pixel format
[13:28:54] [PASSED] ABGR8888 Width 0
[13:28:54] [PASSED] ABGR8888 Height 0
[13:28:54] [PASSED] ABGR8888 Out of bound height * pitch combination
[13:28:54] [PASSED] ABGR8888 Large buffer offset
[13:28:54] [PASSED] ABGR8888 Buffer offset for inexistent plane
[13:28:54] [PASSED] ABGR8888 Invalid flag
[13:28:54] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[13:28:54] [PASSED] ABGR8888 Valid buffer modifier
[13:28:54] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[13:28:54] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[13:28:54] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[13:28:54] [PASSED] NV12 Normal sizes
[13:28:54] [PASSED] NV12 Max sizes
[13:28:54] [PASSED] NV12 Invalid pitch
[13:28:54] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[13:28:54] [PASSED] NV12 different modifier per-plane
[13:28:54] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[13:28:54] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[13:28:54] [PASSED] NV12 Modifier for inexistent plane
[13:28:54] [PASSED] NV12 Handle for inexistent plane
[13:28:54] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[13:28:54] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[13:28:54] [PASSED] YVU420 Normal sizes
[13:28:54] [PASSED] YVU420 Max sizes
[13:28:54] [PASSED] YVU420 Invalid pitch
[13:28:54] [PASSED] YVU420 Different pitches
[13:28:54] [PASSED] YVU420 Different buffer offsets/pitches
[13:28:54] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[13:28:54] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[13:28:54] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[13:28:54] [PASSED] YVU420 Valid modifier
[13:28:54] [PASSED] YVU420 Different modifiers per plane
[13:28:54] [PASSED] YVU420 Modifier for inexistent plane
[13:28:54] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[13:28:54] [PASSED] X0L2 Normal sizes
[13:28:54] [PASSED] X0L2 Max sizes
[13:28:54] [PASSED] X0L2 Invalid pitch
[13:28:54] [PASSED] X0L2 Pitch greater than minimum required
[13:28:54] [PASSED] X0L2 Handle for inexistent plane
[13:28:54] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[13:28:54] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[13:28:54] [PASSED] X0L2 Valid modifier
[13:28:54] [PASSED] X0L2 Modifier for inexistent plane
[13:28:54] =========== [PASSED] drm_test_framebuffer_create ===========
[13:28:54] [PASSED] drm_test_framebuffer_free
[13:28:54] [PASSED] drm_test_framebuffer_init
[13:28:54] [PASSED] drm_test_framebuffer_init_bad_format
[13:28:54] [PASSED] drm_test_framebuffer_init_dev_mismatch
[13:28:54] [PASSED] drm_test_framebuffer_lookup
[13:28:54] [PASSED] drm_test_framebuffer_lookup_inexistent
[13:28:54] [PASSED] drm_test_framebuffer_modifiers_not_supported
[13:28:54] ================= [PASSED] drm_framebuffer =================
[13:28:54] ================ drm_gem_shmem (8 subtests) ================
[13:28:54] [PASSED] drm_gem_shmem_test_obj_create
[13:28:54] [PASSED] drm_gem_shmem_test_obj_create_private
[13:28:54] [PASSED] drm_gem_shmem_test_pin_pages
[13:28:54] [PASSED] drm_gem_shmem_test_vmap
[13:28:54] [PASSED] drm_gem_shmem_test_get_sg_table
[13:28:54] [PASSED] drm_gem_shmem_test_get_pages_sgt
[13:28:54] [PASSED] drm_gem_shmem_test_madvise
[13:28:54] [PASSED] drm_gem_shmem_test_purge
[13:28:54] ================== [PASSED] drm_gem_shmem ==================
[13:28:54] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[13:28:54] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[13:28:54] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[13:28:54] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[13:28:54] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[13:28:54] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[13:28:54] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[13:28:54] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[13:28:54] [PASSED] Automatic
[13:28:54] [PASSED] Full
[13:28:54] [PASSED] Limited 16:235
[13:28:54] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[13:28:54] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[13:28:54] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[13:28:54] [PASSED] drm_test_check_disable_connector
[13:28:54] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[13:28:54] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[13:28:54] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[13:28:54] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[13:28:54] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[13:28:54] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[13:28:54] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[13:28:54] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[13:28:54] [PASSED] drm_test_check_output_bpc_dvi
[13:28:54] [PASSED] drm_test_check_output_bpc_format_vic_1
[13:28:54] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[13:28:54] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[13:28:54] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[13:28:54] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[13:28:54] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[13:28:54] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[13:28:54] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[13:28:54] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[13:28:54] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[13:28:54] [PASSED] drm_test_check_broadcast_rgb_value
[13:28:54] [PASSED] drm_test_check_bpc_8_value
[13:28:54] [PASSED] drm_test_check_bpc_10_value
[13:28:54] [PASSED] drm_test_check_bpc_12_value
[13:28:54] [PASSED] drm_test_check_format_value
[13:28:54] [PASSED] drm_test_check_tmds_char_value
[13:28:54] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[13:28:54] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[13:28:54] [PASSED] drm_test_check_mode_valid
[13:28:54] [PASSED] drm_test_check_mode_valid_reject
[13:28:54] [PASSED] drm_test_check_mode_valid_reject_rate
[13:28:54] [PASSED] drm_test_check_mode_valid_reject_max_clock
[13:28:54] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[13:28:54] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[13:28:54] [PASSED] drm_test_check_infoframes
[13:28:54] [PASSED] drm_test_check_reject_avi_infoframe
[13:28:54] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[13:28:54] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[13:28:54] [PASSED] drm_test_check_reject_audio_infoframe
[13:28:54] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[13:28:54] ================= drm_managed (2 subtests) =================
[13:28:54] [PASSED] drm_test_managed_release_action
[13:28:54] [PASSED] drm_test_managed_run_action
[13:28:54] =================== [PASSED] drm_managed ===================
[13:28:54] =================== drm_mm (6 subtests) ====================
[13:28:54] [PASSED] drm_test_mm_init
[13:28:54] [PASSED] drm_test_mm_debug
[13:28:54] [PASSED] drm_test_mm_align32
[13:28:54] [PASSED] drm_test_mm_align64
[13:28:54] [PASSED] drm_test_mm_lowest
[13:28:54] [PASSED] drm_test_mm_highest
[13:28:54] ===================== [PASSED] drm_mm ======================
[13:28:54] ============= drm_modes_analog_tv (5 subtests) =============
[13:28:54] [PASSED] drm_test_modes_analog_tv_mono_576i
[13:28:54] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[13:28:54] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[13:28:54] [PASSED] drm_test_modes_analog_tv_pal_576i
[13:28:54] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[13:28:54] =============== [PASSED] drm_modes_analog_tv ===============
[13:28:54] ============== drm_plane_helper (2 subtests) ===============
[13:28:54] =============== drm_test_check_plane_state ================
[13:28:54] [PASSED] clipping_simple
[13:28:54] [PASSED] clipping_rotate_reflect
[13:28:54] [PASSED] positioning_simple
[13:28:54] [PASSED] upscaling
[13:28:54] [PASSED] downscaling
[13:28:54] [PASSED] rounding1
[13:28:54] [PASSED] rounding2
[13:28:54] [PASSED] rounding3
[13:28:54] [PASSED] rounding4
[13:28:54] =========== [PASSED] drm_test_check_plane_state ============
[13:28:54] =========== drm_test_check_invalid_plane_state ============
[13:28:54] [PASSED] positioning_invalid
[13:28:54] [PASSED] upscaling_invalid
[13:28:54] [PASSED] downscaling_invalid
[13:28:54] ======= [PASSED] drm_test_check_invalid_plane_state ========
[13:28:54] ================ [PASSED] drm_plane_helper =================
[13:28:54] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[13:28:54] ====== drm_test_connector_helper_tv_get_modes_check =======
[13:28:54] [PASSED] None
[13:28:54] [PASSED] PAL
[13:28:54] [PASSED] NTSC
[13:28:54] [PASSED] Both, NTSC Default
[13:28:54] [PASSED] Both, PAL Default
[13:28:54] [PASSED] Both, NTSC Default, with PAL on command-line
[13:28:54] [PASSED] Both, PAL Default, with NTSC on command-line
[13:28:54] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[13:28:54] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[13:28:54] ================== drm_rect (9 subtests) ===================
[13:28:54] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[13:28:54] [PASSED] drm_test_rect_clip_scaled_not_clipped
[13:28:54] [PASSED] drm_test_rect_clip_scaled_clipped
[13:28:54] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[13:28:54] ================= drm_test_rect_intersect =================
[13:28:54] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[13:28:54] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[13:28:54] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[13:28:54] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[13:28:54] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[13:28:54] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[13:28:54] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[13:28:54] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[13:28:54] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[13:28:54] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[13:28:54] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[13:28:54] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[13:28:54] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[13:28:54] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[13:28:54] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[13:28:54] ============= [PASSED] drm_test_rect_intersect =============
[13:28:54] ================ drm_test_rect_calc_hscale ================
[13:28:54] [PASSED] normal use
[13:28:54] [PASSED] out of max range
[13:28:54] [PASSED] out of min range
[13:28:54] [PASSED] zero dst
[13:28:54] [PASSED] negative src
[13:28:54] [PASSED] negative dst
[13:28:54] ============ [PASSED] drm_test_rect_calc_hscale ============
[13:28:54] ================ drm_test_rect_calc_vscale ================
[13:28:54] [PASSED] normal use
[13:28:54] [PASSED] out of max range
[13:28:54] [PASSED] out of min range
[13:28:54] [PASSED] zero dst
[13:28:54] [PASSED] negative src
[13:28:54] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[13:28:54] ============ [PASSED] drm_test_rect_calc_vscale ============
[13:28:54] ================== drm_test_rect_rotate ===================
[13:28:54] [PASSED] reflect-x
[13:28:54] [PASSED] reflect-y
[13:28:54] [PASSED] rotate-0
[13:28:54] [PASSED] rotate-90
[13:28:54] [PASSED] rotate-180
[13:28:54] [PASSED] rotate-270
[13:28:54] ============== [PASSED] drm_test_rect_rotate ===============
[13:28:54] ================ drm_test_rect_rotate_inv =================
[13:28:54] [PASSED] reflect-x
[13:28:54] [PASSED] reflect-y
[13:28:54] [PASSED] rotate-0
[13:28:54] [PASSED] rotate-90
[13:28:54] [PASSED] rotate-180
[13:28:54] [PASSED] rotate-270
[13:28:54] ============ [PASSED] drm_test_rect_rotate_inv =============
[13:28:54] ==================== [PASSED] drm_rect =====================
[13:28:54] ============ drm_sysfb_modeset_test (1 subtest) ============
[13:28:54] ============ drm_test_sysfb_build_fourcc_list =============
[13:28:54] [PASSED] no native formats
[13:28:54] [PASSED] XRGB8888 as native format
[13:28:54] [PASSED] remove duplicates
[13:28:54] [PASSED] convert alpha formats
[13:28:54] [PASSED] random formats
[13:28:54] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[13:28:54] ============= [PASSED] drm_sysfb_modeset_test ==============
[13:28:54] ================== drm_fixp (2 subtests) ===================
[13:28:54] [PASSED] drm_test_int2fixp
[13:28:54] [PASSED] drm_test_sm2fixp
[13:28:54] ==================== [PASSED] drm_fixp =====================
[13:28:54] ============================================================
[13:28:54] Testing complete. Ran 621 tests: passed: 621
[13:28:55] Elapsed time: 25.645s total, 1.725s configuring, 23.753s building, 0.129s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[13:28:55] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:28: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
[13:29:06] Starting KUnit Kernel (1/1)...
[13:29:06] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:29:06] ================= ttm_device (5 subtests) ==================
[13:29:06] [PASSED] ttm_device_init_basic
[13:29:06] [PASSED] ttm_device_init_multiple
[13:29:06] [PASSED] ttm_device_fini_basic
[13:29:06] [PASSED] ttm_device_init_no_vma_man
[13:29:06] ================== ttm_device_init_pools ==================
[13:29:06] [PASSED] No DMA allocations, no DMA32 required
[13:29:06] [PASSED] DMA allocations, DMA32 required
[13:29:06] [PASSED] No DMA allocations, DMA32 required
[13:29:06] [PASSED] DMA allocations, no DMA32 required
[13:29:06] ============== [PASSED] ttm_device_init_pools ==============
[13:29:06] =================== [PASSED] ttm_device ====================
[13:29:06] ================== ttm_pool (8 subtests) ===================
[13:29:06] ================== ttm_pool_alloc_basic ===================
[13:29:06] [PASSED] One page
[13:29:06] [PASSED] More than one page
[13:29:06] [PASSED] Above the allocation limit
[13:29:06] [PASSED] One page, with coherent DMA mappings enabled
[13:29:06] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[13:29:06] ============== [PASSED] ttm_pool_alloc_basic ===============
[13:29:06] ============== ttm_pool_alloc_basic_dma_addr ==============
[13:29:06] [PASSED] One page
[13:29:06] [PASSED] More than one page
[13:29:06] [PASSED] Above the allocation limit
[13:29:06] [PASSED] One page, with coherent DMA mappings enabled
[13:29:06] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[13:29:06] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[13:29:06] [PASSED] ttm_pool_alloc_order_caching_match
[13:29:06] [PASSED] ttm_pool_alloc_caching_mismatch
[13:29:06] [PASSED] ttm_pool_alloc_order_mismatch
[13:29:06] [PASSED] ttm_pool_free_dma_alloc
[13:29:06] [PASSED] ttm_pool_free_no_dma_alloc
[13:29:06] [PASSED] ttm_pool_fini_basic
[13:29:06] ==================== [PASSED] ttm_pool =====================
[13:29:06] ================ ttm_resource (8 subtests) =================
[13:29:06] ================= ttm_resource_init_basic =================
[13:29:06] [PASSED] Init resource in TTM_PL_SYSTEM
[13:29:06] [PASSED] Init resource in TTM_PL_VRAM
[13:29:06] [PASSED] Init resource in a private placement
[13:29:06] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[13:29:06] ============= [PASSED] ttm_resource_init_basic =============
[13:29:06] [PASSED] ttm_resource_init_pinned
[13:29:06] [PASSED] ttm_resource_fini_basic
[13:29:06] [PASSED] ttm_resource_manager_init_basic
[13:29:06] [PASSED] ttm_resource_manager_usage_basic
[13:29:06] [PASSED] ttm_resource_manager_set_used_basic
[13:29:06] [PASSED] ttm_sys_man_alloc_basic
[13:29:06] [PASSED] ttm_sys_man_free_basic
[13:29:06] ================== [PASSED] ttm_resource ===================
[13:29:06] =================== ttm_tt (15 subtests) ===================
[13:29:06] ==================== ttm_tt_init_basic ====================
[13:29:06] [PASSED] Page-aligned size
[13:29:06] [PASSED] Extra pages requested
[13:29:06] ================ [PASSED] ttm_tt_init_basic ================
[13:29:06] [PASSED] ttm_tt_init_misaligned
[13:29:06] [PASSED] ttm_tt_fini_basic
[13:29:06] [PASSED] ttm_tt_fini_sg
[13:29:06] [PASSED] ttm_tt_fini_shmem
[13:29:06] [PASSED] ttm_tt_create_basic
[13:29:06] [PASSED] ttm_tt_create_invalid_bo_type
[13:29:06] [PASSED] ttm_tt_create_ttm_exists
[13:29:06] [PASSED] ttm_tt_create_failed
[13:29:06] [PASSED] ttm_tt_destroy_basic
[13:29:06] [PASSED] ttm_tt_populate_null_ttm
[13:29:06] [PASSED] ttm_tt_populate_populated_ttm
[13:29:06] [PASSED] ttm_tt_unpopulate_basic
[13:29:06] [PASSED] ttm_tt_unpopulate_empty_ttm
[13:29:06] [PASSED] ttm_tt_swapin_basic
[13:29:06] ===================== [PASSED] ttm_tt ======================
[13:29:06] =================== ttm_bo (14 subtests) ===================
[13:29:06] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[13:29:06] [PASSED] Cannot be interrupted and sleeps
[13:29:06] [PASSED] Cannot be interrupted, locks straight away
[13:29:06] [PASSED] Can be interrupted, sleeps
[13:29:06] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[13:29:06] [PASSED] ttm_bo_reserve_locked_no_sleep
[13:29:06] [PASSED] ttm_bo_reserve_no_wait_ticket
[13:29:06] [PASSED] ttm_bo_reserve_double_resv
[13:29:06] [PASSED] ttm_bo_reserve_interrupted
[13:29:06] [PASSED] ttm_bo_reserve_deadlock
[13:29:06] [PASSED] ttm_bo_unreserve_basic
[13:29:06] [PASSED] ttm_bo_unreserve_pinned
[13:29:06] [PASSED] ttm_bo_unreserve_bulk
[13:29:06] [PASSED] ttm_bo_fini_basic
[13:29:06] [PASSED] ttm_bo_fini_shared_resv
[13:29:06] [PASSED] ttm_bo_pin_basic
[13:29:06] [PASSED] ttm_bo_pin_unpin_resource
[13:29:06] [PASSED] ttm_bo_multiple_pin_one_unpin
[13:29:06] ===================== [PASSED] ttm_bo ======================
[13:29:06] ============== ttm_bo_validate (22 subtests) ===============
[13:29:06] ============== ttm_bo_init_reserved_sys_man ===============
[13:29:06] [PASSED] Buffer object for userspace
[13:29:06] [PASSED] Kernel buffer object
[13:29:06] [PASSED] Shared buffer object
[13:29:06] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[13:29:06] ============== ttm_bo_init_reserved_mock_man ==============
[13:29:06] [PASSED] Buffer object for userspace
[13:29:06] [PASSED] Kernel buffer object
[13:29:06] [PASSED] Shared buffer object
[13:29:06] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[13:29:06] [PASSED] ttm_bo_init_reserved_resv
[13:29:06] ================== ttm_bo_validate_basic ==================
[13:29:06] [PASSED] Buffer object for userspace
[13:29:06] [PASSED] Kernel buffer object
[13:29:06] [PASSED] Shared buffer object
[13:29:06] ============== [PASSED] ttm_bo_validate_basic ==============
[13:29:06] [PASSED] ttm_bo_validate_invalid_placement
[13:29:06] ============= ttm_bo_validate_same_placement ==============
[13:29:06] [PASSED] System manager
[13:29:06] [PASSED] VRAM manager
[13:29:06] ========= [PASSED] ttm_bo_validate_same_placement ==========
[13:29:06] [PASSED] ttm_bo_validate_failed_alloc
[13:29:06] [PASSED] ttm_bo_validate_pinned
[13:29:06] [PASSED] ttm_bo_validate_busy_placement
[13:29:06] ================ ttm_bo_validate_multihop =================
[13:29:06] [PASSED] Buffer object for userspace
[13:29:06] [PASSED] Kernel buffer object
[13:29:06] [PASSED] Shared buffer object
[13:29:06] ============ [PASSED] ttm_bo_validate_multihop =============
[13:29:06] ========== ttm_bo_validate_no_placement_signaled ==========
[13:29:06] [PASSED] Buffer object in system domain, no page vector
[13:29:06] [PASSED] Buffer object in system domain with an existing page vector
[13:29:06] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[13:29:06] ======== ttm_bo_validate_no_placement_not_signaled ========
[13:29:06] [PASSED] Buffer object for userspace
[13:29:06] [PASSED] Kernel buffer object
[13:29:06] [PASSED] Shared buffer object
[13:29:06] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[13:29:06] [PASSED] ttm_bo_validate_move_fence_signaled
[13:29:06] ========= ttm_bo_validate_move_fence_not_signaled =========
[13:29:06] [PASSED] Waits for GPU
[13:29:06] [PASSED] Tries to lock straight away
[13:29:06] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[13:29:06] [PASSED] ttm_bo_validate_swapout
[13:29:06] [PASSED] ttm_bo_validate_happy_evict
[13:29:06] [PASSED] ttm_bo_validate_all_pinned_evict
[13:29:06] [PASSED] ttm_bo_validate_allowed_only_evict
[13:29:06] [PASSED] ttm_bo_validate_deleted_evict
[13:29:06] [PASSED] ttm_bo_validate_busy_domain_evict
[13:29:06] [PASSED] ttm_bo_validate_evict_gutting
[13:29:06] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[13:29:06] ================= [PASSED] ttm_bo_validate =================
[13:29:06] ============================================================
[13:29:06] Testing complete. Ran 102 tests: passed: 102
[13:29:06] Elapsed time: 11.261s total, 1.720s configuring, 9.324s building, 0.184s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for drm/i915/psr: Fixes for Dell XPS DA14260 quirk (rev2)
2026-03-20 8:04 [PATCH] drm/i915/psr: Fixes for Dell XPS DA14260 quirk Jouni Högander
` (3 preceding siblings ...)
2026-03-20 13:29 ` ✓ CI.KUnit: success for drm/i915/psr: Fixes for Dell XPS DA14260 quirk (rev2) Patchwork
@ 2026-03-20 14:09 ` Patchwork
2026-03-21 13:51 ` ✗ Xe.CI.FULL: failure " Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-03-20 14:09 UTC (permalink / raw)
To: Hogander, Jouni; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 923 bytes --]
== Series Details ==
Series: drm/i915/psr: Fixes for Dell XPS DA14260 quirk (rev2)
URL : https://patchwork.freedesktop.org/series/163567/
State : success
== Summary ==
CI Bug Log - changes from xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8_BAT -> xe-pw-163567v2_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 14)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8814 -> IGT_8815
* Linux: xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8 -> xe-pw-163567v2
IGT_8814: 8814
IGT_8815: 8815
xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8: 7535044a2418d22b59be0eb64af0353971f16bd8
xe-pw-163567v2: 163567v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/index.html
[-- Attachment #2: Type: text/html, Size: 1485 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.FULL: failure for drm/i915/psr: Fixes for Dell XPS DA14260 quirk (rev2)
2026-03-20 8:04 [PATCH] drm/i915/psr: Fixes for Dell XPS DA14260 quirk Jouni Högander
` (4 preceding siblings ...)
2026-03-20 14:09 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-03-21 13:51 ` Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-03-21 13:51 UTC (permalink / raw)
To: Hogander, Jouni; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 34709 bytes --]
== Series Details ==
Series: drm/i915/psr: Fixes for Dell XPS DA14260 quirk (rev2)
URL : https://patchwork.freedesktop.org/series/163567/
State : failure
== Summary ==
CI Bug Log - changes from xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8_FULL -> xe-pw-163567v2_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-163567v2_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-163567v2_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-163567v2_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_ccs@suspend-resume@tile4-compressed-compfmt0-system-system:
- shard-lnl: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-lnl-4/igt@xe_ccs@suspend-resume@tile4-compressed-compfmt0-system-system.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-lnl-5/igt@xe_ccs@suspend-resume@tile4-compressed-compfmt0-system-system.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][3] +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
#### Warnings ####
* igt@xe_eudebug@basic-vm-access-faultable:
- shard-lnl: [SKIP][4] ([Intel XE#4837]) -> [SKIP][5] +47 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-lnl-8/igt@xe_eudebug@basic-vm-access-faultable.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-lnl-7/igt@xe_eudebug@basic-vm-access-faultable.html
* igt@xe_eudebug@basic-vm-access-userptr:
- shard-bmg: [SKIP][6] ([Intel XE#4837]) -> [SKIP][7] +45 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-7/igt@xe_eudebug@basic-vm-access-userptr.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-1/igt@xe_eudebug@basic-vm-access-userptr.html
* igt@xe_eudebug_online@pagefault-one-of-many:
- shard-bmg: [SKIP][8] ([Intel XE#6665]) -> [SKIP][9]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-9/igt@xe_eudebug_online@pagefault-one-of-many.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-6/igt@xe_eudebug_online@pagefault-one-of-many.html
* igt@xe_eudebug_online@pagefault-read-stress:
- shard-lnl: [SKIP][10] ([Intel XE#6665]) -> [SKIP][11] +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-lnl-1/igt@xe_eudebug_online@pagefault-read-stress.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-lnl-3/igt@xe_eudebug_online@pagefault-read-stress.html
- shard-bmg: [SKIP][12] ([Intel XE#6665] / [Intel XE#6681]) -> [SKIP][13] +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-4/igt@xe_eudebug_online@pagefault-read-stress.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-5/igt@xe_eudebug_online@pagefault-read-stress.html
* igt@xe_eudebug_online@resume-one:
- shard-lnl: [SKIP][14] ([Intel XE#4837] / [Intel XE#6665]) -> [SKIP][15] +31 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-lnl-8/igt@xe_eudebug_online@resume-one.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-lnl-3/igt@xe_eudebug_online@resume-one.html
* igt@xe_eudebug_online@set-breakpoint-faultable:
- shard-bmg: [SKIP][16] ([Intel XE#4837] / [Intel XE#6665]) -> [SKIP][17] +27 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-5/igt@xe_eudebug_online@set-breakpoint-faultable.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-1/igt@xe_eudebug_online@set-breakpoint-faultable.html
Known issues
------------
Here are the changes found in xe-pw-163567v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#7059] / [Intel XE#7085])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-7/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#367] / [Intel XE#7354]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2887]) +6 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-3/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2652]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2252])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-8/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_content_protection@atomic:
- shard-bmg: NOTRUN -> [FAIL][24] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-1/igt@kms_content_protection@atomic.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2320]) +3 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-bmg: [PASS][26] -> [SKIP][27] ([Intel XE#2291]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-7/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-3/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2291])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-3/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [PASS][29] -> [FAIL][30] ([Intel XE#7571]) +1 other test fail
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: [PASS][31] -> [SKIP][32] ([Intel XE#2373] / [Intel XE#7344])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-8/igt@kms_feature_discovery@display-2x.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-3/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#2316]) +7 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-1/igt@kms_flip@2x-flip-vs-wf_vblank.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-3/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#7178] / [Intel XE#7349])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2311]) +6 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2312]) +4 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2313]) +8 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [PASS][41] -> [SKIP][42] ([Intel XE#1503]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-2/igt@kms_hdr@static-toggle-suspend.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-5/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7283])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2391] / [Intel XE#6927])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-8/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#1489]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-3/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr@psr-sprite-render:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-9/igt@kms_psr@psr-sprite-render.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#3904] / [Intel XE#7342])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-5/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2413])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-9/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_sharpness_filter@invalid-filter-with-scaler:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#6503])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-8/igt@kms_sharpness_filter@invalid-filter-with-scaler.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-10/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-prefetch:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#7136])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-7/igt@xe_exec_fault_mode@twice-multi-queue-userptr-prefetch.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#6874]) +9 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-1/igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem.html
* igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#7138]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2229])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-6/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-5/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pxp@display-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#4733] / [Intel XE#7417])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-1/igt@xe_pxp@display-pxp-fb.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#944])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-8/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
* igt@xe_survivability@runtime-survivability:
- shard-bmg: NOTRUN -> [DMESG-WARN][59] ([Intel XE#6627] / [Intel XE#7419])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-8/igt@xe_survivability@runtime-survivability.html
#### Possible fixes ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [FAIL][60] ([Intel XE#7445]) -> [PASS][61]
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-3/igt@intel_hwmon@hwmon-write.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-6/igt@intel_hwmon@hwmon-write.html
* igt@kms_atomic_transition@plane-all-transition-fencing:
- shard-bmg: [INCOMPLETE][62] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#6819]) -> [PASS][63]
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-3/igt@kms_atomic_transition@plane-all-transition-fencing.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-4/igt@kms_atomic_transition@plane-all-transition-fencing.html
* igt@kms_atomic_transition@plane-all-transition-fencing@pipe-b-hdmi-a-3:
- shard-bmg: [DMESG-FAIL][64] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#6819]) -> [PASS][65]
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-3/igt@kms_atomic_transition@plane-all-transition-fencing@pipe-b-hdmi-a-3.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-4/igt@kms_atomic_transition@plane-all-transition-fencing@pipe-b-hdmi-a-3.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-bmg: [SKIP][66] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) -> [PASS][67]
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][68] ([Intel XE#2291]) -> [PASS][69] +4 other tests pass
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-10/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-bmg: [SKIP][70] ([Intel XE#2291] / [Intel XE#7343]) -> [PASS][71] +1 other test pass
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-9/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [SKIP][72] ([Intel XE#1340]) -> [PASS][73]
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-bmg: [SKIP][74] ([Intel XE#4354]) -> [PASS][75]
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-3/igt@kms_dp_link_training@non-uhbr-sst.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-7/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][76] ([Intel XE#2316]) -> [PASS][77] +11 other tests pass
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-3/igt@kms_flip@2x-nonexisting-fb.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-bmg: [FAIL][78] ([Intel XE#3149] / [Intel XE#7545]) -> [PASS][79]
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-10/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3:
- shard-bmg: [FAIL][80] ([Intel XE#3149]) -> [PASS][81]
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-10/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-bmg: [SKIP][82] ([Intel XE#4596]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-x.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [SKIP][84] ([Intel XE#1435]) -> [PASS][85]
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-3/igt@kms_setmode@clone-exclusive-crtc.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-7/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [SKIP][86] ([Intel XE#1499]) -> [PASS][87]
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-5/igt@kms_vrr@negative-basic.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-10/igt@kms_vrr@negative-basic.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][88] ([Intel XE#6321]) -> [PASS][89]
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-3/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-small.html
#### Warnings ####
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [SKIP][90] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) -> [SKIP][91] ([Intel XE#7621])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_content_protection@atomic-dpms:
- shard-bmg: [FAIL][92] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][93] ([Intel XE#2341])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-2/igt@kms_content_protection@atomic-dpms.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-5/igt@kms_content_protection@atomic-dpms.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][94] ([Intel XE#2311]) -> [SKIP][95] ([Intel XE#2312]) +12 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][96] ([Intel XE#2312]) -> [SKIP][97] ([Intel XE#2311]) +18 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][98] ([Intel XE#4141]) -> [SKIP][99] ([Intel XE#2312]) +5 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][100] ([Intel XE#2312]) -> [SKIP][101] ([Intel XE#4141]) +10 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][102] ([Intel XE#2313]) -> [SKIP][103] ([Intel XE#2312]) +14 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][104] ([Intel XE#2312]) -> [SKIP][105] ([Intel XE#2313]) +16 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: [SKIP][106] ([Intel XE#4596]) -> [SKIP][107] ([Intel XE#5021] / [Intel XE#7377])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-bmg: [SKIP][108] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) -> [SKIP][109] ([Intel XE#3904] / [Intel XE#7342]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-5/igt@kms_rotation_crc@primary-rotation-270.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-9/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][110] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][111] ([Intel XE#2426] / [Intel XE#5848])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: [DMESG-WARN][112] ([Intel XE#5545]) -> [ABORT][113] ([Intel XE#7578])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8/shard-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/shard-bmg-10/igt@xe_wedged@wedged-at-any-timeout.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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[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#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#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#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[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#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681
[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#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7373
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
[Intel XE#7545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7545
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578
[Intel XE#7621]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8814 -> IGT_8815
* Linux: xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8 -> xe-pw-163567v2
IGT_8814: 8814
IGT_8815: 8815
xe-4752-7535044a2418d22b59be0eb64af0353971f16bd8: 7535044a2418d22b59be0eb64af0353971f16bd8
xe-pw-163567v2: 163567v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163567v2/index.html
[-- Attachment #2: Type: text/html, Size: 39615 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: [PATCH] drm/i915/psr: Fixes for Dell XPS DA14260 quirk
2026-03-20 12:03 ` Hogander, Jouni
@ 2026-03-24 12:37 ` Kahola, Mika
0 siblings, 0 replies; 9+ messages in thread
From: Kahola, Mika @ 2026-03-24 12:37 UTC (permalink / raw)
To: Hogander, Jouni, intel-xe@lists.freedesktop.org,
intel-gfx@lists.freedesktop.org, jani.nikula@linux.intel.com
> -----Original Message-----
> From: Hogander, Jouni <jouni.hogander@intel.com>
> Sent: Friday, 20 March 2026 14.03
> To: intel-xe@lists.freedesktop.org; intel-gfx@lists.freedesktop.org; jani.nikula@linux.intel.com
> Cc: Kahola, Mika <mika.kahola@intel.com>
> Subject: Re: [PATCH] drm/i915/psr: Fixes for Dell XPS DA14260 quirk
>
> On Fri, 2026-03-20 at 10:46 +0200, Jani Nikula wrote:
> > On Fri, 20 Mar 2026, Jouni Högander <jouni.hogander@intel.com> wrote:
> > > Dell seems to be changing device ID even within same device model.
> > > Due to
> > > this we need to ignore device ID when applying quirk for Dell XPS
> > > 14
> > > DA14260. Do this by adding DEVICE_ID_ANY and assign it to Dell XPS
> > > 14
> > > DA14260 quirk. Also apply the quirk only for eDP Panel Replay.
> > >
> > > Fixes: 45c77d4bf8d4 ("drm/i915/psr: Disable Panel Replay on Dell XPS
> > > 14 DA14260 as a quirk")
> > > Cc: Mika Kahola <mika.kahola@intel.com>
Even though there might be some future work ahead but as a fix this patch looks good to me.
Reviewed-by: Mika Kahola <mika.kahola@intel.com>
> > > Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> > > ---
> > > drivers/gpu/drm/i915/display/intel_psr.c | 3 ++-
> > > drivers/gpu/drm/i915/display/intel_quirks.c | 16 ++++++++++------
> > > drivers/gpu/drm/i915/display/intel_quirks.h | 2 +-
> > > 3 files changed, 13 insertions(+), 8 deletions(-)
> > >
> > > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c
> > > b/drivers/gpu/drm/i915/display/intel_psr.c
> > > index b319e5bd6274..2f1b48cd8efd 100644
> > > --- a/drivers/gpu/drm/i915/display/intel_psr.c
> > > +++ b/drivers/gpu/drm/i915/display/intel_psr.c
> > > @@ -610,7 +610,8 @@ static void _panel_replay_init_dpcd(struct
> > > intel_dp *intel_dp, struct intel_conn
> > > if (intel_dp->mst_detect == DRM_DP_MST)
> > > return;
> > >
> > > - if (intel_has_dpcd_quirk(intel_dp,
> > > QUIRK_DISABLE_PANEL_REPLAY)) {
> > > + if (intel_dp_is_edp(intel_dp) &&
> > > + intel_has_dpcd_quirk(intel_dp,
> > > QUIRK_DISABLE_EDP_PANEL_REPLAY)) {
> >
> > I'll note that intel_has_dpcd_quirk() could internally limit each
> > quirk for eDP/non-eDP. But that's for future.
>
> Yeah, there was also comment from Ville to combine all different quirks here and just use these *_*_ANY for everything that is to
> be ignored. I will add reworking this into my todo list.
>
> BR,
> Jouni Högander
> >
> > BR,
> > Jani.
> >
> > > drm_dbg_kms(display->drm,
> > > "Panel Replay support not currently available for this
> > > setup\n");
> > > return;
> > > diff --git a/drivers/gpu/drm/i915/display/intel_quirks.c
> > > b/drivers/gpu/drm/i915/display/intel_quirks.c
> > > index 8f1bf8f418ec..883f297d4b83 100644
> > > --- a/drivers/gpu/drm/i915/display/intel_quirks.c
> > > +++ b/drivers/gpu/drm/i915/display/intel_quirks.c
> > > @@ -86,11 +86,11 @@ static void quirk_edp_limit_rate_hbr2(struct
> > > intel_display *display)
> > > drm_info(display->drm, "Applying eDP Limit rate to HBR2 quirk\n");
> > > }
> > >
> > > -static void quirk_disable_panel_replay(struct intel_dp *intel_dp)
> > > +static void quirk_disable_edp_panel_replay(struct intel_dp
> > > *intel_dp)
> > > {
> > > struct intel_display *display =
> > > to_intel_display(intel_dp);
> > >
> > > - intel_set_dpcd_quirk(intel_dp,
> > > QUIRK_DISABLE_PANEL_REPLAY);
> > > + intel_set_dpcd_quirk(intel_dp,
> > > QUIRK_DISABLE_EDP_PANEL_REPLAY);
> > > drm_info(display->drm, "Applying disable Panel Replay quirk\n");
> > > }
> > >
> > > @@ -116,6 +116,8 @@ struct intel_dpcd_quirk {
> > >
> > > #define SINK_DEVICE_ID_ANY SINK_DEVICE_ID(0, 0, 0, 0, 0, 0)
> > >
> > > +#define DEVICE_ID_ANY 0
> > > +
> > > /* For systems that don't have a meaningful PCI subdevice/subvendor
> > > ID */
> > > struct intel_dmi_quirk {
> > > void (*hook)(struct intel_display *display); @@ -261,11 +263,11 @@
> > > static const struct intel_dpcd_quirk intel_dpcd_quirks[] = {
> > > },
> > > /* Dell XPS 14 DA14260 */
> > > {
> > > - .device = 0xb080,
> > > + .device = DEVICE_ID_ANY,
> > > .subsystem_vendor = 0x1028,
> > > .subsystem_device = 0x0db9,
> > > .sink_oui = SINK_OUI(0x00, 0x22, 0xb9),
> > > - .hook = quirk_disable_panel_replay,
> > > + .hook = quirk_disable_edp_panel_replay,
> > > },
> > > };
> > >
> > > @@ -277,7 +279,8 @@ void intel_init_quirks(struct intel_display
> > > *display)
> > > for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
> > > struct intel_quirk *q = &intel_quirks[i];
> > >
> > > - if (d->device == q->device &&
> > > + if ((d->device == q->device ||
> > > + q->device == DEVICE_ID_ANY) &&
> > > (d->subsystem_vendor == q->subsystem_vendor ||
> > > q->subsystem_vendor == PCI_ANY_ID) &&
> > > (d->subsystem_device == q->subsystem_device || @@ -300,7
> > > +303,8 @@ void intel_init_dpcd_quirks(struct intel_dp *intel_dp,
> > > for (i = 0; i < ARRAY_SIZE(intel_dpcd_quirks); i++) {
> > > const struct intel_dpcd_quirk *q = &intel_dpcd_quirks[i];
> > >
> > > - if (d->device == q->device &&
> > > + if ((d->device == q->device ||
> > > + q->device == DEVICE_ID_ANY) &&
> > > (d->subsystem_vendor == q->subsystem_vendor ||
> > > q->subsystem_vendor == PCI_ANY_ID) &&
> > > (d->subsystem_device == q->subsystem_device || diff --git
> > > a/drivers/gpu/drm/i915/display/intel_quirks.h
> > > b/drivers/gpu/drm/i915/display/intel_quirks.h
> > > index 77e490caed0d..83214eb94b0c 100644
> > > --- a/drivers/gpu/drm/i915/display/intel_quirks.h
> > > +++ b/drivers/gpu/drm/i915/display/intel_quirks.h
> > > @@ -21,7 +21,7 @@ enum intel_quirk_id {
> > > QUIRK_NO_PPS_BACKLIGHT_POWER_HOOK,
> > > QUIRK_FW_SYNC_LEN,
> > > QUIRK_EDP_LIMIT_RATE_HBR2,
> > > - QUIRK_DISABLE_PANEL_REPLAY,
> > > + QUIRK_DISABLE_EDP_PANEL_REPLAY,
> > > };
> > >
> > > void intel_init_quirks(struct intel_display *display);
> >
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-03-24 12:37 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-20 8:04 [PATCH] drm/i915/psr: Fixes for Dell XPS DA14260 quirk Jouni Högander
2026-03-20 8:46 ` Jani Nikula
2026-03-20 12:03 ` Hogander, Jouni
2026-03-24 12:37 ` Kahola, Mika
2026-03-20 9:09 ` ✓ CI.KUnit: success for " Patchwork
2026-03-20 9:44 ` ✓ Xe.CI.BAT: " Patchwork
2026-03-20 13:29 ` ✓ CI.KUnit: success for drm/i915/psr: Fixes for Dell XPS DA14260 quirk (rev2) Patchwork
2026-03-20 14:09 ` ✓ Xe.CI.BAT: " Patchwork
2026-03-21 13:51 ` ✗ 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