From: Anshuman Gupta <anshuman.gupta@intel.com>
To: igt-dev@lists.freedesktop.org
Cc: rodrigo.vivi@intel.com, chris@chris-wilson.co.uk
Subject: [igt-dev] [PATCH i-g-t v2 1/4] i915/i915_pm_rpm: Enable PC8+ residency test
Date: Wed, 3 Feb 2021 15:33:07 +0530 [thread overview]
Message-ID: <20210203100310.19441-2-anshuman.gupta@intel.com> (raw)
In-Reply-To: <20210203100310.19441-1-anshuman.gupta@intel.com>
Enabled pc8-residency test for each platform that supports pc8.
Bifurcate pc8-residency is display-on and display-off test case.
Negative testing of PC8 residency on HASWELL/BROADWELL while
display being "on" is removed as it saves CI time and there is
no ROI of such testing.
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
tests/i915/i915_pm_rpm.c | 48 ++++++++++++++++++++++++++--------------
1 file changed, 31 insertions(+), 17 deletions(-)
diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c
index d9ec0388..8914f976 100644
--- a/tests/i915/i915_pm_rpm.c
+++ b/tests/i915/i915_pm_rpm.c
@@ -52,6 +52,16 @@
#include "igt_debugfs.h"
#include "igt_device.h"
#include "igt_edid.h"
+#include "igt_psr.h"
+
+#define MSR_PKG_CST_CONFIG_CONTROL 0xE2
+/*
+ * Below PKG CST limit mask and PC8 bits are meant for
+ * HSW,BDW SKL,ICL and Goldmont Microarch.
+ * Refer IA S/W developers manual vol3c part3 chapter:35
+ */
+#define PKG_CST_LIMIT_MASK 0xF
+#define PKG_CST_LIMIT_C8 0x6
#define MSR_PC8_RES 0x630
#define MSR_PC9_RES 0x631
@@ -301,7 +311,6 @@ static void init_modeset_cached_params(struct mode_set_data *data)
SCREEN_TYPE_LPSP);
non_lpsp = init_modeset_params_for_type(data, &non_lpsp_mode_params,
SCREEN_TYPE_NON_LPSP);
-
if (lpsp)
default_mode_params = &lpsp_mode_params;
else if (non_lpsp)
@@ -728,10 +737,6 @@ static void setup_pc8(void)
{
has_pc8 = false;
- /* Only Haswell supports the PC8 feature. */
- if (!IS_HASWELL(ms_data.devid) && !IS_BROADWELL(ms_data.devid))
- return;
-
/* Make sure our Kernel supports MSR and the module is loaded. */
igt_require(modprobe("msr") == 0);
@@ -827,20 +832,27 @@ static void basic_subtest(void)
/* XXX Also we can test wake up via exec nop */
}
-static void pc8_residency_subtest(void)
+static void pc8_residency_subtest(bool display_on)
{
igt_require(has_pc8);
- /* Make sure PC8+ residencies move! */
- disable_all_screens(&ms_data);
- igt_assert_f(pc8_plus_residency_changed(30),
- "Machine is not reaching PC8+ states, please check its "
- "configuration.\n");
+ if (IS_HASWELL(ms_data.devid) || IS_BROADWELL(ms_data.devid))
+ igt_require_f(!display_on, "pc8 with display on not supported\n");
- /* Make sure PC8+ residencies stop! */
- enable_one_screen(&ms_data);
- igt_assert_f(!pc8_plus_residency_changed(10),
- "PC8+ residency didn't stop with screen enabled.\n");
+ if (!display_on) {
+ /* Make sure PC8+ residencies move! */
+ disable_all_screens(&ms_data);
+ igt_assert_f(pc8_plus_residency_changed(30),
+ "Machine is not reaching PC8+ states with all screens disabled.\n");
+ } else {
+ /* check pc8 with psr disabled on any output */
+ psr_disable(drm_fd, debugfs);
+ enable_one_screen(&ms_data);
+ igt_assert_f(pc8_plus_residency_changed(30),
+ "Machine is not reaching PC8+ states with a screen enabled.\n");
+ /* Restore PSR with PSR_MODE_1 for rest of IGT */
+ psr_enable(drm_fd, debugfs, PSR_MODE_1);
+ }
}
static void modeset_subtest(enum screen_type type, int rounds, int wait_flags)
@@ -2075,8 +2087,10 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
reg_read_ioctl_subtest();
igt_subtest("i2c")
i2c_subtest();
- igt_subtest("pc8-residency")
- pc8_residency_subtest();
+ igt_subtest("pc8-residency-display-on")
+ pc8_residency_subtest(true);
+ igt_subtest("pc8-residency-display-off")
+ pc8_residency_subtest(false);
igt_subtest("debugfs-read")
debugfs_read_subtest();
igt_subtest("debugfs-forcewake-user")
--
2.26.2
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
next prev parent reply other threads:[~2021-02-03 10:18 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-03 10:03 [igt-dev] [PATCH i-g-t v2 0/4] PC state igt test Anshuman Gupta
2021-02-03 10:03 ` Anshuman Gupta [this message]
2021-02-03 11:37 ` [igt-dev] [PATCH i-g-t v2 1/4] i915/i915_pm_rpm: Enable PC8+ residency test Chris Wilson
2021-02-11 10:41 ` Gupta, Anshuman
2021-02-03 10:03 ` [igt-dev] [PATCH i-g-t v2 2/4] i915/i915_pm_rpm: optimize modeset-pc8-residency-stress test Anshuman Gupta
2021-02-03 10:03 ` [igt-dev] [PATCH i-g-t v2 3/4] i915/i915_pm_rpm: Add PC10 display off test Anshuman Gupta
2021-02-03 16:17 ` Chris Wilson
2021-02-04 4:12 ` Gupta, Anshuman
2021-02-24 12:21 ` Gupta, Anshuman
2021-02-03 10:03 ` [igt-dev] [PATCH i-g-t v2 4/4] i915/i915_pm_rpm: Add PC10 idle display on test Anshuman Gupta
2021-02-03 13:23 ` [igt-dev] ✓ Fi.CI.BAT: success for PC state igt test (rev2) Patchwork
2021-02-03 16:13 ` [igt-dev] ✓ Fi.CI.IGT: " 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=20210203100310.19441-2-anshuman.gupta@intel.com \
--to=anshuman.gupta@intel.com \
--cc=chris@chris-wilson.co.uk \
--cc=igt-dev@lists.freedesktop.org \
--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