[igt-dev] [PATCH i-g-t v3 09/15] igt/tests: Add support for Tile4(TileF) format to testdisplay
Jeevan B
jeevan.b at intel.com
Wed Feb 16 10:26:27 UTC 2022
From: Matt Roper <matthew.d.roper at intel.com>
testdisplay is a great test for manual testing/debug of Tile-4; we just
need an extra parameter to enable that tiling format.
Signed-off-by: Matt Roper <matthew.d.roper at intel.com>
Signed-off-by: Jeevan B <jeevan.b at intel.com>
---
tests/testdisplay.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/tests/testdisplay.c b/tests/testdisplay.c
index 54327761..e9fbd260 100644
--- a/tests/testdisplay.c
+++ b/tests/testdisplay.c
@@ -593,7 +593,7 @@ static void set_termio_mode(void)
tcsetattr(tio_fd, TCSANOW, &tio);
}
-static char optstr[] = "3Aiaf:s:d:p:mrto:j:y";
+static char optstr[] = "3Aiaf:s:d:p:mrt4o:j:y";
static struct option long_opts[] = {
{"yb", 0, 0, OPT_YB},
{"yf", 0, 0, OPT_YF},
@@ -612,6 +612,7 @@ static const char *help_str =
" -t\tuse an X-tiled framebuffer\n"
" -y, --yb\n"
" \tuse a Y-tiled framebuffer\n"
+ " -4\tuse an Tile-4 framebuffer\n"
" --yf\tuse a Yf-tiled framebuffer\n"
" -j\tdo dpms off, optional arg to select dpms level (1-3)\n"
" -r\tprint a QR code on the screen whose content is \"pass\" for the automatic test\n"
@@ -680,6 +681,9 @@ static int opt_handler(int opt, int opt_index, void *data)
case OPT_YF:
modifier = I915_FORMAT_MOD_Yf_TILED;
break;
+ case '4':
+ modifier = I915_FORMAT_MOD_4_TILED;
+ break;
case 'r':
qr_code = 1;
break;
--
2.17.1
More information about the igt-dev
mailing list