* [PATCH 0/1] Revert patch to reject HBR3 for all eDP panels
@ 2025-06-27 8:40 Ankit Nautiyal
2025-06-27 8:40 ` [PATCH 1/1] drm/i915/dp: Refine TPS4-based HBR3 rejection and add quirk to limit eDP to HBR2 Ankit Nautiyal
` (4 more replies)
0 siblings, 5 replies; 11+ messages in thread
From: Ankit Nautiyal @ 2025-06-27 8:40 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, jani.nikula, Ankit Nautiyal
Revert the existing patch that rejects HBR3 for all eDP panels that
do not support TPS4. With the patch reverted, the gitlab issue#5969 [1]
will get opened again. Add a quirk to limit the rate to HBR2 for the
device mentioned in [1] and close the issue.
This series is a continuation from [2], and [3].
[1] https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5969
[2] https://lore.kernel.org/all/1cd154a09823abf6d34221ae9e02f9cd342cc3a3@intel.com/
[3] https://lore.kernel.org/all/87y0uzh5tz.fsf@intel.com/
Rev2:
Instead of revert and add quirk, add a single patch that fixes the
commit. (Jani).
Ankit Nautiyal (1):
drm/i915/dp: Refine TPS4-based HBR3 rejection and add quirk to limit
eDP to HBR2
drivers/gpu/drm/i915/display/intel_dp.c | 31 +++++++++++++++++++--
drivers/gpu/drm/i915/display/intel_quirks.c | 9 ++++++
drivers/gpu/drm/i915/display/intel_quirks.h | 1 +
3 files changed, 39 insertions(+), 2 deletions(-)
--
2.45.2
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 1/1] drm/i915/dp: Refine TPS4-based HBR3 rejection and add quirk to limit eDP to HBR2
2025-06-27 8:40 [PATCH 0/1] Revert patch to reject HBR3 for all eDP panels Ankit Nautiyal
@ 2025-06-27 8:40 ` Ankit Nautiyal
2025-06-27 9:05 ` Nautiyal, Ankit K
2025-07-06 5:31 ` [RESEND " Ankit Nautiyal
2025-06-30 13:02 ` ✓ CI.KUnit: success for Revert patch to reject HBR3 for all eDP panels (rev3) Patchwork
` (3 subsequent siblings)
4 siblings, 2 replies; 11+ messages in thread
From: Ankit Nautiyal @ 2025-06-27 8:40 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, jani.nikula, Ankit Nautiyal, stable
Refine the logic introduced in commit 584cf613c24a ("drm/i915/dp: Reject
HBR3 when sink doesn't support TPS4") to allow HBR3 on eDP panels that
report DPCD revision 1.4, even if TPS4 is not supported. This aligns with
the DisplayPort specification, which does not mandate TPS4 support for eDP
with DPCD rev 1.4.
This change avoids regressions on panels that require HBR3 to operate at
their native resolution but do not advertise TPS4 support.
Additionally, some ICL/TGL platforms with combo PHY ports suffer from
signal integrity issues at HBR3. While certain systems include a
Parade PS8461 mux to mitigate this, its presence cannot be reliably
detected. Furthermore, broken or missing VBT entries make it unsafe to
rely on VBT for enforcing link rate limits.
To address the HBR3-related issues on such platforms and eDP panels,
introduce a device specific quirk to cap the eDP link rate to HBR2
(540000 kHz). This will override any higher advertised rates from
the sink or DPCD for specific devices.
Currently, the quirk is added for Dell XPS 13 7390 2-in-1 which is
reported in gitlab issue #5969 [1].
[1] https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5969
[2] https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14517
Fixes: 584cf613c24a ("drm/i915/dp: Reject HBR3 when sink doesn't support TPS4")
Cc: Jani Nikula <jani.nikula@linux.intel.com>
Cc: Ville Syrj_l_ <ville.syrjala@linux.intel.com>
Cc: <stable@vger.kernel.org> # v6.15+
Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5969
Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14517
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
drivers/gpu/drm/i915/display/intel_dp.c | 31 +++++++++++++++++++--
drivers/gpu/drm/i915/display/intel_quirks.c | 9 ++++++
drivers/gpu/drm/i915/display/intel_quirks.h | 1 +
3 files changed, 39 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index f48912f308df..362e376fca27 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -171,6 +171,15 @@ int intel_dp_link_symbol_clock(int rate)
return DIV_ROUND_CLOSEST(rate * 10, intel_dp_link_symbol_size(rate));
}
+static bool intel_dp_reject_hbr3_due_to_tps4(struct intel_dp *intel_dp)
+{
+ /* TPS4 is not mandatory for eDP with DPCD rev 1.4 */
+ if (intel_dp_is_edp(intel_dp) && intel_dp->dpcd[DP_DPCD_REV] == 0x14)
+ return false;
+
+ return !drm_dp_tps4_supported(intel_dp->dpcd);
+}
+
static int max_dprx_rate(struct intel_dp *intel_dp)
{
struct intel_display *display = to_intel_display(intel_dp);
@@ -187,13 +196,22 @@ static int max_dprx_rate(struct intel_dp *intel_dp)
* HBR3 without TPS4, and are unable to produce a stable
* output. Reject HBR3 when TPS4 is not available.
*/
- if (max_rate >= 810000 && !drm_dp_tps4_supported(intel_dp->dpcd)) {
+ if (max_rate >= 810000 && intel_dp_reject_hbr3_due_to_tps4(intel_dp)) {
drm_dbg_kms(display->drm,
"[ENCODER:%d:%s] Rejecting HBR3 due to missing TPS4 support\n",
encoder->base.base.id, encoder->base.name);
max_rate = 540000;
}
+ /*
+ * Some platforms + eDP panels may not reliably support HBR3
+ * due to signal integrity limitations, despite advertising it.
+ * Cap the link rate to HBR2 to avoid unstable configurations for the
+ * known machines.
+ */
+ if (intel_dp_is_edp(intel_dp) && intel_has_quirk(display, QUIRK_EDP_LIMIT_RATE_HBR2))
+ max_rate = min(max_rate, 540000);
+
return max_rate;
}
@@ -4304,13 +4322,22 @@ intel_edp_set_sink_rates(struct intel_dp *intel_dp)
* HBR3 without TPS4, and are unable to produce a stable
* output. Reject HBR3 when TPS4 is not available.
*/
- if (rate >= 810000 && !drm_dp_tps4_supported(intel_dp->dpcd)) {
+ if (rate >= 810000 && intel_dp_reject_hbr3_due_to_tps4(intel_dp)) {
drm_dbg_kms(display->drm,
"[ENCODER:%d:%s] Rejecting HBR3 due to missing TPS4 support\n",
encoder->base.base.id, encoder->base.name);
break;
}
+ /*
+ * Some platforms cannot reliably drive HBR3 rates due to PHY limitations,
+ * even if the sink advertises support. Reject any sink rates above HBR2 on
+ * the known machines for stable output.
+ */
+ if (rate >= 810000 &&
+ intel_has_quirk(display, QUIRK_EDP_LIMIT_RATE_HBR2))
+ break;
+
intel_dp->sink_rates[i] = rate;
}
intel_dp->num_sink_rates = i;
diff --git a/drivers/gpu/drm/i915/display/intel_quirks.c b/drivers/gpu/drm/i915/display/intel_quirks.c
index a32fae510ed2..d2e16b79d6be 100644
--- a/drivers/gpu/drm/i915/display/intel_quirks.c
+++ b/drivers/gpu/drm/i915/display/intel_quirks.c
@@ -80,6 +80,12 @@ static void quirk_fw_sync_len(struct intel_dp *intel_dp)
drm_info(display->drm, "Applying Fast Wake sync pulse count quirk\n");
}
+static void quirk_edp_limit_rate_hbr2(struct intel_display *display)
+{
+ intel_set_quirk(display, QUIRK_EDP_LIMIT_RATE_HBR2);
+ drm_info(display->drm, "Applying eDP Limit rate to HBR2 quirk\n");
+}
+
struct intel_quirk {
int device;
int subsystem_vendor;
@@ -231,6 +237,9 @@ static struct intel_quirk intel_quirks[] = {
{ 0x3184, 0x1019, 0xa94d, quirk_increase_ddi_disabled_time },
/* HP Notebook - 14-r206nv */
{ 0x0f31, 0x103c, 0x220f, quirk_invert_brightness },
+
+ /* Dell XPS 13 7390 2-in-1 */
+ { 0x8a12, 0x1028, 0x08b0, quirk_edp_limit_rate_hbr2 },
};
static const struct intel_dpcd_quirk intel_dpcd_quirks[] = {
diff --git a/drivers/gpu/drm/i915/display/intel_quirks.h b/drivers/gpu/drm/i915/display/intel_quirks.h
index cafdebda7535..06da0e286c67 100644
--- a/drivers/gpu/drm/i915/display/intel_quirks.h
+++ b/drivers/gpu/drm/i915/display/intel_quirks.h
@@ -20,6 +20,7 @@ enum intel_quirk_id {
QUIRK_LVDS_SSC_DISABLE,
QUIRK_NO_PPS_BACKLIGHT_POWER_HOOK,
QUIRK_FW_SYNC_LEN,
+ QUIRK_EDP_LIMIT_RATE_HBR2,
};
void intel_init_quirks(struct intel_display *display);
--
2.45.2
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH 1/1] drm/i915/dp: Refine TPS4-based HBR3 rejection and add quirk to limit eDP to HBR2
2025-06-27 8:40 ` [PATCH 1/1] drm/i915/dp: Refine TPS4-based HBR3 rejection and add quirk to limit eDP to HBR2 Ankit Nautiyal
@ 2025-06-27 9:05 ` Nautiyal, Ankit K
2025-07-06 5:31 ` [RESEND " Ankit Nautiyal
1 sibling, 0 replies; 11+ messages in thread
From: Nautiyal, Ankit K @ 2025-06-27 9:05 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, jani.nikula, stable
On 6/27/2025 2:10 PM, Ankit Nautiyal wrote:
> Refine the logic introduced in commit 584cf613c24a ("drm/i915/dp: Reject
> HBR3 when sink doesn't support TPS4") to allow HBR3 on eDP panels that
> report DPCD revision 1.4, even if TPS4 is not supported. This aligns with
> the DisplayPort specification, which does not mandate TPS4 support for eDP
> with DPCD rev 1.4.
>
> This change avoids regressions on panels that require HBR3 to operate at
> their native resolution but do not advertise TPS4 support.
>
> Additionally, some ICL/TGL platforms with combo PHY ports suffer from
> signal integrity issues at HBR3. While certain systems include a
> Parade PS8461 mux to mitigate this, its presence cannot be reliably
> detected. Furthermore, broken or missing VBT entries make it unsafe to
> rely on VBT for enforcing link rate limits.
>
> To address the HBR3-related issues on such platforms and eDP panels,
> introduce a device specific quirk to cap the eDP link rate to HBR2
> (540000 kHz). This will override any higher advertised rates from
> the sink or DPCD for specific devices.
>
> Currently, the quirk is added for Dell XPS 13 7390 2-in-1 which is
> reported in gitlab issue #5969 [1].
>
> [1] https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5969
> [2] https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14517
>
> Fixes: 584cf613c24a ("drm/i915/dp: Reject HBR3 when sink doesn't support TPS4")
> Cc: Jani Nikula <jani.nikula@linux.intel.com>
> Cc: Ville Syrj_l_ <ville.syrjala@linux.intel.com>
I realized that due to some utf8 issue with my tmux, few characters did
not come up correctly.
My sincere apologies to Ville for the oversight.
I will correct this to: Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Regards,
Ankit
> Cc: <stable@vger.kernel.org> # v6.15+
> Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5969
> Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14517
> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_dp.c | 31 +++++++++++++++++++--
> drivers/gpu/drm/i915/display/intel_quirks.c | 9 ++++++
> drivers/gpu/drm/i915/display/intel_quirks.h | 1 +
> 3 files changed, 39 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
> index f48912f308df..362e376fca27 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> @@ -171,6 +171,15 @@ int intel_dp_link_symbol_clock(int rate)
> return DIV_ROUND_CLOSEST(rate * 10, intel_dp_link_symbol_size(rate));
> }
>
> +static bool intel_dp_reject_hbr3_due_to_tps4(struct intel_dp *intel_dp)
> +{
> + /* TPS4 is not mandatory for eDP with DPCD rev 1.4 */
> + if (intel_dp_is_edp(intel_dp) && intel_dp->dpcd[DP_DPCD_REV] == 0x14)
> + return false;
> +
> + return !drm_dp_tps4_supported(intel_dp->dpcd);
> +}
> +
> static int max_dprx_rate(struct intel_dp *intel_dp)
> {
> struct intel_display *display = to_intel_display(intel_dp);
> @@ -187,13 +196,22 @@ static int max_dprx_rate(struct intel_dp *intel_dp)
> * HBR3 without TPS4, and are unable to produce a stable
> * output. Reject HBR3 when TPS4 is not available.
> */
> - if (max_rate >= 810000 && !drm_dp_tps4_supported(intel_dp->dpcd)) {
> + if (max_rate >= 810000 && intel_dp_reject_hbr3_due_to_tps4(intel_dp)) {
> drm_dbg_kms(display->drm,
> "[ENCODER:%d:%s] Rejecting HBR3 due to missing TPS4 support\n",
> encoder->base.base.id, encoder->base.name);
> max_rate = 540000;
> }
>
> + /*
> + * Some platforms + eDP panels may not reliably support HBR3
> + * due to signal integrity limitations, despite advertising it.
> + * Cap the link rate to HBR2 to avoid unstable configurations for the
> + * known machines.
> + */
> + if (intel_dp_is_edp(intel_dp) && intel_has_quirk(display, QUIRK_EDP_LIMIT_RATE_HBR2))
> + max_rate = min(max_rate, 540000);
> +
> return max_rate;
> }
>
> @@ -4304,13 +4322,22 @@ intel_edp_set_sink_rates(struct intel_dp *intel_dp)
> * HBR3 without TPS4, and are unable to produce a stable
> * output. Reject HBR3 when TPS4 is not available.
> */
> - if (rate >= 810000 && !drm_dp_tps4_supported(intel_dp->dpcd)) {
> + if (rate >= 810000 && intel_dp_reject_hbr3_due_to_tps4(intel_dp)) {
> drm_dbg_kms(display->drm,
> "[ENCODER:%d:%s] Rejecting HBR3 due to missing TPS4 support\n",
> encoder->base.base.id, encoder->base.name);
> break;
> }
>
> + /*
> + * Some platforms cannot reliably drive HBR3 rates due to PHY limitations,
> + * even if the sink advertises support. Reject any sink rates above HBR2 on
> + * the known machines for stable output.
> + */
> + if (rate >= 810000 &&
> + intel_has_quirk(display, QUIRK_EDP_LIMIT_RATE_HBR2))
> + break;
> +
> intel_dp->sink_rates[i] = rate;
> }
> intel_dp->num_sink_rates = i;
> diff --git a/drivers/gpu/drm/i915/display/intel_quirks.c b/drivers/gpu/drm/i915/display/intel_quirks.c
> index a32fae510ed2..d2e16b79d6be 100644
> --- a/drivers/gpu/drm/i915/display/intel_quirks.c
> +++ b/drivers/gpu/drm/i915/display/intel_quirks.c
> @@ -80,6 +80,12 @@ static void quirk_fw_sync_len(struct intel_dp *intel_dp)
> drm_info(display->drm, "Applying Fast Wake sync pulse count quirk\n");
> }
>
> +static void quirk_edp_limit_rate_hbr2(struct intel_display *display)
> +{
> + intel_set_quirk(display, QUIRK_EDP_LIMIT_RATE_HBR2);
> + drm_info(display->drm, "Applying eDP Limit rate to HBR2 quirk\n");
> +}
> +
> struct intel_quirk {
> int device;
> int subsystem_vendor;
> @@ -231,6 +237,9 @@ static struct intel_quirk intel_quirks[] = {
> { 0x3184, 0x1019, 0xa94d, quirk_increase_ddi_disabled_time },
> /* HP Notebook - 14-r206nv */
> { 0x0f31, 0x103c, 0x220f, quirk_invert_brightness },
> +
> + /* Dell XPS 13 7390 2-in-1 */
> + { 0x8a12, 0x1028, 0x08b0, quirk_edp_limit_rate_hbr2 },
> };
>
> static const struct intel_dpcd_quirk intel_dpcd_quirks[] = {
> diff --git a/drivers/gpu/drm/i915/display/intel_quirks.h b/drivers/gpu/drm/i915/display/intel_quirks.h
> index cafdebda7535..06da0e286c67 100644
> --- a/drivers/gpu/drm/i915/display/intel_quirks.h
> +++ b/drivers/gpu/drm/i915/display/intel_quirks.h
> @@ -20,6 +20,7 @@ enum intel_quirk_id {
> QUIRK_LVDS_SSC_DISABLE,
> QUIRK_NO_PPS_BACKLIGHT_POWER_HOOK,
> QUIRK_FW_SYNC_LEN,
> + QUIRK_EDP_LIMIT_RATE_HBR2,
> };
>
> void intel_init_quirks(struct intel_display *display);
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ CI.KUnit: success for Revert patch to reject HBR3 for all eDP panels (rev3)
2025-06-27 8:40 [PATCH 0/1] Revert patch to reject HBR3 for all eDP panels Ankit Nautiyal
2025-06-27 8:40 ` [PATCH 1/1] drm/i915/dp: Refine TPS4-based HBR3 rejection and add quirk to limit eDP to HBR2 Ankit Nautiyal
@ 2025-06-30 13:02 ` Patchwork
2025-06-30 13:56 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-06-30 13:02 UTC (permalink / raw)
To: Nautiyal, Ankit K; +Cc: intel-xe
== Series Details ==
Series: Revert patch to reject HBR3 for all eDP panels (rev3)
URL : https://patchwork.freedesktop.org/series/150568/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[13:01:31] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:01: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
[13:02:03] Starting KUnit Kernel (1/1)...
[13:02:03] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:02:03] ================== guc_buf (11 subtests) ===================
[13:02:03] [PASSED] test_smallest
[13:02:03] [PASSED] test_largest
[13:02:03] [PASSED] test_granular
[13:02:03] [PASSED] test_unique
[13:02:03] [PASSED] test_overlap
[13:02:03] [PASSED] test_reusable
[13:02:03] [PASSED] test_too_big
[13:02:03] [PASSED] test_flush
[13:02:03] [PASSED] test_lookup
[13:02:03] [PASSED] test_data
[13:02:03] [PASSED] test_class
[13:02:03] ===================== [PASSED] guc_buf =====================
[13:02:03] =================== guc_dbm (7 subtests) ===================
[13:02:03] [PASSED] test_empty
[13:02:03] [PASSED] test_default
[13:02:03] ======================== test_size ========================
[13:02:03] [PASSED] 4
[13:02:03] [PASSED] 8
[13:02:03] [PASSED] 32
[13:02:03] [PASSED] 256
[13:02:03] ==================== [PASSED] test_size ====================
[13:02:03] ======================= test_reuse ========================
[13:02:03] [PASSED] 4
[13:02:03] [PASSED] 8
[13:02:03] [PASSED] 32
[13:02:03] [PASSED] 256
[13:02:03] =================== [PASSED] test_reuse ====================
[13:02:03] =================== test_range_overlap ====================
[13:02:03] [PASSED] 4
[13:02:03] [PASSED] 8
[13:02:03] [PASSED] 32
[13:02:03] [PASSED] 256
[13:02:03] =============== [PASSED] test_range_overlap ================
[13:02:03] =================== test_range_compact ====================
[13:02:03] [PASSED] 4
[13:02:03] [PASSED] 8
[13:02:03] [PASSED] 32
[13:02:03] [PASSED] 256
[13:02:03] =============== [PASSED] test_range_compact ================
[13:02:03] ==================== test_range_spare =====================
[13:02:03] [PASSED] 4
[13:02:03] [PASSED] 8
[13:02:03] [PASSED] 32
[13:02:03] [PASSED] 256
[13:02:03] ================ [PASSED] test_range_spare =================
[13:02:03] ===================== [PASSED] guc_dbm =====================
[13:02:03] =================== guc_idm (6 subtests) ===================
[13:02:03] [PASSED] bad_init
[13:02:03] [PASSED] no_init
[13:02:03] [PASSED] init_fini
[13:02:03] [PASSED] check_used
[13:02:03] [PASSED] check_quota
[13:02:03] [PASSED] check_all
[13:02:03] ===================== [PASSED] guc_idm =====================
[13:02:03] ================== no_relay (3 subtests) ===================
[13:02:03] [PASSED] xe_drops_guc2pf_if_not_ready
[13:02:03] [PASSED] xe_drops_guc2vf_if_not_ready
[13:02:03] [PASSED] xe_rejects_send_if_not_ready
[13:02:03] ==================== [PASSED] no_relay =====================
[13:02:03] ================== pf_relay (14 subtests) ==================
[13:02:03] [PASSED] pf_rejects_guc2pf_too_short
[13:02:03] [PASSED] pf_rejects_guc2pf_too_long
[13:02:03] [PASSED] pf_rejects_guc2pf_no_payload
[13:02:03] [PASSED] pf_fails_no_payload
[13:02:03] [PASSED] pf_fails_bad_origin
[13:02:03] [PASSED] pf_fails_bad_type
[13:02:03] [PASSED] pf_txn_reports_error
[13:02:03] [PASSED] pf_txn_sends_pf2guc
[13:02:03] [PASSED] pf_sends_pf2guc
[13:02:03] [SKIPPED] pf_loopback_nop
[13:02:03] [SKIPPED] pf_loopback_echo
[13:02:03] [SKIPPED] pf_loopback_fail
[13:02:03] [SKIPPED] pf_loopback_busy
[13:02:03] [SKIPPED] pf_loopback_retry
[13:02:03] ==================== [PASSED] pf_relay =====================
[13:02:03] ================== vf_relay (3 subtests) ===================
[13:02:03] [PASSED] vf_rejects_guc2vf_too_short
[13:02:03] [PASSED] vf_rejects_guc2vf_too_long
[13:02:03] [PASSED] vf_rejects_guc2vf_no_payload
[13:02:03] ==================== [PASSED] vf_relay =====================
[13:02:03] ================= pf_service (11 subtests) =================
[13:02:03] [PASSED] pf_negotiate_any
[13:02:03] [PASSED] pf_negotiate_base_match
[13:02:03] [PASSED] pf_negotiate_base_newer
[13:02:03] [PASSED] pf_negotiate_base_next
[13:02:03] [SKIPPED] pf_negotiate_base_older
[13:02:03] [PASSED] pf_negotiate_base_prev
[13:02:03] [PASSED] pf_negotiate_latest_match
[13:02:03] [PASSED] pf_negotiate_latest_newer
[13:02:03] [PASSED] pf_negotiate_latest_next
[13:02:03] [SKIPPED] pf_negotiate_latest_older
[13:02:03] [SKIPPED] pf_negotiate_latest_prev
[13:02:03] =================== [PASSED] pf_service ====================
[13:02:03] ===================== lmtt (1 subtest) =====================
[13:02:03] ======================== test_ops =========================
[13:02:03] [PASSED] 2-level
[13:02:03] [PASSED] multi-level
[13:02:03] ==================== [PASSED] test_ops =====================
[13:02:03] ====================== [PASSED] lmtt =======================
[13:02:03] =================== xe_mocs (2 subtests) ===================
[13:02:03] ================ xe_live_mocs_kernel_kunit ================
[13:02:03] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[13:02:03] ================ xe_live_mocs_reset_kunit =================
[13:02:03] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[13:02:03] ==================== [SKIPPED] xe_mocs =====================
[13:02:03] ================= xe_migrate (2 subtests) ==================
[13:02:03] ================= xe_migrate_sanity_kunit =================
[13:02:03] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[13:02:03] ================== xe_validate_ccs_kunit ==================
[13:02:03] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[13:02:03] =================== [SKIPPED] xe_migrate ===================
[13:02:03] ================== xe_dma_buf (1 subtest) ==================
[13:02:03] ==================== xe_dma_buf_kunit =====================
[13:02:03] ================ [SKIPPED] xe_dma_buf_kunit ================
[13:02:03] =================== [SKIPPED] xe_dma_buf ===================
[13:02:03] ================= xe_bo_shrink (1 subtest) =================
[13:02:03] =================== xe_bo_shrink_kunit ====================
[13:02:03] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[13:02:03] ================== [SKIPPED] xe_bo_shrink ==================
[13:02:03] ==================== xe_bo (2 subtests) ====================
[13:02:03] ================== xe_ccs_migrate_kunit ===================
[13:02:03] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[13:02:03] ==================== xe_bo_evict_kunit ====================
[13:02:03] =============== [SKIPPED] xe_bo_evict_kunit ================
[13:02:03] ===================== [SKIPPED] xe_bo ======================
[13:02:03] ==================== args (11 subtests) ====================
[13:02:03] [PASSED] count_args_test
[13:02:03] [PASSED] call_args_example
[13:02:03] [PASSED] call_args_test
[13:02:03] [PASSED] drop_first_arg_example
[13:02:03] [PASSED] drop_first_arg_test
[13:02:03] [PASSED] first_arg_example
[13:02:03] [PASSED] first_arg_test
[13:02:03] [PASSED] last_arg_example
[13:02:03] [PASSED] last_arg_test
[13:02:03] [PASSED] pick_arg_example
[13:02:03] [PASSED] sep_comma_example
[13:02:03] ====================== [PASSED] args =======================
[13:02:03] =================== xe_pci (2 subtests) ====================
[13:02:03] ==================== check_graphics_ip ====================
[13:02:03] [PASSED] 12.70 Xe_LPG
[13:02:03] [PASSED] 12.71 Xe_LPG
[13:02:03] [PASSED] 12.74 Xe_LPG+
[13:02:03] [PASSED] 20.01 Xe2_HPG
[13:02:03] [PASSED] 20.02 Xe2_HPG
[13:02:03] [PASSED] 20.04 Xe2_LPG
[13:02:03] [PASSED] 30.00 Xe3_LPG
[13:02:03] [PASSED] 30.01 Xe3_LPG
[13:02:03] [PASSED] 30.03 Xe3_LPG
[13:02:03] ================ [PASSED] check_graphics_ip ================
[13:02:03] ===================== check_media_ip ======================
[13:02:03] [PASSED] 13.00 Xe_LPM+
[13:02:03] [PASSED] 13.01 Xe2_HPM
[13:02:03] [PASSED] 20.00 Xe2_LPM
[13:02:03] [PASSED] 30.00 Xe3_LPM
[13:02:03] [PASSED] 30.02 Xe3_LPM
stty: 'standard input': Inappropriate ioctl for device
[13:02:03] ================= [PASSED] check_media_ip ==================
[13:02:03] ===================== [PASSED] xe_pci ======================
[13:02:03] =================== xe_rtp (2 subtests) ====================
[13:02:03] =============== xe_rtp_process_to_sr_tests ================
[13:02:03] [PASSED] coalesce-same-reg
[13:02:03] [PASSED] no-match-no-add
[13:02:03] [PASSED] match-or
[13:02:03] [PASSED] match-or-xfail
[13:02:03] [PASSED] no-match-no-add-multiple-rules
[13:02:03] [PASSED] two-regs-two-entries
[13:02:03] [PASSED] clr-one-set-other
[13:02:03] [PASSED] set-field
[13:02:03] [PASSED] conflict-duplicate
[13:02:03] [PASSED] conflict-not-disjoint
[13:02:03] [PASSED] conflict-reg-type
[13:02:03] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[13:02:03] ================== xe_rtp_process_tests ===================
[13:02:03] [PASSED] active1
[13:02:03] [PASSED] active2
[13:02:03] [PASSED] active-inactive
[13:02:03] [PASSED] inactive-active
[13:02:03] [PASSED] inactive-1st_or_active-inactive
[13:02:03] [PASSED] inactive-2nd_or_active-inactive
[13:02:03] [PASSED] inactive-last_or_active-inactive
[13:02:03] [PASSED] inactive-no_or_active-inactive
[13:02:03] ============== [PASSED] xe_rtp_process_tests ===============
[13:02:03] ===================== [PASSED] xe_rtp ======================
[13:02:03] ==================== xe_wa (1 subtest) =====================
[13:02:03] ======================== xe_wa_gt =========================
[13:02:03] [PASSED] TIGERLAKE (B0)
[13:02:03] [PASSED] DG1 (A0)
[13:02:03] [PASSED] DG1 (B0)
[13:02:03] [PASSED] ALDERLAKE_S (A0)
[13:02:03] [PASSED] ALDERLAKE_S (B0)
[13:02:03] [PASSED] ALDERLAKE_S (C0)
[13:02:03] [PASSED] ALDERLAKE_S (D0)
[13:02:03] [PASSED] ALDERLAKE_P (A0)
[13:02:03] [PASSED] ALDERLAKE_P (B0)
[13:02:03] [PASSED] ALDERLAKE_P (C0)
[13:02:03] [PASSED] ALDERLAKE_S_RPLS (D0)
[13:02:03] [PASSED] ALDERLAKE_P_RPLU (E0)
[13:02:03] [PASSED] DG2_G10 (C0)
[13:02:03] [PASSED] DG2_G11 (B1)
[13:02:03] [PASSED] DG2_G12 (A1)
[13:02:03] [PASSED] METEORLAKE (g:A0, m:A0)
[13:02:03] [PASSED] METEORLAKE (g:A0, m:A0)
[13:02:03] [PASSED] METEORLAKE (g:A0, m:A0)
[13:02:03] [PASSED] LUNARLAKE (g:A0, m:A0)
[13:02:03] [PASSED] LUNARLAKE (g:B0, m:A0)
[13:02:03] [PASSED] BATTLEMAGE (g:A0, m:A1)
[13:02:03] ==================== [PASSED] xe_wa_gt =====================
[13:02:03] ====================== [PASSED] xe_wa ======================
[13:02:03] ============================================================
[13:02:03] Testing complete. Ran 145 tests: passed: 129, skipped: 16
[13:02:03] Elapsed time: 32.030s total, 4.169s configuring, 27.544s building, 0.301s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[13:02:03] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:02:05] 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:02:26] Starting KUnit Kernel (1/1)...
[13:02:26] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:02:27] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[13:02:27] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[13:02:27] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[13:02:27] =========== drm_validate_clone_mode (2 subtests) ===========
[13:02:27] ============== drm_test_check_in_clone_mode ===============
[13:02:27] [PASSED] in_clone_mode
[13:02:27] [PASSED] not_in_clone_mode
[13:02:27] ========== [PASSED] drm_test_check_in_clone_mode ===========
[13:02:27] =============== drm_test_check_valid_clones ===============
[13:02:27] [PASSED] not_in_clone_mode
[13:02:27] [PASSED] valid_clone
[13:02:27] [PASSED] invalid_clone
[13:02:27] =========== [PASSED] drm_test_check_valid_clones ===========
[13:02:27] ============= [PASSED] drm_validate_clone_mode =============
[13:02:27] ============= drm_validate_modeset (1 subtest) =============
[13:02:27] [PASSED] drm_test_check_connector_changed_modeset
[13:02:27] ============== [PASSED] drm_validate_modeset ===============
[13:02:27] ====== drm_test_bridge_get_current_state (2 subtests) ======
[13:02:27] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[13:02:27] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[13:02:27] ======== [PASSED] drm_test_bridge_get_current_state ========
[13:02:27] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[13:02:27] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[13:02:27] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[13:02:27] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[13:02:27] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[13:02:27] ============== drm_bridge_alloc (2 subtests) ===============
[13:02:27] [PASSED] drm_test_drm_bridge_alloc_basic
[13:02:27] [PASSED] drm_test_drm_bridge_alloc_get_put
[13:02:27] ================ [PASSED] drm_bridge_alloc =================
[13:02:27] ================== drm_buddy (7 subtests) ==================
[13:02:27] [PASSED] drm_test_buddy_alloc_limit
[13:02:27] [PASSED] drm_test_buddy_alloc_optimistic
[13:02:27] [PASSED] drm_test_buddy_alloc_pessimistic
[13:02:27] [PASSED] drm_test_buddy_alloc_pathological
[13:02:27] [PASSED] drm_test_buddy_alloc_contiguous
[13:02:27] [PASSED] drm_test_buddy_alloc_clear
[13:02:27] [PASSED] drm_test_buddy_alloc_range_bias
[13:02:27] ==================== [PASSED] drm_buddy ====================
[13:02:27] ============= drm_cmdline_parser (40 subtests) =============
[13:02:27] [PASSED] drm_test_cmdline_force_d_only
[13:02:27] [PASSED] drm_test_cmdline_force_D_only_dvi
[13:02:27] [PASSED] drm_test_cmdline_force_D_only_hdmi
[13:02:27] [PASSED] drm_test_cmdline_force_D_only_not_digital
[13:02:27] [PASSED] drm_test_cmdline_force_e_only
[13:02:27] [PASSED] drm_test_cmdline_res
[13:02:27] [PASSED] drm_test_cmdline_res_vesa
[13:02:27] [PASSED] drm_test_cmdline_res_vesa_rblank
[13:02:27] [PASSED] drm_test_cmdline_res_rblank
[13:02:27] [PASSED] drm_test_cmdline_res_bpp
[13:02:27] [PASSED] drm_test_cmdline_res_refresh
[13:02:27] [PASSED] drm_test_cmdline_res_bpp_refresh
[13:02:27] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[13:02:27] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[13:02:27] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[13:02:27] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[13:02:27] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[13:02:27] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[13:02:27] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[13:02:27] [PASSED] drm_test_cmdline_res_margins_force_on
[13:02:27] [PASSED] drm_test_cmdline_res_vesa_margins
[13:02:27] [PASSED] drm_test_cmdline_name
[13:02:27] [PASSED] drm_test_cmdline_name_bpp
[13:02:27] [PASSED] drm_test_cmdline_name_option
[13:02:27] [PASSED] drm_test_cmdline_name_bpp_option
[13:02:27] [PASSED] drm_test_cmdline_rotate_0
[13:02:27] [PASSED] drm_test_cmdline_rotate_90
[13:02:27] [PASSED] drm_test_cmdline_rotate_180
[13:02:27] [PASSED] drm_test_cmdline_rotate_270
[13:02:27] [PASSED] drm_test_cmdline_hmirror
[13:02:27] [PASSED] drm_test_cmdline_vmirror
[13:02:27] [PASSED] drm_test_cmdline_margin_options
[13:02:27] [PASSED] drm_test_cmdline_multiple_options
[13:02:27] [PASSED] drm_test_cmdline_bpp_extra_and_option
[13:02:27] [PASSED] drm_test_cmdline_extra_and_option
[13:02:27] [PASSED] drm_test_cmdline_freestanding_options
[13:02:27] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[13:02:27] [PASSED] drm_test_cmdline_panel_orientation
[13:02:27] ================ drm_test_cmdline_invalid =================
[13:02:27] [PASSED] margin_only
[13:02:27] [PASSED] interlace_only
[13:02:27] [PASSED] res_missing_x
[13:02:27] [PASSED] res_missing_y
[13:02:27] [PASSED] res_bad_y
[13:02:27] [PASSED] res_missing_y_bpp
[13:02:27] [PASSED] res_bad_bpp
[13:02:27] [PASSED] res_bad_refresh
[13:02:27] [PASSED] res_bpp_refresh_force_on_off
[13:02:27] [PASSED] res_invalid_mode
[13:02:27] [PASSED] res_bpp_wrong_place_mode
[13:02:27] [PASSED] name_bpp_refresh
[13:02:27] [PASSED] name_refresh
[13:02:27] [PASSED] name_refresh_wrong_mode
[13:02:27] [PASSED] name_refresh_invalid_mode
[13:02:27] [PASSED] rotate_multiple
[13:02:27] [PASSED] rotate_invalid_val
[13:02:27] [PASSED] rotate_truncated
[13:02:27] [PASSED] invalid_option
[13:02:27] [PASSED] invalid_tv_option
[13:02:27] [PASSED] truncated_tv_option
[13:02:27] ============ [PASSED] drm_test_cmdline_invalid =============
[13:02:27] =============== drm_test_cmdline_tv_options ===============
[13:02:27] [PASSED] NTSC
[13:02:27] [PASSED] NTSC_443
[13:02:27] [PASSED] NTSC_J
[13:02:27] [PASSED] PAL
[13:02:27] [PASSED] PAL_M
[13:02:27] [PASSED] PAL_N
[13:02:27] [PASSED] SECAM
[13:02:27] [PASSED] MONO_525
[13:02:27] [PASSED] MONO_625
[13:02:27] =========== [PASSED] drm_test_cmdline_tv_options ===========
[13:02:27] =============== [PASSED] drm_cmdline_parser ================
[13:02:27] ========== drmm_connector_hdmi_init (20 subtests) ==========
[13:02:27] [PASSED] drm_test_connector_hdmi_init_valid
[13:02:27] [PASSED] drm_test_connector_hdmi_init_bpc_8
[13:02:27] [PASSED] drm_test_connector_hdmi_init_bpc_10
[13:02:27] [PASSED] drm_test_connector_hdmi_init_bpc_12
[13:02:27] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[13:02:27] [PASSED] drm_test_connector_hdmi_init_bpc_null
[13:02:27] [PASSED] drm_test_connector_hdmi_init_formats_empty
[13:02:27] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[13:02:27] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[13:02:27] [PASSED] supported_formats=0x9 yuv420_allowed=1
[13:02:27] [PASSED] supported_formats=0x9 yuv420_allowed=0
[13:02:27] [PASSED] supported_formats=0x3 yuv420_allowed=1
[13:02:27] [PASSED] supported_formats=0x3 yuv420_allowed=0
[13:02:27] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[13:02:27] [PASSED] drm_test_connector_hdmi_init_null_ddc
[13:02:27] [PASSED] drm_test_connector_hdmi_init_null_product
[13:02:27] [PASSED] drm_test_connector_hdmi_init_null_vendor
[13:02:27] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[13:02:27] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[13:02:27] [PASSED] drm_test_connector_hdmi_init_product_valid
[13:02:27] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[13:02:27] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[13:02:27] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[13:02:27] ========= drm_test_connector_hdmi_init_type_valid =========
[13:02:27] [PASSED] HDMI-A
[13:02:27] [PASSED] HDMI-B
[13:02:27] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[13:02:27] ======== drm_test_connector_hdmi_init_type_invalid ========
[13:02:27] [PASSED] Unknown
[13:02:27] [PASSED] VGA
[13:02:27] [PASSED] DVI-I
[13:02:27] [PASSED] DVI-D
[13:02:27] [PASSED] DVI-A
[13:02:27] [PASSED] Composite
[13:02:27] [PASSED] SVIDEO
[13:02:27] [PASSED] LVDS
[13:02:27] [PASSED] Component
[13:02:27] [PASSED] DIN
[13:02:27] [PASSED] DP
[13:02:27] [PASSED] TV
[13:02:27] [PASSED] eDP
[13:02:27] [PASSED] Virtual
[13:02:27] [PASSED] DSI
[13:02:27] [PASSED] DPI
[13:02:27] [PASSED] Writeback
[13:02:27] [PASSED] SPI
[13:02:27] [PASSED] USB
[13:02:27] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[13:02:27] ============ [PASSED] drmm_connector_hdmi_init =============
[13:02:27] ============= drmm_connector_init (3 subtests) =============
[13:02:27] [PASSED] drm_test_drmm_connector_init
[13:02:27] [PASSED] drm_test_drmm_connector_init_null_ddc
[13:02:27] ========= drm_test_drmm_connector_init_type_valid =========
[13:02:27] [PASSED] Unknown
[13:02:27] [PASSED] VGA
[13:02:27] [PASSED] DVI-I
[13:02:27] [PASSED] DVI-D
[13:02:27] [PASSED] DVI-A
[13:02:27] [PASSED] Composite
[13:02:27] [PASSED] SVIDEO
[13:02:27] [PASSED] LVDS
[13:02:27] [PASSED] Component
[13:02:27] [PASSED] DIN
[13:02:27] [PASSED] DP
[13:02:27] [PASSED] HDMI-A
[13:02:27] [PASSED] HDMI-B
[13:02:27] [PASSED] TV
[13:02:27] [PASSED] eDP
[13:02:27] [PASSED] Virtual
[13:02:27] [PASSED] DSI
[13:02:27] [PASSED] DPI
[13:02:27] [PASSED] Writeback
[13:02:27] [PASSED] SPI
[13:02:27] [PASSED] USB
[13:02:27] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[13:02:27] =============== [PASSED] drmm_connector_init ===============
[13:02:27] ========= drm_connector_dynamic_init (6 subtests) ==========
[13:02:27] [PASSED] drm_test_drm_connector_dynamic_init
[13:02:27] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[13:02:27] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[13:02:27] [PASSED] drm_test_drm_connector_dynamic_init_properties
[13:02:27] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[13:02:27] [PASSED] Unknown
[13:02:27] [PASSED] VGA
[13:02:27] [PASSED] DVI-I
[13:02:27] [PASSED] DVI-D
[13:02:27] [PASSED] DVI-A
[13:02:27] [PASSED] Composite
[13:02:27] [PASSED] SVIDEO
[13:02:27] [PASSED] LVDS
[13:02:27] [PASSED] Component
[13:02:27] [PASSED] DIN
[13:02:27] [PASSED] DP
[13:02:27] [PASSED] HDMI-A
[13:02:27] [PASSED] HDMI-B
[13:02:27] [PASSED] TV
[13:02:27] [PASSED] eDP
[13:02:27] [PASSED] Virtual
[13:02:27] [PASSED] DSI
[13:02:27] [PASSED] DPI
[13:02:27] [PASSED] Writeback
[13:02:27] [PASSED] SPI
[13:02:27] [PASSED] USB
[13:02:27] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[13:02:27] ======== drm_test_drm_connector_dynamic_init_name =========
[13:02:27] [PASSED] Unknown
[13:02:27] [PASSED] VGA
[13:02:27] [PASSED] DVI-I
[13:02:27] [PASSED] DVI-D
[13:02:27] [PASSED] DVI-A
[13:02:27] [PASSED] Composite
[13:02:27] [PASSED] SVIDEO
[13:02:27] [PASSED] LVDS
[13:02:27] [PASSED] Component
[13:02:27] [PASSED] DIN
[13:02:27] [PASSED] DP
[13:02:27] [PASSED] HDMI-A
[13:02:27] [PASSED] HDMI-B
[13:02:27] [PASSED] TV
[13:02:27] [PASSED] eDP
[13:02:27] [PASSED] Virtual
[13:02:27] [PASSED] DSI
[13:02:27] [PASSED] DPI
[13:02:27] [PASSED] Writeback
[13:02:27] [PASSED] SPI
[13:02:27] [PASSED] USB
[13:02:27] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[13:02:27] =========== [PASSED] drm_connector_dynamic_init ============
[13:02:27] ==== drm_connector_dynamic_register_early (4 subtests) =====
[13:02:27] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[13:02:27] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[13:02:27] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[13:02:27] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[13:02:27] ====== [PASSED] drm_connector_dynamic_register_early =======
[13:02:27] ======= drm_connector_dynamic_register (7 subtests) ========
[13:02:27] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[13:02:27] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[13:02:27] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[13:02:27] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[13:02:27] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[13:02:27] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[13:02:27] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[13:02:27] ========= [PASSED] drm_connector_dynamic_register ==========
[13:02:27] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[13:02:27] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[13:02:27] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[13:02:27] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[13:02:27] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[13:02:27] ========== drm_test_get_tv_mode_from_name_valid ===========
[13:02:27] [PASSED] NTSC
[13:02:27] [PASSED] NTSC-443
[13:02:27] [PASSED] NTSC-J
[13:02:27] [PASSED] PAL
[13:02:27] [PASSED] PAL-M
[13:02:27] [PASSED] PAL-N
[13:02:27] [PASSED] SECAM
[13:02:27] [PASSED] Mono
[13:02:27] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[13:02:27] [PASSED] drm_test_get_tv_mode_from_name_truncated
[13:02:27] ============ [PASSED] drm_get_tv_mode_from_name ============
[13:02:27] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[13:02:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[13:02:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[13:02:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[13:02:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[13:02:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[13:02:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[13:02:27] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[13:02:27] [PASSED] VIC 96
[13:02:27] [PASSED] VIC 97
[13:02:27] [PASSED] VIC 101
[13:02:27] [PASSED] VIC 102
[13:02:27] [PASSED] VIC 106
[13:02:27] [PASSED] VIC 107
[13:02:27] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[13:02:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[13:02:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[13:02:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[13:02:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[13:02:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[13:02:27] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[13:02:27] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[13:02:27] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[13:02:27] [PASSED] Automatic
[13:02:27] [PASSED] Full
[13:02:27] [PASSED] Limited 16:235
[13:02:27] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[13:02:27] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[13:02:27] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[13:02:27] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[13:02:27] === drm_test_drm_hdmi_connector_get_output_format_name ====
[13:02:27] [PASSED] RGB
[13:02:27] [PASSED] YUV 4:2:0
[13:02:27] [PASSED] YUV 4:2:2
[13:02:27] [PASSED] YUV 4:4:4
[13:02:27] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[13:02:27] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[13:02:27] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[13:02:27] ============= drm_damage_helper (21 subtests) ==============
[13:02:27] [PASSED] drm_test_damage_iter_no_damage
[13:02:27] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[13:02:27] [PASSED] drm_test_damage_iter_no_damage_src_moved
[13:02:27] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[13:02:27] [PASSED] drm_test_damage_iter_no_damage_not_visible
[13:02:27] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[13:02:27] [PASSED] drm_test_damage_iter_no_damage_no_fb
[13:02:27] [PASSED] drm_test_damage_iter_simple_damage
[13:02:27] [PASSED] drm_test_damage_iter_single_damage
[13:02:27] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[13:02:27] [PASSED] drm_test_damage_iter_single_damage_outside_src
[13:02:27] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[13:02:27] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[13:02:27] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[13:02:27] [PASSED] drm_test_damage_iter_single_damage_src_moved
[13:02:27] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[13:02:27] [PASSED] drm_test_damage_iter_damage
[13:02:27] [PASSED] drm_test_damage_iter_damage_one_intersect
[13:02:27] [PASSED] drm_test_damage_iter_damage_one_outside
[13:02:27] [PASSED] drm_test_damage_iter_damage_src_moved
[13:02:27] [PASSED] drm_test_damage_iter_damage_not_visible
[13:02:27] ================ [PASSED] drm_damage_helper ================
[13:02:27] ============== drm_dp_mst_helper (3 subtests) ==============
[13:02:27] ============== drm_test_dp_mst_calc_pbn_mode ==============
[13:02:27] [PASSED] Clock 154000 BPP 30 DSC disabled
[13:02:27] [PASSED] Clock 234000 BPP 30 DSC disabled
[13:02:27] [PASSED] Clock 297000 BPP 24 DSC disabled
[13:02:27] [PASSED] Clock 332880 BPP 24 DSC enabled
[13:02:27] [PASSED] Clock 324540 BPP 24 DSC enabled
[13:02:27] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[13:02:27] ============== drm_test_dp_mst_calc_pbn_div ===============
[13:02:27] [PASSED] Link rate 2000000 lane count 4
[13:02:27] [PASSED] Link rate 2000000 lane count 2
[13:02:27] [PASSED] Link rate 2000000 lane count 1
[13:02:27] [PASSED] Link rate 1350000 lane count 4
[13:02:27] [PASSED] Link rate 1350000 lane count 2
[13:02:27] [PASSED] Link rate 1350000 lane count 1
[13:02:27] [PASSED] Link rate 1000000 lane count 4
[13:02:27] [PASSED] Link rate 1000000 lane count 2
[13:02:27] [PASSED] Link rate 1000000 lane count 1
[13:02:27] [PASSED] Link rate 810000 lane count 4
[13:02:27] [PASSED] Link rate 810000 lane count 2
[13:02:27] [PASSED] Link rate 810000 lane count 1
[13:02:27] [PASSED] Link rate 540000 lane count 4
[13:02:27] [PASSED] Link rate 540000 lane count 2
[13:02:27] [PASSED] Link rate 540000 lane count 1
[13:02:27] [PASSED] Link rate 270000 lane count 4
[13:02:27] [PASSED] Link rate 270000 lane count 2
[13:02:27] [PASSED] Link rate 270000 lane count 1
[13:02:27] [PASSED] Link rate 162000 lane count 4
[13:02:27] [PASSED] Link rate 162000 lane count 2
[13:02:27] [PASSED] Link rate 162000 lane count 1
[13:02:27] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[13:02:27] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[13:02:27] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[13:02:27] [PASSED] DP_POWER_UP_PHY with port number
[13:02:27] [PASSED] DP_POWER_DOWN_PHY with port number
[13:02:27] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[13:02:27] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[13:02:27] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[13:02:27] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[13:02:27] [PASSED] DP_QUERY_PAYLOAD with port number
[13:02:27] [PASSED] DP_QUERY_PAYLOAD with VCPI
[13:02:27] [PASSED] DP_REMOTE_DPCD_READ with port number
[13:02:27] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[13:02:27] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[13:02:27] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[13:02:27] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[13:02:27] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[13:02:27] [PASSED] DP_REMOTE_I2C_READ with port number
[13:02:27] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[13:02:27] [PASSED] DP_REMOTE_I2C_READ with transactions array
[13:02:27] [PASSED] DP_REMOTE_I2C_WRITE with port number
[13:02:27] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[13:02:27] [PASSED] DP_REMOTE_I2C_WRITE with data array
[13:02:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[13:02:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[13:02:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[13:02:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[13:02:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[13:02:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[13:02:27] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[13:02:27] ================ [PASSED] drm_dp_mst_helper ================
[13:02:27] ================== drm_exec (7 subtests) ===================
[13:02:27] [PASSED] sanitycheck
[13:02:27] [PASSED] test_lock
[13:02:27] [PASSED] test_lock_unlock
[13:02:27] [PASSED] test_duplicates
[13:02:27] [PASSED] test_prepare
[13:02:27] [PASSED] test_prepare_array
[13:02:27] [PASSED] test_multiple_loops
[13:02:27] ==================== [PASSED] drm_exec =====================
[13:02:27] =========== drm_format_helper_test (17 subtests) ===========
[13:02:27] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[13:02:27] [PASSED] single_pixel_source_buffer
[13:02:27] [PASSED] single_pixel_clip_rectangle
[13:02:27] [PASSED] well_known_colors
[13:02:27] [PASSED] destination_pitch
[13:02:27] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[13:02:27] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[13:02:27] [PASSED] single_pixel_source_buffer
[13:02:27] [PASSED] single_pixel_clip_rectangle
[13:02:27] [PASSED] well_known_colors
[13:02:27] [PASSED] destination_pitch
[13:02:27] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[13:02:27] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[13:02:27] [PASSED] single_pixel_source_buffer
[13:02:27] [PASSED] single_pixel_clip_rectangle
[13:02:27] [PASSED] well_known_colors
[13:02:27] [PASSED] destination_pitch
[13:02:27] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[13:02:27] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[13:02:27] [PASSED] single_pixel_source_buffer
[13:02:27] [PASSED] single_pixel_clip_rectangle
[13:02:27] [PASSED] well_known_colors
[13:02:27] [PASSED] destination_pitch
[13:02:27] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[13:02:27] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[13:02:27] [PASSED] single_pixel_source_buffer
[13:02:27] [PASSED] single_pixel_clip_rectangle
[13:02:27] [PASSED] well_known_colors
[13:02:27] [PASSED] destination_pitch
[13:02:27] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[13:02:27] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[13:02:27] [PASSED] single_pixel_source_buffer
[13:02:27] [PASSED] single_pixel_clip_rectangle
[13:02:27] [PASSED] well_known_colors
[13:02:27] [PASSED] destination_pitch
[13:02:27] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[13:02:27] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[13:02:27] [PASSED] single_pixel_source_buffer
[13:02:27] [PASSED] single_pixel_clip_rectangle
[13:02:27] [PASSED] well_known_colors
[13:02:27] [PASSED] destination_pitch
[13:02:27] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[13:02:27] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[13:02:27] [PASSED] single_pixel_source_buffer
[13:02:27] [PASSED] single_pixel_clip_rectangle
[13:02:27] [PASSED] well_known_colors
[13:02:27] [PASSED] destination_pitch
[13:02:27] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[13:02:27] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[13:02:27] [PASSED] single_pixel_source_buffer
[13:02:27] [PASSED] single_pixel_clip_rectangle
[13:02:27] [PASSED] well_known_colors
[13:02:27] [PASSED] destination_pitch
[13:02:27] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[13:02:27] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[13:02:27] [PASSED] single_pixel_source_buffer
[13:02:27] [PASSED] single_pixel_clip_rectangle
[13:02:27] [PASSED] well_known_colors
[13:02:27] [PASSED] destination_pitch
[13:02:27] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[13:02:27] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[13:02:27] [PASSED] single_pixel_source_buffer
[13:02:27] [PASSED] single_pixel_clip_rectangle
[13:02:27] [PASSED] well_known_colors
[13:02:27] [PASSED] destination_pitch
[13:02:27] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[13:02:27] ============== drm_test_fb_xrgb8888_to_mono ===============
[13:02:27] [PASSED] single_pixel_source_buffer
[13:02:27] [PASSED] single_pixel_clip_rectangle
[13:02:27] [PASSED] well_known_colors
[13:02:27] [PASSED] destination_pitch
[13:02:27] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[13:02:27] ==================== drm_test_fb_swab =====================
[13:02:27] [PASSED] single_pixel_source_buffer
[13:02:27] [PASSED] single_pixel_clip_rectangle
[13:02:27] [PASSED] well_known_colors
[13:02:27] [PASSED] destination_pitch
[13:02:27] ================ [PASSED] drm_test_fb_swab =================
[13:02:27] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[13:02:27] [PASSED] single_pixel_source_buffer
[13:02:27] [PASSED] single_pixel_clip_rectangle
[13:02:27] [PASSED] well_known_colors
[13:02:27] [PASSED] destination_pitch
[13:02:27] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[13:02:27] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[13:02:27] [PASSED] single_pixel_source_buffer
[13:02:27] [PASSED] single_pixel_clip_rectangle
[13:02:27] [PASSED] well_known_colors
[13:02:27] [PASSED] destination_pitch
[13:02:27] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[13:02:27] ================= drm_test_fb_clip_offset =================
[13:02:27] [PASSED] pass through
[13:02:27] [PASSED] horizontal offset
[13:02:27] [PASSED] vertical offset
[13:02:27] [PASSED] horizontal and vertical offset
[13:02:27] [PASSED] horizontal offset (custom pitch)
[13:02:27] [PASSED] vertical offset (custom pitch)
[13:02:27] [PASSED] horizontal and vertical offset (custom pitch)
[13:02:27] ============= [PASSED] drm_test_fb_clip_offset =============
[13:02:27] =================== drm_test_fb_memcpy ====================
[13:02:27] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[13:02:27] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[13:02:27] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[13:02:27] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[13:02:27] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[13:02:27] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[13:02:27] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[13:02:27] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[13:02:27] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[13:02:27] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[13:02:27] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[13:02:27] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[13:02:27] =============== [PASSED] drm_test_fb_memcpy ================
[13:02:27] ============= [PASSED] drm_format_helper_test ==============
[13:02:27] ================= drm_format (18 subtests) =================
[13:02:27] [PASSED] drm_test_format_block_width_invalid
[13:02:27] [PASSED] drm_test_format_block_width_one_plane
[13:02:27] [PASSED] drm_test_format_block_width_two_plane
[13:02:27] [PASSED] drm_test_format_block_width_three_plane
[13:02:27] [PASSED] drm_test_format_block_width_tiled
[13:02:27] [PASSED] drm_test_format_block_height_invalid
[13:02:27] [PASSED] drm_test_format_block_height_one_plane
[13:02:27] [PASSED] drm_test_format_block_height_two_plane
[13:02:27] [PASSED] drm_test_format_block_height_three_plane
[13:02:27] [PASSED] drm_test_format_block_height_tiled
[13:02:27] [PASSED] drm_test_format_min_pitch_invalid
[13:02:27] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[13:02:27] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[13:02:27] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[13:02:27] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[13:02:27] [PASSED] drm_test_format_min_pitch_two_plane
[13:02:27] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[13:02:27] [PASSED] drm_test_format_min_pitch_tiled
[13:02:27] =================== [PASSED] drm_format ====================
[13:02:27] ============== drm_framebuffer (10 subtests) ===============
[13:02:27] ========== drm_test_framebuffer_check_src_coords ==========
[13:02:27] [PASSED] Success: source fits into fb
[13:02:27] [PASSED] Fail: overflowing fb with x-axis coordinate
[13:02:27] [PASSED] Fail: overflowing fb with y-axis coordinate
[13:02:27] [PASSED] Fail: overflowing fb with source width
[13:02:27] [PASSED] Fail: overflowing fb with source height
[13:02:27] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[13:02:27] [PASSED] drm_test_framebuffer_cleanup
[13:02:27] =============== drm_test_framebuffer_create ===============
[13:02:27] [PASSED] ABGR8888 normal sizes
[13:02:27] [PASSED] ABGR8888 max sizes
[13:02:27] [PASSED] ABGR8888 pitch greater than min required
[13:02:27] [PASSED] ABGR8888 pitch less than min required
[13:02:27] [PASSED] ABGR8888 Invalid width
[13:02:27] [PASSED] ABGR8888 Invalid buffer handle
[13:02:27] [PASSED] No pixel format
[13:02:27] [PASSED] ABGR8888 Width 0
[13:02:27] [PASSED] ABGR8888 Height 0
[13:02:27] [PASSED] ABGR8888 Out of bound height * pitch combination
[13:02:27] [PASSED] ABGR8888 Large buffer offset
[13:02:27] [PASSED] ABGR8888 Buffer offset for inexistent plane
[13:02:27] [PASSED] ABGR8888 Invalid flag
[13:02:27] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[13:02:27] [PASSED] ABGR8888 Valid buffer modifier
[13:02:27] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[13:02:27] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[13:02:27] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[13:02:27] [PASSED] NV12 Normal sizes
[13:02:27] [PASSED] NV12 Max sizes
[13:02:27] [PASSED] NV12 Invalid pitch
[13:02:27] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[13:02:27] [PASSED] NV12 different modifier per-plane
[13:02:27] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[13:02:27] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[13:02:27] [PASSED] NV12 Modifier for inexistent plane
[13:02:27] [PASSED] NV12 Handle for inexistent plane
[13:02:27] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[13:02:27] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[13:02:27] [PASSED] YVU420 Normal sizes
[13:02:27] [PASSED] YVU420 Max sizes
[13:02:27] [PASSED] YVU420 Invalid pitch
[13:02:27] [PASSED] YVU420 Different pitches
[13:02:27] [PASSED] YVU420 Different buffer offsets/pitches
[13:02:27] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[13:02:27] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[13:02:27] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[13:02:27] [PASSED] YVU420 Valid modifier
[13:02:27] [PASSED] YVU420 Different modifiers per plane
[13:02:27] [PASSED] YVU420 Modifier for inexistent plane
[13:02:27] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[13:02:27] [PASSED] X0L2 Normal sizes
[13:02:27] [PASSED] X0L2 Max sizes
[13:02:27] [PASSED] X0L2 Invalid pitch
[13:02:27] [PASSED] X0L2 Pitch greater than minimum required
[13:02:27] [PASSED] X0L2 Handle for inexistent plane
[13:02:27] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[13:02:27] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[13:02:27] [PASSED] X0L2 Valid modifier
[13:02:27] [PASSED] X0L2 Modifier for inexistent plane
[13:02:27] =========== [PASSED] drm_test_framebuffer_create ===========
[13:02:27] [PASSED] drm_test_framebuffer_free
[13:02:27] [PASSED] drm_test_framebuffer_init
[13:02:27] [PASSED] drm_test_framebuffer_init_bad_format
[13:02:27] [PASSED] drm_test_framebuffer_init_dev_mismatch
[13:02:27] [PASSED] drm_test_framebuffer_lookup
[13:02:27] [PASSED] drm_test_framebuffer_lookup_inexistent
[13:02:27] [PASSED] drm_test_framebuffer_modifiers_not_supported
[13:02:27] ================= [PASSED] drm_framebuffer =================
[13:02:27] ================ drm_gem_shmem (8 subtests) ================
[13:02:27] [PASSED] drm_gem_shmem_test_obj_create
[13:02:27] [PASSED] drm_gem_shmem_test_obj_create_private
[13:02:27] [PASSED] drm_gem_shmem_test_pin_pages
[13:02:27] [PASSED] drm_gem_shmem_test_vmap
[13:02:27] [PASSED] drm_gem_shmem_test_get_pages_sgt
[13:02:27] [PASSED] drm_gem_shmem_test_get_sg_table
[13:02:27] [PASSED] drm_gem_shmem_test_madvise
[13:02:27] [PASSED] drm_gem_shmem_test_purge
[13:02:27] ================== [PASSED] drm_gem_shmem ==================
[13:02:27] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[13:02:27] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[13:02:27] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[13:02:27] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[13:02:27] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[13:02:27] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[13:02:27] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[13:02:27] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[13:02:27] [PASSED] Automatic
[13:02:27] [PASSED] Full
[13:02:27] [PASSED] Limited 16:235
[13:02:27] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[13:02:27] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[13:02:27] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[13:02:27] [PASSED] drm_test_check_disable_connector
[13:02:27] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[13:02:27] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[13:02:27] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[13:02:27] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[13:02:27] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[13:02:27] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[13:02:27] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[13:02:27] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[13:02:27] [PASSED] drm_test_check_output_bpc_dvi
[13:02:27] [PASSED] drm_test_check_output_bpc_format_vic_1
[13:02:27] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[13:02:27] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[13:02:27] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[13:02:27] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[13:02:27] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[13:02:27] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[13:02:27] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[13:02:27] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[13:02:27] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[13:02:27] [PASSED] drm_test_check_broadcast_rgb_value
[13:02:27] [PASSED] drm_test_check_bpc_8_value
[13:02:27] [PASSED] drm_test_check_bpc_10_value
[13:02:27] [PASSED] drm_test_check_bpc_12_value
[13:02:27] [PASSED] drm_test_check_format_value
[13:02:27] [PASSED] drm_test_check_tmds_char_value
[13:02:27] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[13:02:27] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[13:02:27] [PASSED] drm_test_check_mode_valid
[13:02:27] [PASSED] drm_test_check_mode_valid_reject
[13:02:27] [PASSED] drm_test_check_mode_valid_reject_rate
[13:02:27] [PASSED] drm_test_check_mode_valid_reject_max_clock
[13:02:27] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[13:02:27] ================= drm_managed (2 subtests) =================
[13:02:27] [PASSED] drm_test_managed_release_action
[13:02:27] [PASSED] drm_test_managed_run_action
[13:02:27] =================== [PASSED] drm_managed ===================
[13:02:27] =================== drm_mm (6 subtests) ====================
[13:02:27] [PASSED] drm_test_mm_init
[13:02:27] [PASSED] drm_test_mm_debug
[13:02:27] [PASSED] drm_test_mm_align32
[13:02:27] [PASSED] drm_test_mm_align64
[13:02:27] [PASSED] drm_test_mm_lowest
[13:02:27] [PASSED] drm_test_mm_highest
[13:02:27] ===================== [PASSED] drm_mm ======================
[13:02:27] ============= drm_modes_analog_tv (5 subtests) =============
[13:02:27] [PASSED] drm_test_modes_analog_tv_mono_576i
[13:02:27] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[13:02:27] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[13:02:27] [PASSED] drm_test_modes_analog_tv_pal_576i
[13:02:27] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[13:02:27] =============== [PASSED] drm_modes_analog_tv ===============
[13:02:27] ============== drm_plane_helper (2 subtests) ===============
[13:02:27] =============== drm_test_check_plane_state ================
[13:02:27] [PASSED] clipping_simple
[13:02:27] [PASSED] clipping_rotate_reflect
[13:02:27] [PASSED] positioning_simple
[13:02:27] [PASSED] upscaling
[13:02:27] [PASSED] downscaling
[13:02:27] [PASSED] rounding1
[13:02:27] [PASSED] rounding2
[13:02:27] [PASSED] rounding3
[13:02:27] [PASSED] rounding4
[13:02:27] =========== [PASSED] drm_test_check_plane_state ============
[13:02:27] =========== drm_test_check_invalid_plane_state ============
[13:02:27] [PASSED] positioning_invalid
[13:02:27] [PASSED] upscaling_invalid
[13:02:27] [PASSED] downscaling_invalid
[13:02:27] ======= [PASSED] drm_test_check_invalid_plane_state ========
[13:02:27] ================ [PASSED] drm_plane_helper =================
[13:02:27] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[13:02:27] ====== drm_test_connector_helper_tv_get_modes_check =======
[13:02:27] [PASSED] None
[13:02:27] [PASSED] PAL
[13:02:27] [PASSED] NTSC
[13:02:27] [PASSED] Both, NTSC Default
[13:02:27] [PASSED] Both, PAL Default
[13:02:27] [PASSED] Both, NTSC Default, with PAL on command-line
[13:02:27] [PASSED] Both, PAL Default, with NTSC on command-line
[13:02:27] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[13:02:27] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[13:02:27] ================== drm_rect (9 subtests) ===================
[13:02:27] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[13:02:27] [PASSED] drm_test_rect_clip_scaled_not_clipped
[13:02:27] [PASSED] drm_test_rect_clip_scaled_clipped
[13:02:27] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[13:02:27] ================= drm_test_rect_intersect =================
[13:02:27] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[13:02:27] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[13:02:27] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[13:02:27] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[13:02:27] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[13:02:27] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[13:02:27] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[13:02:27] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[13:02:27] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[13:02:27] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[13:02:27] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[13:02:27] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[13:02:27] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[13:02:27] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[13:02:27] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[13:02:27] ============= [PASSED] drm_test_rect_intersect =============
[13:02:27] ================ drm_test_rect_calc_hscale ================
[13:02:27] [PASSED] normal use
[13:02:27] [PASSED] out of max range
[13:02:27] [PASSED] out of min range
[13:02:27] [PASSED] zero dst
[13:02:27] [PASSED] negative src
[13:02:27] [PASSED] negative dst
[13:02:27] ============ [PASSED] drm_test_rect_calc_hscale ============
[13:02:27] ================ drm_test_rect_calc_vscale ================
[13:02:27] [PASSED] normal use
[13:02:27] [PASSED] out of max range
[13:02:27] [PASSED] out of min range
[13:02:27] [PASSED] zero dst
[13:02:27] [PASSED] negative src
[13:02:27] [PASSED] negative dst
[13:02:27] ============ [PASSED] drm_test_rect_calc_vscale ============
[13:02:27] ================== drm_test_rect_rotate ===================
[13:02:27] [PASSED] reflect-x
[13:02:27] [PASSED] reflect-y
[13:02:27] [PASSED] rotate-0
[13:02:27] [PASSED] rotate-90
[13:02:27] [PASSED] rotate-180
[13:02:27] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[13:02:27] ============== [PASSED] drm_test_rect_rotate ===============
[13:02:27] ================ drm_test_rect_rotate_inv =================
[13:02:27] [PASSED] reflect-x
[13:02:27] [PASSED] reflect-y
[13:02:27] [PASSED] rotate-0
[13:02:27] [PASSED] rotate-90
[13:02:27] [PASSED] rotate-180
[13:02:27] [PASSED] rotate-270
[13:02:27] ============ [PASSED] drm_test_rect_rotate_inv =============
[13:02:27] ==================== [PASSED] drm_rect =====================
[13:02:27] ============ drm_sysfb_modeset_test (1 subtest) ============
[13:02:27] ============ drm_test_sysfb_build_fourcc_list =============
[13:02:27] [PASSED] no native formats
[13:02:27] [PASSED] XRGB8888 as native format
[13:02:27] [PASSED] remove duplicates
[13:02:27] [PASSED] convert alpha formats
[13:02:27] [PASSED] random formats
[13:02:27] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[13:02:27] ============= [PASSED] drm_sysfb_modeset_test ==============
[13:02:27] ============================================================
[13:02:27] Testing complete. Ran 616 tests: passed: 616
[13:02:27] Elapsed time: 23.465s total, 1.655s configuring, 21.639s building, 0.141s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[13:02:27] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:02:28] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[13:02:36] Starting KUnit Kernel (1/1)...
[13:02:36] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:02:36] ================= ttm_device (5 subtests) ==================
[13:02:36] [PASSED] ttm_device_init_basic
[13:02:36] [PASSED] ttm_device_init_multiple
[13:02:36] [PASSED] ttm_device_fini_basic
[13:02:36] [PASSED] ttm_device_init_no_vma_man
[13:02:36] ================== ttm_device_init_pools ==================
[13:02:36] [PASSED] No DMA allocations, no DMA32 required
[13:02:36] [PASSED] DMA allocations, DMA32 required
[13:02:36] [PASSED] No DMA allocations, DMA32 required
[13:02:36] [PASSED] DMA allocations, no DMA32 required
[13:02:36] ============== [PASSED] ttm_device_init_pools ==============
[13:02:36] =================== [PASSED] ttm_device ====================
[13:02:36] ================== ttm_pool (8 subtests) ===================
[13:02:36] ================== ttm_pool_alloc_basic ===================
[13:02:36] [PASSED] One page
[13:02:36] [PASSED] More than one page
[13:02:36] [PASSED] Above the allocation limit
[13:02:36] [PASSED] One page, with coherent DMA mappings enabled
[13:02:36] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[13:02:36] ============== [PASSED] ttm_pool_alloc_basic ===============
[13:02:36] ============== ttm_pool_alloc_basic_dma_addr ==============
[13:02:36] [PASSED] One page
[13:02:36] [PASSED] More than one page
[13:02:36] [PASSED] Above the allocation limit
[13:02:36] [PASSED] One page, with coherent DMA mappings enabled
[13:02:36] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[13:02:36] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[13:02:36] [PASSED] ttm_pool_alloc_order_caching_match
[13:02:36] [PASSED] ttm_pool_alloc_caching_mismatch
[13:02:36] [PASSED] ttm_pool_alloc_order_mismatch
[13:02:36] [PASSED] ttm_pool_free_dma_alloc
[13:02:36] [PASSED] ttm_pool_free_no_dma_alloc
[13:02:36] [PASSED] ttm_pool_fini_basic
[13:02:36] ==================== [PASSED] ttm_pool =====================
[13:02:36] ================ ttm_resource (8 subtests) =================
[13:02:36] ================= ttm_resource_init_basic =================
[13:02:36] [PASSED] Init resource in TTM_PL_SYSTEM
[13:02:36] [PASSED] Init resource in TTM_PL_VRAM
[13:02:36] [PASSED] Init resource in a private placement
[13:02:36] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[13:02:36] ============= [PASSED] ttm_resource_init_basic =============
[13:02:36] [PASSED] ttm_resource_init_pinned
[13:02:36] [PASSED] ttm_resource_fini_basic
[13:02:36] [PASSED] ttm_resource_manager_init_basic
[13:02:36] [PASSED] ttm_resource_manager_usage_basic
[13:02:36] [PASSED] ttm_resource_manager_set_used_basic
[13:02:36] [PASSED] ttm_sys_man_alloc_basic
[13:02:36] [PASSED] ttm_sys_man_free_basic
[13:02:36] ================== [PASSED] ttm_resource ===================
[13:02:36] =================== ttm_tt (15 subtests) ===================
[13:02:36] ==================== ttm_tt_init_basic ====================
[13:02:36] [PASSED] Page-aligned size
[13:02:36] [PASSED] Extra pages requested
[13:02:36] ================ [PASSED] ttm_tt_init_basic ================
[13:02:36] [PASSED] ttm_tt_init_misaligned
[13:02:36] [PASSED] ttm_tt_fini_basic
[13:02:36] [PASSED] ttm_tt_fini_sg
[13:02:36] [PASSED] ttm_tt_fini_shmem
[13:02:36] [PASSED] ttm_tt_create_basic
[13:02:36] [PASSED] ttm_tt_create_invalid_bo_type
[13:02:36] [PASSED] ttm_tt_create_ttm_exists
[13:02:36] [PASSED] ttm_tt_create_failed
[13:02:36] [PASSED] ttm_tt_destroy_basic
[13:02:36] [PASSED] ttm_tt_populate_null_ttm
[13:02:36] [PASSED] ttm_tt_populate_populated_ttm
[13:02:36] [PASSED] ttm_tt_unpopulate_basic
[13:02:36] [PASSED] ttm_tt_unpopulate_empty_ttm
[13:02:36] [PASSED] ttm_tt_swapin_basic
[13:02:36] ===================== [PASSED] ttm_tt ======================
[13:02:36] =================== ttm_bo (14 subtests) ===================
[13:02:36] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[13:02:36] [PASSED] Cannot be interrupted and sleeps
[13:02:36] [PASSED] Cannot be interrupted, locks straight away
[13:02:36] [PASSED] Can be interrupted, sleeps
[13:02:36] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[13:02:36] [PASSED] ttm_bo_reserve_locked_no_sleep
[13:02:36] [PASSED] ttm_bo_reserve_no_wait_ticket
[13:02:36] [PASSED] ttm_bo_reserve_double_resv
[13:02:36] [PASSED] ttm_bo_reserve_interrupted
[13:02:36] [PASSED] ttm_bo_reserve_deadlock
[13:02:36] [PASSED] ttm_bo_unreserve_basic
[13:02:36] [PASSED] ttm_bo_unreserve_pinned
[13:02:36] [PASSED] ttm_bo_unreserve_bulk
[13:02:36] [PASSED] ttm_bo_put_basic
[13:02:36] [PASSED] ttm_bo_put_shared_resv
[13:02:36] [PASSED] ttm_bo_pin_basic
[13:02:36] [PASSED] ttm_bo_pin_unpin_resource
[13:02:36] [PASSED] ttm_bo_multiple_pin_one_unpin
[13:02:36] ===================== [PASSED] ttm_bo ======================
[13:02:36] ============== ttm_bo_validate (22 subtests) ===============
[13:02:36] ============== ttm_bo_init_reserved_sys_man ===============
[13:02:36] [PASSED] Buffer object for userspace
[13:02:36] [PASSED] Kernel buffer object
[13:02:36] [PASSED] Shared buffer object
[13:02:36] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[13:02:36] ============== ttm_bo_init_reserved_mock_man ==============
[13:02:36] [PASSED] Buffer object for userspace
[13:02:36] [PASSED] Kernel buffer object
[13:02:36] [PASSED] Shared buffer object
[13:02:36] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[13:02:36] [PASSED] ttm_bo_init_reserved_resv
[13:02:36] ================== ttm_bo_validate_basic ==================
[13:02:36] [PASSED] Buffer object for userspace
[13:02:36] [PASSED] Kernel buffer object
[13:02:36] [PASSED] Shared buffer object
[13:02:36] ============== [PASSED] ttm_bo_validate_basic ==============
[13:02:36] [PASSED] ttm_bo_validate_invalid_placement
[13:02:36] ============= ttm_bo_validate_same_placement ==============
[13:02:36] [PASSED] System manager
[13:02:36] [PASSED] VRAM manager
[13:02:36] ========= [PASSED] ttm_bo_validate_same_placement ==========
[13:02:36] [PASSED] ttm_bo_validate_failed_alloc
[13:02:36] [PASSED] ttm_bo_validate_pinned
[13:02:36] [PASSED] ttm_bo_validate_busy_placement
[13:02:36] ================ ttm_bo_validate_multihop =================
[13:02:36] [PASSED] Buffer object for userspace
[13:02:36] [PASSED] Kernel buffer object
[13:02:36] [PASSED] Shared buffer object
[13:02:36] ============ [PASSED] ttm_bo_validate_multihop =============
[13:02:36] ========== ttm_bo_validate_no_placement_signaled ==========
[13:02:36] [PASSED] Buffer object in system domain, no page vector
[13:02:36] [PASSED] Buffer object in system domain with an existing page vector
[13:02:36] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[13:02:36] ======== ttm_bo_validate_no_placement_not_signaled ========
[13:02:36] [PASSED] Buffer object for userspace
[13:02:36] [PASSED] Kernel buffer object
[13:02:36] [PASSED] Shared buffer object
[13:02:36] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[13:02:36] [PASSED] ttm_bo_validate_move_fence_signaled
[13:02:36] ========= ttm_bo_validate_move_fence_not_signaled =========
[13:02:36] [PASSED] Waits for GPU
[13:02:36] [PASSED] Tries to lock straight away
[13:02:37] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[13:02:37] [PASSED] ttm_bo_validate_swapout
[13:02:37] [PASSED] ttm_bo_validate_happy_evict
[13:02:37] [PASSED] ttm_bo_validate_all_pinned_evict
[13:02:37] [PASSED] ttm_bo_validate_allowed_only_evict
[13:02:37] [PASSED] ttm_bo_validate_deleted_evict
[13:02:37] [PASSED] ttm_bo_validate_busy_domain_evict
[13:02:37] [PASSED] ttm_bo_validate_evict_gutting
[13:02:37] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[13:02:37] ================= [PASSED] ttm_bo_validate =================
[13:02:37] ============================================================
[13:02:37] Testing complete. Ran 102 tests: passed: 102
[13:02:37] Elapsed time: 10.131s total, 1.736s configuring, 7.778s building, 0.530s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for Revert patch to reject HBR3 for all eDP panels (rev3)
2025-06-27 8:40 [PATCH 0/1] Revert patch to reject HBR3 for all eDP panels Ankit Nautiyal
2025-06-27 8:40 ` [PATCH 1/1] drm/i915/dp: Refine TPS4-based HBR3 rejection and add quirk to limit eDP to HBR2 Ankit Nautiyal
2025-06-30 13:02 ` ✓ CI.KUnit: success for Revert patch to reject HBR3 for all eDP panels (rev3) Patchwork
@ 2025-06-30 13:56 ` Patchwork
2025-07-01 14:32 ` ✓ Xe.CI.Full: " Patchwork
2025-07-06 5:49 ` ✓ CI.KUnit: success for Revert patch to reject HBR3 for all eDP panels (rev4) Patchwork
4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-06-30 13:56 UTC (permalink / raw)
To: Nautiyal, Ankit K; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 869 bytes --]
== Series Details ==
Series: Revert patch to reject HBR3 for all eDP panels (rev3)
URL : https://patchwork.freedesktop.org/series/150568/
State : success
== Summary ==
CI Bug Log - changes from xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd_BAT -> xe-pw-150568v3_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 8)
------------------------------
Missing (1): bat-adlp-vm
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd -> xe-pw-150568v3
IGT_8431: 8431
xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd: 078be02b4585b9a9703401d89a3ac93e2d15a6bd
xe-pw-150568v3: 150568v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/index.html
[-- Attachment #2: Type: text/html, Size: 1417 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.Full: success for Revert patch to reject HBR3 for all eDP panels (rev3)
2025-06-27 8:40 [PATCH 0/1] Revert patch to reject HBR3 for all eDP panels Ankit Nautiyal
` (2 preceding siblings ...)
2025-06-30 13:56 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-07-01 14:32 ` Patchwork
2025-07-06 5:49 ` ✓ CI.KUnit: success for Revert patch to reject HBR3 for all eDP panels (rev4) Patchwork
4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-07-01 14:32 UTC (permalink / raw)
To: Nautiyal, Ankit K; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 49003 bytes --]
== Series Details ==
Series: Revert patch to reject HBR3 for all eDP panels (rev3)
URL : https://patchwork.freedesktop.org/series/150568/
State : success
== Summary ==
CI Bug Log - changes from xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd_FULL -> xe-pw-150568v3_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd_FULL and xe-pw-150568v3_FULL:
### New IGT tests (1) ###
* igt@kms_color@legacy-gamma-reset@pipe-d-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
Known issues
------------
Here are the changes found in xe-pw-150568v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][1] ([Intel XE#316])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-432/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#1124])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-7/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-adlp: [PASS][3] -> [DMESG-FAIL][4] ([Intel XE#4543]) +2 other tests dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-432/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#610])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#2191])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#367])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#787]) +195 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-432/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-a-dp-2.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#455] / [Intel XE#787]) +28 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-463/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [PASS][11] -> [SKIP][12] ([Intel XE#2351] / [Intel XE#4208])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][13] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][14] ([Intel XE#3124])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][15] ([Intel XE#1727] / [Intel XE#3113])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#4417]) +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-463/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#306]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#373]) +2 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][19] ([Intel XE#1178]) +1 other test fail
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-463/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
* igt@kms_content_protection@atomic@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][20] ([Intel XE#1178])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-3/igt@kms_content_protection@atomic@pipe-a-dp-2.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: [PASS][21] -> [SKIP][22] ([Intel XE#2291])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@forked-move:
- shard-dg2-set2: [PASS][23] -> [SKIP][24] ([Intel XE#4208] / [i915#2575]) +4 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@kms_cursor_legacy@forked-move.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@kms_cursor_legacy@forked-move.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [PASS][25] -> [SKIP][26] ([Intel XE#1340])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#4494])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-432/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#776])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-432/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: [PASS][29] -> [SKIP][30] ([Intel XE#2373])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-3/igt@kms_feature_discovery@display-2x.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-6/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-bmg: [PASS][31] -> [SKIP][32] ([Intel XE#2316]) +5 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-2/igt@kms_flip@2x-modeset-vs-vblank-race.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-6/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-adlp: [PASS][33] -> [DMESG-WARN][34] ([Intel XE#4543]) +1 other test dmesg-warn
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-9/igt@kms_flip@basic-flip-vs-wf_vblank.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-adlp-4/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#4208] / [i915#2575]) +25 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [PASS][36] -> [FAIL][37] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-adlp: [PASS][38] -> [DMESG-WARN][39] ([Intel XE#2953] / [Intel XE#4173]) +5 other tests dmesg-warn
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-adlp-9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#4141]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#651]) +9 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#2351] / [Intel XE#4208]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2311]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2313])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#653]) +5 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_hdr@static-toggle-dpms:
- shard-bmg: [PASS][46] -> [SKIP][47] ([Intel XE#1503])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-3/igt@kms_hdr@static-toggle-dpms.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-6/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#2925])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-432/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#2927])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-463/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [PASS][50] -> [SKIP][51] ([Intel XE#4596])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#870])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-432/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#1489]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-432/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#3414])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#455]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-432/igt@kms_vrr@flip-dpms.html
* igt@xe_eudebug_online@single-step-one:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#4837]) +5 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-463/igt@xe_eudebug_online@single-step-one.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
- shard-dg2-set2: [PASS][58] -> [SKIP][59] ([Intel XE#1392]) +8 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-464/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
* igt@xe_exec_fault_mode@once-bindexecqueue-userptr:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#288]) +4 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-432/igt@xe_exec_fault_mode@once-bindexecqueue-userptr.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-multi-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#4915]) +68 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-463/igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-multi-fault.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-bo-map-nomemset:
- shard-lnl: [PASS][62] -> [FAIL][63] ([Intel XE#4937])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-bo-map-nomemset.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-bo-map-nomemset.html
* igt@xe_exec_threads@threads-shared-vm-userptr-invalidate-race:
- shard-dg2-set2: [PASS][64] -> [SKIP][65] ([Intel XE#4208]) +10 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@xe_exec_threads@threads-shared-vm-userptr-invalidate-race.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@xe_exec_threads@threads-shared-vm-userptr-invalidate-race.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#560])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-432/igt@xe_media_fill@media-fill.html
* igt@xe_module_load@load:
- shard-dg2-set2: ([PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91]) -> ([PASS][92], [PASS][93], [PASS][94], [PASS][95], [SKIP][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117]) ([Intel XE#378])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-432/igt@xe_module_load@load.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@xe_module_load@load.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-464/igt@xe_module_load@load.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-464/igt@xe_module_load@load.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@xe_module_load@load.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@xe_module_load@load.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-464/igt@xe_module_load@load.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-432/igt@xe_module_load@load.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-433/igt@xe_module_load@load.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-433/igt@xe_module_load@load.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-433/igt@xe_module_load@load.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-433/igt@xe_module_load@load.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-432/igt@xe_module_load@load.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-432/igt@xe_module_load@load.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-464/igt@xe_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-433/igt@xe_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-466/igt@xe_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-466/igt@xe_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-466/igt@xe_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-435/igt@xe_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-435/igt@xe_module_load@load.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-435/igt@xe_module_load@load.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-435/igt@xe_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-435/igt@xe_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-432/igt@xe_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-463/igt@xe_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-463/igt@xe_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-433/igt@xe_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@xe_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@xe_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-466/igt@xe_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-463/igt@xe_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-466/igt@xe_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-433/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-466/igt@xe_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-433/igt@xe_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-466/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-433/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-432/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-432/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-464/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-464/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-432/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-432/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-463/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-466/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-433/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-463/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@xe_module_load@load.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2541] / [Intel XE#3573])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_pm@s2idle-exec-after:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#4208]) +109 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pxp@display-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#4733])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-4/igt@xe_pxp@display-pxp-fb.html
* igt@xe_sriov_flr@flr-twice:
- shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#4273])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@xe_sriov_flr@flr-twice.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: [FAIL][122] ([Intel XE#827]) -> [PASS][123]
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-adlp: [DMESG-FAIL][124] ([Intel XE#4543]) -> [PASS][125]
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
- shard-adlp: [DMESG-WARN][126] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][127] +6 other tests pass
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-6/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-adlp-3/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][128] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][129]
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
- shard-dg2-set2: [INCOMPLETE][130] ([Intel XE#3124]) -> [PASS][131]
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][132] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][133]
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-bmg: [SKIP][134] ([Intel XE#2291]) -> [PASS][135] +1 other test pass
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [SKIP][136] ([Intel XE#4302]) -> [PASS][137]
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-3/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [SKIP][138] ([Intel XE#4294]) -> [PASS][139]
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-bmg: [SKIP][140] ([Intel XE#2316]) -> [PASS][141] +3 other tests pass
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-5/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-4/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@blocking-wf_vblank@a-dp2:
- shard-bmg: [FAIL][142] ([Intel XE#2882] / [Intel XE#5338]) -> [PASS][143] +1 other test pass
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-1/igt@kms_flip@blocking-wf_vblank@a-dp2.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-2/igt@kms_flip@blocking-wf_vblank@a-dp2.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1:
- shard-adlp: [DMESG-WARN][144] ([Intel XE#4543]) -> [PASS][145] +4 other tests pass
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-adlp-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [INCOMPLETE][146] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][147] +3 other tests pass
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-dg2-set2: [INCOMPLETE][148] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][149]
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [SKIP][150] ([Intel XE#455]) -> [PASS][151]
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-432/igt@kms_hdr@invalid-hdr.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-bmg: [SKIP][152] ([Intel XE#4596]) -> [PASS][153]
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-none.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-dg2-set2: [FAIL][154] ([Intel XE#4741]) -> [PASS][155]
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-433/igt@kms_pm_rpm@basic-pci-d3-state.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-433/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [SKIP][156] ([Intel XE#1435]) -> [PASS][157] +1 other test pass
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-5/igt@kms_setmode@clone-exclusive-crtc.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-2/igt@kms_setmode@clone-exclusive-crtc.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][158] ([Intel XE#1392]) -> [PASS][159] +6 other tests pass
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-463/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [FAIL][160] ([Intel XE#4819]) -> [PASS][161] +1 other test pass
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-432/igt@xe_pmu@gt-frequency.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-463/igt@xe_pmu@gt-frequency.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-dg2-set2: [SKIP][162] ([Intel XE#316]) -> [SKIP][163] ([Intel XE#2351] / [Intel XE#4208])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-dg2-set2: [SKIP][164] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][165] ([Intel XE#4208])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][166] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [INCOMPLETE][167] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_content_protection@atomic:
- shard-bmg: [SKIP][168] ([Intel XE#2341]) -> [FAIL][169] ([Intel XE#1178])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-6/igt@kms_content_protection@atomic.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-3/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@legacy:
- shard-bmg: [FAIL][170] ([Intel XE#1178]) -> [SKIP][171] ([Intel XE#2341])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-2/igt@kms_content_protection@legacy.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-6/igt@kms_content_protection@legacy.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg2-set2: [SKIP][172] ([Intel XE#4354]) -> [SKIP][173] ([Intel XE#4208])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@kms_dp_link_training@non-uhbr-mst.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][174] ([Intel XE#2312]) -> [SKIP][175] ([Intel XE#2311]) +12 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][176] ([Intel XE#4141]) -> [SKIP][177] ([Intel XE#2312]) +7 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][178] ([Intel XE#2312]) -> [SKIP][179] ([Intel XE#4141]) +4 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][180] ([Intel XE#2311]) -> [SKIP][181] ([Intel XE#2312]) +11 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-5/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: [SKIP][182] ([Intel XE#2313]) -> [SKIP][183] ([Intel XE#2312]) +9 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][184] ([Intel XE#653]) -> [SKIP][185] ([Intel XE#4208]) +2 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][186] ([Intel XE#2312]) -> [SKIP][187] ([Intel XE#2313]) +11 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_hdr@bpc-switch:
- shard-dg2-set2: [INCOMPLETE][188] ([Intel XE#4842]) -> [SKIP][189] ([Intel XE#4208] / [i915#2575])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@kms_hdr@bpc-switch.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@kms_hdr@bpc-switch.html
* igt@kms_psr@fbc-pr-suspend:
- shard-dg2-set2: [SKIP][190] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][191] ([Intel XE#2351] / [Intel XE#4208])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@kms_psr@fbc-pr-suspend.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@kms_psr@fbc-pr-suspend.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][192] ([Intel XE#2509]) -> [SKIP][193] ([Intel XE#2426])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-shared-remap:
- shard-dg2-set2: [SKIP][194] ([Intel XE#4915]) -> [SKIP][195] ([Intel XE#4208]) +15 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-shared-remap.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-shared-remap.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset:
- shard-lnl: [FAIL][196] ([Intel XE#4937] / [Intel XE#5018]) -> [FAIL][197] ([Intel XE#5018])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-dg2-set2: [SKIP][198] ([Intel XE#944]) -> [SKIP][199] ([Intel XE#4208])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@xe_query@multigpu-query-invalid-cs-cycles.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/shard-dg2-435/igt@xe_query@multigpu-query-invalid-cs-cycles.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[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#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[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#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
[Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[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#4741]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4741
[Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4937
[Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5338]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5338
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* Linux: xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd -> xe-pw-150568v3
IGT_8431: 8431
xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd: 078be02b4585b9a9703401d89a3ac93e2d15a6bd
xe-pw-150568v3: 150568v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150568v3/index.html
[-- Attachment #2: Type: text/html, Size: 57088 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* [RESEND 1/1] drm/i915/dp: Refine TPS4-based HBR3 rejection and add quirk to limit eDP to HBR2
2025-06-27 8:40 ` [PATCH 1/1] drm/i915/dp: Refine TPS4-based HBR3 rejection and add quirk to limit eDP to HBR2 Ankit Nautiyal
2025-06-27 9:05 ` Nautiyal, Ankit K
@ 2025-07-06 5:31 ` Ankit Nautiyal
2025-07-08 14:14 ` Ville Syrjälä
1 sibling, 1 reply; 11+ messages in thread
From: Ankit Nautiyal @ 2025-07-06 5:31 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, jani.nikula, Ankit Nautiyal, stable
Refine the logic introduced in commit 584cf613c24a ("drm/i915/dp: Reject
HBR3 when sink doesn't support TPS4") to allow HBR3 on eDP panels that
report DPCD revision 1.4, even if TPS4 is not supported. This aligns with
the DisplayPort specification, which does not mandate TPS4 support for eDP
with DPCD rev 1.4.
This change avoids regressions on panels that require HBR3 to operate at
their native resolution but do not advertise TPS4 support.
Additionally, some ICL/TGL platforms with combo PHY ports suffer from
signal integrity issues at HBR3. While certain systems include a
Parade PS8461 mux to mitigate this, its presence cannot be reliably
detected. Furthermore, broken or missing VBT entries make it unsafe to
rely on VBT for enforcing link rate limits.
To address the HBR3-related issues on such platforms and eDP panels,
introduce a device specific quirk to cap the eDP link rate to HBR2
(540000 kHz). This will override any higher advertised rates from
the sink or DPCD for specific devices.
Currently, the quirk is added for Dell XPS 13 7390 2-in-1 which is
reported in gitlab issue #5969 [1].
[1] https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5969
[2] https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14517
Fixes: 584cf613c24a ("drm/i915/dp: Reject HBR3 when sink doesn't support TPS4")
Cc: Jani Nikula <jani.nikula@linux.intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: <stable@vger.kernel.org> # v6.15+
Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5969
Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14517
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
drivers/gpu/drm/i915/display/intel_dp.c | 31 +++++++++++++++++++--
drivers/gpu/drm/i915/display/intel_quirks.c | 9 ++++++
drivers/gpu/drm/i915/display/intel_quirks.h | 1 +
3 files changed, 39 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index f48912f308df..362e376fca27 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -171,6 +171,15 @@ int intel_dp_link_symbol_clock(int rate)
return DIV_ROUND_CLOSEST(rate * 10, intel_dp_link_symbol_size(rate));
}
+static bool intel_dp_reject_hbr3_due_to_tps4(struct intel_dp *intel_dp)
+{
+ /* TPS4 is not mandatory for eDP with DPCD rev 1.4 */
+ if (intel_dp_is_edp(intel_dp) && intel_dp->dpcd[DP_DPCD_REV] == 0x14)
+ return false;
+
+ return !drm_dp_tps4_supported(intel_dp->dpcd);
+}
+
static int max_dprx_rate(struct intel_dp *intel_dp)
{
struct intel_display *display = to_intel_display(intel_dp);
@@ -187,13 +196,22 @@ static int max_dprx_rate(struct intel_dp *intel_dp)
* HBR3 without TPS4, and are unable to produce a stable
* output. Reject HBR3 when TPS4 is not available.
*/
- if (max_rate >= 810000 && !drm_dp_tps4_supported(intel_dp->dpcd)) {
+ if (max_rate >= 810000 && intel_dp_reject_hbr3_due_to_tps4(intel_dp)) {
drm_dbg_kms(display->drm,
"[ENCODER:%d:%s] Rejecting HBR3 due to missing TPS4 support\n",
encoder->base.base.id, encoder->base.name);
max_rate = 540000;
}
+ /*
+ * Some platforms + eDP panels may not reliably support HBR3
+ * due to signal integrity limitations, despite advertising it.
+ * Cap the link rate to HBR2 to avoid unstable configurations for the
+ * known machines.
+ */
+ if (intel_dp_is_edp(intel_dp) && intel_has_quirk(display, QUIRK_EDP_LIMIT_RATE_HBR2))
+ max_rate = min(max_rate, 540000);
+
return max_rate;
}
@@ -4304,13 +4322,22 @@ intel_edp_set_sink_rates(struct intel_dp *intel_dp)
* HBR3 without TPS4, and are unable to produce a stable
* output. Reject HBR3 when TPS4 is not available.
*/
- if (rate >= 810000 && !drm_dp_tps4_supported(intel_dp->dpcd)) {
+ if (rate >= 810000 && intel_dp_reject_hbr3_due_to_tps4(intel_dp)) {
drm_dbg_kms(display->drm,
"[ENCODER:%d:%s] Rejecting HBR3 due to missing TPS4 support\n",
encoder->base.base.id, encoder->base.name);
break;
}
+ /*
+ * Some platforms cannot reliably drive HBR3 rates due to PHY limitations,
+ * even if the sink advertises support. Reject any sink rates above HBR2 on
+ * the known machines for stable output.
+ */
+ if (rate >= 810000 &&
+ intel_has_quirk(display, QUIRK_EDP_LIMIT_RATE_HBR2))
+ break;
+
intel_dp->sink_rates[i] = rate;
}
intel_dp->num_sink_rates = i;
diff --git a/drivers/gpu/drm/i915/display/intel_quirks.c b/drivers/gpu/drm/i915/display/intel_quirks.c
index a32fae510ed2..d2e16b79d6be 100644
--- a/drivers/gpu/drm/i915/display/intel_quirks.c
+++ b/drivers/gpu/drm/i915/display/intel_quirks.c
@@ -80,6 +80,12 @@ static void quirk_fw_sync_len(struct intel_dp *intel_dp)
drm_info(display->drm, "Applying Fast Wake sync pulse count quirk\n");
}
+static void quirk_edp_limit_rate_hbr2(struct intel_display *display)
+{
+ intel_set_quirk(display, QUIRK_EDP_LIMIT_RATE_HBR2);
+ drm_info(display->drm, "Applying eDP Limit rate to HBR2 quirk\n");
+}
+
struct intel_quirk {
int device;
int subsystem_vendor;
@@ -231,6 +237,9 @@ static struct intel_quirk intel_quirks[] = {
{ 0x3184, 0x1019, 0xa94d, quirk_increase_ddi_disabled_time },
/* HP Notebook - 14-r206nv */
{ 0x0f31, 0x103c, 0x220f, quirk_invert_brightness },
+
+ /* Dell XPS 13 7390 2-in-1 */
+ { 0x8a12, 0x1028, 0x08b0, quirk_edp_limit_rate_hbr2 },
};
static const struct intel_dpcd_quirk intel_dpcd_quirks[] = {
diff --git a/drivers/gpu/drm/i915/display/intel_quirks.h b/drivers/gpu/drm/i915/display/intel_quirks.h
index cafdebda7535..06da0e286c67 100644
--- a/drivers/gpu/drm/i915/display/intel_quirks.h
+++ b/drivers/gpu/drm/i915/display/intel_quirks.h
@@ -20,6 +20,7 @@ enum intel_quirk_id {
QUIRK_LVDS_SSC_DISABLE,
QUIRK_NO_PPS_BACKLIGHT_POWER_HOOK,
QUIRK_FW_SYNC_LEN,
+ QUIRK_EDP_LIMIT_RATE_HBR2,
};
void intel_init_quirks(struct intel_display *display);
--
2.45.2
^ permalink raw reply related [flat|nested] 11+ messages in thread
* ✓ CI.KUnit: success for Revert patch to reject HBR3 for all eDP panels (rev4)
2025-06-27 8:40 [PATCH 0/1] Revert patch to reject HBR3 for all eDP panels Ankit Nautiyal
` (3 preceding siblings ...)
2025-07-01 14:32 ` ✓ Xe.CI.Full: " Patchwork
@ 2025-07-06 5:49 ` Patchwork
4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-07-06 5:49 UTC (permalink / raw)
To: Ankit Nautiyal; +Cc: intel-xe
== Series Details ==
Series: Revert patch to reject HBR3 for all eDP panels (rev4)
URL : https://patchwork.freedesktop.org/series/150568/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[05:48:29] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[05:48:33] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[05:49:00] Starting KUnit Kernel (1/1)...
[05:49:00] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[05:49:00] ================== guc_buf (11 subtests) ===================
[05:49:00] [PASSED] test_smallest
[05:49:00] [PASSED] test_largest
[05:49:00] [PASSED] test_granular
[05:49:00] [PASSED] test_unique
[05:49:00] [PASSED] test_overlap
[05:49:00] [PASSED] test_reusable
[05:49:00] [PASSED] test_too_big
[05:49:00] [PASSED] test_flush
[05:49:00] [PASSED] test_lookup
[05:49:00] [PASSED] test_data
[05:49:00] [PASSED] test_class
[05:49:00] ===================== [PASSED] guc_buf =====================
[05:49:00] =================== guc_dbm (7 subtests) ===================
[05:49:00] [PASSED] test_empty
[05:49:00] [PASSED] test_default
[05:49:00] ======================== test_size ========================
[05:49:00] [PASSED] 4
[05:49:00] [PASSED] 8
[05:49:00] [PASSED] 32
[05:49:00] [PASSED] 256
[05:49:00] ==================== [PASSED] test_size ====================
[05:49:00] ======================= test_reuse ========================
[05:49:00] [PASSED] 4
[05:49:00] [PASSED] 8
[05:49:00] [PASSED] 32
[05:49:00] [PASSED] 256
[05:49:00] =================== [PASSED] test_reuse ====================
[05:49:00] =================== test_range_overlap ====================
[05:49:00] [PASSED] 4
[05:49:00] [PASSED] 8
[05:49:00] [PASSED] 32
[05:49:00] [PASSED] 256
[05:49:00] =============== [PASSED] test_range_overlap ================
[05:49:00] =================== test_range_compact ====================
[05:49:00] [PASSED] 4
[05:49:00] [PASSED] 8
[05:49:00] [PASSED] 32
[05:49:00] [PASSED] 256
[05:49:00] =============== [PASSED] test_range_compact ================
[05:49:00] ==================== test_range_spare =====================
[05:49:00] [PASSED] 4
[05:49:00] [PASSED] 8
[05:49:00] [PASSED] 32
[05:49:00] [PASSED] 256
[05:49:00] ================ [PASSED] test_range_spare =================
[05:49:00] ===================== [PASSED] guc_dbm =====================
[05:49:00] =================== guc_idm (6 subtests) ===================
[05:49:00] [PASSED] bad_init
[05:49:00] [PASSED] no_init
[05:49:00] [PASSED] init_fini
[05:49:00] [PASSED] check_used
[05:49:00] [PASSED] check_quota
[05:49:00] [PASSED] check_all
[05:49:00] ===================== [PASSED] guc_idm =====================
[05:49:00] ================== no_relay (3 subtests) ===================
[05:49:00] [PASSED] xe_drops_guc2pf_if_not_ready
[05:49:00] [PASSED] xe_drops_guc2vf_if_not_ready
[05:49:00] [PASSED] xe_rejects_send_if_not_ready
[05:49:00] ==================== [PASSED] no_relay =====================
[05:49:00] ================== pf_relay (14 subtests) ==================
[05:49:00] [PASSED] pf_rejects_guc2pf_too_short
[05:49:00] [PASSED] pf_rejects_guc2pf_too_long
[05:49:00] [PASSED] pf_rejects_guc2pf_no_payload
[05:49:00] [PASSED] pf_fails_no_payload
[05:49:00] [PASSED] pf_fails_bad_origin
[05:49:00] [PASSED] pf_fails_bad_type
[05:49:00] [PASSED] pf_txn_reports_error
[05:49:00] [PASSED] pf_txn_sends_pf2guc
[05:49:00] [PASSED] pf_sends_pf2guc
[05:49:00] [SKIPPED] pf_loopback_nop
[05:49:00] [SKIPPED] pf_loopback_echo
[05:49:00] [SKIPPED] pf_loopback_fail
[05:49:00] [SKIPPED] pf_loopback_busy
[05:49:00] [SKIPPED] pf_loopback_retry
[05:49:00] ==================== [PASSED] pf_relay =====================
[05:49:00] ================== vf_relay (3 subtests) ===================
[05:49:00] [PASSED] vf_rejects_guc2vf_too_short
[05:49:00] [PASSED] vf_rejects_guc2vf_too_long
[05:49:00] [PASSED] vf_rejects_guc2vf_no_payload
[05:49:00] ==================== [PASSED] vf_relay =====================
[05:49:00] ================= pf_service (11 subtests) =================
[05:49:00] [PASSED] pf_negotiate_any
[05:49:00] [PASSED] pf_negotiate_base_match
[05:49:00] [PASSED] pf_negotiate_base_newer
[05:49:00] [PASSED] pf_negotiate_base_next
[05:49:00] [SKIPPED] pf_negotiate_base_older
[05:49:00] [PASSED] pf_negotiate_base_prev
[05:49:00] [PASSED] pf_negotiate_latest_match
[05:49:00] [PASSED] pf_negotiate_latest_newer
[05:49:00] [PASSED] pf_negotiate_latest_next
[05:49:00] [SKIPPED] pf_negotiate_latest_older
[05:49:00] [SKIPPED] pf_negotiate_latest_prev
[05:49:00] =================== [PASSED] pf_service ====================
[05:49:00] ===================== lmtt (1 subtest) =====================
[05:49:00] ======================== test_ops =========================
[05:49:00] [PASSED] 2-level
[05:49:00] [PASSED] multi-level
[05:49:00] ==================== [PASSED] test_ops =====================
[05:49:00] ====================== [PASSED] lmtt =======================
[05:49:00] =================== xe_mocs (2 subtests) ===================
[05:49:00] ================ xe_live_mocs_kernel_kunit ================
[05:49:00] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[05:49:00] ================ xe_live_mocs_reset_kunit =================
[05:49:00] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[05:49:00] ==================== [SKIPPED] xe_mocs =====================
[05:49:00] ================= xe_migrate (2 subtests) ==================
[05:49:00] ================= xe_migrate_sanity_kunit =================
[05:49:00] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[05:49:00] ================== xe_validate_ccs_kunit ==================
[05:49:00] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[05:49:00] =================== [SKIPPED] xe_migrate ===================
[05:49:00] ================== xe_dma_buf (1 subtest) ==================
[05:49:00] ==================== xe_dma_buf_kunit =====================
[05:49:00] ================ [SKIPPED] xe_dma_buf_kunit ================
[05:49:00] =================== [SKIPPED] xe_dma_buf ===================
[05:49:00] ================= xe_bo_shrink (1 subtest) =================
[05:49:00] =================== xe_bo_shrink_kunit ====================
[05:49:00] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[05:49:00] ================== [SKIPPED] xe_bo_shrink ==================
[05:49:00] ==================== xe_bo (2 subtests) ====================
[05:49:00] ================== xe_ccs_migrate_kunit ===================
[05:49:00] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[05:49:00] ==================== xe_bo_evict_kunit ====================
[05:49:00] =============== [SKIPPED] xe_bo_evict_kunit ================
[05:49:00] ===================== [SKIPPED] xe_bo ======================
[05:49:00] ==================== args (11 subtests) ====================
[05:49:00] [PASSED] count_args_test
[05:49:00] [PASSED] call_args_example
[05:49:00] [PASSED] call_args_test
[05:49:00] [PASSED] drop_first_arg_example
[05:49:00] [PASSED] drop_first_arg_test
[05:49:00] [PASSED] first_arg_example
[05:49:00] [PASSED] first_arg_test
[05:49:00] [PASSED] last_arg_example
[05:49:00] [PASSED] last_arg_test
[05:49:00] [PASSED] pick_arg_example
[05:49:00] [PASSED] sep_comma_example
[05:49:00] ====================== [PASSED] args =======================
[05:49:00] =================== xe_pci (3 subtests) ====================
[05:49:00] ==================== check_graphics_ip ====================
[05:49:00] [PASSED] 12.70 Xe_LPG
[05:49:00] [PASSED] 12.71 Xe_LPG
[05:49:00] [PASSED] 12.74 Xe_LPG+
[05:49:00] [PASSED] 20.01 Xe2_HPG
[05:49:00] [PASSED] 20.02 Xe2_HPG
[05:49:00] [PASSED] 20.04 Xe2_LPG
[05:49:00] [PASSED] 30.00 Xe3_LPG
[05:49:00] [PASSED] 30.01 Xe3_LPG
[05:49:00] [PASSED] 30.03 Xe3_LPG
[05:49:00] ================ [PASSED] check_graphics_ip ================
[05:49:00] ===================== check_media_ip ======================
[05:49:00] [PASSED] 13.00 Xe_LPM+
[05:49:00] [PASSED] 13.01 Xe2_HPM
[05:49:00] [PASSED] 20.00 Xe2_LPM
[05:49:00] [PASSED] 30.00 Xe3_LPM
[05:49:00] [PASSED] 30.02 Xe3_LPM
[05:49:00] ================= [PASSED] check_media_ip ==================
[05:49:00] ================= check_platform_gt_count =================
[05:49:00] [PASSED] 0x9A60 (TIGERLAKE)
[05:49:00] [PASSED] 0x9A68 (TIGERLAKE)
[05:49:00] [PASSED] 0x9A70 (TIGERLAKE)
[05:49:00] [PASSED] 0x9A40 (TIGERLAKE)
[05:49:00] [PASSED] 0x9A49 (TIGERLAKE)
[05:49:00] [PASSED] 0x9A59 (TIGERLAKE)
[05:49:00] [PASSED] 0x9A78 (TIGERLAKE)
[05:49:00] [PASSED] 0x9AC0 (TIGERLAKE)
[05:49:00] [PASSED] 0x9AC9 (TIGERLAKE)
[05:49:00] [PASSED] 0x9AD9 (TIGERLAKE)
[05:49:00] [PASSED] 0x9AF8 (TIGERLAKE)
[05:49:00] [PASSED] 0x4C80 (ROCKETLAKE)
[05:49:00] [PASSED] 0x4C8A (ROCKETLAKE)
[05:49:00] [PASSED] 0x4C8B (ROCKETLAKE)
[05:49:00] [PASSED] 0x4C8C (ROCKETLAKE)
[05:49:00] [PASSED] 0x4C90 (ROCKETLAKE)
[05:49:00] [PASSED] 0x4C9A (ROCKETLAKE)
[05:49:00] [PASSED] 0x4680 (ALDERLAKE_S)
[05:49:00] [PASSED] 0x4682 (ALDERLAKE_S)
[05:49:00] [PASSED] 0x4688 (ALDERLAKE_S)
[05:49:00] [PASSED] 0x468A (ALDERLAKE_S)
[05:49:00] [PASSED] 0x468B (ALDERLAKE_S)
[05:49:00] [PASSED] 0x4690 (ALDERLAKE_S)
[05:49:00] [PASSED] 0x4692 (ALDERLAKE_S)
[05:49:00] [PASSED] 0x4693 (ALDERLAKE_S)
[05:49:00] [PASSED] 0x46A0 (ALDERLAKE_P)
[05:49:00] [PASSED] 0x46A1 (ALDERLAKE_P)
[05:49:00] [PASSED] 0x46A2 (ALDERLAKE_P)
[05:49:00] [PASSED] 0x46A3 (ALDERLAKE_P)
[05:49:00] [PASSED] 0x46A6 (ALDERLAKE_P)
[05:49:00] [PASSED] 0x46A8 (ALDERLAKE_P)
[05:49:00] [PASSED] 0x46AA (ALDERLAKE_P)
[05:49:00] [PASSED] 0x462A (ALDERLAKE_P)
[05:49:00] [PASSED] 0x4626 (ALDERLAKE_P)
[05:49:00] [PASSED] 0x4628 (ALDERLAKE_P)
[05:49:00] [PASSED] 0x46B0 (ALDERLAKE_P)
[05:49:00] [PASSED] 0x46B1 (ALDERLAKE_P)
[05:49:00] [PASSED] 0x46B2 (ALDERLAKE_P)
[05:49:00] [PASSED] 0x46B3 (ALDERLAKE_P)
[05:49:00] [PASSED] 0x46C0 (ALDERLAKE_P)
[05:49:00] [PASSED] 0x46C1 (ALDERLAKE_P)
[05:49:00] [PASSED] 0x46C2 (ALDERLAKE_P)
[05:49:00] [PASSED] 0x46C3 (ALDERLAKE_P)
[05:49:00] [PASSED] 0x46D0 (ALDERLAKE_N)
[05:49:00] [PASSED] 0x46D1 (ALDERLAKE_N)
[05:49:00] [PASSED] 0x46D2 (ALDERLAKE_N)
[05:49:00] [PASSED] 0x46D3 (ALDERLAKE_N)
[05:49:00] [PASSED] 0x46D4 (ALDERLAKE_N)
[05:49:00] [PASSED] 0xA721 (ALDERLAKE_P)
[05:49:00] [PASSED] 0xA7A1 (ALDERLAKE_P)
[05:49:00] [PASSED] 0xA7A9 (ALDERLAKE_P)
[05:49:00] [PASSED] 0xA7AC (ALDERLAKE_P)
[05:49:00] [PASSED] 0xA7AD (ALDERLAKE_P)
[05:49:00] [PASSED] 0xA720 (ALDERLAKE_P)
[05:49:00] [PASSED] 0xA7A0 (ALDERLAKE_P)
[05:49:00] [PASSED] 0xA7A8 (ALDERLAKE_P)
[05:49:00] [PASSED] 0xA7AA (ALDERLAKE_P)
[05:49:00] [PASSED] 0xA7AB (ALDERLAKE_P)
[05:49:00] [PASSED] 0xA780 (ALDERLAKE_S)
[05:49:00] [PASSED] 0xA781 (ALDERLAKE_S)
[05:49:00] [PASSED] 0xA782 (ALDERLAKE_S)
[05:49:00] [PASSED] 0xA783 (ALDERLAKE_S)
[05:49:00] [PASSED] 0xA788 (ALDERLAKE_S)
[05:49:00] [PASSED] 0xA789 (ALDERLAKE_S)
[05:49:00] [PASSED] 0xA78A (ALDERLAKE_S)
[05:49:00] [PASSED] 0xA78B (ALDERLAKE_S)
[05:49:00] [PASSED] 0x4905 (DG1)
[05:49:00] [PASSED] 0x4906 (DG1)
[05:49:00] [PASSED] 0x4907 (DG1)
[05:49:00] [PASSED] 0x4908 (DG1)
[05:49:00] [PASSED] 0x4909 (DG1)
[05:49:00] [PASSED] 0x56C0 (DG2)
[05:49:00] [PASSED] 0x56C2 (DG2)
[05:49:00] [PASSED] 0x56C1 (DG2)
[05:49:00] [PASSED] 0x7D51 (METEORLAKE)
[05:49:00] [PASSED] 0x7DD1 (METEORLAKE)
[05:49:00] [PASSED] 0x7D41 (METEORLAKE)
[05:49:00] [PASSED] 0x7D67 (METEORLAKE)
[05:49:00] [PASSED] 0xB640 (METEORLAKE)
[05:49:00] [PASSED] 0x56A0 (DG2)
[05:49:00] [PASSED] 0x56A1 (DG2)
[05:49:00] [PASSED] 0x56A2 (DG2)
[05:49:00] [PASSED] 0x56BE (DG2)
[05:49:00] [PASSED] 0x56BF (DG2)
[05:49:00] [PASSED] 0x5690 (DG2)
[05:49:00] [PASSED] 0x5691 (DG2)
[05:49:00] [PASSED] 0x5692 (DG2)
[05:49:00] [PASSED] 0x56A5 (DG2)
[05:49:00] [PASSED] 0x56A6 (DG2)
[05:49:00] [PASSED] 0x56B0 (DG2)
[05:49:00] [PASSED] 0x56B1 (DG2)
[05:49:00] [PASSED] 0x56BA (DG2)
[05:49:00] [PASSED] 0x56BB (DG2)
[05:49:00] [PASSED] 0x56BC (DG2)
[05:49:00] [PASSED] 0x56BD (DG2)
[05:49:00] [PASSED] 0x5693 (DG2)
[05:49:00] [PASSED] 0x5694 (DG2)
[05:49:00] [PASSED] 0x5695 (DG2)
[05:49:00] [PASSED] 0x56A3 (DG2)
[05:49:00] [PASSED] 0x56A4 (DG2)
[05:49:00] [PASSED] 0x56B2 (DG2)
[05:49:00] [PASSED] 0x56B3 (DG2)
[05:49:00] [PASSED] 0x5696 (DG2)
[05:49:00] [PASSED] 0x5697 (DG2)
[05:49:00] [PASSED] 0xB69 (PVC)
[05:49:00] [PASSED] 0xB6E (PVC)
[05:49:00] [PASSED] 0xBD4 (PVC)
[05:49:00] [PASSED] 0xBD5 (PVC)
[05:49:00] [PASSED] 0xBD6 (PVC)
[05:49:00] [PASSED] 0xBD7 (PVC)
[05:49:00] [PASSED] 0xBD8 (PVC)
[05:49:00] [PASSED] 0xBD9 (PVC)
[05:49:00] [PASSED] 0xBDA (PVC)
[05:49:00] [PASSED] 0xBDB (PVC)
[05:49:00] [PASSED] 0xBE0 (PVC)
[05:49:00] [PASSED] 0xBE1 (PVC)
[05:49:00] [PASSED] 0xBE5 (PVC)
[05:49:00] [PASSED] 0x7D40 (METEORLAKE)
[05:49:00] [PASSED] 0x7D45 (METEORLAKE)
[05:49:00] [PASSED] 0x7D55 (METEORLAKE)
[05:49:00] [PASSED] 0x7D60 (METEORLAKE)
[05:49:00] [PASSED] 0x7DD5 (METEORLAKE)
[05:49:00] [PASSED] 0x6420 (LUNARLAKE)
[05:49:00] [PASSED] 0x64A0 (LUNARLAKE)
[05:49:00] [PASSED] 0x64B0 (LUNARLAKE)
[05:49:00] [PASSED] 0xE202 (BATTLEMAGE)
[05:49:00] [PASSED] 0xE209 (BATTLEMAGE)
[05:49:00] [PASSED] 0xE20B (BATTLEMAGE)
[05:49:00] [PASSED] 0xE20C (BATTLEMAGE)
[05:49:00] [PASSED] 0xE20D (BATTLEMAGE)
[05:49:00] [PASSED] 0xE210 (BATTLEMAGE)
[05:49:00] [PASSED] 0xE211 (BATTLEMAGE)
[05:49:00] [PASSED] 0xE212 (BATTLEMAGE)
[05:49:00] [PASSED] 0xE216 (BATTLEMAGE)
[05:49:00] [PASSED] 0xE220 (BATTLEMAGE)
[05:49:00] [PASSED] 0xE221 (BATTLEMAGE)
[05:49:00] [PASSED] 0xE222 (BATTLEMAGE)
[05:49:00] [PASSED] 0xE223 (BATTLEMAGE)
[05:49:00] [PASSED] 0xB080 (PANTHERLAKE)
[05:49:00] [PASSED] 0xB081 (PANTHERLAKE)
[05:49:00] [PASSED] 0xB082 (PANTHERLAKE)
[05:49:00] [PASSED] 0xB083 (PANTHERLAKE)
[05:49:00] [PASSED] 0xB084 (PANTHERLAKE)
[05:49:00] [PASSED] 0xB085 (PANTHERLAKE)
[05:49:00] [PASSED] 0xB086 (PANTHERLAKE)
[05:49:00] [PASSED] 0xB087 (PANTHERLAKE)
[05:49:00] [PASSED] 0xB08F (PANTHERLAKE)
[05:49:00] [PASSED] 0xB090 (PANTHERLAKE)
[05:49:00] [PASSED] 0xB0A0 (PANTHERLAKE)
[05:49:00] [PASSED] 0xB0B0 (PANTHERLAKE)
[05:49:00] [PASSED] 0xFD80 (PANTHERLAKE)
[05:49:00] [PASSED] 0xFD81 (PANTHERLAKE)
[05:49:00] ============= [PASSED] check_platform_gt_count =============
[05:49:00] ===================== [PASSED] xe_pci ======================
[05:49:00] =================== xe_rtp (2 subtests) ====================
[05:49:00] =============== xe_rtp_process_to_sr_tests ================
[05:49:00] [PASSED] coalesce-same-reg
[05:49:00] [PASSED] no-match-no-add
[05:49:00] [PASSED] match-or
[05:49:00] [PASSED] match-or-xfail
[05:49:00] [PASSED] no-match-no-add-multiple-rules
[05:49:00] [PASSED] two-regs-two-entries
[05:49:00] [PASSED] clr-one-set-other
[05:49:00] [PASSED] set-field
[05:49:00] [PASSED] conflict-duplicate
[05:49:00] [PASSED] conflict-not-disjoint
[05:49:00] [PASSED] conflict-reg-type
[05:49:00] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[05:49:00] ================== xe_rtp_process_tests ===================
[05:49:00] [PASSED] active1
[05:49:00] [PASSED] active2
[05:49:00] [PASSED] active-inactive
[05:49:00] [PASSED] inactive-active
[05:49:00] [PASSED] inactive-1st_or_active-inactive
[05:49:00] [PASSED] inactive-2nd_or_active-inactive
[05:49:00] [PASSED] inactive-last_or_active-inactive
[05:49:00] [PASSED] inactive-no_or_active-inactive
[05:49:00] ============== [PASSED] xe_rtp_process_tests ===============
[05:49:00] ===================== [PASSED] xe_rtp ======================
[05:49:00] ==================== xe_wa (1 subtest) =====================
[05:49:00] ======================== xe_wa_gt =========================
[05:49:00] [PASSED] TIGERLAKE (B0)
[05:49:00] [PASSED] DG1 (A0)
[05:49:00] [PASSED] DG1 (B0)
[05:49:00] [PASSED] ALDERLAKE_S (A0)
[05:49:00] [PASSED] ALDERLAKE_S (B0)
[05:49:00] [PASSED] ALDERLAKE_S (C0)
[05:49:00] [PASSED] ALDERLAKE_S (D0)
[05:49:00] [PASSED] ALDERLAKE_P (A0)
[05:49:00] [PASSED] ALDERLAKE_P (B0)
[05:49:00] [PASSED] ALDERLAKE_P (C0)
[05:49:00] [PASSED] ALDERLAKE_S_RPLS (D0)
[05:49:00] [PASSED] ALDERLAKE_P_RPLU (E0)
[05:49:00] [PASSED] DG2_G10 (C0)
[05:49:00] [PASSED] DG2_G11 (B1)
[05:49:00] [PASSED] DG2_G12 (A1)
[05:49:00] [PASSED] METEORLAKE (g:A0, m:A0)
[05:49:00] [PASSED] METEORLAKE (g:A0, m:A0)
[05:49:00] [PASSED] METEORLAKE (g:A0, m:A0)
[05:49:00] [PASSED] LUNARLAKE (g:A0, m:A0)
[05:49:00] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[05:49:00] [PASSED] BATTLEMAGE (g:A0, m:A1)
[05:49:00] ==================== [PASSED] xe_wa_gt =====================
[05:49:00] ====================== [PASSED] xe_wa ======================
[05:49:00] ============================================================
[05:49:00] Testing complete. Ran 297 tests: passed: 281, skipped: 16
[05:49:00] Elapsed time: 31.268s total, 4.148s configuring, 26.803s building, 0.306s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[05:49:00] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[05:49:02] 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
[05:49:23] Starting KUnit Kernel (1/1)...
[05:49:23] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[05:49:23] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[05:49:23] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[05:49:23] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[05:49:23] =========== drm_validate_clone_mode (2 subtests) ===========
[05:49:23] ============== drm_test_check_in_clone_mode ===============
[05:49:23] [PASSED] in_clone_mode
[05:49:23] [PASSED] not_in_clone_mode
[05:49:23] ========== [PASSED] drm_test_check_in_clone_mode ===========
[05:49:23] =============== drm_test_check_valid_clones ===============
[05:49:23] [PASSED] not_in_clone_mode
[05:49:23] [PASSED] valid_clone
[05:49:23] [PASSED] invalid_clone
[05:49:23] =========== [PASSED] drm_test_check_valid_clones ===========
[05:49:23] ============= [PASSED] drm_validate_clone_mode =============
[05:49:23] ============= drm_validate_modeset (1 subtest) =============
[05:49:23] [PASSED] drm_test_check_connector_changed_modeset
[05:49:23] ============== [PASSED] drm_validate_modeset ===============
[05:49:23] ====== drm_test_bridge_get_current_state (2 subtests) ======
[05:49:23] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[05:49:23] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[05:49:23] ======== [PASSED] drm_test_bridge_get_current_state ========
[05:49:23] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[05:49:23] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[05:49:23] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[05:49:23] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[05:49:23] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[05:49:23] ============== drm_bridge_alloc (2 subtests) ===============
[05:49:23] [PASSED] drm_test_drm_bridge_alloc_basic
[05:49:23] [PASSED] drm_test_drm_bridge_alloc_get_put
[05:49:23] ================ [PASSED] drm_bridge_alloc =================
[05:49:23] ================== drm_buddy (7 subtests) ==================
[05:49:23] [PASSED] drm_test_buddy_alloc_limit
[05:49:23] [PASSED] drm_test_buddy_alloc_optimistic
[05:49:23] [PASSED] drm_test_buddy_alloc_pessimistic
[05:49:23] [PASSED] drm_test_buddy_alloc_pathological
[05:49:23] [PASSED] drm_test_buddy_alloc_contiguous
[05:49:23] [PASSED] drm_test_buddy_alloc_clear
[05:49:23] [PASSED] drm_test_buddy_alloc_range_bias
[05:49:23] ==================== [PASSED] drm_buddy ====================
[05:49:23] ============= drm_cmdline_parser (40 subtests) =============
[05:49:23] [PASSED] drm_test_cmdline_force_d_only
[05:49:23] [PASSED] drm_test_cmdline_force_D_only_dvi
[05:49:23] [PASSED] drm_test_cmdline_force_D_only_hdmi
[05:49:23] [PASSED] drm_test_cmdline_force_D_only_not_digital
[05:49:23] [PASSED] drm_test_cmdline_force_e_only
[05:49:23] [PASSED] drm_test_cmdline_res
[05:49:23] [PASSED] drm_test_cmdline_res_vesa
[05:49:23] [PASSED] drm_test_cmdline_res_vesa_rblank
[05:49:23] [PASSED] drm_test_cmdline_res_rblank
[05:49:23] [PASSED] drm_test_cmdline_res_bpp
[05:49:23] [PASSED] drm_test_cmdline_res_refresh
[05:49:23] [PASSED] drm_test_cmdline_res_bpp_refresh
[05:49:23] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[05:49:23] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[05:49:23] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[05:49:23] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[05:49:23] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[05:49:23] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[05:49:23] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[05:49:23] [PASSED] drm_test_cmdline_res_margins_force_on
[05:49:23] [PASSED] drm_test_cmdline_res_vesa_margins
[05:49:23] [PASSED] drm_test_cmdline_name
[05:49:23] [PASSED] drm_test_cmdline_name_bpp
[05:49:23] [PASSED] drm_test_cmdline_name_option
[05:49:23] [PASSED] drm_test_cmdline_name_bpp_option
[05:49:23] [PASSED] drm_test_cmdline_rotate_0
[05:49:23] [PASSED] drm_test_cmdline_rotate_90
[05:49:23] [PASSED] drm_test_cmdline_rotate_180
[05:49:23] [PASSED] drm_test_cmdline_rotate_270
[05:49:23] [PASSED] drm_test_cmdline_hmirror
[05:49:23] [PASSED] drm_test_cmdline_vmirror
[05:49:23] [PASSED] drm_test_cmdline_margin_options
[05:49:23] [PASSED] drm_test_cmdline_multiple_options
[05:49:23] [PASSED] drm_test_cmdline_bpp_extra_and_option
[05:49:23] [PASSED] drm_test_cmdline_extra_and_option
[05:49:23] [PASSED] drm_test_cmdline_freestanding_options
[05:49:23] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[05:49:23] [PASSED] drm_test_cmdline_panel_orientation
[05:49:23] ================ drm_test_cmdline_invalid =================
[05:49:23] [PASSED] margin_only
[05:49:23] [PASSED] interlace_only
[05:49:23] [PASSED] res_missing_x
[05:49:23] [PASSED] res_missing_y
[05:49:23] [PASSED] res_bad_y
[05:49:23] [PASSED] res_missing_y_bpp
[05:49:23] [PASSED] res_bad_bpp
[05:49:23] [PASSED] res_bad_refresh
[05:49:23] [PASSED] res_bpp_refresh_force_on_off
[05:49:23] [PASSED] res_invalid_mode
[05:49:23] [PASSED] res_bpp_wrong_place_mode
[05:49:23] [PASSED] name_bpp_refresh
[05:49:23] [PASSED] name_refresh
[05:49:23] [PASSED] name_refresh_wrong_mode
[05:49:23] [PASSED] name_refresh_invalid_mode
[05:49:23] [PASSED] rotate_multiple
[05:49:23] [PASSED] rotate_invalid_val
[05:49:23] [PASSED] rotate_truncated
[05:49:23] [PASSED] invalid_option
[05:49:23] [PASSED] invalid_tv_option
[05:49:23] [PASSED] truncated_tv_option
[05:49:23] ============ [PASSED] drm_test_cmdline_invalid =============
[05:49:23] =============== drm_test_cmdline_tv_options ===============
[05:49:23] [PASSED] NTSC
[05:49:23] [PASSED] NTSC_443
[05:49:23] [PASSED] NTSC_J
[05:49:23] [PASSED] PAL
[05:49:23] [PASSED] PAL_M
[05:49:23] [PASSED] PAL_N
[05:49:23] [PASSED] SECAM
[05:49:23] [PASSED] MONO_525
[05:49:23] [PASSED] MONO_625
[05:49:23] =========== [PASSED] drm_test_cmdline_tv_options ===========
[05:49:23] =============== [PASSED] drm_cmdline_parser ================
[05:49:23] ========== drmm_connector_hdmi_init (20 subtests) ==========
[05:49:23] [PASSED] drm_test_connector_hdmi_init_valid
[05:49:23] [PASSED] drm_test_connector_hdmi_init_bpc_8
[05:49:23] [PASSED] drm_test_connector_hdmi_init_bpc_10
[05:49:23] [PASSED] drm_test_connector_hdmi_init_bpc_12
[05:49:23] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[05:49:23] [PASSED] drm_test_connector_hdmi_init_bpc_null
[05:49:23] [PASSED] drm_test_connector_hdmi_init_formats_empty
[05:49:23] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[05:49:23] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[05:49:23] [PASSED] supported_formats=0x9 yuv420_allowed=1
[05:49:23] [PASSED] supported_formats=0x9 yuv420_allowed=0
[05:49:23] [PASSED] supported_formats=0x3 yuv420_allowed=1
[05:49:23] [PASSED] supported_formats=0x3 yuv420_allowed=0
[05:49:23] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[05:49:23] [PASSED] drm_test_connector_hdmi_init_null_ddc
[05:49:23] [PASSED] drm_test_connector_hdmi_init_null_product
[05:49:23] [PASSED] drm_test_connector_hdmi_init_null_vendor
[05:49:23] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[05:49:23] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[05:49:23] [PASSED] drm_test_connector_hdmi_init_product_valid
[05:49:23] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[05:49:23] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[05:49:23] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[05:49:23] ========= drm_test_connector_hdmi_init_type_valid =========
[05:49:23] [PASSED] HDMI-A
[05:49:23] [PASSED] HDMI-B
[05:49:23] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[05:49:23] ======== drm_test_connector_hdmi_init_type_invalid ========
[05:49:23] [PASSED] Unknown
[05:49:23] [PASSED] VGA
[05:49:23] [PASSED] DVI-I
[05:49:23] [PASSED] DVI-D
[05:49:23] [PASSED] DVI-A
[05:49:23] [PASSED] Composite
[05:49:23] [PASSED] SVIDEO
[05:49:23] [PASSED] LVDS
[05:49:23] [PASSED] Component
[05:49:23] [PASSED] DIN
[05:49:23] [PASSED] DP
[05:49:23] [PASSED] TV
[05:49:23] [PASSED] eDP
[05:49:23] [PASSED] Virtual
[05:49:23] [PASSED] DSI
[05:49:23] [PASSED] DPI
[05:49:23] [PASSED] Writeback
[05:49:23] [PASSED] SPI
[05:49:23] [PASSED] USB
[05:49:23] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[05:49:23] ============ [PASSED] drmm_connector_hdmi_init =============
[05:49:23] ============= drmm_connector_init (3 subtests) =============
[05:49:23] [PASSED] drm_test_drmm_connector_init
[05:49:23] [PASSED] drm_test_drmm_connector_init_null_ddc
[05:49:23] ========= drm_test_drmm_connector_init_type_valid =========
[05:49:23] [PASSED] Unknown
[05:49:23] [PASSED] VGA
[05:49:23] [PASSED] DVI-I
[05:49:23] [PASSED] DVI-D
[05:49:23] [PASSED] DVI-A
[05:49:23] [PASSED] Composite
[05:49:23] [PASSED] SVIDEO
[05:49:23] [PASSED] LVDS
[05:49:23] [PASSED] Component
[05:49:23] [PASSED] DIN
[05:49:23] [PASSED] DP
[05:49:23] [PASSED] HDMI-A
[05:49:23] [PASSED] HDMI-B
[05:49:23] [PASSED] TV
[05:49:23] [PASSED] eDP
[05:49:23] [PASSED] Virtual
[05:49:23] [PASSED] DSI
[05:49:23] [PASSED] DPI
[05:49:23] [PASSED] Writeback
[05:49:23] [PASSED] SPI
[05:49:23] [PASSED] USB
[05:49:23] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[05:49:23] =============== [PASSED] drmm_connector_init ===============
[05:49:23] ========= drm_connector_dynamic_init (6 subtests) ==========
[05:49:23] [PASSED] drm_test_drm_connector_dynamic_init
[05:49:23] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[05:49:23] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[05:49:23] [PASSED] drm_test_drm_connector_dynamic_init_properties
[05:49:23] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[05:49:23] [PASSED] Unknown
[05:49:23] [PASSED] VGA
[05:49:23] [PASSED] DVI-I
[05:49:23] [PASSED] DVI-D
[05:49:23] [PASSED] DVI-A
[05:49:23] [PASSED] Composite
[05:49:23] [PASSED] SVIDEO
[05:49:23] [PASSED] LVDS
[05:49:23] [PASSED] Component
[05:49:23] [PASSED] DIN
[05:49:23] [PASSED] DP
[05:49:23] [PASSED] HDMI-A
[05:49:23] [PASSED] HDMI-B
[05:49:23] [PASSED] TV
[05:49:23] [PASSED] eDP
[05:49:23] [PASSED] Virtual
[05:49:23] [PASSED] DSI
[05:49:23] [PASSED] DPI
[05:49:23] [PASSED] Writeback
[05:49:23] [PASSED] SPI
[05:49:23] [PASSED] USB
[05:49:23] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[05:49:23] ======== drm_test_drm_connector_dynamic_init_name =========
[05:49:23] [PASSED] Unknown
[05:49:23] [PASSED] VGA
[05:49:23] [PASSED] DVI-I
[05:49:23] [PASSED] DVI-D
[05:49:23] [PASSED] DVI-A
[05:49:23] [PASSED] Composite
[05:49:23] [PASSED] SVIDEO
[05:49:23] [PASSED] LVDS
[05:49:23] [PASSED] Component
[05:49:23] [PASSED] DIN
[05:49:23] [PASSED] DP
[05:49:23] [PASSED] HDMI-A
[05:49:23] [PASSED] HDMI-B
[05:49:23] [PASSED] TV
[05:49:23] [PASSED] eDP
[05:49:23] [PASSED] Virtual
[05:49:23] [PASSED] DSI
[05:49:23] [PASSED] DPI
[05:49:23] [PASSED] Writeback
[05:49:23] [PASSED] SPI
[05:49:23] [PASSED] USB
[05:49:23] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[05:49:23] =========== [PASSED] drm_connector_dynamic_init ============
[05:49:23] ==== drm_connector_dynamic_register_early (4 subtests) =====
[05:49:23] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[05:49:23] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[05:49:23] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[05:49:23] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[05:49:23] ====== [PASSED] drm_connector_dynamic_register_early =======
[05:49:23] ======= drm_connector_dynamic_register (7 subtests) ========
[05:49:23] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[05:49:23] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[05:49:23] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[05:49:23] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[05:49:23] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[05:49:23] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[05:49:23] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[05:49:23] ========= [PASSED] drm_connector_dynamic_register ==========
[05:49:23] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[05:49:23] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[05:49:23] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[05:49:23] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[05:49:23] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[05:49:23] ========== drm_test_get_tv_mode_from_name_valid ===========
[05:49:23] [PASSED] NTSC
[05:49:23] [PASSED] NTSC-443
[05:49:23] [PASSED] NTSC-J
[05:49:23] [PASSED] PAL
[05:49:23] [PASSED] PAL-M
[05:49:23] [PASSED] PAL-N
[05:49:23] [PASSED] SECAM
[05:49:23] [PASSED] Mono
[05:49:23] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[05:49:23] [PASSED] drm_test_get_tv_mode_from_name_truncated
[05:49:23] ============ [PASSED] drm_get_tv_mode_from_name ============
[05:49:23] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[05:49:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[05:49:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[05:49:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[05:49:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[05:49:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[05:49:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[05:49:23] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[05:49:23] [PASSED] VIC 96
[05:49:23] [PASSED] VIC 97
[05:49:23] [PASSED] VIC 101
[05:49:23] [PASSED] VIC 102
[05:49:23] [PASSED] VIC 106
[05:49:23] [PASSED] VIC 107
[05:49:23] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[05:49:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[05:49:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[05:49:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[05:49:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[05:49:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[05:49:23] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[05:49:23] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[05:49:23] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[05:49:23] [PASSED] Automatic
[05:49:23] [PASSED] Full
[05:49:23] [PASSED] Limited 16:235
[05:49:23] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[05:49:23] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[05:49:23] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[05:49:23] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[05:49:23] === drm_test_drm_hdmi_connector_get_output_format_name ====
[05:49:23] [PASSED] RGB
[05:49:23] [PASSED] YUV 4:2:0
[05:49:23] [PASSED] YUV 4:2:2
[05:49:23] [PASSED] YUV 4:4:4
[05:49:23] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[05:49:23] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[05:49:23] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[05:49:23] ============= drm_damage_helper (21 subtests) ==============
[05:49:23] [PASSED] drm_test_damage_iter_no_damage
[05:49:23] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[05:49:23] [PASSED] drm_test_damage_iter_no_damage_src_moved
[05:49:23] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[05:49:23] [PASSED] drm_test_damage_iter_no_damage_not_visible
[05:49:23] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[05:49:23] [PASSED] drm_test_damage_iter_no_damage_no_fb
[05:49:23] [PASSED] drm_test_damage_iter_simple_damage
[05:49:23] [PASSED] drm_test_damage_iter_single_damage
[05:49:23] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[05:49:23] [PASSED] drm_test_damage_iter_single_damage_outside_src
[05:49:23] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[05:49:23] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[05:49:23] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[05:49:23] [PASSED] drm_test_damage_iter_single_damage_src_moved
[05:49:23] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[05:49:23] [PASSED] drm_test_damage_iter_damage
[05:49:23] [PASSED] drm_test_damage_iter_damage_one_intersect
[05:49:23] [PASSED] drm_test_damage_iter_damage_one_outside
[05:49:23] [PASSED] drm_test_damage_iter_damage_src_moved
[05:49:23] [PASSED] drm_test_damage_iter_damage_not_visible
[05:49:23] ================ [PASSED] drm_damage_helper ================
[05:49:23] ============== drm_dp_mst_helper (3 subtests) ==============
[05:49:23] ============== drm_test_dp_mst_calc_pbn_mode ==============
[05:49:23] [PASSED] Clock 154000 BPP 30 DSC disabled
[05:49:23] [PASSED] Clock 234000 BPP 30 DSC disabled
[05:49:23] [PASSED] Clock 297000 BPP 24 DSC disabled
[05:49:23] [PASSED] Clock 332880 BPP 24 DSC enabled
[05:49:23] [PASSED] Clock 324540 BPP 24 DSC enabled
[05:49:23] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[05:49:23] ============== drm_test_dp_mst_calc_pbn_div ===============
[05:49:23] [PASSED] Link rate 2000000 lane count 4
[05:49:23] [PASSED] Link rate 2000000 lane count 2
[05:49:23] [PASSED] Link rate 2000000 lane count 1
[05:49:23] [PASSED] Link rate 1350000 lane count 4
[05:49:23] [PASSED] Link rate 1350000 lane count 2
[05:49:23] [PASSED] Link rate 1350000 lane count 1
[05:49:23] [PASSED] Link rate 1000000 lane count 4
[05:49:23] [PASSED] Link rate 1000000 lane count 2
[05:49:23] [PASSED] Link rate 1000000 lane count 1
[05:49:23] [PASSED] Link rate 810000 lane count 4
[05:49:23] [PASSED] Link rate 810000 lane count 2
[05:49:23] [PASSED] Link rate 810000 lane count 1
[05:49:23] [PASSED] Link rate 540000 lane count 4
[05:49:23] [PASSED] Link rate 540000 lane count 2
[05:49:23] [PASSED] Link rate 540000 lane count 1
[05:49:23] [PASSED] Link rate 270000 lane count 4
[05:49:23] [PASSED] Link rate 270000 lane count 2
[05:49:23] [PASSED] Link rate 270000 lane count 1
[05:49:23] [PASSED] Link rate 162000 lane count 4
[05:49:23] [PASSED] Link rate 162000 lane count 2
[05:49:23] [PASSED] Link rate 162000 lane count 1
[05:49:23] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[05:49:23] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[05:49:23] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[05:49:23] [PASSED] DP_POWER_UP_PHY with port number
[05:49:23] [PASSED] DP_POWER_DOWN_PHY with port number
[05:49:23] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[05:49:23] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[05:49:23] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[05:49:23] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[05:49:23] [PASSED] DP_QUERY_PAYLOAD with port number
[05:49:23] [PASSED] DP_QUERY_PAYLOAD with VCPI
[05:49:23] [PASSED] DP_REMOTE_DPCD_READ with port number
[05:49:23] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[05:49:23] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[05:49:23] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[05:49:23] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[05:49:23] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[05:49:23] [PASSED] DP_REMOTE_I2C_READ with port number
[05:49:23] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[05:49:23] [PASSED] DP_REMOTE_I2C_READ with transactions array
[05:49:23] [PASSED] DP_REMOTE_I2C_WRITE with port number
[05:49:23] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[05:49:23] [PASSED] DP_REMOTE_I2C_WRITE with data array
[05:49:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[05:49:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[05:49:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[05:49:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[05:49:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[05:49:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[05:49:23] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[05:49:23] ================ [PASSED] drm_dp_mst_helper ================
[05:49:23] ================== drm_exec (7 subtests) ===================
[05:49:23] [PASSED] sanitycheck
[05:49:23] [PASSED] test_lock
[05:49:23] [PASSED] test_lock_unlock
[05:49:23] [PASSED] test_duplicates
[05:49:23] [PASSED] test_prepare
[05:49:23] [PASSED] test_prepare_array
[05:49:23] [PASSED] test_multiple_loops
[05:49:23] ==================== [PASSED] drm_exec =====================
[05:49:23] =========== drm_format_helper_test (17 subtests) ===========
[05:49:23] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[05:49:23] [PASSED] single_pixel_source_buffer
[05:49:23] [PASSED] single_pixel_clip_rectangle
[05:49:23] [PASSED] well_known_colors
[05:49:23] [PASSED] destination_pitch
[05:49:23] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[05:49:23] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[05:49:23] [PASSED] single_pixel_source_buffer
[05:49:23] [PASSED] single_pixel_clip_rectangle
[05:49:23] [PASSED] well_known_colors
[05:49:23] [PASSED] destination_pitch
[05:49:23] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[05:49:23] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[05:49:23] [PASSED] single_pixel_source_buffer
[05:49:23] [PASSED] single_pixel_clip_rectangle
[05:49:23] [PASSED] well_known_colors
[05:49:23] [PASSED] destination_pitch
[05:49:23] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[05:49:23] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[05:49:23] [PASSED] single_pixel_source_buffer
[05:49:23] [PASSED] single_pixel_clip_rectangle
[05:49:23] [PASSED] well_known_colors
[05:49:23] [PASSED] destination_pitch
[05:49:23] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[05:49:23] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[05:49:23] [PASSED] single_pixel_source_buffer
[05:49:23] [PASSED] single_pixel_clip_rectangle
[05:49:23] [PASSED] well_known_colors
[05:49:23] [PASSED] destination_pitch
[05:49:23] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[05:49:23] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[05:49:23] [PASSED] single_pixel_source_buffer
[05:49:23] [PASSED] single_pixel_clip_rectangle
[05:49:23] [PASSED] well_known_colors
[05:49:23] [PASSED] destination_pitch
[05:49:23] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[05:49:23] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[05:49:23] [PASSED] single_pixel_source_buffer
[05:49:23] [PASSED] single_pixel_clip_rectangle
[05:49:23] [PASSED] well_known_colors
[05:49:23] [PASSED] destination_pitch
[05:49:23] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[05:49:23] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[05:49:23] [PASSED] single_pixel_source_buffer
[05:49:23] [PASSED] single_pixel_clip_rectangle
[05:49:23] [PASSED] well_known_colors
[05:49:23] [PASSED] destination_pitch
[05:49:23] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[05:49:23] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[05:49:23] [PASSED] single_pixel_source_buffer
[05:49:23] [PASSED] single_pixel_clip_rectangle
[05:49:23] [PASSED] well_known_colors
[05:49:23] [PASSED] destination_pitch
[05:49:23] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[05:49:23] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[05:49:23] [PASSED] single_pixel_source_buffer
[05:49:23] [PASSED] single_pixel_clip_rectangle
[05:49:23] [PASSED] well_known_colors
[05:49:23] [PASSED] destination_pitch
[05:49:23] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[05:49:23] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[05:49:23] [PASSED] single_pixel_source_buffer
[05:49:23] [PASSED] single_pixel_clip_rectangle
[05:49:23] [PASSED] well_known_colors
[05:49:23] [PASSED] destination_pitch
[05:49:23] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[05:49:23] ============== drm_test_fb_xrgb8888_to_mono ===============
[05:49:23] [PASSED] single_pixel_source_buffer
[05:49:23] [PASSED] single_pixel_clip_rectangle
[05:49:23] [PASSED] well_known_colors
[05:49:23] [PASSED] destination_pitch
[05:49:23] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[05:49:23] ==================== drm_test_fb_swab =====================
[05:49:23] [PASSED] single_pixel_source_buffer
[05:49:23] [PASSED] single_pixel_clip_rectangle
[05:49:23] [PASSED] well_known_colors
[05:49:23] [PASSED] destination_pitch
[05:49:23] ================ [PASSED] drm_test_fb_swab =================
[05:49:23] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[05:49:23] [PASSED] single_pixel_source_buffer
[05:49:23] [PASSED] single_pixel_clip_rectangle
[05:49:23] [PASSED] well_known_colors
[05:49:23] [PASSED] destination_pitch
[05:49:23] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[05:49:23] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[05:49:23] [PASSED] single_pixel_source_buffer
[05:49:23] [PASSED] single_pixel_clip_rectangle
[05:49:23] [PASSED] well_known_colors
[05:49:23] [PASSED] destination_pitch
[05:49:23] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[05:49:23] ================= drm_test_fb_clip_offset =================
[05:49:23] [PASSED] pass through
[05:49:23] [PASSED] horizontal offset
[05:49:23] [PASSED] vertical offset
[05:49:23] [PASSED] horizontal and vertical offset
[05:49:23] [PASSED] horizontal offset (custom pitch)
[05:49:23] [PASSED] vertical offset (custom pitch)
[05:49:23] [PASSED] horizontal and vertical offset (custom pitch)
[05:49:23] ============= [PASSED] drm_test_fb_clip_offset =============
[05:49:23] =================== drm_test_fb_memcpy ====================
[05:49:23] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[05:49:23] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[05:49:23] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[05:49:23] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[05:49:23] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[05:49:23] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[05:49:23] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[05:49:23] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[05:49:23] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[05:49:23] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[05:49:23] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[05:49:23] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[05:49:23] =============== [PASSED] drm_test_fb_memcpy ================
[05:49:23] ============= [PASSED] drm_format_helper_test ==============
[05:49:23] ================= drm_format (18 subtests) =================
[05:49:23] [PASSED] drm_test_format_block_width_invalid
[05:49:23] [PASSED] drm_test_format_block_width_one_plane
[05:49:23] [PASSED] drm_test_format_block_width_two_plane
[05:49:23] [PASSED] drm_test_format_block_width_three_plane
[05:49:23] [PASSED] drm_test_format_block_width_tiled
[05:49:23] [PASSED] drm_test_format_block_height_invalid
[05:49:23] [PASSED] drm_test_format_block_height_one_plane
[05:49:23] [PASSED] drm_test_format_block_height_two_plane
[05:49:23] [PASSED] drm_test_format_block_height_three_plane
[05:49:23] [PASSED] drm_test_format_block_height_tiled
[05:49:23] [PASSED] drm_test_format_min_pitch_invalid
[05:49:23] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[05:49:23] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[05:49:23] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[05:49:23] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[05:49:23] [PASSED] drm_test_format_min_pitch_two_plane
[05:49:23] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[05:49:23] [PASSED] drm_test_format_min_pitch_tiled
[05:49:23] =================== [PASSED] drm_format ====================
[05:49:23] ============== drm_framebuffer (10 subtests) ===============
[05:49:23] ========== drm_test_framebuffer_check_src_coords ==========
[05:49:23] [PASSED] Success: source fits into fb
[05:49:23] [PASSED] Fail: overflowing fb with x-axis coordinate
[05:49:23] [PASSED] Fail: overflowing fb with y-axis coordinate
[05:49:23] [PASSED] Fail: overflowing fb with source width
[05:49:23] [PASSED] Fail: overflowing fb with source height
[05:49:23] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[05:49:23] [PASSED] drm_test_framebuffer_cleanup
[05:49:23] =============== drm_test_framebuffer_create ===============
[05:49:23] [PASSED] ABGR8888 normal sizes
[05:49:23] [PASSED] ABGR8888 max sizes
[05:49:23] [PASSED] ABGR8888 pitch greater than min required
[05:49:23] [PASSED] ABGR8888 pitch less than min required
[05:49:23] [PASSED] ABGR8888 Invalid width
[05:49:23] [PASSED] ABGR8888 Invalid buffer handle
[05:49:23] [PASSED] No pixel format
[05:49:23] [PASSED] ABGR8888 Width 0
[05:49:23] [PASSED] ABGR8888 Height 0
[05:49:23] [PASSED] ABGR8888 Out of bound height * pitch combination
[05:49:23] [PASSED] ABGR8888 Large buffer offset
[05:49:23] [PASSED] ABGR8888 Buffer offset for inexistent plane
[05:49:23] [PASSED] ABGR8888 Invalid flag
[05:49:23] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[05:49:23] [PASSED] ABGR8888 Valid buffer modifier
[05:49:23] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[05:49:23] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[05:49:23] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[05:49:23] [PASSED] NV12 Normal sizes
[05:49:23] [PASSED] NV12 Max sizes
[05:49:23] [PASSED] NV12 Invalid pitch
[05:49:23] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[05:49:23] [PASSED] NV12 different modifier per-plane
[05:49:23] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[05:49:23] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[05:49:23] [PASSED] NV12 Modifier for inexistent plane
[05:49:23] [PASSED] NV12 Handle for inexistent plane
[05:49:23] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[05:49:23] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[05:49:23] [PASSED] YVU420 Normal sizes
[05:49:23] [PASSED] YVU420 Max sizes
[05:49:23] [PASSED] YVU420 Invalid pitch
[05:49:23] [PASSED] YVU420 Different pitches
[05:49:23] [PASSED] YVU420 Different buffer offsets/pitches
[05:49:23] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[05:49:23] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[05:49:23] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[05:49:23] [PASSED] YVU420 Valid modifier
[05:49:23] [PASSED] YVU420 Different modifiers per plane
[05:49:23] [PASSED] YVU420 Modifier for inexistent plane
[05:49:23] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[05:49:23] [PASSED] X0L2 Normal sizes
[05:49:23] [PASSED] X0L2 Max sizes
[05:49:23] [PASSED] X0L2 Invalid pitch
[05:49:23] [PASSED] X0L2 Pitch greater than minimum required
[05:49:23] [PASSED] X0L2 Handle for inexistent plane
[05:49:23] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[05:49:23] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[05:49:23] [PASSED] X0L2 Valid modifier
[05:49:23] [PASSED] X0L2 Modifier for inexistent plane
[05:49:23] =========== [PASSED] drm_test_framebuffer_create ===========
[05:49:23] [PASSED] drm_test_framebuffer_free
[05:49:23] [PASSED] drm_test_framebuffer_init
[05:49:23] [PASSED] drm_test_framebuffer_init_bad_format
[05:49:23] [PASSED] drm_test_framebuffer_init_dev_mismatch
[05:49:23] [PASSED] drm_test_framebuffer_lookup
[05:49:23] [PASSED] drm_test_framebuffer_lookup_inexistent
[05:49:23] [PASSED] drm_test_framebuffer_modifiers_not_supported
[05:49:23] ================= [PASSED] drm_framebuffer =================
[05:49:23] ================ drm_gem_shmem (8 subtests) ================
[05:49:23] [PASSED] drm_gem_shmem_test_obj_create
[05:49:23] [PASSED] drm_gem_shmem_test_obj_create_private
[05:49:23] [PASSED] drm_gem_shmem_test_pin_pages
[05:49:23] [PASSED] drm_gem_shmem_test_vmap
[05:49:23] [PASSED] drm_gem_shmem_test_get_pages_sgt
[05:49:23] [PASSED] drm_gem_shmem_test_get_sg_table
[05:49:23] [PASSED] drm_gem_shmem_test_madvise
[05:49:23] [PASSED] drm_gem_shmem_test_purge
[05:49:23] ================== [PASSED] drm_gem_shmem ==================
[05:49:23] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[05:49:23] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[05:49:23] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[05:49:23] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[05:49:23] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[05:49:23] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[05:49:23] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[05:49:23] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[05:49:23] [PASSED] Automatic
[05:49:23] [PASSED] Full
[05:49:23] [PASSED] Limited 16:235
[05:49:23] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[05:49:23] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[05:49:23] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[05:49:23] [PASSED] drm_test_check_disable_connector
[05:49:23] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[05:49:23] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[05:49:23] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[05:49:23] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[05:49:23] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[05:49:23] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[05:49:23] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[05:49:23] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[05:49:23] [PASSED] drm_test_check_output_bpc_dvi
[05:49:23] [PASSED] drm_test_check_output_bpc_format_vic_1
[05:49:23] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[05:49:23] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[05:49:23] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[05:49:23] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[05:49:23] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[05:49:23] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[05:49:23] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[05:49:23] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[05:49:23] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[05:49:23] [PASSED] drm_test_check_broadcast_rgb_value
[05:49:23] [PASSED] drm_test_check_bpc_8_value
[05:49:23] [PASSED] drm_test_check_bpc_10_value
[05:49:23] [PASSED] drm_test_check_bpc_12_value
[05:49:23] [PASSED] drm_test_check_format_value
[05:49:23] [PASSED] drm_test_check_tmds_char_value
[05:49:23] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[05:49:23] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[05:49:23] [PASSED] drm_test_check_mode_valid
[05:49:23] [PASSED] drm_test_check_mode_valid_reject
[05:49:23] [PASSED] drm_test_check_mode_valid_reject_rate
[05:49:23] [PASSED] drm_test_check_mode_valid_reject_max_clock
[05:49:23] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[05:49:23] ================= drm_managed (2 subtests) =================
[05:49:23] [PASSED] drm_test_managed_release_action
[05:49:23] [PASSED] drm_test_managed_run_action
[05:49:23] =================== [PASSED] drm_managed ===================
[05:49:23] =================== drm_mm (6 subtests) ====================
[05:49:23] [PASSED] drm_test_mm_init
[05:49:23] [PASSED] drm_test_mm_debug
[05:49:23] [PASSED] drm_test_mm_align32
[05:49:23] [PASSED] drm_test_mm_align64
[05:49:23] [PASSED] drm_test_mm_lowest
[05:49:23] [PASSED] drm_test_mm_highest
[05:49:23] ===================== [PASSED] drm_mm ======================
[05:49:23] ============= drm_modes_analog_tv (5 subtests) =============
[05:49:23] [PASSED] drm_test_modes_analog_tv_mono_576i
[05:49:23] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[05:49:23] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[05:49:23] [PASSED] drm_test_modes_analog_tv_pal_576i
[05:49:23] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[05:49:23] =============== [PASSED] drm_modes_analog_tv ===============
[05:49:23] ============== drm_plane_helper (2 subtests) ===============
[05:49:23] =============== drm_test_check_plane_state ================
[05:49:23] [PASSED] clipping_simple
[05:49:23] [PASSED] clipping_rotate_reflect
[05:49:23] [PASSED] positioning_simple
[05:49:23] [PASSED] upscaling
[05:49:23] [PASSED] downscaling
[05:49:23] [PASSED] rounding1
[05:49:23] [PASSED] rounding2
[05:49:23] [PASSED] rounding3
[05:49:23] [PASSED] rounding4
[05:49:23] =========== [PASSED] drm_test_check_plane_state ============
[05:49:23] =========== drm_test_check_invalid_plane_state ============
[05:49:23] [PASSED] positioning_invalid
[05:49:23] [PASSED] upscaling_invalid
[05:49:23] [PASSED] downscaling_invalid
[05:49:23] ======= [PASSED] drm_test_check_invalid_plane_state ========
[05:49:23] ================ [PASSED] drm_plane_helper =================
[05:49:23] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[05:49:23] ====== drm_test_connector_helper_tv_get_modes_check =======
[05:49:23] [PASSED] None
[05:49:23] [PASSED] PAL
[05:49:23] [PASSED] NTSC
[05:49:23] [PASSED] Both, NTSC Default
[05:49:23] [PASSED] Both, PAL Default
[05:49:23] [PASSED] Both, NTSC Default, with PAL on command-line
[05:49:23] [PASSED] Both, PAL Default, with NTSC on command-line
[05:49:23] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[05:49:23] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[05:49:23] ================== drm_rect (9 subtests) ===================
[05:49:23] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[05:49:23] [PASSED] drm_test_rect_clip_scaled_not_clipped
[05:49:23] [PASSED] drm_test_rect_clip_scaled_clipped
[05:49:23] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[05:49:23] ================= drm_test_rect_intersect =================
[05:49:23] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[05:49:23] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[05:49:23] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[05:49:23] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[05:49:23] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[05:49:23] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[05:49:23] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[05:49:23] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[05:49:23] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[05:49:23] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[05:49:23] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[05:49:23] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[05:49:23] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[05:49:23] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[05:49:23] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[05:49:23] ============= [PASSED] drm_test_rect_intersect =============
[05:49:23] ================ drm_test_rect_calc_hscale ================
[05:49:23] [PASSED] normal use
[05:49:23] [PASSED] out of max range
[05:49:23] [PASSED] out of min range
[05:49:23] [PASSED] zero dst
[05:49:23] [PASSED] negative src
[05:49:23] [PASSED] negative dst
[05:49:23] ============ [PASSED] drm_test_rect_calc_hscale ============
[05:49:23] ================ drm_test_rect_calc_vscale ================
[05:49:23] [PASSED] normal use
[05:49:23] [PASSED] out of max range
[05:49:23] [PASSED] out of min range
[05:49:23] [PASSED] zero dst
[05:49:23] [PASSED] negative src
[05:49:23] [PASSED] negative dst
[05:49:23] ============ [PASSED] drm_test_rect_calc_vscale ============
[05:49:23] ================== drm_test_rect_rotate ===================
[05:49:23] [PASSED] reflect-x
[05:49:23] [PASSED] reflect-y
[05:49:23] [PASSED] rotate-0
[05:49:23] [PASSED] rotate-90
[05:49:23] [PASSED] rotate-180
[05:49:23] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[05:49:23] ============== [PASSED] drm_test_rect_rotate ===============
[05:49:23] ================ drm_test_rect_rotate_inv =================
[05:49:23] [PASSED] reflect-x
[05:49:23] [PASSED] reflect-y
[05:49:23] [PASSED] rotate-0
[05:49:23] [PASSED] rotate-90
[05:49:23] [PASSED] rotate-180
[05:49:23] [PASSED] rotate-270
[05:49:23] ============ [PASSED] drm_test_rect_rotate_inv =============
[05:49:23] ==================== [PASSED] drm_rect =====================
[05:49:23] ============ drm_sysfb_modeset_test (1 subtest) ============
[05:49:23] ============ drm_test_sysfb_build_fourcc_list =============
[05:49:23] [PASSED] no native formats
[05:49:23] [PASSED] XRGB8888 as native format
[05:49:23] [PASSED] remove duplicates
[05:49:23] [PASSED] convert alpha formats
[05:49:23] [PASSED] random formats
[05:49:23] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[05:49:23] ============= [PASSED] drm_sysfb_modeset_test ==============
[05:49:23] ============================================================
[05:49:23] Testing complete. Ran 616 tests: passed: 616
[05:49:23] Elapsed time: 22.999s total, 1.574s configuring, 21.257s building, 0.145s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[05:49:23] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[05:49:25] 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
[05:49:32] Starting KUnit Kernel (1/1)...
[05:49:32] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[05:49:33] ================= ttm_device (5 subtests) ==================
[05:49:33] [PASSED] ttm_device_init_basic
[05:49:33] [PASSED] ttm_device_init_multiple
[05:49:33] [PASSED] ttm_device_fini_basic
[05:49:33] [PASSED] ttm_device_init_no_vma_man
[05:49:33] ================== ttm_device_init_pools ==================
[05:49:33] [PASSED] No DMA allocations, no DMA32 required
[05:49:33] [PASSED] DMA allocations, DMA32 required
[05:49:33] [PASSED] No DMA allocations, DMA32 required
[05:49:33] [PASSED] DMA allocations, no DMA32 required
[05:49:33] ============== [PASSED] ttm_device_init_pools ==============
[05:49:33] =================== [PASSED] ttm_device ====================
[05:49:33] ================== ttm_pool (8 subtests) ===================
[05:49:33] ================== ttm_pool_alloc_basic ===================
[05:49:33] [PASSED] One page
[05:49:33] [PASSED] More than one page
[05:49:33] [PASSED] Above the allocation limit
[05:49:33] [PASSED] One page, with coherent DMA mappings enabled
[05:49:33] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[05:49:33] ============== [PASSED] ttm_pool_alloc_basic ===============
[05:49:33] ============== ttm_pool_alloc_basic_dma_addr ==============
[05:49:33] [PASSED] One page
[05:49:33] [PASSED] More than one page
[05:49:33] [PASSED] Above the allocation limit
[05:49:33] [PASSED] One page, with coherent DMA mappings enabled
[05:49:33] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[05:49:33] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[05:49:33] [PASSED] ttm_pool_alloc_order_caching_match
[05:49:33] [PASSED] ttm_pool_alloc_caching_mismatch
[05:49:33] [PASSED] ttm_pool_alloc_order_mismatch
[05:49:33] [PASSED] ttm_pool_free_dma_alloc
[05:49:33] [PASSED] ttm_pool_free_no_dma_alloc
[05:49:33] [PASSED] ttm_pool_fini_basic
[05:49:33] ==================== [PASSED] ttm_pool =====================
[05:49:33] ================ ttm_resource (8 subtests) =================
[05:49:33] ================= ttm_resource_init_basic =================
[05:49:33] [PASSED] Init resource in TTM_PL_SYSTEM
[05:49:33] [PASSED] Init resource in TTM_PL_VRAM
[05:49:33] [PASSED] Init resource in a private placement
[05:49:33] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[05:49:33] ============= [PASSED] ttm_resource_init_basic =============
[05:49:33] [PASSED] ttm_resource_init_pinned
[05:49:33] [PASSED] ttm_resource_fini_basic
[05:49:33] [PASSED] ttm_resource_manager_init_basic
[05:49:33] [PASSED] ttm_resource_manager_usage_basic
[05:49:33] [PASSED] ttm_resource_manager_set_used_basic
[05:49:33] [PASSED] ttm_sys_man_alloc_basic
[05:49:33] [PASSED] ttm_sys_man_free_basic
[05:49:33] ================== [PASSED] ttm_resource ===================
[05:49:33] =================== ttm_tt (15 subtests) ===================
[05:49:33] ==================== ttm_tt_init_basic ====================
[05:49:33] [PASSED] Page-aligned size
[05:49:33] [PASSED] Extra pages requested
[05:49:33] ================ [PASSED] ttm_tt_init_basic ================
[05:49:33] [PASSED] ttm_tt_init_misaligned
[05:49:33] [PASSED] ttm_tt_fini_basic
[05:49:33] [PASSED] ttm_tt_fini_sg
[05:49:33] [PASSED] ttm_tt_fini_shmem
[05:49:33] [PASSED] ttm_tt_create_basic
[05:49:33] [PASSED] ttm_tt_create_invalid_bo_type
[05:49:33] [PASSED] ttm_tt_create_ttm_exists
[05:49:33] [PASSED] ttm_tt_create_failed
[05:49:33] [PASSED] ttm_tt_destroy_basic
[05:49:33] [PASSED] ttm_tt_populate_null_ttm
[05:49:33] [PASSED] ttm_tt_populate_populated_ttm
[05:49:33] [PASSED] ttm_tt_unpopulate_basic
[05:49:33] [PASSED] ttm_tt_unpopulate_empty_ttm
[05:49:33] [PASSED] ttm_tt_swapin_basic
[05:49:33] ===================== [PASSED] ttm_tt ======================
[05:49:33] =================== ttm_bo (14 subtests) ===================
[05:49:33] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[05:49:33] [PASSED] Cannot be interrupted and sleeps
[05:49:33] [PASSED] Cannot be interrupted, locks straight away
[05:49:33] [PASSED] Can be interrupted, sleeps
[05:49:33] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[05:49:33] [PASSED] ttm_bo_reserve_locked_no_sleep
[05:49:33] [PASSED] ttm_bo_reserve_no_wait_ticket
[05:49:33] [PASSED] ttm_bo_reserve_double_resv
[05:49:33] [PASSED] ttm_bo_reserve_interrupted
[05:49:33] [PASSED] ttm_bo_reserve_deadlock
[05:49:33] [PASSED] ttm_bo_unreserve_basic
[05:49:33] [PASSED] ttm_bo_unreserve_pinned
[05:49:33] [PASSED] ttm_bo_unreserve_bulk
[05:49:33] [PASSED] ttm_bo_put_basic
[05:49:33] [PASSED] ttm_bo_put_shared_resv
[05:49:33] [PASSED] ttm_bo_pin_basic
[05:49:33] [PASSED] ttm_bo_pin_unpin_resource
[05:49:33] [PASSED] ttm_bo_multiple_pin_one_unpin
[05:49:33] ===================== [PASSED] ttm_bo ======================
[05:49:33] ============== ttm_bo_validate (22 subtests) ===============
[05:49:33] ============== ttm_bo_init_reserved_sys_man ===============
[05:49:33] [PASSED] Buffer object for userspace
[05:49:33] [PASSED] Kernel buffer object
[05:49:33] [PASSED] Shared buffer object
[05:49:33] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[05:49:33] ============== ttm_bo_init_reserved_mock_man ==============
[05:49:33] [PASSED] Buffer object for userspace
[05:49:33] [PASSED] Kernel buffer object
[05:49:33] [PASSED] Shared buffer object
[05:49:33] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[05:49:33] [PASSED] ttm_bo_init_reserved_resv
[05:49:33] ================== ttm_bo_validate_basic ==================
[05:49:33] [PASSED] Buffer object for userspace
[05:49:33] [PASSED] Kernel buffer object
[05:49:33] [PASSED] Shared buffer object
[05:49:33] ============== [PASSED] ttm_bo_validate_basic ==============
[05:49:33] [PASSED] ttm_bo_validate_invalid_placement
[05:49:33] ============= ttm_bo_validate_same_placement ==============
[05:49:33] [PASSED] System manager
[05:49:33] [PASSED] VRAM manager
[05:49:33] ========= [PASSED] ttm_bo_validate_same_placement ==========
[05:49:33] [PASSED] ttm_bo_validate_failed_alloc
[05:49:33] [PASSED] ttm_bo_validate_pinned
[05:49:33] [PASSED] ttm_bo_validate_busy_placement
[05:49:33] ================ ttm_bo_validate_multihop =================
[05:49:33] [PASSED] Buffer object for userspace
[05:49:33] [PASSED] Kernel buffer object
[05:49:33] [PASSED] Shared buffer object
[05:49:33] ============ [PASSED] ttm_bo_validate_multihop =============
[05:49:33] ========== ttm_bo_validate_no_placement_signaled ==========
[05:49:33] [PASSED] Buffer object in system domain, no page vector
[05:49:33] [PASSED] Buffer object in system domain with an existing page vector
[05:49:33] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[05:49:33] ======== ttm_bo_validate_no_placement_not_signaled ========
[05:49:33] [PASSED] Buffer object for userspace
[05:49:33] [PASSED] Kernel buffer object
[05:49:33] [PASSED] Shared buffer object
[05:49:33] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[05:49:33] [PASSED] ttm_bo_validate_move_fence_signaled
[05:49:33] ========= ttm_bo_validate_move_fence_not_signaled =========
[05:49:33] [PASSED] Waits for GPU
[05:49:33] [PASSED] Tries to lock straight away
[05:49:33] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[05:49:33] [PASSED] ttm_bo_validate_swapout
[05:49:33] [PASSED] ttm_bo_validate_happy_evict
[05:49:33] [PASSED] ttm_bo_validate_all_pinned_evict
[05:49:33] [PASSED] ttm_bo_validate_allowed_only_evict
[05:49:33] [PASSED] ttm_bo_validate_deleted_evict
[05:49:33] [PASSED] ttm_bo_validate_busy_domain_evict
[05:49:33] [PASSED] ttm_bo_validate_evict_gutting
[05:49:33] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[05:49:33] ================= [PASSED] ttm_bo_validate =================
[05:49:33] ============================================================
[05:49:33] Testing complete. Ran 102 tests: passed: 102
[05:49:33] Elapsed time: 10.027s total, 1.677s configuring, 7.734s building, 0.509s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [RESEND 1/1] drm/i915/dp: Refine TPS4-based HBR3 rejection and add quirk to limit eDP to HBR2
2025-07-06 5:31 ` [RESEND " Ankit Nautiyal
@ 2025-07-08 14:14 ` Ville Syrjälä
2025-07-08 15:13 ` Nautiyal, Ankit K
0 siblings, 1 reply; 11+ messages in thread
From: Ville Syrjälä @ 2025-07-08 14:14 UTC (permalink / raw)
To: Ankit Nautiyal; +Cc: intel-gfx, intel-xe, jani.nikula, stable
On Sun, Jul 06, 2025 at 11:01:49AM +0530, Ankit Nautiyal wrote:
> Refine the logic introduced in commit 584cf613c24a ("drm/i915/dp: Reject
> HBR3 when sink doesn't support TPS4") to allow HBR3 on eDP panels that
> report DPCD revision 1.4, even if TPS4 is not supported. This aligns with
> the DisplayPort specification, which does not mandate TPS4 support for eDP
> with DPCD rev 1.4.
>
> This change avoids regressions on panels that require HBR3 to operate at
> their native resolution but do not advertise TPS4 support.
>
> Additionally, some ICL/TGL platforms with combo PHY ports suffer from
> signal integrity issues at HBR3. While certain systems include a
> Parade PS8461 mux to mitigate this, its presence cannot be reliably
> detected. Furthermore, broken or missing VBT entries make it unsafe to
> rely on VBT for enforcing link rate limits.
>
> To address the HBR3-related issues on such platforms and eDP panels,
> introduce a device specific quirk to cap the eDP link rate to HBR2
> (540000 kHz). This will override any higher advertised rates from
> the sink or DPCD for specific devices.
>
> Currently, the quirk is added for Dell XPS 13 7390 2-in-1 which is
> reported in gitlab issue #5969 [1].
>
> [1] https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5969
> [2] https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14517
>
> Fixes: 584cf613c24a ("drm/i915/dp: Reject HBR3 when sink doesn't support TPS4")
> Cc: Jani Nikula <jani.nikula@linux.intel.com>
> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> Cc: <stable@vger.kernel.org> # v6.15+
> Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5969
> Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14517
> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_dp.c | 31 +++++++++++++++++++--
> drivers/gpu/drm/i915/display/intel_quirks.c | 9 ++++++
> drivers/gpu/drm/i915/display/intel_quirks.h | 1 +
> 3 files changed, 39 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
> index f48912f308df..362e376fca27 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> @@ -171,6 +171,15 @@ int intel_dp_link_symbol_clock(int rate)
> return DIV_ROUND_CLOSEST(rate * 10, intel_dp_link_symbol_size(rate));
> }
>
> +static bool intel_dp_reject_hbr3_due_to_tps4(struct intel_dp *intel_dp)
> +{
> + /* TPS4 is not mandatory for eDP with DPCD rev 1.4 */
> + if (intel_dp_is_edp(intel_dp) && intel_dp->dpcd[DP_DPCD_REV] == 0x14)
> + return false;
> +
> + return !drm_dp_tps4_supported(intel_dp->dpcd);
> +}
This feels like it's getty too messy for comfort. I think we should just
revert the whole thing and quirk that one icl machine.
> +
> static int max_dprx_rate(struct intel_dp *intel_dp)
> {
> struct intel_display *display = to_intel_display(intel_dp);
> @@ -187,13 +196,22 @@ static int max_dprx_rate(struct intel_dp *intel_dp)
> * HBR3 without TPS4, and are unable to produce a stable
> * output. Reject HBR3 when TPS4 is not available.
> */
> - if (max_rate >= 810000 && !drm_dp_tps4_supported(intel_dp->dpcd)) {
> + if (max_rate >= 810000 && intel_dp_reject_hbr3_due_to_tps4(intel_dp)) {
> drm_dbg_kms(display->drm,
> "[ENCODER:%d:%s] Rejecting HBR3 due to missing TPS4 support\n",
> encoder->base.base.id, encoder->base.name);
> max_rate = 540000;
> }
>
> + /*
> + * Some platforms + eDP panels may not reliably support HBR3
> + * due to signal integrity limitations, despite advertising it.
> + * Cap the link rate to HBR2 to avoid unstable configurations for the
> + * known machines.
> + */
> + if (intel_dp_is_edp(intel_dp) && intel_has_quirk(display, QUIRK_EDP_LIMIT_RATE_HBR2))
> + max_rate = min(max_rate, 540000);
> +
> return max_rate;
> }
>
> @@ -4304,13 +4322,22 @@ intel_edp_set_sink_rates(struct intel_dp *intel_dp)
> * HBR3 without TPS4, and are unable to produce a stable
> * output. Reject HBR3 when TPS4 is not available.
> */
> - if (rate >= 810000 && !drm_dp_tps4_supported(intel_dp->dpcd)) {
> + if (rate >= 810000 && intel_dp_reject_hbr3_due_to_tps4(intel_dp)) {
> drm_dbg_kms(display->drm,
> "[ENCODER:%d:%s] Rejecting HBR3 due to missing TPS4 support\n",
> encoder->base.base.id, encoder->base.name);
> break;
> }
>
> + /*
> + * Some platforms cannot reliably drive HBR3 rates due to PHY limitations,
> + * even if the sink advertises support. Reject any sink rates above HBR2 on
> + * the known machines for stable output.
> + */
> + if (rate >= 810000 &&
> + intel_has_quirk(display, QUIRK_EDP_LIMIT_RATE_HBR2))
> + break;
> +
> intel_dp->sink_rates[i] = rate;
> }
> intel_dp->num_sink_rates = i;
> diff --git a/drivers/gpu/drm/i915/display/intel_quirks.c b/drivers/gpu/drm/i915/display/intel_quirks.c
> index a32fae510ed2..d2e16b79d6be 100644
> --- a/drivers/gpu/drm/i915/display/intel_quirks.c
> +++ b/drivers/gpu/drm/i915/display/intel_quirks.c
> @@ -80,6 +80,12 @@ static void quirk_fw_sync_len(struct intel_dp *intel_dp)
> drm_info(display->drm, "Applying Fast Wake sync pulse count quirk\n");
> }
>
> +static void quirk_edp_limit_rate_hbr2(struct intel_display *display)
> +{
> + intel_set_quirk(display, QUIRK_EDP_LIMIT_RATE_HBR2);
> + drm_info(display->drm, "Applying eDP Limit rate to HBR2 quirk\n");
> +}
> +
> struct intel_quirk {
> int device;
> int subsystem_vendor;
> @@ -231,6 +237,9 @@ static struct intel_quirk intel_quirks[] = {
> { 0x3184, 0x1019, 0xa94d, quirk_increase_ddi_disabled_time },
> /* HP Notebook - 14-r206nv */
> { 0x0f31, 0x103c, 0x220f, quirk_invert_brightness },
> +
> + /* Dell XPS 13 7390 2-in-1 */
> + { 0x8a12, 0x1028, 0x08b0, quirk_edp_limit_rate_hbr2 },
> };
>
> static const struct intel_dpcd_quirk intel_dpcd_quirks[] = {
> diff --git a/drivers/gpu/drm/i915/display/intel_quirks.h b/drivers/gpu/drm/i915/display/intel_quirks.h
> index cafdebda7535..06da0e286c67 100644
> --- a/drivers/gpu/drm/i915/display/intel_quirks.h
> +++ b/drivers/gpu/drm/i915/display/intel_quirks.h
> @@ -20,6 +20,7 @@ enum intel_quirk_id {
> QUIRK_LVDS_SSC_DISABLE,
> QUIRK_NO_PPS_BACKLIGHT_POWER_HOOK,
> QUIRK_FW_SYNC_LEN,
> + QUIRK_EDP_LIMIT_RATE_HBR2,
> };
>
> void intel_init_quirks(struct intel_display *display);
> --
> 2.45.2
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [RESEND 1/1] drm/i915/dp: Refine TPS4-based HBR3 rejection and add quirk to limit eDP to HBR2
2025-07-08 14:14 ` Ville Syrjälä
@ 2025-07-08 15:13 ` Nautiyal, Ankit K
2025-07-08 15:26 ` Ville Syrjälä
0 siblings, 1 reply; 11+ messages in thread
From: Nautiyal, Ankit K @ 2025-07-08 15:13 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-gfx, intel-xe, jani.nikula, stable
On 7/8/2025 7:44 PM, Ville Syrjälä wrote:
> On Sun, Jul 06, 2025 at 11:01:49AM +0530, Ankit Nautiyal wrote:
>> Refine the logic introduced in commit 584cf613c24a ("drm/i915/dp: Reject
>> HBR3 when sink doesn't support TPS4") to allow HBR3 on eDP panels that
>> report DPCD revision 1.4, even if TPS4 is not supported. This aligns with
>> the DisplayPort specification, which does not mandate TPS4 support for eDP
>> with DPCD rev 1.4.
>>
>> This change avoids regressions on panels that require HBR3 to operate at
>> their native resolution but do not advertise TPS4 support.
>>
>> Additionally, some ICL/TGL platforms with combo PHY ports suffer from
>> signal integrity issues at HBR3. While certain systems include a
>> Parade PS8461 mux to mitigate this, its presence cannot be reliably
>> detected. Furthermore, broken or missing VBT entries make it unsafe to
>> rely on VBT for enforcing link rate limits.
>>
>> To address the HBR3-related issues on such platforms and eDP panels,
>> introduce a device specific quirk to cap the eDP link rate to HBR2
>> (540000 kHz). This will override any higher advertised rates from
>> the sink or DPCD for specific devices.
>>
>> Currently, the quirk is added for Dell XPS 13 7390 2-in-1 which is
>> reported in gitlab issue #5969 [1].
>>
>> [1] https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5969
>> [2] https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14517
>>
>> Fixes: 584cf613c24a ("drm/i915/dp: Reject HBR3 when sink doesn't support TPS4")
>> Cc: Jani Nikula <jani.nikula@linux.intel.com>
>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
>> Cc: <stable@vger.kernel.org> # v6.15+
>> Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5969
>> Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14517
>> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
>> ---
>> drivers/gpu/drm/i915/display/intel_dp.c | 31 +++++++++++++++++++--
>> drivers/gpu/drm/i915/display/intel_quirks.c | 9 ++++++
>> drivers/gpu/drm/i915/display/intel_quirks.h | 1 +
>> 3 files changed, 39 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
>> index f48912f308df..362e376fca27 100644
>> --- a/drivers/gpu/drm/i915/display/intel_dp.c
>> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
>> @@ -171,6 +171,15 @@ int intel_dp_link_symbol_clock(int rate)
>> return DIV_ROUND_CLOSEST(rate * 10, intel_dp_link_symbol_size(rate));
>> }
>>
>> +static bool intel_dp_reject_hbr3_due_to_tps4(struct intel_dp *intel_dp)
>> +{
>> + /* TPS4 is not mandatory for eDP with DPCD rev 1.4 */
>> + if (intel_dp_is_edp(intel_dp) && intel_dp->dpcd[DP_DPCD_REV] == 0x14)
>> + return false;
>> +
>> + return !drm_dp_tps4_supported(intel_dp->dpcd);
>> +}
> This feels like it's getty too messy for comfort. I think we should just
> revert the whole thing and quirk that one icl machine.
Alright sure.
Can this be done is same patch, I mean no need for a revert and a
separate quirk patch, right?
Regards,
Ankit
>
>> +
>> static int max_dprx_rate(struct intel_dp *intel_dp)
>> {
>> struct intel_display *display = to_intel_display(intel_dp);
>> @@ -187,13 +196,22 @@ static int max_dprx_rate(struct intel_dp *intel_dp)
>> * HBR3 without TPS4, and are unable to produce a stable
>> * output. Reject HBR3 when TPS4 is not available.
>> */
>> - if (max_rate >= 810000 && !drm_dp_tps4_supported(intel_dp->dpcd)) {
>> + if (max_rate >= 810000 && intel_dp_reject_hbr3_due_to_tps4(intel_dp)) {
>> drm_dbg_kms(display->drm,
>> "[ENCODER:%d:%s] Rejecting HBR3 due to missing TPS4 support\n",
>> encoder->base.base.id, encoder->base.name);
>> max_rate = 540000;
>> }
>>
>> + /*
>> + * Some platforms + eDP panels may not reliably support HBR3
>> + * due to signal integrity limitations, despite advertising it.
>> + * Cap the link rate to HBR2 to avoid unstable configurations for the
>> + * known machines.
>> + */
>> + if (intel_dp_is_edp(intel_dp) && intel_has_quirk(display, QUIRK_EDP_LIMIT_RATE_HBR2))
>> + max_rate = min(max_rate, 540000);
>> +
>> return max_rate;
>> }
>>
>> @@ -4304,13 +4322,22 @@ intel_edp_set_sink_rates(struct intel_dp *intel_dp)
>> * HBR3 without TPS4, and are unable to produce a stable
>> * output. Reject HBR3 when TPS4 is not available.
>> */
>> - if (rate >= 810000 && !drm_dp_tps4_supported(intel_dp->dpcd)) {
>> + if (rate >= 810000 && intel_dp_reject_hbr3_due_to_tps4(intel_dp)) {
>> drm_dbg_kms(display->drm,
>> "[ENCODER:%d:%s] Rejecting HBR3 due to missing TPS4 support\n",
>> encoder->base.base.id, encoder->base.name);
>> break;
>> }
>>
>> + /*
>> + * Some platforms cannot reliably drive HBR3 rates due to PHY limitations,
>> + * even if the sink advertises support. Reject any sink rates above HBR2 on
>> + * the known machines for stable output.
>> + */
>> + if (rate >= 810000 &&
>> + intel_has_quirk(display, QUIRK_EDP_LIMIT_RATE_HBR2))
>> + break;
>> +
>> intel_dp->sink_rates[i] = rate;
>> }
>> intel_dp->num_sink_rates = i;
>> diff --git a/drivers/gpu/drm/i915/display/intel_quirks.c b/drivers/gpu/drm/i915/display/intel_quirks.c
>> index a32fae510ed2..d2e16b79d6be 100644
>> --- a/drivers/gpu/drm/i915/display/intel_quirks.c
>> +++ b/drivers/gpu/drm/i915/display/intel_quirks.c
>> @@ -80,6 +80,12 @@ static void quirk_fw_sync_len(struct intel_dp *intel_dp)
>> drm_info(display->drm, "Applying Fast Wake sync pulse count quirk\n");
>> }
>>
>> +static void quirk_edp_limit_rate_hbr2(struct intel_display *display)
>> +{
>> + intel_set_quirk(display, QUIRK_EDP_LIMIT_RATE_HBR2);
>> + drm_info(display->drm, "Applying eDP Limit rate to HBR2 quirk\n");
>> +}
>> +
>> struct intel_quirk {
>> int device;
>> int subsystem_vendor;
>> @@ -231,6 +237,9 @@ static struct intel_quirk intel_quirks[] = {
>> { 0x3184, 0x1019, 0xa94d, quirk_increase_ddi_disabled_time },
>> /* HP Notebook - 14-r206nv */
>> { 0x0f31, 0x103c, 0x220f, quirk_invert_brightness },
>> +
>> + /* Dell XPS 13 7390 2-in-1 */
>> + { 0x8a12, 0x1028, 0x08b0, quirk_edp_limit_rate_hbr2 },
>> };
>>
>> static const struct intel_dpcd_quirk intel_dpcd_quirks[] = {
>> diff --git a/drivers/gpu/drm/i915/display/intel_quirks.h b/drivers/gpu/drm/i915/display/intel_quirks.h
>> index cafdebda7535..06da0e286c67 100644
>> --- a/drivers/gpu/drm/i915/display/intel_quirks.h
>> +++ b/drivers/gpu/drm/i915/display/intel_quirks.h
>> @@ -20,6 +20,7 @@ enum intel_quirk_id {
>> QUIRK_LVDS_SSC_DISABLE,
>> QUIRK_NO_PPS_BACKLIGHT_POWER_HOOK,
>> QUIRK_FW_SYNC_LEN,
>> + QUIRK_EDP_LIMIT_RATE_HBR2,
>> };
>>
>> void intel_init_quirks(struct intel_display *display);
>> --
>> 2.45.2
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [RESEND 1/1] drm/i915/dp: Refine TPS4-based HBR3 rejection and add quirk to limit eDP to HBR2
2025-07-08 15:13 ` Nautiyal, Ankit K
@ 2025-07-08 15:26 ` Ville Syrjälä
0 siblings, 0 replies; 11+ messages in thread
From: Ville Syrjälä @ 2025-07-08 15:26 UTC (permalink / raw)
To: Nautiyal, Ankit K; +Cc: intel-gfx, intel-xe, jani.nikula, stable
On Tue, Jul 08, 2025 at 08:43:37PM +0530, Nautiyal, Ankit K wrote:
>
> On 7/8/2025 7:44 PM, Ville Syrjälä wrote:
> > On Sun, Jul 06, 2025 at 11:01:49AM +0530, Ankit Nautiyal wrote:
> >> Refine the logic introduced in commit 584cf613c24a ("drm/i915/dp: Reject
> >> HBR3 when sink doesn't support TPS4") to allow HBR3 on eDP panels that
> >> report DPCD revision 1.4, even if TPS4 is not supported. This aligns with
> >> the DisplayPort specification, which does not mandate TPS4 support for eDP
> >> with DPCD rev 1.4.
> >>
> >> This change avoids regressions on panels that require HBR3 to operate at
> >> their native resolution but do not advertise TPS4 support.
> >>
> >> Additionally, some ICL/TGL platforms with combo PHY ports suffer from
> >> signal integrity issues at HBR3. While certain systems include a
> >> Parade PS8461 mux to mitigate this, its presence cannot be reliably
> >> detected. Furthermore, broken or missing VBT entries make it unsafe to
> >> rely on VBT for enforcing link rate limits.
> >>
> >> To address the HBR3-related issues on such platforms and eDP panels,
> >> introduce a device specific quirk to cap the eDP link rate to HBR2
> >> (540000 kHz). This will override any higher advertised rates from
> >> the sink or DPCD for specific devices.
> >>
> >> Currently, the quirk is added for Dell XPS 13 7390 2-in-1 which is
> >> reported in gitlab issue #5969 [1].
> >>
> >> [1] https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5969
> >> [2] https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14517
> >>
> >> Fixes: 584cf613c24a ("drm/i915/dp: Reject HBR3 when sink doesn't support TPS4")
> >> Cc: Jani Nikula <jani.nikula@linux.intel.com>
> >> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> >> Cc: <stable@vger.kernel.org> # v6.15+
> >> Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5969
> >> Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14517
> >> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> >> ---
> >> drivers/gpu/drm/i915/display/intel_dp.c | 31 +++++++++++++++++++--
> >> drivers/gpu/drm/i915/display/intel_quirks.c | 9 ++++++
> >> drivers/gpu/drm/i915/display/intel_quirks.h | 1 +
> >> 3 files changed, 39 insertions(+), 2 deletions(-)
> >>
> >> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
> >> index f48912f308df..362e376fca27 100644
> >> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> >> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> >> @@ -171,6 +171,15 @@ int intel_dp_link_symbol_clock(int rate)
> >> return DIV_ROUND_CLOSEST(rate * 10, intel_dp_link_symbol_size(rate));
> >> }
> >>
> >> +static bool intel_dp_reject_hbr3_due_to_tps4(struct intel_dp *intel_dp)
> >> +{
> >> + /* TPS4 is not mandatory for eDP with DPCD rev 1.4 */
> >> + if (intel_dp_is_edp(intel_dp) && intel_dp->dpcd[DP_DPCD_REV] == 0x14)
> >> + return false;
> >> +
> >> + return !drm_dp_tps4_supported(intel_dp->dpcd);
> >> +}
> > This feels like it's getty too messy for comfort. I think we should just
> > revert the whole thing and quirk that one icl machine.
>
> Alright sure.
>
> Can this be done is same patch, I mean no need for a revert and a
> separate quirk patch, right?
Separate revert seems cleaner to me. And then one can actually
backport the quirk without having to also backport the already
reverted commit. Though I haven't checked how far the bad commit
already got backported.
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2025-07-08 15:26 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-27 8:40 [PATCH 0/1] Revert patch to reject HBR3 for all eDP panels Ankit Nautiyal
2025-06-27 8:40 ` [PATCH 1/1] drm/i915/dp: Refine TPS4-based HBR3 rejection and add quirk to limit eDP to HBR2 Ankit Nautiyal
2025-06-27 9:05 ` Nautiyal, Ankit K
2025-07-06 5:31 ` [RESEND " Ankit Nautiyal
2025-07-08 14:14 ` Ville Syrjälä
2025-07-08 15:13 ` Nautiyal, Ankit K
2025-07-08 15:26 ` Ville Syrjälä
2025-06-30 13:02 ` ✓ CI.KUnit: success for Revert patch to reject HBR3 for all eDP panels (rev3) Patchwork
2025-06-30 13:56 ` ✓ Xe.CI.BAT: " Patchwork
2025-07-01 14:32 ` ✓ Xe.CI.Full: " Patchwork
2025-07-06 5:49 ` ✓ CI.KUnit: success for Revert patch to reject HBR3 for all eDP panels (rev4) Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox