All of lore.kernel.org
 help / color / mirror / Atom feed
From: Anshuman Gupta <anshuman.gupta@intel.com>
To: igt-dev@lists.freedesktop.org
Cc: badal.nilawar@intel.com, rodrigo.vivi@intel.com
Subject: [igt-dev] [PATCH i-g-t v2 1/2] test/i915_pm_rpm: cache pci_device
Date: Sun,  6 Nov 2022 19:14:37 +0530	[thread overview]
Message-ID: <20221106134438.2831320-2-anshuman.gupta@intel.com> (raw)
In-Reply-To: <20221106134438.2831320-1-anshuman.gupta@intel.com>

cache pci_device structure so that it can be passed as argument
to device_in_pci_d3() whenever required.

No functional change.

v2:
- Fixed CI Failures.

Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
 tests/i915/i915_pm_rpm.c | 20 ++++++++++++++------
 1 file changed, 14 insertions(+), 6 deletions(-)

diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c
index 1ff69a060..7a05eccd2 100644
--- a/tests/i915/i915_pm_rpm.c
+++ b/tests/i915/i915_pm_rpm.c
@@ -1545,12 +1545,12 @@ static void reg_read_ioctl_subtest(void)
 	igt_assert(wait_for_suspended());
 }
 
-static bool device_in_pci_d3(void)
+static bool device_in_pci_d3(struct pci_device *pci_dev)
 {
 	uint16_t val;
 	int rc;
 
-	rc = pci_device_cfg_read_u16(igt_device_get_pci_device(drm_fd), &val, 0xd4);
+	rc = pci_device_cfg_read_u16(pci_dev, &val, 0xd4);
 	igt_assert_eq(rc, 0);
 
 	igt_debug("%s: PCI D3 state=%d\n", __func__, val & 0x3);
@@ -1559,13 +1559,17 @@ static bool device_in_pci_d3(void)
 
 static void pci_d3_state_subtest(void)
 {
+	struct pci_device *pci_dev;
+
 	igt_require(has_runtime_pm);
 
+	pci_dev = igt_device_get_pci_device(drm_fd);
+
 	disable_all_screens_and_wait(&ms_data);
-	igt_assert(igt_wait(device_in_pci_d3(), 2000, 100));
+	igt_assert(igt_wait(device_in_pci_d3(pci_dev), 2000, 100));
 
 	enable_one_screen_or_forcewake_get_and_wait(&ms_data);
-	igt_assert(!device_in_pci_d3());
+	igt_assert(!device_in_pci_d3(pci_dev));
 	forcewake_put(&ms_data);
 }
 
@@ -2250,14 +2254,17 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
 	}
 
 	igt_subtest("module-reload") {
+		struct pci_device *pci_dev;
+
 		igt_debug("Reload w/o display\n");
 		igt_i915_driver_unload();
 
 		igt_kmsg(KMSG_INFO "Reloading i915 w/o display\n");
 		igt_assert_eq(igt_i915_driver_load("disable_display=1 mmio_debug=-1"), 0);
+		pci_dev = igt_device_get_pci_device(drm_fd);
 
 		igt_assert(setup_environment(false));
-		igt_assert(igt_wait(device_in_pci_d3(), 2000, 100));
+		igt_assert(igt_wait(device_in_pci_d3(pci_dev), 2000, 100));
 		teardown_environment(false);
 
 		igt_debug("Reload as normal\n");
@@ -2265,9 +2272,10 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
 
 		igt_kmsg(KMSG_INFO "Reloading i915 as normal\n");
 		igt_assert_eq(igt_i915_driver_load("mmio_debug=-1"), 0);
+		pci_dev = igt_device_get_pci_device(drm_fd);
 
 		igt_assert(setup_environment(true));
-		igt_assert(igt_wait(device_in_pci_d3(), 2000, 100));
+		igt_assert(igt_wait(device_in_pci_d3(pci_dev), 2000, 100));
 		if (enable_one_screen_with_type(&ms_data, SCREEN_TYPE_ANY))
 			drm_resources_equal_subtest();
 		teardown_environment(true);
-- 
2.25.1

  reply	other threads:[~2022-11-06 13:44 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-02 11:58 [igt-dev] [PATCH i-g-t v2 0/2] test/i915_pm_rpm: Verify bridge binds with pcieport driver Anshuman Gupta
2022-11-02 11:58 ` [igt-dev] [PATCH i-g-t v2 1/2] test/i915_pm_rpm: cache pci_device Anshuman Gupta
2022-11-02 18:04   ` Rodrigo Vivi
2022-11-03  3:25   ` Nilawar, Badal
2022-11-06 13:44   ` [igt-dev] [PATCH i-g-t v2 0/2] test/i915_pm_rpm: Verify bridge binds with pcieport driver Anshuman Gupta
2022-11-06 13:44     ` Anshuman Gupta [this message]
2022-11-06 13:44     ` [igt-dev] [PATCH i-g-t v2 2/2] " Anshuman Gupta
2022-11-07  4:23   ` [igt-dev] [PATCH i-g-t v2 1/2] test/i915_pm_rpm: cache pci_device Anshuman Gupta
2022-11-07 13:35   ` Anshuman Gupta
2022-11-02 11:58 ` [igt-dev] [PATCH i-g-t v2 2/2] test/i915_pm_rpm: Verify bridge binds with pcieport driver Anshuman Gupta
2022-11-02 18:04   ` Rodrigo Vivi
2022-11-16 19:25   ` Dixit, Ashutosh
2022-11-17  8:42     ` Petri Latvala
2022-11-02 12:46 ` [igt-dev] ✗ GitLab.Pipeline: warning for test/i915_pm_rpm: Verify bridge binds with pcieport driver (rev2) Patchwork
2022-11-02 12:55 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
2022-11-06 14:02 ` [igt-dev] ✗ Fi.CI.BUILD: failure for test/i915_pm_rpm: Verify bridge binds with pcieport driver (rev4) Patchwork
2022-11-07  5:07 ` [igt-dev] ✗ Fi.CI.BAT: failure for test/i915_pm_rpm: Verify bridge binds with pcieport driver (rev5) Patchwork
2022-11-07 15:49 ` [igt-dev] ✓ Fi.CI.BAT: success for test/i915_pm_rpm: Verify bridge binds with pcieport driver (rev6) Patchwork
2022-11-07 19:43 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2022-11-08 15:03   ` Gupta, Anshuman

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=20221106134438.2831320-2-anshuman.gupta@intel.com \
    --to=anshuman.gupta@intel.com \
    --cc=badal.nilawar@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.