From: "Laguna, Lukasz" <lukasz.laguna@intel.com>
To: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>,
<igt-dev@lists.freedesktop.org>
Cc: "Adam Miszczak" <adam.miszczak@linux.intel.com>,
"Jakub Kolakowski" <jakub1.kolakowski@intel.com>,
"Michał Wajdeczko" <michal.wajdeczko@intel.com>,
"Michał Winiarski" <michal.winiarski@intel.com>,
"Narasimha C V" <narasimha.c.v@intel.com>,
"Piotr Piórkowski" <piotr.piorkowski@intel.com>,
"Satyanarayana K V P" <satyanarayana.k.v.p@intel.com>,
"Tomasz Lis" <tomasz.lis@intel.com>
Subject: Re: [PATCH v2 i-g-t 6/7] tests/xe_sriov_auto_provisioning: Add tests for SR-IOV auto-provisioning
Date: Wed, 15 Jan 2025 16:57:58 +0100 [thread overview]
Message-ID: <cba48ddf-23d5-4117-8877-8f38c5828dbf@intel.com> (raw)
In-Reply-To: <20250114150848.332708-7-marcin.bernatowicz@linux.intel.com>
[-- Attachment #1: Type: text/plain, Size: 10815 bytes --]
On 1/14/2025 16:08, Marcin Bernatowicz wrote:
> Added subtests validating below scenarios:
> - auto-provisioned resources are allocated by PF driver in fairly manner,
> - auto-provisioned resources are released once VFs are disabled,
> - verify that ranges of auto-provisioned resources are exclusive.
>
> The tests rely on ggtt_provisioned, lmem_provisioned,
> contexts_provisioned and doorbells_provisioned debugfs attributes.
>
> v2:
> - Simplify range validation by using
> xe_sriov_pf_debugfs_read_check_ranges (Lukasz)
> - Rename subtests for clarity (Lukasz)
>
> Signed-off-by: Marcin Bernatowicz<marcin.bernatowicz@linux.intel.com>
> Cc: Adam Miszczak<adam.miszczak@linux.intel.com>
> Cc: Jakub Kolakowski<jakub1.kolakowski@intel.com>
> Cc: Lukasz Laguna<lukasz.laguna@intel.com>
> Cc: Michał Wajdeczko<michal.wajdeczko@intel.com>
> Cc: Michał Winiarski<michal.winiarski@intel.com>
> Cc: Narasimha C V<narasimha.c.v@intel.com>
> Cc: Piotr Piórkowski<piotr.piorkowski@intel.com>
> Cc: Satyanarayana K V P<satyanarayana.k.v.p@intel.com>
> Cc: Tomasz Lis<tomasz.lis@intel.com>
> ---
> tests/intel/xe_sriov_auto_provisioning.c | 290 +++++++++++++++++++++++
> tests/meson.build | 1 +
> 2 files changed, 291 insertions(+)
> create mode 100644 tests/intel/xe_sriov_auto_provisioning.c
>
> diff --git a/tests/intel/xe_sriov_auto_provisioning.c b/tests/intel/xe_sriov_auto_provisioning.c
> new file mode 100644
> index 000000000..1d2aa8624
> --- /dev/null
> +++ b/tests/intel/xe_sriov_auto_provisioning.c
> @@ -0,0 +1,290 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright(c) 2023 Intel Corporation. All rights reserved.
> + */
> +
> +#include <stdbool.h>
> +
> +#include "drmtest.h"
> +#include "igt_core.h"
> +#include "igt_sriov_device.h"
> +#include "igt_sysfs.h"
> +#include "xe/xe_sriov_debugfs.h"
> +#include "xe/xe_sriov_provisioning.h"
> +#include "xe/xe_query.h"
> +
> +/**
> + * TEST: xe_sriov_auto_provisioning
> + * Category: Core
> + * Mega feature: SR-IOV
> + * Sub-category: provisioning
> + * Functionality: auto-provisioning
> + * Run type: FULL
> + * Description: Examine behavior of SR-IOV auto-provisioning
> + *
> + * SUBTEST: fair-allocation
> + * Description:
> + * Verify that auto-provisioned resources are allocated by PF driver in fairly manner
> + *
> + * SUBTEST: resources-released-on-vfs-disabling
> + * Description:
> + * Verify that auto-provisioned resources are released once VFs are disabled
> + *
> + * SUBTEST: exclusive-ranges
> + * Description:
> + * Verify that ranges of auto-provisioned resources are exclusive
> + */
> +
> +IGT_TEST_DESCRIPTION("Xe tests for SR-IOV auto-provisioning");
> +
> +/* Expects ranges sorted by VF IDs */
> +static int ranges_fair_allocation(enum xe_sriov_shared_res res,
> + struct xe_sriov_provisioned_range *ranges,
> + unsigned int nr_ranges)
> +{
> + uint64_t expected_allocation = ranges[0].end - ranges[0].start + 1;
> +
> + for (unsigned int i = 1; i < nr_ranges; i++) {
> + uint64_t current_allocation = ranges[i].end - ranges[i].start + 1;
> +
> + if (igt_debug_on_f(current_allocation != expected_allocation,
> + "%s: Allocation mismatch, expected=%lu VF%u=%lu\n",
> + xe_sriov_debugfs_provisioned_attr_name(res),
> + expected_allocation, ranges[i].vf_id,
> + current_allocation)) {
> + return -1;
> + }
> + }
> +
> + return 0;
> +}
> +
> +static int check_fair_allocation(int pf_fd, unsigned int num_vfs, unsigned int gt_id,
> + enum xe_sriov_shared_res res)
> +{
> + struct xe_sriov_provisioned_range *ranges;
> + int ret;
> +
> + ret = xe_sriov_pf_debugfs_read_check_ranges(pf_fd, res, gt_id, &ranges, num_vfs);
> + if (igt_debug_on_f(ret, "%s: Failed ranges check on GT%u (%d)\n",
> + xe_sriov_debugfs_provisioned_attr_name(res), gt_id, ret))
> + return ret;
> +
> + ret = ranges_fair_allocation(res, ranges, num_vfs);
> + if (ret) {
> + free(ranges);
> + return ret;
> + }
> +
> + free(ranges);
> +
> + return 0;
> +}
> +
> +static void fair_allocation(int pf_fd, unsigned int num_vfs)
> +{
> + enum xe_sriov_shared_res res;
> + unsigned int gt;
> + int fails = 0;
> +
> + igt_sriov_disable_driver_autoprobe(pf_fd);
> + igt_sriov_enable_vfs(pf_fd, num_vfs);
> +
> + xe_for_each_gt(pf_fd, gt) {
> + xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt) {
> + if (igt_debug_on_f(check_fair_allocation(pf_fd, num_vfs, gt, res),
> + "%s fair allocation failed on gt%u\n",
> + xe_sriov_shared_res_to_string(res), gt))
> + fails++;
> + }
> + }
> +
> + igt_sriov_disable_vfs(pf_fd);
> +
> + igt_fail_on_f(fails, "fair allocation failed\n");
> +}
> +
> +static void resources_released_on_vfs_disabling(int pf_fd, unsigned int num_vfs)
> +{
> + struct xe_sriov_provisioned_range *ranges;
> + enum xe_sriov_shared_res res;
> + unsigned int gt;
> + int fails = 0;
> +
> + igt_sriov_disable_driver_autoprobe(pf_fd);
> + igt_sriov_enable_vfs(pf_fd, num_vfs);
> +
> + xe_for_each_gt(pf_fd, gt) {
> + xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt) {
> + if (igt_warn_on_f(xe_sriov_pf_debugfs_read_check_ranges(pf_fd, res,
> + gt,
> + &ranges,
> + num_vfs),
> + "%s: Failed ranges check on gt%u\n",
> + xe_sriov_debugfs_provisioned_attr_name(res), gt))
> + continue;
> +
> + free(ranges);
> + }
> + }
> +
> + igt_sriov_disable_vfs(pf_fd);
> +
> + xe_for_each_gt(pf_fd, gt) {
> + xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt) {
> + if (igt_debug_on_f(xe_sriov_pf_debugfs_read_check_ranges(pf_fd, res,
> + gt,
> + &ranges,
> + 0),
> + "%s: Failed ranges check on gt%u\n",
> + xe_sriov_debugfs_provisioned_attr_name(res), gt))
> + fails++;
> + }
> + }
> +
> + igt_fail_on_f(fails, "shared resource release check failed\n");
> +}
> +
> +static int compare_ranges_by_start(const void *a, const void *b)
> +{
> + const struct xe_sriov_provisioned_range *range_a = a;
> + const struct xe_sriov_provisioned_range *range_b = b;
> +
> + if (range_a->start < range_b->start)
> + return -1;
> + if (range_a->start > range_b->start)
> + return 1;
> + return 0;
> +}
> +
> +static int check_no_overlap(int pf_fd, unsigned int num_vfs, unsigned int gt_id,
> + enum xe_sriov_shared_res res)
> +{
> + struct xe_sriov_provisioned_range *ranges;
> + int ret;
> +
> + ret = xe_sriov_pf_debugfs_read_check_ranges(pf_fd, res, gt_id, &ranges, num_vfs);
> + if (ret)
> + return ret;
> +
> + igt_assert(ranges);
> + qsort(ranges, num_vfs, sizeof(ranges[0]), compare_ranges_by_start);
> +
> + for (unsigned int i = 0; i < num_vfs - 1; i++)
> + if (ranges[i].end >= ranges[i + 1].start) {
> + igt_debug((res == XE_SRIOV_SHARED_RES_GGTT) ?
> + "Overlapping ranges: VF%u [%lx-%lx] and VF%u [%lx-%lx]\n" :
> + "Overlapping ranges: VF%u [%lu-%lu] and VF%u [%lu-%lu]\n",
> + ranges[i].vf_id, ranges[i].start, ranges[i].end,
> + ranges[i + 1].vf_id, ranges[i + 1].start, ranges[i + 1].end);
> + free(ranges);
> + return -1;
> + }
> +
> + free(ranges);
> +
> + return 0;
> +}
> +
> +static void exclusive_ranges(int pf_fd, unsigned int num_vfs)
> +{
> + enum xe_sriov_shared_res res;
> + unsigned int gt;
> + int fails = 0;
> +
> + igt_sriov_disable_driver_autoprobe(pf_fd);
> + igt_sriov_enable_vfs(pf_fd, num_vfs);
> +
> + xe_for_each_gt(pf_fd, gt) {
> + xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt) {
> + if (res == XE_SRIOV_SHARED_RES_LMEM)
> + /*
> + * lmem_provisioned is not applicable for this test,
> + * as it does not expose ranges
> + */
> + continue;
> +
> + if (igt_debug_on_f(check_no_overlap(pf_fd, num_vfs, gt, res),
> + "%s overlap check failed on gt%u\n",
> + xe_sriov_shared_res_to_string(res), gt))
> + fails++;
> + }
> + }
> +
> + igt_sriov_disable_vfs(pf_fd);
> +
> + igt_fail_on_f(fails, "exclusive ranges check failed\n");
> +}
> +
> +igt_main
> +{
> + enum xe_sriov_shared_res res;
> + unsigned int gt;
> + bool autoprobe;
> + int pf_fd;
> +
> + igt_fixture {
> + struct xe_sriov_provisioned_range *ranges;
> + int ret;
> +
> + pf_fd = drm_open_driver(DRIVER_XE);
> + igt_require(igt_sriov_is_pf(pf_fd));
> + igt_require(igt_sriov_get_enabled_vfs(pf_fd) == 0);
> +
> + xe_for_each_gt(pf_fd, gt) {
> + xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt) {
> + ret = xe_sriov_pf_debugfs_read_check_ranges(pf_fd, res, gt,
> + &ranges, 0);
> + igt_skip_on_f(ret, "%s: Failed ranges check on gt%u (%d)\n",
> + xe_sriov_debugfs_provisioned_attr_name(res),
> + gt, ret);
> + }
> + }
> + autoprobe = igt_sriov_is_driver_autoprobe_enabled(pf_fd);
> + }
> +
> + igt_describe("Verify that auto-provisioned resources are allocated by PF driver in fairly manner");
> + igt_subtest_with_dynamic("fair-allocation") {
> + for_random_sriov_num_vfs(pf_fd, num_vfs) {
> + igt_dynamic_f("numvfs-random") {
> + igt_debug("numvfs=%u\n", num_vfs);
> + fair_allocation(pf_fd, num_vfs);
> + }
> + }
> + }
> +
> + igt_describe("Verify that auto-provisioned resources are released once VFs are disabled");
> + igt_subtest_with_dynamic("resources-released-on-vfs-disabling") {
> + for_random_sriov_num_vfs(pf_fd, num_vfs) {
> + igt_dynamic_f("numvfs-random") {
> + igt_debug("numvfs=%u\n", num_vfs);
> + resources_released_on_vfs_disabling(pf_fd, num_vfs);
> + }
> + }
> + }
> +
> + igt_describe("Verify that ranges of auto-provisioned resources are exclusive");
> + igt_subtest_with_dynamic_f("exclusive-ranges") {
> + unsigned int total_vfs = igt_sriov_get_total_vfs(pf_fd);
> +
> + igt_skip_on(total_vfs < 2);
> +
> + for_random_sriov_vf_in_range(pf_fd, 2, total_vfs, num_vfs) {
> + igt_dynamic_f("numvfs-random") {
> + igt_debug("numvfs=%u\n", num_vfs);
> + exclusive_ranges(pf_fd, num_vfs);
> + }
> + }
> + }
> +
> + igt_fixture {
> + igt_sriov_disable_vfs(pf_fd);
> + /* abort to avoid execution of next tests with enabled VFs */
> + igt_abort_on_f(igt_sriov_get_enabled_vfs(pf_fd) > 0, "Failed to disable VF(s)");
> + autoprobe ? igt_sriov_enable_driver_autoprobe(pf_fd) :
> + igt_sriov_disable_driver_autoprobe(pf_fd);
> + igt_abort_on_f(autoprobe != igt_sriov_is_driver_autoprobe_enabled(pf_fd),
> + "Failed to restore sriov_drivers_autoprobe value\n");
> + drm_close_driver(pf_fd);
> + }
> +}
> diff --git a/tests/meson.build b/tests/meson.build
> index 2724c7a9a..01076f401 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -315,6 +315,7 @@ intel_xe_progs = [
> 'xe_vm',
> 'xe_waitfence',
> 'xe_spin_batch',
> + 'xe_sriov_auto_provisioning',
> 'xe_sriov_flr',
> 'xe_sysfs_defaults',
> 'xe_sysfs_preempt_timeout',
LGTM,
Reviewed-by: Lukasz Laguna <lukasz.laguna@intel.com>
[-- Attachment #2: Type: text/html, Size: 11920 bytes --]
next prev parent reply other threads:[~2025-01-15 15:58 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-14 15:08 [PATCH v2 i-g-t 0/7] Add xe_sriov_auto_provisioning tests Marcin Bernatowicz
2025-01-14 15:08 ` [PATCH v2 i-g-t 1/7] lib/xe/xe_sriov_debugfs: Add debugfs get/set functions for u32, u64, bool Marcin Bernatowicz
2025-01-14 15:08 ` [PATCH v2 i-g-t 2/7] lib/xe/xe_sriov_debugfs: Add validation for provisioned ranges Marcin Bernatowicz
2025-01-15 15:55 ` Laguna, Lukasz
2025-01-14 15:08 ` [PATCH v2 i-g-t 3/7] lib/xe/xe_sriov_provisioning: Add accessors for quota/spare attributes Marcin Bernatowicz
2025-01-14 15:08 ` [PATCH v2 i-g-t 4/7] lib/xe/xe_sriov_provisioning: Add shared resource provisionability check Marcin Bernatowicz
2025-01-14 15:08 ` [PATCH v2 i-g-t 5/7] lib/igt_sriov_device: Add helper functions for VF range validation Marcin Bernatowicz
2025-01-14 15:08 ` [PATCH v2 i-g-t 6/7] tests/xe_sriov_auto_provisioning: Add tests for SR-IOV auto-provisioning Marcin Bernatowicz
2025-01-15 15:57 ` Laguna, Lukasz [this message]
2025-01-14 15:08 ` [PATCH v2 i-g-t 7/7] tests/xe_sriov_auto_provisioning: Add 'extended' command line option Marcin Bernatowicz
2025-01-15 16:06 ` Laguna, Lukasz
2025-01-14 18:17 ` ✓ i915.CI.BAT: success for Add xe_sriov_auto_provisioning tests (rev2) Patchwork
2025-01-14 18:24 ` ✓ Xe.CI.BAT: " Patchwork
2025-01-14 20:53 ` ✗ Xe.CI.Full: failure " Patchwork
2025-01-15 13:04 ` ✗ 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=cba48ddf-23d5-4117-8877-8f38c5828dbf@intel.com \
--to=lukasz.laguna@intel.com \
--cc=adam.miszczak@linux.intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=jakub1.kolakowski@intel.com \
--cc=marcin.bernatowicz@linux.intel.com \
--cc=michal.wajdeczko@intel.com \
--cc=michal.winiarski@intel.com \
--cc=narasimha.c.v@intel.com \
--cc=piotr.piorkowski@intel.com \
--cc=satyanarayana.k.v.p@intel.com \
--cc=tomasz.lis@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