[igt-dev] [PATCH i-g-t] test/i915_pm_rpm: Verify bridge binds with pcieport driver
Rodrigo Vivi
rodrigo.vivi at intel.com
Tue Nov 1 16:25:35 UTC 2022
On Mon, Oct 31, 2022 at 07:26:52PM +0530, Anshuman Gupta wrote:
> It has been observed that on some Intel x86 host PCI core
probably a comma would help, maybe here?!.........^
> does not bind the Intel dgfx catds's pci bridge
s/catds's pci/cards' pci/
> devices(virtual switch port) to the pcieport driver.
> This leaves the pci bridge devices to D0 state and
> burns power on dgfx card.
>
> Signed-off-by: Anshuman Gupta <anshuman.gupta at intel.com>
> ---
> tests/i915/i915_pm_rpm.c | 14 +++++++++++---
> 1 file changed, 11 insertions(+), 3 deletions(-)
>
> diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c
> index 1ff69a060a..92c30ae791 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,10 +1559,18 @@ static bool device_in_pci_d3(void)
>
> static void pci_d3_state_subtest(void)
> {
> + struct pci_device *pci_dev, *bridge_pci_dev;
> +
> igt_require(has_runtime_pm);
>
> + pci_dev = igt_device_get_pci_device(drm_fd);
> + bridge_pci_dev = pci_device_get_parent_bridge(pci_dev);
> +
> 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));
> +
> + if (gem_has_lmem(drm_fd))
> + igt_require((pci_device_has_kernel_driver(bridge_pci_dev));
these last 2 lines seems to be doing the protection that commit msg
requests, right? but probably the above chunck deserves a separated patch?
or maybe explain a little bit more in the commit msg?
Thanks,
Rodrigo.
>
> enable_one_screen_or_forcewake_get_and_wait(&ms_data);
> igt_assert(!device_in_pci_d3());
> --
> 2.38.0
>
More information about the igt-dev
mailing list