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 24FA410EBCD for ; Thu, 23 Feb 2023 15:15:28 +0000 (UTC) From: Bhanuprakash Modem To: igt-dev@lists.freedesktop.org Date: Thu, 23 Feb 2023 20:39:37 +0530 Message-Id: <20230223151018.2565040-11-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 10/51] tests/kms_content_protection: 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. Signed-off-by: Bhanuprakash Modem --- tests/kms_content_protection.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c index aa28b7bfd..638e1301a 100644 --- a/tests/kms_content_protection.c +++ b/tests/kms_content_protection.c @@ -174,7 +174,6 @@ static void modeset_with_fb(const enum pipe pipe, igt_output_t *output, igt_plane_t *primary; mode = igt_output_get_mode(output); - igt_output_set_pipe(output, pipe); primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); igt_plane_set_fb(primary, &data.red); @@ -502,6 +501,11 @@ test_content_protection(enum igt_commit_style s, int content_type) continue; igt_display_reset(display); + + igt_output_set_pipe(output, pipe); + if (!i915_pipe_output_combo_valid(display)) + continue; + modeset_with_fb(pipe, output, s); if (!output_hdcp_capable(output, content_type)) -- 2.39.1