* [PATCH v2 01/14] drm/i915/cdclk: Don't bail if pcode post nofify fails
2026-08-26 13:40 [PATCH v2 00/14] drm/i915/cdclk: cdclk pcode related fixes and refactoring Ville Syrjala
@ 2026-08-26 13:40 ` Ville Syrjala
2026-08-26 13:40 ` [PATCH v2 02/14] drm/i915/cdclk: Pass CDCLK in MHz to pcode on DG2 Ville Syrjala
` (15 subsequent siblings)
16 siblings, 0 replies; 20+ messages in thread
From: Ville Syrjala @ 2026-08-26 13:40 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
We already changed the actual cdclk frequency by the time we do
the pcode post notify. So skipping the subsequent readout is plain
wrong.
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_cdclk.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c
index 75ada941d113..c3206c9de239 100644
--- a/drivers/gpu/drm/i915/display/intel_cdclk.c
+++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
@@ -2328,12 +2328,10 @@ static void bxt_set_cdclk(struct intel_display *display,
HSW_PCODE_DE_WRITE_FREQ_REQ,
cdclk_config->voltage_level, 2);
}
- if (ret) {
+ if (ret)
drm_err(display->drm,
"PCode CDCLK freq set failed, (err %d, freq %d)\n",
ret, cdclk);
- return;
- }
intel_update_cdclk(display);
--
2.54.0
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH v2 02/14] drm/i915/cdclk: Pass CDCLK in MHz to pcode on DG2
2026-08-26 13:40 [PATCH v2 00/14] drm/i915/cdclk: cdclk pcode related fixes and refactoring Ville Syrjala
2026-08-26 13:40 ` [PATCH v2 01/14] drm/i915/cdclk: Don't bail if pcode post nofify fails Ville Syrjala
@ 2026-08-26 13:40 ` Ville Syrjala
2026-08-26 13:40 ` [PATCH v2 03/14] drm/i915/cdclk: Do the DG2 CDCLK/pipe power well notify properly Ville Syrjala
` (14 subsequent siblings)
16 siblings, 0 replies; 20+ messages in thread
From: Ville Syrjala @ 2026-08-26 13:40 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
We are currently trying to pass the CDCLK in kHz to the pcode
on DG2, while the pcode expects a value in MHz units. Adjust
the units appropriately.
v2: Call it 'cdclk_mhz' (Jani)
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_cdclk.c | 25 +++++++++++++++-------
1 file changed, 17 insertions(+), 8 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c
index c3206c9de239..308bcdd01699 100644
--- a/drivers/gpu/drm/i915/display/intel_cdclk.c
+++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
@@ -2730,8 +2730,9 @@ static void intel_cdclk_pcode_pre_notify(struct intel_atomic_state *state)
intel_atomic_get_old_cdclk_state(state);
const struct intel_cdclk_state *new_cdclk_state =
intel_atomic_get_new_cdclk_state(state);
- unsigned int cdclk = 0; u8 voltage_level, num_active_pipes = 0;
+ u8 voltage_level, num_active_pipes = 0;
bool change_cdclk, update_pipe_count;
+ unsigned int cdclk_mhz = 0;
if (!intel_cdclk_changed(&old_cdclk_state->actual,
&new_cdclk_state->actual) &&
@@ -2752,8 +2753,12 @@ static void intel_cdclk_pcode_pre_notify(struct intel_atomic_state *state)
* if CDCLK is decreasing or not changing, set bits 25:16 to current CDCLK,
* which basically means we choose the maximum of old and new CDCLK, if we know both
*/
- if (change_cdclk)
- cdclk = max(new_cdclk_state->actual.cdclk, old_cdclk_state->actual.cdclk);
+ if (change_cdclk) {
+ unsigned int cdclk = max(new_cdclk_state->actual.cdclk,
+ old_cdclk_state->actual.cdclk);
+
+ cdclk_mhz = DIV_ROUND_UP(cdclk, 1000);
+ }
/*
* According to "Sequence For Pipe Count Change",
@@ -2764,7 +2769,7 @@ static void intel_cdclk_pcode_pre_notify(struct intel_atomic_state *state)
if (update_pipe_count)
num_active_pipes = dg2_power_well_count(display, new_cdclk_state);
- intel_pcode_notify(display, voltage_level, num_active_pipes, cdclk,
+ intel_pcode_notify(display, voltage_level, num_active_pipes, cdclk_mhz,
change_cdclk, update_pipe_count);
}
@@ -2775,8 +2780,9 @@ static void intel_cdclk_pcode_post_notify(struct intel_atomic_state *state)
intel_atomic_get_new_cdclk_state(state);
const struct intel_cdclk_state *old_cdclk_state =
intel_atomic_get_old_cdclk_state(state);
- unsigned int cdclk = 0; u8 voltage_level, num_active_pipes = 0;
+ u8 voltage_level, num_active_pipes = 0;
bool update_cdclk, update_pipe_count;
+ unsigned int cdclk_mhz = 0;
/* According to "Sequence After Frequency Change", set voltage to used level */
voltage_level = new_cdclk_state->actual.voltage_level;
@@ -2789,8 +2795,11 @@ static void intel_cdclk_pcode_post_notify(struct intel_atomic_state *state)
* According to "Sequence After Frequency Change",
* set bits 25:16 to current CDCLK
*/
- if (update_cdclk)
- cdclk = new_cdclk_state->actual.cdclk;
+ if (update_cdclk) {
+ unsigned int cdclk = new_cdclk_state->actual.cdclk;
+
+ cdclk_mhz = DIV_ROUND_UP(cdclk, 1000);
+ }
/*
* According to "Sequence For Pipe Count Change",
@@ -2801,7 +2810,7 @@ static void intel_cdclk_pcode_post_notify(struct intel_atomic_state *state)
if (update_pipe_count)
num_active_pipes = dg2_power_well_count(display, new_cdclk_state);
- intel_pcode_notify(display, voltage_level, num_active_pipes, cdclk,
+ intel_pcode_notify(display, voltage_level, num_active_pipes, cdclk_mhz,
update_cdclk, update_pipe_count);
}
--
2.54.0
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH v2 03/14] drm/i915/cdclk: Do the DG2 CDCLK/pipe power well notify properly
2026-08-26 13:40 [PATCH v2 00/14] drm/i915/cdclk: cdclk pcode related fixes and refactoring Ville Syrjala
2026-08-26 13:40 ` [PATCH v2 01/14] drm/i915/cdclk: Don't bail if pcode post nofify fails Ville Syrjala
2026-08-26 13:40 ` [PATCH v2 02/14] drm/i915/cdclk: Pass CDCLK in MHz to pcode on DG2 Ville Syrjala
@ 2026-08-26 13:40 ` Ville Syrjala
2026-08-26 13:40 ` [PATCH v2 04/14] drm/i915/cdclk: Notify DG2 pcode about pipe power wells regardless of CDCLK Ville Syrjala
` (13 subsequent siblings)
16 siblings, 0 replies; 20+ messages in thread
From: Ville Syrjala @ 2026-08-26 13:40 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
The pcode post notify needs to happen after the CDCLK has been
changed, not before. Also move the pre_notify call a bit for the
sake of symmetry.
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_cdclk.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c
index 308bcdd01699..37b1bdaa78d4 100644
--- a/drivers/gpu/drm/i915/display/intel_cdclk.c
+++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
@@ -2850,9 +2850,6 @@ intel_set_cdclk_pre_plane_update(struct intel_atomic_state *state)
&new_cdclk_state->actual))
return;
- if (display->platform.dg2)
- intel_cdclk_pcode_pre_notify(state);
-
if (new_cdclk_state->disable_pipes) {
cdclk_config = new_cdclk_state->actual;
pipe = INVALID_PIPE;
@@ -2877,6 +2874,9 @@ intel_set_cdclk_pre_plane_update(struct intel_atomic_state *state)
drm_WARN_ON(display->drm, !new_cdclk_state->base.changed);
+ if (display->platform.dg2)
+ intel_cdclk_pcode_pre_notify(state);
+
intel_set_cdclk(display, &cdclk_config, pipe,
"Pre changing CDCLK to");
}
@@ -2905,9 +2905,6 @@ intel_set_cdclk_post_plane_update(struct intel_atomic_state *state)
&new_cdclk_state->actual))
return;
- if (display->platform.dg2)
- intel_cdclk_pcode_post_notify(state);
-
if (!new_cdclk_state->disable_pipes &&
new_cdclk_state->actual.cdclk < old_cdclk_state->actual.cdclk)
pipe = new_cdclk_state->pipe;
@@ -2918,6 +2915,9 @@ intel_set_cdclk_post_plane_update(struct intel_atomic_state *state)
intel_set_cdclk(display, &new_cdclk_state->actual, pipe,
"Post changing CDCLK to");
+
+ if (display->platform.dg2)
+ intel_cdclk_pcode_post_notify(state);
}
/* pixels per CDCLK */
--
2.54.0
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH v2 04/14] drm/i915/cdclk: Notify DG2 pcode about pipe power wells regardless of CDCLK
2026-08-26 13:40 [PATCH v2 00/14] drm/i915/cdclk: cdclk pcode related fixes and refactoring Ville Syrjala
` (2 preceding siblings ...)
2026-08-26 13:40 ` [PATCH v2 03/14] drm/i915/cdclk: Do the DG2 CDCLK/pipe power well notify properly Ville Syrjala
@ 2026-08-26 13:40 ` Ville Syrjala
2026-08-26 13:58 ` sashiko-bot
2026-08-26 13:40 ` [PATCH v2 05/14] drm/i915/cdclk: Stop forcing voltage level to 3 all the time on DG2 Ville Syrjala
` (12 subsequent siblings)
16 siblings, 1 reply; 20+ messages in thread
From: Ville Syrjala @ 2026-08-26 13:40 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
We're currently skipping the pcode notifies on DG2 if the CDCLK isn't
changing while the power well counts would still need updating.
Do the pcode notifications also for pure pipe power well changes.
The lower level intel_set_cdclk() will skip doing any real work if the
actual CDCLK stuff doesn't need to change, so it's fine to call it even
if only the power wells need updating.
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_cdclk.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c
index 37b1bdaa78d4..052274cd0e19 100644
--- a/drivers/gpu/drm/i915/display/intel_cdclk.c
+++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
@@ -2847,7 +2847,9 @@ intel_set_cdclk_pre_plane_update(struct intel_atomic_state *state)
return;
if (!intel_cdclk_changed(&old_cdclk_state->actual,
- &new_cdclk_state->actual))
+ &new_cdclk_state->actual) &&
+ dg2_power_well_count(display, old_cdclk_state) ==
+ dg2_power_well_count(display, new_cdclk_state))
return;
if (new_cdclk_state->disable_pipes) {
@@ -2902,7 +2904,9 @@ intel_set_cdclk_post_plane_update(struct intel_atomic_state *state)
return;
if (!intel_cdclk_changed(&old_cdclk_state->actual,
- &new_cdclk_state->actual))
+ &new_cdclk_state->actual) &&
+ dg2_power_well_count(display, old_cdclk_state) ==
+ dg2_power_well_count(display, new_cdclk_state))
return;
if (!new_cdclk_state->disable_pipes &&
--
2.54.0
^ permalink raw reply related [flat|nested] 20+ messages in thread* Re: [PATCH v2 04/14] drm/i915/cdclk: Notify DG2 pcode about pipe power wells regardless of CDCLK
2026-08-26 13:40 ` [PATCH v2 04/14] drm/i915/cdclk: Notify DG2 pcode about pipe power wells regardless of CDCLK Ville Syrjala
@ 2026-08-26 13:58 ` sashiko-bot
0 siblings, 0 replies; 20+ messages in thread
From: sashiko-bot @ 2026-08-26 13:58 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-xe, intel-gfx
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [High] The function `dg2_power_well_count` incorrectly returns a `bool` instead of an integer type, causing the active pipe count to be silently truncated to 1 for any multi-pipe configuration. This breaks the new equality checks introduced in this patch, preventing PCODE notifications during multi-pipe display transitions.
--
commit fcc366768f01016ec317b427777b27612fa4fe66
Author: Ville Syrjälä <ville.syrjala@linux.intel.com>
drm/i915/cdclk: Notify DG2 pcode about pipe power wells regardless of CDCLK
This patch updates the early return logic in CDCLK pre/post plane update
functions. It ensures DG2 pcode notifications are sent when pipe power well
counts change, even if the actual CDCLK remains unchanged.
> diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c
> index d96067d7346b7..570c257626066 100644
> --- a/drivers/gpu/drm/i915/display/intel_cdclk.c
> +++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
> @@ -2841,7 +2841,9 @@ intel_set_cdclk_pre_plane_update(struct intel_atomic_state *state)
> return;
>
> if (!intel_cdclk_changed(&old_cdclk_state->actual,
> - &new_cdclk_state->actual))
> + &new_cdclk_state->actual) &&
> + dg2_power_well_count(display, old_cdclk_state) ==
> + dg2_power_well_count(display, new_cdclk_state))
[Severity: High]
This isn't a bug introduced by this patch, but does this new equality check
work correctly given the return type of dg2_power_well_count()?
Looking at dg2_power_well_count() in intel_cdclk.c:
static bool dg2_power_well_count(struct intel_display *display,
const struct intel_cdclk_state *cdclk_state)
{
return display->platform.dg2 ? hweight8(cdclk_state->active_pipes) : 0;
}
Because it returns a bool instead of an integer type, any non-zero pipe count
returned by hweight8() will be truncated to 1 (true).
If a user transitions between non-zero active pipe counts (for example, going
from 1 to 2 pipes during a hotplug), the check will evaluate to true == true.
Could this falsely trigger the early return and skip the required pcode
notification on DG2?
[ ... ]
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260826134033.13976-1-ville.syrjala@linux.intel.com?part=4
^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH v2 05/14] drm/i915/cdclk: Stop forcing voltage level to 3 all the time on DG2
2026-08-26 13:40 [PATCH v2 00/14] drm/i915/cdclk: cdclk pcode related fixes and refactoring Ville Syrjala
` (3 preceding siblings ...)
2026-08-26 13:40 ` [PATCH v2 04/14] drm/i915/cdclk: Notify DG2 pcode about pipe power wells regardless of CDCLK Ville Syrjala
@ 2026-08-26 13:40 ` Ville Syrjala
2026-08-26 13:40 ` [PATCH v2 06/14] drm/i915/cdclk: Drop pointless platform check from bxt_set_cdclk() Ville Syrjala
` (11 subsequent siblings)
16 siblings, 0 replies; 20+ messages in thread
From: Ville Syrjala @ 2026-08-26 13:40 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
SKL_CDCLK_PREPARE_FOR_CHANGE == DISPLAY_TO_PCODE_VOLTAGE(3) so
we are currently forcing the voltage level to 3 all the time on
DG2. Remove SKL_CDCLK_PREPARE_FOR_CHANGE from the mask to avoid
this.
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_cdclk.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c
index 052274cd0e19..e05b6e76363c 100644
--- a/drivers/gpu/drm/i915/display/intel_cdclk.c
+++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
@@ -2647,7 +2647,6 @@ static void intel_pcode_notify(struct intel_display *display,
update_mask |= DISPLAY_TO_PCODE_PIPE_COUNT_VALID;
ret = intel_parent_pcode_request(display, SKL_PCODE_CDCLK_CONTROL,
- SKL_CDCLK_PREPARE_FOR_CHANGE |
update_mask,
SKL_CDCLK_READY_FOR_CHANGE,
SKL_CDCLK_READY_FOR_CHANGE, 3);
--
2.54.0
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH v2 06/14] drm/i915/cdclk: Drop pointless platform check from bxt_set_cdclk()
2026-08-26 13:40 [PATCH v2 00/14] drm/i915/cdclk: cdclk pcode related fixes and refactoring Ville Syrjala
` (4 preceding siblings ...)
2026-08-26 13:40 ` [PATCH v2 05/14] drm/i915/cdclk: Stop forcing voltage level to 3 all the time on DG2 Ville Syrjala
@ 2026-08-26 13:40 ` Ville Syrjala
2026-08-26 13:40 ` [PATCH v2 07/14] drm/i915/dg2: s/intel_/dg2_/ for DG2 specific stuff Ville Syrjala
` (10 subsequent siblings)
16 siblings, 0 replies; 20+ messages in thread
From: Ville Syrjala @ 2026-08-26 13:40 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Overwrite cdclk.hw.voltage_level from intel_update_cdclk() at the
end on bxt_set_cdclk() also on bxt/glk. While this isn't actually
necessary due to bxt/glk not having any extra DDI based voltage
level requirements, it does avoid one less silly 'if' in the code.
On icl+ the value derived by bxt_get_cdclk() may not be correct
if the voltage level was bumped up due to DDI requirements, thus
overwriting the assumed value is crucial there.
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_cdclk.c | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c
index e05b6e76363c..6453a7cc0cee 100644
--- a/drivers/gpu/drm/i915/display/intel_cdclk.c
+++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
@@ -2335,12 +2335,11 @@ static void bxt_set_cdclk(struct intel_display *display,
intel_update_cdclk(display);
- if (DISPLAY_VER(display) >= 11)
- /*
- * Can't read out the voltage level :(
- * Let's just assume everything is as expected.
- */
- display->cdclk.hw.voltage_level = cdclk_config->voltage_level;
+ /*
+ * Can't read out the voltage level :(
+ * Let's just assume everything is as expected.
+ */
+ display->cdclk.hw.voltage_level = cdclk_config->voltage_level;
}
static void bxt_sanitize_cdclk(struct intel_display *display)
--
2.54.0
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH v2 07/14] drm/i915/dg2: s/intel_/dg2_/ for DG2 specific stuff
2026-08-26 13:40 [PATCH v2 00/14] drm/i915/cdclk: cdclk pcode related fixes and refactoring Ville Syrjala
` (5 preceding siblings ...)
2026-08-26 13:40 ` [PATCH v2 06/14] drm/i915/cdclk: Drop pointless platform check from bxt_set_cdclk() Ville Syrjala
@ 2026-08-26 13:40 ` Ville Syrjala
2026-08-26 13:52 ` sashiko-bot
2026-08-26 13:40 ` [PATCH v2 08/14] drm/i915/cdclk: Unify the pcode pre/post notify in bxt_set_cdclk() Ville Syrjala
` (9 subsequent siblings)
16 siblings, 1 reply; 20+ messages in thread
From: Ville Syrjala @ 2026-08-26 13:40 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
intel_pcode_*notify() are all DG2 specific code. Rename them
to have a dg2_ namespace.
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_cdclk.c | 31 ++++++++++------------
1 file changed, 14 insertions(+), 17 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c
index 6453a7cc0cee..5334abbaaed8 100644
--- a/drivers/gpu/drm/i915/display/intel_cdclk.c
+++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
@@ -2624,19 +2624,16 @@ void intel_cdclk_dump_config(struct intel_display *display,
cdclk_config->voltage_level);
}
-static void intel_pcode_notify(struct intel_display *display,
- u8 voltage_level,
- u8 active_pipe_count,
- u16 cdclk,
- bool cdclk_update_valid,
- bool pipe_count_update_valid)
+static void dg2_cdclk_pcode_notify(struct intel_display *display,
+ u8 voltage_level,
+ u8 active_pipe_count,
+ u16 cdclk,
+ bool cdclk_update_valid,
+ bool pipe_count_update_valid)
{
int ret;
u32 update_mask = 0;
- if (!display->platform.dg2)
- return;
-
update_mask = DISPLAY_TO_PCODE_UPDATE_MASK(cdclk, active_pipe_count, voltage_level);
if (cdclk_update_valid)
@@ -2721,7 +2718,7 @@ static bool dg2_power_well_count(struct intel_display *display,
return display->platform.dg2 ? hweight8(cdclk_state->active_pipes) : 0;
}
-static void intel_cdclk_pcode_pre_notify(struct intel_atomic_state *state)
+static void dg2_cdclk_pcode_pre_notify(struct intel_atomic_state *state)
{
struct intel_display *display = to_intel_display(state);
const struct intel_cdclk_state *old_cdclk_state =
@@ -2767,11 +2764,11 @@ static void intel_cdclk_pcode_pre_notify(struct intel_atomic_state *state)
if (update_pipe_count)
num_active_pipes = dg2_power_well_count(display, new_cdclk_state);
- intel_pcode_notify(display, voltage_level, num_active_pipes, cdclk_mhz,
- change_cdclk, update_pipe_count);
+ dg2_cdclk_pcode_notify(display, voltage_level, num_active_pipes, cdclk_mhz,
+ change_cdclk, update_pipe_count);
}
-static void intel_cdclk_pcode_post_notify(struct intel_atomic_state *state)
+static void dg2_cdclk_pcode_post_notify(struct intel_atomic_state *state)
{
struct intel_display *display = to_intel_display(state);
const struct intel_cdclk_state *new_cdclk_state =
@@ -2808,8 +2805,8 @@ static void intel_cdclk_pcode_post_notify(struct intel_atomic_state *state)
if (update_pipe_count)
num_active_pipes = dg2_power_well_count(display, new_cdclk_state);
- intel_pcode_notify(display, voltage_level, num_active_pipes, cdclk_mhz,
- update_cdclk, update_pipe_count);
+ dg2_cdclk_pcode_notify(display, voltage_level, num_active_pipes, cdclk_mhz,
+ update_cdclk, update_pipe_count);
}
bool intel_cdclk_is_decreasing_later(struct intel_atomic_state *state)
@@ -2875,7 +2872,7 @@ intel_set_cdclk_pre_plane_update(struct intel_atomic_state *state)
drm_WARN_ON(display->drm, !new_cdclk_state->base.changed);
if (display->platform.dg2)
- intel_cdclk_pcode_pre_notify(state);
+ dg2_cdclk_pcode_pre_notify(state);
intel_set_cdclk(display, &cdclk_config, pipe,
"Pre changing CDCLK to");
@@ -2919,7 +2916,7 @@ intel_set_cdclk_post_plane_update(struct intel_atomic_state *state)
"Post changing CDCLK to");
if (display->platform.dg2)
- intel_cdclk_pcode_post_notify(state);
+ dg2_cdclk_pcode_post_notify(state);
}
/* pixels per CDCLK */
--
2.54.0
^ permalink raw reply related [flat|nested] 20+ messages in thread* Re: [PATCH v2 07/14] drm/i915/dg2: s/intel_/dg2_/ for DG2 specific stuff
2026-08-26 13:40 ` [PATCH v2 07/14] drm/i915/dg2: s/intel_/dg2_/ for DG2 specific stuff Ville Syrjala
@ 2026-08-26 13:52 ` sashiko-bot
0 siblings, 0 replies; 20+ messages in thread
From: sashiko-bot @ 2026-08-26 13:52 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-xe, intel-gfx
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [High] The function `dg2_power_well_count` calculates the number of active pipes using `hweight8`, but incorrectly returns a `bool` instead of an integer type. This silently truncates multi-pipe counts (e.g., 2, 3, 4) to 1 (`true`), breaking change detection logic and passing incorrect active pipe counts to PCODE.
--
commit 2a634fe51c790d63b4660ef53fd78180cce30920
Author: Ville Syrjälä <ville.syrjala@linux.intel.com>
drm/i915/dg2: s/intel_/dg2_/ for DG2 specific stuff
This commit renames DG2-specific functions in intel_cdclk.c to use the dg2_
namespace. It updates intel_pcode_*notify() functions to
dg2_cdclk_pcode_notify() and its pre/post variants.
> diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c
> index 1712ddea87dee..d59b187ef5365 100644
> --- a/drivers/gpu/drm/i915/display/intel_cdclk.c
> +++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
[ ... ]
> @@ -2715,7 +2712,7 @@ static bool dg2_power_well_count(struct intel_display *display,
> return display->platform.dg2 ? hweight8(cdclk_state->active_pipes) : 0;
> }
[Severity: High]
This isn't a bug introduced by this patch, but is it intentional that
dg2_power_well_count returns a bool rather than an integer type?
Since the function uses hweight8 to count the active pipes, returning a bool
silently truncates multi-pipe counts (e.g., 2, 3, 4) to 1 (true). This seems
to break change detection logic and pass incorrect active pipe counts to
PCODE.
Because the pipe count is coerced to a boolean, transitions from 1 pipe to 2
pipes evaluate as true == true (causing the driver to incorrectly skip
notifying PCODE of the change) and true > true evaluates to false.
Furthermore, when PCODE is notified, it receives a maximum pipe count of 1.
Could this failure to notify PCODE of additional active pipes result in
display power starvation, hardware hangs, or malfunctioning multi-display
configurations on DG2 hardware?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260826134033.13976-1-ville.syrjala@linux.intel.com?part=7
^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH v2 08/14] drm/i915/cdclk: Unify the pcode pre/post notify in bxt_set_cdclk()
2026-08-26 13:40 [PATCH v2 00/14] drm/i915/cdclk: cdclk pcode related fixes and refactoring Ville Syrjala
` (6 preceding siblings ...)
2026-08-26 13:40 ` [PATCH v2 07/14] drm/i915/dg2: s/intel_/dg2_/ for DG2 specific stuff Ville Syrjala
@ 2026-08-26 13:40 ` Ville Syrjala
2026-08-26 13:40 ` [PATCH v2 09/14] drm/i915/cdclk: Unify pcode related debugs Ville Syrjala
` (8 subsequent siblings)
16 siblings, 0 replies; 20+ messages in thread
From: Ville Syrjala @ 2026-08-26 13:40 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
The control flow between the pcode pre and post notifications in
bxt_set_cdclk() is written in two different ways, even though
they end up doing the same thing. Unify the code.
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_cdclk.c | 16 ++++++----------
1 file changed, 6 insertions(+), 10 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c
index 5334abbaaed8..53d6cb05e467 100644
--- a/drivers/gpu/drm/i915/display/intel_cdclk.c
+++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
@@ -2264,7 +2264,7 @@ static void bxt_set_cdclk(struct intel_display *display,
{
struct intel_cdclk_config mid_cdclk_config;
int cdclk = cdclk_config->cdclk;
- int ret = 0;
+ int ret;
/*
* Inform power controller of upcoming frequency change.
@@ -2273,7 +2273,7 @@ static void bxt_set_cdclk(struct intel_display *display,
* this step.
*/
if (DISPLAY_VER(display) >= 14 || display->platform.dg2)
- ; /* NOOP */
+ ret = 0; /* NOOP */
else if (DISPLAY_VER(display) >= 11)
ret = intel_parent_pcode_request(display, SKL_PCODE_CDCLK_CONTROL,
SKL_CDCLK_PREPARE_FOR_CHANGE,
@@ -2309,15 +2309,12 @@ static void bxt_set_cdclk(struct intel_display *display,
if (DISPLAY_VER(display) >= 20 && cdclk > display->cdclk.hw.cdclk)
xe2lpd_mdclk_cdclk_ratio_program(display, cdclk_config);
- if (DISPLAY_VER(display) >= 14)
- /*
- * NOOP - No Pcode communication needed for
- * Display versions 14 and beyond
- */;
- else if (DISPLAY_VER(display) >= 11 && !display->platform.dg2)
+ if (DISPLAY_VER(display) >= 14 || display->platform.dg2)
+ ret = 0; /* NOOP */
+ else if (DISPLAY_VER(display) >= 11)
ret = intel_parent_pcode_write(display, SKL_PCODE_CDCLK_CONTROL,
cdclk_config->voltage_level);
- if (DISPLAY_VER(display) < 11) {
+ else
/*
* The timeout isn't specified, the 2ms used here is based on
* experiment.
@@ -2327,7 +2324,6 @@ static void bxt_set_cdclk(struct intel_display *display,
ret = intel_parent_pcode_write_timeout(display,
HSW_PCODE_DE_WRITE_FREQ_REQ,
cdclk_config->voltage_level, 2);
- }
if (ret)
drm_err(display->drm,
"PCode CDCLK freq set failed, (err %d, freq %d)\n",
--
2.54.0
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH v2 09/14] drm/i915/cdclk: Unify pcode related debugs
2026-08-26 13:40 [PATCH v2 00/14] drm/i915/cdclk: cdclk pcode related fixes and refactoring Ville Syrjala
` (7 preceding siblings ...)
2026-08-26 13:40 ` [PATCH v2 08/14] drm/i915/cdclk: Unify the pcode pre/post notify in bxt_set_cdclk() Ville Syrjala
@ 2026-08-26 13:40 ` Ville Syrjala
2026-08-26 13:40 ` [PATCH v2 10/14] drm/i915/cdclk: Extract bdw_cdclk_pcode_{pre, post}_notify() Ville Syrjala
` (7 subsequent siblings)
16 siblings, 0 replies; 20+ messages in thread
From: Ville Syrjala @ 2026-08-26 13:40 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
The debug spew for the cdclk pcode per/post notify is very
inconsistent between different platforms. Unify it all to
the same form.
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_cdclk.c | 65 ++++++++++++----------
1 file changed, 36 insertions(+), 29 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c
index 53d6cb05e467..ba1684a99886 100644
--- a/drivers/gpu/drm/i915/display/intel_cdclk.c
+++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
@@ -891,7 +891,7 @@ static void bdw_set_cdclk(struct intel_display *display,
ret = intel_parent_pcode_write(display, BDW_PCODE_DISPLAY_FREQ_CHANGE_REQ, 0x0);
if (ret) {
drm_err(display->drm,
- "failed to inform pcode about cdclk change\n");
+ "Failed to inform PCODE about start of CDCLK change (%d)\n", ret);
return;
}
@@ -918,8 +918,11 @@ static void bdw_set_cdclk(struct intel_display *display,
if (ret)
drm_err(display->drm, "Switching back to LCPLL failed\n");
- intel_parent_pcode_write(display, HSW_PCODE_DE_WRITE_FREQ_REQ,
- cdclk_config->voltage_level);
+ ret = intel_parent_pcode_write(display, HSW_PCODE_DE_WRITE_FREQ_REQ,
+ cdclk_config->voltage_level);
+ if (ret)
+ drm_err(display->drm,
+ "Failed to inform PCODE about end of CDCLK change (%d)\n", ret);
intel_de_write(display, CDCLK_FREQ,
DIV_ROUND_CLOSEST(cdclk, 1000) - 1);
@@ -1181,7 +1184,7 @@ static void skl_set_cdclk(struct intel_display *display,
SKL_CDCLK_READY_FOR_CHANGE, 3);
if (ret) {
drm_err(display->drm,
- "Failed to inform PCU about cdclk change (%d)\n", ret);
+ "Failed to inform PCODE about start of CDCLK change (%d)\n", ret);
return;
}
@@ -1221,8 +1224,11 @@ static void skl_set_cdclk(struct intel_display *display,
intel_de_posting_read(display, CDCLK_CTL);
/* inform PCU of the change */
- intel_parent_pcode_write(display, SKL_PCODE_CDCLK_CONTROL,
- cdclk_config->voltage_level);
+ ret = intel_parent_pcode_write(display, SKL_PCODE_CDCLK_CONTROL,
+ cdclk_config->voltage_level);
+ if (ret)
+ drm_err(display->drm,
+ "Failed to inform PCODE about end of CDCLK change (%d)\n", ret);
intel_update_cdclk(display);
}
@@ -2290,8 +2296,7 @@ static void bxt_set_cdclk(struct intel_display *display,
if (ret) {
drm_err(display->drm,
- "Failed to inform PCU about cdclk change (err %d, freq %d)\n",
- ret, cdclk);
+ "Failed to inform PCODE about start of CDCLK change (%d)\n", ret);
return;
}
@@ -2326,8 +2331,7 @@ static void bxt_set_cdclk(struct intel_display *display,
cdclk_config->voltage_level, 2);
if (ret)
drm_err(display->drm,
- "PCode CDCLK freq set failed, (err %d, freq %d)\n",
- ret, cdclk);
+ "Failed to inform PCODE about end of CDCLK change (%d)\n", ret);
intel_update_cdclk(display);
@@ -2620,14 +2624,13 @@ void intel_cdclk_dump_config(struct intel_display *display,
cdclk_config->voltage_level);
}
-static void dg2_cdclk_pcode_notify(struct intel_display *display,
- u8 voltage_level,
- u8 active_pipe_count,
- u16 cdclk,
- bool cdclk_update_valid,
- bool pipe_count_update_valid)
+static int dg2_cdclk_pcode_notify(struct intel_display *display,
+ u8 voltage_level,
+ u8 active_pipe_count,
+ u16 cdclk,
+ bool cdclk_update_valid,
+ bool pipe_count_update_valid)
{
- int ret;
u32 update_mask = 0;
update_mask = DISPLAY_TO_PCODE_UPDATE_MASK(cdclk, active_pipe_count, voltage_level);
@@ -2638,14 +2641,10 @@ static void dg2_cdclk_pcode_notify(struct intel_display *display,
if (pipe_count_update_valid)
update_mask |= DISPLAY_TO_PCODE_PIPE_COUNT_VALID;
- ret = intel_parent_pcode_request(display, SKL_PCODE_CDCLK_CONTROL,
- update_mask,
- SKL_CDCLK_READY_FOR_CHANGE,
- SKL_CDCLK_READY_FOR_CHANGE, 3);
- if (ret)
- drm_err(display->drm,
- "Failed to inform PCU about display config (err %d)\n",
- ret);
+ return intel_parent_pcode_request(display, SKL_PCODE_CDCLK_CONTROL,
+ update_mask,
+ SKL_CDCLK_READY_FOR_CHANGE,
+ SKL_CDCLK_READY_FOR_CHANGE, 3);
}
static void intel_set_cdclk(struct intel_display *display,
@@ -2724,6 +2723,7 @@ static void dg2_cdclk_pcode_pre_notify(struct intel_atomic_state *state)
u8 voltage_level, num_active_pipes = 0;
bool change_cdclk, update_pipe_count;
unsigned int cdclk_mhz = 0;
+ int ret;
if (!intel_cdclk_changed(&old_cdclk_state->actual,
&new_cdclk_state->actual) &&
@@ -2760,8 +2760,11 @@ static void dg2_cdclk_pcode_pre_notify(struct intel_atomic_state *state)
if (update_pipe_count)
num_active_pipes = dg2_power_well_count(display, new_cdclk_state);
- dg2_cdclk_pcode_notify(display, voltage_level, num_active_pipes, cdclk_mhz,
- change_cdclk, update_pipe_count);
+ ret = dg2_cdclk_pcode_notify(display, voltage_level, num_active_pipes, cdclk_mhz,
+ change_cdclk, update_pipe_count);
+ if (ret)
+ drm_err(display->drm,
+ "Failed to inform PCODE about start of CDCLK change (%d)\n", ret);
}
static void dg2_cdclk_pcode_post_notify(struct intel_atomic_state *state)
@@ -2774,6 +2777,7 @@ static void dg2_cdclk_pcode_post_notify(struct intel_atomic_state *state)
u8 voltage_level, num_active_pipes = 0;
bool update_cdclk, update_pipe_count;
unsigned int cdclk_mhz = 0;
+ int ret;
/* According to "Sequence After Frequency Change", set voltage to used level */
voltage_level = new_cdclk_state->actual.voltage_level;
@@ -2801,8 +2805,11 @@ static void dg2_cdclk_pcode_post_notify(struct intel_atomic_state *state)
if (update_pipe_count)
num_active_pipes = dg2_power_well_count(display, new_cdclk_state);
- dg2_cdclk_pcode_notify(display, voltage_level, num_active_pipes, cdclk_mhz,
- update_cdclk, update_pipe_count);
+ ret = dg2_cdclk_pcode_notify(display, voltage_level, num_active_pipes, cdclk_mhz,
+ update_cdclk, update_pipe_count);
+ if (ret)
+ drm_err(display->drm,
+ "Failed to inform PCODE about end of CDCLK change (%d)\n", ret);
}
bool intel_cdclk_is_decreasing_later(struct intel_atomic_state *state)
--
2.54.0
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH v2 10/14] drm/i915/cdclk: Extract bdw_cdclk_pcode_{pre, post}_notify()
2026-08-26 13:40 [PATCH v2 00/14] drm/i915/cdclk: cdclk pcode related fixes and refactoring Ville Syrjala
` (8 preceding siblings ...)
2026-08-26 13:40 ` [PATCH v2 09/14] drm/i915/cdclk: Unify pcode related debugs Ville Syrjala
@ 2026-08-26 13:40 ` Ville Syrjala
2026-08-26 13:40 ` [PATCH v2 11/14] drm/i915/cdclk: Extract skl_cdclk_pcode_{pre, post}_notify() Ville Syrjala
` (6 subsequent siblings)
16 siblings, 0 replies; 20+ messages in thread
From: Ville Syrjala @ 2026-08-26 13:40 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Extract the BDW pcode notify stuff to a few small helpers. The
plan is to unify these between all the platforms and turn them
into vfuncs.
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_cdclk.c | 18 +++++++++++++++---
1 file changed, 15 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c
index ba1684a99886..cf7670abc369 100644
--- a/drivers/gpu/drm/i915/display/intel_cdclk.c
+++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
@@ -872,6 +872,19 @@ static u32 bdw_cdclk_freq_sel(int cdclk)
}
}
+static int bdw_cdclk_pcode_pre_notify(struct intel_display *display)
+{
+ return intel_parent_pcode_write(display, BDW_PCODE_DISPLAY_FREQ_CHANGE_REQ,
+ 0x0);
+}
+
+static int bdw_cdclk_pcode_post_notify(struct intel_display *display,
+ const struct intel_cdclk_config *cdclk_config)
+{
+ return intel_parent_pcode_write(display, HSW_PCODE_DE_WRITE_FREQ_REQ,
+ cdclk_config->voltage_level);
+}
+
static void bdw_set_cdclk(struct intel_display *display,
const struct intel_cdclk_config *cdclk_config,
enum pipe pipe)
@@ -888,7 +901,7 @@ static void bdw_set_cdclk(struct intel_display *display,
"trying to change cdclk frequency with cdclk not enabled\n"))
return;
- ret = intel_parent_pcode_write(display, BDW_PCODE_DISPLAY_FREQ_CHANGE_REQ, 0x0);
+ ret = bdw_cdclk_pcode_pre_notify(display);
if (ret) {
drm_err(display->drm,
"Failed to inform PCODE about start of CDCLK change (%d)\n", ret);
@@ -918,8 +931,7 @@ static void bdw_set_cdclk(struct intel_display *display,
if (ret)
drm_err(display->drm, "Switching back to LCPLL failed\n");
- ret = intel_parent_pcode_write(display, HSW_PCODE_DE_WRITE_FREQ_REQ,
- cdclk_config->voltage_level);
+ ret = bdw_cdclk_pcode_post_notify(display, cdclk_config);
if (ret)
drm_err(display->drm,
"Failed to inform PCODE about end of CDCLK change (%d)\n", ret);
--
2.54.0
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH v2 11/14] drm/i915/cdclk: Extract skl_cdclk_pcode_{pre, post}_notify()
2026-08-26 13:40 [PATCH v2 00/14] drm/i915/cdclk: cdclk pcode related fixes and refactoring Ville Syrjala
` (9 preceding siblings ...)
2026-08-26 13:40 ` [PATCH v2 10/14] drm/i915/cdclk: Extract bdw_cdclk_pcode_{pre, post}_notify() Ville Syrjala
@ 2026-08-26 13:40 ` Ville Syrjala
2026-08-26 13:40 ` [PATCH v2 12/14] drm/i915/cdclk: Extract bxt_cdclk_pcode_{pre, post}_notify() Ville Syrjala
` (5 subsequent siblings)
16 siblings, 0 replies; 20+ messages in thread
From: Ville Syrjala @ 2026-08-26 13:40 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Extract the SKL/ICL+ pcode notify stuff to a few small helpers.
The plan is to unify these between all the platforms and turn
them into vfuncs.
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_cdclk.c | 32 +++++++++++++---------
1 file changed, 19 insertions(+), 13 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c
index cf7670abc369..e42ecbcfc0a8 100644
--- a/drivers/gpu/drm/i915/display/intel_cdclk.c
+++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
@@ -1170,6 +1170,21 @@ static u32 skl_cdclk_freq_sel(struct intel_display *display,
}
}
+static int skl_cdclk_pcode_pre_notify(struct intel_display *display)
+{
+ return intel_parent_pcode_request(display, SKL_PCODE_CDCLK_CONTROL,
+ SKL_CDCLK_PREPARE_FOR_CHANGE,
+ SKL_CDCLK_READY_FOR_CHANGE,
+ SKL_CDCLK_READY_FOR_CHANGE, 3);
+}
+
+static int skl_cdclk_pcode_post_notify(struct intel_display *display,
+ const struct intel_cdclk_config *cdclk_config)
+{
+ return intel_parent_pcode_write(display, SKL_PCODE_CDCLK_CONTROL,
+ cdclk_config->voltage_level);
+}
+
static void skl_set_cdclk(struct intel_display *display,
const struct intel_cdclk_config *cdclk_config,
enum pipe pipe)
@@ -1190,10 +1205,7 @@ static void skl_set_cdclk(struct intel_display *display,
drm_WARN_ON_ONCE(display->drm,
display->platform.skylake && vco == 8640000);
- ret = intel_parent_pcode_request(display, SKL_PCODE_CDCLK_CONTROL,
- SKL_CDCLK_PREPARE_FOR_CHANGE,
- SKL_CDCLK_READY_FOR_CHANGE,
- SKL_CDCLK_READY_FOR_CHANGE, 3);
+ ret = skl_cdclk_pcode_pre_notify(display);
if (ret) {
drm_err(display->drm,
"Failed to inform PCODE about start of CDCLK change (%d)\n", ret);
@@ -1235,9 +1247,7 @@ static void skl_set_cdclk(struct intel_display *display,
intel_de_write(display, CDCLK_CTL, cdclk_ctl);
intel_de_posting_read(display, CDCLK_CTL);
- /* inform PCU of the change */
- ret = intel_parent_pcode_write(display, SKL_PCODE_CDCLK_CONTROL,
- cdclk_config->voltage_level);
+ ret = skl_cdclk_pcode_post_notify(display, cdclk_config);
if (ret)
drm_err(display->drm,
"Failed to inform PCODE about end of CDCLK change (%d)\n", ret);
@@ -2293,10 +2303,7 @@ static void bxt_set_cdclk(struct intel_display *display,
if (DISPLAY_VER(display) >= 14 || display->platform.dg2)
ret = 0; /* NOOP */
else if (DISPLAY_VER(display) >= 11)
- ret = intel_parent_pcode_request(display, SKL_PCODE_CDCLK_CONTROL,
- SKL_CDCLK_PREPARE_FOR_CHANGE,
- SKL_CDCLK_READY_FOR_CHANGE,
- SKL_CDCLK_READY_FOR_CHANGE, 3);
+ ret = skl_cdclk_pcode_pre_notify(display);
else
/*
* BSpec requires us to wait up to 150usec, but that leads to
@@ -2329,8 +2336,7 @@ static void bxt_set_cdclk(struct intel_display *display,
if (DISPLAY_VER(display) >= 14 || display->platform.dg2)
ret = 0; /* NOOP */
else if (DISPLAY_VER(display) >= 11)
- ret = intel_parent_pcode_write(display, SKL_PCODE_CDCLK_CONTROL,
- cdclk_config->voltage_level);
+ ret = skl_cdclk_pcode_post_notify(display, cdclk_config);
else
/*
* The timeout isn't specified, the 2ms used here is based on
--
2.54.0
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH v2 12/14] drm/i915/cdclk: Extract bxt_cdclk_pcode_{pre, post}_notify()
2026-08-26 13:40 [PATCH v2 00/14] drm/i915/cdclk: cdclk pcode related fixes and refactoring Ville Syrjala
` (10 preceding siblings ...)
2026-08-26 13:40 ` [PATCH v2 11/14] drm/i915/cdclk: Extract skl_cdclk_pcode_{pre, post}_notify() Ville Syrjala
@ 2026-08-26 13:40 ` Ville Syrjala
2026-08-26 13:40 ` [PATCH v2 13/14] drm/i915/cdclk: Introduce CDCLK .{pre, post}_notify() vfuncs Ville Syrjala
` (4 subsequent siblings)
16 siblings, 0 replies; 20+ messages in thread
From: Ville Syrjala @ 2026-08-26 13:40 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Extract the BXT/GLK pcode notify stuff to a few small helpers.
The plan is to unify these between all the platforms and turn
them into vfuncs.
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_cdclk.c | 42 +++++++++++++---------
1 file changed, 26 insertions(+), 16 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c
index e42ecbcfc0a8..cf7efac7d648 100644
--- a/drivers/gpu/drm/i915/display/intel_cdclk.c
+++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
@@ -2253,6 +2253,29 @@ static u32 bxt_cdclk_ctl(struct intel_display *display,
return val;
}
+static int bxt_cdclk_pcode_pre_notify(struct intel_display *display)
+{
+ /*
+ * BSpec requires us to wait up to 150usec, but that leads to
+ * timeouts; the 2ms used here is based on experiment.
+ */
+ return intel_parent_pcode_write_timeout(display, HSW_PCODE_DE_WRITE_FREQ_REQ,
+ 0x80000000, 2);
+}
+
+static int bxt_cdclk_pcode_post_notify(struct intel_display *display,
+ const struct intel_cdclk_config *cdclk_config)
+{
+ /*
+ * The timeout isn't specified, the 2ms used here is based on
+ * experiment.
+ * FIXME: Waiting for the request completion could be delayed
+ * until the next PCODE request based on BSpec.
+ */
+ return intel_parent_pcode_write_timeout(display, HSW_PCODE_DE_WRITE_FREQ_REQ,
+ cdclk_config->voltage_level, 2);
+}
+
static void _bxt_set_cdclk(struct intel_display *display,
const struct intel_cdclk_config *cdclk_config,
enum pipe pipe)
@@ -2305,13 +2328,7 @@ static void bxt_set_cdclk(struct intel_display *display,
else if (DISPLAY_VER(display) >= 11)
ret = skl_cdclk_pcode_pre_notify(display);
else
- /*
- * BSpec requires us to wait up to 150usec, but that leads to
- * timeouts; the 2ms used here is based on experiment.
- */
- ret = intel_parent_pcode_write_timeout(display,
- HSW_PCODE_DE_WRITE_FREQ_REQ,
- 0x80000000, 2);
+ ret = bxt_cdclk_pcode_pre_notify(display);
if (ret) {
drm_err(display->drm,
@@ -2338,15 +2355,8 @@ static void bxt_set_cdclk(struct intel_display *display,
else if (DISPLAY_VER(display) >= 11)
ret = skl_cdclk_pcode_post_notify(display, cdclk_config);
else
- /*
- * The timeout isn't specified, the 2ms used here is based on
- * experiment.
- * FIXME: Waiting for the request completion could be delayed
- * until the next PCODE request based on BSpec.
- */
- ret = intel_parent_pcode_write_timeout(display,
- HSW_PCODE_DE_WRITE_FREQ_REQ,
- cdclk_config->voltage_level, 2);
+ ret = bxt_cdclk_pcode_post_notify(display, cdclk_config);
+
if (ret)
drm_err(display->drm,
"Failed to inform PCODE about end of CDCLK change (%d)\n", ret);
--
2.54.0
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH v2 13/14] drm/i915/cdclk: Introduce CDCLK .{pre, post}_notify() vfuncs
2026-08-26 13:40 [PATCH v2 00/14] drm/i915/cdclk: cdclk pcode related fixes and refactoring Ville Syrjala
` (11 preceding siblings ...)
2026-08-26 13:40 ` [PATCH v2 12/14] drm/i915/cdclk: Extract bxt_cdclk_pcode_{pre, post}_notify() Ville Syrjala
@ 2026-08-26 13:40 ` Ville Syrjala
2026-08-26 13:40 ` [PATCH v2 14/14] drm/i915/cdclk: Hoist intel_cdclk_{pre, post}_notify() calls upwards Ville Syrjala
` (3 subsequent siblings)
16 siblings, 0 replies; 20+ messages in thread
From: Ville Syrjala @ 2026-08-26 13:40 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Turn the cdclk pcode pre/post notify functions into vfuncs.
Mainly to get rid of the hideous if-ladders in bxt_set_cdclk().
DG2 is currently doing its own thing with its pcode notify funcs so
can't be converted yet. And MTL+ go via the pmdemand stuff so this
is all supposedly handled elsewhere.
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_cdclk.c | 122 ++++++++++++---------
1 file changed, 73 insertions(+), 49 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c
index cf7efac7d648..b1b96f908e06 100644
--- a/drivers/gpu/drm/i915/display/intel_cdclk.c
+++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
@@ -163,6 +163,9 @@ struct intel_cdclk_funcs {
void (*set_cdclk)(struct intel_display *display,
const struct intel_cdclk_config *cdclk_config,
enum pipe pipe);
+ int (*pre_notify)(struct intel_display *display);
+ int (*post_notify)(struct intel_display *display,
+ const struct intel_cdclk_config *cdclk_config);
int (*modeset_calc_cdclk)(struct intel_atomic_state *state);
u8 (*calc_voltage_level)(int cdclk);
};
@@ -173,6 +176,35 @@ void intel_cdclk_get_cdclk(struct intel_display *display,
display->cdclk.funcs->get_cdclk(display, cdclk_config);
}
+static int intel_cdclk_pre_notify(struct intel_display *display)
+{
+ int ret;
+
+ if (!display->cdclk.funcs->pre_notify)
+ return 0;
+
+ ret = display->cdclk.funcs->pre_notify(display);
+ if (ret)
+ drm_err(display->drm,
+ "Failed to inform system about start of CDCLK change (%d)\n", ret);
+
+ return ret;
+}
+
+static void intel_cdclk_post_notify(struct intel_display *display,
+ const struct intel_cdclk_config *cdclk_config)
+{
+ int ret;
+
+ if (!display->cdclk.funcs->post_notify)
+ return;
+
+ ret = display->cdclk.funcs->post_notify(display, cdclk_config);
+ if (ret)
+ drm_err(display->drm,
+ "Failed to inform system about end of CDCLK change (%d)\n", ret);
+}
+
static void intel_cdclk_set_cdclk(struct intel_display *display,
const struct intel_cdclk_config *cdclk_config,
enum pipe pipe)
@@ -901,12 +933,9 @@ static void bdw_set_cdclk(struct intel_display *display,
"trying to change cdclk frequency with cdclk not enabled\n"))
return;
- ret = bdw_cdclk_pcode_pre_notify(display);
- if (ret) {
- drm_err(display->drm,
- "Failed to inform PCODE about start of CDCLK change (%d)\n", ret);
+ ret = intel_cdclk_pre_notify(display);
+ if (ret)
return;
- }
intel_de_rmw(display, LCPLL_CTL,
0, LCPLL_CD_SOURCE_FCLK);
@@ -931,10 +960,7 @@ static void bdw_set_cdclk(struct intel_display *display,
if (ret)
drm_err(display->drm, "Switching back to LCPLL failed\n");
- ret = bdw_cdclk_pcode_post_notify(display, cdclk_config);
- if (ret)
- drm_err(display->drm,
- "Failed to inform PCODE about end of CDCLK change (%d)\n", ret);
+ intel_cdclk_post_notify(display, cdclk_config);
intel_de_write(display, CDCLK_FREQ,
DIV_ROUND_CLOSEST(cdclk, 1000) - 1);
@@ -1205,12 +1231,9 @@ static void skl_set_cdclk(struct intel_display *display,
drm_WARN_ON_ONCE(display->drm,
display->platform.skylake && vco == 8640000);
- ret = skl_cdclk_pcode_pre_notify(display);
- if (ret) {
- drm_err(display->drm,
- "Failed to inform PCODE about start of CDCLK change (%d)\n", ret);
+ ret = intel_cdclk_pre_notify(display);
+ if (ret)
return;
- }
freq_select = skl_cdclk_freq_sel(display, cdclk, vco);
@@ -1247,10 +1270,7 @@ static void skl_set_cdclk(struct intel_display *display,
intel_de_write(display, CDCLK_CTL, cdclk_ctl);
intel_de_posting_read(display, CDCLK_CTL);
- ret = skl_cdclk_pcode_post_notify(display, cdclk_config);
- if (ret)
- drm_err(display->drm,
- "Failed to inform PCODE about end of CDCLK change (%d)\n", ret);
+ intel_cdclk_post_notify(display, cdclk_config);
intel_update_cdclk(display);
}
@@ -2317,24 +2337,9 @@ static void bxt_set_cdclk(struct intel_display *display,
int cdclk = cdclk_config->cdclk;
int ret;
- /*
- * Inform power controller of upcoming frequency change.
- * Display versions 14 and beyond do not follow the PUnit
- * mailbox communication, skip
- * this step.
- */
- if (DISPLAY_VER(display) >= 14 || display->platform.dg2)
- ret = 0; /* NOOP */
- else if (DISPLAY_VER(display) >= 11)
- ret = skl_cdclk_pcode_pre_notify(display);
- else
- ret = bxt_cdclk_pcode_pre_notify(display);
-
- if (ret) {
- drm_err(display->drm,
- "Failed to inform PCODE about start of CDCLK change (%d)\n", ret);
+ ret = intel_cdclk_pre_notify(display);
+ if (ret)
return;
- }
if (DISPLAY_VER(display) >= 20 && cdclk < display->cdclk.hw.cdclk)
xe2lpd_mdclk_cdclk_ratio_program(display, cdclk_config);
@@ -2350,16 +2355,7 @@ static void bxt_set_cdclk(struct intel_display *display,
if (DISPLAY_VER(display) >= 20 && cdclk > display->cdclk.hw.cdclk)
xe2lpd_mdclk_cdclk_ratio_program(display, cdclk_config);
- if (DISPLAY_VER(display) >= 14 || display->platform.dg2)
- ret = 0; /* NOOP */
- else if (DISPLAY_VER(display) >= 11)
- ret = skl_cdclk_pcode_post_notify(display, cdclk_config);
- else
- ret = bxt_cdclk_pcode_post_notify(display, cdclk_config);
-
- if (ret)
- drm_err(display->drm,
- "Failed to inform PCODE about end of CDCLK change (%d)\n", ret);
+ intel_cdclk_post_notify(display, cdclk_config);
intel_update_cdclk(display);
@@ -3983,9 +3979,25 @@ static const struct intel_cdclk_funcs xe3lpd_cdclk_funcs = {
.calc_voltage_level = xe3lpd_calc_voltage_level,
};
+static const struct intel_cdclk_funcs mtl_cdclk_funcs = {
+ .get_cdclk = bxt_get_cdclk,
+ .set_cdclk = bxt_set_cdclk,
+ .modeset_calc_cdclk = bxt_modeset_calc_cdclk,
+ .calc_voltage_level = rplu_calc_voltage_level,
+};
+
+static const struct intel_cdclk_funcs dg2_cdclk_funcs = {
+ .get_cdclk = bxt_get_cdclk,
+ .set_cdclk = bxt_set_cdclk,
+ .modeset_calc_cdclk = bxt_modeset_calc_cdclk,
+ .calc_voltage_level = tgl_calc_voltage_level,
+};
+
static const struct intel_cdclk_funcs rplu_cdclk_funcs = {
.get_cdclk = bxt_get_cdclk,
.set_cdclk = bxt_set_cdclk,
+ .pre_notify = skl_cdclk_pcode_pre_notify,
+ .post_notify = skl_cdclk_pcode_post_notify,
.modeset_calc_cdclk = bxt_modeset_calc_cdclk,
.calc_voltage_level = rplu_calc_voltage_level,
};
@@ -3993,6 +4005,8 @@ static const struct intel_cdclk_funcs rplu_cdclk_funcs = {
static const struct intel_cdclk_funcs tgl_cdclk_funcs = {
.get_cdclk = bxt_get_cdclk,
.set_cdclk = bxt_set_cdclk,
+ .pre_notify = skl_cdclk_pcode_pre_notify,
+ .post_notify = skl_cdclk_pcode_post_notify,
.modeset_calc_cdclk = bxt_modeset_calc_cdclk,
.calc_voltage_level = tgl_calc_voltage_level,
};
@@ -4000,6 +4014,8 @@ static const struct intel_cdclk_funcs tgl_cdclk_funcs = {
static const struct intel_cdclk_funcs ehl_cdclk_funcs = {
.get_cdclk = bxt_get_cdclk,
.set_cdclk = bxt_set_cdclk,
+ .pre_notify = skl_cdclk_pcode_pre_notify,
+ .post_notify = skl_cdclk_pcode_post_notify,
.modeset_calc_cdclk = bxt_modeset_calc_cdclk,
.calc_voltage_level = ehl_calc_voltage_level,
};
@@ -4007,6 +4023,8 @@ static const struct intel_cdclk_funcs ehl_cdclk_funcs = {
static const struct intel_cdclk_funcs icl_cdclk_funcs = {
.get_cdclk = bxt_get_cdclk,
.set_cdclk = bxt_set_cdclk,
+ .pre_notify = skl_cdclk_pcode_pre_notify,
+ .post_notify = skl_cdclk_pcode_post_notify,
.modeset_calc_cdclk = bxt_modeset_calc_cdclk,
.calc_voltage_level = icl_calc_voltage_level,
};
@@ -4014,6 +4032,8 @@ static const struct intel_cdclk_funcs icl_cdclk_funcs = {
static const struct intel_cdclk_funcs bxt_cdclk_funcs = {
.get_cdclk = bxt_get_cdclk,
.set_cdclk = bxt_set_cdclk,
+ .pre_notify = bxt_cdclk_pcode_pre_notify,
+ .post_notify = bxt_cdclk_pcode_post_notify,
.modeset_calc_cdclk = bxt_modeset_calc_cdclk,
.calc_voltage_level = bxt_calc_voltage_level,
};
@@ -4021,12 +4041,16 @@ static const struct intel_cdclk_funcs bxt_cdclk_funcs = {
static const struct intel_cdclk_funcs skl_cdclk_funcs = {
.get_cdclk = skl_get_cdclk,
.set_cdclk = skl_set_cdclk,
+ .pre_notify = skl_cdclk_pcode_pre_notify,
+ .post_notify = skl_cdclk_pcode_post_notify,
.modeset_calc_cdclk = skl_modeset_calc_cdclk,
};
static const struct intel_cdclk_funcs bdw_cdclk_funcs = {
.get_cdclk = bdw_get_cdclk,
.set_cdclk = bdw_set_cdclk,
+ .pre_notify = bdw_cdclk_pcode_pre_notify,
+ .post_notify = bdw_cdclk_pcode_post_notify,
.modeset_calc_cdclk = bdw_modeset_calc_cdclk,
};
@@ -4132,16 +4156,16 @@ void intel_init_cdclk_hooks(struct intel_display *display)
display->cdclk.funcs = &xe3lpd_cdclk_funcs;
display->cdclk.table = xe3lpd_cdclk_table;
} else if (DISPLAY_VER(display) >= 20) {
- display->cdclk.funcs = &rplu_cdclk_funcs;
+ display->cdclk.funcs = &mtl_cdclk_funcs;
display->cdclk.table = xe2lpd_cdclk_table;
} else if (DISPLAY_VERx100(display) >= 1401) {
- display->cdclk.funcs = &rplu_cdclk_funcs;
+ display->cdclk.funcs = &mtl_cdclk_funcs;
display->cdclk.table = xe2hpd_cdclk_table;
} else if (DISPLAY_VER(display) >= 14) {
- display->cdclk.funcs = &rplu_cdclk_funcs;
+ display->cdclk.funcs = &mtl_cdclk_funcs;
display->cdclk.table = mtl_cdclk_table;
} else if (display->platform.dg2) {
- display->cdclk.funcs = &tgl_cdclk_funcs;
+ display->cdclk.funcs = &dg2_cdclk_funcs;
display->cdclk.table = dg2_cdclk_table;
} else if (display->platform.alderlake_p) {
/* Wa_22011320316:adl-p[a0] */
--
2.54.0
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH v2 14/14] drm/i915/cdclk: Hoist intel_cdclk_{pre, post}_notify() calls upwards
2026-08-26 13:40 [PATCH v2 00/14] drm/i915/cdclk: cdclk pcode related fixes and refactoring Ville Syrjala
` (12 preceding siblings ...)
2026-08-26 13:40 ` [PATCH v2 13/14] drm/i915/cdclk: Introduce CDCLK .{pre, post}_notify() vfuncs Ville Syrjala
@ 2026-08-26 13:40 ` Ville Syrjala
2026-08-26 13:48 ` ✓ CI.KUnit: success for drm/i915/cdclk: cdclk pcode related fixes and refactoring (rev2) Patchwork
` (2 subsequent siblings)
16 siblings, 0 replies; 20+ messages in thread
From: Ville Syrjala @ 2026-08-26 13:40 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Now that intel_cdclk_{pre,post}_notify() are implemented via vfuncs
there is no need to keep them inside the .set_cdclk() hooks. Move
the calls one level up to intel_cdclk_set_cdclk().
We do need to adjust {skl,bxt}_cdclk_(un)init_hw() to call the wrapper
rather than the low level implementation directly, or else they would
not do the pcode notification anymore.
The two slight functional changes here are:
- bdw_set_cdclk() might theoretically bail out after doing the
pre notification, but that codepath would only come into play
if the hardware is seriously misprogrammed, so should never happen
- cdclk hw readout is still done from .set_cdclk(), so that now
happens before the post notify vs. previously the readout happened
before it. This should not matter as the readout is not affected
by the post notify (since we can't actually read out anything from
pcode).
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_cdclk.c | 33 ++++++----------------
1 file changed, 9 insertions(+), 24 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c
index b1b96f908e06..d545572a8b6e 100644
--- a/drivers/gpu/drm/i915/display/intel_cdclk.c
+++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
@@ -209,7 +209,12 @@ static void intel_cdclk_set_cdclk(struct intel_display *display,
const struct intel_cdclk_config *cdclk_config,
enum pipe pipe)
{
+ if (intel_cdclk_pre_notify(display))
+ return;
+
display->cdclk.funcs->set_cdclk(display, cdclk_config, pipe);
+
+ intel_cdclk_post_notify(display, cdclk_config);
}
static int intel_cdclk_modeset_calc_cdclk(struct intel_atomic_state *state)
@@ -933,10 +938,6 @@ static void bdw_set_cdclk(struct intel_display *display,
"trying to change cdclk frequency with cdclk not enabled\n"))
return;
- ret = intel_cdclk_pre_notify(display);
- if (ret)
- return;
-
intel_de_rmw(display, LCPLL_CTL,
0, LCPLL_CD_SOURCE_FCLK);
@@ -960,8 +961,6 @@ static void bdw_set_cdclk(struct intel_display *display,
if (ret)
drm_err(display->drm, "Switching back to LCPLL failed\n");
- intel_cdclk_post_notify(display, cdclk_config);
-
intel_de_write(display, CDCLK_FREQ,
DIV_ROUND_CLOSEST(cdclk, 1000) - 1);
@@ -1218,7 +1217,6 @@ static void skl_set_cdclk(struct intel_display *display,
int cdclk = cdclk_config->cdclk;
int vco = cdclk_config->vco;
u32 freq_select, cdclk_ctl;
- int ret;
/*
* Based on WA#1183 CDCLK rates 308 and 617MHz CDCLK rates are
@@ -1231,10 +1229,6 @@ static void skl_set_cdclk(struct intel_display *display,
drm_WARN_ON_ONCE(display->drm,
display->platform.skylake && vco == 8640000);
- ret = intel_cdclk_pre_notify(display);
- if (ret)
- return;
-
freq_select = skl_cdclk_freq_sel(display, cdclk, vco);
if (display->cdclk.hw.vco != 0 &&
@@ -1270,8 +1264,6 @@ static void skl_set_cdclk(struct intel_display *display,
intel_de_write(display, CDCLK_CTL, cdclk_ctl);
intel_de_posting_read(display, CDCLK_CTL);
- intel_cdclk_post_notify(display, cdclk_config);
-
intel_update_cdclk(display);
}
@@ -1362,7 +1354,7 @@ static void skl_cdclk_init_hw(struct intel_display *display)
cdclk_config.cdclk = skl_calc_cdclk(0, cdclk_config.vco);
cdclk_config.voltage_level = skl_calc_voltage_level(cdclk_config.cdclk);
- skl_set_cdclk(display, &cdclk_config, INVALID_PIPE);
+ intel_cdclk_set_cdclk(display, &cdclk_config, INVALID_PIPE);
}
static void skl_cdclk_uninit_hw(struct intel_display *display)
@@ -1373,7 +1365,7 @@ static void skl_cdclk_uninit_hw(struct intel_display *display)
cdclk_config.vco = 0;
cdclk_config.voltage_level = skl_calc_voltage_level(cdclk_config.cdclk);
- skl_set_cdclk(display, &cdclk_config, INVALID_PIPE);
+ intel_cdclk_set_cdclk(display, &cdclk_config, INVALID_PIPE);
}
struct intel_cdclk_vals {
@@ -2335,11 +2327,6 @@ static void bxt_set_cdclk(struct intel_display *display,
{
struct intel_cdclk_config mid_cdclk_config;
int cdclk = cdclk_config->cdclk;
- int ret;
-
- ret = intel_cdclk_pre_notify(display);
- if (ret)
- return;
if (DISPLAY_VER(display) >= 20 && cdclk < display->cdclk.hw.cdclk)
xe2lpd_mdclk_cdclk_ratio_program(display, cdclk_config);
@@ -2355,8 +2342,6 @@ static void bxt_set_cdclk(struct intel_display *display,
if (DISPLAY_VER(display) >= 20 && cdclk > display->cdclk.hw.cdclk)
xe2lpd_mdclk_cdclk_ratio_program(display, cdclk_config);
- intel_cdclk_post_notify(display, cdclk_config);
-
intel_update_cdclk(display);
/*
@@ -2463,7 +2448,7 @@ static void bxt_cdclk_init_hw(struct intel_display *display)
cdclk_config.voltage_level =
intel_cdclk_calc_voltage_level(display, cdclk_config.cdclk);
- bxt_set_cdclk(display, &cdclk_config, INVALID_PIPE);
+ intel_cdclk_set_cdclk(display, &cdclk_config, INVALID_PIPE);
}
static void bxt_cdclk_uninit_hw(struct intel_display *display)
@@ -2475,7 +2460,7 @@ static void bxt_cdclk_uninit_hw(struct intel_display *display)
cdclk_config.voltage_level =
intel_cdclk_calc_voltage_level(display, cdclk_config.cdclk);
- bxt_set_cdclk(display, &cdclk_config, INVALID_PIPE);
+ intel_cdclk_set_cdclk(display, &cdclk_config, INVALID_PIPE);
}
/**
--
2.54.0
^ permalink raw reply related [flat|nested] 20+ messages in thread* ✓ CI.KUnit: success for drm/i915/cdclk: cdclk pcode related fixes and refactoring (rev2)
2026-08-26 13:40 [PATCH v2 00/14] drm/i915/cdclk: cdclk pcode related fixes and refactoring Ville Syrjala
` (13 preceding siblings ...)
2026-08-26 13:40 ` [PATCH v2 14/14] drm/i915/cdclk: Hoist intel_cdclk_{pre, post}_notify() calls upwards Ville Syrjala
@ 2026-08-26 13:48 ` Patchwork
2026-08-26 14:49 ` ✓ Xe.CI.BAT: " Patchwork
2026-08-26 18:28 ` ✓ Xe.CI.FULL: " Patchwork
16 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2026-08-26 13:48 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-xe
== Series Details ==
Series: drm/i915/cdclk: cdclk pcode related fixes and refactoring (rev2)
URL : https://patchwork.freedesktop.org/series/168273/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[13:47:23] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:47:27] 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:47:59] Starting KUnit Kernel (1/1)...
[13:47:59] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:47:59] ================== guc_buf (11 subtests) ===================
[13:47:59] [PASSED] test_smallest
[13:47:59] [PASSED] test_largest
[13:47:59] [PASSED] test_granular
[13:47:59] [PASSED] test_unique
[13:47:59] [PASSED] test_overlap
[13:47:59] [PASSED] test_reusable
[13:47:59] [PASSED] test_too_big
[13:47:59] [PASSED] test_flush
[13:47:59] [PASSED] test_lookup
[13:47:59] [PASSED] test_data
[13:47:59] [PASSED] test_class
[13:47:59] ===================== [PASSED] guc_buf =====================
[13:47:59] =================== guc_dbm (7 subtests) ===================
[13:47:59] [PASSED] test_empty
[13:47:59] [PASSED] test_default
[13:47:59] ======================== test_size ========================
[13:47:59] [PASSED] 4
[13:47:59] [PASSED] 8
[13:47:59] [PASSED] 32
[13:47:59] [PASSED] 256
[13:47:59] ==================== [PASSED] test_size ====================
[13:47:59] ======================= test_reuse ========================
[13:47:59] [PASSED] 4
[13:47:59] [PASSED] 8
[13:47:59] [PASSED] 32
[13:47:59] [PASSED] 256
[13:47:59] =================== [PASSED] test_reuse ====================
[13:47:59] =================== test_range_overlap ====================
[13:47:59] [PASSED] 4
[13:47:59] [PASSED] 8
[13:47:59] [PASSED] 32
[13:47:59] [PASSED] 256
[13:47:59] =============== [PASSED] test_range_overlap ================
[13:47:59] =================== test_range_compact ====================
[13:47:59] [PASSED] 4
[13:47:59] [PASSED] 8
[13:47:59] [PASSED] 32
[13:47:59] [PASSED] 256
[13:47:59] =============== [PASSED] test_range_compact ================
[13:47:59] ==================== test_range_spare =====================
[13:47:59] [PASSED] 4
[13:47:59] [PASSED] 8
[13:47:59] [PASSED] 32
[13:47:59] [PASSED] 256
[13:47:59] ================ [PASSED] test_range_spare =================
[13:47:59] ===================== [PASSED] guc_dbm =====================
[13:47:59] =================== guc_idm (6 subtests) ===================
[13:47:59] [PASSED] bad_init
[13:47:59] [PASSED] no_init
[13:47:59] [PASSED] init_fini
[13:47:59] [PASSED] check_used
[13:47:59] [PASSED] check_quota
[13:47:59] [PASSED] check_all
[13:47:59] ===================== [PASSED] guc_idm =====================
[13:47:59] =============== guc_klv_helpers (9 subtests) ===============
[13:47:59] [PASSED] test_count
[13:47:59] [PASSED] test_encode_u32
[13:47:59] [PASSED] test_encode_u64
[13:47:59] [PASSED] test_encode_string
[13:47:59] [PASSED] test_encode_object_raw
[13:47:59] [PASSED] test_encode_object_klv
[13:47:59] [PASSED] test_encode_object_nested
[13:47:59] [PASSED] test_encode_object_basic
[13:47:59] [PASSED] test_print
[13:47:59] ================= [PASSED] guc_klv_helpers =================
[13:47:59] =================== xe_log (4 subtests) ====================
[13:47:59] [PASSED] demo_cper
[13:47:59] [PASSED] demo_dmesg
[13:47:59] ======================= test_dmesg ========================
[13:47:59] [PASSED] test_fatal
[13:47:59] [PASSED] test_fatal_tile
[13:47:59] [PASSED] test_fatal_gt
[13:47:59] [PASSED] test_fatal_comp
[13:47:59] [PASSED] test_fatal_comp_tile
[13:47:59] [PASSED] test_fatal_comp_gt
[13:47:59] [PASSED] test_fatal_all
[13:47:59] [PASSED] test_recoverable
[13:47:59] [PASSED] test_recoverable_tile
[13:47:59] [PASSED] test_recoverable_gt
[13:47:59] [PASSED] test_recoverable_comp
[13:47:59] [PASSED] test_recoverable_comp_tile
[13:47:59] [PASSED] test_recoverable_comp_gt
[13:47:59] [PASSED] test_recoverable_all
[13:47:59] [PASSED] test_info
[13:47:59] [PASSED] test_info_tile
[13:47:59] [PASSED] test_info_gt
[13:47:59] [PASSED] test_info_err
[13:47:59] [PASSED] test_info_comp
[13:47:59] [PASSED] test_info_comp_tile
[13:47:59] [PASSED] test_info_comp_gt
[13:47:59] [PASSED] test_info_all
[13:47:59] [PASSED] test_hw_fatal
[13:47:59] [PASSED] test_hw_recoverable
[13:47:59] [PASSED] test_hw_corrected
[13:47:59] [PASSED] test_hw_informational
[13:47:59] =================== [PASSED] test_dmesg ====================
[13:47:59] ====================== test_invalid =======================
[13:47:59] [SKIPPED] no-component no-location no-warn (requires CONFIG_DRM_XE_DEBUG)
[13:47:59] [SKIPPED] reserved location (requires CONFIG_DRM_XE_DEBUG)
[13:47:59] [SKIPPED] unknown location (requires CONFIG_DRM_XE_DEBUG)
[13:47:59] [SKIPPED] nonzero-device-id location (requires CONFIG_DRM_XE_DEBUG)
[13:47:59] [SKIPPED] invalid-tile-id location (requires CONFIG_DRM_XE_DEBUG)
[13:47:59] [SKIPPED] invalid-gt-id location (requires CONFIG_DRM_XE_DEBUG)
[13:47:59] [SKIPPED] unknown component class (requires CONFIG_DRM_XE_DEBUG)
[13:47:59] [SKIPPED] unknown system component (requires CONFIG_DRM_XE_DEBUG)
[13:47:59] [SKIPPED] unknown hardware component (requires CONFIG_DRM_XE_DEBUG)
[13:47:59] [SKIPPED] unknown component and location (requires CONFIG_DRM_XE_DEBUG)
[13:47:59] ================== [SKIPPED] test_invalid ==================
[13:47:59] ===================== [PASSED] xe_log ======================
[13:47:59] ================== no_relay (3 subtests) ===================
[13:47:59] [PASSED] xe_drops_guc2pf_if_not_ready
[13:47:59] [PASSED] xe_drops_guc2vf_if_not_ready
[13:47:59] [PASSED] xe_rejects_send_if_not_ready
[13:47:59] ==================== [PASSED] no_relay =====================
[13:47:59] ================== pf_relay (14 subtests) ==================
[13:47:59] [PASSED] pf_rejects_guc2pf_too_short
[13:47:59] [PASSED] pf_rejects_guc2pf_too_long
[13:47:59] [PASSED] pf_rejects_guc2pf_no_payload
[13:47:59] [PASSED] pf_fails_no_payload
[13:47:59] [PASSED] pf_fails_bad_origin
[13:47:59] [PASSED] pf_fails_bad_type
[13:47:59] [PASSED] pf_txn_reports_error
[13:47:59] [PASSED] pf_txn_sends_pf2guc
[13:47:59] [PASSED] pf_sends_pf2guc
[13:47:59] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:47:59] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:47:59] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:47:59] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:47:59] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:47:59] ==================== [PASSED] pf_relay =====================
[13:47:59] ================== vf_relay (3 subtests) ===================
[13:47:59] [PASSED] vf_rejects_guc2vf_too_short
[13:47:59] [PASSED] vf_rejects_guc2vf_too_long
[13:47:59] [PASSED] vf_rejects_guc2vf_no_payload
[13:47:59] ==================== [PASSED] vf_relay =====================
[13:47:59] ================ pf_gt_config (9 subtests) =================
[13:47:59] [PASSED] fair_contexts_1vf
[13:47:59] [PASSED] fair_doorbells_1vf
[13:47:59] [PASSED] fair_ggtt_1vf
[13:47:59] ====================== fair_vram_1vf ======================
[13:47:59] [PASSED] 3.50 GiB
[13:47:59] [PASSED] 11.5 GiB
[13:47:59] [PASSED] 15.5 GiB
[13:47:59] [PASSED] 31.5 GiB
[13:47:59] [PASSED] 63.5 GiB
[13:47:59] [PASSED] 1.91 GiB
[13:47:59] ================== [PASSED] fair_vram_1vf ==================
[13:47:59] ================ fair_vram_1vf_admin_only =================
[13:47:59] [PASSED] 3.50 GiB
[13:47:59] [PASSED] 11.5 GiB
[13:47:59] [PASSED] 15.5 GiB
[13:47:59] [PASSED] 31.5 GiB
[13:47:59] [PASSED] 63.5 GiB
[13:47:59] [PASSED] 1.91 GiB
[13:47:59] ============ [PASSED] fair_vram_1vf_admin_only =============
[13:47:59] ====================== fair_contexts ======================
[13:47:59] [PASSED] 1 VF
[13:47:59] [PASSED] 2 VFs
[13:47:59] [PASSED] 3 VFs
[13:47:59] [PASSED] 4 VFs
[13:47:59] [PASSED] 5 VFs
[13:47:59] [PASSED] 6 VFs
[13:47:59] [PASSED] 7 VFs
[13:47:59] [PASSED] 8 VFs
[13:47:59] [PASSED] 9 VFs
[13:47:59] [PASSED] 10 VFs
[13:47:59] [PASSED] 11 VFs
[13:47:59] [PASSED] 12 VFs
[13:47:59] [PASSED] 13 VFs
[13:47:59] [PASSED] 14 VFs
[13:47:59] [PASSED] 15 VFs
[13:47:59] [PASSED] 16 VFs
[13:47:59] [PASSED] 17 VFs
[13:47:59] [PASSED] 18 VFs
[13:47:59] [PASSED] 19 VFs
[13:47:59] [PASSED] 20 VFs
[13:47:59] [PASSED] 21 VFs
[13:47:59] [PASSED] 22 VFs
[13:47:59] [PASSED] 23 VFs
[13:47:59] [PASSED] 24 VFs
[13:47:59] [PASSED] 25 VFs
[13:47:59] [PASSED] 26 VFs
[13:47:59] [PASSED] 27 VFs
[13:47:59] [PASSED] 28 VFs
[13:47:59] [PASSED] 29 VFs
[13:47:59] [PASSED] 30 VFs
[13:47:59] [PASSED] 31 VFs
[13:47:59] [PASSED] 32 VFs
[13:47:59] [PASSED] 33 VFs
[13:47:59] [PASSED] 34 VFs
[13:47:59] [PASSED] 35 VFs
[13:47:59] [PASSED] 36 VFs
[13:47:59] [PASSED] 37 VFs
[13:47:59] [PASSED] 38 VFs
[13:47:59] [PASSED] 39 VFs
[13:47:59] [PASSED] 40 VFs
[13:47:59] [PASSED] 41 VFs
[13:47:59] [PASSED] 42 VFs
[13:47:59] [PASSED] 43 VFs
[13:47:59] [PASSED] 44 VFs
[13:47:59] [PASSED] 45 VFs
[13:47:59] [PASSED] 46 VFs
[13:47:59] [PASSED] 47 VFs
[13:47:59] [PASSED] 48 VFs
[13:47:59] [PASSED] 49 VFs
[13:47:59] [PASSED] 50 VFs
[13:47:59] [PASSED] 51 VFs
[13:47:59] [PASSED] 52 VFs
[13:47:59] [PASSED] 53 VFs
[13:47:59] [PASSED] 54 VFs
[13:47:59] [PASSED] 55 VFs
[13:47:59] [PASSED] 56 VFs
[13:47:59] [PASSED] 57 VFs
[13:47:59] [PASSED] 58 VFs
[13:47:59] [PASSED] 59 VFs
[13:47:59] [PASSED] 60 VFs
[13:47:59] [PASSED] 61 VFs
[13:47:59] [PASSED] 62 VFs
[13:47:59] [PASSED] 63 VFs
[13:47:59] ================== [PASSED] fair_contexts ==================
[13:47:59] ===================== fair_doorbells ======================
[13:47:59] [PASSED] 1 VF
[13:47:59] [PASSED] 2 VFs
[13:47:59] [PASSED] 3 VFs
[13:47:59] [PASSED] 4 VFs
[13:47:59] [PASSED] 5 VFs
[13:47:59] [PASSED] 6 VFs
[13:47:59] [PASSED] 7 VFs
[13:47:59] [PASSED] 8 VFs
[13:47:59] [PASSED] 9 VFs
[13:47:59] [PASSED] 10 VFs
[13:47:59] [PASSED] 11 VFs
[13:47:59] [PASSED] 12 VFs
[13:47:59] [PASSED] 13 VFs
[13:47:59] [PASSED] 14 VFs
[13:47:59] [PASSED] 15 VFs
[13:47:59] [PASSED] 16 VFs
[13:47:59] [PASSED] 17 VFs
[13:47:59] [PASSED] 18 VFs
[13:47:59] [PASSED] 19 VFs
[13:47:59] [PASSED] 20 VFs
[13:47:59] [PASSED] 21 VFs
[13:47:59] [PASSED] 22 VFs
[13:47:59] [PASSED] 23 VFs
[13:47:59] [PASSED] 24 VFs
[13:47:59] [PASSED] 25 VFs
[13:47:59] [PASSED] 26 VFs
[13:47:59] [PASSED] 27 VFs
[13:47:59] [PASSED] 28 VFs
[13:47:59] [PASSED] 29 VFs
[13:47:59] [PASSED] 30 VFs
[13:47:59] [PASSED] 31 VFs
[13:47:59] [PASSED] 32 VFs
[13:47:59] [PASSED] 33 VFs
[13:47:59] [PASSED] 34 VFs
[13:47:59] [PASSED] 35 VFs
[13:47:59] [PASSED] 36 VFs
[13:47:59] [PASSED] 37 VFs
[13:47:59] [PASSED] 38 VFs
[13:47:59] [PASSED] 39 VFs
[13:47:59] [PASSED] 40 VFs
[13:47:59] [PASSED] 41 VFs
[13:47:59] [PASSED] 42 VFs
[13:47:59] [PASSED] 43 VFs
[13:47:59] [PASSED] 44 VFs
[13:47:59] [PASSED] 45 VFs
[13:47:59] [PASSED] 46 VFs
[13:47:59] [PASSED] 47 VFs
[13:47:59] [PASSED] 48 VFs
[13:47:59] [PASSED] 49 VFs
[13:47:59] [PASSED] 50 VFs
[13:47:59] [PASSED] 51 VFs
[13:47:59] [PASSED] 52 VFs
[13:47:59] [PASSED] 53 VFs
[13:47:59] [PASSED] 54 VFs
[13:47:59] [PASSED] 55 VFs
[13:47:59] [PASSED] 56 VFs
[13:47:59] [PASSED] 57 VFs
[13:47:59] [PASSED] 58 VFs
[13:47:59] [PASSED] 59 VFs
[13:47:59] [PASSED] 60 VFs
[13:47:59] [PASSED] 61 VFs
[13:47:59] [PASSED] 62 VFs
[13:47:59] [PASSED] 63 VFs
[13:47:59] ================= [PASSED] fair_doorbells ==================
[13:47:59] ======================== fair_ggtt ========================
[13:47:59] [PASSED] 1 VF
[13:47:59] [PASSED] 2 VFs
[13:47:59] [PASSED] 3 VFs
[13:47:59] [PASSED] 4 VFs
[13:47:59] [PASSED] 5 VFs
[13:47:59] [PASSED] 6 VFs
[13:47:59] [PASSED] 7 VFs
[13:47:59] [PASSED] 8 VFs
[13:47:59] [PASSED] 9 VFs
[13:47:59] [PASSED] 10 VFs
[13:47:59] [PASSED] 11 VFs
[13:47:59] [PASSED] 12 VFs
[13:47:59] [PASSED] 13 VFs
[13:47:59] [PASSED] 14 VFs
[13:47:59] [PASSED] 15 VFs
[13:47:59] [PASSED] 16 VFs
[13:47:59] [PASSED] 17 VFs
[13:47:59] [PASSED] 18 VFs
[13:47:59] [PASSED] 19 VFs
[13:47:59] [PASSED] 20 VFs
[13:47:59] [PASSED] 21 VFs
[13:47:59] [PASSED] 22 VFs
[13:47:59] [PASSED] 23 VFs
[13:47:59] [PASSED] 24 VFs
[13:47:59] [PASSED] 25 VFs
[13:47:59] [PASSED] 26 VFs
[13:47:59] [PASSED] 27 VFs
[13:47:59] [PASSED] 28 VFs
[13:47:59] [PASSED] 29 VFs
[13:47:59] [PASSED] 30 VFs
[13:47:59] [PASSED] 31 VFs
[13:47:59] [PASSED] 32 VFs
[13:47:59] [PASSED] 33 VFs
[13:47:59] [PASSED] 34 VFs
[13:47:59] [PASSED] 35 VFs
[13:47:59] [PASSED] 36 VFs
[13:47:59] [PASSED] 37 VFs
[13:47:59] [PASSED] 38 VFs
[13:47:59] [PASSED] 39 VFs
[13:47:59] [PASSED] 40 VFs
[13:47:59] [PASSED] 41 VFs
[13:47:59] [PASSED] 42 VFs
[13:47:59] [PASSED] 43 VFs
[13:47:59] [PASSED] 44 VFs
[13:47:59] [PASSED] 45 VFs
[13:47:59] [PASSED] 46 VFs
[13:47:59] [PASSED] 47 VFs
[13:47:59] [PASSED] 48 VFs
[13:47:59] [PASSED] 49 VFs
[13:47:59] [PASSED] 50 VFs
[13:47:59] [PASSED] 51 VFs
[13:47:59] [PASSED] 52 VFs
[13:47:59] [PASSED] 53 VFs
[13:47:59] [PASSED] 54 VFs
[13:47:59] [PASSED] 55 VFs
[13:47:59] [PASSED] 56 VFs
[13:47:59] [PASSED] 57 VFs
[13:47:59] [PASSED] 58 VFs
[13:47:59] [PASSED] 59 VFs
[13:47:59] [PASSED] 60 VFs
[13:47:59] [PASSED] 61 VFs
[13:47:59] [PASSED] 62 VFs
[13:47:59] [PASSED] 63 VFs
[13:47:59] ==================== [PASSED] fair_ggtt ====================
[13:47:59] ======================== fair_vram ========================
[13:47:59] [PASSED] 1 VF
[13:47:59] [PASSED] 2 VFs
[13:47:59] [PASSED] 3 VFs
[13:47:59] [PASSED] 4 VFs
[13:47:59] [PASSED] 5 VFs
[13:47:59] [PASSED] 6 VFs
[13:47:59] [PASSED] 7 VFs
[13:47:59] [PASSED] 8 VFs
[13:47:59] [PASSED] 9 VFs
[13:47:59] [PASSED] 10 VFs
[13:47:59] [PASSED] 11 VFs
[13:47:59] [PASSED] 12 VFs
[13:47:59] [PASSED] 13 VFs
[13:47:59] [PASSED] 14 VFs
[13:47:59] [PASSED] 15 VFs
[13:47:59] [PASSED] 16 VFs
[13:47:59] [PASSED] 17 VFs
[13:47:59] [PASSED] 18 VFs
[13:47:59] [PASSED] 19 VFs
[13:47:59] [PASSED] 20 VFs
[13:47:59] [PASSED] 21 VFs
[13:47:59] [PASSED] 22 VFs
[13:47:59] [PASSED] 23 VFs
[13:47:59] [PASSED] 24 VFs
[13:47:59] [PASSED] 25 VFs
[13:47:59] [PASSED] 26 VFs
[13:47:59] [PASSED] 27 VFs
[13:47:59] [PASSED] 28 VFs
[13:47:59] [PASSED] 29 VFs
[13:47:59] [PASSED] 30 VFs
[13:47:59] [PASSED] 31 VFs
[13:47:59] [PASSED] 32 VFs
[13:47:59] [PASSED] 33 VFs
[13:47:59] [PASSED] 34 VFs
[13:47:59] [PASSED] 35 VFs
[13:47:59] [PASSED] 36 VFs
[13:47:59] [PASSED] 37 VFs
[13:47:59] [PASSED] 38 VFs
[13:47:59] [PASSED] 39 VFs
[13:47:59] [PASSED] 40 VFs
[13:47:59] [PASSED] 41 VFs
[13:47:59] [PASSED] 42 VFs
[13:47:59] [PASSED] 43 VFs
[13:47:59] [PASSED] 44 VFs
[13:47:59] [PASSED] 45 VFs
[13:47:59] [PASSED] 46 VFs
[13:47:59] [PASSED] 47 VFs
[13:47:59] [PASSED] 48 VFs
[13:47:59] [PASSED] 49 VFs
[13:47:59] [PASSED] 50 VFs
[13:47:59] [PASSED] 51 VFs
[13:47:59] [PASSED] 52 VFs
[13:47:59] [PASSED] 53 VFs
[13:47:59] [PASSED] 54 VFs
[13:47:59] [PASSED] 55 VFs
[13:47:59] [PASSED] 56 VFs
[13:47:59] [PASSED] 57 VFs
[13:47:59] [PASSED] 58 VFs
[13:47:59] [PASSED] 59 VFs
[13:47:59] [PASSED] 60 VFs
[13:47:59] [PASSED] 61 VFs
[13:47:59] [PASSED] 62 VFs
[13:47:59] [PASSED] 63 VFs
[13:47:59] ==================== [PASSED] fair_vram ====================
[13:47:59] ================== [PASSED] pf_gt_config ===================
[13:47:59] ===================== lmtt (1 subtest) =====================
[13:47:59] ======================== test_ops =========================
[13:47:59] [PASSED] 2-level
[13:47:59] [PASSED] multi-level
[13:47:59] ==================== [PASSED] test_ops =====================
[13:47:59] ====================== [PASSED] lmtt =======================
[13:47:59] ================= sriov_packet (1 subtest) =================
[13:47:59] [PASSED] test_descriptor_init
[13:47:59] ================== [PASSED] sriov_packet ===================
[13:47:59] ================= pf_service (11 subtests) =================
[13:47:59] [PASSED] pf_negotiate_any
[13:48:00] [PASSED] pf_negotiate_base_match
[13:48:00] [PASSED] pf_negotiate_base_newer
[13:48:00] [PASSED] pf_negotiate_base_next
[13:48:00] [SKIPPED] pf_negotiate_base_older (no older minor)
[13:48:00] [PASSED] pf_negotiate_base_prev
[13:48:00] [PASSED] pf_negotiate_latest_match
[13:48:00] [PASSED] pf_negotiate_latest_newer
[13:48:00] [PASSED] pf_negotiate_latest_next
[13:48:00] [SKIPPED] pf_negotiate_latest_older (no older minor)
[13:48:00] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[13:48:00] =================== [PASSED] pf_service ====================
[13:48:00] ================= xe_guc_g2g (2 subtests) ==================
[13:48:00] ============== xe_live_guc_g2g_kunit_default ==============
[13:48:00] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[13:48:00] ============== xe_live_guc_g2g_kunit_allmem ===============
[13:48:00] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[13:48:00] =================== [SKIPPED] xe_guc_g2g ===================
[13:48:00] =================== xe_mocs (2 subtests) ===================
[13:48:00] ================ xe_live_mocs_kernel_kunit ================
[13:48:00] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[13:48:00] ================ xe_live_mocs_reset_kunit =================
[13:48:00] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[13:48:00] ==================== [SKIPPED] xe_mocs =====================
[13:48:00] ================= xe_migrate (2 subtests) ==================
[13:48:00] ================= xe_migrate_sanity_kunit =================
[13:48:00] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[13:48:00] ================== xe_validate_ccs_kunit ==================
[13:48:00] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[13:48:00] =================== [SKIPPED] xe_migrate ===================
[13:48:00] ================== xe_dma_buf (1 subtest) ==================
[13:48:00] ==================== xe_dma_buf_kunit =====================
[13:48:00] ================ [SKIPPED] xe_dma_buf_kunit ================
[13:48:00] =================== [SKIPPED] xe_dma_buf ===================
[13:48:00] ================= xe_bo_shrink (1 subtest) =================
[13:48:00] =================== xe_bo_shrink_kunit ====================
[13:48:00] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[13:48:00] ================== [SKIPPED] xe_bo_shrink ==================
[13:48:00] ==================== xe_bo (2 subtests) ====================
[13:48:00] ================== xe_ccs_migrate_kunit ===================
[13:48:00] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[13:48:00] ==================== xe_bo_evict_kunit ====================
[13:48:00] =============== [SKIPPED] xe_bo_evict_kunit ================
[13:48:00] ===================== [SKIPPED] xe_bo ======================
[13:48:00] =================== xe_any (9 subtests) ====================
[13:48:00] [PASSED] test_to_xe
[13:48:00] [PASSED] test_to_dev
[13:48:00] [PASSED] test_to_pdev
[13:48:00] [PASSED] test_to_drm
[13:48:00] [PASSED] test_if_pdev
[13:48:00] [PASSED] test_if_xe
[13:48:00] [PASSED] test_if_tile
[13:48:00] [PASSED] test_if_gt
[13:48:00] [PASSED] test_to_id
[13:48:00] ===================== [PASSED] xe_any ======================
[13:48:00] ==================== args (13 subtests) ====================
[13:48:00] [PASSED] count_args_test
[13:48:00] [PASSED] call_args_example
[13:48:00] [PASSED] call_args_test
[13:48:00] [PASSED] drop_first_arg_example
[13:48:00] [PASSED] drop_first_arg_test
[13:48:00] [PASSED] first_arg_example
[13:48:00] [PASSED] first_arg_test
[13:48:00] [PASSED] last_arg_example
[13:48:00] [PASSED] last_arg_test
[13:48:00] [PASSED] pick_arg_example
[13:48:00] [PASSED] if_args_example
[13:48:00] [PASSED] if_args_test
[13:48:00] [PASSED] sep_comma_example
[13:48:00] ====================== [PASSED] args =======================
[13:48:00] =================== xe_pci (3 subtests) ====================
[13:48:00] ==================== check_graphics_ip ====================
[13:48:00] [PASSED] 12.00 Xe_LP
[13:48:00] [PASSED] 12.10 Xe_LP+
[13:48:00] [PASSED] 12.55 Xe_HPG
[13:48:00] [PASSED] 12.60 Xe_HPC
[13:48:00] [PASSED] 12.70 Xe_LPG
[13:48:00] [PASSED] 12.71 Xe_LPG
[13:48:00] [PASSED] 12.74 Xe_LPG+
[13:48:00] [PASSED] 20.01 Xe2_HPG
[13:48:00] [PASSED] 20.02 Xe2_HPG
[13:48:00] [PASSED] 20.04 Xe2_LPG
[13:48:00] [PASSED] 30.00 Xe3_LPG
[13:48:00] [PASSED] 30.01 Xe3_LPG
[13:48:00] [PASSED] 30.03 Xe3_LPG
[13:48:00] [PASSED] 30.04 Xe3_LPG
[13:48:00] [PASSED] 30.05 Xe3_LPG
[13:48:00] [PASSED] 35.10 Xe3p_LPG
[13:48:00] [PASSED] 35.11 Xe3p_XPC
[13:48:00] ================ [PASSED] check_graphics_ip ================
[13:48:00] ===================== check_media_ip ======================
[13:48:00] [PASSED] 12.00 Xe_M
[13:48:00] [PASSED] 12.55 Xe_HPM
[13:48:00] [PASSED] 13.00 Xe_LPM+
[13:48:00] [PASSED] 13.01 Xe2_HPM
[13:48:00] [PASSED] 20.00 Xe2_LPM
[13:48:00] [PASSED] 30.00 Xe3_LPM
[13:48:00] [PASSED] 30.02 Xe3_LPM
[13:48:00] [PASSED] 35.00 Xe3p_LPM
[13:48:00] [PASSED] 35.03 Xe3p_HPM
[13:48:00] ================= [PASSED] check_media_ip ==================
[13:48:00] =================== check_platform_desc ===================
[13:48:00] [PASSED] 0x9A60 (TIGERLAKE)
[13:48:00] [PASSED] 0x9A68 (TIGERLAKE)
[13:48:00] [PASSED] 0x9A70 (TIGERLAKE)
[13:48:00] [PASSED] 0x9A40 (TIGERLAKE)
[13:48:00] [PASSED] 0x9A49 (TIGERLAKE)
[13:48:00] [PASSED] 0x9A59 (TIGERLAKE)
[13:48:00] [PASSED] 0x9A78 (TIGERLAKE)
[13:48:00] [PASSED] 0x9AC0 (TIGERLAKE)
[13:48:00] [PASSED] 0x9AC9 (TIGERLAKE)
[13:48:00] [PASSED] 0x9AD9 (TIGERLAKE)
[13:48:00] [PASSED] 0x9AF8 (TIGERLAKE)
[13:48:00] [PASSED] 0x4C80 (ROCKETLAKE)
[13:48:00] [PASSED] 0x4C8A (ROCKETLAKE)
[13:48:00] [PASSED] 0x4C8B (ROCKETLAKE)
[13:48:00] [PASSED] 0x4C8C (ROCKETLAKE)
[13:48:00] [PASSED] 0x4C90 (ROCKETLAKE)
[13:48:00] [PASSED] 0x4C9A (ROCKETLAKE)
[13:48:00] [PASSED] 0x4680 (ALDERLAKE_S)
[13:48:00] [PASSED] 0x4682 (ALDERLAKE_S)
[13:48:00] [PASSED] 0x4688 (ALDERLAKE_S)
[13:48:00] [PASSED] 0x468A (ALDERLAKE_S)
[13:48:00] [PASSED] 0x468B (ALDERLAKE_S)
[13:48:00] [PASSED] 0x4690 (ALDERLAKE_S)
[13:48:00] [PASSED] 0x4692 (ALDERLAKE_S)
[13:48:00] [PASSED] 0x4693 (ALDERLAKE_S)
[13:48:00] [PASSED] 0x46A0 (ALDERLAKE_P)
[13:48:00] [PASSED] 0x46A1 (ALDERLAKE_P)
[13:48:00] [PASSED] 0x46A2 (ALDERLAKE_P)
[13:48:00] [PASSED] 0x46A3 (ALDERLAKE_P)
[13:48:00] [PASSED] 0x46A6 (ALDERLAKE_P)
[13:48:00] [PASSED] 0x46A8 (ALDERLAKE_P)
[13:48:00] [PASSED] 0x46AA (ALDERLAKE_P)
[13:48:00] [PASSED] 0x462A (ALDERLAKE_P)
[13:48:00] [PASSED] 0x4626 (ALDERLAKE_P)
[13:48:00] [PASSED] 0x4628 (ALDERLAKE_P)
[13:48:00] [PASSED] 0x46B0 (ALDERLAKE_P)
[13:48:00] [PASSED] 0x46B1 (ALDERLAKE_P)
[13:48:00] [PASSED] 0x46B2 (ALDERLAKE_P)
[13:48:00] [PASSED] 0x46B3 (ALDERLAKE_P)
[13:48:00] [PASSED] 0x46C0 (ALDERLAKE_P)
[13:48:00] [PASSED] 0x46C1 (ALDERLAKE_P)
[13:48:00] [PASSED] 0x46C2 (ALDERLAKE_P)
[13:48:00] [PASSED] 0x46C3 (ALDERLAKE_P)
[13:48:00] [PASSED] 0x46D0 (ALDERLAKE_N)
[13:48:00] [PASSED] 0x46D1 (ALDERLAKE_N)
[13:48:00] [PASSED] 0x46D2 (ALDERLAKE_N)
[13:48:00] [PASSED] 0x46D3 (ALDERLAKE_N)
[13:48:00] [PASSED] 0x46D4 (ALDERLAKE_N)
[13:48:00] [PASSED] 0xA721 (ALDERLAKE_P)
[13:48:00] [PASSED] 0xA7A1 (ALDERLAKE_P)
[13:48:00] [PASSED] 0xA7A9 (ALDERLAKE_P)
[13:48:00] [PASSED] 0xA7AC (ALDERLAKE_P)
[13:48:00] [PASSED] 0xA7AD (ALDERLAKE_P)
[13:48:00] [PASSED] 0xA720 (ALDERLAKE_P)
[13:48:00] [PASSED] 0xA7A0 (ALDERLAKE_P)
[13:48:00] [PASSED] 0xA7A8 (ALDERLAKE_P)
[13:48:00] [PASSED] 0xA7AA (ALDERLAKE_P)
[13:48:00] [PASSED] 0xA7AB (ALDERLAKE_P)
[13:48:00] [PASSED] 0xA780 (ALDERLAKE_S)
[13:48:00] [PASSED] 0xA781 (ALDERLAKE_S)
[13:48:00] [PASSED] 0xA782 (ALDERLAKE_S)
[13:48:00] [PASSED] 0xA783 (ALDERLAKE_S)
[13:48:00] [PASSED] 0xA788 (ALDERLAKE_S)
[13:48:00] [PASSED] 0xA789 (ALDERLAKE_S)
[13:48:00] [PASSED] 0xA78A (ALDERLAKE_S)
[13:48:00] [PASSED] 0xA78B (ALDERLAKE_S)
[13:48:00] [PASSED] 0x4905 (DG1)
[13:48:00] [PASSED] 0x4906 (DG1)
[13:48:00] [PASSED] 0x4907 (DG1)
[13:48:00] [PASSED] 0x4908 (DG1)
[13:48:00] [PASSED] 0x4909 (DG1)
[13:48:00] [PASSED] 0x56C0 (DG2)
[13:48:00] [PASSED] 0x56C2 (DG2)
[13:48:00] [PASSED] 0x56C1 (DG2)
[13:48:00] [PASSED] 0x7D51 (METEORLAKE)
[13:48:00] [PASSED] 0x7DD1 (METEORLAKE)
[13:48:00] [PASSED] 0x7D41 (METEORLAKE)
[13:48:00] [PASSED] 0x7D67 (METEORLAKE)
[13:48:00] [PASSED] 0xB640 (METEORLAKE)
[13:48:00] [PASSED] 0x56A0 (DG2)
[13:48:00] [PASSED] 0x56A1 (DG2)
[13:48:00] [PASSED] 0x56A2 (DG2)
[13:48:00] [PASSED] 0x56BE (DG2)
[13:48:00] [PASSED] 0x56BF (DG2)
[13:48:00] [PASSED] 0x5690 (DG2)
[13:48:00] [PASSED] 0x5691 (DG2)
[13:48:00] [PASSED] 0x5692 (DG2)
[13:48:00] [PASSED] 0x56A5 (DG2)
[13:48:00] [PASSED] 0x56A6 (DG2)
[13:48:00] [PASSED] 0x56B0 (DG2)
[13:48:00] [PASSED] 0x56B1 (DG2)
[13:48:00] [PASSED] 0x56BA (DG2)
[13:48:00] [PASSED] 0x56BB (DG2)
[13:48:00] [PASSED] 0x56BC (DG2)
[13:48:00] [PASSED] 0x56BD (DG2)
[13:48:00] [PASSED] 0x5693 (DG2)
[13:48:00] [PASSED] 0x5694 (DG2)
[13:48:00] [PASSED] 0x5695 (DG2)
[13:48:00] [PASSED] 0x56A3 (DG2)
[13:48:00] [PASSED] 0x56A4 (DG2)
[13:48:00] [PASSED] 0x56B2 (DG2)
[13:48:00] [PASSED] 0x56B3 (DG2)
[13:48:00] [PASSED] 0x5696 (DG2)
[13:48:00] [PASSED] 0x5697 (DG2)
[13:48:00] [PASSED] 0xB69 (PVC)
[13:48:00] [PASSED] 0xB6E (PVC)
[13:48:00] [PASSED] 0xBD4 (PVC)
[13:48:00] [PASSED] 0xBD5 (PVC)
[13:48:00] [PASSED] 0xBD6 (PVC)
[13:48:00] [PASSED] 0xBD7 (PVC)
[13:48:00] [PASSED] 0xBD8 (PVC)
[13:48:00] [PASSED] 0xBD9 (PVC)
[13:48:00] [PASSED] 0xBDA (PVC)
[13:48:00] [PASSED] 0xBDB (PVC)
[13:48:00] [PASSED] 0xBE0 (PVC)
[13:48:00] [PASSED] 0xBE1 (PVC)
[13:48:00] [PASSED] 0xBE5 (PVC)
[13:48:00] [PASSED] 0x7D40 (METEORLAKE)
[13:48:00] [PASSED] 0x7D45 (METEORLAKE)
[13:48:00] [PASSED] 0x7D55 (METEORLAKE)
[13:48:00] [PASSED] 0x7D60 (METEORLAKE)
[13:48:00] [PASSED] 0x7DD5 (METEORLAKE)
[13:48:00] [PASSED] 0x6420 (LUNARLAKE)
[13:48:00] [PASSED] 0x64A0 (LUNARLAKE)
[13:48:00] [PASSED] 0x64B0 (LUNARLAKE)
[13:48:00] [PASSED] 0xE202 (BATTLEMAGE)
[13:48:00] [PASSED] 0xE209 (BATTLEMAGE)
[13:48:00] [PASSED] 0xE20B (BATTLEMAGE)
[13:48:00] [PASSED] 0xE20C (BATTLEMAGE)
[13:48:00] [PASSED] 0xE20D (BATTLEMAGE)
[13:48:00] [PASSED] 0xE210 (BATTLEMAGE)
[13:48:00] [PASSED] 0xE211 (BATTLEMAGE)
[13:48:00] [PASSED] 0xE212 (BATTLEMAGE)
[13:48:00] [PASSED] 0xE216 (BATTLEMAGE)
[13:48:00] [PASSED] 0xE220 (BATTLEMAGE)
[13:48:00] [PASSED] 0xE221 (BATTLEMAGE)
[13:48:00] [PASSED] 0xE222 (BATTLEMAGE)
[13:48:00] [PASSED] 0xE223 (BATTLEMAGE)
[13:48:00] [PASSED] 0xB080 (PANTHERLAKE)
[13:48:00] [PASSED] 0xB081 (PANTHERLAKE)
[13:48:00] [PASSED] 0xB082 (PANTHERLAKE)
[13:48:00] [PASSED] 0xB083 (PANTHERLAKE)
[13:48:00] [PASSED] 0xB084 (PANTHERLAKE)
[13:48:00] [PASSED] 0xB085 (PANTHERLAKE)
[13:48:00] [PASSED] 0xB086 (PANTHERLAKE)
[13:48:00] [PASSED] 0xB087 (PANTHERLAKE)
[13:48:00] [PASSED] 0xB08F (PANTHERLAKE)
[13:48:00] [PASSED] 0xB090 (PANTHERLAKE)
[13:48:00] [PASSED] 0xB0A0 (PANTHERLAKE)
[13:48:00] [PASSED] 0xB0B0 (PANTHERLAKE)
[13:48:00] [PASSED] 0xFD80 (PANTHERLAKE)
[13:48:00] [PASSED] 0xFD81 (PANTHERLAKE)
[13:48:00] [PASSED] 0xD740 (NOVALAKE_S)
[13:48:00] [PASSED] 0xD741 (NOVALAKE_S)
[13:48:00] [PASSED] 0xD742 (NOVALAKE_S)
[13:48:00] [PASSED] 0xD743 (NOVALAKE_S)
[13:48:00] [PASSED] 0xD745 (NOVALAKE_S)
[13:48:00] [PASSED] 0xD74A (NOVALAKE_S)
[13:48:00] [PASSED] 0xD74B (NOVALAKE_S)
[13:48:00] [PASSED] 0x674C (CRESCENTISLAND)
[13:48:00] [PASSED] 0x674D (CRESCENTISLAND)
[13:48:00] [PASSED] 0x674E (CRESCENTISLAND)
[13:48:00] [PASSED] 0x674F (CRESCENTISLAND)
[13:48:00] [PASSED] 0x6750 (CRESCENTISLAND)
[13:48:00] [PASSED] 0xD750 (NOVALAKE_P)
[13:48:00] [PASSED] 0xD751 (NOVALAKE_P)
[13:48:00] [PASSED] 0xD752 (NOVALAKE_P)
[13:48:00] [PASSED] 0xD753 (NOVALAKE_P)
[13:48:00] [PASSED] 0xD754 (NOVALAKE_P)
[13:48:00] [PASSED] 0xD755 (NOVALAKE_P)
[13:48:00] [PASSED] 0xD756 (NOVALAKE_P)
[13:48:00] [PASSED] 0xD757 (NOVALAKE_P)
[13:48:00] [PASSED] 0xD75F (NOVALAKE_P)
[13:48:00] =============== [PASSED] check_platform_desc ===============
[13:48:00] ===================== [PASSED] xe_pci ======================
[13:48:00] ============= xe_rtp_tables_test (5 subtests) ==============
[13:48:00] ================== xe_rtp_table_gt_test ===================
[13:48:00] [PASSED] gt_was/14011060649
[13:48:00] [PASSED] gt_was/14011059788
[13:48:00] [PASSED] gt_was/14015795083
[13:48:00] [PASSED] gt_was/16021867713
[13:48:00] [PASSED] gt_was/14019449301
[13:48:00] [PASSED] gt_was/16028005424
[13:48:00] [PASSED] gt_was/14026578760
[13:48:00] [PASSED] gt_was/1409420604
[13:48:00] [PASSED] gt_was/1408615072
[13:48:00] [PASSED] gt_was/22010523718
[13:48:00] [PASSED] gt_was/14011006942
[13:48:00] [PASSED] gt_was/14014830051
[13:48:00] [PASSED] gt_was/18018781329
[13:48:00] [PASSED] gt_was/1509235366
[13:48:00] [PASSED] gt_was/18018781329
[13:48:00] [PASSED] gt_was/16016694945
[13:48:00] [PASSED] gt_was/14018575942
[13:48:00] [PASSED] gt_was/22016670082
[13:48:00] [PASSED] gt_was/22016670082
[13:48:00] [PASSED] gt_was/14017421178
[13:48:00] [PASSED] gt_was/16025250150
[13:48:00] [PASSED] gt_was/14021871409
[13:48:00] [PASSED] gt_was/16021865536
[13:48:00] [PASSED] gt_was/14021486841
[13:48:00] [PASSED] gt_was/14025160223
[13:48:00] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[13:48:00] [PASSED] gt_was/14025635424
[13:48:00] [PASSED] gt_was/16028005424
[13:48:00] ============== [PASSED] xe_rtp_table_gt_test ===============
[13:48:00] ================== xe_rtp_table_gt_test ===================
[13:48:00] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[13:48:00] [PASSED] gt_tunings/Tuning: 32B Access Enable
[13:48:00] [PASSED] gt_tunings/Tuning: L3 cache
[13:48:00] [PASSED] gt_tunings/Tuning: L3 cache - media
[13:48:00] [PASSED] gt_tunings/Tuning: Compression Overfetch
[13:48:00] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[13:48:00] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[13:48:00] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[13:48:00] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[13:48:00] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[13:48:00] [PASSED] gt_tunings/Tuning: Stateless compression control
[13:48:00] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[13:48:00] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[13:48:00] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[13:48:00] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[13:48:00] ============== [PASSED] xe_rtp_table_gt_test ===============
[13:48:00] ================== xe_rtp_table_oob_test ==================
[13:48:00] [PASSED] oob_was/1607983814
[13:48:00] [PASSED] oob_was/16010904313
[13:48:00] [PASSED] oob_was/18022495364
[13:48:00] [PASSED] oob_was/22012773006
[13:48:00] [PASSED] oob_was/14014475959
[13:48:00] [PASSED] oob_was/22011391025
[13:48:00] [PASSED] oob_was/22012727170
[13:48:00] [PASSED] oob_was/22012727685
[13:48:00] [PASSED] oob_was/22016596838
[13:48:00] [PASSED] oob_was/18020744125
[13:48:00] [PASSED] oob_was/1409600907
[13:48:00] [PASSED] oob_was/22014953428
[13:48:00] [PASSED] oob_was/16017236439
[13:48:00] [PASSED] oob_was/14019821291
[13:48:00] [PASSED] oob_was/14015076503
[13:48:00] [PASSED] oob_was/14018913170
[13:48:00] [PASSED] oob_was/14018094691
[13:48:00] [PASSED] oob_was/18024947630
[13:48:00] [PASSED] oob_was/16022287689
[13:48:00] [PASSED] oob_was/13011645652
[13:48:00] [PASSED] oob_was/14022293748
[13:48:00] [PASSED] oob_was/22019794406
[13:48:00] [PASSED] oob_was/22019338487
[13:48:00] [PASSED] oob_was/16023588340
[13:48:00] [PASSED] oob_was/14019789679
[13:48:00] [PASSED] oob_was/14022866841
[13:48:00] [PASSED] oob_was/16021333562
[13:48:00] [PASSED] oob_was/14016712196
[13:48:00] [PASSED] oob_was/14015568240
[13:48:00] [PASSED] oob_was/18013179988
[13:48:00] [PASSED] oob_was/1508761755
[13:48:00] [PASSED] oob_was/16023105232
[13:48:00] [PASSED] oob_was/16026508708
[13:48:00] [PASSED] oob_was/14020001231
[13:48:00] [PASSED] oob_was/16023683509
[13:48:00] [PASSED] oob_was/14025515070
[13:48:00] [PASSED] oob_was/15015404425_disable
[13:48:00] [PASSED] oob_was/16026007364
[13:48:00] [PASSED] oob_was/14020316580
[13:48:00] [PASSED] oob_was/14025883347
[13:48:00] [PASSED] oob_was/16029380221
[13:48:00] [PASSED] oob_was/22022079272
[13:48:00] [PASSED] oob_was/16029897822
[13:48:00] [PASSED] oob_was/14027054324
[13:48:00] ============== [PASSED] xe_rtp_table_oob_test ==============
[13:48:00] ================ xe_rtp_table_dev_oob_test ================
[13:48:00] [PASSED] device_oob_was/22010954014
[13:48:00] [PASSED] device_oob_was/15015404425
[13:48:00] [PASSED] device_oob_was/22019338487_display
[13:48:00] [PASSED] device_oob_was/14022085890
[13:48:00] [PASSED] device_oob_was/14026539277
[13:48:00] [PASSED] device_oob_was/14026633728
[13:48:00] [PASSED] device_oob_was/14026746987
[13:48:00] [PASSED] device_oob_was/14026779378
[13:48:00] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[13:48:00] ========== xe_rtp_table_missing_upper_bound_test ==========
[13:48:00] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[13:48:00] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[13:48:00] [PASSED] register_whitelist/1806527549
[13:48:00] [PASSED] register_whitelist/allow_read_ctx_timestamp
[13:48:00] [PASSED] register_whitelist/allow_read_queue_timestamp
[13:48:00] [PASSED] register_whitelist/16014440446
[13:48:00] [PASSED] register_whitelist/16017236439
[13:48:00] [PASSED] register_whitelist/16020183090
[13:48:00] [PASSED] register_whitelist/14024997852
[13:48:00] [PASSED] register_whitelist/14024997852
[13:48:00] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[13:48:00] =============== [PASSED] xe_rtp_tables_test ================
[13:48:00] =================== xe_rtp (3 subtests) ====================
[13:48:00] =================== xe_rtp_rules_tests ====================
[13:48:00] [PASSED] no
[13:48:00] [PASSED] yes
[13:48:00] [PASSED] no-and-no
[13:48:00] [PASSED] no-and-yes
[13:48:00] [PASSED] yes-and-no
[13:48:00] [PASSED] yes-and-yes
[13:48:00] [PASSED] no-or-no
[13:48:00] [PASSED] no-or-yes
[13:48:00] [PASSED] yes-or-no
[13:48:00] [PASSED] yes-or-yes
[13:48:00] [PASSED] no-yes-or-yes-no
[13:48:00] [PASSED] no-yes-or-yes-yes
[13:48:00] [PASSED] yes-yes-or-no-yes
[13:48:00] [PASSED] yes-yes-or-yes-yes
[13:48:00] [PASSED] no-no-or-yes-or-no
[13:48:00] [PASSED] or
[13:48:00] [PASSED] or-yes
[13:48:00] [PASSED] or-no
[13:48:00] [PASSED] yes-or
[13:48:00] [PASSED] no-or
[13:48:00] [PASSED] no-or-or-yes
[13:48:00] [PASSED] yes-or-or-no
[13:48:00] [PASSED] no-or-or-no
[13:48:00] [PASSED] missing-context-engine-class
[13:48:00] [PASSED] missing-context-engine-class-or-yes
[13:48:00] [PASSED] missing-context-engine-class-or-or-yes
[13:48:00] =============== [PASSED] xe_rtp_rules_tests ================
[13:48:00] =============== xe_rtp_process_to_sr_tests ================
[13:48:00] [PASSED] coalesce-same-reg
[13:48:00] [PASSED] coalesce-same-reg-literal-and-func
[13:48:00] [PASSED] no-match-no-add
[13:48:00] [PASSED] two-regs-two-entries
[13:48:00] [PASSED] clr-one-set-other
[13:48:00] [PASSED] set-field
[13:48:00] [PASSED] conflict-duplicate
[13:48:00] [PASSED] conflict-not-disjoint
[13:48:00] [PASSED] conflict-not-disjoint-literal-and-func
[13:48:00] [PASSED] conflict-reg-type
[13:48:00] [PASSED] bad-mcr-reg-forced-to-regular
[13:48:00] [PASSED] bad-regular-reg-forced-to-mcr
[13:48:00] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[13:48:00] ================== xe_rtp_process_tests ===================
[13:48:00] [PASSED] active1
[13:48:00] [PASSED] active2
[13:48:00] [PASSED] active-inactive
[13:48:00] [PASSED] inactive-active
[13:48:00] [PASSED] inactive-active-inactive
[13:48:00] [PASSED] inactive-inactive-inactive
[13:48:00] ============== [PASSED] xe_rtp_process_tests ===============
[13:48:00] ===================== [PASSED] xe_rtp ======================
[13:48:00] ==================== xe_wa (1 subtest) =====================
[13:48:00] ======================== xe_wa_gt =========================
[13:48:00] [PASSED] TIGERLAKE B0
[13:48:00] [PASSED] DG1 A0
[13:48:00] [PASSED] DG1 B0
[13:48:00] [PASSED] ALDERLAKE_S A0
[13:48:00] [PASSED] ALDERLAKE_S B0
[13:48:00] [PASSED] ALDERLAKE_S C0
[13:48:00] [PASSED] ALDERLAKE_S D0
[13:48:00] [PASSED] ALDERLAKE_P A0
[13:48:00] [PASSED] ALDERLAKE_P B0
[13:48:00] [PASSED] ALDERLAKE_P C0
[13:48:00] [PASSED] ALDERLAKE_S RPLS D0
[13:48:00] [PASSED] ALDERLAKE_P RPLU E0
[13:48:00] [PASSED] DG2 G10 C0
[13:48:00] [PASSED] DG2 G11 B1
[13:48:00] [PASSED] DG2 G12 A1
[13:48:00] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[13:48:00] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[13:48:00] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[13:48:00] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[13:48:00] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[13:48:00] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[13:48:00] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[13:48:00] ==================== [PASSED] xe_wa_gt =====================
[13:48:00] ====================== [PASSED] xe_wa ======================
[13:48:00] ============================================================
[13:48:00] Testing complete. Ran 789 tests: passed: 761, skipped: 28
[13:48:00] Elapsed time: 36.969s total, 4.430s configuring, 31.824s building, 0.680s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[13:48:00] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:48: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
[13:48:27] Starting KUnit Kernel (1/1)...
[13:48:27] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:48:27] ============ drm_test_pick_cmdline (2 subtests) ============
[13:48:27] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[13:48:27] =============== drm_test_pick_cmdline_named ===============
[13:48:27] [PASSED] NTSC
[13:48:27] [PASSED] NTSC-J
[13:48:27] [PASSED] PAL
[13:48:27] [PASSED] PAL-M
[13:48:27] =========== [PASSED] drm_test_pick_cmdline_named ===========
[13:48:27] ============== [PASSED] drm_test_pick_cmdline ==============
[13:48:27] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[13:48:27] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[13:48:27] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[13:48:27] =========== drm_validate_clone_mode (2 subtests) ===========
[13:48:27] ============== drm_test_check_in_clone_mode ===============
[13:48:27] [PASSED] in_clone_mode
[13:48:27] [PASSED] not_in_clone_mode
[13:48:27] ========== [PASSED] drm_test_check_in_clone_mode ===========
[13:48:27] =============== drm_test_check_valid_clones ===============
[13:48:27] [PASSED] not_in_clone_mode
[13:48:27] [PASSED] valid_clone
[13:48:27] [PASSED] invalid_clone
[13:48:27] =========== [PASSED] drm_test_check_valid_clones ===========
[13:48:27] ============= [PASSED] drm_validate_clone_mode =============
[13:48:27] ============= drm_validate_modeset (1 subtest) =============
[13:48:27] [PASSED] drm_test_check_connector_changed_modeset
[13:48:27] ============== [PASSED] drm_validate_modeset ===============
[13:48:27] ====== drm_test_bridge_get_current_state (1 subtest) =======
[13:48:27] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[13:48:27] ======== [PASSED] drm_test_bridge_get_current_state ========
[13:48:27] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[13:48:27] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[13:48:27] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[13:48:27] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[13:48:27] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[13:48:27] ============== drm_bridge_alloc (2 subtests) ===============
[13:48:27] [PASSED] drm_test_drm_bridge_alloc_basic
[13:48:27] [PASSED] drm_test_drm_bridge_alloc_get_put
[13:48:27] ================ [PASSED] drm_bridge_alloc =================
[13:48:27] ============= drm_bridge_bus_fmt (5 subtests) ==============
[13:48:27] [PASSED] drm_test_bridge_rgb_yuv_rgb
[13:48:27] [PASSED] drm_test_bridge_must_convert_to_yuv444
[13:48:27] [PASSED] drm_test_bridge_hdmi_auto_rgb
[13:48:27] [PASSED] drm_test_bridge_auto_first
[13:48:27] [PASSED] drm_test_bridge_rgb_yuv_no_path
[13:48:27] =============== [PASSED] drm_bridge_bus_fmt ================
[13:48:27] ============= drm_cmdline_parser (40 subtests) =============
[13:48:27] [PASSED] drm_test_cmdline_force_d_only
[13:48:27] [PASSED] drm_test_cmdline_force_D_only_dvi
[13:48:27] [PASSED] drm_test_cmdline_force_D_only_hdmi
[13:48:27] [PASSED] drm_test_cmdline_force_D_only_not_digital
[13:48:27] [PASSED] drm_test_cmdline_force_e_only
[13:48:27] [PASSED] drm_test_cmdline_res
[13:48:27] [PASSED] drm_test_cmdline_res_vesa
[13:48:27] [PASSED] drm_test_cmdline_res_vesa_rblank
[13:48:27] [PASSED] drm_test_cmdline_res_rblank
[13:48:27] [PASSED] drm_test_cmdline_res_bpp
[13:48:27] [PASSED] drm_test_cmdline_res_refresh
[13:48:27] [PASSED] drm_test_cmdline_res_bpp_refresh
[13:48:27] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[13:48:27] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[13:48:27] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[13:48:27] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[13:48:27] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[13:48:27] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[13:48:27] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[13:48:27] [PASSED] drm_test_cmdline_res_margins_force_on
[13:48:27] [PASSED] drm_test_cmdline_res_vesa_margins
[13:48:27] [PASSED] drm_test_cmdline_name
[13:48:27] [PASSED] drm_test_cmdline_name_bpp
[13:48:27] [PASSED] drm_test_cmdline_name_option
[13:48:27] [PASSED] drm_test_cmdline_name_bpp_option
[13:48:27] [PASSED] drm_test_cmdline_rotate_0
[13:48:27] [PASSED] drm_test_cmdline_rotate_90
[13:48:27] [PASSED] drm_test_cmdline_rotate_180
[13:48:27] [PASSED] drm_test_cmdline_rotate_270
[13:48:27] [PASSED] drm_test_cmdline_hmirror
[13:48:27] [PASSED] drm_test_cmdline_vmirror
[13:48:27] [PASSED] drm_test_cmdline_margin_options
[13:48:27] [PASSED] drm_test_cmdline_multiple_options
[13:48:27] [PASSED] drm_test_cmdline_bpp_extra_and_option
[13:48:27] [PASSED] drm_test_cmdline_extra_and_option
[13:48:27] [PASSED] drm_test_cmdline_freestanding_options
[13:48:27] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[13:48:27] [PASSED] drm_test_cmdline_panel_orientation
[13:48:27] ================ drm_test_cmdline_invalid =================
[13:48:27] [PASSED] margin_only
[13:48:27] [PASSED] interlace_only
[13:48:27] [PASSED] res_missing_x
[13:48:27] [PASSED] res_missing_y
[13:48:27] [PASSED] res_bad_y
[13:48:27] [PASSED] res_missing_y_bpp
[13:48:27] [PASSED] res_bad_bpp
[13:48:27] [PASSED] res_bad_refresh
[13:48:27] [PASSED] res_bpp_refresh_force_on_off
[13:48:27] [PASSED] res_invalid_mode
[13:48:27] [PASSED] res_bpp_wrong_place_mode
[13:48:27] [PASSED] name_bpp_refresh
[13:48:27] [PASSED] name_refresh
[13:48:27] [PASSED] name_refresh_wrong_mode
[13:48:27] [PASSED] name_refresh_invalid_mode
[13:48:27] [PASSED] rotate_multiple
[13:48:27] [PASSED] rotate_invalid_val
[13:48:27] [PASSED] rotate_truncated
[13:48:27] [PASSED] invalid_option
[13:48:27] [PASSED] invalid_tv_option
[13:48:27] [PASSED] truncated_tv_option
[13:48:27] ============ [PASSED] drm_test_cmdline_invalid =============
[13:48:27] =============== drm_test_cmdline_tv_options ===============
[13:48:27] [PASSED] NTSC
[13:48:27] [PASSED] NTSC_443
[13:48:27] [PASSED] NTSC_J
[13:48:27] [PASSED] PAL
[13:48:27] [PASSED] PAL_M
[13:48:27] [PASSED] PAL_N
[13:48:27] [PASSED] SECAM
[13:48:27] [PASSED] MONO_525
[13:48:27] [PASSED] MONO_625
[13:48:27] =========== [PASSED] drm_test_cmdline_tv_options ===========
[13:48:27] =============== [PASSED] drm_cmdline_parser ================
[13:48:27] ========== drmm_connector_hdmi_init (20 subtests) ==========
[13:48:27] [PASSED] drm_test_connector_hdmi_init_valid
[13:48:27] [PASSED] drm_test_connector_hdmi_init_bpc_8
[13:48:27] [PASSED] drm_test_connector_hdmi_init_bpc_10
[13:48:27] [PASSED] drm_test_connector_hdmi_init_bpc_12
[13:48:27] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[13:48:27] [PASSED] drm_test_connector_hdmi_init_bpc_null
[13:48:27] [PASSED] drm_test_connector_hdmi_init_formats_empty
[13:48:27] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[13:48:27] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[13:48:27] [PASSED] supported_formats=0x9 yuv420_allowed=1
[13:48:27] [PASSED] supported_formats=0x9 yuv420_allowed=0
[13:48:27] [PASSED] supported_formats=0x5 yuv420_allowed=1
[13:48:27] [PASSED] supported_formats=0x5 yuv420_allowed=0
[13:48:27] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[13:48:27] [PASSED] drm_test_connector_hdmi_init_null_ddc
[13:48:27] [PASSED] drm_test_connector_hdmi_init_null_product
[13:48:27] [PASSED] drm_test_connector_hdmi_init_null_vendor
[13:48:27] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[13:48:27] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[13:48:27] [PASSED] drm_test_connector_hdmi_init_product_valid
[13:48:27] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[13:48:27] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[13:48:27] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[13:48:27] ========= drm_test_connector_hdmi_init_type_valid =========
[13:48:27] [PASSED] HDMI-A
[13:48:27] [PASSED] HDMI-B
[13:48:27] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[13:48:27] ======== drm_test_connector_hdmi_init_type_invalid ========
[13:48:27] [PASSED] Unknown
[13:48:27] [PASSED] VGA
[13:48:27] [PASSED] DVI-I
[13:48:27] [PASSED] DVI-D
[13:48:27] [PASSED] DVI-A
[13:48:27] [PASSED] Composite
[13:48:27] [PASSED] SVIDEO
[13:48:27] [PASSED] LVDS
[13:48:27] [PASSED] Component
[13:48:27] [PASSED] DIN
[13:48:27] [PASSED] DP
[13:48:27] [PASSED] TV
[13:48:27] [PASSED] eDP
[13:48:27] [PASSED] Virtual
[13:48:27] [PASSED] DSI
[13:48:27] [PASSED] DPI
[13:48:27] [PASSED] Writeback
[13:48:27] [PASSED] SPI
[13:48:27] [PASSED] USB
[13:48:27] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[13:48:27] ============ [PASSED] drmm_connector_hdmi_init =============
[13:48:27] ============= drmm_connector_init (3 subtests) =============
[13:48:27] [PASSED] drm_test_drmm_connector_init
[13:48:27] [PASSED] drm_test_drmm_connector_init_null_ddc
[13:48:27] ========= drm_test_drmm_connector_init_type_valid =========
[13:48:27] [PASSED] Unknown
[13:48:27] [PASSED] VGA
[13:48:27] [PASSED] DVI-I
[13:48:27] [PASSED] DVI-D
[13:48:27] [PASSED] DVI-A
[13:48:27] [PASSED] Composite
[13:48:27] [PASSED] SVIDEO
[13:48:27] [PASSED] LVDS
[13:48:27] [PASSED] Component
[13:48:27] [PASSED] DIN
[13:48:27] [PASSED] DP
[13:48:27] [PASSED] HDMI-A
[13:48:27] [PASSED] HDMI-B
[13:48:27] [PASSED] TV
[13:48:27] [PASSED] eDP
[13:48:27] [PASSED] Virtual
[13:48:27] [PASSED] DSI
[13:48:27] [PASSED] DPI
[13:48:27] [PASSED] Writeback
[13:48:27] [PASSED] SPI
[13:48:27] [PASSED] USB
[13:48:27] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[13:48:27] =============== [PASSED] drmm_connector_init ===============
[13:48:27] ========= drm_connector_dynamic_init (6 subtests) ==========
[13:48:27] [PASSED] drm_test_drm_connector_dynamic_init
[13:48:27] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[13:48:27] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[13:48:27] [PASSED] drm_test_drm_connector_dynamic_init_properties
[13:48:27] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[13:48:27] [PASSED] Unknown
[13:48:27] [PASSED] VGA
[13:48:27] [PASSED] DVI-I
[13:48:27] [PASSED] DVI-D
[13:48:27] [PASSED] DVI-A
[13:48:27] [PASSED] Composite
[13:48:27] [PASSED] SVIDEO
[13:48:27] [PASSED] LVDS
[13:48:27] [PASSED] Component
[13:48:27] [PASSED] DIN
[13:48:27] [PASSED] DP
[13:48:27] [PASSED] HDMI-A
[13:48:27] [PASSED] HDMI-B
[13:48:27] [PASSED] TV
[13:48:27] [PASSED] eDP
[13:48:27] [PASSED] Virtual
[13:48:27] [PASSED] DSI
[13:48:27] [PASSED] DPI
[13:48:27] [PASSED] Writeback
[13:48:27] [PASSED] SPI
[13:48:27] [PASSED] USB
[13:48:27] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[13:48:27] ======== drm_test_drm_connector_dynamic_init_name =========
[13:48:27] [PASSED] Unknown
[13:48:27] [PASSED] VGA
[13:48:27] [PASSED] DVI-I
[13:48:27] [PASSED] DVI-D
[13:48:27] [PASSED] DVI-A
[13:48:27] [PASSED] Composite
[13:48:27] [PASSED] SVIDEO
[13:48:27] [PASSED] LVDS
[13:48:27] [PASSED] Component
[13:48:27] [PASSED] DIN
[13:48:27] [PASSED] DP
[13:48:27] [PASSED] HDMI-A
[13:48:27] [PASSED] HDMI-B
[13:48:27] [PASSED] TV
[13:48:27] [PASSED] eDP
[13:48:27] [PASSED] Virtual
[13:48:27] [PASSED] DSI
[13:48:27] [PASSED] DPI
[13:48:27] [PASSED] Writeback
[13:48:27] [PASSED] SPI
[13:48:27] [PASSED] USB
[13:48:27] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[13:48:27] =========== [PASSED] drm_connector_dynamic_init ============
[13:48:27] ==== drm_connector_dynamic_register_early (4 subtests) =====
[13:48:27] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[13:48:27] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[13:48:27] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[13:48:27] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[13:48:27] ====== [PASSED] drm_connector_dynamic_register_early =======
[13:48:27] ======= drm_connector_dynamic_register (7 subtests) ========
[13:48:27] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[13:48:27] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[13:48:27] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[13:48:27] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[13:48:27] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[13:48:27] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[13:48:27] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[13:48:27] ========= [PASSED] drm_connector_dynamic_register ==========
[13:48:27] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[13:48:27] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[13:48:27] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[13:48:27] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[13:48:27] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[13:48:27] ========== drm_test_get_tv_mode_from_name_valid ===========
[13:48:27] [PASSED] NTSC
[13:48:27] [PASSED] NTSC-443
[13:48:27] [PASSED] NTSC-J
[13:48:27] [PASSED] PAL
[13:48:27] [PASSED] PAL-M
[13:48:27] [PASSED] PAL-N
[13:48:27] [PASSED] SECAM
[13:48:27] [PASSED] Mono
[13:48:27] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[13:48:27] [PASSED] drm_test_get_tv_mode_from_name_truncated
[13:48:27] ============ [PASSED] drm_get_tv_mode_from_name ============
[13:48:27] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[13:48:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[13:48:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[13:48:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[13:48:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[13:48:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[13:48:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[13:48:27] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[13:48:27] [PASSED] VIC 96
[13:48:27] [PASSED] VIC 97
[13:48:27] [PASSED] VIC 101
[13:48:27] [PASSED] VIC 102
[13:48:27] [PASSED] VIC 106
[13:48:27] [PASSED] VIC 107
[13:48:27] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[13:48:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[13:48:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[13:48:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[13:48:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[13:48:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[13:48:27] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[13:48:27] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[13:48:27] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[13:48:27] [PASSED] Automatic
[13:48:27] [PASSED] Full
[13:48:27] [PASSED] Limited 16:235
[13:48:27] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[13:48:27] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[13:48:27] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[13:48:27] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[13:48:27] === drm_test_drm_hdmi_connector_get_output_format_name ====
[13:48:27] [PASSED] RGB
[13:48:27] [PASSED] YUV 4:2:0
[13:48:27] [PASSED] YUV 4:2:2
[13:48:27] [PASSED] YUV 4:4:4
[13:48:27] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[13:48:27] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[13:48:27] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[13:48:27] ============= drm_damage_helper (21 subtests) ==============
[13:48:27] [PASSED] drm_test_damage_iter_no_damage
[13:48:27] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[13:48:27] [PASSED] drm_test_damage_iter_no_damage_src_moved
[13:48:27] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[13:48:27] [PASSED] drm_test_damage_iter_no_damage_not_visible
[13:48:27] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[13:48:27] [PASSED] drm_test_damage_iter_no_damage_no_fb
[13:48:27] [PASSED] drm_test_damage_iter_simple_damage
[13:48:27] [PASSED] drm_test_damage_iter_single_damage
[13:48:27] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[13:48:27] [PASSED] drm_test_damage_iter_single_damage_outside_src
[13:48:27] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[13:48:27] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[13:48:27] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[13:48:27] [PASSED] drm_test_damage_iter_single_damage_src_moved
[13:48:27] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[13:48:27] [PASSED] drm_test_damage_iter_damage
[13:48:27] [PASSED] drm_test_damage_iter_damage_one_intersect
[13:48:27] [PASSED] drm_test_damage_iter_damage_one_outside
[13:48:27] [PASSED] drm_test_damage_iter_damage_src_moved
[13:48:27] [PASSED] drm_test_damage_iter_damage_not_visible
[13:48:27] ================ [PASSED] drm_damage_helper ================
[13:48:27] ============== drm_dp_mst_helper (3 subtests) ==============
[13:48:27] ============== drm_test_dp_mst_calc_pbn_mode ==============
[13:48:27] [PASSED] Clock 154000 BPP 30 DSC disabled
[13:48:27] [PASSED] Clock 234000 BPP 30 DSC disabled
[13:48:27] [PASSED] Clock 297000 BPP 24 DSC disabled
[13:48:27] [PASSED] Clock 332880 BPP 24 DSC enabled
[13:48:27] [PASSED] Clock 324540 BPP 24 DSC enabled
[13:48:27] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[13:48:27] ============== drm_test_dp_mst_calc_pbn_div ===============
[13:48:27] [PASSED] Link rate 2000000 lane count 4
[13:48:27] [PASSED] Link rate 2000000 lane count 2
[13:48:27] [PASSED] Link rate 2000000 lane count 1
[13:48:27] [PASSED] Link rate 1350000 lane count 4
[13:48:27] [PASSED] Link rate 1350000 lane count 2
[13:48:27] [PASSED] Link rate 1350000 lane count 1
[13:48:27] [PASSED] Link rate 1000000 lane count 4
[13:48:27] [PASSED] Link rate 1000000 lane count 2
[13:48:27] [PASSED] Link rate 1000000 lane count 1
[13:48:27] [PASSED] Link rate 810000 lane count 4
[13:48:27] [PASSED] Link rate 810000 lane count 2
[13:48:27] [PASSED] Link rate 810000 lane count 1
[13:48:27] [PASSED] Link rate 540000 lane count 4
[13:48:27] [PASSED] Link rate 540000 lane count 2
[13:48:27] [PASSED] Link rate 540000 lane count 1
[13:48:27] [PASSED] Link rate 270000 lane count 4
[13:48:27] [PASSED] Link rate 270000 lane count 2
[13:48:27] [PASSED] Link rate 270000 lane count 1
[13:48:27] [PASSED] Link rate 162000 lane count 4
[13:48:27] [PASSED] Link rate 162000 lane count 2
[13:48:27] [PASSED] Link rate 162000 lane count 1
[13:48:27] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[13:48:27] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[13:48:27] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[13:48:27] [PASSED] DP_POWER_UP_PHY with port number
[13:48:27] [PASSED] DP_POWER_DOWN_PHY with port number
[13:48:27] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[13:48:27] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[13:48:27] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[13:48:27] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[13:48:27] [PASSED] DP_QUERY_PAYLOAD with port number
[13:48:27] [PASSED] DP_QUERY_PAYLOAD with VCPI
[13:48:27] [PASSED] DP_REMOTE_DPCD_READ with port number
[13:48:27] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[13:48:27] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[13:48:27] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[13:48:27] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[13:48:27] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[13:48:27] [PASSED] DP_REMOTE_I2C_READ with port number
[13:48:27] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[13:48:27] [PASSED] DP_REMOTE_I2C_READ with transactions array
[13:48:27] [PASSED] DP_REMOTE_I2C_WRITE with port number
[13:48:27] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[13:48:27] [PASSED] DP_REMOTE_I2C_WRITE with data array
[13:48:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[13:48:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[13:48:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[13:48:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[13:48:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[13:48:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[13:48:27] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[13:48:27] ================ [PASSED] drm_dp_mst_helper ================
[13:48:27] ================== drm_exec (7 subtests) ===================
[13:48:27] [PASSED] sanitycheck
[13:48:27] [PASSED] test_lock
[13:48:27] [PASSED] test_lock_unlock
[13:48:27] [PASSED] test_duplicates
[13:48:27] [PASSED] test_prepare
[13:48:27] [PASSED] test_prepare_array
[13:48:27] [PASSED] test_multiple_loops
[13:48:27] ==================== [PASSED] drm_exec =====================
[13:48:27] =========== drm_format_helper_test (17 subtests) ===========
[13:48:27] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[13:48:27] [PASSED] single_pixel_source_buffer
[13:48:27] [PASSED] single_pixel_clip_rectangle
[13:48:27] [PASSED] well_known_colors
[13:48:27] [PASSED] destination_pitch
[13:48:27] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[13:48:27] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[13:48:27] [PASSED] single_pixel_source_buffer
[13:48:27] [PASSED] single_pixel_clip_rectangle
[13:48:27] [PASSED] well_known_colors
[13:48:27] [PASSED] destination_pitch
[13:48:27] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[13:48:27] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[13:48:27] [PASSED] single_pixel_source_buffer
[13:48:27] [PASSED] single_pixel_clip_rectangle
[13:48:27] [PASSED] well_known_colors
[13:48:27] [PASSED] destination_pitch
[13:48:27] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[13:48:27] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[13:48:27] [PASSED] single_pixel_source_buffer
[13:48:27] [PASSED] single_pixel_clip_rectangle
[13:48:27] [PASSED] well_known_colors
[13:48:27] [PASSED] destination_pitch
[13:48:27] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[13:48:27] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[13:48:27] [PASSED] single_pixel_source_buffer
[13:48:27] [PASSED] single_pixel_clip_rectangle
[13:48:27] [PASSED] well_known_colors
[13:48:27] [PASSED] destination_pitch
[13:48:27] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[13:48:27] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[13:48:27] [PASSED] single_pixel_source_buffer
[13:48:27] [PASSED] single_pixel_clip_rectangle
[13:48:27] [PASSED] well_known_colors
[13:48:27] [PASSED] destination_pitch
[13:48:27] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[13:48:27] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[13:48:27] [PASSED] single_pixel_source_buffer
[13:48:27] [PASSED] single_pixel_clip_rectangle
[13:48:27] [PASSED] well_known_colors
[13:48:27] [PASSED] destination_pitch
[13:48:27] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[13:48:27] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[13:48:27] [PASSED] single_pixel_source_buffer
[13:48:27] [PASSED] single_pixel_clip_rectangle
[13:48:27] [PASSED] well_known_colors
[13:48:27] [PASSED] destination_pitch
[13:48:27] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[13:48:27] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[13:48:27] [PASSED] single_pixel_source_buffer
[13:48:27] [PASSED] single_pixel_clip_rectangle
[13:48:27] [PASSED] well_known_colors
[13:48:27] [PASSED] destination_pitch
[13:48:27] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[13:48:27] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[13:48:27] [PASSED] single_pixel_source_buffer
[13:48:27] [PASSED] single_pixel_clip_rectangle
[13:48:27] [PASSED] well_known_colors
[13:48:27] [PASSED] destination_pitch
[13:48:27] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[13:48:27] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[13:48:27] [PASSED] single_pixel_source_buffer
[13:48:27] [PASSED] single_pixel_clip_rectangle
[13:48:27] [PASSED] well_known_colors
[13:48:27] [PASSED] destination_pitch
[13:48:27] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[13:48:27] ============== drm_test_fb_xrgb8888_to_mono ===============
[13:48:27] [PASSED] single_pixel_source_buffer
[13:48:27] [PASSED] single_pixel_clip_rectangle
[13:48:27] [PASSED] well_known_colors
[13:48:27] [PASSED] destination_pitch
[13:48:27] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[13:48:27] ==================== drm_test_fb_swab =====================
[13:48:27] [PASSED] single_pixel_source_buffer
[13:48:27] [PASSED] single_pixel_clip_rectangle
[13:48:27] [PASSED] well_known_colors
[13:48:27] [PASSED] destination_pitch
[13:48:27] ================ [PASSED] drm_test_fb_swab =================
[13:48:27] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[13:48:27] [PASSED] single_pixel_source_buffer
[13:48:27] [PASSED] single_pixel_clip_rectangle
[13:48:27] [PASSED] well_known_colors
[13:48:27] [PASSED] destination_pitch
[13:48:27] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[13:48:27] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[13:48:27] [PASSED] single_pixel_source_buffer
[13:48:27] [PASSED] single_pixel_clip_rectangle
[13:48:27] [PASSED] well_known_colors
[13:48:27] [PASSED] destination_pitch
[13:48:27] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[13:48:27] ================= drm_test_fb_clip_offset =================
[13:48:27] [PASSED] pass through
[13:48:27] [PASSED] horizontal offset
[13:48:27] [PASSED] vertical offset
[13:48:27] [PASSED] horizontal and vertical offset
[13:48:27] [PASSED] horizontal offset (custom pitch)
[13:48:27] [PASSED] vertical offset (custom pitch)
[13:48:27] [PASSED] horizontal and vertical offset (custom pitch)
[13:48:27] ============= [PASSED] drm_test_fb_clip_offset =============
[13:48:27] =================== drm_test_fb_memcpy ====================
[13:48:27] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[13:48:27] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[13:48:27] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[13:48:27] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[13:48:27] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[13:48:27] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[13:48:27] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[13:48:27] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[13:48:27] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[13:48:27] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[13:48:27] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[13:48:27] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[13:48:27] =============== [PASSED] drm_test_fb_memcpy ================
[13:48:27] ============= [PASSED] drm_format_helper_test ==============
[13:48:27] ================= drm_format (18 subtests) =================
[13:48:27] [PASSED] drm_test_format_block_width_invalid
[13:48:27] [PASSED] drm_test_format_block_width_one_plane
[13:48:27] [PASSED] drm_test_format_block_width_two_plane
[13:48:27] [PASSED] drm_test_format_block_width_three_plane
[13:48:27] [PASSED] drm_test_format_block_width_tiled
[13:48:27] [PASSED] drm_test_format_block_height_invalid
[13:48:27] [PASSED] drm_test_format_block_height_one_plane
[13:48:27] [PASSED] drm_test_format_block_height_two_plane
[13:48:27] [PASSED] drm_test_format_block_height_three_plane
[13:48:27] [PASSED] drm_test_format_block_height_tiled
[13:48:27] [PASSED] drm_test_format_min_pitch_invalid
[13:48:27] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[13:48:27] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[13:48:27] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[13:48:27] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[13:48:27] [PASSED] drm_test_format_min_pitch_two_plane
[13:48:27] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[13:48:27] [PASSED] drm_test_format_min_pitch_tiled
[13:48:27] =================== [PASSED] drm_format ====================
[13:48:27] ============== drm_framebuffer (10 subtests) ===============
[13:48:27] ========== drm_test_framebuffer_check_src_coords ==========
[13:48:27] [PASSED] Success: source fits into fb
[13:48:27] [PASSED] Fail: overflowing fb with x-axis coordinate
[13:48:27] [PASSED] Fail: overflowing fb with y-axis coordinate
[13:48:27] [PASSED] Fail: overflowing fb with source width
[13:48:27] [PASSED] Fail: overflowing fb with source height
[13:48:27] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[13:48:27] [PASSED] drm_test_framebuffer_cleanup
[13:48:27] =============== drm_test_framebuffer_create ===============
[13:48:27] [PASSED] ABGR8888 normal sizes
[13:48:27] [PASSED] ABGR8888 max sizes
[13:48:27] [PASSED] ABGR8888 pitch greater than min required
[13:48:27] [PASSED] ABGR8888 pitch less than min required
[13:48:27] [PASSED] ABGR8888 Invalid width
[13:48:27] [PASSED] ABGR8888 Invalid buffer handle
[13:48:27] [PASSED] No pixel format
[13:48:27] [PASSED] ABGR8888 Width 0
[13:48:27] [PASSED] ABGR8888 Height 0
[13:48:27] [PASSED] ABGR8888 Out of bound height * pitch combination
[13:48:27] [PASSED] ABGR8888 Large buffer offset
[13:48:27] [PASSED] ABGR8888 Buffer offset for inexistent plane
[13:48:27] [PASSED] ABGR8888 Invalid flag
[13:48:27] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[13:48:27] [PASSED] ABGR8888 Valid buffer modifier
[13:48:27] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[13:48:27] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[13:48:27] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[13:48:27] [PASSED] NV12 Normal sizes
[13:48:27] [PASSED] NV12 Max sizes
[13:48:27] [PASSED] NV12 Invalid pitch
[13:48:27] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[13:48:27] [PASSED] NV12 different modifier per-plane
[13:48:27] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[13:48:27] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[13:48:27] [PASSED] NV12 Modifier for inexistent plane
[13:48:27] [PASSED] NV12 Handle for inexistent plane
[13:48:27] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[13:48:27] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[13:48:27] [PASSED] YVU420 Normal sizes
[13:48:27] [PASSED] YVU420 Max sizes
[13:48:27] [PASSED] YVU420 Invalid pitch
[13:48:27] [PASSED] YVU420 Different pitches
[13:48:27] [PASSED] YVU420 Different buffer offsets/pitches
[13:48:27] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[13:48:27] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[13:48:27] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[13:48:27] [PASSED] YVU420 Valid modifier
[13:48:27] [PASSED] YVU420 Different modifiers per plane
[13:48:27] [PASSED] YVU420 Modifier for inexistent plane
[13:48:27] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[13:48:27] [PASSED] X0L2 Normal sizes
[13:48:27] [PASSED] X0L2 Max sizes
[13:48:27] [PASSED] X0L2 Invalid pitch
[13:48:27] [PASSED] X0L2 Pitch greater than minimum required
[13:48:27] [PASSED] X0L2 Handle for inexistent plane
[13:48:27] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[13:48:27] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[13:48:27] [PASSED] X0L2 Valid modifier
[13:48:27] [PASSED] X0L2 Modifier for inexistent plane
[13:48:27] =========== [PASSED] drm_test_framebuffer_create ===========
[13:48:27] [PASSED] drm_test_framebuffer_free
[13:48:27] [PASSED] drm_test_framebuffer_init
[13:48:27] [PASSED] drm_test_framebuffer_init_bad_format
[13:48:27] [PASSED] drm_test_framebuffer_init_dev_mismatch
[13:48:27] [PASSED] drm_test_framebuffer_lookup
[13:48:27] [PASSED] drm_test_framebuffer_lookup_inexistent
[13:48:27] [PASSED] drm_test_framebuffer_modifiers_not_supported
[13:48:27] ================= [PASSED] drm_framebuffer =================
[13:48:27] ================ drm_gem_shmem (8 subtests) ================
[13:48:27] [PASSED] drm_gem_shmem_test_obj_create
[13:48:27] [PASSED] drm_gem_shmem_test_obj_create_private
[13:48:27] [PASSED] drm_gem_shmem_test_pin_pages
[13:48:27] [PASSED] drm_gem_shmem_test_vmap
[13:48:27] [PASSED] drm_gem_shmem_test_get_sg_table
[13:48:27] [PASSED] drm_gem_shmem_test_get_pages_sgt
[13:48:27] [PASSED] drm_gem_shmem_test_madvise
[13:48:27] [PASSED] drm_gem_shmem_test_purge
[13:48:27] ================== [PASSED] drm_gem_shmem ==================
[13:48:27] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[13:48:27] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[13:48:27] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[13:48:27] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[13:48:27] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[13:48:27] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[13:48:27] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[13:48:27] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[13:48:27] [PASSED] Automatic
[13:48:27] [PASSED] Full
[13:48:27] [PASSED] Limited 16:235
[13:48:27] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[13:48:27] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[13:48:27] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[13:48:27] [PASSED] drm_test_check_disable_connector
[13:48:27] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[13:48:27] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[13:48:27] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[13:48:27] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[13:48:27] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[13:48:27] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[13:48:27] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[13:48:27] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[13:48:27] [PASSED] drm_test_check_output_bpc_dvi
[13:48:27] [PASSED] drm_test_check_output_bpc_format_vic_1
[13:48:27] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[13:48:27] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[13:48:27] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[13:48:27] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[13:48:27] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[13:48:27] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[13:48:27] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[13:48:27] ============ drm_test_check_hdmi_color_format =============
[13:48:27] [PASSED] AUTO -> RGB
[13:48:27] [PASSED] YCBCR422 -> YUV422
[13:48:27] [PASSED] YCBCR420 -> YUV420
[13:48:27] [PASSED] YCBCR444 -> YUV444
[13:48:27] [PASSED] RGB -> RGB
[13:48:27] ======== [PASSED] drm_test_check_hdmi_color_format =========
[13:48:27] ======== drm_test_check_hdmi_color_format_420_only ========
[13:48:27] [PASSED] RGB should fail
[13:48:27] [PASSED] YUV444 should fail
[13:48:27] [PASSED] YUV422 should fail
[13:48:27] [PASSED] YUV420 should work
[13:48:27] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[13:48:27] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[13:48:27] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[13:48:27] [PASSED] drm_test_check_broadcast_rgb_value
[13:48:27] [PASSED] drm_test_check_bpc_8_value
[13:48:27] [PASSED] drm_test_check_bpc_10_value
[13:48:27] [PASSED] drm_test_check_bpc_12_value
[13:48:27] [PASSED] drm_test_check_format_value
[13:48:27] [PASSED] drm_test_check_tmds_char_value
[13:48:27] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[13:48:27] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[13:48:27] [PASSED] drm_test_check_mode_valid
[13:48:27] [PASSED] drm_test_check_mode_valid_reject
[13:48:27] [PASSED] drm_test_check_mode_valid_reject_rate
[13:48:27] [PASSED] drm_test_check_mode_valid_reject_max_clock
[13:48:27] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[13:48:27] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[13:48:27] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[13:48:27] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[13:48:27] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[13:48:27] [PASSED] drm_test_check_infoframes
[13:48:27] [PASSED] drm_test_check_reject_avi_infoframe
[13:48:27] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[13:48:27] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[13:48:27] [PASSED] drm_test_check_reject_audio_infoframe
[13:48:27] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[13:48:27] ================= drm_managed (2 subtests) =================
[13:48:27] [PASSED] drm_test_managed_release_action
[13:48:27] [PASSED] drm_test_managed_run_action
[13:48:27] =================== [PASSED] drm_managed ===================
[13:48:27] =================== drm_mm (6 subtests) ====================
[13:48:27] [PASSED] drm_test_mm_init
[13:48:27] [PASSED] drm_test_mm_debug
[13:48:27] [PASSED] drm_test_mm_align32
[13:48:27] [PASSED] drm_test_mm_align64
[13:48:27] [PASSED] drm_test_mm_lowest
[13:48:27] [PASSED] drm_test_mm_highest
[13:48:27] ===================== [PASSED] drm_mm ======================
[13:48:27] ============= drm_modes_analog_tv (5 subtests) =============
[13:48:27] [PASSED] drm_test_modes_analog_tv_mono_576i
[13:48:27] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[13:48:27] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[13:48:27] [PASSED] drm_test_modes_analog_tv_pal_576i
[13:48:27] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[13:48:27] =============== [PASSED] drm_modes_analog_tv ===============
[13:48:27] ============== drm_plane_helper (2 subtests) ===============
[13:48:27] =============== drm_test_check_plane_state ================
[13:48:27] [PASSED] clipping_simple
[13:48:27] [PASSED] clipping_rotate_reflect
[13:48:27] [PASSED] positioning_simple
[13:48:27] [PASSED] upscaling
[13:48:27] [PASSED] downscaling
[13:48:27] [PASSED] rounding1
[13:48:27] [PASSED] rounding2
[13:48:27] [PASSED] rounding3
[13:48:27] [PASSED] rounding4
[13:48:27] =========== [PASSED] drm_test_check_plane_state ============
[13:48:27] =========== drm_test_check_invalid_plane_state ============
[13:48:27] [PASSED] positioning_invalid
[13:48:27] [PASSED] upscaling_invalid
[13:48:27] [PASSED] downscaling_invalid
[13:48:27] ======= [PASSED] drm_test_check_invalid_plane_state ========
[13:48:27] ================ [PASSED] drm_plane_helper =================
[13:48:27] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[13:48:27] ====== drm_test_connector_helper_tv_get_modes_check =======
[13:48:27] [PASSED] None
[13:48:27] [PASSED] PAL
[13:48:27] [PASSED] NTSC
[13:48:27] [PASSED] Both, NTSC Default
[13:48:27] [PASSED] Both, PAL Default
[13:48:27] [PASSED] Both, NTSC Default, with PAL on command-line
[13:48:27] [PASSED] Both, PAL Default, with NTSC on command-line
[13:48:27] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[13:48:27] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[13:48:27] ================== drm_rect (9 subtests) ===================
[13:48:27] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[13:48:27] [PASSED] drm_test_rect_clip_scaled_not_clipped
[13:48:27] [PASSED] drm_test_rect_clip_scaled_clipped
[13:48:27] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[13:48:27] ================= drm_test_rect_intersect =================
[13:48:27] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[13:48:27] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[13:48:27] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[13:48:27] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[13:48:27] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[13:48:27] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[13:48:27] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[13:48:27] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[13:48:27] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[13:48:27] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[13:48:27] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[13:48:27] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[13:48:27] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[13:48:27] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[13:48:27] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[13:48:27] ============= [PASSED] drm_test_rect_intersect =============
[13:48:27] ================ drm_test_rect_calc_hscale ================
[13:48:27] [PASSED] normal use
[13:48:27] [PASSED] out of max range
[13:48:27] [PASSED] out of min range
[13:48:27] [PASSED] zero dst
[13:48:27] [PASSED] negative src
[13:48:27] [PASSED] negative dst
[13:48:27] ============ [PASSED] drm_test_rect_calc_hscale ============
[13:48:27] ================ drm_test_rect_calc_vscale ================
[13:48:27] [PASSED] normal use
[13:48:27] [PASSED] out of max range
[13:48:27] [PASSED] out of min range
[13:48:27] [PASSED] zero dst
[13:48:27] [PASSED] negative src
[13:48:27] [PASSED] negative dst
[13:48:27] ============ [PASSED] drm_test_rect_calc_vscale ============
[13:48:27] ================== drm_test_rect_rotate ===================
[13:48:27] [PASSED] reflect-x
[13:48:27] [PASSED] reflect-y
[13:48:27] [PASSED] rotate-0
[13:48:27] [PASSED] rotate-90
[13:48:27] [PASSED] rotate-180
[13:48:27] [PASSED] rotate-270
[13:48:27] ============== [PASSED] drm_test_rect_rotate ===============
[13:48:27] ================ drm_test_rect_rotate_inv =================
[13:48:27] [PASSED] reflect-x
[13:48:27] [PASSED] reflect-y
[13:48:27] [PASSED] rotate-0
[13:48:27] [PASSED] rotate-90
[13:48:27] [PASSED] rotate-180
[13:48:27] [PASSED] rotate-270
[13:48:27] ============ [PASSED] drm_test_rect_rotate_inv =============
[13:48:27] ==================== [PASSED] drm_rect =====================
[13:48:27] ============ drm_sysfb_modeset_test (1 subtest) ============
[13:48:27] ============ drm_test_sysfb_build_fourcc_list =============
[13:48:27] [PASSED] no native formats
[13:48:27] [PASSED] XRGB8888 as native format
[13:48:27] [PASSED] remove duplicates
[13:48:27] [PASSED] convert alpha formats
[13:48:27] [PASSED] random formats
[13:48:27] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[13:48:27] ============= [PASSED] drm_sysfb_modeset_test ==============
[13:48:27] ================== drm_fixp (2 subtests) ===================
[13:48:27] [PASSED] drm_test_int2fixp
[13:48:27] [PASSED] drm_test_sm2fixp
[13:48:27] ==================== [PASSED] drm_fixp =====================
[13:48:27] ============================================================
[13:48:27] Testing complete. Ran 637 tests: passed: 637
[13:48:27] Elapsed time: 26.978s total, 1.766s configuring, 24.996s building, 0.191s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[13:48:27] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:48:29] 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:48:39] Starting KUnit Kernel (1/1)...
[13:48:39] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:48:39] ================= ttm_device (5 subtests) ==================
[13:48:39] [PASSED] ttm_device_init_basic
[13:48:39] [PASSED] ttm_device_init_multiple
[13:48:39] [PASSED] ttm_device_fini_basic
[13:48:39] [PASSED] ttm_device_init_no_vma_man
[13:48:39] ================== ttm_device_init_pools ==================
[13:48:39] [PASSED] No DMA allocations, no DMA32 required
[13:48:39] [PASSED] DMA allocations, DMA32 required
[13:48:39] [PASSED] No DMA allocations, DMA32 required
[13:48:39] [PASSED] DMA allocations, no DMA32 required
[13:48:39] ============== [PASSED] ttm_device_init_pools ==============
[13:48:39] =================== [PASSED] ttm_device ====================
[13:48:39] ================== ttm_pool (8 subtests) ===================
[13:48:39] ================== ttm_pool_alloc_basic ===================
[13:48:39] [PASSED] One page
[13:48:39] [PASSED] More than one page
[13:48:39] [PASSED] Above the allocation limit
[13:48:39] [PASSED] One page, with coherent DMA mappings enabled
[13:48:39] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[13:48:39] ============== [PASSED] ttm_pool_alloc_basic ===============
[13:48:39] ============== ttm_pool_alloc_basic_dma_addr ==============
[13:48:39] [PASSED] One page
[13:48:39] [PASSED] More than one page
[13:48:39] [PASSED] Above the allocation limit
[13:48:39] [PASSED] One page, with coherent DMA mappings enabled
[13:48:39] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[13:48:39] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[13:48:39] [PASSED] ttm_pool_alloc_order_caching_match
[13:48:39] [PASSED] ttm_pool_alloc_caching_mismatch
[13:48:39] [PASSED] ttm_pool_alloc_order_mismatch
[13:48:39] [PASSED] ttm_pool_free_dma_alloc
[13:48:39] [PASSED] ttm_pool_free_no_dma_alloc
[13:48:39] [PASSED] ttm_pool_fini_basic
[13:48:39] ==================== [PASSED] ttm_pool =====================
[13:48:39] ================ ttm_resource (8 subtests) =================
[13:48:39] ================= ttm_resource_init_basic =================
[13:48:39] [PASSED] Init resource in TTM_PL_SYSTEM
[13:48:39] [PASSED] Init resource in TTM_PL_VRAM
[13:48:39] [PASSED] Init resource in a private placement
[13:48:39] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[13:48:39] ============= [PASSED] ttm_resource_init_basic =============
[13:48:39] [PASSED] ttm_resource_init_pinned
[13:48:39] [PASSED] ttm_resource_fini_basic
[13:48:39] [PASSED] ttm_resource_manager_init_basic
[13:48:39] [PASSED] ttm_resource_manager_usage_basic
[13:48:39] [PASSED] ttm_resource_manager_set_used_basic
[13:48:39] [PASSED] ttm_sys_man_alloc_basic
[13:48:39] [PASSED] ttm_sys_man_free_basic
[13:48:39] ================== [PASSED] ttm_resource ===================
[13:48:39] =================== ttm_tt (15 subtests) ===================
[13:48:39] ==================== ttm_tt_init_basic ====================
[13:48:39] [PASSED] Page-aligned size
[13:48:39] [PASSED] Extra pages requested
[13:48:39] ================ [PASSED] ttm_tt_init_basic ================
[13:48:39] [PASSED] ttm_tt_init_misaligned
[13:48:39] [PASSED] ttm_tt_fini_basic
[13:48:39] [PASSED] ttm_tt_fini_sg
[13:48:39] [PASSED] ttm_tt_fini_shmem
[13:48:39] [PASSED] ttm_tt_create_basic
[13:48:39] [PASSED] ttm_tt_create_invalid_bo_type
[13:48:39] [PASSED] ttm_tt_create_ttm_exists
[13:48:39] [PASSED] ttm_tt_create_failed
[13:48:39] [PASSED] ttm_tt_destroy_basic
[13:48:39] [PASSED] ttm_tt_populate_null_ttm
[13:48:39] [PASSED] ttm_tt_populate_populated_ttm
[13:48:39] [PASSED] ttm_tt_unpopulate_basic
[13:48:39] [PASSED] ttm_tt_unpopulate_empty_ttm
[13:48:39] [PASSED] ttm_tt_swapin_basic
[13:48:39] ===================== [PASSED] ttm_tt ======================
[13:48:39] =================== ttm_bo (14 subtests) ===================
[13:48:39] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[13:48:39] [PASSED] Cannot be interrupted and sleeps
[13:48:39] [PASSED] Cannot be interrupted, locks straight away
[13:48:39] [PASSED] Can be interrupted, sleeps
[13:48:39] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[13:48:39] [PASSED] ttm_bo_reserve_locked_no_sleep
[13:48:39] [PASSED] ttm_bo_reserve_no_wait_ticket
[13:48:39] [PASSED] ttm_bo_reserve_double_resv
[13:48:39] [PASSED] ttm_bo_reserve_interrupted
[13:48:39] [PASSED] ttm_bo_reserve_deadlock
[13:48:39] [PASSED] ttm_bo_unreserve_basic
[13:48:39] [PASSED] ttm_bo_unreserve_pinned
[13:48:39] [PASSED] ttm_bo_unreserve_bulk
[13:48:39] [PASSED] ttm_bo_fini_basic
[13:48:39] [PASSED] ttm_bo_fini_shared_resv
[13:48:39] [PASSED] ttm_bo_pin_basic
[13:48:39] [PASSED] ttm_bo_pin_unpin_resource
[13:48:39] [PASSED] ttm_bo_multiple_pin_one_unpin
[13:48:39] ===================== [PASSED] ttm_bo ======================
[13:48:39] ============== ttm_bo_validate (22 subtests) ===============
[13:48:39] ============== ttm_bo_init_reserved_sys_man ===============
[13:48:39] [PASSED] Buffer object for userspace
[13:48:39] [PASSED] Kernel buffer object
[13:48:39] [PASSED] Shared buffer object
[13:48:39] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[13:48:39] ============== ttm_bo_init_reserved_mock_man ==============
[13:48:39] [PASSED] Buffer object for userspace
[13:48:39] [PASSED] Kernel buffer object
[13:48:39] [PASSED] Shared buffer object
[13:48:39] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[13:48:39] [PASSED] ttm_bo_init_reserved_resv
[13:48:39] ================== ttm_bo_validate_basic ==================
[13:48:39] [PASSED] Buffer object for userspace
[13:48:39] [PASSED] Kernel buffer object
[13:48:39] [PASSED] Shared buffer object
[13:48:39] ============== [PASSED] ttm_bo_validate_basic ==============
[13:48:39] [PASSED] ttm_bo_validate_invalid_placement
[13:48:39] ============= ttm_bo_validate_same_placement ==============
[13:48:39] [PASSED] System manager
[13:48:39] [PASSED] VRAM manager
[13:48:39] ========= [PASSED] ttm_bo_validate_same_placement ==========
[13:48:39] [PASSED] ttm_bo_validate_failed_alloc
[13:48:39] [PASSED] ttm_bo_validate_pinned
[13:48:39] [PASSED] ttm_bo_validate_busy_placement
[13:48:39] ================ ttm_bo_validate_multihop =================
[13:48:39] [PASSED] Buffer object for userspace
[13:48:39] [PASSED] Kernel buffer object
[13:48:39] [PASSED] Shared buffer object
[13:48:39] ============ [PASSED] ttm_bo_validate_multihop =============
[13:48:39] ========== ttm_bo_validate_no_placement_signaled ==========
[13:48:39] [PASSED] Buffer object in system domain, no page vector
[13:48:39] [PASSED] Buffer object in system domain with an existing page vector
[13:48:39] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[13:48:39] ======== ttm_bo_validate_no_placement_not_signaled ========
[13:48:39] [PASSED] Buffer object for userspace
[13:48:39] [PASSED] Kernel buffer object
[13:48:39] [PASSED] Shared buffer object
[13:48:39] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[13:48:39] [PASSED] ttm_bo_validate_move_fence_signaled
[13:48:39] ========= ttm_bo_validate_move_fence_not_signaled =========
[13:48:39] [PASSED] Waits for GPU
[13:48:39] [PASSED] Tries to lock straight away
[13:48:39] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[13:48:39] [PASSED] ttm_bo_validate_swapout
[13:48:39] [PASSED] ttm_bo_validate_happy_evict
[13:48:39] [PASSED] ttm_bo_validate_all_pinned_evict
[13:48:39] [PASSED] ttm_bo_validate_allowed_only_evict
[13:48:39] [PASSED] ttm_bo_validate_deleted_evict
[13:48:39] [PASSED] ttm_bo_validate_busy_domain_evict
[13:48:39] [PASSED] ttm_bo_validate_evict_gutting
[13:48:39] [PASSED] ttm_bo_validate_recrusive_evict
[13:48:39] ================= [PASSED] ttm_bo_validate =================
[13:48:39] ============================================================
[13:48:39] Testing complete. Ran 102 tests: passed: 102
[13:48:39] Elapsed time: 12.059s total, 1.812s configuring, 10.032s building, 0.176s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/dma-buf/.kunitconfig
[13:48:39] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:48:41] 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:48:50] Starting KUnit Kernel (1/1)...
[13:48:50] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:48:50] =============== dma-buf-fence (12 subtests) ================
[13:48:50] [PASSED] test_sanitycheck
[13:48:50] [PASSED] test_signaling
[13:48:50] [PASSED] test_add_callback
[13:48:50] [PASSED] test_late_add_callback
[13:48:50] [PASSED] test_rm_callback
[13:48:50] [PASSED] test_late_rm_callback
[13:48:50] [PASSED] test_status
[13:48:50] [PASSED] test_error
[13:48:50] [PASSED] test_wait
[13:48:50] [PASSED] test_wait_timeout
[13:48:50] [PASSED] test_stub
[13:48:50] [SKIPPED] test_race_signal_callback (requires at least 2 CPUs)
[13:48:50] ================== [PASSED] dma-buf-fence ==================
[13:48:50] ============ dma-buf-fence-chain (11 subtests) =============
[13:48:50] [PASSED] test_sanitycheck
[13:48:50] [PASSED] test_find_seqno
[13:48:50] [PASSED] test_find_signaled
[13:48:50] [PASSED] test_find_out_of_order
[13:48:55] [PASSED] test_find_gap
[13:48:55] [PASSED] test_find_race
[13:48:55] [PASSED] test_signal_forward
[13:48:55] [PASSED] test_signal_backward
[13:48:55] [PASSED] test_wait_forward
[13:48:55] [PASSED] test_wait_backward
[13:48:55] [PASSED] test_wait_random
[13:48:55] =============== [PASSED] dma-buf-fence-chain ===============
[13:48:55] ============ dma-buf-fence-unwrap (10 subtests) ============
[13:48:55] [PASSED] test_sanitycheck
[13:48:55] [PASSED] test_unwrap_array
[13:48:55] [PASSED] test_unwrap_chain
[13:48:55] [PASSED] test_unwrap_chain_array
[13:48:55] [PASSED] test_unwrap_merge
[13:48:55] [PASSED] test_unwrap_merge_duplicate
[13:48:55] [PASSED] test_unwrap_merge_seqno
[13:48:55] [PASSED] test_unwrap_merge_order
[13:48:55] [PASSED] test_unwrap_merge_complex
[13:48:55] [PASSED] test_unwrap_merge_complex_seqno
[13:48:55] ============== [PASSED] dma-buf-fence-unwrap ===============
[13:48:55] ================ dma-buf-resv (5 subtests) =================
[13:48:55] [PASSED] test_sanitycheck
[13:48:55] ===================== test_signaling ======================
[13:48:55] [PASSED] kernel
[13:48:55] [PASSED] write
[13:48:55] [PASSED] read
[13:48:55] [PASSED] bookkeep
[13:48:55] ================= [PASSED] test_signaling ==================
[13:48:55] ====================== test_for_each ======================
[13:48:55] [PASSED] kernel
[13:48:55] [PASSED] write
[13:48:55] [PASSED] read
[13:48:55] [PASSED] bookkeep
[13:48:55] ================== [PASSED] test_for_each ==================
[13:48:55] ================= test_for_each_unlocked ==================
[13:48:55] [PASSED] kernel
[13:48:55] [PASSED] write
[13:48:55] [PASSED] read
[13:48:55] [PASSED] bookkeep
[13:48:55] ============= [PASSED] test_for_each_unlocked ==============
[13:48:55] ===================== test_get_fences =====================
[13:48:55] [PASSED] kernel
[13:48:55] [PASSED] write
[13:48:55] [PASSED] read
[13:48:55] [PASSED] bookkeep
[13:48:55] ================= [PASSED] test_get_fences =================
[13:48:55] ================== [PASSED] dma-buf-resv ===================
[13:48:55] ============================================================
[13:48:55] Testing complete. Ran 50 tests: passed: 49, skipped: 1
[13:48:55] Elapsed time: 15.745s total, 1.860s configuring, 8.613s building, 5.269s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 20+ messages in thread* ✓ Xe.CI.BAT: success for drm/i915/cdclk: cdclk pcode related fixes and refactoring (rev2)
2026-08-26 13:40 [PATCH v2 00/14] drm/i915/cdclk: cdclk pcode related fixes and refactoring Ville Syrjala
` (14 preceding siblings ...)
2026-08-26 13:48 ` ✓ CI.KUnit: success for drm/i915/cdclk: cdclk pcode related fixes and refactoring (rev2) Patchwork
@ 2026-08-26 14:49 ` Patchwork
2026-08-26 18:28 ` ✓ Xe.CI.FULL: " Patchwork
16 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2026-08-26 14:49 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 972 bytes --]
== Series Details ==
Series: drm/i915/cdclk: cdclk pcode related fixes and refactoring (rev2)
URL : https://patchwork.freedesktop.org/series/168273/
State : success
== Summary ==
CI Bug Log - changes from xe-5647-4a47d4b5bf957bd7e34d8d3ab7096c42161892c6_BAT -> xe-pw-168273v2_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 12)
------------------------------
Missing (1): bat-nvls-1
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-5647-4a47d4b5bf957bd7e34d8d3ab7096c42161892c6 -> xe-pw-168273v2
IGT_9076: 8f42b0189d73d9912ad58c99cfaa4ff46c20fcc3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5647-4a47d4b5bf957bd7e34d8d3ab7096c42161892c6: 4a47d4b5bf957bd7e34d8d3ab7096c42161892c6
xe-pw-168273v2: 168273v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/index.html
[-- Attachment #2: Type: text/html, Size: 1520 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* ✓ Xe.CI.FULL: success for drm/i915/cdclk: cdclk pcode related fixes and refactoring (rev2)
2026-08-26 13:40 [PATCH v2 00/14] drm/i915/cdclk: cdclk pcode related fixes and refactoring Ville Syrjala
` (15 preceding siblings ...)
2026-08-26 14:49 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-08-26 18:28 ` Patchwork
16 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2026-08-26 18:28 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 26795 bytes --]
== Series Details ==
Series: drm/i915/cdclk: cdclk pcode related fixes and refactoring (rev2)
URL : https://patchwork.freedesktop.org/series/168273/
State : success
== Summary ==
CI Bug Log - changes from xe-5647-4a47d4b5bf957bd7e34d8d3ab7096c42161892c6_FULL -> xe-pw-168273v2_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between xe-5647-4a47d4b5bf957bd7e34d8d3ab7096c42161892c6_FULL and xe-pw-168273v2_FULL:
### New IGT tests (105) ###
* igt@kms_flip@absolute-wf_vblank-interruptible@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.10] s
* igt@kms_flip@absolute-wf_vblank-interruptible@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.10] s
* igt@kms_flip@absolute-wf_vblank-interruptible@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.09] s
* igt@kms_flip@absolute-wf_vblank@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.15] s
* igt@kms_flip@absolute-wf_vblank@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.12] s
* igt@kms_flip@absolute-wf_vblank@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.11] s
* igt@kms_flip@basic-flip-vs-dpms@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.75] s
* igt@kms_flip@basic-flip-vs-dpms@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.75] s
* igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.76] s
* igt@kms_flip@basic-flip-vs-modeset@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.76] s
* igt@kms_flip@basic-flip-vs-modeset@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.76] s
* igt@kms_flip@basic-flip-vs-modeset@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.78] s
* igt@kms_flip@basic-flip-vs-wf_vblank@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [1.09] s
* igt@kms_flip@basic-flip-vs-wf_vblank@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [1.08] s
* igt@kms_flip@basic-flip-vs-wf_vblank@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [1.10] s
* igt@kms_flip@basic-plain-flip@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.77] s
* igt@kms_flip@basic-plain-flip@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.77] s
* igt@kms_flip@basic-plain-flip@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.80] s
* igt@kms_flip@blocking-absolute-wf_vblank@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.14] s
* igt@kms_flip@blocking-absolute-wf_vblank@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.13] s
* igt@kms_flip@blocking-absolute-wf_vblank@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.12] s
* igt@kms_flip@blocking-wf_vblank@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.39] s
* igt@kms_flip@blocking-wf_vblank@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.38] s
* igt@kms_flip@blocking-wf_vblank@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.40] s
* igt@kms_flip@bo-too-big-interruptible@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.24] s
* igt@kms_flip@bo-too-big-interruptible@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.20] s
* igt@kms_flip@bo-too-big-interruptible@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.20] s
* igt@kms_flip@bo-too-big@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.28] s
* igt@kms_flip@bo-too-big@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.30] s
* igt@kms_flip@bo-too-big@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.28] s
* igt@kms_flip@busy-flip@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.79] s
* igt@kms_flip@busy-flip@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.81] s
* igt@kms_flip@busy-flip@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.79] s
* igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.01] s
* igt@kms_flip@dpms-off-confusion-interruptible@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.02] s
* igt@kms_flip@dpms-off-confusion-interruptible@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.01] s
* igt@kms_flip@dpms-vs-vblank-race-interruptible@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [1.82] s
* igt@kms_flip@dpms-vs-vblank-race-interruptible@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [1.77] s
* igt@kms_flip@dpms-vs-vblank-race-interruptible@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [1.81] s
* igt@kms_flip@dpms-vs-vblank-race@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [1.76] s
* igt@kms_flip@dpms-vs-vblank-race@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [1.78] s
* igt@kms_flip@dpms-vs-vblank-race@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [1.77] s
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.38] s
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.39] s
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.38] s
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.41] s
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.40] s
* igt@kms_flip@flip-vs-absolute-wf_vblank@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.39] s
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.41] s
* igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.40] s
* igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.41] s
* igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.70] s
* igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.73] s
* igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.73] s
* igt@kms_flip@flip-vs-dpms-off-vs-modeset@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.80] s
* igt@kms_flip@flip-vs-dpms-off-vs-modeset@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.79] s
* igt@kms_flip@flip-vs-dpms-off-vs-modeset@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.80] s
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.03] s
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.02] s
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.02] s
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.04] s
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.06] s
* igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.05] s
* igt@kms_flip@flip-vs-modeset-vs-hang@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.82] s
* igt@kms_flip@flip-vs-panning-interruptible@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.07] s
* igt@kms_flip@flip-vs-panning-interruptible@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.05] s
* igt@kms_flip@flip-vs-panning-interruptible@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.04] s
* igt@kms_flip@flip-vs-panning-vs-hang@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.80] s
* igt@kms_flip@flip-vs-rmfb-interruptible@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [3.99] s
* igt@kms_flip@flip-vs-rmfb-interruptible@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.02] s
* igt@kms_flip@flip-vs-rmfb-interruptible@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [3.99] s
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [3.09] s
* igt@kms_flip@flip-vs-wf_vblank-interruptible@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [1.01] s
* igt@kms_flip@flip-vs-wf_vblank-interruptible@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [1.04] s
* igt@kms_flip@flip-vs-wf_vblank-interruptible@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [1.02] s
* igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [1.83] s
* igt@kms_flip@modeset-vs-vblank-race@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [1.87] s
* igt@kms_flip@modeset-vs-vblank-race@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [1.83] s
* igt@kms_flip@nonexisting-fb-interruptible@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.28] s
* igt@kms_flip@nonexisting-fb-interruptible@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.27] s
* igt@kms_flip@nonexisting-fb-interruptible@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.28] s
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.30] s
* igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.29] s
* igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.31] s
* igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.36] s
* igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.32] s
* igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.32] s
* igt@kms_flip@plain-flip-interruptible@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.78] s
* igt@kms_flip@plain-flip-interruptible@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.79] s
* igt@kms_flip@plain-flip-interruptible@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.78] s
* igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.30] s
* igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.29] s
* igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.29] s
* igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.78] s
* igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.79] s
* igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.77] s
* igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.74] s
* igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.75] s
* igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [0.76] s
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.38] s
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.39] s
* igt@kms_flip@wf_vblank-ts-check-interruptible@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.38] s
* igt@kms_flip@wf_vblank-ts-check@a-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.41] s
* igt@kms_flip@wf_vblank-ts-check@b-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.41] s
* igt@kms_flip@wf_vblank-ts-check@c-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [4.41] s
Known issues
------------
Here are the changes found in xe-pw-168273v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@pan:
- shard-bmg: [PASS][1] -> [FAIL][2] ([Intel XE#2488])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5647-4a47d4b5bf957bd7e34d8d3ab7096c42161892c6/shard-bmg-7/igt@fbdev@pan.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-4/igt@fbdev@pan.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-9/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#1124])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-9/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_bw@linear-tiling-1-displays-target-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#367])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-9/igt@kms_bw@linear-tiling-1-displays-target-3840x2160p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2887]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-9/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][7] -> [INCOMPLETE][8] ([Intel XE#7084] / [Intel XE#8150]) +1 other test incomplete
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5647-4a47d4b5bf957bd7e34d8d3ab7096c42161892c6/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2724] / [Intel XE#7449])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-9/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2252]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-9/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2320])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-9/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_legacy@forked-bo:
- shard-bmg: [PASS][12] -> [INCOMPLETE][13] ([Intel XE#7774] / [Intel XE#8151]) +1 other test incomplete
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5647-4a47d4b5bf957bd7e34d8d3ab7096c42161892c6/shard-bmg-8/igt@kms_cursor_legacy@forked-bo.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-5/igt@kms_cursor_legacy@forked-bo.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2:
- shard-bmg: [PASS][14] -> [FAIL][15] ([Intel XE#3321])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5647-4a47d4b5bf957bd7e34d8d3ab7096c42161892c6/shard-bmg-9/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [PASS][16] -> [FAIL][17] ([Intel XE#301])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5647-4a47d4b5bf957bd7e34d8d3ab7096c42161892c6/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#7178] / [Intel XE#7351])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#4141])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2311]) +5 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#7061])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-9/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2313]) +4 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#1489])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-9/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-9/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2426] / [Intel XE#5848])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2450] / [Intel XE#5857])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-9/igt@kms_tv_load_detect@load-detect.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][27] -> [INCOMPLETE][28] ([Intel XE#6321] / [Intel XE#8355]) +1 other test incomplete
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5647-4a47d4b5bf957bd7e34d8d3ab7096c42161892c6/shard-bmg-9/igt@xe_evict@evict-mixed-many-threads-small.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2322] / [Intel XE#7372])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@twice-multi-queue-rebind:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#8374])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-9/igt@xe_exec_fault_mode@twice-multi-queue-rebind.html
* igt@xe_exec_multi_queue@max-queues-close-fd:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#8364]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-9/igt@xe_exec_multi_queue@max-queues-close-fd.html
* igt@xe_exec_reset@gt-stress-reset-mixed-engine-usage:
- shard-bmg: NOTRUN -> [INCOMPLETE][32] ([Intel XE#9041])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-9/igt@xe_exec_reset@gt-stress-reset-mixed-engine-usage.html
* igt@xe_exec_reset@multi-queue-cat-error:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#8369])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-9/igt@xe_exec_reset@multi-queue-cat-error.html
* igt@xe_exec_system_allocator@process-many-large-malloc-multi-fault:
- shard-bmg: [PASS][34] -> [INCOMPLETE][35] ([Intel XE#8159])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5647-4a47d4b5bf957bd7e34d8d3ab7096c42161892c6/shard-bmg-2/igt@xe_exec_system_allocator@process-many-large-malloc-multi-fault.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-5/igt@xe_exec_system_allocator@process-many-large-malloc-multi-fault.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
- shard-bmg: [PASS][36] -> [ABORT][37] ([Intel XE#8007]) +1 other test abort
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5647-4a47d4b5bf957bd7e34d8d3ab7096c42161892c6/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
#### Possible fixes ####
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3 (NEW):
- shard-bmg: [FAIL][38] ([Intel XE#3321]) -> [PASS][39]
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5647-4a47d4b5bf957bd7e34d8d3ab7096c42161892c6/shard-bmg-9/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [FAIL][40] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][41]
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5647-4a47d4b5bf957bd7e34d8d3ab7096c42161892c6/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
#### Warnings ####
* igt@kms_flip@flip-vs-expired-vblank:
- shard-lnl: [FAIL][42] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][43] ([Intel XE#301])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5647-4a47d4b5bf957bd7e34d8d3ab7096c42161892c6/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][44] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][45] ([Intel XE#2509] / [Intel XE#7437])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5647-4a47d4b5bf957bd7e34d8d3ab7096c42161892c6/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2488
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5857]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5857
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
[Intel XE#7774]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7774
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
[Intel XE#8151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8151
[Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159
[Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#9041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9041
Build changes
-------------
* Linux: xe-5647-4a47d4b5bf957bd7e34d8d3ab7096c42161892c6 -> xe-pw-168273v2
IGT_9076: 8f42b0189d73d9912ad58c99cfaa4ff46c20fcc3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5647-4a47d4b5bf957bd7e34d8d3ab7096c42161892c6: 4a47d4b5bf957bd7e34d8d3ab7096c42161892c6
xe-pw-168273v2: 168273v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168273v2/index.html
[-- Attachment #2: Type: text/html, Size: 31673 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread