From: Marius Vlad <marius.c.vlad@intel.com>
To: intel-gfx@lists.freedesktop.org
Subject: [PATCH i-g-t 2/3] tests/kms_hdmi_inject: Test to make use of HDMI injection capabilities.
Date: Mon, 8 Feb 2016 18:26:55 +0200 [thread overview]
Message-ID: <1454948816-1655-3-git-send-email-marius.c.vlad@intel.com> (raw)
In-Reply-To: <1454948816-1655-1-git-send-email-marius.c.vlad@intel.com>
Signed-off-by: Marius Vlad <marius.c.vlad@intel.com>
---
tests/Makefile.sources | 1 +
tests/kms_hdmi_inject.c | 236 ++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 237 insertions(+)
create mode 100644 tests/kms_hdmi_inject.c
diff --git a/tests/Makefile.sources b/tests/Makefile.sources
index d431ebf..13c2552 100644
--- a/tests/Makefile.sources
+++ b/tests/Makefile.sources
@@ -170,6 +170,7 @@ TESTS_progs = \
gen3_render_tiledy_blits \
gen7_forcewake_mt \
kms_3d \
+ kms_hdmi_inject \
kms_fence_pin_leak \
kms_force_connector_basic \
kms_pwrite_crc \
diff --git a/tests/kms_hdmi_inject.c b/tests/kms_hdmi_inject.c
new file mode 100644
index 0000000..f197168
--- /dev/null
+++ b/tests/kms_hdmi_inject.c
@@ -0,0 +1,236 @@
+/*
+ * Copyright © 2016 Intel Corporation
+ *
+ * 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 (including the next
+ * paragraph) 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 AUTHORS OR COPYRIGHT HOLDERS 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"
+
+#define HDISPLAY_4K 3840
+#define VDISPLAY_4K 2160
+
+IGT_TEST_DESCRIPTION("Tests 4K and audio HDMI injection.");
+
+static drmModeConnector *
+get_connector(int drm_fd, drmModeRes *res)
+{
+ int i;
+ drmModeConnector *connector;
+
+ for (i = 0; i < res->count_connectors; i++) {
+
+ connector =
+ drmModeGetConnectorCurrent(drm_fd, res->connectors[i]);
+
+ if (connector->connector_type == DRM_MODE_CONNECTOR_HDMIA &&
+ connector->connection == DRM_MODE_DISCONNECTED)
+ break;
+
+ drmModeFreeConnector(connector);
+ connector = NULL;
+ }
+
+ return connector;
+}
+
+static void
+hdmi_inject_4k(int drm_fd, drmModeConnector *connector)
+{
+ unsigned char *edid;
+ size_t length;
+ struct kmstest_connector_config config;
+ int ret, cid, i, crtc_mask = -1;
+ int fb_id;
+ struct igt_fb fb;
+ uint8_t found_4k_mode = 0;
+ uint32_t devid;
+
+ devid = intel_get_drm_devid(drm_fd);
+
+ /* 4K requires at least HSW */
+ igt_require(IS_HASWELL(devid) || IS_BROADWELL(devid));
+
+ kmstest_edid_add_4k(igt_kms_get_base_edid(), EDID_LENGTH, &edid,
+ &length);
+
+ kmstest_force_edid(drm_fd, connector, edid, length);
+
+ if (!kmstest_force_connector(drm_fd, connector, FORCE_CONNECTOR_ON))
+ igt_skip("Could not force connector on\n");
+
+ cid = connector->connector_id;
+
+ connector = drmModeGetConnectorCurrent(drm_fd, cid);
+
+ for (i = 0; i < connector->count_modes; i++) {
+ if (connector->modes[i].hdisplay == HDISPLAY_4K &&
+ connector->modes[i].vdisplay == VDISPLAY_4K) {
+ found_4k_mode++;
+ break;
+ }
+ }
+
+ igt_assert(found_4k_mode);
+
+ /* create a configuration */
+ ret = kmstest_get_connector_config(drm_fd, cid, crtc_mask, &config);
+ igt_assert(ret);
+
+ igt_info(" ");
+ kmstest_dump_mode(&connector->modes[i]);
+
+ /* create framebuffer */
+ fb_id = igt_create_fb(drm_fd, connector->modes[i].hdisplay,
+ connector->modes[i].vdisplay,
+ DRM_FORMAT_XRGB8888,
+ LOCAL_DRM_FORMAT_MOD_NONE, &fb);
+
+ ret = drmModeSetCrtc(drm_fd, config.crtc->crtc_id, fb_id, 0, 0,
+ &connector->connector_id, 1,
+ &connector->modes[i]);
+
+ igt_assert(ret == 0);
+
+ igt_remove_fb(drm_fd, &fb);
+
+ kmstest_force_connector(drm_fd, connector, FORCE_CONNECTOR_UNSPECIFIED);
+ kmstest_force_edid(drm_fd, connector, NULL, 0);
+
+ free(edid);
+}
+
+static int
+eld_is_valid(void)
+{
+ FILE *in;
+ char buf[1024];
+ uint8_t eld_valid = 0;
+ uint8_t mon_valid = 0;
+
+ in = fopen("/proc/asound/HDMI/eld#0.0", "r");
+ if (!in)
+ return 0;
+
+ memset(buf, 0, 1024);
+
+ while ((fgets(buf, 1024, in)) != NULL) {
+
+ char *line = buf;
+
+ if (!strncasecmp(line, "eld_valid", 9) &&
+ strstr(line, "1")) {
+ eld_valid++;
+ }
+
+ if (!strncasecmp(line, "monitor_name", 12) &&
+ strstr(line, "IGT")) {
+ mon_valid++;
+ }
+ }
+
+ if (mon_valid && eld_valid)
+ return 1;
+
+ return 0;
+}
+
+
+static void
+hdmi_inject_audio(int drm_fd, drmModeConnector *connector)
+{
+ unsigned char *edid;
+ size_t length;
+ int fb_id, cid, ret, crtc_mask = -1;
+ struct igt_fb fb;
+ struct kmstest_connector_config config;
+
+ kmstest_edid_add_audio(igt_kms_get_base_edid(), EDID_LENGTH, &edid,
+ &length);
+
+ kmstest_force_edid(drm_fd, connector, edid, length);
+
+ if (!kmstest_force_connector(drm_fd, connector, FORCE_CONNECTOR_ON))
+ igt_skip("Could not force connector on\n");
+
+ cid = connector->connector_id;
+ connector = drmModeGetConnectorCurrent(drm_fd, cid);
+
+ /* create a configuration */
+ ret = kmstest_get_connector_config(drm_fd, cid, crtc_mask, &config);
+ igt_assert(ret);
+
+ /*
+ * Create a framebuffer as to allow the kernel to enable the pipe and
+ * enable the audio encoder.
+ */
+ fb_id = igt_create_fb(drm_fd, connector->modes[0].hdisplay,
+ connector->modes[0].vdisplay,
+ DRM_FORMAT_XRGB8888,
+ LOCAL_DRM_FORMAT_MOD_NONE, &fb);
+
+ ret = drmModeSetCrtc(drm_fd, config.crtc->crtc_id, fb_id, 0, 0,
+ &connector->connector_id, 1,
+ &connector->modes[0]);
+
+
+ igt_assert(ret == 0);
+
+ /*
+ * Test if we have /proc/asound/HDMI/eld#0.0 and is its contents are
+ * valid.
+ */
+ igt_assert(eld_is_valid());
+
+ igt_remove_fb(drm_fd, &fb);
+
+ igt_info(" ");
+ kmstest_dump_mode(&connector->modes[0]);
+
+ kmstest_force_connector(drm_fd, connector, FORCE_CONNECTOR_UNSPECIFIED);
+ kmstest_force_edid(drm_fd, connector, NULL, 0);
+
+ free(edid);
+}
+
+igt_main
+{
+ int drm_fd;
+ drmModeRes *res;
+ drmModeConnector *connector;
+
+ igt_fixture {
+ drm_fd = drm_open_driver_master(DRIVER_INTEL);
+ res = drmModeGetResources(drm_fd);
+
+ connector = get_connector(drm_fd, res);
+ igt_require(connector);
+ }
+
+ igt_subtest("inject-4k")
+ hdmi_inject_4k(drm_fd, connector);
+
+ igt_subtest("inject-audio")
+ hdmi_inject_audio(drm_fd, connector);
+
+ igt_fixture {
+ drmModeFreeConnector(connector);
+ }
+}
--
2.7.0
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2016-02-08 16:25 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-08 16:26 [PATCH i-g-t v2 0/3] 4K and audio HDMI EDID injection Marius Vlad
2016-02-08 16:26 ` [PATCH i-g-t 1/3] lib/igt_kms: Add support for " Marius Vlad
2016-02-08 16:26 ` Marius Vlad [this message]
2016-02-08 16:26 ` [PATCH i-g-t 3/3] lib/igt_kms: Remove check against HDMI connectors on HSW and BDW Marius Vlad
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=1454948816-1655-3-git-send-email-marius.c.vlad@intel.com \
--to=marius.c.vlad@intel.com \
--cc=intel-gfx@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;
as well as URLs for NNTP newsgroup(s).