From: Karthik Poosa <karthik.poosa@intel.com>
To: igt-dev@lists.freedesktop.org
Cc: anshuman.gupta@intel.com, badal.nilawar@intel.com,
riana.tauro@intel.com, rodrigo.vivi@intel.com,
kamil.konieczny@linux.intel.com,
Karthik Poosa <karthik.poosa@intel.com>
Subject: [PATCH i-g-t v10 2/2] tests/intel/xe_pm_residency: Add subtest for ASPM Link state residency
Date: Tue, 6 Jan 2026 19:21:54 +0530 [thread overview]
Message-ID: <20260106135154.33722-3-karthik.poosa@intel.com> (raw)
In-Reply-To: <20260106135154.33722-1-karthik.poosa@intel.com>
Add subtest aspm_link_residency to verify PCIe ASPM.
Active State Power Management (ASPM) is a power management mechanism
for PCI Express (PCIe) devices that aims to save power while the devices
are in a fully active state.
This test uses link state counters from the debugfs
dgfx_pcie_link_residencies to verify this.
v2:
- Add dedicated function to get pcie endpoint upstream port. (Badal)
- Read residency counter as unsigned long long int instead of
unsigned long int.
- Print residency counter before sleep also.
- Don't assert if sysfs not corresponding to aspm_link_state
is not present. (Badal)
- Run workload before validation of aspm link residency. (Anshuman)
v3:
- Move igt_device_get_pci_usp to separate patch. (Kamil)
- Move reading of residency to separate function. (Badal)
v4:
- Add description about PCIe ASPM in commit message and code. (Kamil)
- Add a NULL check for the return value of igt_device_get_pci_usp().
- Resolve compilation warnings about using variable as format string
to sscanf.
v5:
- Use igt_device_get_pci_upstream_port() which is the renamed version
of igt_device_get_pci_usp().
v6:
- Refactor and enhance readability. (Badal)
- Move save and restore of link states to separate functions. (Badal)
v7:
- Skip aspm_link_residency on integrated platforms as it not supported.
v8:
- Address below review comments from Riana.
- Use igt_sysfs_has_attr() instead of faccess().
- Remove unnecessary spaces, debug logs, if checks.
- Wrap line length to 100 chars.
- Use spinner instead of mmap for workload.
v9:
- Address review comments from Kamil.
- Simplify couple of igt_asserts.
- Remove extra spaces.
Signed-off-by: Karthik Poosa <karthik.poosa@intel.com>
Reviewed-by: Badal Nilawar <badal.nilawar@intel.com>
---
tests/intel/xe_pm_residency.c | 176 ++++++++++++++++++++++++++++++++++
1 file changed, 176 insertions(+)
diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c
index d33a87b13..0ff0e4821 100644
--- a/tests/intel/xe_pm_residency.c
+++ b/tests/intel/xe_pm_residency.c
@@ -37,6 +37,27 @@ enum test_type {
TEST_IDLE,
};
+enum link_state_index {
+ LINK_STATE_ASPM,
+ LINK_STATE_ASPM_L1_1,
+ LINK_STATE_ASPM_L1_2,
+ LINK_STATE_PCIPM_L1_1,
+ LINK_STATE_PCIPM_L1_2,
+ MAX_LINK_STATES,
+};
+
+struct link_state_info {
+ const char *filename;
+ char state;
+ const char *parse_str;
+} link_state_sysfs[] = {
+ { "l1_aspm", 0, "PCIE LINK L1 RESIDENCY : "},
+ { "l1_1_aspm", 0, "NULL"},
+ { "l1_2_aspm", 0, "PCIE LINK L1.2 RESIDENCY : "},
+ { "l1_1_pcipm", 0, NULL},
+ { "l1_2_pcipm", 0, NULL},
+};
+
/**
* SUBTEST: gt-c6-on-idle
* Description: Validate GT C6 state on idle
@@ -64,6 +85,10 @@ enum test_type {
* SUBTEST: cpg-gt-toggle
* Description: Toggle GT coarse power gating states by acquiring/releasing
* forcewake.
+ *
+ * SUBTEST: aspm_link_residency
+ * Description: Check for PCIe ASPM (Active State Power Management) link states
+ * entry while device is in D0.
*/
IGT_TEST_DESCRIPTION("Tests for gtidle properties");
@@ -255,6 +280,21 @@ static void idle_residency_on_exec(int fd, struct drm_xe_engine_class_instance *
munmap(done, 4096);
}
+static void do_spin(int fd, struct drm_xe_engine_class_instance *eci)
+{
+ igt_spin_t *spin;
+ uint64_t vm, ahnd;
+
+ igt_info("Running spinner on %s:%d\n",
+ xe_engine_class_string(eci->engine_class), eci->engine_instance);
+ vm = xe_vm_create(fd, 0, 0);
+ intel_allocator_init();
+ ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_RELOC);
+ spin = igt_spin_new(fd, .ahnd = ahnd, .vm = vm, .hwe = eci);
+ igt_measured_usleep(USEC_PER_SEC);
+ igt_spin_free(fd, spin);
+}
+
static void measure_power(struct igt_power *gpu, double *power)
{
struct power_sample power_sample[2];
@@ -370,6 +410,127 @@ static void cpg_gt_toggle(int fd)
powergate_status(fd, gt, "down");
}
+static uint64_t get_link_state_residency(int fd_xe, const char *parse_str)
+{
+ int fd_debugfs_dir = 0;
+ int ret = 0;
+ char *ptr = NULL;
+ char path[256] = {0}, buf[1024] = {0};
+ uint64_t residency = 0;
+
+ fd_debugfs_dir = igt_debugfs_dir(fd_xe);
+ igt_assert(fd_debugfs_dir >= 0);
+ ret = igt_debugfs_simple_read(fd_debugfs_dir, "dgfx_pcie_link_residencies", buf,
+ sizeof(buf));
+ igt_assert_f(ret >= 0, "Cannot read link residency file, ret %d\n", ret);
+ ptr = strstr(buf, parse_str);
+ igt_assert_f(ptr, "Cannot find residency string %s\n", parse_str);
+ sprintf(path, "%s%%llu", parse_str);
+ ret = sscanf(ptr + strlen(parse_str), "%lu", &residency);
+ igt_assert_f(ret > 0, "Couldn't read residency value, ret %d", ret);
+ igt_info("Link residency %"PRIu64"\n", residency);
+ close(fd_debugfs_dir);
+
+ return residency;
+}
+
+static void save_and_disable_link_states(int fd_pci_usp)
+{
+ int i = 0;
+ int ret = 0;
+ char path[256] = {0};
+
+ for (i = 0 ; i < MAX_LINK_STATES ; i++) {
+ sprintf(path, "%s", link_state_sysfs[i].filename);
+ if (!igt_sysfs_has_attr(fd_pci_usp, path))
+ continue;
+ ret = igt_sysfs_scanf(fd_pci_usp, path, "%c", &link_state_sysfs[i].state);
+ igt_assert_lt(0, ret);
+ igt_debug("saved %s = %c\n", link_state_sysfs[i].filename,
+ link_state_sysfs[i].state);
+ ret = igt_sysfs_printf(fd_pci_usp, path, "%c", '0');
+ igt_assert_lt(0, ret);
+ }
+}
+
+static void restore_link_states(int fd_pci_usp)
+{
+ int i = 0;
+ int ret = 0;
+ char path[256] = {0};
+
+ /* Restore saved states of L1 sysfs entries. */
+ for (i = 0 ; i < MAX_LINK_STATES ; i++) {
+ sprintf(path, "%s", link_state_sysfs[i].filename);
+ if (!igt_sysfs_has_attr(fd_pci_usp, path))
+ continue;
+ ret = igt_sysfs_printf(fd_pci_usp, path, "%c", link_state_sysfs[i].state);
+ igt_assert_lt(0, ret);
+ igt_debug("restored %s to %c\n", link_state_sysfs[i].filename,
+ link_state_sysfs[i].state);
+ }
+}
+
+static void test_aspm_link_residency(int fd_xe, enum link_state_index aspm_link_state)
+{
+ struct pci_device *pci_dev;
+ int fd_pci_usp = 0;
+ char name[PATH_MAX];
+ int ret = 0;
+ char path[256] = {0};
+ uint64_t residency_pre = 0, residency_post = 0;
+
+ igt_assert(aspm_link_state <= LINK_STATE_ASPM_L1_2);
+
+ /* Get upstream port pci_dev */
+ pci_dev = igt_device_get_pci_upstream_port(fd_xe);
+ igt_assert_f(pci_dev, "Couldn't get pci device of upstream port\n");
+ igt_debug("Upstream port PCI device: %04x:%02x:%02x.%01x\n", pci_dev->domain,
+ pci_dev->bus, pci_dev->dev, pci_dev->func);
+
+ snprintf(name, sizeof(name), "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/link",
+ pci_dev->domain, pci_dev->bus, pci_dev->dev, pci_dev->func);
+ fd_pci_usp = open(name, O_DIRECTORY);
+ igt_assert_f((fd_pci_usp >= 0), "Can't open link directory upstream port %s, ret %d\n",
+ name, fd_pci_usp);
+
+ /* Disable runtime PM as link ASPM entry happens during device is in D0 only. */
+ igt_assert(igt_setup_runtime_pm(fd_xe));
+ igt_disable_runtime_pm();
+
+ /* Check if ASPM sysfs is present. */
+ sprintf(path, "%s", link_state_sysfs[aspm_link_state].filename);
+ igt_require_f(igt_sysfs_has_attr(fd_pci_usp, path), "%s is not present\n", path);
+ ret = igt_sysfs_scanf(fd_pci_usp, path, "%c", &link_state_sysfs[aspm_link_state].state);
+ igt_assert_f((ret > 0), "Couldn't read residency for %s", path);
+
+ /* Save current state of all available link sysfs entries and disable all link states. */
+ save_and_disable_link_states(fd_pci_usp);
+
+ /* Enable only the ASPM link state needed for test. */
+ igt_debug("Enabling %s\n", link_state_sysfs[aspm_link_state].filename);
+ sprintf(path, "%s", link_state_sysfs[aspm_link_state].filename);
+ ret = igt_sysfs_printf(fd_pci_usp, path, "%c", '1');
+
+ /* Read link state residencies before and after idle wait time. */
+ residency_pre = get_link_state_residency(fd_xe,
+ link_state_sysfs[aspm_link_state].parse_str);
+ igt_info("Waiting for link to enter idle....\n");
+ sleep(SLEEP_DURATION);
+ residency_post = get_link_state_residency(fd_xe,
+ link_state_sysfs[aspm_link_state].parse_str);
+
+ /* Restore saved link states. */
+ restore_link_states(fd_pci_usp);
+
+ igt_restore_runtime_pm();
+ close(fd_pci_usp);
+ close(fd_xe);
+
+ igt_assert_f(residency_post > residency_pre,
+ "ASPM entry failed, pre %"PRIu64", post %"PRIu64"\n", residency_pre,
+ residency_post);
+}
int igt_main()
{
uint32_t d3cold_allowed;
@@ -444,6 +605,21 @@ int igt_main()
cpg_gt_toggle(fd);
}
+ igt_describe("ASPM Link residency validation");
+ igt_subtest_with_dynamic("aspm_link_residency") {
+ igt_require(xe_has_vram(fd));
+ xe_for_each_gt(fd, gt) {
+ xe_for_each_engine(fd, hwe) {
+ if (gt == hwe->gt_id && !hwe->engine_instance) {
+ igt_dynamic_f("gt%u-engine-%s", gt,
+ xe_engine_class_string(hwe->engine_class))
+ do_spin(fd, hwe);
+ }
+ }
+ }
+ test_aspm_link_residency(fd, LINK_STATE_ASPM);
+ }
+
igt_fixture() {
close(fd);
}
--
2.25.1
next prev parent reply other threads:[~2026-01-06 13:45 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-06 13:51 [PATCH i-g-t v10 0/2] tests/intel/xe_pm_residency: Add ASPM Link residency test Karthik Poosa
2026-01-06 13:51 ` [PATCH i-g-t v10 1/2] lib/igt_device: Add API to get pci device upstream port Karthik Poosa
2026-01-06 13:51 ` Karthik Poosa [this message]
2026-01-07 6:24 ` [PATCH i-g-t v10 2/2] tests/intel/xe_pm_residency: Add subtest for ASPM Link state residency Riana Tauro
2026-01-06 14:17 ` ✓ Xe.CI.BAT: success for tests/intel/xe_pm_residency: Add ASPM Link residency test Patchwork
2026-01-06 14:42 ` ✓ i915.CI.BAT: " Patchwork
2026-01-06 16:26 ` ✗ Xe.CI.Full: failure " Patchwork
2026-01-06 19:35 ` ✓ i915.CI.Full: success " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2026-01-21 14:57 [PATCH i-g-t v10 0/2] " Karthik Poosa
2026-01-21 14:57 ` [PATCH i-g-t v10 2/2] tests/intel/xe_pm_residency: Add subtest for ASPM Link state residency Karthik Poosa
2026-01-22 15:00 ` Kamil Konieczny
2026-01-23 10:34 ` Poosa, Karthik
2026-01-23 12:07 ` Kamil Konieczny
2026-01-23 12:35 ` Poosa, Karthik
2026-01-23 14:06 ` Kamil Konieczny
2026-02-04 5:46 ` Poosa, Karthik
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=20260106135154.33722-3-karthik.poosa@intel.com \
--to=karthik.poosa@intel.com \
--cc=anshuman.gupta@intel.com \
--cc=badal.nilawar@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=kamil.konieczny@linux.intel.com \
--cc=riana.tauro@intel.com \
--cc=rodrigo.vivi@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