[igt-dev] [PATCH i-g-t v4 2/5] i915/i915_pm_rpm: optimize modeset-pc8-residency-stress test
Anshuman Gupta
anshuman.gupta at intel.com
Wed May 26 07:20:37 UTC 2021
modeset-pc8-residency-stress checks PC8 residency with modeset
stress. As the platforms followed by SKL can really enter to PC8
with display-on, it is sufficient to validate PC8 while all displays
being off with modeset stress.
For older platforms like HASWELL/BROADWELL negative testing of PC8
residency while display being "on" can be removed as it saves CI time
and there is no ROI of such testing with modeset stress, wait_for_active()
already covers such coverage.
It will keep the code simpler without any platform checks.
v2: Used optimum pc8 timeout value and commit log changes.
v3: commit log improvements.
Signed-off-by: Anshuman Gupta <anshuman.gupta at intel.com>
---
tests/i915/i915_pm_rpm.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c
index 9f5656bb..7a4c9291 100644
--- a/tests/i915/i915_pm_rpm.c
+++ b/tests/i915/i915_pm_rpm.c
@@ -874,7 +874,7 @@ static void modeset_subtest(enum screen_type type, int rounds, int wait_flags)
if (wait_flags & WAIT_STATUS)
igt_assert(wait_for_suspended());
if (wait_flags & WAIT_PC8_RES)
- igt_assert(pc8_plus_residency_changed(30));
+ igt_assert(pc8_plus_residency_changed(PC8_TIMEOUT));
if (wait_flags & WAIT_EXTRA)
sleep(5);
@@ -883,8 +883,6 @@ static void modeset_subtest(enum screen_type type, int rounds, int wait_flags)
igt_require(enable_one_screen_with_type(&ms_data, type));
if (wait_flags & WAIT_STATUS)
igt_assert(wait_for_active());
- if (wait_flags & WAIT_PC8_RES)
- igt_assert(!pc8_plus_residency_changed(5));
if (wait_flags & WAIT_EXTRA)
sleep(5);
}
--
2.26.2
More information about the igt-dev
mailing list