From: Sobin Thomas <sobin.thomas@intel.com>
To: igt-dev@lists.freedesktop.org
Cc: kamil.konieczny@intel.com, zbigniew.kempczynski@intel.com,
Sobin Thomas <sobin.thomas@intel.com>
Subject: [PATCH i-g-t 1/1] tests/xe_evict_ccs:Adjust object size as per VRAM
Date: Tue, 26 Aug 2025 05:50:49 +0000 [thread overview]
Message-ID: <20250826055049.505047-2-sobin.thomas@intel.com> (raw)
In-Reply-To: <20250826055049.505047-1-sobin.thomas@intel.com>
Some BIOS configurations do not support or enable resizable BAR,
resulting in a maximum BAR size of 256MB. This patch adjusts the
maximum object size used in test conditions based on the available
VRAM.
v2: Adjusted the subject name
v3: Inco-operated review comments [kamil]
v4: Fixed typo.
Signed-off-by: Sobin Thomas <sobin.thomas@intel.com>
---
tests/intel/xe_evict_ccs.c | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/tests/intel/xe_evict_ccs.c b/tests/intel/xe_evict_ccs.c
index 281d27015..841ed2997 100644
--- a/tests/intel/xe_evict_ccs.c
+++ b/tests/intel/xe_evict_ccs.c
@@ -343,6 +343,35 @@ static void set_config(int fd, uint32_t flags, const struct param *param,
igt_debug("nproc: %d, mem per proc: %dMB\n", nproc, config->mb_per_proc);
}
+static void adjust_params_for_vram_size(uint64_t vram_size)
+{
+ uint64_t vram_mb = vram_size / (1024 * 1024);
+ int recommended_max_size_kb;
+ bool user_set_max_size = (params.max_size_kb != MAX_OBJ_KB);
+
+ /* max_object_mb = VRAM_mb / 64, clamped between 2MB and 256MB
+ * Formula works for all VRAM sizes with consistent behavior
+ */
+ int max_object_mb = vram_mb / MIN_OBJ_KB;
+
+ max_object_mb = max_t(int, 2, min_t(int, max_object_mb, 256));
+ recommended_max_size_kb = max_object_mb * 1024;
+
+ igt_info("VRAM (%"PRIu64"MB): Calculated %d%% usage, %dMB max objects\n",
+ vram_mb, params.vram_percent, max_object_mb);
+
+ if (user_set_max_size) {
+ igt_warn("User specified max object size (%dKB) may not be"
+ "optimal for %"PRIu64"MB VRAM (recommended: %dKB)\n",
+ params.max_size_kb, vram_mb, recommended_max_size_kb);
+ } else {
+ params.max_size_kb = recommended_max_size_kb;
+ }
+
+ igt_info("Final settings: %d%% VRAM, %dMB max object\n",
+ params.vram_percent, params.max_size_kb / 1024);
+}
+
static void evict_ccs(int fd, uint32_t flags, const struct param *param)
{
struct config config;
@@ -500,6 +529,7 @@ igt_main_args("bdDn:p:s:S:V", NULL, help_str, opt_handler, NULL)
igt_require(xe_has_vram(fd));
vram_size = xe_visible_vram_size(fd, 0);
igt_assert(vram_size);
+ adjust_params_for_vram_size(vram_size);
has_flatccs = HAS_FLATCCS(intel_get_drm_devid(fd));
}
--
2.34.1
next prev parent reply other threads:[~2025-08-26 5:51 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-26 5:50 [PATCH i-g-t v4 0/1] tests/xe_evict_ccs:Adjust object size as per VRAM Sobin Thomas
2025-08-26 5:50 ` Sobin Thomas [this message]
2025-08-26 15:39 ` [PATCH i-g-t 1/1] " Kamil Konieczny
2025-08-26 13:17 ` ✓ Xe.CI.BAT: success for tests/xe_evict_ccs:Adjust object size as per VRAM (rev2) Patchwork
2025-08-26 13:25 ` ✓ i915.CI.BAT: " Patchwork
2025-08-26 19:56 ` ✓ Xe.CI.Full: " Patchwork
2025-08-26 20:07 ` ✓ 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=20250826055049.505047-2-sobin.thomas@intel.com \
--to=sobin.thomas@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=kamil.konieczny@intel.com \
--cc=zbigniew.kempczynski@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