From: "Kazlauskas, Nicholas" <Nicholas.Kazlauskas@amd.com>
To: "Wang, Chao-kai (Stylon)" <Stylon.Wang@amd.com>,
"igt-dev@lists.freedesktop.org" <igt-dev@lists.freedesktop.org>
Subject: Re: [igt-dev] [PATCH i-g-t v2] tools/amd_hdmi_compliance: Test 4K video modes with YUV encoding
Date: Mon, 16 Sep 2019 12:43:32 +0000 [thread overview]
Message-ID: <6784aaf3-7b73-a417-b034-1245311988a8@amd.com> (raw)
In-Reply-To: <20190912192833.12694-1-stylon.wang@amd.com>
On 2019-09-12 3:28 p.m., Wang, Chao-kai (Stylon) wrote:
> From: Stylon Wang <stylon.wang@amd.com>
>
> HDMI 2.0 compliance tests needs 4K modes with YUV encoding.
> This test selects 4K modes based on specified VIC.
>
> v2:
> - rename to amd_hdmi_compliance
> - replace fprintf with igt_info/warn
> - use EXIT_SUCCESS/FAILURE in exit()
>
> Signed-off-by: Stylon Wang <stylon.wang@amd.com>
Reviewed-by: Nicholas Kazlauskas <nicholas.kazlauskas@amd.com>
Commit message looks a lot better now.
I think you could probably hook this up to some of the debugfs entries
you've added in amdgpu to help automate things but that can probably be
done later.
For now I'll push since it seems to have passed all the patchwork tests.
Nicholas Kazlauskas
> ---
> tools/Makefile.am | 3 +
> tools/Makefile.sources | 4 +
> tools/amd_hdmi_compliance.c | 199 ++++++++++++++++++++++++++++++++++++
> tools/meson.build | 5 +
> 4 files changed, 211 insertions(+)
> create mode 100644 tools/amd_hdmi_compliance.c
>
> diff --git a/tools/Makefile.am b/tools/Makefile.am
> index 4f54720f..f09e02b2 100644
> --- a/tools/Makefile.am
> +++ b/tools/Makefile.am
> @@ -11,6 +11,9 @@ bin_PROGRAMS += intel_dp_compliance
> intel_dp_compliance_CFLAGS = $(AM_CFLAGS) $(GLIB_CFLAGS)
> intel_dp_compliance_LDADD = $(top_builddir)/lib/libintel_tools.la
>
> +bin_PROGRAMS += amd_hdmi_compliance
> +amd_hdmi_compliance_CFLAGS = $(AM_CFLAGS) $(GLIB_CFLAGS)
> +
> SUBDIRS = null_state_gen registers
>
> AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/include/drm-uapi -I$(top_srcdir)/lib \
> diff --git a/tools/Makefile.sources b/tools/Makefile.sources
> index 50706f41..d764895d 100644
> --- a/tools/Makefile.sources
> +++ b/tools/Makefile.sources
> @@ -66,3 +66,7 @@ intel_dp_compliance_SOURCES = \
> intel_dp_compliance_hotplug.c \
> $(NULL)
>
> +amd_hdmi_compliance_SOURCES = \
> + amd_hdmi_compliance.c \
> + $(NULL)
> +
> diff --git a/tools/amd_hdmi_compliance.c b/tools/amd_hdmi_compliance.c
> new file mode 100644
> index 00000000..1a759299
> --- /dev/null
> +++ b/tools/amd_hdmi_compliance.c
> @@ -0,0 +1,199 @@
> +/*
> + * Copyright 2019 Advanced Micro Devices, Inc.
> + *
> + * Permission is hereby granted, free of charge, to any person obtaining a
> + * copy of this software and associated documentation files (the "Software"),
> + * to deal in the Software without restriction, including without limitation
> + * the rights to use, copy, modify, merge, publish, distribute, sublicense,
> + * and/or sell copies of the Software, and to permit persons to whom the
> + * Software is furnished to do so, subject to the following conditions:
> + *
> + * The above copyright notice and this permission notice shall be included in
> + * all copies or substantial portions of the Software.
> + *
> + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
> + * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
> + * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
> + * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
> + * OTHER DEALINGS IN THE SOFTWARE.
> + */
> +
> +#include "igt.h"
> +
> +/* Common test data */
> +typedef struct data {
> + struct igt_fb pattern_fb_info;
> + int fd;
> + igt_display_t display;
> + igt_plane_t *primary;
> + igt_output_t *output;
> + igt_pipe_t *pipe;
> + enum pipe pipe_id;
> + bool use_virtual_connector;
> +} data_t;
> +
> +/* Video modes indexed by VIC */
> +static drmModeModeInfo test_modes[] = {
> + [1] = { 25175,
> + 640, 656, 752, 800, 0,
> + 480, 489, 492, 525, 0,
> + 60, 0xa, 0x40,
> + "640x480", /* VIC 1 */
> + },
> + [96] = { 594000,
> + 3840, 4896, 4984, 5280, 0,
> + 2160, 2168, 2178, 2250, 0,
> + 50, 0x5|DRM_MODE_FLAG_PIC_AR_16_9, 0x40,
> + "3840x2160", /* VIC 96 */
> + },
> + [97] = { 594000,
> + 3840, 4016, 4104, 4400, 0,
> + 2160, 2168, 2178, 2250, 0,
> + 60, 0x5|DRM_MODE_FLAG_PIC_AR_16_9, 0x40,
> + "3840x2160", /* VIC 97 */
> + },
> + [101] = { 594000,
> + 4096, 5064, 5152, 5280, 0,
> + 2160, 2168, 2178, 2250, 0,
> + 50, 0x5|DRM_MODE_FLAG_PIC_AR_256_135, 0x40,
> + "4096x2160", /* VIC 101 */
> + },
> + [102] = { 594000,
> + 4096, 4184, 4272, 4400, 0,
> + 2160, 2168, 2178, 2250, 0,
> + 60, 0x5|DRM_MODE_FLAG_PIC_AR_256_135, 0x40,
> + "4096x2160", /* VIC 102 */
> + },
> + [106] = { 594000,
> + 3840, 4896, 4984, 5280, 0,
> + 2160, 2168, 2178, 2250, 0,
> + 50, 0x5|DRM_MODE_FLAG_PIC_AR_64_27, 0x40,
> + "3840x2160", /* VIC 106 */
> + },
> + [107] = { 594000,
> + 3840, 4016, 4104, 4400, 0,
> + 2160, 2168, 2178, 2250, 0,
> + 60, 0x5|DRM_MODE_FLAG_PIC_AR_64_27, 0x40,
> + "3840x2160", /* VIC 107 */
> + },
> +};
> +
> +/* Common test setup. */
> +static void test_init(data_t *data)
> +{
> + igt_display_t *display = &data->display;
> +
> + data->pipe_id = PIPE_A;
> + data->pipe = &data->display.pipes[data->pipe_id];
> +
> + igt_display_reset(display);
> +
> + /* find a connected HDMI output */
> + data->output = NULL;
> + for (int i=0; i < data->display.n_outputs; ++i) {
> + drmModeConnector *connector = data->display.outputs[i].config.connector;
> + if (connector->connection == DRM_MODE_CONNECTED &&
> + (connector->connector_type == DRM_MODE_CONNECTOR_HDMIA ||
> + (data->use_virtual_connector &&
> + connector->connector_type == DRM_MODE_CONNECTOR_VIRTUAL))) {
> + data->output = &data->display.outputs[i];
> + }
> + }
> +
> + igt_require(data->output);
> +
> + data->primary =
> + igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY);
> +
> + igt_output_set_pipe(data->output, data->pipe_id);
> +
> +}
> +
> +/* Common test cleanup. */
> +static void test_fini(data_t *data)
> +{
> + igt_display_reset(&data->display);
> +}
> +
> +static void wait_for_keypress(void)
> +{
> + while (getchar() != '\n')
> + ;
> +}
> +
> +static void test_vic_mode(data_t *data, int vic)
> +{
> + igt_display_t *display = &data->display;
> + drmModeModeInfo *mode;
> + igt_fb_t afb;
> +
> + test_init(data);
> +
> + mode = &test_modes[vic];
> +
> + igt_output_override_mode(data->output, mode);
> +
> + igt_create_pattern_fb(data->fd, mode->hdisplay, mode->vdisplay, DRM_FORMAT_XRGB8888, 0, &afb);
> +
> + igt_plane_set_fb(data->primary, &afb);
> +
> + igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
> +
> + igt_info("Press [Enter] to finish\n");
> + wait_for_keypress();
> +
> + test_fini(data);
> +}
> +
> +const char *optstr = "hvt:";
> +static void usage(const char *name)
> +{
> + igt_info("Usage: %s [options]\n", name);
> + igt_info("-h Show help\n");
> + igt_info("-t vic Select video mode based on VIC\n");
> + igt_info("-v Test on 'Virtual' connector as well, for debugging.\n");
> +}
> +
> +int main(int argc, char **argv)
> +{
> + data_t data;
> + int c;
> + int vic = 1; /* default to VIC 1 (640x480) */
> +
> + memset(&data, 0, sizeof(data));
> +
> + while((c = getopt(argc, argv, optstr)) != -1) {
> + switch(c) {
> + case 't':
> + vic = atoi(optarg);
> + break;
> + case 'v':
> + data.use_virtual_connector = true;
> + break;
> + default:
> + case 'h':
> + usage(argv[0]);
> + exit(EXIT_SUCCESS);
> + }
> + }
> +
> + if (vic < 1 ||
> + vic > ARRAY_SIZE(test_modes) ||
> + !test_modes[vic].name[0]) {
> + igt_warn("VIC %d is not supported\n", vic);
> + exit(EXIT_FAILURE);
> + }
> +
> + data.fd = drm_open_driver_master(DRIVER_ANY);
> + kmstest_set_vt_graphics_mode();
> +
> + igt_display_require(&data.display, data.fd);
> + igt_require(data.display.is_atomic);
> + igt_display_require_output(&data.display);
> +
> + test_vic_mode(&data, vic);
> +
> + igt_display_fini(&data.display);
> +}
> diff --git a/tools/meson.build b/tools/meson.build
> index 6e72b263..eecb122b 100644
> --- a/tools/meson.build
> +++ b/tools/meson.build
> @@ -100,6 +100,11 @@ executable('intel_gpu_top', 'intel_gpu_top.c',
> install_rpath : bindir_rpathdir,
> dependencies : lib_igt_perf)
>
> +executable('amd_hdmi_compliance', 'amd_hdmi_compliance.c',
> + dependencies : [tool_deps],
> + install_rpath : bindir_rpathdir,
> + install : true)
> +
> conf_data = configuration_data()
> conf_data.set('prefix', prefix)
> conf_data.set('exec_prefix', '${prefix}')
>
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
prev parent reply other threads:[~2019-09-16 12:43 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-09-12 19:28 [igt-dev] [PATCH i-g-t v2] tools/amd_hdmi_compliance: Test 4K video modes with YUV encoding Wang, Chao-kai (Stylon)
2019-09-12 20:05 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-09-13 9:58 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2019-09-16 12:43 ` Kazlauskas, Nicholas [this message]
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=6784aaf3-7b73-a417-b034-1245311988a8@amd.com \
--to=nicholas.kazlauskas@amd.com \
--cc=Stylon.Wang@amd.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