From: "Nautiyal, Ankit K" <ankit.k.nautiyal@intel.com>
To: Swati Sharma <swati2.sharma@intel.com>, <igt-dev@lists.freedesktop.org>
Subject: Re: [igt-dev] [v6 04/10] tests/i915/kms_dsc: update if conditions
Date: Wed, 2 Aug 2023 15:18:41 +0530 [thread overview]
Message-ID: <1fba5505-d81c-20ed-5e49-0229db086811@intel.com> (raw)
In-Reply-To: <20230801133811.975849-5-swati2.sharma@intel.com>
LGTM.
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
On 8/1/2023 7:08 PM, Swati Sharma wrote:
> Check is_dsc_output_format_supported() iff test flag is set to
> OUTPUT_FORMAT. Also, combine is_dsc_supported_by_sink () and
> gen11_dp_constraint() conditions together.
> Move, bpc_constraint() out of loop since its independent of output.
>
> v2: -fixed if() (CI)
>
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
> ---
> tests/i915/kms_dsc.c | 16 +++++++---------
> tests/i915/kms_dsc_helper.c | 2 +-
> tests/i915/kms_dsc_helper.h | 2 +-
> 3 files changed, 9 insertions(+), 11 deletions(-)
>
> diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
> index 7b9bae91a..635fef1cd 100644
> --- a/tests/i915/kms_dsc.c
> +++ b/tests/i915/kms_dsc.c
> @@ -228,6 +228,8 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc,
> {0},
> };
>
> + igt_require(check_gen11_bpc_constraint(data->drm_fd, data->input_bpc));
> +
> for_each_pipe_with_valid_output(display, pipe, output) {
> data->output_format = output_format;
> data->plane_format = plane_format;
> @@ -235,17 +237,13 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc,
> data->output = output;
> data->pipe = pipe;
>
> - if (!is_dsc_supported_by_sink(data->drm_fd, data->output))
> - continue;
> -
> - if (!is_dsc_output_format_supported(data->drm_fd, data->disp_ver,
> - data->output, data->output_format))
> - continue;
> -
> - if (!check_gen11_dp_constraint(data->drm_fd, data->output, data->pipe))
> + if (!(is_dsc_supported_by_sink(data->drm_fd, data->output) &&
> + check_gen11_dp_constraint(data->drm_fd, data->output, data->pipe)))
> continue;
>
> - if (!check_gen11_bpc_constraint(data->drm_fd, data->output, data->input_bpc))
> + if ((test_type & TEST_DSC_OUTPUT_FORMAT) &&
> + (!is_dsc_output_format_supported(data->drm_fd, data->disp_ver,
> + data->output, data->output_format)))
> continue;
>
> if (test_type & TEST_DSC_OUTPUT_FORMAT)
> diff --git a/tests/i915/kms_dsc_helper.c b/tests/i915/kms_dsc_helper.c
> index 61f76ddee..ae59edb6b 100644
> --- a/tests/i915/kms_dsc_helper.c
> +++ b/tests/i915/kms_dsc_helper.c
> @@ -96,7 +96,7 @@ bool check_gen11_dp_constraint(int drmfd, igt_output_t *output, enum pipe pipe)
> }
>
> /* Max DSC Input BPC for ICL is 10 and for TGL+ is 12 */
> -bool check_gen11_bpc_constraint(int drmfd, igt_output_t *output, int input_bpc)
> +bool check_gen11_bpc_constraint(int drmfd, int input_bpc)
> {
> uint32_t devid = intel_get_drm_devid(drmfd);
>
> diff --git a/tests/i915/kms_dsc_helper.h b/tests/i915/kms_dsc_helper.h
> index 2109bd767..28ed56d83 100644
> --- a/tests/i915/kms_dsc_helper.h
> +++ b/tests/i915/kms_dsc_helper.h
> @@ -29,7 +29,7 @@ void kms_dsc_exit_handler(int sig);
> bool is_dsc_supported_by_sink(int drmfd, igt_output_t *output);
> bool is_dsc_supported_by_source(int drmfd);
> bool check_gen11_dp_constraint(int drmfd, igt_output_t *output, enum pipe pipe);
> -bool check_gen11_bpc_constraint(int drmfd, igt_output_t *output, int input_bpc);
> +bool check_gen11_bpc_constraint(int drmfd, int input_bpc);
> void force_dsc_output_format(int drmfd, igt_output_t *output,
> enum dsc_output_format output_format);
> bool is_dsc_output_format_supported(int disp_ver, int drmfd, igt_output_t *output,
next prev parent reply other threads:[~2023-08-02 9:48 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-01 13:38 [igt-dev] [v6 00/10] DSC Fractional BPP Val Support Swati Sharma
2023-08-01 13:38 ` [igt-dev] [v6 01/10] tests/i915/kms_dsc: add new test flag Swati Sharma
2023-08-01 13:38 ` [igt-dev] [v6 02/10] tests/i915/kms_dsc: use uint32_t " Swati Sharma
2023-08-01 13:38 ` [igt-dev] [v6 03/10] tests/i915/kms_dsc: use #define for default bpc Swati Sharma
2023-08-01 13:38 ` [igt-dev] [v6 04/10] tests/i915/kms_dsc: update if conditions Swati Sharma
2023-08-02 9:48 ` Nautiyal, Ankit K [this message]
2023-08-01 13:38 ` [igt-dev] [v6 05/10] tests/i915/kms_dsc: use igt_get_pipe_current_bpc() Swati Sharma
2023-08-01 13:38 ` [igt-dev] [v6 06/10] tests/i915/kms_dsc: add test validating output formats with input bpc Swati Sharma
2023-08-01 13:38 ` [igt-dev] [v6 07/10] tests/i915/kms_dsc: add test summary Swati Sharma
2023-08-01 13:38 ` [igt-dev] [v6 08/10] lib/dsc: add helpers for vdsc fractional bpp debugfs entry Swati Sharma
2023-08-01 13:38 ` [igt-dev] [v6 09/10] tests/i915/kms_dsc: enable validation for vdsc fractional bpp Swati Sharma
2023-08-01 13:38 ` [igt-dev] [v6 10/10] tests/i915/kms_dsc: add test to validate fractional bpp with input bpc Swati Sharma
2023-08-01 14:44 ` [igt-dev] ✓ Fi.CI.BAT: success for DSC Fractional BPP Val Support (rev8) Patchwork
2023-08-01 14:45 ` [igt-dev] ○ CI.xeBAT: info " Patchwork
2023-08-01 18:15 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-08-03 3:51 ` Patchwork
2023-08-03 4:14 ` Patchwork
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1fba5505-d81c-20ed-5e49-0229db086811@intel.com \
--to=ankit.k.nautiyal@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=swati2.sharma@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox