From: "Wysocki, Rafael J" <rafael.j.wysocki@intel.com>
To: Rodrigo Vivi <rodrigo.vivi@intel.com>, Raag Jadav <raag.jadav@intel.com>
Cc: "Nilawar, Badal" <badal.nilawar@intel.com>,
<intel-xe@lists.freedesktop.org>, <anshuman.gupta@intel.com>,
"Rafael J. Wysocki" <rafael@kernel.org>
Subject: Re: [PATCH] drm/xe/d3cold: Set power state to D3Cold during s2idle/s3
Date: Mon, 31 Mar 2025 22:18:16 +0200 [thread overview]
Message-ID: <2d3f3cbe-c33d-4ded-8c19-e2bd2e76a68b@intel.com> (raw)
In-Reply-To: <Z-q_n1g9wIEZc-dm@intel.com>
On 3/31/2025 6:15 PM, Rodrigo Vivi wrote:
> On Sat, Mar 29, 2025 at 07:20:37AM +0200, Raag Jadav wrote:
>> On Fri, Mar 28, 2025 at 12:02:17PM -0400, Rodrigo Vivi wrote:
>>> On Thu, Mar 27, 2025 at 01:14:09PM -0400, Rodrigo Vivi wrote:
>>>> On Thu, Mar 27, 2025 at 10:02:29PM +0530, Nilawar, Badal wrote:
>>>>> On 27-03-2025 21:49, Badal Nilawar wrote:
>>>>> Hi Rodrigo,
>>>>>
>>>>>> According to pci core guidelines, pci_save_config is recommended when the
>>>>>> driver explicitly needs to set the pci power state. As of now xe kmd is
>>>>>> only doing pci_save_config while entering to s2idle/s3 state, which makes
>>>>>> pci core think that device driver has already applied required pci power
>>>>>> state. This leads to GPU remain in D0 state. To fix the issue setting
>>>>>> the pci power state to D3Cold.
>>>>>>
>>>>>> Fixes:dd08ebf6c352 ("drm/xe: Introduce a new DRM driver for Intel GPUs")
>>>>>> Cc: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
>>>>>> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
>>>>>> Signed-off-by: Badal Nilawar <badal.nilawar@intel.com>
>>>>>> Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
>>>>>> ---
>>>>>> drivers/gpu/drm/xe/xe_pci.c | 1 +
>>>>>> 1 file changed, 1 insertion(+)
>>>>>>
>>>>>> diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
>>>>>> index 7046e7e9a6c7..3317d475be79 100644
>>>>>> --- a/drivers/gpu/drm/xe/xe_pci.c
>>>>>> +++ b/drivers/gpu/drm/xe/xe_pci.c
>>>>>> @@ -932,6 +932,7 @@ static int xe_pci_suspend(struct device *dev)
>>>>>> pci_save_state(pdev);
>>>>>> pci_disable_device(pdev);
>>>>>> + pci_set_power_state(pdev, PCI_D3cold);
>>>>> Another approach to avoid calling pci_save_state and pci_set_power_state,
>>>>> allowing the PCI core to manage this.
>>>>> Currently, the above change aligns with the Xe RPM suspend flow.
>>>> Either way is fine it seems. Or we don't save the state and let pci subsystem
>>>> handle that for us or we save and set explicitly. So, let's move quickly
>>>> with this option here that is already fixing our current issue.
>> On our way to become another i915 now, are we?
> could you please expand on this?
>
> A simple git grep on pci_set_power_state and on pci_save_state
> return many more entries than i915.
>
> what am I missing?
>
>> While this might be a good enough band-aid, we should probably explore
>> how DPM_FLAG_SMART_* work and stop mixing/matching approaches to hide
>> issues.
> perhaps this indeed...
> perhaps the ones doing power state themselves are the ones declaring 'smart'?
>
> Well, on a dumb script here it looks we have over 110 drivers using pci_save_state
> and only 6 of those using DPM_FLAG_SMART_*
>
> So, I agree that it might be a good idea to explore things here and find the
> optimal settings.
See
https://www.kernel.org/doc/html/latest/driver-api/pm/devices.html#the-dpm-flag-smart-suspend-driver-flag
It's fairly accurate.
The rule of thumb is to avoid mixing these with calling pci_save_state()
directly and setting device state from a driver callback.
next prev parent reply other threads:[~2025-03-31 20:18 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-27 16:19 [PATCH] drm/xe/d3cold: Set power state to D3Cold during s2idle/s3 Badal Nilawar
2025-03-27 16:24 ` ✓ CI.Patch_applied: success for " Patchwork
2025-03-27 16:25 ` ✗ CI.checkpatch: warning " Patchwork
2025-03-27 16:26 ` ✓ CI.KUnit: success " Patchwork
2025-03-27 16:32 ` [PATCH] " Nilawar, Badal
2025-03-27 17:14 ` Rodrigo Vivi
2025-03-28 16:02 ` Rodrigo Vivi
2025-03-29 5:20 ` Raag Jadav
2025-03-31 16:15 ` Rodrigo Vivi
2025-03-31 20:18 ` Wysocki, Rafael J [this message]
2025-04-01 17:53 ` Raag Jadav
2025-04-01 19:35 ` Rafael J. Wysocki
2025-04-02 7:31 ` Raag Jadav
2025-04-02 8:34 ` Raag Jadav
2025-04-02 10:31 ` Rafael J. Wysocki
2025-04-03 3:12 ` Raag Jadav
2025-04-03 11:12 ` Rafael J. Wysocki
2025-04-02 10:19 ` Rafael J. Wysocki
2025-04-02 11:19 ` Gupta, Anshuman
2025-04-03 7:36 ` Nilawar, Badal
2025-04-03 11:16 ` Rafael J. Wysocki
2025-03-27 16:42 ` ✓ CI.Build: success for " Patchwork
2025-03-27 16:44 ` ✓ CI.Hooks: " Patchwork
2025-03-27 16:46 ` ✓ CI.checksparse: " Patchwork
2025-03-27 17:08 ` ✓ Xe.CI.BAT: " Patchwork
2025-03-28 1:49 ` ✗ Xe.CI.Full: failure " 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=2d3f3cbe-c33d-4ded-8c19-e2bd2e76a68b@intel.com \
--to=rafael.j.wysocki@intel.com \
--cc=anshuman.gupta@intel.com \
--cc=badal.nilawar@intel.com \
--cc=intel-xe@lists.freedesktop.org \
--cc=raag.jadav@intel.com \
--cc=rafael@kernel.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