public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Ben Widawsky <ben@bwidawsk.net>
To: Gabriel Krisman Bertazi <krisman@collabora.co.uk>
Cc: daniel.vetter@intel.com, intel-gfx@lists.freedesktop.org,
	tomeu.vizoso@collabora.com
Subject: Re: [PATCH i-g-t v4 5/6] tests/kms_ccs: Test case where CCS is on a different BO
Date: Tue, 3 Oct 2017 09:38:14 -0700	[thread overview]
Message-ID: <20171003163814.GC19707@mail.bwidawsk.net> (raw)
In-Reply-To: <20170927183419.13904-5-krisman@collabora.co.uk>

On 17-09-27 15:34:18, Gabriel Krisman Bertazi wrote:
>Signed-off-by: Gabriel Krisman Bertazi <krisman@collabora.co.uk>

Did someone recommend this test? While we have some hardware limitations on
current generations that make it difficult to use multiple BOs, it's certainly
not impossible, and future HW might make this limitation go away entirely.

I'd be fine if you wanted to use an invalid handle instead of a valid, but
different handle.

>---
> tests/kms_ccs.c | 17 ++++++++++++++---
> 1 file changed, 14 insertions(+), 3 deletions(-)
>
>diff --git a/tests/kms_ccs.c b/tests/kms_ccs.c
>index 35dfcca6be14..2d7105eb1323 100644
>--- a/tests/kms_ccs.c
>+++ b/tests/kms_ccs.c
>@@ -34,10 +34,11 @@ enum test_flags {
> 	TEST_BAD_PIXEL_FORMAT		= 1 << 3,
> 	TEST_BAD_ROTATION_90		= 1 << 4,
> 	TEST_NO_AUX_BUFFER		= 1 << 5,
>+	TEST_BAD_CCS_HANDLE		= 1 << 6,
> };
>
> #define TEST_FAIL_ON_ADDFB2 \
>-	(TEST_BAD_PIXEL_FORMAT | TEST_NO_AUX_BUFFER)
>+	(TEST_BAD_PIXEL_FORMAT | TEST_NO_AUX_BUFFER | TEST_BAD_CCS_HANDLE)
>
> enum test_fb_flags {
> 	FB_COMPRESSED			= 1 << 0,
>@@ -275,6 +276,7 @@ static void generate_fb(data_t *data, struct igt_fb *fb,
> 	unsigned int size[2];
> 	uint64_t modifier;
> 	int ret;
>+	uint32_t ccs_handle;
>
> 	/* Use either compressed or Y-tiled to test. However, given the lack of
> 	 * available bandwidth, we use linear for the primary plane when
>@@ -325,10 +327,15 @@ static void generate_fb(data_t *data, struct igt_fb *fb,
> 		size[1] = ccs_pitches * ALIGN(ccs_height, 32);
>
> 		f.handles[0] = gem_create(data->drm_fd, size[0] + size[1]);
>+		if (data->flags & TEST_BAD_CCS_HANDLE) {
>+			/* Put the CCS buffer on a different BO. */
>+			ccs_handle = gem_create(data->drm_fd, size[0] + size[1]);
>+		} else
>+			ccs_handle = f.handles[0];
>
> 		if (!(data->flags & TEST_NO_AUX_BUFFER)) {
> 			f.modifier[1] = modifier;
>-			f.handles[1] = f.handles[0];
>+			f.handles[1] = ccs_handle;
> 			f.pitches[1] = ccs_pitches;
> 			f.offsets[1] = ccs_offsets;
>
>@@ -458,7 +465,8 @@ static void test_output(data_t *data)
>
> 	if (data->flags & TEST_BAD_PIXEL_FORMAT ||
> 	    data->flags & TEST_BAD_ROTATION_90 ||
>-	    data->flags & TEST_NO_AUX_BUFFER) {
>+	    data->flags & TEST_NO_AUX_BUFFER ||
>+	    data->flags & TEST_BAD_CCS_HANDLE) {
> 		try_config(data, fb_flags | FB_COMPRESSED);
> 	}
>
>@@ -532,6 +540,9 @@ igt_main
> 		igt_subtest_f("pipe-%s-missing-ccs-buffer", pipe_name)
> 			test_output(&data);
>
>+		data.flags = TEST_BAD_CCS_HANDLE;
>+		igt_subtest_f("pipe-%s-ccs-on-another-bo", pipe_name)
>+			test_output(&data);
> 	}
>
> 	igt_fixture
>-- 
>2.11.0
>
>_______________________________________________
>Intel-gfx mailing list
>Intel-gfx@lists.freedesktop.org
>https://lists.freedesktop.org/mailman/listinfo/intel-gfx
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

  parent reply	other threads:[~2017-10-03 16:38 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-27 18:34 [PATCH i-g-t v4 1/6] tests/kms_ccs: Test pipes other than pipe A Gabriel Krisman Bertazi
2017-09-27 18:34 ` [PATCH i-g-t v4 2/6] lib/igt_kms: Fix off-by-one bug on skip of missing pipe Gabriel Krisman Bertazi
2017-09-28  8:33   ` Petri Latvala
2017-09-27 18:34 ` [PATCH i-g-t v4 3/6] tests/kms_ccs: Prevent segfault if pipe is not supported Gabriel Krisman Bertazi
2017-10-03 10:49   ` Arkadiusz Hiler
2017-10-03 16:07   ` Ben Widawsky
2017-09-27 18:34 ` [PATCH i-g-t v4 4/6] tests/kms_ccs: Test case where the CCS buffer was not provided Gabriel Krisman Bertazi
2017-10-03 11:32   ` Arkadiusz Hiler
2017-10-03 16:35   ` Ben Widawsky
2017-10-09  6:14     ` Gabriel Krisman Bertazi
2017-10-30 16:02     ` Ville Syrjälä
2017-10-31  1:33       ` Gabriel Krisman Bertazi
2017-09-27 18:34 ` [PATCH i-g-t v4 5/6] tests/kms_ccs: Test case where CCS is on a different BO Gabriel Krisman Bertazi
2017-10-03 11:00   ` Arkadiusz Hiler
2017-10-03 16:38   ` Ben Widawsky [this message]
2017-10-09  6:18     ` Gabriel Krisman Bertazi
2017-09-27 18:34 ` [PATCH i-g-t v4 6/6] tests/kms_ccs: Test case for wrong aux buffer stride size Gabriel Krisman Bertazi
2017-10-03 10:57   ` Arkadiusz Hiler
2017-10-30 15:59     ` Ville Syrjälä
2017-10-03 16:40   ` Ben Widawsky
2017-10-09  6:03     ` Gabriel Krisman Bertazi
2017-10-30 16:04     ` Ville Syrjälä
2017-09-27 18:58 ` ✓ Fi.CI.BAT: success for series starting with [v4,1/6] tests/kms_ccs: Test pipes other than pipe A Patchwork
2017-09-27 23:42 ` ✗ Fi.CI.IGT: failure " Patchwork
2017-09-28 16:06 ` Patchwork
2017-10-03 10:44 ` [PATCH i-g-t v4 1/6] " Arkadiusz Hiler

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=20171003163814.GC19707@mail.bwidawsk.net \
    --to=ben@bwidawsk.net \
    --cc=daniel.vetter@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=krisman@collabora.co.uk \
    --cc=tomeu.vizoso@collabora.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