From: Lukasz Laguna <lukasz.laguna@intel.com>
To: igt-dev@lists.freedesktop.org
Subject: [igt-dev] [PATCH i-g-t v7 7/7] tests/sriov_basic: validate driver binding to VFs
Date: Tue, 5 Dec 2023 09:16:18 +0100 [thread overview]
Message-ID: <20231205081618.18143-8-lukasz.laguna@intel.com> (raw)
In-Reply-To: <20231205081618.18143-1-lukasz.laguna@intel.com>
- bind-unbind-vf: validate driver binding and unbinding to specified VF
- enable-vfs-bind-unbind-each: validate driver binding and unbinding to
VFs from specified range.
v2:
- remove checks that are outside the scope of the test (Michal)
Cc: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
---
tests/sriov_basic.c | 90 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 90 insertions(+)
diff --git a/tests/sriov_basic.c b/tests/sriov_basic.c
index 582e644f2..96ee5943e 100644
--- a/tests/sriov_basic.c
+++ b/tests/sriov_basic.c
@@ -60,6 +60,58 @@ static void enable_vfs_autoprobe_on(int pf_fd, unsigned int num_vfs)
igt_assert(!err);
}
+/**
+ * SUBTEST: enable-vfs-bind-unbind-each
+ * Description:
+ * Verify VFs enabling with binding and unbinding the driver one be one to each of them
+ * Run type: BAT
+ */
+static void enable_vfs_bind_unbind_each(int pf_fd, unsigned int num_vfs)
+{
+ igt_debug("Testing %u VFs\n", num_vfs);
+
+ igt_require(igt_sriov_get_enabled_vfs(pf_fd) == 0);
+
+ igt_sriov_disable_driver_autoprobe(pf_fd);
+ igt_sriov_enable_vfs(pf_fd, num_vfs);
+ igt_sriov_enable_driver_autoprobe(pf_fd);
+
+ for (int i = 1; i <= num_vfs; i++) {
+ igt_assert(!igt_sriov_is_vf_drm_driver_probed(pf_fd, i));
+ igt_sriov_bind_vf_drm_driver(pf_fd, i);
+ igt_assert(igt_sriov_is_vf_drm_driver_probed(pf_fd, i));
+ igt_sriov_unbind_vf_drm_driver(pf_fd, i);
+ igt_assert(!igt_sriov_is_vf_drm_driver_probed(pf_fd, i));
+ }
+
+ igt_sriov_disable_vfs(pf_fd);
+}
+
+/**
+ * SUBTEST: bind-unbind-vf
+ * Description:
+ * Verify binding and unbinding the driver to specific VF
+ * Run type: BAT
+ */
+static void bind_unbind_vf(int pf_fd, unsigned int vf_num)
+{
+ igt_debug("Testing VF%u\n", vf_num);
+
+ igt_require(igt_sriov_get_enabled_vfs(pf_fd) == 0);
+
+ igt_sriov_disable_driver_autoprobe(pf_fd);
+ igt_sriov_enable_vfs(pf_fd, vf_num);
+ igt_sriov_enable_driver_autoprobe(pf_fd);
+
+ igt_assert(!igt_sriov_is_vf_drm_driver_probed(pf_fd, vf_num));
+ igt_sriov_bind_vf_drm_driver(pf_fd, vf_num);
+ igt_assert(igt_sriov_is_vf_drm_driver_probed(pf_fd, vf_num));
+ igt_sriov_unbind_vf_drm_driver(pf_fd, vf_num);
+ igt_assert(!igt_sriov_is_vf_drm_driver_probed(pf_fd, vf_num));
+
+ igt_sriov_disable_vfs(pf_fd);
+}
+
igt_main
{
int pf_fd;
@@ -110,6 +162,44 @@ igt_main
}
}
+ igt_describe("Verify VFs enabling with binding and unbinding the driver one be one to each of them");
+ igt_subtest_with_dynamic("enable-vfs-bind-unbind-each") {
+ for_each_sriov_num_vfs(pf_fd, num_vfs) {
+ igt_dynamic_f("numvfs-%u", num_vfs) {
+ enable_vfs_bind_unbind_each(pf_fd, num_vfs);
+ }
+ }
+ for_random_sriov_num_vfs(pf_fd, num_vfs) {
+ igt_dynamic_f("numvfs-random") {
+ enable_vfs_bind_unbind_each(pf_fd, num_vfs);
+ }
+ }
+ for_max_sriov_num_vfs(pf_fd, num_vfs) {
+ igt_dynamic_f("numvfs-all") {
+ enable_vfs_bind_unbind_each(pf_fd, num_vfs);
+ }
+ }
+ }
+
+ igt_describe("Test binds and unbinds the driver to specific VF");
+ igt_subtest_with_dynamic("bind-unbind-vf") {
+ for_each_sriov_vf(pf_fd, vf) {
+ igt_dynamic_f("vf-%u", vf) {
+ bind_unbind_vf(pf_fd, vf);
+ }
+ }
+ for_random_sriov_vf(pf_fd, vf) {
+ igt_dynamic_f("vf-random") {
+ bind_unbind_vf(pf_fd, vf);
+ }
+ }
+ for_last_sriov_vf(pf_fd, vf) {
+ igt_dynamic_f("vf-last") {
+ bind_unbind_vf(pf_fd, vf);
+ }
+ }
+ }
+
igt_fixture {
igt_sriov_disable_vfs(pf_fd);
/* abort to avoid execution of next tests with enabled VFs */
--
2.40.0
next prev parent reply other threads:[~2023-12-05 8:17 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-05 8:16 [igt-dev] [PATCH i-g-t v7 0/7] Initial SR-IOV validation Lukasz Laguna
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 1/7] lib/igt_sriov_device: add core SR-IOV helpers Lukasz Laguna
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 2/7] lib/igt_sriov_device: add helper for opening VF device Lukasz Laguna
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 3/7] lib/igt_sriov_device: add helper for checking if VF DRM driver is probed Lukasz Laguna
2023-12-13 14:25 ` Kamil Konieczny
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 4/7] lib/igt_sriov_device: add helpers for operations in different VFs scenarios Lukasz Laguna
2023-12-13 14:34 ` Kamil Konieczny
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 5/7] tests/sriov_basic: add basic tests for enabling SR-IOV VFs Lukasz Laguna
2023-12-13 14:44 ` Kamil Konieczny
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 6/7] lib/igt_sriov_device: add helpers for VF DRM driver bind and unbind Lukasz Laguna
2023-12-13 15:00 ` Kamil Konieczny
2023-12-13 21:29 ` Laguna, Lukasz
2023-12-14 12:32 ` Kamil Konieczny
2023-12-05 8:16 ` Lukasz Laguna [this message]
2023-12-13 15:07 ` [PATCH i-g-t v7 7/7] tests/sriov_basic: validate driver binding to VFs Kamil Konieczny
2023-12-05 12:31 ` [igt-dev] ✓ Fi.CI.BAT: success for Initial SR-IOV validation (rev8) Patchwork
2023-12-05 14:25 ` [igt-dev] ✗ CI.xeBAT: failure " Patchwork
2023-12-13 15:11 ` Kamil Konieczny
2023-12-05 19:44 ` [igt-dev] ✗ Fi.CI.IGT: " Patchwork
2023-12-13 15:14 ` Kamil Konieczny
2023-12-14 9:26 ` Illipilli, TejasreeX
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=20231205081618.18143-8-lukasz.laguna@intel.com \
--to=lukasz.laguna@intel.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