From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by gabe.freedesktop.org (Postfix) with ESMTPS id AAEAD10EB9A for ; Fri, 30 Sep 2022 06:57:30 +0000 (UTC) Message-ID: Date: Fri, 30 Sep 2022 12:26:53 +0530 Content-Language: en-US To: Bhanuprakash Modem , References: <20220922160004.2041598-1-bhanuprakash.modem@intel.com> <20220922160004.2041598-37-bhanuprakash.modem@intel.com> From: "Thasleem, Mohammed" In-Reply-To: <20220922160004.2041598-37-bhanuprakash.modem@intel.com> Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Subject: Re: [igt-dev] [i-g-t V4 36/52] tests/kms_vrr: 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: On 9/22/2022 9:29 PM, Bhanuprakash Modem wrote: > 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_vrr.c | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c > index 8976d4a6..619b3789 100644 > --- a/tests/kms_vrr.c > +++ b/tests/kms_vrr.c > @@ -444,6 +444,12 @@ run_vrr_test(data_t *data, test_t test, uint32_t flags) > > for_each_pipe(&data->display, pipe) { > if (igt_pipe_connector_valid(pipe, output)) { > + igt_display_reset(&data->display); > + > + igt_output_set_pipe(output, pipe); > + if (!i915_pipe_output_combo_valid(&data->display)) > + continue; > + > igt_dynamic_f("pipe-%s-%s", > kmstest_pipe_name(pipe), output->name) > test(data, pipe, output, flags); Reviewed-by: Mohammed Thasleem