From: Kunal Joshi <kunal1.joshi@intel.com>
To: igt-dev@lists.freedesktop.org
Cc: imre.deak@intel.com, Kunal Joshi <kunal1.joshi@intel.com>
Subject: [PATCH i-g-t 02/12] lib/igt_kms: add function to force/read a target link rate/lane count
Date: Mon, 19 Aug 2024 14:56:05 +0530 [thread overview]
Message-ID: <20240819092615.3669803-3-kunal1.joshi@intel.com> (raw)
In-Reply-To: <20240819092615.3669803-1-kunal1.joshi@intel.com>
[1] allows to force/read link rate/lane count for a particular
connector. add functions to retrieve and write data to newly
exposed interface
[1] https://patchwork.freedesktop.org/patch/594770/?series=133624&rev=3
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
lib/igt_kms.c | 144 ++++++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_kms.h | 6 +++
2 files changed, 150 insertions(+)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index e030b35a6..183cb134a 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -6685,3 +6685,147 @@ int get_num_scalers(int drm_fd, enum pipe pipe)
return num_scalers;
}
+
+static bool force_connector_lane_count(int drm_fd,
+ drmModeConnector *connector,
+ const char *value)
+{
+ return connector_attr_set_debugfs(drm_fd, connector,
+ "i915_dp_force_lane_count",
+ "auto", value);
+}
+
+/**
+ * kmstest_force_connector_lane_count:
+ * @fd: drm file descriptor
+ * @connector: connector
+ * @lane_count: lane count
+ *
+ * Force lane count on the specified connector
+ * and install exit handler for resetting
+ *
+ * Returns: True on success
+ */
+bool kmstest_force_connector_lane_count(int drm_fd, drmModeConnector *connector, const char *lane)
+{
+ drmModeConnector *temp;
+
+ if (!is_intel_device(drm_fd))
+ return false;
+
+ if (!force_connector_lane_count(drm_fd, connector, lane))
+ return false;
+
+ dump_connector_attrs();
+ igt_install_exit_handler(reset_connectors_at_exit);
+
+ /*
+ * To allow callers to always use GetConnectorCurrent we need to force a
+ * redetection here.
+ */
+ temp = drmModeGetConnector(drm_fd, connector->connector_id);
+ drmModeFreeConnector(temp);
+
+ return true;
+}
+
+static bool force_connector_link_rate(int drm_fd,
+ drmModeConnector *connector,
+ const char *value)
+{
+ return connector_attr_set_debugfs(drm_fd, connector,
+ "i915_dp_force_link_rate",
+ "auto", value);
+}
+
+/**
+ * kmstest_force_connector_link_rate:
+ * @fd: drm file descriptor
+ * @connector: connector
+ * @link_rate: link rate
+ *
+ * Force link rate on the specified connector
+ * and install exit handler for resetting
+ *
+ * Returns: True on success
+ */
+bool kmstest_force_connector_link_rate(int drm_fd, drmModeConnector *connector, const char *link)
+{
+ drmModeConnector *temp;
+
+ if (!is_intel_device(drm_fd))
+ return false;
+
+ if (!force_connector_link_rate(drm_fd, connector, link))
+ return false;
+
+ dump_connector_attrs();
+ igt_install_exit_handler(reset_connectors_at_exit);
+
+ /*
+ * To allow callers to always use GetConnectorCurrent we need to force a
+ * redetection here.
+ */
+ temp = drmModeGetConnector(drm_fd, connector->connector_id);
+ drmModeFreeConnector(temp);
+
+ return true;
+}
+
+/**
+ * igt_get_dp_link_rate_set_for_output:
+ * @drm_fd: A drm file descriptor
+ * @output: Target output
+ *
+ * Returns: Link rate set for the output.
+ */
+enum dp_link_rate igt_get_dp_link_rate_set_for_output(int drm_fd, igt_output_t *output)
+{
+ char buf[512];
+ int dir, res;
+ int link_rate = DP_LINK_RATE_2000000;
+
+ igt_require_f(output->name, "Invalid output");
+ dir = igt_debugfs_connector_dir(drm_fd, output->name, O_RDONLY);
+ igt_assert_f(dir >= 0, "Failed to open debugfs dir for connector %s\n",
+ igt_output_name(output));
+ res = igt_debugfs_simple_read(dir, "i915_dp_force_link_rate", buf, sizeof(buf));
+ close(dir);
+ igt_require(res > 0);
+
+ if (strstr(buf, "[auto]"))
+ igt_assert(sscanf(strstr(buf, "*") - 6, "%d", &link_rate) == 1);
+ else
+ igt_assert(sscanf(strstr(buf, "[") + 1, "%d", &link_rate) == 1);
+
+ return link_rate;
+}
+
+/**
+ * igt_get_dp_lane_count_set_for_output:
+ * @drm_fd: A drm file descriptor
+ * @output: Target output
+ *
+ * Returns: Lane count set for the output.
+ */
+enum dp_lane_count igt_get_dp_lane_count_set_for_output(int drm_fd, igt_output_t *output)
+{
+ char buf[512];
+ int dir, res;
+ int lane_count = DP_LANE_COUNT_4;
+
+ igt_require_f(output->name, "Invalid output");
+ dir = igt_debugfs_connector_dir(drm_fd, output->name, O_RDONLY);
+ igt_assert_f(dir >= 0, "Failed to open debugfs dir for connector %s\n",
+ igt_output_name(output));
+ res = igt_debugfs_simple_read(dir, "i915_dp_force_lane_count", buf, sizeof(buf));
+ close(dir);
+ igt_require(res > 0);
+
+ if (strstr(buf, "[auto]"))
+ igt_assert(sscanf(strstr(buf, "*") - 2, "%d", &lane_count) == 1);
+ else
+ igt_assert(sscanf(strstr(buf, "[") + 1, "%d", &lane_count) == 1);
+
+ return lane_count;
+}
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 11d4acf4e..2dd8c1bff 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -288,6 +288,10 @@ bool kmstest_force_connector(int fd, drmModeConnector *connector,
bool kmstest_force_connector_bigjoiner(int drm_fd, drmModeConnector *connector);
void kmstest_force_edid(int drm_fd, drmModeConnector *connector,
const struct edid *edid);
+bool kmstest_force_connector_lane_count(int drm_fd, drmModeConnector *connector,
+ const char *lane);
+bool kmstest_force_connector_link_rate(int drm_fd, drmModeConnector *connector,
+ const char *link);
bool kmstest_get_connector_default_mode(int drm_fd, drmModeConnector *connector,
drmModeModeInfo *mode);
@@ -1247,5 +1251,7 @@ bool intel_pipe_output_combo_valid(igt_display_t *display);
bool igt_check_output_is_dp_mst(igt_output_t *output);
int igt_get_dp_mst_connector_id(igt_output_t *output);
int get_num_scalers(int drm_fd, enum pipe pipe);
+enum dp_link_rate igt_get_dp_link_rate_set_for_output(int drm_fd, igt_output_t *output);
+enum dp_lane_count igt_get_dp_lane_count_set_for_output(int drm_fd, igt_output_t *output);
#endif /* __IGT_KMS_H__ */
--
2.43.0
next prev parent reply other threads:[~2024-08-19 9:14 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-19 9:26 [PATCH i-g-t 00/12] add test to validate fallback Kunal Joshi
2024-08-19 9:26 ` [PATCH i-g-t 01/12] lib/igt_kms: add enum for link rate and lane count Kunal Joshi
2024-08-19 9:26 ` Kunal Joshi [this message]
2024-08-19 9:26 ` [PATCH i-g-t 03/12] lib/igt_kms: add function to get max link rate/lane count Kunal Joshi
2024-08-19 9:26 ` [PATCH i-g-t 04/12] lib/igt_kms: add function to force link retrain Kunal Joshi
2024-08-19 9:26 ` [PATCH i-g-t 05/12] lib/igt_kms: add function to force link training failure Kunal Joshi
2024-08-19 9:26 ` [PATCH i-g-t 06/12] lib/igt_kms: add function to check if retrain disabled Kunal Joshi
2024-08-19 9:26 ` [PATCH i-g-t 07/12] lib/igt_kms: add function to check force link training failure support Kunal Joshi
2024-08-19 9:26 ` [PATCH i-g-t 08/12] lib/igt_kms: add helper to get pending lt failures Kunal Joshi
2024-08-19 9:26 ` [PATCH i-g-t 09/12] lib/igt_kms: add helper to get pending retrain count Kunal Joshi
2024-08-19 9:26 ` [PATCH i-g-t 10/12] lib/igt_kms: add helper to set connector link status Kunal Joshi
2024-08-19 9:26 ` [PATCH i-g-t 11/12] tests/intel/kms_dp_fallback: add test for validating fallback Kunal Joshi
2024-08-20 4:44 ` Reddy Guddati, Santhosh
2024-08-19 9:26 ` [PATCH i-g-t 12/12] HAX: Do not merge Kunal Joshi
2024-08-19 10:24 ` ✗ CI.xeBAT: failure for add test to validate fallback (rev3) Patchwork
2024-08-19 10:36 ` ✗ Fi.CI.BAT: " Patchwork
2024-08-19 12:44 ` ✗ CI.xeFULL: " Patchwork
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=20240819092615.3669803-3-kunal1.joshi@intel.com \
--to=kunal1.joshi@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=imre.deak@intel.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