From: Louis Chauvet <louis.chauvet@bootlin.com>
To: igt-dev@lists.freedesktop.org, ihf@google.com,
markyacoub@google.com, thomas.petazzoni@bootlin.com,
Louis Chauvet <louis.chauvet@bootlin.com>
Subject: [PATCH i-g-t RFC 13/13] tests/chamelium: Add MST test
Date: Wed, 05 Jun 2024 16:30:25 +0200 [thread overview]
Message-ID: <20240605-dev-remove-static-ports-v1-13-665f25b7a4db@bootlin.com> (raw)
In-Reply-To: <20240605-dev-remove-static-ports-v1-0-665f25b7a4db@bootlin.com>
Introduce a test to check EDID on MST ports. This plug all the children in
the chamelium and apply a different EDID for each.
Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
---
tests/chamelium/v3/kms_chamelium_v3_edid.c | 96 ++++++++++++++++++++++++++++++
1 file changed, 96 insertions(+)
diff --git a/tests/chamelium/v3/kms_chamelium_v3_edid.c b/tests/chamelium/v3/kms_chamelium_v3_edid.c
index efd53b392f4f..b1685c1f2569 100644
--- a/tests/chamelium/v3/kms_chamelium_v3_edid.c
+++ b/tests/chamelium/v3/kms_chamelium_v3_edid.c
@@ -193,6 +193,82 @@ static void test_suspend_resume_edid_change(int drm_fd, struct igt_chamelium_rpc
collect_and_compare_edid(drm_fd, port_mapping, igt_kms_get_alt_edid());
}
+static void edid_mst(int drm_fd, struct igt_chamelium_rpc *chamelium, chamelium_port_id port_id)
+{
+ const struct edid *edid = igt_kms_get_base_edid();
+ chamelium_port_id *children_port_ids;
+ int edid_id;
+ int children_port_count = chamelium_get_children_rpc(chamelium, port_id,
+ &children_port_ids);
+
+ struct edid **modified_edids;
+
+ modified_edids = calloc(children_port_count + 1, sizeof(*modified_edids));
+ igt_assert(modified_edids);
+
+ for (int i = 0; i <= children_port_count; i++) {
+ modified_edids[i] = malloc(edid_get_size(edid));
+ memcpy(modified_edids[i], edid, edid_get_size(edid));
+ modified_edids[i]->serial[0] = i;
+ modified_edids[i]->serial[1] = i;
+ modified_edids[i]->serial[2] = i;
+ modified_edids[i]->serial[3] = i;
+ edid_update_checksum(modified_edids[i]);
+ }
+
+ chamelium_reset_rpc(chamelium);
+
+ edid_id = chamelium_create_edid_rpc(chamelium, modified_edids[0]);
+ igt_assert(edid_id);
+ chamelium_apply_edid_rpc(chamelium, port_id, edid_id);
+
+ for (int i = 0; i < children_port_count; i++) {
+ edid_id = chamelium_create_edid_rpc(chamelium, modified_edids[i + 1]);
+ igt_assert(edid_id);
+ chamelium_apply_edid_rpc(chamelium, children_port_ids[i], edid_id);
+ }
+
+ chamelium_plug_with_children_rpc(chamelium, port_id, children_port_ids,
+ children_port_count);
+ drmModeResPtr res = drmModeGetResources(drm_fd);
+
+ drmModeFreeResources(res);
+ sleep(3);
+ res = drmModeGetResources(drm_fd);
+ for (int i = 0; i <= children_port_count; i++) {
+ bool found = false;
+
+ for (int j = 0; j < res->count_connectors; j++) {
+ drmModeConnectorPtr connector = drmModeGetConnector(drm_fd,
+ res->connectors[j]);
+ uint64_t edid_blob_id;
+
+ igt_assert(kmstest_get_property(drm_fd, connector->connector_id,
+ DRM_MODE_OBJECT_CONNECTOR, "EDID", NULL,
+ &edid_blob_id, NULL));
+ if (edid_blob_id != 0) {
+ drmModePropertyBlobPtr edid_blob = drmModeGetPropertyBlob(drm_fd,
+ edid_blob_id);
+
+ igt_assert(edid_blob);
+
+ if (memcmp(modified_edids[i], edid_blob->data,
+ edid_get_size(modified_edids[i])) == 0)
+ found = true;
+ }
+
+ drmModeFreeConnector(connector);
+ }
+
+ igt_assert_f(found, "No connector were found with the correct EDID.\n");
+
+ free(modified_edids[i]);
+ }
+
+ drmModeFreeResources(res);
+ free(modified_edids);
+}
+
igt_main {
struct igt_chamelium_rpc *chamelium;
@@ -316,6 +392,26 @@ igt_main {
}
}
+ igt_describe("Check if hotplug during sleeping are correctly handled");
+ igt_subtest_with_dynamic("DP-MST-edid-read") {
+ chamelium_port_id *port_ids;
+ int port_count;
+
+ port_count = chamelium_get_supported_ports_rpc(chamelium, &port_ids);
+ for (int j = 0; j < port_count; j++) {
+ if (chamelium_is_mst_rpc(chamelium, port_ids[j])) {
+ igt_dynamic_f("port-%d", port_ids[j]) {
+ char *name;
+
+ name = chamelium_get_port_name_rpc(chamelium, port_ids[j]);
+ igt_info("Testing port %s\n", name);
+ free(name);
+
+ edid_mst(drm_fd, chamelium, port_ids[j]);
+ }
+ }
+ }
+ }
igt_fixture {
chamelium_rpc_uninit(chamelium);
drm_close_driver(drm_fd);
--
2.43.2
next prev parent reply other threads:[~2024-06-05 14:30 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-05 14:30 [PATCH i-g-t RFC 00/13] tests/chamelium: Integrate the chamelium v3 Louis Chauvet
2024-06-05 14:30 ` [PATCH i-g-t RFC 01/13] tests/chamelium: Extract chamelium v2 tests into its own directory Louis Chauvet
2024-06-05 14:30 ` [PATCH i-g-t RFC 02/13] lib/chamelium: Extract chamelium v2 wrapper " Louis Chauvet
2024-06-05 14:30 ` [PATCH i-g-t RFC 03/13] lib/chamelium: Change build options to split chamelium v2 and v3 Louis Chauvet
2024-06-05 14:30 ` [PATCH i-g-t RFC 04/13] lib/chamelium: Introduce the foundation for the chamelium v3 library Louis Chauvet
2024-06-11 16:45 ` Kamil Konieczny
2024-06-05 14:30 ` [PATCH i-g-t RFC 05/13] lib/chamelium: Implement all RPC calls for the chamelium v3 Louis Chauvet
2024-06-05 14:30 ` [PATCH i-g-t RFC 06/13] lib/chamelium: Introduce a simple chamelium v3 test Louis Chauvet
2024-06-05 14:30 ` [PATCH i-g-t RFC 07/13] tests/chamelium: Introduce basic edid test Louis Chauvet
2024-06-05 14:30 ` [PATCH i-g-t RFC 08/13] lib/monitor_edids: Introduce helpers to get EDID from a monitor EDID Louis Chauvet
2024-06-05 14:30 ` [PATCH i-g-t RFC 09/13] tests/chamelium: Introduce 4k stress edid Louis Chauvet
2024-06-05 14:30 ` [PATCH i-g-t RFC 10/13] tests/chamelium: Introduce non-4k " Louis Chauvet
2024-06-05 14:30 ` [PATCH i-g-t RFC 11/13] tests/chamelium: Introduce test resolution Louis Chauvet
2024-06-05 14:30 ` [PATCH i-g-t RFC 12/13] tests/chamelium: Introduce test sleep Louis Chauvet
2024-06-05 14:30 ` Louis Chauvet [this message]
2024-06-05 16:36 ` ✗ Fi.CI.BUILD: failure for tests/chamelium: Integrate the chamelium v3 Patchwork
2024-06-07 19:05 ` ✗ GitLab.Pipeline: warning " Patchwork
2024-06-11 16:51 ` [PATCH i-g-t RFC 00/13] " Kamil Konieczny
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=20240605-dev-remove-static-ports-v1-13-665f25b7a4db@bootlin.com \
--to=louis.chauvet@bootlin.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=ihf@google.com \
--cc=markyacoub@google.com \
--cc=thomas.petazzoni@bootlin.com \
/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