From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by gabe.freedesktop.org (Postfix) with ESMTPS id A8F8C10E057 for ; Thu, 23 Feb 2023 15:16:12 +0000 (UTC) From: Bhanuprakash Modem To: igt-dev@lists.freedesktop.org Date: Thu, 23 Feb 2023 20:39:54 +0530 Message-Id: <20230223151018.2565040-28-bhanuprakash.modem@intel.com> In-Reply-To: <20230223151018.2565040-1-bhanuprakash.modem@intel.com> References: <20230223151018.2565040-1-bhanuprakash.modem@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [i-g-t v8 27/51] tests/kms_prime: Add support for Bigjoiner List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: This patch will add a check to Skip the subtest if a selected pipe/output combo won't support Bigjoiner or 8K mode. Example: * Pipe-D wont support a mode > 5K * To use 8K mode on a pipe then consecutive pipe must be available & free. V2: - Use updated helper name Signed-off-by: Bhanuprakash Modem Reviewed-by: Ananya Sharma --- tests/kms_prime.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/tests/kms_prime.c b/tests/kms_prime.c index ad199915b..255fa1742 100644 --- a/tests/kms_prime.c +++ b/tests/kms_prime.c @@ -89,14 +89,17 @@ static igt_output_t *setup_display(int importer_fd, igt_display_t *display, bool found = false; for_each_pipe_with_valid_output(display, *pipe, output) { - found = true; - break; + igt_display_reset(display); + + igt_output_set_pipe(output, *pipe); + if (i915_pipe_output_combo_valid(display)) { + found = true; + break; + } } igt_require_f(found, "No valid connector/pipe found\n"); - igt_display_reset(display); - igt_output_set_pipe(output, *pipe); return output; } -- 2.39.1