Hi Thasleem,
On 26-02-2025 12:10, Mohammed Thasleem wrote:
Pipe A is required to run the DC5 transaction. Adding log information
to indicate if any pipe other than Pipe A is selected.
Signed-off-by: Mohammed Thasleem <mohammed.thasleem@xxxxxxxxx>
---
tests/intel/kms_pm_dc.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
index bbb29d7d9..1b10c7959 100644
--- a/tests/intel/kms_pm_dc.c
+++ b/tests/intel/kms_pm_dc.c
@@ -160,6 +160,9 @@ static void setup_output(data_t *data)
for_each_pipe_with_valid_output(display, pipe, output) {
drmModeConnectorPtr c = output->config.connector;
+ if (pipe != PIPE_A)
+ igt_info("Pipe A was not selected for the DC5 transaction.\n");
+
Till gen12 , Only Pipe A is low power pipe and from gen12+ to xe3 , pipe
A and pipe B both are low power pipes , Add this info message accordingly.
if (c->connector_type != DRM_MODE_CONNECTOR_eDP)
continue;