[igt-dev] [PATCH i-g-t 09/10] igt/tests: Add support for Tile4(TileF) format to testdisplay

Lisovskiy, Stanislav stanislav.lisovskiy at intel.com
Fri Feb 25 08:42:52 UTC 2022


On Fri, Feb 25, 2022 at 10:38:52AM +0530, Jeevan B wrote:
> 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>

Reviewed-by: Stanislav Lisovskiy <stanislav.lisovskiy 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