All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alan Previn <alan.previn.teres.alexis@intel.com>
To: igt-dev@lists.freedesktop.org
Cc: Alan Previn <alan.previn.teres.alexis@intel.com>,
	Rodrigo Vivi <rodrigo.vivi@intel.com>
Subject: [igt-dev] [PATCH i-g-t v11 09/15] Verify PXP teardown occurred through suspend-resume
Date: Fri, 17 Sep 2021 21:54:30 -0700	[thread overview]
Message-ID: <20210918045436.34782-10-alan.previn.teres.alexis@intel.com> (raw)
In-Reply-To: <20210918045436.34782-1-alan.previn.teres.alexis@intel.com>

During a suspend-resume cycle, the driver shall ensure the
PXP session and keys are torn down and re-established.
Verify that key change did occur by repeating the 3d
rendercopy operation before and after the suspend-resume
cycle and ensuring the encrypted output is different.

Signed-off-by: Alan Previn <alan.previn.teres.alexis@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
 tests/i915/gem_pxp.c | 66 +++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 65 insertions(+), 1 deletion(-)

diff --git a/tests/i915/gem_pxp.c b/tests/i915/gem_pxp.c
index 51908799..3233fa7f 100644
--- a/tests/i915/gem_pxp.c
+++ b/tests/i915/gem_pxp.c
@@ -10,6 +10,12 @@
 IGT_TEST_DESCRIPTION("Test PXP that manages protected content through arbitrated HW-PXP-session");
 /* Note: PXP = "Protected Xe Path" */
 
+/* Struct and definitions for power management. */
+struct powermgt_data {
+	int debugfsdir;
+	bool has_runtime_pm;
+};
+
 static int create_bo_ext(int i915, uint32_t size, bool protected_is_true, uint32_t *bo_out)
 {
 	int ret;
@@ -467,7 +473,7 @@ static void test_render_baseline(int i915)
 	buf_ops_destroy(bops);
 }
 
-static void test_render_pxp_src_to_protdest(int i915)
+static void __test_render_pxp_src_to_protdest(int i915, uint32_t *outpixels, int outsize)
 {
 	uint32_t ctx, srcbo, dstbo;
 	struct intel_buf *srcbuf, *dstbuf;
@@ -509,6 +515,10 @@ static void test_render_pxp_src_to_protdest(int i915)
 	assert_bo_content_check(i915, dstbo, COMPARE_COLOR_UNREADIBLE,
 				TSTSURF_SIZE, TSTSURF_FILLCOLOR2, NULL, 0);
 
+	if (outpixels)
+		assert_bo_content_check(i915, dstbo, COPY_BUFFER,
+					TSTSURF_SIZE, 0, outpixels, outsize);
+
 	intel_bb_destroy(ibb);
 	intel_buf_destroy(srcbuf);
 	gem_close(i915, srcbo);
@@ -518,6 +528,11 @@ static void test_render_pxp_src_to_protdest(int i915)
 	buf_ops_destroy(bops);
 }
 
+static void test_render_pxp_src_to_protdest(int i915)
+{
+	__test_render_pxp_src_to_protdest(i915, NULL, 0);
+}
+
 static void test_render_pxp_protsrc_to_protdest(int i915)
 {
 	uint32_t ctx, srcbo, dstbo, dstbo2;
@@ -597,10 +612,46 @@ static void test_render_pxp_protsrc_to_protdest(int i915)
 	buf_ops_destroy(bops);
 }
 
+static void init_powermgt_resources(int i915, struct powermgt_data *pm)
+{
+	pm->debugfsdir = igt_debugfs_dir(i915);
+	igt_require(pm->debugfsdir != -1);
+	pm->has_runtime_pm = igt_setup_runtime_pm(i915);
+	igt_require(pm->has_runtime_pm);
+}
+
+static void trigger_powermgt_suspend_cycle(int i915,
+	struct powermgt_data *pm)
+{
+	igt_pm_enable_sata_link_power_management();
+	igt_system_suspend_autoresume(SUSPEND_STATE_MEM, SUSPEND_TEST_DEVICES);
+}
+
+static void test_pxp_pwrcycle_teardown_keychange(int i915, struct powermgt_data *pm)
+{
+	uint32_t encrypted_pixels_b4[TSTSURF_SIZE/TSTSURF_BYTESPP];
+	uint32_t encrypted_pixels_aft[TSTSURF_SIZE/TSTSURF_BYTESPP];
+	int matched_after_keychange = 0, loop = 0;
+
+	__test_render_pxp_src_to_protdest(i915, encrypted_pixels_b4, TSTSURF_SIZE);
+
+	trigger_powermgt_suspend_cycle(i915, pm);
+
+	__test_render_pxp_src_to_protdest(i915, encrypted_pixels_aft, TSTSURF_SIZE);
+
+	while (loop < (TSTSURF_SIZE/TSTSURF_BYTESPP)) {
+		if (encrypted_pixels_b4[loop] == encrypted_pixels_aft[loop])
+			++matched_after_keychange;
+		++loop;
+	}
+	igt_assert_eq(matched_after_keychange, 0);
+}
+
 igt_main
 {
 	int i915 = -1;
 	bool pxp_supported = false;
+	struct powermgt_data pm = {0};
 	igt_render_copyfunc_t rendercopy = NULL;
 	uint32_t devid = 0;
 
@@ -673,6 +724,19 @@ igt_main
 		igt_subtest("protected-encrypted-src-copy-not-readible")
 			test_render_pxp_protsrc_to_protdest(i915);
 	}
+	igt_subtest_group {
+		igt_fixture {
+			igt_require(pxp_supported);
+			devid = intel_get_drm_devid(i915);
+			igt_assert(devid);
+			rendercopy = igt_get_render_copyfunc(devid);
+			igt_require(rendercopy);
+			init_powermgt_resources(i915, &pm);
+		}
+		igt_describe("Verify suspend-resume teardown management:");
+		igt_subtest("verify-pxp-key-change-after-suspend-resume")
+			test_pxp_pwrcycle_teardown_keychange(i915, &pm);
+	}
 
 	igt_fixture {
 		close(i915);
-- 
2.25.1

  parent reply	other threads:[~2021-09-18  4:54 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-18  4:54 [PATCH i-g-t v11 00/15] Introduce PXP Test Alan Previn
2021-09-18  4:54 ` [igt-dev] " Alan Previn
2021-09-18  4:54 ` [igt-dev] [PATCH i-g-t v11 01/15] Add PXP UAPI support in i915_drm.h Alan Previn
2021-09-18  4:54 ` [igt-dev] [PATCH i-g-t v11 02/15] Add basic PXP testing of buffer and context alloc Alan Previn
2021-09-18  4:54 ` [igt-dev] [PATCH i-g-t v11 03/15] Perform a regular 3d copy as a control checkpoint Alan Previn
2021-09-18  4:54 ` [igt-dev] [PATCH i-g-t v11 04/15] Add PXP attribute support in batchbuffer and buffer_ops libs Alan Previn
2021-09-18  4:54 ` [igt-dev] [PATCH i-g-t v11 05/15] Add MI_SET_APPID instruction definition Alan Previn
2021-09-18  4:54 ` [igt-dev] [PATCH i-g-t v11 06/15] Enable protected session cmd in gen12_render_copyfunc Alan Previn
2021-09-18  4:54 ` [igt-dev] [PATCH i-g-t v11 07/15] Add subtest to copy raw source to protected dest Alan Previn
2021-09-18  4:54 ` [igt-dev] [PATCH i-g-t v11 08/15] Add test where both src and dest are protected Alan Previn
2021-09-18  4:54 ` Alan Previn [this message]
2021-09-18  4:54 ` [igt-dev] [PATCH i-g-t v11 10/15] Verify execbuf fails with stale PXP context after teardown Alan Previn
2021-09-18  4:54 ` [igt-dev] [PATCH i-g-t v11 11/15] Verify execbuf fails with stale PXP buffer " Alan Previn
2021-09-18  4:54 ` [igt-dev] [PATCH i-g-t v11 12/15] Verify execbuf ok with stale PXP buf in opt-out use Alan Previn
2021-09-18  4:54 ` [igt-dev] [PATCH i-g-t v11 13/15] Verify execution behavior with stale PXP assets through suspend-resume Alan Previn
2021-09-18  4:54 ` [igt-dev] [PATCH i-g-t v11 14/15] Verify protected surfaces are dma buffer sharable Alan Previn
2021-09-18  4:54 ` [igt-dev] [PATCH i-g-t v11 15/15] tests/i915_pxp: CRC validation for display tests Alan Previn
2021-09-18  5:49 ` [igt-dev] ✓ Fi.CI.BAT: success for Introduce PXP Test (rev11) Patchwork
2021-09-18  7:00 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2021-09-20 15:52 ` [igt-dev] [PATCH i-g-t v11 00/15] Introduce PXP Test Rodrigo Vivi

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=20210918045436.34782-10-alan.previn.teres.alexis@intel.com \
    --to=alan.previn.teres.alexis@intel.com \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.