public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Mika Kahola <mika.kahola@intel.com>
To: igt-dev@lists.freedesktop.org
Subject: [igt-dev] [PATCH i-g-t v2] tests/kms_ccs: Select highest resolution
Date: Thu,  6 Feb 2020 09:48:06 +0200	[thread overview]
Message-ID: <20200206074806.32001-1-mika.kahola@intel.com> (raw)

In some cases we select resolution that is insufficient for testing
and we receive unnecessary skips on CI. Let's loop through all available
modes and select the higest one when running the tests.

v2: Pointer to drmModeModeInfo (Imre)
    Set default to back to preferred mode (Imre)
    Search mode only in cases with misaligned or small aux strides
    test flags (Imre)
    Fix requirement to from vertical to horizontal (Imre)

Signed-off-by: Mika Kahola <mika.kahola@intel.com>
---
 tests/kms_ccs.c | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/tests/kms_ccs.c b/tests/kms_ccs.c
index 2259a4f1..f1f6cc6b 100644
--- a/tests/kms_ccs.c
+++ b/tests/kms_ccs.c
@@ -276,6 +276,22 @@ static igt_plane_t *compatible_main_plane(data_t *data)
 	return igt_output_get_plane_type(data->output, DRM_PLANE_TYPE_PRIMARY);
 }
 
+static drmModeModeInfo *get_mode(drmModeModeInfo *preferred_mode,
+				 igt_output_t *output)
+{
+	drmModeModeInfo *mode, *tmp;
+	int i;
+
+	mode = preferred_mode;
+	for (i = 0; i < output->config.connector->count_modes; i++) {
+		tmp = &output->config.connector->modes[i];
+		if (tmp->hdisplay > mode->hdisplay)
+			mode = tmp;
+	}
+
+	return mode;
+}
+
 static bool try_config(data_t *data, enum test_fb_flags fb_flags,
 		       igt_crc_t *crc)
 {
@@ -298,6 +314,12 @@ static bool try_config(data_t *data, enum test_fb_flags fb_flags,
 				      data->ccs_modifier))
 		return false;
 
+	if ((fb_flags & FB_MISALIGN_AUX_STRIDE) ||
+	    (fb_flags & FB_SMALL_AUX_STRIDE)) {
+		drm_mode = get_mode(drm_mode, data->output);
+		igt_output_override_mode(data->output, drm_mode);
+	}
+
 	if (data->plane && fb_flags & FB_COMPRESSED) {
 		if (!igt_plane_has_format_mod(data->plane, data->format,
 					      data->ccs_modifier))
-- 
2.17.1

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

             reply	other threads:[~2020-02-06  7:48 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-06  7:48 Mika Kahola [this message]
2020-02-06  8:34 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_ccs: Select highest resolution (rev2) Patchwork
2020-02-06 13:30 ` [igt-dev] [PATCH i-g-t v2] tests/kms_ccs: Select highest resolution Imre Deak
2020-02-06 14:05   ` Kahola, Mika
2020-02-09  0:13 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_ccs: Select highest resolution (rev2) 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=20200206074806.32001-1-mika.kahola@intel.com \
    --to=mika.kahola@intel.com \
    --cc=igt-dev@lists.freedesktop.org \
    /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