All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t v1] tests/kms_pipe_crc_basic: Support custom CRC sources
@ 2022-05-31 22:03 Jessica Zhang
  2022-05-31 23:03 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
                   ` (7 more replies)
  0 siblings, 8 replies; 14+ messages in thread
From: Jessica Zhang @ 2022-05-31 22:03 UTC (permalink / raw)
  To: igt-dev; +Cc: quic_aravindh, petri.latvala

Add a custom command line option that allows user to set a custom CRC
source. This will allow different drivers to test their own CRC sources
instead of just the "auto" option.

Example usage: `./kms_pipe_crc_basic -s intf`

Signed-off-by: Jessica Zhang <quic_jesszhan@quicinc.com>
---
 tests/kms_pipe_crc_basic.c | 28 ++++++++++++++++++++++------
 1 file changed, 22 insertions(+), 6 deletions(-)

diff --git a/tests/kms_pipe_crc_basic.c b/tests/kms_pipe_crc_basic.c
index 0861c46dbd9b..6a593aec4c6c 100644
--- a/tests/kms_pipe_crc_basic.c
+++ b/tests/kms_pipe_crc_basic.c
@@ -36,6 +36,7 @@ typedef struct {
 	int debugfs;
 	igt_display_t display;
 	struct igt_fb fb;
+	char *crc_source;
 } data_t;
 
 static struct {
@@ -104,7 +105,7 @@ static void test_read_crc(data_t *data, enum pipe pipe, unsigned flags)
 		if (flags & TEST_NONBLOCK) {
 			igt_pipe_crc_t *pipe_crc;
 
-			pipe_crc = igt_pipe_crc_new_nonblock(data->drm_fd, pipe, INTEL_PIPE_CRC_SOURCE_AUTO);
+			pipe_crc = igt_pipe_crc_new_nonblock(data->drm_fd, pipe, data->crc_source);
 			igt_wait_for_vblank(data->drm_fd, display->pipes[pipe].crtc_offset);
 			igt_pipe_crc_start(pipe_crc);
 
@@ -119,7 +120,7 @@ static void test_read_crc(data_t *data, enum pipe pipe, unsigned flags)
 		} else {
 			igt_pipe_crc_t *pipe_crc;
 
-			pipe_crc = igt_pipe_crc_new(data->drm_fd, pipe, INTEL_PIPE_CRC_SOURCE_AUTO);
+			pipe_crc = igt_pipe_crc_new(data->drm_fd, pipe, data->crc_source);
 			igt_pipe_crc_start(pipe_crc);
 
 			n_crcs = igt_pipe_crc_get_crcs(pipe_crc, N_CRCS, &crcs);
@@ -202,8 +203,7 @@ static void test_compare_crc(data_t *data, enum pipe pipe)
 	igt_plane_set_fb(primary, &fb0);
 	igt_display_commit(display);
 
-	pipe_crc = igt_pipe_crc_new(data->drm_fd, pipe,
-				    INTEL_PIPE_CRC_SOURCE_AUTO);
+	pipe_crc = igt_pipe_crc_new(data->drm_fd, pipe, data->crc_source);
 	igt_pipe_crc_collect_crc(pipe_crc, &ref_crc);
 
 	/* Flip FB1 with the Primary plane & compare the CRC with ref CRC. */
@@ -265,9 +265,25 @@ static void test_disable_crc_after_crtc(data_t *data, enum pipe pipe)
 	igt_remove_fb(data->drm_fd, &data->fb);
 }
 
-data_t data = {0, };
+data_t data = {0, .crc_source = "auto"};
 
-igt_main
+static int opt_handler(int opt, int opt_index, void *_data)
+{
+	switch (opt) {
+	case 's':
+		data.crc_source = optarg;
+		igt_debug("Setting CRC source to %s\n", data.crc_source);
+		break;
+	}
+
+	return IGT_OPT_HANDLER_SUCCESS;
+}
+
+static const char help_str[] =
+	"  -s\tPass in a custom source for crc test (default is \"auto\")\n";
+
+
+igt_main_args("s:", NULL, help_str, opt_handler, NULL)
 {
 	enum pipe pipe;
 
-- 
2.31.0

^ permalink raw reply related	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2022-06-08 17:37 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-31 22:03 [igt-dev] [PATCH i-g-t v1] tests/kms_pipe_crc_basic: Support custom CRC sources Jessica Zhang
2022-05-31 23:03 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
2022-05-31 23:33 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2022-06-01  0:44 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_pipe_crc_basic: Support custom CRC sources (rev2) Patchwork
2022-06-01  2:32 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_pipe_crc_basic: Support custom CRC sources Patchwork
2022-06-01  4:17 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_pipe_crc_basic: Support custom CRC sources (rev2) Patchwork
2022-06-01 18:15 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_pipe_crc_basic: Support custom CRC sources (rev3) Patchwork
2022-06-01 22:55 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2022-06-02 12:54 ` [igt-dev] [PATCH i-g-t v1] tests/kms_pipe_crc_basic: Support custom CRC sources Petri Latvala
2022-06-02 20:41   ` Jessica Zhang
2022-06-03  7:16     ` Petri Latvala
2022-06-03 17:06       ` Jessica Zhang
2022-06-06  8:01         ` Petri Latvala
2022-06-08 17:37           ` Jessica Zhang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.