From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by gabe.freedesktop.org (Postfix) with ESMTPS id 424B610EC63 for ; Thu, 22 Sep 2022 16:04:03 +0000 (UTC) From: Bhanuprakash Modem To: igt-dev@lists.freedesktop.org Date: Thu, 22 Sep 2022 21:29:36 +0530 Message-Id: <20220922160004.2041598-25-bhanuprakash.modem@intel.com> In-Reply-To: <20220922160004.2041598-1-bhanuprakash.modem@intel.com> References: <20220922160004.2041598-1-bhanuprakash.modem@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [i-g-t V4 24/52] tests/kms_plane_cursor: 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 --- tests/kms_plane_cursor.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/kms_plane_cursor.c b/tests/kms_plane_cursor.c index 6b7e5cef..623bb12f 100644 --- a/tests/kms_plane_cursor.c +++ b/tests/kms_plane_cursor.c @@ -83,12 +83,16 @@ static void test_init(data_t *data, enum pipe pipe_id, igt_output_t *output) data->overlay = igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_OVERLAY); data->cursor = igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_CURSOR); + igt_output_set_pipe(data->output, data->pipe_id); + igt_require(i915_pipe_output_combo_valid(display)); + + igt_info("Using (pipe %s + %s) to run the subtest.\n", + kmstest_pipe_name(data->pipe_id), igt_output_name(data->output)); + igt_require_pipe_crc(data->drm_fd); data->pipe_crc = igt_pipe_crc_new(data->drm_fd, data->pipe_id, INTEL_PIPE_CRC_SOURCE_AUTO); - igt_output_set_pipe(data->output, data->pipe_id); - /* Overlay rectangle for a rect in the center of the screen */ data->or.x = data->mode->hdisplay / 4; data->or.y = data->mode->vdisplay / 4; -- 2.37.3