From: "Murthy, Arun R" <arun.r.murthy@intel.com>
To: Kunal Joshi <kunal1.joshi@intel.com>, <igt-dev@lists.freedesktop.org>
Subject: Re: [i-g-t,5/6] tests/kms_feature_discovery: add basic usb4 switch discovery
Date: Mon, 9 Mar 2026 15:35:36 +0530 [thread overview]
Message-ID: <fd0e2b38-7f86-4eb8-985e-68cba8c1a44b@intel.com> (raw)
In-Reply-To: <20260225212859.876713-6-kunal1.joshi@intel.com>
On 26-02-2026 02:58, Kunal Joshi wrote:
> Add a 'usb4-switch' subtest that verifies the Microsoft USB4 Switch
> 3141 is reachable. The test initializes the switch library and queries
> the active port to confirm communication works.
>
> This enables CI to detect when USB4 switch hardware is available
> before running the full kms_usb4_switch test suite.
>
> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
Looks good to me
Reviewed-by: Arun R Murthy <arun.r.murthy@intel.com>
Thanks and Regards,
Arun R Murthy
--------------------
> ---
> tests/kms_feature_discovery.c | 23 +++++++++++++++++++++++
> 1 file changed, 23 insertions(+)
>
> diff --git a/tests/kms_feature_discovery.c b/tests/kms_feature_discovery.c
> index f0216a4ce..b05055186 100644
> --- a/tests/kms_feature_discovery.c
> +++ b/tests/kms_feature_discovery.c
> @@ -40,6 +40,7 @@
> #include "igt_psr.h"
> #include "igt_sysfs.h"
> #include "igt_types.h"
> +#include "igt_usb4_switch.h"
>
> /**
> * SUBTEST: display
> @@ -63,6 +64,9 @@
> * SUBTEST: dp-mst
> * Description: Make sure that we have DP-MST configuration.
> *
> + * SUBTEST: usb4-switch
> + * Description: Verify that USB4 Switch 3141 is available and responding.
> + *
> * arg[1].values: 1, 2, 3, 4
> */
>
> @@ -147,6 +151,25 @@ int igt_main() {
> }
> #endif
>
> + igt_describe("Verify that USB4 Switch 3141 is available and responding.");
> + igt_subtest("usb4-switch") {
> + struct usb4switch *sw;
> + int port;
> +
> + sw = usb4switch_init(fd);
> + igt_require_f(sw,
> + "USB4 Switch 3141 not available\n");
> +
> + /* Verify communication works by querying active port */
> + port = usb4switch_get_active_port(sw);
> + igt_assert_f(port >= 0,
> + "Cannot communicate with USB4 switch\n");
> +
> + igt_info("USB4 Switch 3141 available (active port: %d)\n",
> + port);
> + usb4switch_deinit(sw);
> + }
> +
> igt_describe("Make sure that we have eDP panel with PSR1 support.");
> igt_subtest("psr1") {
> igt_require(psr_sink_support(fd, debugfs_fd, PSR_MODE_1, NULL));
next prev parent reply other threads:[~2026-03-09 10:05 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-25 21:28 [PATCH i-g-t 0/6] add test to validate dock/undock and switch Kunal Joshi
2026-02-25 21:28 ` [PATCH i-g-t 1/6] lib/igt_edid: add EDID serial extraction helpers Kunal Joshi
2026-03-09 9:30 ` [i-g-t,1/6] " Murthy, Arun R
2026-03-09 11:02 ` Joshi, Kunal1
2026-03-16 3:03 ` Murthy, Arun R
2026-02-25 21:28 ` [PATCH i-g-t 2/6] lib/igt_connector_helper: Add generic connector helpers Kunal Joshi
2026-03-09 9:38 ` [i-g-t,2/6] " Murthy, Arun R
2026-03-09 11:06 ` Joshi, Kunal1
2026-03-16 3:17 ` Murthy, Arun R
2026-02-25 21:28 ` [PATCH i-g-t 3/6] lib/igt_serial: add generic serial communication helper Kunal Joshi
2026-03-16 5:40 ` [i-g-t,3/6] " Murthy, Arun R
2026-02-25 21:28 ` [PATCH i-g-t 4/6] lib/igt_usb4_switch: add helper library for USB4 Switch 3141 Kunal Joshi
2026-03-16 8:45 ` [i-g-t,4/6] " Murthy, Arun R
2026-02-25 21:28 ` [PATCH i-g-t 5/6] tests/kms_feature_discovery: add basic usb4 switch discovery Kunal Joshi
2026-03-09 10:05 ` Murthy, Arun R [this message]
2026-02-25 21:28 ` [PATCH i-g-t 6/6] tests/intel/kms_usb4_switch: Add USB4 switch test suite Kunal Joshi
2026-03-09 10:03 ` [i-g-t,6/6] " Murthy, Arun R
2026-03-09 11:14 ` Joshi, Kunal1
2026-03-16 3:38 ` Murthy, Arun R
2026-02-26 2:20 ` ✗ Xe.CI.BAT: failure for add test to validate dock/undock and switch (rev3) Patchwork
2026-02-26 3:04 ` ✓ i915.CI.BAT: success " Patchwork
2026-02-26 6:52 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-02-26 7:45 ` ✗ i915.CI.Full: " 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=fd0e2b38-7f86-4eb8-985e-68cba8c1a44b@intel.com \
--to=arun.r.murthy@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=kunal1.joshi@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